HomeSort by relevance Sort by last modified time
    Searched refs:rpo (Results 1 - 10 of 10) sorted by null

  /external/v8/src/compiler/
instruction-scheduler.h 31 void StartBlock(RpoNumber rpo);
32 void EndBlock(RpoNumber rpo);
instruction-scheduler.cc 43 void InstructionScheduler::StartBlock(RpoNumber rpo) {
48 sequence()->StartBlock(rpo);
52 void InstructionScheduler::EndBlock(RpoNumber rpo) {
54 sequence()->EndBlock(rpo);
code-generator.h 60 Label* GetLabel(RpoNumber rpo) { return &labels_[rpo.ToSize()]; }
instruction.cc 519 return os << "RPO" << constant.ToRpoNumber().ToInt();
661 Instruction* InstructionSequence::GetBlockStart(RpoNumber rpo) const {
662 const InstructionBlock* block = InstructionBlockAt(rpo);
667 void InstructionSequence::StartBlock(RpoNumber rpo) {
668 DCHECK(block_starts_.size() == rpo.ToSize());
669 InstructionBlock* block = InstructionBlockAt(rpo);
676 void InstructionSequence::EndBlock(RpoNumber rpo) {
678 InstructionBlock* block = InstructionBlockAt(rpo);
886 std::ostream& operator<<(std::ostream& os, const RpoNumber& rpo) {
887 return os << rpo.ToSize()
904 RpoNumber rpo = RpoNumber::FromInt(i); local
    [all...]
jump-threading.cc 163 // Patch RPO immediates.
168 RpoNumber rpo = constant.ToRpoNumber(); local
169 RpoNumber fw = result[rpo.ToInt()];
170 if (!(fw == rpo)) immediates[i] = Constant(fw);
instruction-selector.h 62 void StartBlock(RpoNumber rpo);
63 void EndBlock(RpoNumber rpo);
graph-visualizer.cc 372 const BasicBlockVector* rpo = schedule->rpo_order(); local
373 for (size_t i = 0; i < rpo->size(); i++) {
374 BasicBlock* current = (*rpo)[i];
instruction.h 904 explicit Constant(RpoNumber rpo) : type_(kRpoNumber), value_(rpo.ToInt()) {}
    [all...]
instruction-selector.cc 86 void InstructionSelector::StartBlock(RpoNumber rpo) {
90 scheduler_->StartBlock(rpo);
92 sequence()->StartBlock(rpo);
97 void InstructionSelector::EndBlock(RpoNumber rpo) {
101 scheduler_->EndBlock(rpo);
103 sequence()->EndBlock(rpo);
    [all...]
  /external/v8/test/unittests/compiler/
instruction-sequence-unittest.cc 93 LoopData loop_data = {Rpo::Invalid(), loop_blocks};
423 Rpo rpo = Rpo::FromInt(static_cast<int>(instruction_blocks_.size())); local
424 Rpo loop_header = Rpo::Invalid();
425 Rpo loop_end = Rpo::Invalid();
430 loop_end = Rpo::FromInt(rpo.ToInt() + loop_data.expected_blocks_)
    [all...]

Completed in 220 milliseconds