Searched refs:IntvIn (Results 1 – 3 of 3) sorted by relevance
/external/llvm/lib/CodeGen/ |
D | SplitKit.cpp | 1157 unsigned IntvIn, SlotIndex LeaveBefore, in splitLiveThroughBlock() argument 1164 << ", live-through " << IntvIn << " -> " << IntvOut); in splitLiveThroughBlock() 1166 assert((IntvIn || IntvOut) && "Use splitSingleBlock for isolated blocks"); in splitLiveThroughBlock() 1169 assert((!IntvIn || !LeaveBefore || LeaveBefore > Start) && "Impossible intf"); in splitLiveThroughBlock() 1181 selectIntv(IntvIn); in splitLiveThroughBlock() 1188 if (!IntvIn) { in splitLiveThroughBlock() 1202 if (IntvIn == IntvOut && !LeaveBefore && !EnterAfter) { in splitLiveThroughBlock() 1217 if (IntvIn != IntvOut && (!LeaveBefore || !EnterAfter || in splitLiveThroughBlock() 1233 selectIntv(IntvIn); in splitLiveThroughBlock() 1253 selectIntv(IntvIn); in splitLiveThroughBlock() [all …]
|
D | SplitKit.h | 442 unsigned IntvIn, SlotIndex LeaveBefore, 454 unsigned IntvIn, SlotIndex LeaveBefore);
|
D | RegAllocGreedy.cpp | 1224 unsigned IntvIn = 0, IntvOut = 0; in splitAroundRegion() local 1230 IntvIn = Cand.IntvIdx; in splitAroundRegion() 1246 if (!IntvIn && !IntvOut) { in splitAroundRegion() 1253 if (IntvIn && IntvOut) in splitAroundRegion() 1254 SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut); in splitAroundRegion() 1255 else if (IntvIn) in splitAroundRegion() 1256 SE->splitRegInBlock(BI, IntvIn, IntfIn); in splitAroundRegion() 1273 unsigned IntvIn = 0, IntvOut = 0; in splitAroundRegion() local 1279 IntvIn = Cand.IntvIdx; in splitAroundRegion() 1291 if (!IntvIn && !IntvOut) in splitAroundRegion() [all …]
|