Searched refs:rpo (Results 1 - 10 of 10) sorted by relevance

/external/v8/src/compiler/
H A Dinstruction-scheduler.h31 void StartBlock(RpoNumber rpo);
32 void EndBlock(RpoNumber rpo);
H A Dinstruction-scheduler.cc43 void InstructionScheduler::StartBlock(RpoNumber rpo) { argument
48 sequence()->StartBlock(rpo);
52 void InstructionScheduler::EndBlock(RpoNumber rpo) { argument
54 sequence()->EndBlock(rpo);
H A Dinstruction.cc661 Instruction* InstructionSequence::GetBlockStart(RpoNumber rpo) const {
662 const InstructionBlock* block = InstructionBlockAt(rpo);
667 void InstructionSequence::StartBlock(RpoNumber rpo) { argument
668 DCHECK(block_starts_.size() == rpo.ToSize());
669 InstructionBlock* block = InstructionBlockAt(rpo);
676 void InstructionSequence::EndBlock(RpoNumber rpo) { argument
678 InstructionBlock* block = InstructionBlockAt(rpo);
886 std::ostream& operator<<(std::ostream& os, const RpoNumber& rpo) { argument
887 return os << rpo.ToSize();
904 RpoNumber rpo local
[all...]
H A Djump-threading.cc168 RpoNumber rpo = constant.ToRpoNumber(); local
169 RpoNumber fw = result[rpo.ToInt()];
170 if (!(fw == rpo)) immediates[i] = Constant(fw);
H A Dcode-generator.h60 Label* GetLabel(RpoNumber rpo) { return &labels_[rpo.ToSize()]; } argument
H A Dinstruction-selector.h62 void StartBlock(RpoNumber rpo);
63 void EndBlock(RpoNumber rpo);
H A Dgraph-visualizer.cc372 const BasicBlockVector* rpo = schedule->rpo_order(); local
373 for (size_t i = 0; i < rpo->size(); i++) {
374 BasicBlock* current = (*rpo)[i];
H A Dinstruction.h904 explicit Constant(RpoNumber rpo) : type_(kRpoNumber), value_(rpo.ToInt()) {}
1227 Instruction* GetBlockStart(RpoNumber rpo) const;
1249 void StartBlock(RpoNumber rpo);
1250 void EndBlock(RpoNumber rpo);
H A Dinstruction-selector.cc86 void InstructionSelector::StartBlock(RpoNumber rpo) { argument
90 scheduler_->StartBlock(rpo);
92 sequence()->StartBlock(rpo);
97 void InstructionSelector::EndBlock(RpoNumber rpo) { argument
101 scheduler_->EndBlock(rpo);
103 sequence()->EndBlock(rpo);
/external/v8/test/unittests/compiler/
H A Dinstruction-sequence-unittest.cc423 Rpo rpo = Rpo::FromInt(static_cast<int>(instruction_blocks_.size())); local
430 loop_end = Rpo::FromInt(rpo.ToInt() + loop_data.expected_blocks_);
432 loop_data.loop_header_ = rpo;
443 InstructionBlock(zone(), rpo, loop_header, loop_end, deferred, false);
446 sequence()->StartBlock(rpo);

Completed in 220 milliseconds