Lines Matching refs:_state

92   unsigned int _state;
143 s._state = state;
180 bool is_bottom() const { return _state == 0; }
181 bool is_live() const { return ((_state & live_bits_mask) != 0); }
188 if (is_info_top() && ((_state & info_mask) != info_mask)) {
192 if (is_info_bottom() && ((_state & info_mask) != 0)) {
198 bool is_address() const { return ((_state & bits_mask) == addr_bit); }
199 bool is_reference() const { return ((_state & bits_mask) == ref_bit); }
200 bool is_value() const { return ((_state & bits_mask) == val_bit); }
201 bool is_uninit() const { return ((_state & bits_mask) == (uint)uninit_bit); }
203 bool can_be_address() const { return ((_state & addr_bit) != 0); }
204 bool can_be_reference() const { return ((_state & ref_bit) != 0); }
205 bool can_be_value() const { return ((_state & val_bit) != 0); }
206 bool can_be_uninit() const { return ((_state & uninit_bit) != 0); }
208 bool is_info_bottom() const { return ((_state & not_bottom_info_bit) == 0); }
209 bool is_info_top() const { return ((_state & top_info_bit) != 0); }
213 return (_state & info_data_mask);
218 return ((_state & (bits_mask | top_info_bit | ref_not_lock_bit)) == ref_bit);
221 return ((_state & (bits_mask | top_info_bit | ref_not_lock_bit)) == (ref_bit | ref_not_lock_bit));
224 bool equal(CellTypeState a) const { return _state == a._state; }
226 return (_state & bits_mask) == (a._state & bits_mask);
266 CellTypeState* _state; // State (vars, stack) at entry.
270 CellTypeState* vars() { return _state; }
271 CellTypeState* stack() { return _state + _max_locals; }
314 CellTypeState *_state; // list of states
338 CellTypeState * vars () { return _state; }
339 CellTypeState * stack () { return _state+_max_locals; }
340 CellTypeState * monitors () { return _state+_max_locals+_max_stack; }