HomeSort by relevance Sort by last modified time
    Searched refs:isSameInstr (Results 1 - 13 of 13) sorted by null

  /external/llvm/lib/CodeGen/
LiveIntervalAnalysis.cpp 835 if (!SlotIndex::isSameInstr(I->start, OldIdx)) {
836 bool isKill = SlotIndex::isSameInstr(OldIdx, I->end);
857 if (I == E || !SlotIndex::isSameInstr(OldIdx, I->start))
870 // 2. Live def at OldIdx, killed at NewIdx: isSameInstr(I->end, NewIdx).
874 SlotIndex::isSameInstr(I->end, NewIdx)) &&
877 if (NewI != E && SlotIndex::isSameInstr(NewI->start, NewIdx)) {
    [all...]
SplitKit.h 78 return SlotIndex::isSameInstr(FirstInstr, LastInstr);
LiveRangeEdit.cpp 109 if (SlotIndex::isSameInstr(OrigIdx, UseIdx))
RegisterCoalescer.cpp     [all...]
SplitKit.cpp 144 SlotIndex::isSameInstr),
564 if (SpillMode && !SlotIndex::isSameInstr(ParentVNI->def, Idx) &&
    [all...]
LiveInterval.cpp 61 if (SlotIndex::isSameInstr(Def, I->start)) {
InlineSpiller.cpp     [all...]
MachineVerifier.cpp     [all...]
TwoAddressInstructionPass.cpp 378 return !I->end.isBlock() && SlotIndex::isSameInstr(I->end, useIdx);
    [all...]
MachineScheduler.cpp     [all...]
RegAllocGreedy.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
LiveInterval.h 459 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).

Completed in 418 milliseconds