Searched defs:_pf_flags (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.hpp574 int _pf_flags; // the flags of the phi function variable
580 , _pf_flags(0)
608 void set(Flag f) { _pf_flags |= f; }
609 void clear(Flag f) { _pf_flags &= ~f; }
610 bool is_set(Flag f) const { return (_pf_flags & f) != 0; }

Completed in 210 milliseconds