mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-09 09:58:43 +00:00
1006 lines
31 KiB
C++
1006 lines
31 KiB
C++
/*
|
|
* Copyright (c) 2007, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
* accompanied this code).
|
|
*
|
|
* You should have received a copy of the GNU General Public License version
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
* questions.
|
|
*
|
|
*/
|
|
|
|
#include "memory/resourceArea.hpp"
|
|
#include "opto/chaitin.hpp"
|
|
#include "opto/idealGraphPrinter.hpp"
|
|
#include "opto/machnode.hpp"
|
|
#include "opto/parse.hpp"
|
|
#include "runtime/threadCritical.hpp"
|
|
#include "runtime/threadSMR.hpp"
|
|
#include "utilities/stringUtils.hpp"
|
|
|
|
#ifndef PRODUCT
|
|
|
|
// Constants
|
|
// Keep consistent with Java constants
|
|
const char *IdealGraphPrinter::INDENT = " ";
|
|
const char *IdealGraphPrinter::TOP_ELEMENT = "graphDocument";
|
|
const char *IdealGraphPrinter::GROUP_ELEMENT = "group";
|
|
const char *IdealGraphPrinter::GRAPH_ELEMENT = "graph";
|
|
const char *IdealGraphPrinter::PROPERTIES_ELEMENT = "properties";
|
|
const char *IdealGraphPrinter::EDGES_ELEMENT = "edges";
|
|
const char *IdealGraphPrinter::PROPERTY_ELEMENT = "p";
|
|
const char *IdealGraphPrinter::EDGE_ELEMENT = "edge";
|
|
const char *IdealGraphPrinter::NODE_ELEMENT = "node";
|
|
const char *IdealGraphPrinter::NODES_ELEMENT = "nodes";
|
|
const char *IdealGraphPrinter::REMOVE_EDGE_ELEMENT = "removeEdge";
|
|
const char *IdealGraphPrinter::REMOVE_NODE_ELEMENT = "removeNode";
|
|
const char *IdealGraphPrinter::COMPILATION_ID_PROPERTY = "compilationId";
|
|
const char *IdealGraphPrinter::COMPILATION_OSR_PROPERTY = "osr";
|
|
const char *IdealGraphPrinter::METHOD_NAME_PROPERTY = "name";
|
|
const char *IdealGraphPrinter::METHOD_IS_PUBLIC_PROPERTY = "public";
|
|
const char *IdealGraphPrinter::METHOD_IS_STATIC_PROPERTY = "static";
|
|
const char *IdealGraphPrinter::FALSE_VALUE = "false";
|
|
const char *IdealGraphPrinter::TRUE_VALUE = "true";
|
|
const char *IdealGraphPrinter::NODE_NAME_PROPERTY = "name";
|
|
const char *IdealGraphPrinter::EDGE_NAME_PROPERTY = "name";
|
|
const char *IdealGraphPrinter::NODE_ID_PROPERTY = "id";
|
|
const char *IdealGraphPrinter::FROM_PROPERTY = "from";
|
|
const char *IdealGraphPrinter::TO_PROPERTY = "to";
|
|
const char *IdealGraphPrinter::PROPERTY_NAME_PROPERTY = "name";
|
|
const char *IdealGraphPrinter::GRAPH_NAME_PROPERTY = "name";
|
|
const char *IdealGraphPrinter::INDEX_PROPERTY = "index";
|
|
const char *IdealGraphPrinter::METHOD_ELEMENT = "method";
|
|
const char *IdealGraphPrinter::INLINE_ELEMENT = "inlined";
|
|
const char *IdealGraphPrinter::BYTECODES_ELEMENT = "bytecodes";
|
|
const char *IdealGraphPrinter::METHOD_BCI_PROPERTY = "bci";
|
|
const char *IdealGraphPrinter::METHOD_SHORT_NAME_PROPERTY = "shortName";
|
|
const char *IdealGraphPrinter::CONTROL_FLOW_ELEMENT = "controlFlow";
|
|
const char *IdealGraphPrinter::GRAPH_STATES_ELEMENT = "graphStates";
|
|
const char *IdealGraphPrinter::STATE_ELEMENT = "state";
|
|
const char *IdealGraphPrinter::DIFFERENCE_ELEMENT = "difference";
|
|
const char *IdealGraphPrinter::DIFFERENCE_VALUE_PROPERTY = "value";
|
|
const char *IdealGraphPrinter::VISIBLE_NODES_ELEMENT = "visibleNodes";
|
|
const char *IdealGraphPrinter::ALL_PROPERTY = "all";
|
|
const char *IdealGraphPrinter::BLOCK_NAME_PROPERTY = "name";
|
|
const char *IdealGraphPrinter::BLOCK_DOMINATOR_PROPERTY = "dom";
|
|
const char *IdealGraphPrinter::BLOCK_ELEMENT = "block";
|
|
const char *IdealGraphPrinter::SUCCESSORS_ELEMENT = "successors";
|
|
const char *IdealGraphPrinter::SUCCESSOR_ELEMENT = "successor";
|
|
const char *IdealGraphPrinter::ASSEMBLY_ELEMENT = "assembly";
|
|
|
|
int IdealGraphPrinter::_file_count = 0;
|
|
|
|
IdealGraphPrinter *IdealGraphPrinter::printer() {
|
|
JavaThread *thread = JavaThread::current();
|
|
if (!thread->is_Compiler_thread()) return nullptr;
|
|
|
|
CompilerThread *compiler_thread = (CompilerThread *)thread;
|
|
if (compiler_thread->ideal_graph_printer() == nullptr) {
|
|
IdealGraphPrinter *printer = new IdealGraphPrinter();
|
|
compiler_thread->set_ideal_graph_printer(printer);
|
|
}
|
|
|
|
return compiler_thread->ideal_graph_printer();
|
|
}
|
|
|
|
void IdealGraphPrinter::clean_up() {
|
|
for (JavaThreadIteratorWithHandle jtiwh; JavaThread* p = jtiwh.next(); ) {
|
|
if (p->is_Compiler_thread()) {
|
|
CompilerThread* c = (CompilerThread*)p;
|
|
IdealGraphPrinter* printer = c->ideal_graph_printer();
|
|
if (printer) {
|
|
delete printer;
|
|
}
|
|
c->set_ideal_graph_printer(nullptr);
|
|
}
|
|
}
|
|
IdealGraphPrinter* debug_file_printer = Compile::debug_file_printer();
|
|
if (debug_file_printer != nullptr) {
|
|
delete debug_file_printer;
|
|
}
|
|
IdealGraphPrinter* debug_network_printer = Compile::debug_network_printer();
|
|
if (debug_network_printer != nullptr) {
|
|
delete debug_network_printer;
|
|
}
|
|
}
|
|
|
|
// Either print methods to file specified with PrintIdealGraphFile or otherwise over the network to the IGV
|
|
IdealGraphPrinter::IdealGraphPrinter() {
|
|
init(PrintIdealGraphFile, true, false);
|
|
}
|
|
|
|
// Either print methods to the specified file 'file_name' or if null over the network to the IGV. If 'append'
|
|
// is set, the next phase is directly appended to the specified file 'file_name'. This is useful when doing
|
|
// replay compilation with a tool like rr that cannot alter the current program state but only the file.
|
|
IdealGraphPrinter::IdealGraphPrinter(Compile* compile, const char* file_name, bool append) {
|
|
assert(!append || (append && file_name != nullptr), "can only use append flag when printing to file");
|
|
init(file_name, false, append);
|
|
C = compile;
|
|
if (append) {
|
|
// When directly appending the next graph, we only need to set _current_method and not set up a new method
|
|
_current_method = C->method();
|
|
} else {
|
|
begin_method();
|
|
}
|
|
}
|
|
|
|
void IdealGraphPrinter::init(const char* file_name, bool use_multiple_files, bool append) {
|
|
// By default dump both ins and outs since dead or unreachable code
|
|
// needs to appear in the graph. There are also some special cases
|
|
// in the mach where kill projections have no users but should
|
|
// appear in the dump.
|
|
_traverse_outs = true;
|
|
_should_send_method = true;
|
|
_output = nullptr;
|
|
buffer[0] = 0;
|
|
_depth = 0;
|
|
_current_method = nullptr;
|
|
_network_stream = nullptr;
|
|
_append = append;
|
|
|
|
if (file_name != nullptr) {
|
|
init_file_stream(file_name, use_multiple_files);
|
|
} else {
|
|
init_network_stream();
|
|
}
|
|
_xml = new (mtCompiler) xmlStream(_output);
|
|
if (!_append) {
|
|
head(TOP_ELEMENT);
|
|
}
|
|
}
|
|
|
|
// Destructor, close file or network stream
|
|
IdealGraphPrinter::~IdealGraphPrinter() {
|
|
if (!_append) {
|
|
tail(TOP_ELEMENT);
|
|
}
|
|
|
|
// tty->print_cr("Walk time: %d", (int)_walk_time.milliseconds());
|
|
// tty->print_cr("Output time: %d", (int)_output_time.milliseconds());
|
|
// tty->print_cr("Build blocks time: %d", (int)_build_blocks_time.milliseconds());
|
|
|
|
if(_xml) {
|
|
delete _xml;
|
|
_xml = nullptr;
|
|
}
|
|
|
|
if (_network_stream) {
|
|
delete _network_stream;
|
|
if (_network_stream == _output) {
|
|
_output = nullptr;
|
|
}
|
|
_network_stream = nullptr;
|
|
}
|
|
|
|
if (_output) {
|
|
delete _output;
|
|
_output = nullptr;
|
|
}
|
|
}
|
|
|
|
void IdealGraphPrinter::begin_elem(const char *s) {
|
|
_xml->begin_elem("%s", s);
|
|
}
|
|
|
|
void IdealGraphPrinter::end_elem() {
|
|
_xml->end_elem();
|
|
}
|
|
|
|
void IdealGraphPrinter::begin_head(const char *s) {
|
|
_xml->begin_head("%s", s);
|
|
}
|
|
|
|
void IdealGraphPrinter::end_head() {
|
|
_xml->end_head();
|
|
}
|
|
|
|
void IdealGraphPrinter::print_attr(const char *name, intptr_t val) {
|
|
stringStream stream;
|
|
stream.print("%zd", val);
|
|
print_attr(name, stream.freeze());
|
|
}
|
|
|
|
void IdealGraphPrinter::print_attr(const char *name, const char *val) {
|
|
_xml->print(" %s='", name);
|
|
text(val);
|
|
_xml->print("'");
|
|
}
|
|
|
|
void IdealGraphPrinter::head(const char *name) {
|
|
_xml->head("%s", name);
|
|
}
|
|
|
|
void IdealGraphPrinter::tail(const char *name) {
|
|
_xml->tail(name);
|
|
}
|
|
|
|
void IdealGraphPrinter::text(const char *s) {
|
|
_xml->text("%s", s);
|
|
}
|
|
|
|
void IdealGraphPrinter::print_prop(const char *name, int val) {
|
|
stringStream stream;
|
|
stream.print("%d", val);
|
|
print_prop(name, stream.freeze());
|
|
}
|
|
|
|
void IdealGraphPrinter::print_prop(const char *name, const char *val) {
|
|
begin_head(PROPERTY_ELEMENT);
|
|
print_attr(PROPERTY_NAME_PROPERTY, name);
|
|
end_head();
|
|
text(val);
|
|
tail(PROPERTY_ELEMENT);
|
|
}
|
|
|
|
void IdealGraphPrinter::print_method(ciMethod *method, int bci, InlineTree *tree) {
|
|
begin_head(METHOD_ELEMENT);
|
|
|
|
stringStream str;
|
|
method->print_name(&str);
|
|
|
|
stringStream shortStr;
|
|
method->print_short_name(&shortStr);
|
|
|
|
print_attr(METHOD_NAME_PROPERTY, str.freeze());
|
|
print_attr(METHOD_SHORT_NAME_PROPERTY, shortStr.freeze());
|
|
print_attr(METHOD_BCI_PROPERTY, bci);
|
|
|
|
end_head();
|
|
|
|
head(BYTECODES_ELEMENT);
|
|
_xml->print_cr("<![CDATA[");
|
|
method->print_codes_on(_xml);
|
|
_xml->print_cr("]]>");
|
|
tail(BYTECODES_ELEMENT);
|
|
|
|
if (tree != nullptr && tree->subtrees().length() > 0) {
|
|
head(INLINE_ELEMENT);
|
|
GrowableArray<InlineTree *> subtrees = tree->subtrees();
|
|
for (int i = 0; i < subtrees.length(); i++) {
|
|
print_inline_tree(subtrees.at(i));
|
|
}
|
|
tail(INLINE_ELEMENT);
|
|
}
|
|
|
|
tail(METHOD_ELEMENT);
|
|
_xml->flush();
|
|
}
|
|
|
|
void IdealGraphPrinter::print_inline_tree(InlineTree *tree) {
|
|
if (tree != nullptr) {
|
|
print_method(tree->method(), tree->caller_bci(), tree);
|
|
}
|
|
}
|
|
|
|
void IdealGraphPrinter::print_inlining() {
|
|
|
|
// Print inline tree
|
|
if (_should_send_method) {
|
|
InlineTree *inlineTree = C->ilt();
|
|
if (inlineTree != nullptr) {
|
|
print_inline_tree(inlineTree);
|
|
} else {
|
|
// print this method only
|
|
}
|
|
}
|
|
}
|
|
|
|
// Has to be called whenever a method is compiled
|
|
void IdealGraphPrinter::begin_method() {
|
|
|
|
ciMethod *method = C->method();
|
|
assert(_output, "output stream must exist!");
|
|
assert(method, "null methods are not allowed!");
|
|
assert(!_current_method, "current method must be null!");
|
|
|
|
head(GROUP_ELEMENT);
|
|
|
|
head(PROPERTIES_ELEMENT);
|
|
|
|
// Print properties
|
|
// Add method name
|
|
stringStream strStream;
|
|
method->print_name(&strStream);
|
|
print_prop(METHOD_NAME_PROPERTY, strStream.freeze());
|
|
|
|
if (method->flags().is_public()) {
|
|
print_prop(METHOD_IS_PUBLIC_PROPERTY, TRUE_VALUE);
|
|
}
|
|
|
|
if (method->flags().is_static()) {
|
|
print_prop(METHOD_IS_STATIC_PROPERTY, TRUE_VALUE);
|
|
}
|
|
|
|
if (C->is_osr_compilation()) {
|
|
stringStream ss;
|
|
ss.print("bci: %d, line: %d", C->entry_bci(), method->line_number_from_bci(C->entry_bci()));
|
|
print_prop(COMPILATION_OSR_PROPERTY, ss.freeze());
|
|
}
|
|
|
|
print_prop(COMPILATION_ID_PROPERTY, C->compile_id());
|
|
|
|
tail(PROPERTIES_ELEMENT);
|
|
|
|
_should_send_method = true;
|
|
this->_current_method = method;
|
|
|
|
_xml->flush();
|
|
}
|
|
|
|
// Has to be called whenever a method has finished compilation
|
|
void IdealGraphPrinter::end_method() {
|
|
tail(GROUP_ELEMENT);
|
|
_current_method = nullptr;
|
|
_xml->flush();
|
|
}
|
|
|
|
bool IdealGraphPrinter::traverse_outs() {
|
|
return _traverse_outs;
|
|
}
|
|
|
|
void IdealGraphPrinter::set_traverse_outs(bool b) {
|
|
_traverse_outs = b;
|
|
}
|
|
|
|
void IdealGraphPrinter::visit_node(Node* n, bool edges) {
|
|
|
|
if (edges) {
|
|
|
|
for (uint i = 0; i < n->len(); i++) {
|
|
if (n->in(i)) {
|
|
Node *source = n->in(i);
|
|
begin_elem(EDGE_ELEMENT);
|
|
print_attr(FROM_PROPERTY, source->_igv_idx);
|
|
print_attr(TO_PROPERTY, n->_igv_idx);
|
|
print_attr(INDEX_PROPERTY, i);
|
|
end_elem();
|
|
}
|
|
}
|
|
|
|
} else {
|
|
|
|
// Output node
|
|
begin_head(NODE_ELEMENT);
|
|
print_attr(NODE_ID_PROPERTY, n->_igv_idx);
|
|
end_head();
|
|
|
|
head(PROPERTIES_ELEMENT);
|
|
|
|
Node *node = n;
|
|
Compile::current()->_in_dump_cnt++;
|
|
print_prop(NODE_NAME_PROPERTY, (const char *)node->Name());
|
|
print_prop("idx", node->_idx);
|
|
const Type *t = node->bottom_type();
|
|
print_prop("type", t->msg());
|
|
if (t->category() != Type::Category::Control &&
|
|
t->category() != Type::Category::Memory) {
|
|
// Print detailed type information for nodes whose type is not trivial.
|
|
buffer[0] = 0;
|
|
stringStream bottom_type_stream(buffer, sizeof(buffer) - 1);
|
|
t->dump_on(&bottom_type_stream);
|
|
print_prop("bottom_type", buffer);
|
|
if (C->types() != nullptr && C->matcher() == nullptr) {
|
|
// Phase types maintained during optimization (GVN, IGVN, CCP) are
|
|
// available and valid (not in code generation phase).
|
|
const Type* pt = (*C->types())[node->_idx];
|
|
if (pt != nullptr) {
|
|
buffer[0] = 0;
|
|
stringStream phase_type_stream(buffer, sizeof(buffer) - 1);
|
|
pt->dump_on(&phase_type_stream);
|
|
print_prop("phase_type", buffer);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (C->cfg() != nullptr) {
|
|
Block* block = C->cfg()->get_block_for_node(node);
|
|
if (block == nullptr) {
|
|
print_prop("block", C->cfg()->get_block(0)->_pre_order);
|
|
} else {
|
|
print_prop("block", block->_pre_order);
|
|
if (node == block->head()) {
|
|
if (block->_idom != nullptr) {
|
|
print_prop("idom", block->_idom->_pre_order);
|
|
}
|
|
print_prop("dom_depth", block->_dom_depth);
|
|
}
|
|
// Print estimated execution frequency, normalized within a [0,1] range.
|
|
buffer[0] = 0;
|
|
stringStream freq(buffer, sizeof(buffer) - 1);
|
|
// Higher precision has no practical effect in visualizations.
|
|
freq.print("%.8f", block->_freq / _max_freq);
|
|
assert(freq.size() < sizeof(buffer), "size in range");
|
|
// Enforce dots as decimal separators, as required by IGV.
|
|
StringUtils::replace_no_expand(buffer, ",", ".");
|
|
print_prop("frequency", buffer);
|
|
}
|
|
}
|
|
|
|
switch (t->category()) {
|
|
case Type::Category::Data:
|
|
print_prop("category", "data");
|
|
break;
|
|
case Type::Category::Memory:
|
|
print_prop("category", "memory");
|
|
break;
|
|
case Type::Category::Mixed:
|
|
print_prop("category", "mixed");
|
|
break;
|
|
case Type::Category::Control:
|
|
print_prop("category", "control");
|
|
break;
|
|
case Type::Category::Other:
|
|
print_prop("category", "other");
|
|
break;
|
|
case Type::Category::Undef:
|
|
print_prop("category", "undef");
|
|
break;
|
|
}
|
|
|
|
Node_Notes* nn = C->node_notes_at(node->_idx);
|
|
if (nn != nullptr && !nn->is_clear() && nn->jvms() != nullptr) {
|
|
buffer[0] = 0;
|
|
stringStream ss(buffer, sizeof(buffer) - 1);
|
|
nn->jvms()->dump_spec(&ss);
|
|
print_prop("jvms", buffer);
|
|
}
|
|
|
|
const jushort flags = node->flags();
|
|
if (flags & Node::Flag_is_Copy) {
|
|
print_prop("is_copy", "true");
|
|
}
|
|
if (flags & Node::Flag_rematerialize) {
|
|
print_prop("rematerialize", "true");
|
|
}
|
|
if (flags & Node::Flag_needs_anti_dependence_check) {
|
|
print_prop("needs_anti_dependence_check", "true");
|
|
}
|
|
if (flags & Node::Flag_is_macro) {
|
|
print_prop("is_macro", "true");
|
|
}
|
|
if (flags & Node::Flag_is_Con) {
|
|
print_prop("is_con", "true");
|
|
}
|
|
if (flags & Node::Flag_is_cisc_alternate) {
|
|
print_prop("is_cisc_alternate", "true");
|
|
}
|
|
if (flags & Node::Flag_is_dead_loop_safe) {
|
|
print_prop("is_dead_loop_safe", "true");
|
|
}
|
|
if (flags & Node::Flag_may_be_short_branch) {
|
|
print_prop("may_be_short_branch", "true");
|
|
}
|
|
if (flags & Node::Flag_has_call) {
|
|
print_prop("has_call", "true");
|
|
}
|
|
if (flags & Node::Flag_has_swapped_edges) {
|
|
print_prop("has_swapped_edges", "true");
|
|
}
|
|
|
|
if (C->matcher() != nullptr) {
|
|
if (C->matcher()->is_shared(node)) {
|
|
print_prop("is_shared", "true");
|
|
} else {
|
|
print_prop("is_shared", "false");
|
|
}
|
|
if (C->matcher()->is_dontcare(node)) {
|
|
print_prop("is_dontcare", "true");
|
|
} else {
|
|
print_prop("is_dontcare", "false");
|
|
}
|
|
Node* old = C->matcher()->find_old_node(node);
|
|
if (old != nullptr) {
|
|
print_prop("old_node_idx", old->_idx);
|
|
}
|
|
}
|
|
|
|
if (node->is_Proj()) {
|
|
print_prop("con", (int)node->as_Proj()->_con);
|
|
}
|
|
|
|
if (node->is_Mach()) {
|
|
print_prop("idealOpcode", (const char *)NodeClassNames[node->as_Mach()->ideal_Opcode()]);
|
|
}
|
|
|
|
if (node->is_CountedLoop()) {
|
|
print_loop_kind(node->as_CountedLoop());
|
|
}
|
|
|
|
print_field(node);
|
|
|
|
buffer[0] = 0;
|
|
stringStream s2(buffer, sizeof(buffer) - 1);
|
|
|
|
node->dump_spec(&s2);
|
|
if (t != nullptr && (t->isa_instptr() || t->isa_instklassptr())) {
|
|
const TypeInstPtr *toop = t->isa_instptr();
|
|
const TypeInstKlassPtr *tkls = t->isa_instklassptr();
|
|
if (toop) {
|
|
s2.print(" Oop:");
|
|
} else if (tkls) {
|
|
s2.print(" Klass:");
|
|
}
|
|
t->dump_on(&s2);
|
|
} else if( t == Type::MEMORY ) {
|
|
s2.print(" Memory:");
|
|
MemNode::dump_adr_type(node, node->adr_type(), &s2);
|
|
}
|
|
|
|
assert(s2.size() < sizeof(buffer), "size in range");
|
|
print_prop("dump_spec", buffer);
|
|
|
|
const TypePtr* adr_type = node->adr_type();
|
|
if (adr_type != nullptr && C->have_alias_type(adr_type)) {
|
|
Compile::AliasType* at = C->alias_type(adr_type);
|
|
if (at != nullptr) {
|
|
print_prop("alias_index", at->index());
|
|
// The value of at->field(), if present, is already dumped in the
|
|
// "source"/"destination" properties.
|
|
const Type* element = at->element();
|
|
if (element != nullptr) {
|
|
stringStream element_stream;
|
|
element->dump_on(&element_stream);
|
|
print_prop("alias_element", element_stream.freeze());
|
|
}
|
|
if (at->is_rewritable()) {
|
|
print_prop("alias_is_rewritable", "true");
|
|
}
|
|
if (at->is_volatile()) {
|
|
print_prop("alias_is_volatile", "true");
|
|
}
|
|
if (at->general_index() != at->index()) {
|
|
print_prop("alias_general_index", at->general_index());
|
|
}
|
|
}
|
|
}
|
|
|
|
if (node->is_block_proj()) {
|
|
print_prop("is_block_proj", "true");
|
|
}
|
|
|
|
if (node->is_block_start()) {
|
|
print_prop("is_block_start", "true");
|
|
}
|
|
|
|
const char *short_name = "short_name";
|
|
if (strcmp(node->Name(), "Parm") == 0 && node->as_Proj()->_con >= TypeFunc::Parms) {
|
|
int index = node->as_Proj()->_con - TypeFunc::Parms;
|
|
if (index >= 10) {
|
|
print_prop(short_name, "PA");
|
|
} else {
|
|
os::snprintf_checked(buffer, sizeof(buffer), "P%d", index);
|
|
print_prop(short_name, buffer);
|
|
}
|
|
} else if (strcmp(node->Name(), "IfTrue") == 0) {
|
|
print_prop(short_name, "T");
|
|
} else if (strcmp(node->Name(), "IfFalse") == 0) {
|
|
print_prop(short_name, "F");
|
|
} else if ((node->is_Con() && node->is_Type()) || node->is_Proj()) {
|
|
|
|
if (t->base() == Type::Int && t->is_int()->is_con()) {
|
|
const TypeInt *typeInt = t->is_int();
|
|
assert(typeInt->is_con(), "must be constant");
|
|
jint value = typeInt->get_con();
|
|
|
|
// max. 2 chars allowed
|
|
if (value >= -9 && value <= 99) {
|
|
os::snprintf_checked(buffer, sizeof(buffer), "%d", value);
|
|
print_prop(short_name, buffer);
|
|
} else {
|
|
print_prop(short_name, "I");
|
|
}
|
|
} else if (t == Type::TOP) {
|
|
print_prop(short_name, "^");
|
|
} else if (t->base() == Type::Long && t->is_long()->is_con()) {
|
|
const TypeLong *typeLong = t->is_long();
|
|
assert(typeLong->is_con(), "must be constant");
|
|
jlong value = typeLong->get_con();
|
|
|
|
// max. 2 chars allowed
|
|
if (value >= -9 && value <= 99) {
|
|
os::snprintf_checked(buffer, sizeof(buffer), JLONG_FORMAT, value);
|
|
print_prop(short_name, buffer);
|
|
} else {
|
|
print_prop(short_name, "L");
|
|
}
|
|
} else if (t->base() == Type::KlassPtr || t->base() == Type::InstKlassPtr || t->base() == Type::AryKlassPtr) {
|
|
const TypeKlassPtr *typeKlass = t->is_klassptr();
|
|
print_prop(short_name, "CP");
|
|
} else if (t->base() == Type::Control) {
|
|
print_prop(short_name, "C");
|
|
} else if (t->base() == Type::Memory) {
|
|
print_prop(short_name, "M");
|
|
} else if (t->base() == Type::Abio) {
|
|
print_prop(short_name, "IO");
|
|
} else if (t->base() == Type::Return_Address) {
|
|
print_prop(short_name, "RA");
|
|
} else if (t->base() == Type::AnyPtr) {
|
|
print_prop(short_name, "P");
|
|
} else if (t->base() == Type::RawPtr) {
|
|
print_prop(short_name, "RP");
|
|
} else if (t->base() == Type::AryPtr) {
|
|
print_prop(short_name, "AP");
|
|
}
|
|
}
|
|
|
|
JVMState* caller = nullptr;
|
|
if (node->is_SafePoint()) {
|
|
caller = node->as_SafePoint()->jvms();
|
|
} else {
|
|
Node_Notes* notes = C->node_notes_at(node->_idx);
|
|
if (notes != nullptr) {
|
|
caller = notes->jvms();
|
|
}
|
|
}
|
|
|
|
print_bci_and_line_number(caller);
|
|
|
|
#ifdef ASSERT
|
|
if (node->debug_orig() != nullptr) {
|
|
stringStream dorigStream;
|
|
node->dump_orig(&dorigStream, false);
|
|
print_prop("debug_orig", dorigStream.freeze());
|
|
}
|
|
#endif
|
|
|
|
if (_chaitin && _chaitin != (PhaseChaitin *)((intptr_t)0xdeadbeef)) {
|
|
buffer[0] = 0;
|
|
_chaitin->dump_register(node, buffer, sizeof(buffer));
|
|
print_prop("reg", buffer);
|
|
uint lrg_id = 0;
|
|
if (node->_idx < _chaitin->_lrg_map.size()) {
|
|
lrg_id = _chaitin->_lrg_map.live_range_id(node);
|
|
}
|
|
print_prop("lrg", lrg_id);
|
|
}
|
|
|
|
if (node->is_MachSafePoint()) {
|
|
const OopMap* oopmap = node->as_MachSafePoint()->oop_map();
|
|
if (oopmap != nullptr) {
|
|
stringStream oopmap_stream;
|
|
oopmap->print_on(&oopmap_stream);
|
|
print_prop("oopmap", oopmap_stream.freeze());
|
|
}
|
|
}
|
|
|
|
Compile::current()->_in_dump_cnt--;
|
|
|
|
tail(PROPERTIES_ELEMENT);
|
|
tail(NODE_ELEMENT);
|
|
}
|
|
}
|
|
|
|
void IdealGraphPrinter::print_loop_kind(const CountedLoopNode* counted_loop) {
|
|
const char* loop_kind = nullptr;
|
|
if (counted_loop->is_pre_loop()) {
|
|
loop_kind = "pre";
|
|
} else if (counted_loop->is_main_loop()) {
|
|
loop_kind = "main";
|
|
} else if (counted_loop->is_post_loop()) {
|
|
loop_kind = "post";
|
|
}
|
|
if (loop_kind != nullptr) {
|
|
print_prop("loop_kind", loop_kind);
|
|
}
|
|
}
|
|
|
|
void IdealGraphPrinter::print_bci_and_line_number(JVMState* caller) {
|
|
if (caller != nullptr) {
|
|
ResourceMark rm;
|
|
stringStream bciStream;
|
|
stringStream lineStream;
|
|
|
|
// Print line and bci numbers for the callee and all entries in the call stack until we reach the root method.
|
|
while (caller) {
|
|
const int bci = caller->bci();
|
|
bool appended_line = false;
|
|
if (caller->has_method()) {
|
|
ciMethod* method = caller->method();
|
|
if (method->has_linenumber_table() && bci >= 0) {
|
|
lineStream.print("%d ", method->line_number_from_bci(bci));
|
|
appended_line = true;
|
|
}
|
|
}
|
|
if (!appended_line) {
|
|
lineStream.print("%s ", "_");
|
|
}
|
|
bciStream.print("%d ", bci);
|
|
caller = caller->caller();
|
|
}
|
|
|
|
print_prop("bci", bciStream.freeze());
|
|
print_prop("line", lineStream.freeze());
|
|
}
|
|
}
|
|
|
|
void IdealGraphPrinter::print_field(const Node* node) {
|
|
buffer[0] = 0;
|
|
stringStream ss(buffer, sizeof(buffer) - 1);
|
|
ciField* field = get_field(node);
|
|
uint depth = 0;
|
|
if (field == nullptr) {
|
|
depth++;
|
|
field = find_source_field_of_array_access(node, depth);
|
|
}
|
|
|
|
if (field != nullptr) {
|
|
// Either direct field access or array access
|
|
field->print_name_on(&ss);
|
|
for (uint i = 0; i < depth; i++) {
|
|
// For arrays: Add [] for each dimension
|
|
ss.print("[]");
|
|
}
|
|
if (node->is_Store()) {
|
|
print_prop("destination", buffer);
|
|
} else {
|
|
print_prop("source", buffer);
|
|
}
|
|
}
|
|
}
|
|
|
|
ciField* IdealGraphPrinter::get_field(const Node* node) {
|
|
const TypePtr* adr_type = node->adr_type();
|
|
Compile::AliasType* atp = nullptr;
|
|
if (C->have_alias_type(adr_type)) {
|
|
atp = C->alias_type(adr_type);
|
|
}
|
|
if (atp != nullptr) {
|
|
ciField* field = atp->field();
|
|
if (field != nullptr) {
|
|
// Found field associated with 'node'.
|
|
return field;
|
|
}
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
// Try to find the field that is associated with a memory node belonging to an array access.
|
|
ciField* IdealGraphPrinter::find_source_field_of_array_access(const Node* node, uint& depth) {
|
|
if (!node->is_Mem()) {
|
|
// Not an array access
|
|
return nullptr;
|
|
}
|
|
|
|
do {
|
|
if (node->adr_type() != nullptr && node->adr_type()->isa_aryptr()) {
|
|
// Only process array accesses. Pattern match to find actual field source access.
|
|
node = get_load_node(node);
|
|
if (node != nullptr) {
|
|
ciField* field = get_field(node);
|
|
if (field != nullptr) {
|
|
return field;
|
|
}
|
|
// Could be a multi-dimensional array. Repeat loop.
|
|
depth++;
|
|
continue;
|
|
}
|
|
}
|
|
// Not an array access with a field source.
|
|
break;
|
|
} while (depth < 256); // Cannot have more than 255 dimensions
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
// Pattern match on the inputs of 'node' to find load node for the field access.
|
|
Node* IdealGraphPrinter::get_load_node(const Node* node) {
|
|
Node* load = nullptr;
|
|
Node* addr = node->as_Mem()->in(MemNode::Address);
|
|
if (addr != nullptr && addr->is_AddP()) {
|
|
Node* base = addr->as_AddP()->base_node();
|
|
if (base != nullptr) {
|
|
base = base->uncast();
|
|
if (base->is_Load()) {
|
|
// Mem(AddP([ConstraintCast*](LoadP))) for non-compressed oops.
|
|
load = base;
|
|
} else if (base->is_DecodeN() && base->in(1)->is_Load()) {
|
|
// Mem(AddP([ConstraintCast*](DecodeN(LoadN)))) for compressed oops.
|
|
load = base->in(1);
|
|
}
|
|
}
|
|
}
|
|
return load;
|
|
}
|
|
|
|
void IdealGraphPrinter::walk_nodes(Node* start, bool edges) {
|
|
VectorSet visited;
|
|
GrowableArray<Node *> nodeStack(Thread::current()->resource_area(), 0, 0, nullptr);
|
|
nodeStack.push(start);
|
|
if (C->cfg() != nullptr) {
|
|
// once we have a CFG there are some nodes that aren't really
|
|
// reachable but are in the CFG so add them here.
|
|
for (uint i = 0; i < C->cfg()->number_of_blocks(); i++) {
|
|
Block* block = C->cfg()->get_block(i);
|
|
for (uint s = 0; s < block->number_of_nodes(); s++) {
|
|
nodeStack.push(block->get_node(s));
|
|
}
|
|
}
|
|
}
|
|
|
|
while (nodeStack.length() > 0) {
|
|
Node* n = nodeStack.pop();
|
|
if (visited.test_set(n->_idx)) {
|
|
continue;
|
|
}
|
|
|
|
visit_node(n, edges);
|
|
|
|
if (_traverse_outs) {
|
|
for (DUIterator i = n->outs(); n->has_out(i); i++) {
|
|
nodeStack.push(n->out(i));
|
|
}
|
|
}
|
|
|
|
for (uint i = 0; i < n->len(); i++) {
|
|
if (n->in(i) != nullptr) {
|
|
nodeStack.push(n->in(i));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void IdealGraphPrinter::print_graph(const char* name) {
|
|
ResourceMark rm;
|
|
GrowableArray<const Node*> empty_list;
|
|
print(name, (Node*) C->root(), empty_list);
|
|
}
|
|
|
|
// Print current ideal graph
|
|
void IdealGraphPrinter::print(const char* name, Node* node, GrowableArray<const Node*>& visible_nodes) {
|
|
|
|
if (!_current_method || !_should_send_method || node == nullptr) return;
|
|
|
|
// Warning, unsafe cast?
|
|
_chaitin = (PhaseChaitin *)C->regalloc();
|
|
|
|
begin_head(GRAPH_ELEMENT);
|
|
print_attr(GRAPH_NAME_PROPERTY, (const char *)name);
|
|
end_head();
|
|
|
|
head(NODES_ELEMENT);
|
|
if (C->cfg() != nullptr) {
|
|
// Compute the maximum estimated frequency in the current graph.
|
|
_max_freq = 1.0e-6;
|
|
for (uint i = 0; i < C->cfg()->number_of_blocks(); i++) {
|
|
Block* block = C->cfg()->get_block(i);
|
|
if (block->_freq > _max_freq) {
|
|
_max_freq = block->_freq;
|
|
}
|
|
}
|
|
}
|
|
walk_nodes(node, false);
|
|
tail(NODES_ELEMENT);
|
|
|
|
head(EDGES_ELEMENT);
|
|
walk_nodes(node, true);
|
|
tail(EDGES_ELEMENT);
|
|
if (C->cfg() != nullptr) {
|
|
head(CONTROL_FLOW_ELEMENT);
|
|
for (uint i = 0; i < C->cfg()->number_of_blocks(); i++) {
|
|
Block* block = C->cfg()->get_block(i);
|
|
begin_head(BLOCK_ELEMENT);
|
|
print_attr(BLOCK_NAME_PROPERTY, block->_pre_order);
|
|
end_head();
|
|
|
|
head(SUCCESSORS_ELEMENT);
|
|
for (uint s = 0; s < block->_num_succs; s++) {
|
|
begin_elem(SUCCESSOR_ELEMENT);
|
|
print_attr(BLOCK_NAME_PROPERTY, block->_succs[s]->_pre_order);
|
|
end_elem();
|
|
}
|
|
tail(SUCCESSORS_ELEMENT);
|
|
|
|
head(NODES_ELEMENT);
|
|
for (uint s = 0; s < block->number_of_nodes(); s++) {
|
|
begin_elem(NODE_ELEMENT);
|
|
print_attr(NODE_ID_PROPERTY, block->get_node(s)->_igv_idx);
|
|
end_elem();
|
|
}
|
|
tail(NODES_ELEMENT);
|
|
|
|
tail(BLOCK_ELEMENT);
|
|
}
|
|
tail(CONTROL_FLOW_ELEMENT);
|
|
}
|
|
if (visible_nodes.is_nonempty()) {
|
|
head(GRAPH_STATES_ELEMENT);
|
|
head(STATE_ELEMENT);
|
|
begin_elem(DIFFERENCE_ELEMENT);
|
|
print_attr(DIFFERENCE_VALUE_PROPERTY, "0");
|
|
end_elem();
|
|
|
|
begin_head(VISIBLE_NODES_ELEMENT);
|
|
print_attr(ALL_PROPERTY, FALSE_VALUE);
|
|
end_head();
|
|
for (int i = 0; i < visible_nodes.length(); ++i) {
|
|
begin_elem(NODE_ELEMENT);
|
|
print_attr(NODE_ID_PROPERTY, visible_nodes.at(i)->_igv_idx);
|
|
end_elem();
|
|
}
|
|
tail(VISIBLE_NODES_ELEMENT);
|
|
tail(STATE_ELEMENT);
|
|
tail(GRAPH_STATES_ELEMENT);
|
|
}
|
|
tail(GRAPH_ELEMENT);
|
|
_xml->flush();
|
|
}
|
|
|
|
void IdealGraphPrinter::init_file_stream(const char* file_name, bool use_multiple_files) {
|
|
ThreadCritical tc;
|
|
if (use_multiple_files && _file_count != 0) {
|
|
assert(!_append, "append should only be used for debugging with a single file");
|
|
ResourceMark rm;
|
|
stringStream st;
|
|
const char* dot = strrchr(file_name, '.');
|
|
if (dot) {
|
|
st.write(file_name, dot - file_name);
|
|
st.print("%d%s", _file_count, dot);
|
|
} else {
|
|
st.print("%s%d", file_name, _file_count);
|
|
}
|
|
_output = new (mtCompiler) fileStream(st.as_string(), "w");
|
|
} else {
|
|
_output = new (mtCompiler) fileStream(file_name, _append ? "a" : "w");
|
|
}
|
|
if (use_multiple_files) {
|
|
assert(!_append, "append should only be used for debugging with a single file");
|
|
_file_count++;
|
|
}
|
|
}
|
|
|
|
void IdealGraphPrinter::init_network_stream() {
|
|
_network_stream = new (mtCompiler) networkStream();
|
|
// Try to connect to visualizer
|
|
if (_network_stream->connect(PrintIdealGraphAddress, PrintIdealGraphPort)) {
|
|
char c = 0;
|
|
_network_stream->read(&c, 1);
|
|
if (c != 'y') {
|
|
tty->print_cr("Client available, but does not want to receive data!");
|
|
_network_stream->close();
|
|
delete _network_stream;
|
|
_network_stream = nullptr;
|
|
return;
|
|
}
|
|
_output = _network_stream;
|
|
} else {
|
|
// It would be nice if we could shut down cleanly but it should
|
|
// be an error if we can't connect to the visualizer.
|
|
fatal("Couldn't connect to visualizer at %s:%zd",
|
|
PrintIdealGraphAddress, PrintIdealGraphPort);
|
|
}
|
|
}
|
|
|
|
void IdealGraphPrinter::update_compiled_method(ciMethod* current_method) {
|
|
assert(C != nullptr, "must already be set");
|
|
if (current_method != _current_method) {
|
|
// If a different method, end the old and begin with the new one.
|
|
if (_append) {
|
|
// Do not call `end_method` if we are appending, just update `_current_method`,
|
|
// because `begin_method` is not called in the constructor in append mode.
|
|
_current_method = current_method;
|
|
} else {
|
|
// End the old method and begin a new one.
|
|
// Don't worry about `_current_method`, `end_method` will clear it.
|
|
end_method();
|
|
begin_method();
|
|
}
|
|
}
|
|
}
|
|
|
|
extern const char *NodeClassNames[];
|
|
|
|
#endif
|