src/share/vm/interpreter/bytecode.hpp

changeset 2314
f95d63e2154a
parent 1957
136b78722a08
child 2462
8012aa3ccede
     1.1 --- a/src/share/vm/interpreter/bytecode.hpp	Tue Nov 23 15:01:43 2010 -0500
     1.2 +++ b/src/share/vm/interpreter/bytecode.hpp	Tue Nov 23 13:22:55 2010 -0800
     1.3 @@ -22,6 +22,22 @@
     1.4   *
     1.5   */
     1.6  
     1.7 +#ifndef SHARE_VM_INTERPRETER_BYTECODE_HPP
     1.8 +#define SHARE_VM_INTERPRETER_BYTECODE_HPP
     1.9 +
    1.10 +#include "interpreter/bytecodes.hpp"
    1.11 +#include "memory/allocation.hpp"
    1.12 +#include "oops/methodOop.hpp"
    1.13 +#ifdef TARGET_ARCH_x86
    1.14 +# include "bytes_x86.hpp"
    1.15 +#endif
    1.16 +#ifdef TARGET_ARCH_sparc
    1.17 +# include "bytes_sparc.hpp"
    1.18 +#endif
    1.19 +#ifdef TARGET_ARCH_zero
    1.20 +# include "bytes_zero.hpp"
    1.21 +#endif
    1.22 +
    1.23  // Base class for different kinds of abstractions working
    1.24  // relative to an objects 'this' pointer.
    1.25  
    1.26 @@ -431,3 +447,5 @@
    1.27    DEBUG_ONLY(b->verify());
    1.28    return b;
    1.29  }
    1.30 +
    1.31 +#endif // SHARE_VM_INTERPRETER_BYTECODE_HPP

mercurial