< prev index next >

src/hotspot/share/code/scopeDesc.cpp

Print this page

        

*** 226,247 **** st->cr(); } } } ! #if defined(COMPILER2) || INCLUDE_JVMCI if (NOT_JVMCI(DoEscapeAnalysis &&) is_top() && _objects != NULL) { st->print_cr(" Objects"); for (int i = 0; i < _objects->length(); i++) { ObjectValue* sv = (ObjectValue*) _objects->at(i); st->print(" - %d: ", sv->id()); st->print("%s ", java_lang_Class::as_Klass(sv->klass()->as_ConstantOopReadValue()->value()())->external_name()); sv->print_fields_on(st); st->cr(); } } ! #endif // COMPILER2 || INCLUDE_JVMCI } #endif void ScopeDesc::verify() { --- 226,247 ---- st->cr(); } } } ! #if COMPILER2_OR_JVMCI if (NOT_JVMCI(DoEscapeAnalysis &&) is_top() && _objects != NULL) { st->print_cr(" Objects"); for (int i = 0; i < _objects->length(); i++) { ObjectValue* sv = (ObjectValue*) _objects->at(i); st->print(" - %d: ", sv->id()); st->print("%s ", java_lang_Class::as_Klass(sv->klass()->as_ConstantOopReadValue()->value()())->external_name()); sv->print_fields_on(st); st->cr(); } } ! #endif // COMPILER2_OR_JVMCI } #endif void ScopeDesc::verify() {
< prev index next >