Home
last modified time | relevance | path

Searched refs:InstructionBlockAt (Results 1 – 12 of 12) sorted by relevance

/external/v8/src/compiler/
Dframe-elider.cc52 if (!InstructionBlockAt(succ)->needs_frame()) { in MarkDeConstruction()
70 if (InstructionBlockAt(succ)->needs_frame()) { in MarkDeConstruction()
72 InstructionBlockAt(succ)->mark_must_construct_frame(); in MarkDeConstruction()
109 if (InstructionBlockAt(pred)->needs_frame() && in PropagateIntoBlock()
110 (!InstructionBlockAt(pred)->IsDeferred() || block->IsDeferred())) { in PropagateIntoBlock()
119 if (!InstructionBlockAt(succ)->needs_frame()) return false; in PropagateIntoBlock()
131 InstructionBlock* FrameElider::InstructionBlockAt(RpoNumber rpo_number) const { in InstructionBlockAt() function in v8::internal::compiler::FrameElider
132 return code_->InstructionBlockAt(rpo_number); in InstructionBlockAt()
Dframe-elider.h31 InstructionBlock* InstructionBlockAt(RpoNumber rpo_number) const;
Dmove-optimizer.cc95 if (!code()->InstructionBlockAt(pred_id)->IsDeferred()) { in Run()
329 const InstructionBlock* pred = code()->InstructionBlockAt(pred_index); in OptimizeMerge()
351 const InstructionBlock* pred = code()->InstructionBlockAt(pred_index); in OptimizeMerge()
428 const InstructionBlock* pred = code()->InstructionBlockAt(pred_index); in OptimizeMerge()
Dinstruction.cc648 const InstructionBlock* successor = InstructionBlockAt(successor_id); in ValidateEdgeSplitForm()
663 CHECK(InstructionBlockAt(successor_id)->IsDeferred()); in ValidateDeferredBlockExitPaths()
677 CHECK(InstructionBlockAt(predecessor_id)->IsDeferred()); in ValidateDeferredBlockEntryPaths()
736 const InstructionBlock* block = InstructionBlockAt(rpo); in GetBlockStart()
743 current_block_ = InstructionBlockAt(rpo); in StartBlock()
888 const InstructionBlock* block = InstructionBlockAt(rpo); in PrintBlock()
Dlive-range-separator.cc79 code->InstructionBlockAt(RpoNumber::FromInt(block_id)); in SplinterLiveRange()
Djump-threading.cc71 InstructionBlock* block = code->InstructionBlockAt(state.stack.top()); in ComputeForwarding()
Dregister-allocator.cc52 return sequence->InstructionBlockAt(index); in GetContainingLoop()
1668 const InstructionBlock* successor = code()->InstructionBlockAt(succ); in MeetRegisterConstraintsForLastInstructionInBlock()
1680 const InstructionBlock* successor = code()->InstructionBlockAt(succ); in MeetRegisterConstraintsForLastInstructionInBlock()
1813 code()->InstructionBlockAt(block->predecessors()[i]); in ResolvePhis()
1859 const InstructionBlock* successor = code->InstructionBlockAt(succ); in ComputeLiveOut()
2214 code()->InstructionBlockAt(predecessors[i]); in ProcessPhis()
2271 code()->InstructionBlockAt(RpoNumber::FromInt(block_id)); in BuildLiveRanges()
2395 data()->code()->InstructionBlockAt(pred_index); in IntervalPredecessorsCoveredByRange()
3150 code()->InstructionBlockAt(block->predecessors()[i]); in TryReuseSpillForPhi()
3520 const InstructionBlock* pred_block = code()->InstructionBlockAt(pred); in ResolveControlFlow()
[all …]
Dcode-generator.cc248 ->InstructionBlockAt(current_block_) in IsNextInAssemblyOrder()
250 .IsNext(code()->InstructionBlockAt(block)->ao_number()); in IsNextInAssemblyOrder()
Dgraph-visualizer.cc431 instructions->InstructionBlockAt( in PrintSchedule()
Dinstruction.h1313 InstructionBlock* InstructionBlockAt(RpoNumber rpo_number) { in InstructionBlockAt() function
1322 const InstructionBlock* InstructionBlockAt(RpoNumber rpo_number) const { in InstructionBlockAt() function
Dinstruction-selector.cc75 sequence()->InstructionBlockAt(RpoNumber::FromInt(block->rpo_number())); in SelectInstructions()
750 sequence()->InstructionBlockAt(RpoNumber::FromInt(block->rpo_number())); in VisitBlock()
1580 ->InstructionBlockAt(RpoNumber::FromInt(current_block_->rpo_number())) in VisitPhi()
/external/v8/test/cctest/compiler/
Dtest-instruction.cc93 return code->InstructionBlockAt(RpoFor(block)); in BlockAt()