Searched refs:IntvOut (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DSplitKit.h527 /// enters the block in IntvIn and leaves it in IntvOut. There may be uses in
533 /// @param IntvOut Interval index leaving the block.
534 /// @param EnterAfter When set, enter IntvOut after this point.
537 unsigned IntvOut, SlotIndex EnterAfter);
551 /// block on the stack (or isn't live-in at all) and leaves it in IntvOut.
557 /// @param IntvOut Interval index leaving the block.
558 /// @param EnterAfter When set, enter IntvOut after this point.
560 unsigned IntvOut, SlotIndex EnterAfter);
H A DSplitKit.cpp1610 unsigned IntvOut, SlotIndex EnterAfter){
1616 << ", live-through " << IntvIn << " -> " << IntvOut); local
1618 assert((IntvIn || IntvOut) && "Use splitSingleBlock for isolated blocks");
1626 if (!IntvOut) {
1647 selectIntv(IntvOut);
1654 if (IntvIn == IntvOut && !LeaveBefore && !EnterAfter) {
1660 selectIntv(IntvOut);
1667 assert((!IntvOut || !EnterAfter || EnterAfter < LSP) && "Impossible intf");
1669 if (IntvIn != IntvOut && (!LeaveBefore || !EnterAfter ||
1677 selectIntv(IntvOut);
1608 splitLiveThroughBlock(unsigned MBBNum, unsigned IntvIn, SlotIndex LeaveBefore, unsigned IntvOut, SlotIndex EnterAfter) argument
1804 splitRegOutBlock(const SplitAnalysis::BlockInfo &BI, unsigned IntvOut, SlotIndex EnterAfter) argument
[all...]
H A DRegAllocGreedy.cpp1690 unsigned IntvIn = 0, IntvOut = 0; local
1705 IntvOut = Cand.IntvIdx;
1712 if (!IntvIn && !IntvOut) {
1719 if (IntvIn && IntvOut)
1720 SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut);
1724 SE->splitRegOutBlock(BI, IntvOut, IntfOut);
1739 unsigned IntvIn = 0, IntvOut = 0; local
1753 IntvOut = Cand.IntvIdx;
1757 if (!IntvIn && !IntvOut)
1759 SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOu
[all...]

Completed in 114 milliseconds