Searched refs:_nm (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A Drframe.hpp80 nmethod* _nm; member in class:CompiledRFrame
93 nmethod* nm() const { return _nm; }
H A Drframe.cpp139 _nm = compiledVFrame::cast(vf)->code();
/openjdk7/hotspot/src/share/vm/code/
H A Dnmethod.hpp701 nmethod* _nm; member in class:nmethodLocker
712 nmethodLocker(nmethod *nm) { _nm = nm; lock_nmethod(_nm); }
713 nmethodLocker() { _nm = NULL; }
714 ~nmethodLocker() { unlock_nmethod(_nm); }
716 nmethod* code() { return _nm; }
718 unlock_nmethod(_nm); // note: This works even if _nm==new_nm.
719 _nm = new_nm;
720 lock_nmethod(_nm);
[all...]
H A Dnmethod.cpp2160 _nm = (nmethod*)cb;
2161 lock_nmethod(_nm);
2212 nmethod* _nm; member in class:VerifyOopsClosure
2215 VerifyOopsClosure(nmethod* nm) : _nm(nm), _ok(true) { }
2220 _nm->print_nmethod(true);
2224 (intptr_t)(*p), (intptr_t)p, (int)((intptr_t)p - (intptr_t)_nm));
2333 nmethod* _nm; member in class:DebugScavengeRoot
2336 DebugScavengeRoot(nmethod* nm) : _nm(nm), _ok(true) { }
2341 _nm->print_nmethod(true);
2345 (intptr_t)(*p), (intptr_t)p, (int)((intptr_t)p - (intptr_t)_nm));
[all...]
/openjdk7/hotspot/src/share/vm/compiler/
H A Ddisassembler.cpp149 nmethod* _nm; member in class:decode_env
206 if (_nm != NULL) {
207 _nm->print_code_comment_on(st, COMMENT_COLUMN, pc0, pc);
238 _nm = (nmethod*) code;
335 if (_nm != NULL
336 && (obj = _nm->embeddedOop_at(cur_insn())) != NULL

Completed in 52 milliseconds