Searched refs:is_nmethod (Results 1 - 25 of 28) sorted by relevance

12

/openjdk7/hotspot/src/cpu/sparc/vm/
H A Ddebug_sparc.cpp63 if (b->is_nmethod()) {
H A Dframe_sparc.cpp214 if (_cb->is_nmethod() || _cb->is_adapter_blob() || _cb->is_runtime_stub()) {
306 assert(!sender_blob->is_nmethod(), "should count return address at least");
317 if (!sender_blob->is_nmethod()) {
360 if ( _cb != NULL && _cb->is_nmethod()) {
/openjdk7/hotspot/src/share/vm/code/
H A DcodeCache.cpp97 if (cb->is_nmethod()) {
145 while (cb != NULL && (!cb->is_alive() || !cb->is_nmethod())) cb = next(cb);
152 while (cb != NULL && !cb->is_nmethod()) {
161 while (cb != NULL && !cb->is_nmethod()) {
201 if (cb->is_nmethod()) {
222 if (cb->is_nmethod()) {
269 assert(cb == NULL || cb->is_nmethod(), "did not find an nmethod");
285 if (nm->is_nmethod()) f((nmethod*)nm);
317 if (cb->is_nmethod())
424 if (cb->is_nmethod()) {
[all...]
H A DcompiledIC.cpp105 assert(cb != NULL && cb->is_nmethod(), "must be nmethod");
194 bool is_monomorphic = (cb != NULL && cb->is_nmethod());
346 assert (cb->is_nmethod(), "must be compiled!");
489 assert(cb != NULL && cb->is_nmethod(), "must be nmethod");
H A DcodeBlob.hpp99 virtual bool is_nmethod() const { return false; } function in class:VALUE_OBJ_CLASS_SPEC
112 nmethod* as_nmethod_or_null() { return is_nmethod() ? (nmethod*) this : NULL; }
H A Dnmethod.hpp333 bool is_nmethod() const { return true; } function in class:nmethod
H A Dnmethod.cpp1133 if( cb != NULL && cb->is_nmethod() ) {
1143 if( cb != NULL && cb->is_nmethod() ) {
2159 guarantee(cb != NULL && cb->is_nmethod(), "bad pc for a nmethod found");
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvframe.hpp70 assert( cb() != NULL && cb()->is_nmethod(), "usage");
321 assert( cb() != NULL && cb()->is_nmethod(), "usage");
441 if (cb() != NULL && cb()->is_nmethod()) {
H A Dframe.cpp160 if (_cb != NULL && _cb->is_nmethod()) {
183 _cb->is_nmethod() &&
196 _cb->is_nmethod() &&
230 assert(_cb != NULL && _cb->is_nmethod(), "must be an nmethod");
258 assert(_cb != NULL && _cb->is_nmethod(), "must be");
711 } else if (_cb->is_nmethod()) {
1089 assert(_cb != NULL && _cb->is_nmethod() && nm->method()->is_native(),
1098 assert(_cb != NULL && _cb->is_nmethod() && nm->method()->is_native(),
1145 if (_cb != NULL && _cb->is_nmethod()) {
H A Dsafepoint.cpp588 stub_cb->is_nmethod() &&
1036 assert(cb != NULL && cb->is_nmethod(), "return address should be in nmethod");
H A DsharedRuntime.cpp535 assert( cb && cb->is_nmethod(), "safepoint polling: pc must refer to an nmethod" );
812 if (!cb->is_nmethod()) {
1170 guarantee(caller_cb != NULL && caller_cb->is_nmethod(), "must be called from nmethod");
1459 if (cb->is_nmethod() && ((nmethod*)cb)->is_in_use()) {
1682 if (!cb->is_nmethod() || entry_point == moop->get_c2i_entry()) {
H A Dsweeper.cpp162 if (cb->is_nmethod() && ((nmethod*)cb)->is_not_entrant()) {
H A Dvframe.cpp70 if (cb->is_nmethod()) {
H A Dfprofiler.cpp217 if (cb->is_nmethod()) {
987 methodOop method = (cb->is_nmethod()) ? ((nmethod *)cb)->method() :
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dframe_x86.cpp104 if (_cb->is_nmethod() || _cb->is_adapter_blob() || _cb->is_runtime_stub()) {
212 if (sender_blob->is_nmethod()) {
225 assert(!sender_blob->is_nmethod(), "should count return address at least");
234 if (!sender_blob->is_nmethod()) {
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiCodeBlobEvents.cpp119 if (cb->is_nmethod()) {
H A Dforte.cpp315 if (candidate.cb()->is_nmethod()) {
/openjdk7/hotspot/src/share/vm/compiler/
H A Ddisassembler.cpp237 if (code != NULL && code->is_nmethod())
H A DoopMap.cpp337 if( cb->is_nmethod() ) {
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddebug.cpp452 if (cb->is_nmethod()) {
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dos_bsd_x86.cpp537 nmethod* nm = cb->is_nmethod() ? (nmethod*)cb : NULL;
/openjdk7/hotspot/src/os_cpu/linux_sparc/vm/
H A Dos_linux_sparc.cpp451 nmethod* nm = cb->is_nmethod() ? (nmethod*)cb : NULL;
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dos_linux_x86.cpp344 nmethod* nm = cb->is_nmethod() ? (nmethod*)cb : NULL;
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dos_solaris_sparc.cpp464 nmethod* nm = cb->is_nmethod() ? (nmethod*)cb : NULL;
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Dos_solaris_x86.cpp489 nmethod* nm = cb->is_nmethod() ? (nmethod*)cb : NULL;

Completed in 115 milliseconds

12