src/share/vm/interpreter/interpreterRuntime.cpp

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 #include "precompiled.hpp" 31 #include "precompiled.hpp"
26 #include "classfile/systemDictionary.hpp" 32 #include "classfile/systemDictionary.hpp"
27 #include "classfile/vmSymbols.hpp" 33 #include "classfile/vmSymbols.hpp"
56 #include "runtime/synchronizer.hpp" 62 #include "runtime/synchronizer.hpp"
57 #include "runtime/threadCritical.hpp" 63 #include "runtime/threadCritical.hpp"
58 #include "utilities/events.hpp" 64 #include "utilities/events.hpp"
59 #ifdef TARGET_ARCH_x86 65 #ifdef TARGET_ARCH_x86
60 # include "vm_version_x86.hpp" 66 # include "vm_version_x86.hpp"
67 #endif
68 #ifdef TARGET_ARCH_mips
69 # include "vm_version_mips.hpp"
61 #endif 70 #endif
62 #ifdef TARGET_ARCH_sparc 71 #ifdef TARGET_ARCH_sparc
63 # include "vm_version_sparc.hpp" 72 # include "vm_version_sparc.hpp"
64 #endif 73 #endif
65 #ifdef TARGET_ARCH_zero 74 #ifdef TARGET_ARCH_zero
1243 // before trying to fetch the native entry point and klass mirror. 1252 // before trying to fetch the native entry point and klass mirror.
1244 // We must set the signature handler last, so that multiple processors 1253 // We must set the signature handler last, so that multiple processors
1245 // preparing the same method will be sure to see non-null entry & mirror. 1254 // preparing the same method will be sure to see non-null entry & mirror.
1246 IRT_END 1255 IRT_END
1247 1256
1248 #if defined(IA32) || defined(AMD64) || defined(ARM) 1257 #if defined(IA32) || defined(AMD64) || defined(ARM) || defined(MIPS64)
1249 IRT_LEAF(void, InterpreterRuntime::popframe_move_outgoing_args(JavaThread* thread, void* src_address, void* dest_address)) 1258 IRT_LEAF(void, InterpreterRuntime::popframe_move_outgoing_args(JavaThread* thread, void* src_address, void* dest_address))
1250 if (src_address == dest_address) { 1259 if (src_address == dest_address) {
1251 return; 1260 return;
1252 } 1261 }
1253 ResetNoHandleMark rnm; // In a LEAF entry. 1262 ResetNoHandleMark rnm; // In a LEAF entry.

mercurial