mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-24 13:04:33 +02:00
8009472: Print additional information for 8004640 failure
Dump nodes and types in 8004640 case. Reviewed-by: roland
This commit is contained in:
parent
748083843a
commit
010f640069
2 changed files with 29 additions and 8 deletions
|
@ -678,6 +678,7 @@ class Compile : public Phase {
|
|||
void record_dead_node(uint idx) { if (_dead_node_list.test_set(idx)) return;
|
||||
_dead_node_count++;
|
||||
}
|
||||
bool is_dead_node(uint idx) { return _dead_node_list.test(idx) != 0; }
|
||||
uint dead_node_count() { return _dead_node_count; }
|
||||
void reset_dead_node_list() { _dead_node_list.Reset();
|
||||
_dead_node_count = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue