Searched refs:is_method (Results 1 - 25 of 45) sorted by relevance

12

/openjdk7/hotspot/src/share/vm/oops/
H A DmethodKlass.cpp54 assert(obj->is_method(), "must be method oop");
60 assert(obj->is_method(), "must be method oop");
120 assert (obj->is_method(), "object must be method");
133 assert (obj->is_method(), "object must be method");
147 assert (obj->is_method(), "object must be method");
163 assert (obj->is_method(), "object must be method");
182 assert(obj->is_method(), "should be method");
198 assert(obj->is_method(), "should be method");
202 assert(obj->is_method(), "should be method");
220 assert(obj->is_method(), "mus
[all...]
H A DcpCacheOop.cpp395 assert(f1->is_method(), "");
407 assert(m->is_method(), "");
584 // _f2 == NULL || !m->is_method() are just as unexpected here.
585 return (m != NULL && m->is_method() && !m->is_old() && !m->is_obsolete());
586 } else if ((oop)_f1 == NULL || !((oop)_f1)->is_method()) {
587 // _f1 == NULL || !_f1->is_method() are OK here
611 if (!f1->is_method()) {
618 assert(m != NULL && m->is_method(), "sanity check");
619 if (m == NULL || !m->is_method() || (k != NULL && m->method_holder() != k)) {
H A DcompiledICHolderKlass.cpp177 guarantee(c->holder_method()->is_method(), "should be method");
H A DklassVtable.hpp182 assert(oop(table()[i].method())->is_method(), "should be method");
H A Doop.hpp139 bool is_method() const;
H A DklassVtable.cpp82 assert(methods->obj_at(i)->is_method(), "must be a methodOop");
182 assert(methods()->obj_at(i)->is_method(), "must be a methodOop");
1077 assert(m != NULL && m->is_method(), "sanity check");
/openjdk7/hotspot/src/share/vm/utilities/
H A DconstantTag.hpp56 bool is_method() const { return _tag == JVM_CONSTANT_Methodref; } function in class:VALUE_OBJ_CLASS_SPEC
84 bool is_field_or_method() const { return is_field() || is_method() || is_interface_method(); }
/openjdk7/hotspot/src/share/vm/ci/
H A DciObject.hpp146 virtual bool is_method() { return false; } function in class:ciObject
218 assert(is_method(), "bad cast");
H A DciMethod.hpp271 bool is_method() { return true; } function in class:ciMethod
/openjdk7/hotspot/src/cpu/zero/vm/
H A Dframe_zero.cpp354 if (method()->is_method()) {
370 if (method()->is_method()) {
381 if (method()->is_method()) {
/openjdk7/hotspot/src/share/vm/memory/
H A Dclassify.cpp78 } else if (obj->is_method()) {
H A Ddump.cpp49 if (obj->is_method()) {
100 if (obj->is_method()) {
283 if (obj->is_method()) {
407 if (obj->is_method()) {
/openjdk7/hotspot/src/share/vm/runtime/
H A DjniHandles.hpp216 if (o == NULL || !o->is_method()) {
H A Dsynchronizer.hpp124 static void trace_locking(Handle obj, bool is_compiled, bool is_method, bool is_locking) PRODUCT_RETURN;
H A Dsignature.cpp253 SignatureStream::SignatureStream(Symbol* signature, bool is_method) : argument
255 _begin = _end = (is_method ? 1 : 0); // skip first '(' in method signatures
H A Dhandles.hpp191 DEF_HANDLE(method , is_method )
H A Dsignature.hpp389 SignatureStream(Symbol* signature, bool is_method = true);
H A Dvframe.hpp420 assert(_method->is_method(), "checking type of decoded method");
H A Dframe.cpp390 assert(m->is_method(), "not a methodOop");
890 assert(m->is_method(), "checking frame value");
1273 guarantee(method->is_method(), "method is wrong in frame::verify");
/openjdk7/hotspot/src/share/vm/code/
H A DscopeDesc.cpp242 guarantee(method()->is_method(), "type check");
H A Ddependencies.cpp301 assert(x->is_method(), "sanity");
519 } else if (arg->is_method()) {
705 assert(m != NULL && m->is_method(), "sanity");
H A Ddependencies.hpp473 assert(x->is_method(), "type");
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileLog.cpp134 } else if (obj->is_method()) {
/openjdk7/hotspot/src/share/vm/classfile/
H A Dverifier.hpp272 Symbol* field_name, Symbol* field_sig, bool is_method);
/openjdk7/hotspot/src/share/vm/interpreter/
H A Drewriter.cpp158 assert(_pool->tag_at(cp_index).is_method(), "wrong index");

Completed in 80 milliseconds

12