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 858 SlotIndex BlockStart, BlockEnd;
859 tie(BlockStart, BlockEnd) = LIS.getSlotIndexes()->getMBBRange(MBB);
862 if (Start != BlockStart) {
863 VNInfo *VNI = LI->extendInBlock(BlockStart, std::min(BlockEnd, End));
872 BlockStart = BlockEnd;
876 assert(Start <= BlockStart && "Expected live-in block");
877 while (BlockStart < End) {
880 if (BlockStart == ParentVNI->def) {
883 VNInfo *VNI = LI->extendInBlock(BlockStart, std::min(BlockEnd, End));
898 BlockStart = BlockEnd
    [all...]
LiveIntervalAnalysis.cpp 816 SlotIndex BlockStart = getMBBStartIdx(MBB);
819 if (VNInfo *ExtVNI = NewLI.extendInBlock(BlockStart, Idx.getNextSlot())) {
823 if (!VNI->isPHIDef() || VNI->def != BlockStart || !UsedPHIs.insert(VNI))
839 DEBUG(dbgs() << " live-in at " << BlockStart << '\n');
840 NewLI.addRange(LiveRange(BlockStart, Idx.getNextSlot(), VNI));
    [all...]

Completed in 28 milliseconds