Lines Matching refs:_cb

160   if (_cb != NULL && _cb->is_nmethod()) {
161 assert(!((nmethod*)_cb)->is_deopt_pc(_pc), "invariant violation");
168 _cb = CodeCache::find_blob_unsafe(_pc);
182 return (_cb != NULL &&
183 _cb->is_nmethod() &&
184 ((nmethod*)_cb)->is_native_method());
195 if (_cb != NULL &&
196 _cb->is_nmethod() &&
197 ((nmethod*)_cb)->is_java_method()) {
205 return (_cb != NULL && _cb->is_runtime_stub());
209 return (_cb != NULL && _cb->is_safepoint_stub());
230 assert(_cb != NULL && _cb->is_nmethod(), "must be an nmethod");
231 nmethod* nm = (nmethod *)_cb;
248 nmethod* nm = (nmethod*)_cb;
258 assert(_cb != NULL && _cb->is_nmethod(), "must be");
259 nmethod* nm = (nmethod*)_cb;
573 if (_cb != NULL) {
575 _cb->print_value_on(st);
579 begin = _cb->code_begin();
580 end = _cb->code_end();
692 if (_cb != NULL) {
709 } else if (_cb->is_buffer_blob()) {
710 st->print("v ~BufferBlob::%s", ((BufferBlob *)_cb)->name());
711 } else if (_cb->is_nmethod()) {
712 methodOop m = ((nmethod *)_cb)->method();
719 } else if (_cb->is_runtime_stub()) {
720 st->print("v ~RuntimeStub::%s", ((RuntimeStub *)_cb)->name());
721 } else if (_cb->is_deoptimization_stub()) {
723 } else if (_cb->is_exception_stub()) {
725 } else if (_cb->is_safepoint_stub()) {
985 assert(_cb != NULL, "sanity check");
986 if (_cb->oop_maps() != NULL) {
992 _cb->preserve_callee_argument_oops(*this, reg_map, f);
1001 cf->do_code_blob(_cb);
1088 nmethod* nm = (nmethod*)_cb;
1089 assert(_cb != NULL && _cb->is_nmethod() && nm->method()->is_native(),
1097 nmethod* nm = (nmethod*)_cb;
1098 assert(_cb != NULL && _cb->is_nmethod() && nm->method()->is_native(),
1145 if (_cb != NULL && _cb->is_nmethod()) {
1146 cf->do_code_blob(_cb);
1251 assert(_cb != NULL, "sanity check");
1252 if (_cb->oop_maps() != NULL) {
1395 if ((_cb != NULL) &&
1396 (_cb->name() != NULL)) {
1397 info = (char *)_cb->name();