Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DSplitKit.cpp1156 unsigned IntvIn, SlotIndex LeaveBefore, in splitLiveThroughBlock() argument
1163 << ", live-through " << IntvIn << " -> " << IntvOut); in splitLiveThroughBlock()
1165 assert((IntvIn || IntvOut) && "Use splitSingleBlock for isolated blocks"); in splitLiveThroughBlock()
1168 assert((!IntvIn || !LeaveBefore || LeaveBefore > Start) && "Impossible intf"); in splitLiveThroughBlock()
1180 selectIntv(IntvIn); in splitLiveThroughBlock()
1187 if (!IntvIn) { in splitLiveThroughBlock()
1201 if (IntvIn == IntvOut && !LeaveBefore && !EnterAfter) { in splitLiveThroughBlock()
1216 if (IntvIn != IntvOut && (!LeaveBefore || !EnterAfter || in splitLiveThroughBlock()
1232 selectIntv(IntvIn); in splitLiveThroughBlock()
1252 selectIntv(IntvIn); in splitLiveThroughBlock()
[all …]
DSplitKit.h442 unsigned IntvIn, SlotIndex LeaveBefore,
454 unsigned IntvIn, SlotIndex LeaveBefore);
DRegAllocGreedy.cpp1192 unsigned IntvIn = 0, IntvOut = 0; in splitAroundRegion() local
1198 IntvIn = Cand.IntvIdx; in splitAroundRegion()
1214 if (!IntvIn && !IntvOut) { in splitAroundRegion()
1221 if (IntvIn && IntvOut) in splitAroundRegion()
1222 SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut); in splitAroundRegion()
1223 else if (IntvIn) in splitAroundRegion()
1224 SE->splitRegInBlock(BI, IntvIn, IntfIn); in splitAroundRegion()
1241 unsigned IntvIn = 0, IntvOut = 0; in splitAroundRegion() local
1247 IntvIn = Cand.IntvIdx; in splitAroundRegion()
1259 if (!IntvIn && !IntvOut) in splitAroundRegion()
[all …]