duke@435: /* coleenp@4037: * Copyright (c) 2002, 2012, Oracle and/or its affiliates. All rights reserved. duke@435: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. duke@435: * duke@435: * This code is free software; you can redistribute it and/or modify it duke@435: * under the terms of the GNU General Public License version 2 only, as duke@435: * published by the Free Software Foundation. duke@435: * duke@435: * This code is distributed in the hope that it will be useful, but WITHOUT duke@435: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or duke@435: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License duke@435: * version 2 for more details (a copy is included in the LICENSE file that duke@435: * accompanied this code). duke@435: * duke@435: * You should have received a copy of the GNU General Public License version duke@435: * 2 along with this work; if not, write to the Free Software Foundation, duke@435: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. duke@435: * trims@1907: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA trims@1907: * or visit www.oracle.com if you need additional information or have any trims@1907: * questions. duke@435: * duke@435: */ duke@435: stefank@2314: #ifndef SHARE_VM_INTERPRETER_BYTECODEINTERPRETER_HPP stefank@2314: #define SHARE_VM_INTERPRETER_BYTECODEINTERPRETER_HPP stefank@2314: stefank@2314: #include "memory/allocation.hpp" coleenp@4037: #include "oops/methodData.hpp" coleenp@4037: #include "oops/method.hpp" stefank@2314: #include "runtime/basicLock.hpp" stefank@2314: #include "runtime/frame.hpp" stefank@2314: #include "runtime/globals.hpp" stefank@2314: #include "utilities/globalDefinitions.hpp" stefank@2314: #ifdef TARGET_ARCH_x86 stefank@2314: # include "bytes_x86.hpp" stefank@2314: #endif stefank@2314: #ifdef TARGET_ARCH_sparc stefank@2314: # include "bytes_sparc.hpp" stefank@2314: #endif stefank@2314: #ifdef TARGET_ARCH_zero stefank@2314: # include "bytes_zero.hpp" stefank@2314: #endif bobv@2508: #ifdef TARGET_ARCH_arm bobv@2508: # include "bytes_arm.hpp" bobv@2508: #endif bobv@2508: #ifdef TARGET_ARCH_ppc bobv@2508: # include "bytes_ppc.hpp" bobv@2508: #endif stefank@2314: duke@435: #ifdef CC_INTERP duke@435: twisti@4237: // JavaStack Implementation twisti@4237: #define MORE_STACK(count) \ twisti@4237: (topOfStack -= ((count) * Interpreter::stackElementWords)) twisti@4237: duke@435: // CVM definitions find hotspot equivalents... duke@435: duke@435: union VMJavaVal64 { duke@435: jlong l; duke@435: jdouble d; duke@435: uint32_t v[2]; duke@435: }; duke@435: duke@435: duke@435: typedef class BytecodeInterpreter* interpreterState; duke@435: duke@435: struct call_message { goetz@6450: class Method* _callee; // method to call during call_method request goetz@6450: address _callee_entry_point; // address to jump to for call_method request goetz@6450: int _bcp_advance; // size of the invoke bytecode operation duke@435: }; duke@435: duke@435: struct osr_message { goetz@6450: address _osr_buf; // the osr buffer goetz@6450: address _osr_entry; // the entry to the osr method duke@435: }; duke@435: duke@435: struct osr_result { goetz@6450: nmethod* nm; // osr nmethod goetz@6450: address return_addr; // osr blob return address duke@435: }; duke@435: duke@435: // Result returned to frame manager duke@435: union frame_manager_message { goetz@6450: call_message _to_call; // describes callee goetz@6450: osr_message _osr; // describes the osr goetz@6450: osr_result _osr_result; // result of OSR request duke@435: }; duke@435: duke@435: class BytecodeInterpreter : StackObj { duke@435: friend class SharedRuntime; duke@435: friend class AbstractInterpreterGenerator; duke@435: friend class CppInterpreterGenerator; duke@435: friend class InterpreterGenerator; duke@435: friend class InterpreterMacroAssembler; duke@435: friend class frame; duke@435: friend class VMStructs; duke@435: duke@435: public: duke@435: enum messages { duke@435: no_request = 0, // unused duke@435: initialize, // Perform one time interpreter initializations (assumes all switches set) duke@435: // status message to C++ interpreter duke@435: method_entry, // initial method entry to interpreter duke@435: method_resume, // frame manager response to return_from_method request (assuming a frame to resume) duke@435: deopt_resume, // returning from a native call into a deopted frame duke@435: deopt_resume2, // deopt resume as a result of a PopFrame duke@435: got_monitors, // frame manager response to more_monitors request duke@435: rethrow_exception, // unwinding and throwing exception duke@435: // requests to frame manager from C++ interpreter duke@435: call_method, // request for new frame from interpreter, manager responds with method_entry duke@435: return_from_method, // request from interpreter to unwind, manager responds with method_continue duke@435: more_monitors, // need a new monitor duke@435: throwing_exception, // unwind stack and rethrow duke@435: popping_frame, // unwind call and retry call goetz@6450: do_osr, // request this invocation be OSR's goetz@6450: early_return // early return as commanded by jvmti duke@435: }; duke@435: duke@435: private: duke@435: JavaThread* _thread; // the vm's java thread pointer duke@435: address _bcp; // instruction pointer duke@435: intptr_t* _locals; // local variable pointer coleenp@4037: ConstantPoolCache* _constants; // constant pool cache coleenp@4037: Method* _method; // method being executed duke@435: DataLayout* _mdx; // compiler profiling data for current bytecode duke@435: intptr_t* _stack; // expression stack duke@435: messages _msg; // frame manager <-> interpreter message duke@435: frame_manager_message _result; // result to frame manager duke@435: interpreterState _prev_link; // previous interpreter state duke@435: oop _oop_temp; // mirror for interpreted native, null otherwise duke@435: intptr_t* _stack_base; // base of expression stack duke@435: intptr_t* _stack_limit; // limit of expression stack duke@435: BasicObjectLock* _monitor_base; // base of monitors on the native stack duke@435: duke@435: duke@435: public: duke@435: // Constructor is only used by the initialization step. All other instances are created duke@435: // by the frame manager. duke@435: BytecodeInterpreter(messages msg); duke@435: duke@435: // duke@435: // Deoptimization support duke@435: // duke@435: static void layout_interpreterState(interpreterState to_fill, duke@435: frame* caller, duke@435: frame* interpreter_frame, coleenp@4037: Method* method, duke@435: intptr_t* locals, duke@435: intptr_t* stack, duke@435: intptr_t* stack_base, duke@435: intptr_t* monitor_base, duke@435: intptr_t* frame_bottom, duke@435: bool top_frame); duke@435: duke@435: /* duke@435: * Generic 32-bit wide "Java slot" definition. This type occurs duke@435: * in operand stacks, Java locals, object fields, constant pools. duke@435: */ duke@435: union VMJavaVal32 { duke@435: jint i; duke@435: jfloat f; duke@435: class oopDesc* r; duke@435: uint32_t raw; duke@435: }; duke@435: duke@435: /* duke@435: * Generic 64-bit Java value definition duke@435: */ duke@435: union VMJavaVal64 { duke@435: jlong l; duke@435: jdouble d; duke@435: uint32_t v[2]; duke@435: }; duke@435: duke@435: /* duke@435: * Generic 32-bit wide "Java slot" definition. This type occurs duke@435: * in Java locals, object fields, constant pools, and duke@435: * operand stacks (as a CVMStackVal32). duke@435: */ duke@435: typedef union VMSlotVal32 { duke@435: VMJavaVal32 j; /* For "Java" values */ duke@435: address a; /* a return created by jsr or jsr_w */ duke@435: } VMSlotVal32; duke@435: duke@435: duke@435: /* duke@435: * Generic 32-bit wide stack slot definition. duke@435: */ duke@435: union VMStackVal32 { duke@435: VMJavaVal32 j; /* For "Java" values */ duke@435: VMSlotVal32 s; /* any value from a "slot" or locals[] */ duke@435: }; duke@435: duke@435: inline JavaThread* thread() { return _thread; } duke@435: duke@435: inline address bcp() { return _bcp; } duke@435: inline void set_bcp(address new_bcp) { _bcp = new_bcp; } duke@435: duke@435: inline intptr_t* locals() { return _locals; } duke@435: coleenp@4037: inline ConstantPoolCache* constants() { return _constants; } coleenp@4037: inline Method* method() { return _method; } duke@435: inline DataLayout* mdx() { return _mdx; } duke@435: inline void set_mdx(DataLayout *new_mdx) { _mdx = new_mdx; } duke@435: duke@435: inline messages msg() { return _msg; } duke@435: inline void set_msg(messages new_msg) { _msg = new_msg; } duke@435: coleenp@4037: inline Method* callee() { return _result._to_call._callee; } coleenp@4037: inline void set_callee(Method* new_callee) { _result._to_call._callee = new_callee; } duke@435: inline void set_callee_entry_point(address entry) { _result._to_call._callee_entry_point = entry; } duke@435: inline void set_osr_buf(address buf) { _result._osr._osr_buf = buf; } duke@435: inline void set_osr_entry(address entry) { _result._osr._osr_entry = entry; } duke@435: inline int bcp_advance() { return _result._to_call._bcp_advance; } duke@435: inline void set_bcp_advance(int count) { _result._to_call._bcp_advance = count; } duke@435: duke@435: inline interpreterState prev() { return _prev_link; } duke@435: duke@435: inline intptr_t* stack() { return _stack; } duke@435: inline void set_stack(intptr_t* new_stack) { _stack = new_stack; } duke@435: duke@435: duke@435: inline intptr_t* stack_base() { return _stack_base; } duke@435: inline intptr_t* stack_limit() { return _stack_limit; } duke@435: duke@435: inline BasicObjectLock* monitor_base() { return _monitor_base; } duke@435: duke@435: /* duke@435: * 64-bit Arithmetic: duke@435: * duke@435: * The functions below follow the semantics of the duke@435: * ladd, land, ldiv, lmul, lor, lxor, and lrem bytecodes, duke@435: * respectively. duke@435: */ duke@435: duke@435: static jlong VMlongAdd(jlong op1, jlong op2); duke@435: static jlong VMlongAnd(jlong op1, jlong op2); duke@435: static jlong VMlongDiv(jlong op1, jlong op2); duke@435: static jlong VMlongMul(jlong op1, jlong op2); duke@435: static jlong VMlongOr (jlong op1, jlong op2); duke@435: static jlong VMlongSub(jlong op1, jlong op2); duke@435: static jlong VMlongXor(jlong op1, jlong op2); duke@435: static jlong VMlongRem(jlong op1, jlong op2); duke@435: duke@435: /* duke@435: * Shift: duke@435: * duke@435: * The functions below follow the semantics of the duke@435: * lushr, lshl, and lshr bytecodes, respectively. duke@435: */ duke@435: duke@435: static jlong VMlongUshr(jlong op1, jint op2); duke@435: static jlong VMlongShl (jlong op1, jint op2); duke@435: static jlong VMlongShr (jlong op1, jint op2); duke@435: duke@435: /* duke@435: * Unary: duke@435: * duke@435: * Return the negation of "op" (-op), according to duke@435: * the semantics of the lneg bytecode. duke@435: */ duke@435: duke@435: static jlong VMlongNeg(jlong op); duke@435: duke@435: /* duke@435: * Return the complement of "op" (~op) duke@435: */ duke@435: duke@435: static jlong VMlongNot(jlong op); duke@435: duke@435: duke@435: /* duke@435: * Comparisons to 0: duke@435: */ duke@435: duke@435: static int32_t VMlongLtz(jlong op); /* op <= 0 */ duke@435: static int32_t VMlongGez(jlong op); /* op >= 0 */ duke@435: static int32_t VMlongEqz(jlong op); /* op == 0 */ duke@435: duke@435: /* duke@435: * Between operands: duke@435: */ duke@435: duke@435: static int32_t VMlongEq(jlong op1, jlong op2); /* op1 == op2 */ duke@435: static int32_t VMlongNe(jlong op1, jlong op2); /* op1 != op2 */ duke@435: static int32_t VMlongGe(jlong op1, jlong op2); /* op1 >= op2 */ duke@435: static int32_t VMlongLe(jlong op1, jlong op2); /* op1 <= op2 */ duke@435: static int32_t VMlongLt(jlong op1, jlong op2); /* op1 < op2 */ duke@435: static int32_t VMlongGt(jlong op1, jlong op2); /* op1 > op2 */ duke@435: duke@435: /* duke@435: * Comparisons (returning an jint value: 0, 1, or -1) duke@435: * duke@435: * Between operands: duke@435: * duke@435: * Compare "op1" and "op2" according to the semantics of the duke@435: * "lcmp" bytecode. duke@435: */ duke@435: duke@435: static int32_t VMlongCompare(jlong op1, jlong op2); duke@435: duke@435: /* duke@435: * Convert int to long, according to "i2l" bytecode semantics duke@435: */ duke@435: static jlong VMint2Long(jint val); duke@435: duke@435: /* duke@435: * Convert long to int, according to "l2i" bytecode semantics duke@435: */ duke@435: static jint VMlong2Int(jlong val); duke@435: duke@435: /* duke@435: * Convert long to float, according to "l2f" bytecode semantics duke@435: */ duke@435: static jfloat VMlong2Float(jlong val); duke@435: duke@435: /* duke@435: * Convert long to double, according to "l2d" bytecode semantics duke@435: */ duke@435: static jdouble VMlong2Double(jlong val); duke@435: duke@435: /* duke@435: * Java floating-point float value manipulation. duke@435: * duke@435: * The result argument is, once again, an lvalue. duke@435: * duke@435: * Arithmetic: duke@435: * duke@435: * The functions below follow the semantics of the duke@435: * fadd, fsub, fmul, fdiv, and frem bytecodes, duke@435: * respectively. duke@435: */ duke@435: duke@435: static jfloat VMfloatAdd(jfloat op1, jfloat op2); duke@435: static jfloat VMfloatSub(jfloat op1, jfloat op2); duke@435: static jfloat VMfloatMul(jfloat op1, jfloat op2); duke@435: static jfloat VMfloatDiv(jfloat op1, jfloat op2); duke@435: static jfloat VMfloatRem(jfloat op1, jfloat op2); duke@435: duke@435: /* duke@435: * Unary: duke@435: * duke@435: * Return the negation of "op" (-op), according to duke@435: * the semantics of the fneg bytecode. duke@435: */ duke@435: duke@435: static jfloat VMfloatNeg(jfloat op); duke@435: duke@435: /* duke@435: * Comparisons (returning an int value: 0, 1, or -1) duke@435: * duke@435: * Between operands: duke@435: * duke@435: * Compare "op1" and "op2" according to the semantics of the duke@435: * "fcmpl" (direction is -1) or "fcmpg" (direction is 1) bytecodes. duke@435: */ duke@435: duke@435: static int32_t VMfloatCompare(jfloat op1, jfloat op2, duke@435: int32_t direction); duke@435: /* duke@435: * Conversion: duke@435: */ duke@435: duke@435: /* duke@435: * Convert float to double, according to "f2d" bytecode semantics duke@435: */ duke@435: duke@435: static jdouble VMfloat2Double(jfloat op); duke@435: duke@435: /* duke@435: ****************************************** duke@435: * Java double floating-point manipulation. duke@435: ****************************************** duke@435: * duke@435: * The result argument is, once again, an lvalue. duke@435: * duke@435: * Conversions: duke@435: */ duke@435: duke@435: /* duke@435: * Convert double to int, according to "d2i" bytecode semantics duke@435: */ duke@435: duke@435: static jint VMdouble2Int(jdouble val); duke@435: duke@435: /* duke@435: * Convert double to float, according to "d2f" bytecode semantics duke@435: */ duke@435: duke@435: static jfloat VMdouble2Float(jdouble val); duke@435: duke@435: /* duke@435: * Convert int to double, according to "i2d" bytecode semantics duke@435: */ duke@435: duke@435: static jdouble VMint2Double(jint val); duke@435: duke@435: /* duke@435: * Arithmetic: duke@435: * duke@435: * The functions below follow the semantics of the duke@435: * dadd, dsub, ddiv, dmul, and drem bytecodes, respectively. duke@435: */ duke@435: duke@435: static jdouble VMdoubleAdd(jdouble op1, jdouble op2); duke@435: static jdouble VMdoubleSub(jdouble op1, jdouble op2); duke@435: static jdouble VMdoubleDiv(jdouble op1, jdouble op2); duke@435: static jdouble VMdoubleMul(jdouble op1, jdouble op2); duke@435: static jdouble VMdoubleRem(jdouble op1, jdouble op2); duke@435: duke@435: /* duke@435: * Unary: duke@435: * duke@435: * Return the negation of "op" (-op), according to duke@435: * the semantics of the dneg bytecode. duke@435: */ duke@435: duke@435: static jdouble VMdoubleNeg(jdouble op); duke@435: duke@435: /* duke@435: * Comparisons (returning an int32_t value: 0, 1, or -1) duke@435: * duke@435: * Between operands: duke@435: * duke@435: * Compare "op1" and "op2" according to the semantics of the duke@435: * "dcmpl" (direction is -1) or "dcmpg" (direction is 1) bytecodes. duke@435: */ duke@435: duke@435: static int32_t VMdoubleCompare(jdouble op1, jdouble op2, int32_t direction); duke@435: duke@435: /* duke@435: * Copy two typeless 32-bit words from one location to another. duke@435: * This is semantically equivalent to: duke@435: * duke@435: * to[0] = from[0]; duke@435: * to[1] = from[1]; duke@435: * duke@435: * but this interface is provided for those platforms that could duke@435: * optimize this into a single 64-bit transfer. duke@435: */ duke@435: duke@435: static void VMmemCopy64(uint32_t to[2], const uint32_t from[2]); duke@435: duke@435: duke@435: // Arithmetic operations duke@435: duke@435: /* duke@435: * Java arithmetic methods. duke@435: * The functions below follow the semantics of the duke@435: * iadd, isub, imul, idiv, irem, iand, ior, ixor, duke@435: * and ineg bytecodes, respectively. duke@435: */ duke@435: duke@435: static jint VMintAdd(jint op1, jint op2); duke@435: static jint VMintSub(jint op1, jint op2); duke@435: static jint VMintMul(jint op1, jint op2); duke@435: static jint VMintDiv(jint op1, jint op2); duke@435: static jint VMintRem(jint op1, jint op2); duke@435: static jint VMintAnd(jint op1, jint op2); duke@435: static jint VMintOr (jint op1, jint op2); duke@435: static jint VMintXor(jint op1, jint op2); duke@435: duke@435: /* duke@435: * Shift Operation: duke@435: * The functions below follow the semantics of the duke@435: * iushr, ishl, and ishr bytecodes, respectively. duke@435: */ duke@435: bobv@2036: static juint VMintUshr(jint op, jint num); duke@435: static jint VMintShl (jint op, jint num); duke@435: static jint VMintShr (jint op, jint num); duke@435: duke@435: /* duke@435: * Unary Operation: duke@435: * duke@435: * Return the negation of "op" (-op), according to duke@435: * the semantics of the ineg bytecode. duke@435: */ duke@435: duke@435: static jint VMintNeg(jint op); duke@435: duke@435: /* duke@435: * Int Conversions: duke@435: */ duke@435: duke@435: /* duke@435: * Convert int to float, according to "i2f" bytecode semantics duke@435: */ duke@435: duke@435: static jfloat VMint2Float(jint val); duke@435: duke@435: /* duke@435: * Convert int to byte, according to "i2b" bytecode semantics duke@435: */ duke@435: duke@435: static jbyte VMint2Byte(jint val); duke@435: duke@435: /* duke@435: * Convert int to char, according to "i2c" bytecode semantics duke@435: */ duke@435: duke@435: static jchar VMint2Char(jint val); duke@435: duke@435: /* duke@435: * Convert int to short, according to "i2s" bytecode semantics duke@435: */ duke@435: duke@435: static jshort VMint2Short(jint val); duke@435: duke@435: /*========================================================================= duke@435: * Bytecode interpreter operations duke@435: *=======================================================================*/ duke@435: duke@435: static void dup(intptr_t *tos); duke@435: static void dup2(intptr_t *tos); duke@435: static void dup_x1(intptr_t *tos); /* insert top word two down */ duke@435: static void dup_x2(intptr_t *tos); /* insert top word three down */ duke@435: static void dup2_x1(intptr_t *tos); /* insert top 2 slots three down */ duke@435: static void dup2_x2(intptr_t *tos); /* insert top 2 slots four down */ duke@435: static void swap(intptr_t *tos); /* swap top two elements */ duke@435: duke@435: // umm don't like this method modifies its object duke@435: duke@435: // The Interpreter used when duke@435: static void run(interpreterState istate); duke@435: // The interpreter used if JVMTI needs interpreter events duke@435: static void runWithChecks(interpreterState istate); duke@435: static void End_Of_Interpreter(void); duke@435: duke@435: // Inline static functions for Java Stack and Local manipulation duke@435: duke@435: static address stack_slot(intptr_t *tos, int offset); duke@435: static jint stack_int(intptr_t *tos, int offset); duke@435: static jfloat stack_float(intptr_t *tos, int offset); duke@435: static oop stack_object(intptr_t *tos, int offset); duke@435: static jdouble stack_double(intptr_t *tos, int offset); duke@435: static jlong stack_long(intptr_t *tos, int offset); duke@435: duke@435: // only used for value types duke@435: static void set_stack_slot(intptr_t *tos, address value, int offset); duke@435: static void set_stack_int(intptr_t *tos, int value, int offset); duke@435: static void set_stack_float(intptr_t *tos, jfloat value, int offset); duke@435: static void set_stack_object(intptr_t *tos, oop value, int offset); duke@435: duke@435: // needs to be platform dep for the 32 bit platforms. duke@435: static void set_stack_double(intptr_t *tos, jdouble value, int offset); duke@435: static void set_stack_long(intptr_t *tos, jlong value, int offset); duke@435: duke@435: static void set_stack_double_from_addr(intptr_t *tos, address addr, int offset); duke@435: static void set_stack_long_from_addr(intptr_t *tos, address addr, int offset); duke@435: duke@435: // Locals duke@435: duke@435: static address locals_slot(intptr_t* locals, int offset); duke@435: static jint locals_int(intptr_t* locals, int offset); duke@435: static jfloat locals_float(intptr_t* locals, int offset); duke@435: static oop locals_object(intptr_t* locals, int offset); duke@435: static jdouble locals_double(intptr_t* locals, int offset); duke@435: static jlong locals_long(intptr_t* locals, int offset); duke@435: duke@435: static address locals_long_at(intptr_t* locals, int offset); duke@435: static address locals_double_at(intptr_t* locals, int offset); duke@435: duke@435: static void set_locals_slot(intptr_t *locals, address value, int offset); duke@435: static void set_locals_int(intptr_t *locals, jint value, int offset); duke@435: static void set_locals_float(intptr_t *locals, jfloat value, int offset); duke@435: static void set_locals_object(intptr_t *locals, oop value, int offset); duke@435: static void set_locals_double(intptr_t *locals, jdouble value, int offset); duke@435: static void set_locals_long(intptr_t *locals, jlong value, int offset); duke@435: static void set_locals_double_from_addr(intptr_t *locals, duke@435: address addr, int offset); duke@435: static void set_locals_long_from_addr(intptr_t *locals, duke@435: address addr, int offset); duke@435: duke@435: static void astore(intptr_t* topOfStack, int stack_offset, duke@435: intptr_t* locals, int locals_offset); duke@435: duke@435: // Support for dup and swap duke@435: static void copy_stack_slot(intptr_t *tos, int from_offset, int to_offset); duke@435: duke@435: #ifndef PRODUCT duke@435: static const char* C_msg(BytecodeInterpreter::messages msg); duke@435: void print(); duke@435: #endif // PRODUCT duke@435: duke@435: // Platform fields/methods stefank@2314: #ifdef TARGET_ARCH_x86 stefank@2314: # include "bytecodeInterpreter_x86.hpp" stefank@2314: #endif stefank@2314: #ifdef TARGET_ARCH_sparc stefank@2314: # include "bytecodeInterpreter_sparc.hpp" stefank@2314: #endif stefank@2314: #ifdef TARGET_ARCH_zero stefank@2314: # include "bytecodeInterpreter_zero.hpp" stefank@2314: #endif bobv@2508: #ifdef TARGET_ARCH_arm bobv@2508: # include "bytecodeInterpreter_arm.hpp" bobv@2508: #endif bobv@2508: #ifdef TARGET_ARCH_ppc bobv@2508: # include "bytecodeInterpreter_ppc.hpp" bobv@2508: #endif stefank@2314: duke@435: duke@435: }; // BytecodeInterpreter duke@435: duke@435: #endif // CC_INTERP stefank@2314: stefank@2314: #endif // SHARE_VM_INTERPRETER_BYTECODEINTERPRETER_HPP