< prev index next >

src/share/vm/interpreter/interpreter.hpp

Print this page
rev 7856 : 8073389: Remove the include of resourceArea.hpp from classFileParser.hpp


  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_INTERPRETER_INTERPRETER_HPP
  26 #define SHARE_VM_INTERPRETER_INTERPRETER_HPP
  27 
  28 #include "code/stubs.hpp"
  29 #include "interpreter/cppInterpreter.hpp"
  30 #include "interpreter/templateInterpreter.hpp"

  31 #ifdef ZERO
  32 #ifdef TARGET_ARCH_zero
  33 # include "entry_zero.hpp"
  34 #endif
  35 #endif
  36 
  37 // This file contains the platform-independent parts
  38 // of the interpreter and the interpreter generator.
  39 
  40 class InterpreterMacroAssembler;
  41 
  42 //------------------------------------------------------------------------------------------------------------------------
  43 // An InterpreterCodelet is a piece of interpreter code. All
  44 // interpreter code is generated into little codelets which
  45 // contain extra information for debugging and printing purposes.
  46 
  47 class InterpreterCodelet: public Stub {
  48   friend class VMStructs;
  49  private:
  50   int         _size;                             // the size in bytes




  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_INTERPRETER_INTERPRETER_HPP
  26 #define SHARE_VM_INTERPRETER_INTERPRETER_HPP
  27 
  28 #include "code/stubs.hpp"
  29 #include "interpreter/cppInterpreter.hpp"
  30 #include "interpreter/templateInterpreter.hpp"
  31 #include "memory/resourceArea.hpp"
  32 #ifdef ZERO
  33 #ifdef TARGET_ARCH_zero
  34 # include "entry_zero.hpp"
  35 #endif
  36 #endif
  37 
  38 // This file contains the platform-independent parts
  39 // of the interpreter and the interpreter generator.
  40 
  41 class InterpreterMacroAssembler;
  42 
  43 //------------------------------------------------------------------------------------------------------------------------
  44 // An InterpreterCodelet is a piece of interpreter code. All
  45 // interpreter code is generated into little codelets which
  46 // contain extra information for debugging and printing purposes.
  47 
  48 class InterpreterCodelet: public Stub {
  49   friend class VMStructs;
  50  private:
  51   int         _size;                             // the size in bytes


< prev index next >