Searched refs:LR (Results 1 - 25 of 93) sorted by relevance

1234

/external/clang/test/PCH/
H A Dcxx-reference.h3 typedef char (&LR); typedef
10 LR &lrlr = c;
11 LR &&rrlr = c;
/external/clang/lib/StaticAnalyzer/Checkers/
H A DPointerArithChecker.cpp44 const MemRegion *LR = LV.getAsRegion(); local
46 if (!LR || !RV.isConstant())
51 if (isa<VarRegion>(LR) || isa<CodeTextRegion>(LR) ||
52 isa<CompoundLiteralRegion>(LR)) {
H A DPointerSubChecker.cpp47 const MemRegion *LR = LV.getAsRegion(); local
50 if (!(LR && RR))
53 const MemRegion *BaseLR = LR->getBaseRegion();
/external/clang/test/Lexer/
H A Dstring-literal-encoding.c12 wchar_t const *d = LR"(�����)"; // expected-error {{illegal character encoding in string literal}}
26 wchar_t const *d = LR"(foo �����)"; // expected-error {{illegal character encoding in string literal}}
H A Dstring_concat.cpp18 const char* f = u8"abc" LR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
27 const char16_t* l = u"abc" LR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
36 const char32_t* r = U"abc" LR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
/external/clang/test/SemaCXX/
H A Dcxx0x-type-convert-construct.cpp14 LRstr = LR"foo(a wide raw string)foo"; // expected-warning{{conversion from string literal to 'wchar_t *' is deprecated}}
/external/clang/test/CodeGen/
H A Dstring-literal-unicode-conversion.c61 wchar_t const *i = LR"(7Кошка)";
H A Dstring-literal.c86 const wchar_t *l = LR"bar(KL)bar";
/external/llvm/include/llvm/CodeGen/
H A DLiveInterval.h109 bool operator<(const LiveRange &LR) const {
110 return start < LR.start || (start == LR.start && end < LR.end);
112 bool operator==(const LiveRange &LR) const {
113 return start == LR.start && end == LR.end;
122 raw_ostream& operator<<(raw_ostream& os, const LiveRange &LR);
125 inline bool operator<(SlotIndex V, const LiveRange &LR) {
126 return V < LR
[all...]
/external/llvm/lib/CodeGen/
H A DLiveInterval.cpp284 LiveInterval::addRangeFrom(LiveRange LR, iterator From) {
285 SlotIndex Start = LR.start, End = LR.end;
289 // another interval, just extend that interval to contain the range of LR.
292 if (LR.valno == B->valno) {
309 if (LR.valno == it->valno) {
313 // If LR is a complete superset of an interval, we may need to grow its
329 return ranges.insert(it, LR);
541 iterator LR = I++;
542 if (LR
[all...]
H A DRegAllocFast.cpp233 void RAFast::addKillFlag(const LiveReg &LR) { argument
234 if (!LR.LastUse) return;
235 MachineOperand &MO = LR.LastUse->getOperand(LR.LastOpNum);
236 if (MO.isUse() && !LR.LastUse->isRegTiedToDefOperand(LR.LastOpNum)) {
237 if (MO.getReg() == LR.PhysReg)
240 LR.LastUse->addRegisterKilled(LR.PhysReg, TRI, true);
277 LiveReg &LR local
490 assignVirtToPhysReg(LiveReg &LR, unsigned PhysReg) argument
[all...]
H A DExecutionDepsFix.cpp578 const LiveReg &LR = LiveRegs[rx]; local
580 if (!LR.Value->getCommonDomains(available)) {
588 if (LR.Def < i->Def) {
590 Regs.insert(i, LR);
594 Regs.push_back(LR);
H A DLiveIntervalAnalysis.cpp634 LiveRange LR(
637 Interval.addRange(LR);
639 return LR;
1146 LiveRange LR(instrIdx.getRegSlot(), instrIdx.getDeadSlot(), VNI);
1147 LII = LI.addRange(LR);
1151 LiveRange LR(instrIdx.getRegSlot(), lastUseIdx, VNI);
1152 LII = LI.addRange(LR);
/external/valgrind/main/coregrind/m_dispatch/
H A Ddispatch-s390x-linux.S54 #undef LR
55 #define LR S390_REGNO_LINK_REGISTER define
172 br LR
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/dot/
H A Ddot.stg44 rankdir=LR;
/external/llvm/lib/Target/XCore/
H A DXCoreFrameLowering.cpp125 MBB.addLiveIn(XCore::LR);
141 storeToStack(MBB, MBBI, XCore::LR, LRSpillOffset + FrameSize*4, dl, TII);
142 MBB.addLiveIn(XCore::LR);
215 loadFromStack(MBB, MBBI, XCore::LR, LRSpillOffset, dl, TII);
359 bool LRUsed = MF.getRegInfo().isPhysRegUsed(XCore::LR);
363 MF.getRegInfo().setPhysRegUnused(XCore::LR);
368 // A fixed offset of 0 allows us to save / restore LR using entsp / retsp.
H A DXCoreRegisterInfo.cpp41 : XCoreGenRegisterInfo(XCore::LR) {
66 XCore::R8, XCore::R9, XCore::R10, XCore::LR,
79 Reserved.set(XCore::LR);
/external/llvm/lib/Target/XCore/MCTargetDesc/
H A DXCoreMCTargetDesc.cpp43 InitXCoreMCRegisterInfo(X, XCore::LR);
/external/llvm/lib/Target/ARM/
H A DARMFrameLowering.cpp182 case ARM::LR:
604 // Add the callee-saved register as live-in unless it's LR and
605 // @llvm.returnaddress is called. If LR is returned for
609 if (Reg == ARM::LR) {
675 if (Reg == ARM::LR && !isTailCall && !isVarArg && STI.hasV5TOps()) {
706 // If we adjusted the reg to PC from LR above, switch it back here. We
709 Regs[0] = ARM::LR;
1178 // Spill LR if Thumb1 function uses variable length argument lists.
1180 MRI.setPhysRegUsed(ARM::LR);
1218 if (Reg == ARM::LR)
[all...]
H A DThumb1FrameLowering.cpp127 case ARM::LR:
307 // to LR, and we can't pop the value directly to the PC since
309 // pop the old LR into R3 as a temporary.
314 // Epilogue for vararg functions: pop LR to R3 and branch off it.
350 // Add the callee-saved register as live-in unless it's LR and
351 // @llvm.returnaddress is called. If LR is returned for @llvm.returnaddress
353 if (Reg == ARM::LR) {
389 if (Reg == ARM::LR) {
H A DARMBaseRegisterInfo.h43 case LR: case SP: case PC:
/external/llvm/include/llvm/ADT/
H A DImmutableSet.h502 TreeTy *LR = getRight(L); local
504 if (getHeight(LL) >= getHeight(LR))
505 return createNode(LL, L, createNode(LR,V,R));
507 assert(!isEmpty(LR) && "LR cannot be empty because it has a height >= 1");
509 TreeTy *LRL = getLeft(LR);
510 TreeTy *LRR = getRight(LR);
512 return createNode(createNode(LL,L,LRL), LR, createNode(LRR,V,R));
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCTargetDesc.cpp48 unsigned RA = isPPC64 ? PPC::LR8 : PPC::LR;
/external/skia/src/effects/
H A DSkBlurMaskFilter.cpp308 const SkVector& LR = rrect.radii(SkRRect::kLowerRight_Corner); local
312 const SkScalar rightUnstretched = SkTMax(UR.fX, LR.fX) + SkIntToScalar(2 * margin.fX);
325 const SkScalar bottomUnstretched = SkTMax(LL.fY, LR.fY) + SkIntToScalar(2 * margin.fY);
339 radii[SkRRect::kLowerRight_Corner] = LR;
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Delfcore.h96 #define LR uregs[14] /* Link register */ macro

Completed in 2923 milliseconds

1234