< prev index next >

src/share/vm/jvmci/jvmciRuntime.hpp

Print this page

        

*** 61,71 **** static CompLevelAdjustment _comp_level_adjustment; static bool _shutdown_called; ! static CompLevel adjust_comp_level_inner(methodHandle method, bool is_osr, CompLevel level, JavaThread* thread); public: static bool is_HotSpotJVMCIRuntime_initialized() { return _HotSpotJVMCIRuntime_initialized; } --- 61,71 ---- static CompLevelAdjustment _comp_level_adjustment; static bool _shutdown_called; ! static CompLevel adjust_comp_level_inner(const methodHandle& method, bool is_osr, CompLevel level, JavaThread* thread); public: static bool is_HotSpotJVMCIRuntime_initialized() { return _HotSpotJVMCIRuntime_initialized; }
*** 123,133 **** * @param is_osr specifies if the compilation is an OSR compilation * @param level the compilation level currently selected by the VM compilation policy * @param thread the current thread * @return the compilation level to use for the compilation */ ! static CompLevel adjust_comp_level(methodHandle method, bool is_osr, CompLevel level, JavaThread* thread); static BasicType kindToBasicType(Handle kind, TRAPS); // The following routines are all called from compiled JVMCI code --- 123,133 ---- * @param is_osr specifies if the compilation is an OSR compilation * @param level the compilation level currently selected by the VM compilation policy * @param thread the current thread * @return the compilation level to use for the compilation */ ! static CompLevel adjust_comp_level(const methodHandle& method, bool is_osr, CompLevel level, JavaThread* thread); static BasicType kindToBasicType(Handle kind, TRAPS); // The following routines are all called from compiled JVMCI code
< prev index next >