/external/llvm/lib/CodeGen/ |
LiveIntervalAnalysis.cpp | 818 if (!SlotIndex::isSameInstr(I->start, OldIdx)) { 819 bool isKill = SlotIndex::isSameInstr(OldIdx, I->end); 840 if (I == E || !SlotIndex::isSameInstr(OldIdx, I->start)) 853 // 2. Live def at OldIdx, killed at NewIdx: isSameInstr(I->end, NewIdx). 857 SlotIndex::isSameInstr(I->end, NewIdx)) && 860 if (NewI != E && SlotIndex::isSameInstr(NewI->start, NewIdx)) { [all...] |
SplitKit.h | 78 return SlotIndex::isSameInstr(FirstInstr, LastInstr);
|
LiveRangeEdit.cpp | 102 if (SlotIndex::isSameInstr(OrigIdx, UseIdx))
|
RegisterCoalescer.cpp | [all...] |
SplitKit.cpp | 145 SlotIndex::isSameInstr), 564 if (SpillMode && !SlotIndex::isSameInstr(ParentVNI->def, Idx) && [all...] |
LiveInterval.cpp | 61 if (SlotIndex::isSameInstr(Def, I->start)) {
|
MachineScheduler.cpp | [all...] |
InlineSpiller.cpp | [all...] |
MachineVerifier.cpp | [all...] |
RegAllocGreedy.cpp | [all...] |
TwoAddressInstructionPass.cpp | 379 return !I->end.isBlock() && SlotIndex::isSameInstr(I->end, useIdx); [all...] |
/external/llvm/include/llvm/CodeGen/ |
LiveInterval.h | 570 if (SlotIndex::isSameInstr(Idx, I->end)) {
|
SlotIndexes.h | 205 /// isSameInstr - Return true if A and B refer to the same instruction. 206 static bool isSameInstr(SlotIndex A, SlotIndex B) { 211 /// B. This is equivalent to A < B && !isSameInstr(A, B).
|