src/share/vm/ci/ciMethod.cpp

Print this page

        

*** 1260,1269 **** --- 1260,1271 ---- bool ciMethod::is_empty_method() const { FETCH_FLAG_FROM_VM(is_empty_method); } bool ciMethod::is_vanilla_constructor() const { FETCH_FLAG_FROM_VM(is_vanilla_constructor); } bool ciMethod::has_loops () const { FETCH_FLAG_FROM_VM(has_loops); } bool ciMethod::has_jsrs () const { FETCH_FLAG_FROM_VM(has_jsrs); } + bool ciMethod::is_getter () const { FETCH_FLAG_FROM_VM(is_getter); } + bool ciMethod::is_setter () const { FETCH_FLAG_FROM_VM(is_setter); } bool ciMethod::is_accessor () const { FETCH_FLAG_FROM_VM(is_accessor); } bool ciMethod::is_initializer () const { FETCH_FLAG_FROM_VM(is_initializer); } bool ciMethod::is_boxing_method() const { if (holder()->is_box_klass()) {