Lines Matching refs:output_

188         output_(output),  in HGraphVisualizerPrinter()
206 output_ << std::flush; in Flush()
211 output_ << "begin_" << name << "\n"; in StartTag()
218 output_ << "end_" << name << "\n"; in EndTag()
223 output_ << name << " \"" << property << "\"\n"; in PrintProperty()
228 output_ << name << " \"" << property << id << "\"\n"; in PrintProperty()
233 output_ << name << "\n"; in PrintEmptyProperty()
238 output_ << name << " " << time(nullptr) << "\n"; in PrintTime()
243 output_ << name << " " << value << "\n"; in PrintInt()
248 output_ << " "; in AddIndent()
254 output_ << "predecessors"; in PrintPredecessors()
256 output_ << " \"B" << predecessor->GetBlockId() << "\" "; in PrintPredecessors()
259 output_ << " \"" << kDisassemblyBlockFrameEntry << "\" "; in PrintPredecessors()
261 output_<< "\n"; in PrintPredecessors()
266 output_ << "successors"; in PrintSuccessors()
268 output_ << " \"B" << successor->GetBlockId() << "\" "; in PrintSuccessors()
270 output_<< "\n"; in PrintSuccessors()
275 output_ << "xhandlers"; in PrintExceptionHandlers()
277 output_ << " \"B" << handler->GetBlockId() << "\" "; in PrintExceptionHandlers()
282 output_ << " \"" << kDisassemblyBlockSlowPaths << "\" "; in PrintExceptionHandlers()
284 output_<< "\n"; in PrintExceptionHandlers()
330 output_ << " "; in StartAttributeStream()
333 output_ << " " << name << ":"; in StartAttributeStream()
335 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()
912 DCHECK(output_ != nullptr); in DumpGraph()
915 *output_, in DumpGraph()
925 DCHECK(output_ != nullptr); in DumpGraphWithDisassembly()
928 *output_, in DumpGraphWithDisassembly()