mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-18 18:14:38 +02:00
8233708: VectorSet cleanup
Reviewed-by: neliasso, shade, thartmann
This commit is contained in:
parent
f07d377d6f
commit
12adeca887
23 changed files with 147 additions and 872 deletions
|
@ -915,9 +915,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();
|
||||
void reset_dead_node_list() { _dead_node_list.reset();
|
||||
_dead_node_count = 0;
|
||||
}
|
||||
uint live_nodes() const {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue