hotspot/src/share/vm/oops/cpCache.hpp
changeset 24926 5ea835dfafaa
parent 24351 61b33cc6d3cf
child 29316 5287df8a8972
equal deleted inserted replaced
24924:f4f18b588249 24926:5ea835dfafaa
   346   int  parameter_size() const                    { assert(is_method_entry(), ""); return (_flags & parameter_size_mask); }
   346   int  parameter_size() const                    { assert(is_method_entry(), ""); return (_flags & parameter_size_mask); }
   347   bool is_volatile() const                       { return (_flags & (1 << is_volatile_shift))       != 0; }
   347   bool is_volatile() const                       { return (_flags & (1 << is_volatile_shift))       != 0; }
   348   bool is_final() const                          { return (_flags & (1 << is_final_shift))          != 0; }
   348   bool is_final() const                          { return (_flags & (1 << is_final_shift))          != 0; }
   349   bool is_forced_virtual() const                 { return (_flags & (1 << is_forced_virtual_shift)) != 0; }
   349   bool is_forced_virtual() const                 { return (_flags & (1 << is_forced_virtual_shift)) != 0; }
   350   bool is_vfinal() const                         { return (_flags & (1 << is_vfinal_shift))         != 0; }
   350   bool is_vfinal() const                         { return (_flags & (1 << is_vfinal_shift))         != 0; }
   351   bool has_appendix() const                      { return (_flags & (1 << has_appendix_shift))      != 0; }
   351   bool has_appendix() const                      { return (!is_f1_null()) && (_flags & (1 << has_appendix_shift))      != 0; }
   352   bool has_method_type() const                   { return (_flags & (1 << has_method_type_shift))   != 0; }
   352   bool has_method_type() const                   { return (!is_f1_null()) && (_flags & (1 << has_method_type_shift))   != 0; }
   353   bool is_method_entry() const                   { return (_flags & (1 << is_field_entry_shift))    == 0; }
   353   bool is_method_entry() const                   { return (_flags & (1 << is_field_entry_shift))    == 0; }
   354   bool is_field_entry() const                    { return (_flags & (1 << is_field_entry_shift))    != 0; }
   354   bool is_field_entry() const                    { return (_flags & (1 << is_field_entry_shift))    != 0; }
   355   bool is_byte() const                           { return flag_state() == btos; }
   355   bool is_byte() const                           { return flag_state() == btos; }
   356   bool is_char() const                           { return flag_state() == ctos; }
   356   bool is_char() const                           { return flag_state() == ctos; }
   357   bool is_short() const                          { return flag_state() == stos; }
   357   bool is_short() const                          { return flag_state() == stos; }