< prev index next >

src/hotspot/share/compiler/disassembler.cpp

Print this page
rev 47445 : 8171853: Remove Shark compiler

*** 33,45 **** #include "runtime/handles.inline.hpp" #include "runtime/os.hpp" #include "runtime/stubCodeGenerator.hpp" #include "runtime/stubRoutines.hpp" #include CPU_HEADER(depChecker) - #ifdef SHARK - #include "shark/sharkEntry.hpp" - #endif void* Disassembler::_library = NULL; bool Disassembler::_tried_to_load_library = false; // This routine is in the shared library: --- 33,42 ----
*** 519,536 **** ttyLocker ttyl; if (!load_library()) return; decode_env env(nm, st); env.output()->print_cr("----------------------------------------------------------------------"); - #ifdef SHARK - SharkEntry* entry = (SharkEntry *) nm->code_begin(); - unsigned char* p = entry->code_start(); - unsigned char* end = entry->code_limit(); - #else unsigned char* p = nm->code_begin(); unsigned char* end = nm->code_end(); - #endif // SHARK nm->method()->method_holder()->name()->print_symbol_on(env.output()); env.output()->print("."); nm->method()->name()->print_symbol_on(env.output()); nm->method()->signature()->print_symbol_on(env.output()); --- 516,527 ----
< prev index next >