src/share/vm/interpreter/bytecodeInterpreter.hpp

changeset 6876
710a3c8b516e
parent 6450
bfd9d884693d
parent 1
2d8a650513c2
equal deleted inserted replaced
6875:28b50d07f6f8 6876:710a3c8b516e
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_BYTECODEINTERPRETER_HPP 31 #ifndef SHARE_VM_INTERPRETER_BYTECODEINTERPRETER_HPP
26 #define SHARE_VM_INTERPRETER_BYTECODEINTERPRETER_HPP 32 #define SHARE_VM_INTERPRETER_BYTECODEINTERPRETER_HPP
27 33
32 #include "runtime/frame.hpp" 38 #include "runtime/frame.hpp"
33 #include "runtime/globals.hpp" 39 #include "runtime/globals.hpp"
34 #include "utilities/globalDefinitions.hpp" 40 #include "utilities/globalDefinitions.hpp"
35 #ifdef TARGET_ARCH_x86 41 #ifdef TARGET_ARCH_x86
36 # include "bytes_x86.hpp" 42 # include "bytes_x86.hpp"
43 #endif
44 #ifdef TARGET_ARCH_mips
45 # include "bytes_mips.hpp"
37 #endif 46 #endif
38 #ifdef TARGET_ARCH_sparc 47 #ifdef TARGET_ARCH_sparc
39 # include "bytes_sparc.hpp" 48 # include "bytes_sparc.hpp"
40 #endif 49 #endif
41 #ifdef TARGET_ARCH_zero 50 #ifdef TARGET_ARCH_zero
587 596
588 // Platform fields/methods 597 // Platform fields/methods
589 #ifdef TARGET_ARCH_x86 598 #ifdef TARGET_ARCH_x86
590 # include "bytecodeInterpreter_x86.hpp" 599 # include "bytecodeInterpreter_x86.hpp"
591 #endif 600 #endif
601 #ifdef TARGET_ARCH_mips
602 # include "bytecodeInterpreter_mips.hpp"
603 #endif
592 #ifdef TARGET_ARCH_sparc 604 #ifdef TARGET_ARCH_sparc
593 # include "bytecodeInterpreter_sparc.hpp" 605 # include "bytecodeInterpreter_sparc.hpp"
594 #endif 606 #endif
595 #ifdef TARGET_ARCH_zero 607 #ifdef TARGET_ARCH_zero
596 # include "bytecodeInterpreter_zero.hpp" 608 # include "bytecodeInterpreter_zero.hpp"

mercurial