Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
d93e4a04
Commit
d93e4a04
authored
Apr 28, 2011
by
Matthias Braun
Browse files
dump postdom info in vcg graphs
parent
158e3e9a
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/ir/irdumptxt.c
View file @
d93e4a04
...
...
@@ -137,9 +137,14 @@ void dump_irnode_to_file(FILE *F, ir_node *n)
fprintf
(
F
,
" block marked: %u
\n
"
,
get_Block_mark
(
n
));
if
(
get_irg_dom_state
(
get_irn_irg
(
n
))
!=
dom_none
)
{
fprintf
(
F
,
" dom depth %d
\n
"
,
get_Block_dom_depth
(
n
));
fprintf
(
F
,
" tree pre num %d
\n
"
,
get_Block_dom_tree_pre_num
(
n
));
fprintf
(
F
,
"
dom
tree pre num %d
\n
"
,
get_Block_dom_tree_pre_num
(
n
));
fprintf
(
F
,
" max subtree pre num %d
\n
"
,
get_Block_dom_max_subtree_pre_num
(
n
));
}
if
(
get_irg_postdom_state
(
get_irn_irg
(
n
))
!=
dom_none
)
{
fprintf
(
F
,
" pdom depth %d
\n
"
,
get_Block_postdom_depth
(
n
));
fprintf
(
F
,
" pdomtree pre num %d
\n
"
,
get_Block_pdom_tree_pre_num
(
n
));
fprintf
(
F
,
" max pdomsubtree pre num %d
\n
"
,
get_Block_pdom_max_subtree_pre_num
(
n
));
}
fprintf
(
F
,
" Execution frequency statistics:
\n
"
);
if
(
get_irg_exec_freq_state
(
get_irn_irg
(
n
))
!=
exec_freq_none
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment