src/share/vm/classfile/javaClasses.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/classfile/javaClasses.cpp	Tue Sep 13 12:21:02 2011
--- new/src/share/vm/classfile/javaClasses.cpp	Tue Sep 13 12:21:02 2011

*** 1146,1156 **** --- 1146,1156 ---- // Neither soucename and linenumber sprintf(buf + (int)strlen(buf), "(Unknown Source)"); } nmethod* nm = method->code(); if (WizardMode && nm != NULL) { ! sprintf(buf + (int)strlen(buf), "(nmethod " INTPTR_FORMAT ")", (intptr_t)nm); } } return buf; }
*** 2695,2705 **** --- 2695,2705 ---- // (For C2: keep this until we have throttling logic for uncommon traps.) if (k != NULL) { instanceKlass* ik = instanceKlass::cast(k); methodOop m_normal = ik->lookup_method(vmSymbols::setTargetNormal_name(), vmSymbols::setTarget_signature()); methodOop m_volatile = ik->lookup_method(vmSymbols::setTargetVolatile_name(), vmSymbols::setTarget_signature()); ! guarantee(m_normal != NULL && m_volatile != NULL, "must exist"); m_normal->set_not_compilable_quietly(); m_volatile->set_not_compilable_quietly(); } }

src/share/vm/classfile/javaClasses.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File