annotate src/share/vm/opto/idealGraphPrinter.hpp @ 222:2a1a77d3458f

6718676: putback for 6604014 is incomplete Reviewed-by: kvn, jrose
author never
date Tue, 24 Jun 2008 16:00:14 -0700
parents a61af66fc99e
children c18cbe5936b8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 class Compile;
a61af66fc99e Initial load
duke
parents:
diff changeset
28 class PhaseIFG;
a61af66fc99e Initial load
duke
parents:
diff changeset
29 class PhaseChaitin;
a61af66fc99e Initial load
duke
parents:
diff changeset
30 class Matcher;
a61af66fc99e Initial load
duke
parents:
diff changeset
31 class Node;
a61af66fc99e Initial load
duke
parents:
diff changeset
32 class InlineTree;
a61af66fc99e Initial load
duke
parents:
diff changeset
33 class ciMethod;
a61af66fc99e Initial load
duke
parents:
diff changeset
34
a61af66fc99e Initial load
duke
parents:
diff changeset
35 class IdealGraphPrinter
a61af66fc99e Initial load
duke
parents:
diff changeset
36 {
a61af66fc99e Initial load
duke
parents:
diff changeset
37 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 enum State
a61af66fc99e Initial load
duke
parents:
diff changeset
40 {
a61af66fc99e Initial load
duke
parents:
diff changeset
41 Invalid,
a61af66fc99e Initial load
duke
parents:
diff changeset
42 Valid,
a61af66fc99e Initial load
duke
parents:
diff changeset
43 New
a61af66fc99e Initial load
duke
parents:
diff changeset
44 };
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 static const char *INDENT;
a61af66fc99e Initial load
duke
parents:
diff changeset
49 static const char *TOP_ELEMENT;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 static const char *GROUP_ELEMENT;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 static const char *GRAPH_ELEMENT;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 static const char *PROPERTIES_ELEMENT;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 static const char *EDGES_ELEMENT;
a61af66fc99e Initial load
duke
parents:
diff changeset
54 static const char *PROPERTY_ELEMENT;
a61af66fc99e Initial load
duke
parents:
diff changeset
55 static const char *EDGE_ELEMENT;
a61af66fc99e Initial load
duke
parents:
diff changeset
56 static const char *NODE_ELEMENT;
a61af66fc99e Initial load
duke
parents:
diff changeset
57 static const char *NODES_ELEMENT;
a61af66fc99e Initial load
duke
parents:
diff changeset
58 static const char *CONTROL_FLOW_ELEMENT;
a61af66fc99e Initial load
duke
parents:
diff changeset
59 static const char *REMOVE_EDGE_ELEMENT;
a61af66fc99e Initial load
duke
parents:
diff changeset
60 static const char *REMOVE_NODE_ELEMENT;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 static const char *METHOD_NAME_PROPERTY;
a61af66fc99e Initial load
duke
parents:
diff changeset
62 static const char *BLOCK_NAME_PROPERTY;
a61af66fc99e Initial load
duke
parents:
diff changeset
63 static const char *BLOCK_DOMINATOR_PROPERTY;
a61af66fc99e Initial load
duke
parents:
diff changeset
64 static const char *BLOCK_ELEMENT;
a61af66fc99e Initial load
duke
parents:
diff changeset
65 static const char *SUCCESSORS_ELEMENT;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 static const char *SUCCESSOR_ELEMENT;
a61af66fc99e Initial load
duke
parents:
diff changeset
67 static const char *METHOD_IS_PUBLIC_PROPERTY;
a61af66fc99e Initial load
duke
parents:
diff changeset
68 static const char *METHOD_IS_STATIC_PROPERTY;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 static const char *TRUE_VALUE;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 static const char *NODE_NAME_PROPERTY;
a61af66fc99e Initial load
duke
parents:
diff changeset
71 static const char *EDGE_NAME_PROPERTY;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 static const char *NODE_ID_PROPERTY;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 static const char *FROM_PROPERTY;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 static const char *TO_PROPERTY;
a61af66fc99e Initial load
duke
parents:
diff changeset
75 static const char *PROPERTY_NAME_PROPERTY;
a61af66fc99e Initial load
duke
parents:
diff changeset
76 static const char *GRAPH_NAME_PROPERTY;
a61af66fc99e Initial load
duke
parents:
diff changeset
77 static const char *INDEX_PROPERTY;
a61af66fc99e Initial load
duke
parents:
diff changeset
78 static const char *METHOD_ELEMENT;
a61af66fc99e Initial load
duke
parents:
diff changeset
79 static const char *INLINE_ELEMENT;
a61af66fc99e Initial load
duke
parents:
diff changeset
80 static const char *BYTECODES_ELEMENT;
a61af66fc99e Initial load
duke
parents:
diff changeset
81 static const char *METHOD_BCI_PROPERTY;
a61af66fc99e Initial load
duke
parents:
diff changeset
82 static const char *METHOD_SHORT_NAME_PROPERTY;
a61af66fc99e Initial load
duke
parents:
diff changeset
83 static const char *ASSEMBLY_ELEMENT;
a61af66fc99e Initial load
duke
parents:
diff changeset
84
222
2a1a77d3458f 6718676: putback for 6604014 is incomplete
never
parents: 0
diff changeset
85 elapsedTimer _walk_time;
2a1a77d3458f 6718676: putback for 6604014 is incomplete
never
parents: 0
diff changeset
86 elapsedTimer _output_time;
2a1a77d3458f 6718676: putback for 6604014 is incomplete
never
parents: 0
diff changeset
87 elapsedTimer _build_blocks_time;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89 static int _file_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
90 networkStream *_stream;
222
2a1a77d3458f 6718676: putback for 6604014 is incomplete
never
parents: 0
diff changeset
91 xmlStream *_xml;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
92 outputStream *_output;
a61af66fc99e Initial load
duke
parents:
diff changeset
93 ciMethod *_current_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
94 int _depth;
a61af66fc99e Initial load
duke
parents:
diff changeset
95 char buffer[128];
a61af66fc99e Initial load
duke
parents:
diff changeset
96 bool _should_send_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
97 PhaseChaitin* _chaitin;
a61af66fc99e Initial load
duke
parents:
diff changeset
98 bool _traverse_outs;
222
2a1a77d3458f 6718676: putback for 6604014 is incomplete
never
parents: 0
diff changeset
99 Compile *C;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 static void pre_node(Node* node, void *env);
a61af66fc99e Initial load
duke
parents:
diff changeset
102 static void post_node(Node* node, void *env);
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 void print_indent();
a61af66fc99e Initial load
duke
parents:
diff changeset
105 void print_method(ciMethod *method, int bci, InlineTree *tree);
a61af66fc99e Initial load
duke
parents:
diff changeset
106 void print_inline_tree(InlineTree *tree);
222
2a1a77d3458f 6718676: putback for 6604014 is incomplete
never
parents: 0
diff changeset
107 void visit_node(Node *n, void *param);
2a1a77d3458f 6718676: putback for 6604014 is incomplete
never
parents: 0
diff changeset
108 void walk_nodes(Node *start, void *param);
2a1a77d3458f 6718676: putback for 6604014 is incomplete
never
parents: 0
diff changeset
109 void begin_elem(const char *s);
2a1a77d3458f 6718676: putback for 6604014 is incomplete
never
parents: 0
diff changeset
110 void end_elem();
2a1a77d3458f 6718676: putback for 6604014 is incomplete
never
parents: 0
diff changeset
111 void begin_head(const char *s);
2a1a77d3458f 6718676: putback for 6604014 is incomplete
never
parents: 0
diff changeset
112 void end_head();
2a1a77d3458f 6718676: putback for 6604014 is incomplete
never
parents: 0
diff changeset
113 void print_attr(const char *name, const char *val);
2a1a77d3458f 6718676: putback for 6604014 is incomplete
never
parents: 0
diff changeset
114 void print_attr(const char *name, intptr_t val);
2a1a77d3458f 6718676: putback for 6604014 is incomplete
never
parents: 0
diff changeset
115 void print_prop(const char *name, const char *val);
2a1a77d3458f 6718676: putback for 6604014 is incomplete
never
parents: 0
diff changeset
116 void print_prop(const char *name, int val);
2a1a77d3458f 6718676: putback for 6604014 is incomplete
never
parents: 0
diff changeset
117 void tail(const char *name);
2a1a77d3458f 6718676: putback for 6604014 is incomplete
never
parents: 0
diff changeset
118 void head(const char *name);
2a1a77d3458f 6718676: putback for 6604014 is incomplete
never
parents: 0
diff changeset
119 void text(const char *s);
2a1a77d3458f 6718676: putback for 6604014 is incomplete
never
parents: 0
diff changeset
120 intptr_t get_node_id(Node *n);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
121 IdealGraphPrinter();
a61af66fc99e Initial load
duke
parents:
diff changeset
122 ~IdealGraphPrinter();
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
125
a61af66fc99e Initial load
duke
parents:
diff changeset
126 static void clean_up();
a61af66fc99e Initial load
duke
parents:
diff changeset
127 static IdealGraphPrinter *printer();
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129 bool traverse_outs();
a61af66fc99e Initial load
duke
parents:
diff changeset
130 void set_traverse_outs(bool b);
a61af66fc99e Initial load
duke
parents:
diff changeset
131 outputStream *output();
a61af66fc99e Initial load
duke
parents:
diff changeset
132 void print_inlining(Compile* compile);
a61af66fc99e Initial load
duke
parents:
diff changeset
133 void begin_method(Compile* compile);
a61af66fc99e Initial load
duke
parents:
diff changeset
134 void end_method();
a61af66fc99e Initial load
duke
parents:
diff changeset
135 void print_method(Compile* compile, const char *name, int level=1, bool clear_nodes = false);
a61af66fc99e Initial load
duke
parents:
diff changeset
136 void print(Compile* compile, const char *name, Node *root, int level=1, bool clear_nodes = false);
a61af66fc99e Initial load
duke
parents:
diff changeset
137 void print_xml(const char *name);
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139
a61af66fc99e Initial load
duke
parents:
diff changeset
140 };
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 #endif