src/share/vm/interpreter/interpreter.hpp

changeset 2314
f95d63e2154a
parent 2103
3e8fbc61cee8
child 2508
b92c45f2bc75
     1.1 --- a/src/share/vm/interpreter/interpreter.hpp	Tue Nov 23 15:01:43 2010 -0500
     1.2 +++ b/src/share/vm/interpreter/interpreter.hpp	Tue Nov 23 13:22:55 2010 -0800
     1.3 @@ -22,6 +22,18 @@
     1.4   *
     1.5   */
     1.6  
     1.7 +#ifndef SHARE_VM_INTERPRETER_INTERPRETER_HPP
     1.8 +#define SHARE_VM_INTERPRETER_INTERPRETER_HPP
     1.9 +
    1.10 +#include "code/stubs.hpp"
    1.11 +#include "interpreter/cppInterpreter.hpp"
    1.12 +#include "interpreter/templateInterpreter.hpp"
    1.13 +#ifdef ZERO
    1.14 +#ifdef TARGET_ARCH_zero
    1.15 +# include "entry_zero.hpp"
    1.16 +#endif
    1.17 +#endif
    1.18 +
    1.19  // This file contains the platform-independent parts
    1.20  // of the interpreter and the interpreter generator.
    1.21  
    1.22 @@ -131,5 +143,16 @@
    1.23    public:
    1.24    // Debugging/printing
    1.25    static InterpreterCodelet* codelet_containing(address pc)     { return (InterpreterCodelet*)_code->stub_containing(pc); }
    1.26 -#include "incls/_interpreter_pd.hpp.incl"
    1.27 +#ifdef TARGET_ARCH_x86
    1.28 +# include "interpreter_x86.hpp"
    1.29 +#endif
    1.30 +#ifdef TARGET_ARCH_sparc
    1.31 +# include "interpreter_sparc.hpp"
    1.32 +#endif
    1.33 +#ifdef TARGET_ARCH_zero
    1.34 +# include "interpreter_zero.hpp"
    1.35 +#endif
    1.36 +
    1.37  };
    1.38 +
    1.39 +#endif // SHARE_VM_INTERPRETER_INTERPRETER_HPP

mercurial