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

  /external/v8/src/compiler/
instruction-scheduler.h 34 void StartBlock(RpoNumber rpo);
35 void EndBlock(RpoNumber rpo);
instruction-scheduler.cc 93 void InstructionScheduler::StartBlock(RpoNumber rpo) {
100 sequence()->StartBlock(rpo);
104 void InstructionScheduler::EndBlock(RpoNumber rpo) {
110 sequence()->EndBlock(rpo);
jump-threading.cc 173 // Patch RPO immediates.
178 RpoNumber rpo = constant.ToRpoNumber(); local
179 RpoNumber fw = result[rpo.ToInt()];
180 if (!(fw == rpo)) immediates[i] = Constant(fw);
instruction.cc 595 return os << "RPO" << constant.ToRpoNumber().ToInt();
841 Instruction* InstructionSequence::GetBlockStart(RpoNumber rpo) const {
842 const InstructionBlock* block = InstructionBlockAt(rpo);
847 void InstructionSequence::StartBlock(RpoNumber rpo) {
849 current_block_ = InstructionBlockAt(rpo);
855 void InstructionSequence::EndBlock(RpoNumber rpo) {
857 DCHECK_EQ(current_block_->rpo_number(), rpo);
994 RpoNumber rpo = RpoNumber::FromInt(block_id); local
    [all...]
code-generator.h 67 Label* GetLabel(RpoNumber rpo) { return &labels_[rpo.ToSize()]; }
instruction-selector.h 72 void StartBlock(RpoNumber rpo);
73 void EndBlock(RpoNumber rpo);
graph-visualizer.cc 418 const BasicBlockVector* rpo = schedule->rpo_order(); local
419 for (size_t i = 0; i < rpo->size(); i++) {
420 BasicBlock* current = (*rpo)[i];
671 // Do a post-order depth-first search on the RPO graph. For every node,
instruction.h     [all...]
instruction-selector.cc 102 void InstructionSelector::StartBlock(RpoNumber rpo) {
105 scheduler_->StartBlock(rpo);
107 sequence()->StartBlock(rpo);
112 void InstructionSelector::EndBlock(RpoNumber rpo) {
115 scheduler_->EndBlock(rpo);
117 sequence()->EndBlock(rpo);
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
plive.go 56 rpo int // reverse post-order number (also index in cfg)
94 // in the arguments and locals area, indexed by bb.rpo.
122 result.rpo = -1
184 fmt.Printf("basic block %d\n", bb.rpo)
187 fmt.Printf(" %d", pred.rpo)
192 fmt.Printf(" %d", succ.rpo)
263 func reversepostorder(root *BasicBlock, rpo *int32) {
267 reversepostorder(bb, rpo)
270 *rpo -= 1
271 root.rpo = int(*rpo
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
plive.go 56 rpo int // reverse post-order number (also index in cfg)
94 // in the arguments and locals area, indexed by bb.rpo.
122 result.rpo = -1
184 fmt.Printf("basic block %d\n", bb.rpo)
187 fmt.Printf(" %d", pred.rpo)
192 fmt.Printf(" %d", succ.rpo)
263 func reversepostorder(root *BasicBlock, rpo *int32) {
267 reversepostorder(bb, rpo)
270 *rpo -= 1
271 root.rpo = int(*rpo
    [all...]
  /external/v8/tools/turbolizer/
graph-view.js 278 n.rpo = -1;

Completed in 90 milliseconds