Lines Matching refs:output_
191 output_(output), in HGraphVisualizerPrinter()
209 output_ << std::flush; in Flush()
214 output_ << "begin_" << name << "\n"; in StartTag()
221 output_ << "end_" << name << "\n"; in EndTag()
226 output_ << name << " \"" << property << "\"\n"; in PrintProperty()
231 output_ << name << " \"" << property << id << "\"\n"; in PrintProperty()
236 output_ << name << "\n"; in PrintEmptyProperty()
241 output_ << name << " " << time(nullptr) << "\n"; in PrintTime()
246 output_ << name << " " << value << "\n"; in PrintInt()
251 output_ << " "; in AddIndent()
257 output_ << "predecessors"; in PrintPredecessors()
259 output_ << " \"B" << predecessor->GetBlockId() << "\" "; in PrintPredecessors()
262 output_ << " \"" << kDisassemblyBlockFrameEntry << "\" "; in PrintPredecessors()
264 output_<< "\n"; in PrintPredecessors()
269 output_ << "successors"; in PrintSuccessors()
271 output_ << " \"B" << successor->GetBlockId() << "\" "; in PrintSuccessors()
273 output_<< "\n"; in PrintSuccessors()
278 output_ << "xhandlers"; in PrintExceptionHandlers()
280 output_ << " \"B" << handler->GetBlockId() << "\" "; in PrintExceptionHandlers()
285 output_ << " \"" << kDisassemblyBlockSlowPaths << "\" "; in PrintExceptionHandlers()
287 output_<< "\n"; in PrintExceptionHandlers()
333 output_ << " "; in StartAttributeStream()
336 output_ << " " << name << ":"; in StartAttributeStream()
338 return output_; in StartAttributeStream()
599 output_ << instruction->DebugName(); in PrintInstruction()
723 output_ << "\n"; in PrintInstruction()
724 disassembler_->Disassemble(output_, it->second.start, it->second.end); in PrintInstruction()
735 output_ << bci << " " << num_uses << " " in PrintInstructions()
738 output_ << " " << kEndInstructionMarker << "\n"; in PrintInstructions()
779 output_ << " 0 0 disasm " << kDisassemblyBlockFrameEntry << " "; in DumpDisassemblyBlockForFrameEntry()
782 output_ << "\n"; in DumpDisassemblyBlockForFrameEntry()
783 disassembler_->Disassemble(output_, frame_entry.start, frame_entry.end); in DumpDisassemblyBlockForFrameEntry()
785 output_ << kEndInstructionMarker << "\n"; in DumpDisassemblyBlockForFrameEntry()
801 output_ << " 0 0 disasm " << info.slow_path->GetDescription() << "\n"; in DumpDisassemblyBlockForSlowPaths()
802 disassembler_->Disassemble(output_, info.code_interval.start, info.code_interval.end); in DumpDisassemblyBlockForSlowPaths()
803 output_ << kEndInstructionMarker << "\n"; in DumpDisassemblyBlockForSlowPaths()
859 output_ << instruction->GetId() << " " << DataType::TypeId(instruction->GetType()) in VisitBasicBlock()
862 output_ << input->GetId() << " "; in VisitBasicBlock()
864 output_ << "]\n"; in VisitBasicBlock()
881 std::ostream& output_; member in art::HGraphVisualizerPrinter
896 : output_(output), graph_(graph), codegen_(codegen) {} in HGraphVisualizer()
899 DCHECK(output_ != nullptr); in PrintHeader()
900 HGraphVisualizerPrinter printer(graph_, *output_, "", true, false, codegen_); in PrintHeader()
925 DCHECK(output_ != nullptr); in DumpGraph()
928 *output_, in DumpGraph()
938 DCHECK(output_ != nullptr); in DumpGraphWithDisassembly()
941 *output_, in DumpGraphWithDisassembly()