src/cpu/zero/vm/interpreter_zero.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 8074457 Cdiff src/cpu/zero/vm/interpreter_zero.cpp

src/cpu/zero/vm/interpreter_zero.cpp

Print this page

        

*** 24,35 **** */ #include "precompiled.hpp" #include "asm/assembler.hpp" #include "interpreter/bytecodeHistogram.hpp" #include "interpreter/interpreter.hpp" - #include "interpreter/interpreterGenerator.hpp" #include "interpreter/interpreterRuntime.hpp" #include "interpreter/templateTable.hpp" #include "oops/arrayOop.hpp" #include "oops/methodData.hpp" #include "oops/method.hpp" --- 24,35 ---- */ #include "precompiled.hpp" #include "asm/assembler.hpp" #include "interpreter/bytecodeHistogram.hpp" + #include "interpreter/cppInterpreterGenerator.hpp" #include "interpreter/interpreter.hpp" #include "interpreter/interpreterRuntime.hpp" #include "interpreter/templateTable.hpp" #include "oops/arrayOop.hpp" #include "oops/methodData.hpp" #include "oops/method.hpp"
*** 55,74 **** address AbstractInterpreterGenerator::generate_slow_signature_handler() { _masm->advance(1); return (address) InterpreterRuntime::slow_signature_handler; } ! address InterpreterGenerator::generate_math_entry( AbstractInterpreter::MethodKind kind) { if (!InlineIntrinsics) return NULL; Unimplemented(); return NULL; } ! address InterpreterGenerator::generate_abstract_entry() { return generate_entry((address) ShouldNotCallThisEntry()); } bool AbstractInterpreter::can_be_compiled(methodHandle m) { return true; --- 55,74 ---- address AbstractInterpreterGenerator::generate_slow_signature_handler() { _masm->advance(1); return (address) InterpreterRuntime::slow_signature_handler; } ! address CppInterpreterGenerator::generate_math_entry( AbstractInterpreter::MethodKind kind) { if (!InlineIntrinsics) return NULL; Unimplemented(); return NULL; } ! address CppInterpreterGenerator::generate_abstract_entry() { return generate_entry((address) ShouldNotCallThisEntry()); } bool AbstractInterpreter::can_be_compiled(methodHandle m) { return true;
src/cpu/zero/vm/interpreter_zero.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File