Searched refs:CFGPrinter (Results 1 - 8 of 8) sorted by relevance

/openjdk9/hotspot/src/share/vm/c1/
H A Dc1_CFGPrinter.hpp41 class CFGPrinter : public AllStatic { class in inherits:AllStatic
H A Dc1_CFGPrinter.cpp45 void block_do(BlockBegin* block) { if (block != NULL) CFGPrinter::output()->print_block(block); }
78 CFGPrinterOutput* CFGPrinter::_output = NULL;
83 void CFGPrinter::print_compilation(Compilation* compilation) {
91 void CFGPrinter::print_cfg(BlockList* blocks, const char* name, bool do_print_HIR, bool do_print_LIR) {
96 void CFGPrinter::print_cfg(IR* blocks, const char* name, bool do_print_HIR, bool do_print_LIR) {
102 void CFGPrinter::print_intervals(IntervalList* intervals, const char* name) {
H A Dc1_Compilation.cpp164 CFGPrinter::print_cfg(_hir, "After Generation of HIR", true, false);
211 CFGPrinter::print_cfg(_hir, "Before RangeCheckElimination", true, false);
224 CFGPrinter::print_cfg(_hir, "After RangeCheckElimination", true, false);
455 CFGPrinter::print_compilation(this);
H A Dc1_Compilation.hpp53 class CFGPrinter;
H A Dc1_LinearScan.cpp3178 CFGPrinter::print_intervals(&_intervals, label);
3191 CFGPrinter::print_cfg(ir()->linear_scan_order(), label, hir_valid, true);
H A Dc1_GraphBuilder.cpp121 CFGPrinter::print_cfg(_bci2block, title.as_string(), false, false);
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.printer/src/org/graalvm/compiler/printer/
H A DCFGPrinterObserver.java64 * Observes compilation events and uses {@link CFGPrinter} to produce a control flow graph for the
69 private CFGPrinter cfgPrinter;
84 TTY.println("CFGPrinter: Exception during output of " + message + ": " + ex);
121 TTY.println("CFGPrinter: Dumping method %s to %s", method, cfgFile.getAbsolutePath());
151 cfgPrinter = new CFGPrinter(out);
155 TTY.println("CFGPrinter: Output to file %s", cfgFile.getAbsolutePath());
H A DCFGPrinter.java77 class CFGPrinter extends CompilationPrinter { class in inherits:CompilationPrinter
91 CFGPrinter(OutputStream out) { method in class:CFGPrinter

Completed in 294 milliseconds