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

/openjdk7/hotspot/src/share/vm/oops/
H A DcpCacheOop.hpp62 // f2 = virtual but final (method entries only: is_vfinal())
104 // unused by non-virtual. The is_vfinal flag indicates this is a
144 void set_f2_as_vfinal_method(methodOop f2) { assert(_f2 == 0 || _f2 == (intptr_t) f2, "illegal field change"); assert(is_vfinal(), "flags must be set"); _f2 = (intptr_t) f2; }
313 int f2_as_index() const { assert(!is_vfinal(), ""); return (int) _f2; }
314 methodOop f2_as_vfinal_method() const { assert(is_vfinal(), ""); return methodOop(_f2); }
322 bool is_vfinal() const { return (_flags & (1 << is_vfinal_shift)) != 0; } function in class:VALUE_OBJ_CLASS_SPEC

Completed in 57 milliseconds