Searched refs:ValueSet (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueSet.hpp32 // A ValueSet is a simple abstraction on top of a BitMap representing
37 class ValueSet: public CompilationResourceObj { class in inherits:CompilationResourceObj
42 ValueSet();
44 ValueSet* copy();
48 bool set_intersect(ValueSet* other);
49 void set_union(ValueSet* other);
51 void set_from(ValueSet* other);
52 bool equals (ValueSet* other);
55 inline ValueSet::ValueSet() function in class:ValueSet
[all...]
H A Dc1_Optimizer.cpp34 define_array(ValueSetArray, ValueSet*);
546 ValueSet* _visitable_instructions; // Visit each instruction only once per basic block
566 ValueSet* _set; // current state, propagated to subsequent BlockBegins
580 ValueSet* state() { return _set; }
581 void set_state_from (ValueSet* state) { _set->set_from(state); }
582 ValueSet* state_for (BlockBegin* block) { return _block_states[block->block_id()]; }
583 void set_state_for (BlockBegin* block, ValueSet* stack) { _block_states[block->block_id()] = stack; }
586 ValueSet* incoming_state);
592 , _set(new ValueSet())
596 _visitable_instructions = new ValueSet();
[all...]
H A Dc1_ValueMap.hpp78 ValueSet _killed_values;

Completed in 209 milliseconds