src/share/vm/interpreter/bytecodeInterpreter.hpp

Print this page

        

*** 20,29 **** --- 20,49 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_INTERPRETER_BYTECODEINTERPRETER_HPP + #define SHARE_VM_INTERPRETER_BYTECODEINTERPRETER_HPP + + #include "memory/allocation.hpp" + #include "oops/methodDataOop.hpp" + #include "oops/methodOop.hpp" + #include "runtime/basicLock.hpp" + #include "runtime/frame.hpp" + #include "runtime/globals.hpp" + #include "utilities/globalDefinitions.hpp" + #ifdef TARGET_ARCH_x86 + # include "bytes_x86.hpp" + #endif + #ifdef TARGET_ARCH_sparc + # include "bytes_sparc.hpp" + #endif + #ifdef TARGET_ARCH_zero + # include "bytes_zero.hpp" + #endif + #ifdef CC_INTERP // CVM definitions find hotspot equivalents... union VMJavaVal64 {
*** 556,565 **** static const char* C_msg(BytecodeInterpreter::messages msg); void print(); #endif // PRODUCT // Platform fields/methods ! # include "incls/_bytecodeInterpreter_pd.hpp.incl" }; // BytecodeInterpreter #endif // CC_INTERP --- 576,596 ---- static const char* C_msg(BytecodeInterpreter::messages msg); void print(); #endif // PRODUCT // Platform fields/methods ! #ifdef TARGET_ARCH_x86 ! # include "bytecodeInterpreter_x86.hpp" ! #endif ! #ifdef TARGET_ARCH_sparc ! # include "bytecodeInterpreter_sparc.hpp" ! #endif ! #ifdef TARGET_ARCH_zero ! # include "bytecodeInterpreter_zero.hpp" ! #endif ! }; // BytecodeInterpreter #endif // CC_INTERP + + #endif // SHARE_VM_INTERPRETER_BYTECODEINTERPRETER_HPP