< prev index next >

src/hotspot/cpu/zero/sharedRuntime_zero.cpp

Print this page
rev 47445 : 8171853: Remove Shark compiler

*** 39,53 **** #include "c1/c1_Runtime1.hpp" #endif #ifdef COMPILER2 #include "opto/runtime.hpp" #endif - #ifdef SHARK - #include "compiler/compileBroker.hpp" - #include "shark/sharkCompiler.hpp" - #endif - static address zero_null_code_stub() { address start = ShouldNotCallThisStub(); return start; --- 39,48 ----
*** 78,97 **** const methodHandle& method, int compile_id, BasicType *sig_bt, VMRegPair *regs, BasicType ret_type) { - #ifdef SHARK - return SharkCompiler::compiler()->generate_native_wrapper(masm, - method, - compile_id, - sig_bt, - ret_type); - #else ShouldNotCallThis(); return NULL; - #endif // SHARK } int Deoptimization::last_frame_adjust(int callee_parameters, int callee_locals) { return 0; --- 73,84 ----
< prev index next >