HomeSort by relevance Sort by last modified time
    Searched defs:LR (Results 1 - 25 of 127) sorted by null

1 2 3 4 5 6

  /prebuilts/go/darwin-x86/src/runtime/
go_tls.h 6 #define LR R14
  /prebuilts/go/linux-x86/src/runtime/
go_tls.h 6 #define LR R14
  /external/clang/test/PCH/
cxx-reference.h 3 typedef char (&LR);
8 char &lr = c; variable
10 LR &lrlr = c;
11 LR &&rrlr = c;
  /external/llvm/include/llvm/ExecutionEngine/Orc/
LambdaResolver.h 53 typedef LambdaResolver<DylibLookupFtorT, ExternalLookupFtorT> LR;
54 return make_unique<LR>(std::move(DylibLookupFtor),
  /external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
SPUFrameLowering.h 27 std::pair<unsigned, int> LR[1];
69 //! Minimum frame size (enough to spill LR + SP)
  /external/valgrind/coregrind/m_dispatch/
dispatch-s390x-linux.S 54 #undef LR
55 #define LR S390_REGNO_LINK_REGISTER
172 br LR
  /packages/apps/LegacyCamera/jni/
mosaic_renderer_jni.h 20 const int LR = 0; // Low-resolution mode
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ExecutionEngine/Orc/
LambdaResolver.h 52 typedef LambdaResolver<DylibLookupFtorT, ExternalLookupFtorT> LR;
53 return make_unique<LR>(std::move(DylibLookupFtor),
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ExecutionEngine/Orc/
LambdaResolver.h 52 typedef LambdaResolver<DylibLookupFtorT, ExternalLookupFtorT> LR;
53 return make_unique<LR>(std::move(DylibLookupFtor),
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ExecutionEngine/Orc/
LambdaResolver.h 52 typedef LambdaResolver<DylibLookupFtorT, ExternalLookupFtorT> LR;
53 return make_unique<LR>(std::move(DylibLookupFtor),
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ExecutionEngine/Orc/
LambdaResolver.h 52 typedef LambdaResolver<DylibLookupFtorT, ExternalLookupFtorT> LR;
53 return make_unique<LR>(std::move(DylibLookupFtor),
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ExecutionEngine/Orc/
LambdaResolver.h 52 typedef LambdaResolver<DylibLookupFtorT, ExternalLookupFtorT> LR;
53 return make_unique<LR>(std::move(DylibLookupFtor),
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ExecutionEngine/Orc/
LambdaResolver.h 52 typedef LambdaResolver<DylibLookupFtorT, ExternalLookupFtorT> LR;
53 return make_unique<LR>(std::move(DylibLookupFtor),
  /external/clang/lib/StaticAnalyzer/Checkers/
PointerSubChecker.cpp 47 const MemRegion *LR = LV.getAsRegion();
50 if (!(LR && RR))
53 const MemRegion *BaseLR = LR->getBaseRegion();
  /art/disassembler/
disassembler_arm64.cc 41 LR = 30
51 } else if (reg.GetCode() == LR) {
52 AppendToOutput("lr");
  /external/llvm/lib/CodeGen/
InterferenceCache.cpp 226 LiveRange *LR = RegUnits[i].Fixed;
227 if (I == LR->end() || I->start >= Stop)
229 I = LR->advanceTo(I, Stop);
230 bool Backup = I == LR->end() || I->start >= Stop;
LiveRangeCalc.h 80 LiveRange &LR;
94 LiveInBlock(LiveRange &LR, MachineDomTreeNode *node, SlotIndex kill)
95 : LR(LR), DomNode(node), Kill(kill), Value(nullptr) {}
104 /// Assuming that @p LR is live-in to @p UseMBB, find the set of defs that can
108 /// are added to @p LR, and the function returns true.
110 /// If multiple values can reach @p UseMBB, the blocks that need @p LR to be
114 bool findReachingDefs(LiveRange &LR, MachineBasicBlock &UseMBB,
128 /// Extend the live range of @p LR to reach all uses of Reg.
132 void extendToUses(LiveRange &LR, unsigned Reg, LaneBitmask LaneMask)
    [all...]
LiveInterval.cpp 53 LiveRange *LR;
56 CalcLiveRangeUtilBase(LiveRange *LR) : LR(LR) {}
67 VNInfo *VNI = LR->getNextValue(Def, VNInfoAllocator);
87 VNInfo *VNI = LR->getNextValue(Def, VNInfoAllocator);
240 CalcLiveRangeUtilVector(LiveRange *LR) : CalcLiveRangeUtilVectorBase(LR) {}
245 LiveRange::Segments &segmentsColl() { return LR->segments; }
247 void insertAtEnd(const Segment &S) { LR->segments.push_back(S);
    [all...]
RegisterPressure.cpp 386 bool(*Property)(const LiveRange &LR, SlotIndex Pos)) {
401 const LiveRange *LR = LIS.getCachedRegUnit(RegUnit);
404 if (LR == nullptr)
406 return Property(*LR, Pos) ? ~0u : 0;
415 [](const LiveRange &LR, SlotIndex Pos) {
416 return LR.liveAt(Pos);
544 const LiveRange *LR = getLiveRange(LIS, Reg);
545 if (LR != nullptr) {
546 LiveQueryResult LRQ = LR->Query(SlotIdx);
    [all...]
  /external/llvm/lib/Support/
ScaledNumber.cpp 28 uint64_t UL = getU(LHS), LL = getL(LHS), UR = getU(RHS), LR = getL(RHS);
31 uint64_t P1 = UL * UR, P2 = UL * LR, P3 = LL * UR, P4 = LL * LR;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/CodeGen/
LiveIntervalUnion.h 111 const LiveRange *LR = nullptr;
112 LiveRange::const_iterator LRI; ///< current position in LR
123 LR = &NewLR;
133 Query(const LiveRange &LR, const LiveIntervalUnion &LIU):
134 LiveUnion(&LIU), LR(&LR) {}
140 if (UserTag == NewUserTag && LR == &NewLR && LiveUnion == &NewLiveUnion &&
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/CodeGen/
LiveIntervalUnion.h 111 const LiveRange *LR = nullptr;
112 LiveRange::const_iterator LRI; ///< current position in LR
123 LR = &NewLR;
133 Query(const LiveRange &LR, const LiveIntervalUnion &LIU):
134 LiveUnion(&LIU), LR(&LR) {}
140 if (UserTag == NewUserTag && LR == &NewLR && LiveUnion == &NewLiveUnion &&
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/CodeGen/
LiveIntervalUnion.h 111 const LiveRange *LR = nullptr;
112 LiveRange::const_iterator LRI; ///< current position in LR
123 LR = &NewLR;
133 Query(const LiveRange &LR, const LiveIntervalUnion &LIU):
134 LiveUnion(&LIU), LR(&LR) {}
140 if (UserTag == NewUserTag && LR == &NewLR && LiveUnion == &NewLiveUnion &&
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/CodeGen/
LiveIntervalUnion.h 111 const LiveRange *LR = nullptr;
112 LiveRange::const_iterator LRI; ///< current position in LR
123 LR = &NewLR;
133 Query(const LiveRange &LR, const LiveIntervalUnion &LIU):
134 LiveUnion(&LIU), LR(&LR) {}
140 if (UserTag == NewUserTag && LR == &NewLR && LiveUnion == &NewLiveUnion &&
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/CodeGen/
LiveIntervalUnion.h 111 const LiveRange *LR = nullptr;
112 LiveRange::const_iterator LRI; ///< current position in LR
123 LR = &NewLR;
133 Query(const LiveRange &LR, const LiveIntervalUnion &LIU):
134 LiveUnion(&LIU), LR(&LR) {}
140 if (UserTag == NewUserTag && LR == &NewLR && LiveUnion == &NewLiveUnion &&

Completed in 2431 milliseconds

1 2 3 4 5 6