Lines Matching refs:output_
185 output_(output), in HGraphVisualizerPrinter()
203 output_ << std::flush; in Flush()
208 output_ << "begin_" << name << "\n"; in StartTag()
215 output_ << "end_" << name << "\n"; in EndTag()
220 output_ << name << " \"" << property << "\"\n"; in PrintProperty()
225 output_ << name << " \"" << property << id << "\"\n"; in PrintProperty()
230 output_ << name << "\n"; in PrintEmptyProperty()
235 output_ << name << " " << time(nullptr) << "\n"; in PrintTime()
240 output_ << name << " " << value << "\n"; in PrintInt()
245 output_ << " "; in AddIndent()
251 output_ << "predecessors"; in PrintPredecessors()
253 output_ << " \"B" << predecessor->GetBlockId() << "\" "; in PrintPredecessors()
256 output_ << " \"" << kDisassemblyBlockFrameEntry << "\" "; in PrintPredecessors()
258 output_<< "\n"; in PrintPredecessors()
263 output_ << "successors"; in PrintSuccessors()
265 output_ << " \"B" << successor->GetBlockId() << "\" "; in PrintSuccessors()
267 output_<< "\n"; in PrintSuccessors()
272 output_ << "xhandlers"; in PrintExceptionHandlers()
274 output_ << " \"B" << handler->GetBlockId() << "\" "; in PrintExceptionHandlers()
279 output_ << " \"" << kDisassemblyBlockSlowPaths << "\" "; in PrintExceptionHandlers()
281 output_<< "\n"; in PrintExceptionHandlers()
327 output_ << " "; in StartAttributeStream()
330 output_ << " " << name << ":"; in StartAttributeStream()
332 return output_; in StartAttributeStream()
596 output_ << instruction->DebugName(); in PrintInstruction()
720 output_ << "\n"; in PrintInstruction()
721 disassembler_->Disassemble(output_, it->second.start, it->second.end); in PrintInstruction()
732 output_ << bci << " " << num_uses << " " in PrintInstructions()
735 output_ << " " << kEndInstructionMarker << "\n"; in PrintInstructions()
776 output_ << " 0 0 disasm " << kDisassemblyBlockFrameEntry << " "; in DumpDisassemblyBlockForFrameEntry()
779 output_ << "\n"; in DumpDisassemblyBlockForFrameEntry()
780 disassembler_->Disassemble(output_, frame_entry.start, frame_entry.end); in DumpDisassemblyBlockForFrameEntry()
782 output_ << kEndInstructionMarker << "\n"; in DumpDisassemblyBlockForFrameEntry()
798 output_ << " 0 0 disasm " << info.slow_path->GetDescription() << "\n"; in DumpDisassemblyBlockForSlowPaths()
799 disassembler_->Disassemble(output_, info.code_interval.start, info.code_interval.end); in DumpDisassemblyBlockForSlowPaths()
800 output_ << kEndInstructionMarker << "\n"; in DumpDisassemblyBlockForSlowPaths()
856 output_ << instruction->GetId() << " " << DataType::TypeId(instruction->GetType()) in VisitBasicBlock()
859 output_ << input->GetId() << " "; in VisitBasicBlock()
861 output_ << "]\n"; in VisitBasicBlock()
878 std::ostream& output_; member in art::HGraphVisualizerPrinter
893 : output_(output), graph_(graph), codegen_(codegen) {} in HGraphVisualizer()
896 DCHECK(output_ != nullptr); in PrintHeader()
897 HGraphVisualizerPrinter printer(graph_, *output_, "", true, false, codegen_); in PrintHeader()
909 DCHECK(output_ != nullptr); in DumpGraph()
912 *output_, in DumpGraph()
922 DCHECK(output_ != nullptr); in DumpGraphWithDisassembly()
925 *output_, in DumpGraphWithDisassembly()