Home
last modified time | relevance | path

Searched refs:IntvIn (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DSplitKit.cpp1635 unsigned IntvIn, SlotIndex LeaveBefore, in splitLiveThroughBlock() argument
1642 << ", live-through " << IntvIn << " -> " << IntvOut); in splitLiveThroughBlock()
1644 assert((IntvIn || IntvOut) && "Use splitSingleBlock for isolated blocks"); in splitLiveThroughBlock()
1647 assert((!IntvIn || !LeaveBefore || LeaveBefore > Start) && "Impossible intf"); in splitLiveThroughBlock()
1659 selectIntv(IntvIn); in splitLiveThroughBlock()
1666 if (!IntvIn) { in splitLiveThroughBlock()
1680 if (IntvIn == IntvOut && !LeaveBefore && !EnterAfter) { in splitLiveThroughBlock()
1695 if (IntvIn != IntvOut && (!LeaveBefore || !EnterAfter || in splitLiveThroughBlock()
1711 selectIntv(IntvIn); in splitLiveThroughBlock()
1731 selectIntv(IntvIn); in splitLiveThroughBlock()
[all …]
H A DSplitKit.h528 /// enters the block in IntvIn and leaves it in IntvOut. There may be uses in
532 /// @param IntvIn Interval index entering the block.
533 /// @param LeaveBefore When set, leave IntvIn before this point.
537 unsigned IntvIn, SlotIndex LeaveBefore,
541 /// block in IntvIn and leaves it on the stack (or not at all). Split points
546 /// @param IntvIn Interval index entering the block. Not 0.
547 /// @param LeaveBefore When set, leave IntvIn before this point.
549 unsigned IntvIn, SlotIndex LeaveBefore);
H A DRegAllocGreedy.cpp941 unsigned IntvIn = 0, IntvOut = 0; in splitAroundRegion() local
947 IntvIn = Cand.IntvIdx; in splitAroundRegion()
963 if (!IntvIn && !IntvOut) { in splitAroundRegion()
970 if (IntvIn && IntvOut) in splitAroundRegion()
971 SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut); in splitAroundRegion()
972 else if (IntvIn) in splitAroundRegion()
973 SE->splitRegInBlock(BI, IntvIn, IntfIn); in splitAroundRegion()
989 unsigned IntvIn = 0, IntvOut = 0; in splitAroundRegion() local
995 IntvIn = Cand.IntvIdx; in splitAroundRegion()
1007 if (!IntvIn && !IntvOut) in splitAroundRegion()
[all …]