HomeSort by relevance Sort by last modified time
    Searched refs:BlockStart (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/CodeGen/
SplitKit.cpp 889 SlotIndex BlockStart, BlockEnd;
890 tie(BlockStart, BlockEnd) = LIS.getSlotIndexes()->getMBBRange(MBB);
893 if (Start != BlockStart) {
894 VNInfo *VNI = LI->extendInBlock(BlockStart, std::min(BlockEnd, End));
903 BlockStart = BlockEnd;
907 assert(Start <= BlockStart && "Expected live-in block");
908 while (BlockStart < End) {
911 if (BlockStart == ParentVNI->def) {
914 VNInfo *VNI = LI->extendInBlock(BlockStart, std::min(BlockEnd, End))
    [all...]
LiveIntervalAnalysis.cpp 372 SlotIndex BlockStart = getMBBStartIdx(MBB);
375 if (VNInfo *ExtVNI = NewLI.extendInBlock(BlockStart, Idx)) {
379 if (!VNI->isPHIDef() || VNI->def != BlockStart || !UsedPHIs.insert(VNI))
395 DEBUG(dbgs() << " live-in at " << BlockStart << '\n');
396 NewLI.addRange(LiveRange(BlockStart, Idx, VNI));
    [all...]

Completed in 1053 milliseconds