Home
last modified time | relevance | path

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

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