Searched refs:BlockStart (Results 1 – 6 of 6) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/ |
D | MachOLinkGraphBuilder.cpp | 452 JITTargetAddress BlockStart = BlockSyms.front()->Value; in graphifyRegularSymbols() local 456 JITTargetAddress BlockOffset = BlockStart - NSec.Address; in graphifyRegularSymbols() 457 JITTargetAddress BlockSize = BlockEnd - BlockStart; in graphifyRegularSymbols() 460 dbgs() << " Creating block for " << formatv("{0:x16}", BlockStart) in graphifyRegularSymbols() 471 StringRef(NSec.Data + BlockOffset, BlockSize), BlockStart, in graphifyRegularSymbols() 472 NSec.Alignment, BlockStart % NSec.Alignment) in graphifyRegularSymbols() 474 BlockStart, NSec.Alignment, in graphifyRegularSymbols() 475 BlockStart % NSec.Alignment); in graphifyRegularSymbols() 502 ? G->addDefinedSymbol(B, NSym.Value - BlockStart, *NSym.Name, in graphifyRegularSymbols() 505 : G->addAnonymousSymbol(B, NSym.Value - BlockStart, in graphifyRegularSymbols()
|
/third_party/skia/third_party/externals/brotli/csharp/org/brotli/dec/ |
D | RunningState.cs | 13 internal const int BlockStart = 1; field in Org.Brotli.Dec.RunningState
|
D | State.cs | 153 state.runningState = Org.Brotli.Dec.RunningState.BlockStart; in SetInput()
|
D | Decode.cs | 618 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()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | SplitKit.cpp | 1175 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()
|
D | LiveIntervals.cpp | 395 SlotIndex BlockStart = Indexes->getMBBStartIdx(MBB); in extendSegmentsToUses() local 398 if (VNInfo *ExtVNI = Segments.extendInBlock(BlockStart, Idx)) { in extendSegmentsToUses() 402 if (!VNI->isPHIDef() || VNI->def != BlockStart || in extendSegmentsToUses() 418 LLVM_DEBUG(dbgs() << " live-in at " << BlockStart << '\n'); in extendSegmentsToUses() 419 Segments.addSegment(LiveRange::Segment(BlockStart, Idx, VNI)); in extendSegmentsToUses()
|