Searched refs:IntvOut (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | SplitKit.cpp | 1636 unsigned IntvOut, SlotIndex EnterAfter){ in splitLiveThroughBlock() argument 1642 << ", live-through " << IntvIn << " -> " << IntvOut); in splitLiveThroughBlock() 1644 assert((IntvIn || IntvOut) && "Use splitSingleBlock for isolated blocks"); in splitLiveThroughBlock() 1652 if (!IntvOut) { in splitLiveThroughBlock() 1673 selectIntv(IntvOut); in splitLiveThroughBlock() 1680 if (IntvIn == IntvOut && !LeaveBefore && !EnterAfter) { in splitLiveThroughBlock() 1686 selectIntv(IntvOut); in splitLiveThroughBlock() 1693 assert((!IntvOut || !EnterAfter || EnterAfter < LSP) && "Impossible intf"); in splitLiveThroughBlock() 1695 if (IntvIn != IntvOut && (!LeaveBefore || !EnterAfter || in splitLiveThroughBlock() 1703 selectIntv(IntvOut); in splitLiveThroughBlock() [all …]
|
H A D | SplitKit.h | 528 /// enters the block in IntvIn and leaves it in IntvOut. There may be uses in 534 /// @param IntvOut Interval index leaving the block. 535 /// @param EnterAfter When set, enter IntvOut after this point. 538 unsigned IntvOut, SlotIndex EnterAfter); 552 /// block on the stack (or isn't live-in at all) and leaves it in IntvOut. 558 /// @param IntvOut Interval index leaving the block. 559 /// @param EnterAfter When set, enter IntvOut after this point. 561 unsigned IntvOut, SlotIndex EnterAfter);
|
H A D | RegAllocGreedy.cpp | 941 unsigned IntvIn = 0, IntvOut = 0; in splitAroundRegion() local 956 IntvOut = 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() 975 SE->splitRegOutBlock(BI, IntvOut, IntfOut); in splitAroundRegion() 989 unsigned IntvIn = 0, IntvOut = 0; in splitAroundRegion() local 1003 IntvOut = Cand.IntvIdx; in splitAroundRegion() 1007 if (!IntvIn && !IntvOut) in splitAroundRegion() 1009 SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut); in splitAroundRegion()
|