/third_party/node/deps/v8/src/maglev/ |
D | maglev-graph-printer.cc | 25 void PrintPaddedId(std::ostream& os, MaglevGraphLabeller* graph_labeller, in PrintPaddedId() argument 28 int id = graph_labeller->NodeId(node); in PrintPaddedId() 30 int max_width = graph_labeller->max_node_id_width() + 2 + padding_adjustement; in PrintPaddedId() 36 os << graph_labeller->NodeId(node) << ": "; in PrintPaddedId() 43 void PrintPadding(std::ostream& os, MaglevGraphLabeller* graph_labeller, in PrintPadding() argument 46 graph_labeller->max_node_id_width() + 2 + padding_adjustement); in PrintPadding() 262 MaglevGraphLabeller* graph_labeller = compilation_unit->graph_labeller(); in PreProcessBasicBlock() local 298 int block_id = graph_labeller->BlockId(block); in PreProcessBasicBlock() 309 MaglevGraphLabeller* graph_labeller = state.graph_labeller(); in PrintEagerDeopt() local 312 PrintPadding(os, graph_labeller, 0); in PrintEagerDeopt() [all …]
|
D | maglev-ir.cc | 288 void PrintInputs(std::ostream& os, MaglevGraphLabeller* graph_labeller, in PrintInputs() argument 295 graph_labeller->PrintInput(os, node->input(i)); in PrintInputs() 300 void PrintResult(std::ostream& os, MaglevGraphLabeller* graph_labeller, in PrintResult() argument 303 void PrintResult(std::ostream& os, MaglevGraphLabeller* graph_labeller, in PrintResult() argument 312 void PrintTargets(std::ostream& os, MaglevGraphLabeller* graph_labeller, in PrintTargets() argument 315 void PrintTargets(std::ostream& os, MaglevGraphLabeller* graph_labeller, in PrintTargets() argument 317 os << " b" << graph_labeller->BlockId(node->target()); in PrintTargets() 320 void PrintTargets(std::ostream& os, MaglevGraphLabeller* graph_labeller, in PrintTargets() argument 322 os << " b" << graph_labeller->BlockId(node->if_true()) << " b" in PrintTargets() 323 << graph_labeller->BlockId(node->if_false()); in PrintTargets() [all …]
|
D | maglev-graph-printer.h | 52 PrintNode(MaglevGraphLabeller* graph_labeller, const NodeBase* node) in PrintNode() argument 53 : graph_labeller_(graph_labeller), node_(node) {} in PrintNode() 66 PrintNodeLabel(MaglevGraphLabeller* graph_labeller, const Node* node) in PrintNodeLabel() argument 67 : graph_labeller_(graph_labeller), node_(node) {} in PrintNodeLabel()
|
D | maglev-compilation-unit.cc | 40 MaglevGraphLabeller* MaglevCompilationUnit::graph_labeller() const { in graph_labeller() function in v8::internal::maglev::MaglevCompilationUnit 42 return info_->graph_labeller(); in graph_labeller() 47 graph_labeller()->RegisterNode(node); in RegisterNodeInGraphLabeller()
|
D | maglev-compilation-info.h | 57 void set_graph_labeller(MaglevGraphLabeller* graph_labeller); 58 MaglevGraphLabeller* graph_labeller() const { in graph_labeller() function
|
D | maglev-code-generator.cc | 93 ss << "-- Block b" << graph_labeller()->BlockId(block); in PreProcessBasicBlock() 104 ss << "-- " << graph_labeller()->NodeId(node) << ": " in Process() 105 << PrintNode(graph_labeller(), node); in Process() 277 << graph_labeller()->NodeId(phi) << ")"; in EmitBlockEndGapMoves() 296 MaglevGraphLabeller* graph_labeller() const { in graph_labeller() function in v8::internal::maglev::__anone8b155aa0111::MaglevCodeGeneratingNodeProcessor 297 return code_gen_state_->graph_labeller(); in graph_labeller()
|
D | maglev-compilation-info.cc | 90 MaglevGraphLabeller* graph_labeller) { in set_graph_labeller() argument 91 graph_labeller_.reset(graph_labeller); in set_graph_labeller()
|
D | maglev-regalloc.h | 100 MaglevGraphLabeller* graph_labeller() const { in graph_labeller() function 101 return compilation_unit_->graph_labeller(); in graph_labeller()
|
D | maglev-graph-builder.h | 108 graph_labeller()->RegisterNode(phi); in ProcessMergePoint() 201 if (has_graph_labeller()) graph_labeller()->RegisterNode(node); in BYTECODE_LIST() 399 graph_labeller()->RegisterBasicBlock(block); in CreateBlock() 526 MaglevGraphLabeller* graph_labeller() const { in graph_labeller() function 527 return compilation_unit_->graph_labeller(); in graph_labeller()
|
D | maglev-code-gen-state.h | 72 MaglevGraphLabeller* graph_labeller() const { in graph_labeller() function 73 return compilation_unit_->graph_labeller(); in graph_labeller()
|
D | maglev-graph-processor.h | 64 MaglevGraphLabeller* graph_labeller() const { in graph_labeller() function 65 return compilation_unit_->graph_labeller(); in graph_labeller()
|
D | maglev-compilation-unit.h | 40 MaglevGraphLabeller* graph_labeller() const;
|
D | maglev-graph-verifier.h | 35 graph_labeller_ = compilation_unit->graph_labeller(); in PreProcessGraph()
|
D | maglev-regalloc.cc | 462 << "gap move: " << PrintNodeLabel(graph_labeller(), node) << ": " in DropRegisterValue() 569 graph_labeller()->RegisterNode(gap_move); in AddMoveBeforeCurrentNode() 587 << PrintNodeLabel(graph_labeller(), node) << std::endl; in Spill()
|