src/share/vm/interpreter/interpreter.hpp

changeset 1
2d8a650513c2
parent 0
f90c822e73f8
child 6876
710a3c8b516e
equal deleted inserted replaced
0:f90c822e73f8 1:2d8a650513c2
18 * 18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 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 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 * 22 *
23 */
24
25 /*
26 * This file has been modified by Loongson Technology in 2015. These
27 * modifications are Copyright (c) 2015 Loongson Technology, and are made
28 * available on the same license terms set forth above.
23 */ 29 */
24 30
25 #ifndef SHARE_VM_INTERPRETER_INTERPRETER_HPP 31 #ifndef SHARE_VM_INTERPRETER_INTERPRETER_HPP
26 #define SHARE_VM_INTERPRETER_INTERPRETER_HPP 32 #define SHARE_VM_INTERPRETER_INTERPRETER_HPP
27 33
146 // Debugging/printing 152 // Debugging/printing
147 static InterpreterCodelet* codelet_containing(address pc) { return (InterpreterCodelet*)_code->stub_containing(pc); } 153 static InterpreterCodelet* codelet_containing(address pc) { return (InterpreterCodelet*)_code->stub_containing(pc); }
148 #ifdef TARGET_ARCH_x86 154 #ifdef TARGET_ARCH_x86
149 # include "interpreter_x86.hpp" 155 # include "interpreter_x86.hpp"
150 #endif 156 #endif
157 #ifdef TARGET_ARCH_mips
158 # include "interpreter_mips.hpp"
159 #endif
151 #ifdef TARGET_ARCH_sparc 160 #ifdef TARGET_ARCH_sparc
152 # include "interpreter_sparc.hpp" 161 # include "interpreter_sparc.hpp"
153 #endif 162 #endif
154 #ifdef TARGET_ARCH_zero 163 #ifdef TARGET_ARCH_zero
155 # include "interpreter_zero.hpp" 164 # include "interpreter_zero.hpp"

mercurial