src/share/vm/interpreter/bytecode.hpp

Print this page

        

*** 20,29 **** --- 20,45 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_INTERPRETER_BYTECODE_HPP + #define SHARE_VM_INTERPRETER_BYTECODE_HPP + + #include "interpreter/bytecodes.hpp" + #include "memory/allocation.hpp" + #include "oops/methodOop.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 + // Base class for different kinds of abstractions working // relative to an objects 'this' pointer. class ThisRelativeObj VALUE_OBJ_CLASS_SPEC { public:
*** 429,433 **** --- 445,451 ---- inline Bytecode_loadconstant* Bytecode_loadconstant_at(methodHandle method, int bci) { Bytecode_loadconstant* b = new Bytecode_loadconstant(method, bci); DEBUG_ONLY(b->verify()); return b; } + + #endif // SHARE_VM_INTERPRETER_BYTECODE_HPP