Lines Matching refs:obj

53 int methodKlass::oop_size(oop obj) const {
54 assert(obj->is_method(), "must be method oop");
55 return methodOop(obj)->object_size();
59 bool methodKlass::oop_is_parsable(oop obj) const {
60 assert(obj->is_method(), "must be method oop");
61 return methodOop(obj)->object_is_parsable();
119 void methodKlass::oop_follow_contents(oop obj) {
120 assert (obj->is_method(), "object must be method");
121 methodOop m = methodOop(obj);
132 oop obj) {
133 assert (obj->is_method(), "object must be method");
134 methodOop m = methodOop(obj);
146 int methodKlass::oop_oop_iterate(oop obj, OopClosure* blk) {
147 assert (obj->is_method(), "object must be method");
148 methodOop m = methodOop(obj);
162 int methodKlass::oop_oop_iterate_m(oop obj, OopClosure* blk, MemRegion mr) {
163 assert (obj->is_method(), "object must be method");
164 methodOop m = methodOop(obj);
181 int methodKlass::oop_adjust_pointers(oop obj) {
182 assert(obj->is_method(), "should be method");
183 methodOop m = methodOop(obj);
197 void methodKlass::oop_push_contents(PSPromotionManager* pm, oop obj) {
198 assert(obj->is_method(), "should be method");
201 int methodKlass::oop_update_pointers(ParCompactionManager* cm, oop obj) {
202 assert(obj->is_method(), "should be method");
203 methodOop m = methodOop(obj);
218 void methodKlass::oop_print_on(oop obj, outputStream* st) {
220 assert(obj->is_method(), "must be method");
221 Klass::oop_print_on(obj, st);
222 methodOop m = methodOop(obj);
302 void methodKlass::oop_print_value_on(oop obj, outputStream* st) {
303 assert(obj->is_method(), "must be method");
304 Klass::oop_print_value_on(obj, st);
305 methodOop m = methodOop(obj);
323 void methodKlass::oop_verify_on(oop obj, outputStream* st) {
324 Klass::oop_verify_on(obj, st);
325 guarantee(obj->is_method(), "object must be method");
326 if (!obj->partially_loaded()) {
327 methodOop m = methodOop(obj);
339 bool methodKlass::oop_partially_loaded(oop obj) const {
340 assert(obj->is_method(), "object must be method");
341 methodOop m = methodOop(obj);
349 void methodKlass::oop_set_partially_loaded(oop obj) {
350 assert(obj->is_method(), "object must be method");
351 methodOop m = methodOop(obj);