Home | History | Annotate | Download | only in optimizing

Lines Matching refs:output_

36         output_(output),
43 output_ << "begin_" << name << std::endl;
50 output_ << "end_" << name << std::endl;
55 output_ << name << " \"" << property << "\"" << std::endl;
60 output_ << name << " \"" << property << id << "\"" << std::endl;
65 output_ << name << std::endl;
70 output_ << name << " " << time(NULL) << std::endl;
75 output_ << name << " " << value << std::endl;
80 output_ << " ";
86 output_ << "predecessors";
89 output_ << " \"B" << predecessor->GetBlockId() << "\" ";
91 output_<< std::endl;
96 output_ << "successors";
99 output_ << " \"B" << successor->GetBlockId() << "\" ";
101 output_<< std::endl;
107 codegen_.DumpFloatingPointRegister(output_, location.reg().RegId());
109 codegen_.DumpCoreRegister(output_, location.reg().RegId());
112 output_ << "constant";
114 output_ << "invalid";
116 output_ << location.GetStackIndex() << "(sp)";
119 output_ << "2x" << location.GetStackIndex() << "(sp)";
124 output_ << instruction->DebugName();
125 output_ << " (";
129 output_ << " -> ";
132 output_ << ", ";
135 output_ << ")";
139 output_ << instruction->DebugName();
141 output_ << " [ ";
143 output_ << "v" << inputs.Current()->GetId() << " ";
145 output_ << "]";
148 output_ << " (liveness: " << instruction->GetLifetimePosition();
150 output_ << " ";
152 interval.Dump(output_);
154 output_ << ")";
158 output_ << " ( ";
161 output_ << " ";
163 output_ << ")";
165 output_ << " -> ";
178 output_ << bci << " " << instruction->NumberOfUses() << " v" << instruction->GetId() << " ";
180 output_ << kEndInstructionMarker << std::endl;
217 output_ << instruction->GetId() << " v" << instruction->GetId() << "[ ";
219 output_ << inputs.Current()->GetId() << " ";
221 output_ << "]" << std::endl;
234 std::ostream& output_;
247 : output_(output), graph_(graph), codegen_(codegen), is_enabled_(false) {
257 HGraphVisualizerPrinter printer(graph, *output_, "", codegen_);
269 : output_(output), graph_(graph), codegen_(codegen), is_enabled_(false) {
275 HGraphVisualizerPrinter printer(graph, *output_, "", codegen_);
287 HGraphVisualizerPrinter printer(graph_, *output_, pass_name, codegen_);