< prev index next >

src/share/vm/classfile/javaClasses.cpp

Print this page

        

*** 51,60 **** --- 51,64 ---- #include "runtime/safepoint.hpp" #include "runtime/thread.inline.hpp" #include "runtime/vframe.hpp" #include "utilities/preserveException.hpp" + #if INCLUDE_JVMCI + #include "jvmci/jvmciJavaClasses.hpp" + #endif + PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC #define INJECTED_FIELD_COMPUTE_OFFSET(klass, name, signature, may_be_java) \ klass::_##name##_offset = JavaClasses::compute_injected_offset(JavaClasses::klass##_##name##_enum);
*** 1577,1587 **** Thread *THREAD = Thread::current(); Handle h_throwable(THREAD, throwable); while (h_throwable.not_null()) { objArrayHandle result (THREAD, objArrayOop(backtrace(h_throwable()))); if (result.is_null()) { ! st->print_cr("%s", no_stack_trace_message()); return; } while (result.not_null()) { --- 1581,1591 ---- Thread *THREAD = Thread::current(); Handle h_throwable(THREAD, throwable); while (h_throwable.not_null()) { objArrayHandle result (THREAD, objArrayOop(backtrace(h_throwable()))); if (result.is_null()) { ! st->print_raw_cr(no_stack_trace_message()); return; } while (result.not_null()) {
< prev index next >