Searched refs:IntvOut (Results 1 – 3 of 3) sorted by relevance
/external/llvm/lib/CodeGen/ |
D | SplitKit.cpp | 1158 unsigned IntvOut, SlotIndex EnterAfter){ in splitLiveThroughBlock() argument 1164 << ", live-through " << IntvIn << " -> " << IntvOut); in splitLiveThroughBlock() 1166 assert((IntvIn || IntvOut) && "Use splitSingleBlock for isolated blocks"); in splitLiveThroughBlock() 1174 if (!IntvOut) { in splitLiveThroughBlock() 1195 selectIntv(IntvOut); in splitLiveThroughBlock() 1202 if (IntvIn == IntvOut && !LeaveBefore && !EnterAfter) { in splitLiveThroughBlock() 1208 selectIntv(IntvOut); in splitLiveThroughBlock() 1215 assert((!IntvOut || !EnterAfter || EnterAfter < LSP) && "Impossible intf"); in splitLiveThroughBlock() 1217 if (IntvIn != IntvOut && (!LeaveBefore || !EnterAfter || in splitLiveThroughBlock() 1225 selectIntv(IntvOut); in splitLiveThroughBlock() [all …]
|
D | SplitKit.h | 443 unsigned IntvOut, SlotIndex EnterAfter); 466 unsigned IntvOut, SlotIndex EnterAfter);
|
D | RegAllocGreedy.cpp | 1224 unsigned IntvIn = 0, IntvOut = 0; in splitAroundRegion() local 1239 IntvOut = 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() 1258 SE->splitRegOutBlock(BI, IntvOut, IntfOut); in splitAroundRegion() 1273 unsigned IntvIn = 0, IntvOut = 0; in splitAroundRegion() local 1287 IntvOut = Cand.IntvIdx; in splitAroundRegion() 1291 if (!IntvIn && !IntvOut) in splitAroundRegion() 1293 SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut); in splitAroundRegion()
|