Home
last modified time | relevance | path

Searched refs:BlockStart (Results 1 – 10 of 10) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/CodeGen/
DSplitKit.cpp858 SlotIndex BlockStart, BlockEnd; in transferValues() local
859 tie(BlockStart, BlockEnd) = LIS.getSlotIndexes()->getMBBRange(MBB); in transferValues()
862 if (Start != BlockStart) { in transferValues()
863 VNInfo *VNI = LI->extendInBlock(BlockStart, std::min(BlockEnd, End)); in transferValues()
872 BlockStart = BlockEnd; in transferValues()
876 assert(Start <= BlockStart && "Expected live-in block"); in transferValues()
877 while (BlockStart < End) { in transferValues()
880 if (BlockStart == ParentVNI->def) { in transferValues()
883 VNInfo *VNI = LI->extendInBlock(BlockStart, std::min(BlockEnd, End)); in transferValues()
898 BlockStart = BlockEnd; in transferValues()
DLiveIntervalAnalysis.cpp816 SlotIndex BlockStart = getMBBStartIdx(MBB); in shrinkToUses() local
819 if (VNInfo *ExtVNI = NewLI.extendInBlock(BlockStart, Idx.getNextSlot())) { in shrinkToUses()
823 if (!VNI->isPHIDef() || VNI->def != BlockStart || !UsedPHIs.insert(VNI)) in shrinkToUses()
839 DEBUG(dbgs() << " live-in at " << BlockStart << '\n'); in shrinkToUses()
840 NewLI.addRange(LiveRange(BlockStart, Idx.getNextSlot(), VNI)); in shrinkToUses()
/external/brotli/csharp/org/brotli/dec/
DRunningState.cs13 internal const int BlockStart = 1; field in Org.Brotli.Dec.RunningState
DState.cs153 state.runningState = Org.Brotli.Dec.RunningState.BlockStart; in SetInput()
DDecode.cs618 state.runningState = Org.Brotli.Dec.RunningState.BlockStart; in CopyUncompressedData()
634 state.runningState = Org.Brotli.Dec.RunningState.BlockStart; in CopyUncompressedData()
678 case Org.Brotli.Dec.RunningState.BlockStart: in Decompress()
704 state.runningState = Org.Brotli.Dec.RunningState.BlockStart; in Decompress()
949 state.runningState = Org.Brotli.Dec.RunningState.BlockStart; in Decompress()
/external/llvm/lib/CodeGen/
DSplitKit.cpp973 SlotIndex BlockStart, BlockEnd; in transferValues() local
974 std::tie(BlockStart, BlockEnd) = LIS.getSlotIndexes()->getMBBRange(&*MBB); in transferValues()
977 if (Start != BlockStart) { in transferValues()
978 VNInfo *VNI = LR.extendInBlock(BlockStart, std::min(BlockEnd, End)); in transferValues()
987 BlockStart = BlockEnd; in transferValues()
991 assert(Start <= BlockStart && "Expected live-in block"); in transferValues()
992 while (BlockStart < End) { in transferValues()
995 if (BlockStart == ParentVNI->def) { in transferValues()
998 VNInfo *VNI = LR.extendInBlock(BlockStart, std::min(BlockEnd, End)); in transferValues()
1013 BlockStart = BlockEnd; in transferValues()
DLiveIntervalAnalysis.cpp367 SlotIndex BlockStart = Indexes.getMBBStartIdx(MBB); in extendSegmentsToUses() local
370 if (VNInfo *ExtVNI = LR.extendInBlock(BlockStart, Idx)) { in extendSegmentsToUses()
374 if (!VNI->isPHIDef() || VNI->def != BlockStart || in extendSegmentsToUses()
390 DEBUG(dbgs() << " live-in at " << BlockStart << '\n'); in extendSegmentsToUses()
391 LR.addSegment(LiveRange::Segment(BlockStart, Idx, VNI)); in extendSegmentsToUses()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DSplitKit.cpp1175 SlotIndex BlockStart, BlockEnd; in transferValues() local
1176 std::tie(BlockStart, BlockEnd) = LIS.getSlotIndexes()->getMBBRange(&*MBB); in transferValues()
1179 if (Start != BlockStart) { in transferValues()
1180 VNInfo *VNI = LI.extendInBlock(BlockStart, std::min(BlockEnd, End)); in transferValues()
1189 BlockStart = BlockEnd; in transferValues()
1193 assert(Start <= BlockStart && "Expected live-in block"); in transferValues()
1194 while (BlockStart < End) { in transferValues()
1197 if (BlockStart == ParentVNI->def) { in transferValues()
1200 VNInfo *VNI = LI.extendInBlock(BlockStart, std::min(BlockEnd, End)); in transferValues()
1215 BlockStart = BlockEnd; in transferValues()
DLiveIntervals.cpp391 SlotIndex BlockStart = Indexes->getMBBStartIdx(MBB); in extendSegmentsToUses() local
394 if (VNInfo *ExtVNI = Segments.extendInBlock(BlockStart, Idx)) { in extendSegmentsToUses()
398 if (!VNI->isPHIDef() || VNI->def != BlockStart || in extendSegmentsToUses()
414 LLVM_DEBUG(dbgs() << " live-in at " << BlockStart << '\n'); in extendSegmentsToUses()
415 Segments.addSegment(LiveRange::Segment(BlockStart, Idx, VNI)); in extendSegmentsToUses()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
DExplainOutputStyle.cpp96 uint64_t BlockStart = pdbBlockIndex() * File.pdb().getBlockSize(); in pdbBlockOffset() local
97 assert(FileOffset >= BlockStart); in pdbBlockOffset()
98 return FileOffset - BlockStart; in pdbBlockOffset()