Home
last modified time | relevance | path

Searched refs:LRI (Results 1 – 12 of 12) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DRegAllocFast.cpp570 LiveRegMap::iterator LRI = findLiveVirtReg(VirtReg); in displacePhysReg() local
571 assert(LRI != LiveVirtRegs.end() && "datastructures in sync"); in displacePhysReg()
574 reload(ReloadBefore, VirtReg, LRI->PhysReg); in displacePhysReg()
576 setPhysRegState(LRI->PhysReg, regFree); in displacePhysReg()
577 LRI->PhysReg = 0; in displacePhysReg()
578 LRI->Reloaded = true; in displacePhysReg()
606 LiveRegMap::iterator LRI = findLiveVirtReg(VirtReg); in freePhysReg() local
607 assert(LRI != LiveVirtRegs.end()); in freePhysReg()
608 LLVM_DEBUG(dbgs() << ' ' << printReg(LRI->VirtReg, TRI) << '\n'); in freePhysReg()
609 setPhysRegState(LRI->PhysReg, regFree); in freePhysReg()
[all …]
H A DLiveIntervalUnion.cpp147 LRI = LR->begin(); in collectInterferingVRegs()
149 LiveUnionI.find(LRI->start); in collectInterferingVRegs()
155 assert(LRI != LREnd && "Reached end of LR"); in collectInterferingVRegs()
158 while (LRI->start < LiveUnionI.stop() && LRI->end > LiveUnionI.start()) { in collectInterferingVRegs()
176 assert(LRI->end <= LiveUnionI.start() && "Expected non-overlap"); in collectInterferingVRegs()
179 LRI = LR->advanceTo(LRI, LiveUnionI.start()); in collectInterferingVRegs()
180 if (LRI == LREnd) in collectInterferingVRegs()
184 if (LRI->start < LiveUnionI.stop()) in collectInterferingVRegs()
188 LiveUnionI.advanceTo(LRI->start); in collectInterferingVRegs()
H A DLivePhysRegs.cpp33 RegisterSet::iterator LRI = LiveRegs.begin(); in removeRegsInMask() local
34 while (LRI != LiveRegs.end()) { in removeRegsInMask()
35 if (MO.clobbersPhysReg(*LRI)) { in removeRegsInMask()
37 Clobbers->push_back(std::make_pair(*LRI, &MO)); in removeRegsInMask()
38 LRI = LiveRegs.erase(LRI); in removeRegsInMask()
40 ++LRI; in removeRegsInMask()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
H A DLanaiFrameLowering.cpp29 const LanaiRegisterInfo *LRI = STI.getRegisterInfo(); in determineFrameLayout() local
36 LRI->hasStackRealignment(MF) ? MFI.getMaxAlign() : getStackAlign(); in determineFrameLayout()
203 const LanaiRegisterInfo *LRI = in determineCalleeSaves() local
215 if (LRI->hasBasePointer(MF)) { in determineCalleeSaves()
217 SavedRegs.reset(LRI->getBaseRegister()); in determineCalleeSaves()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DGVNSink.cpp594 LockstepReverseIterator &LRI, unsigned &InstNum, unsigned &MemoryInstNum,
634 LockstepReverseIterator &LRI, unsigned &InstNum, unsigned &MemoryInstNum, in analyzeInstructionForSinking() argument
636 auto Insts = *LRI; in analyzeInstructionForSinking()
664 auto &ActivePreds = LRI.getActiveBlocks(); in analyzeInstructionForSinking()
687 LRI.restrictToBlocks(ActivePreds); in analyzeInstructionForSinking()
786 LockstepReverseIterator LRI(Preds); in sinkBB() local
794 while (LRI.isValid()) { in sinkBB()
795 auto Cand = analyzeInstructionForSinking(LRI, InstNum, MemoryInstNum, in sinkBB()
801 --LRI; in sinkBB()
/netbsd-src/sys/external/bsd/drm2/dist/drm/i915/gt/
H A Dintel_lrc.c550 #define LRI(count, flags) ((flags) << 6 | (count) | BUILD_BUG_ON_ZERO(count >= BIT(6))) in set_offsets() macro
616 LRI(11, 0),
630 LRI(9, 0),
642 LRI(2, 0),
651 LRI(14, POSTED),
668 LRI(9, POSTED),
680 LRI(1, POSTED),
684 LRI(44, POSTED),
735 LRI(13, POSTED),
751 LRI(9, POSTED),
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp2028 LockstepReverseIterator LRI(UnconditionalPreds); in SinkCommonCodeFromPredecessors() local
2029 while (LRI.isValid() && in SinkCommonCodeFromPredecessors()
2030 canSinkInstructions(*LRI, PHIOperands)) { in SinkCommonCodeFromPredecessors()
2031 LLVM_DEBUG(dbgs() << "SINK: instruction can be sunk: " << *(*LRI)[0] in SinkCommonCodeFromPredecessors()
2033 InstructionsToSink.insert((*LRI).begin(), (*LRI).end()); in SinkCommonCodeFromPredecessors()
2035 --LRI; in SinkCommonCodeFromPredecessors()
2044 auto ProfitableToSinkInstruction = [&](LockstepReverseIterator &LRI) { in SinkCommonCodeFromPredecessors() argument
2046 for (auto *I : *LRI) in SinkCommonCodeFromPredecessors()
2076 LRI.reset(); in SinkCommonCodeFromPredecessors()
2080 if (!ProfitableToSinkInstruction(LRI)) { in SinkCommonCodeFromPredecessors()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DLiveIntervalUnion.h115 LiveRange::const_iterator LRI; ///< current position in LR variable
/netbsd-src/external/gpl3/gcc/dist/libcpp/
H A Dlex.cc1169 NONE, LRE, RLE, LRO, RLO, LRI, RLI, FSI, PDF, PDI, LTR, RTL enumerator
1262 case kind::LRI: in on_char()
1309 case kind::LRI: in to_str()
1397 return bidi::kind::LRI; in get_bidi_utf8_1()
1472 return bidi::kind::LRI; in get_bidi_ucn_1()
/netbsd-src/share/misc/
H A Dairport4392 LRI:Lorica, Colombia
/netbsd-src/external/gpl3/gcc/dist/contrib/unicode/
H A DUnicodeData.txt7376 2066;LEFT-TO-RIGHT ISOLATE;Cf;0;LRI;;;;;N;;;;;
/netbsd-src/external/gpl3/gcc.old/dist/contrib/unicode/
H A DUnicodeData.txt7361 2066;LEFT-TO-RIGHT ISOLATE;Cf;0;LRI;;;;;N;;;;;