src/share/vm/interpreter/interpreterRuntime.cpp

changeset 9448
73d689add964
parent 9301
d47844b56aaf
parent 9138
b56ab8e56604
child 10015
eb7ce841ccec
equal deleted inserted replaced
9447:1f822ff877d1 9448:73d689add964
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
1275 // before trying to fetch the native entry point and klass mirror. 1284 // before trying to fetch the native entry point and klass mirror.
1276 // We must set the signature handler last, so that multiple processors 1285 // We must set the signature handler last, so that multiple processors
1277 // preparing the same method will be sure to see non-null entry & mirror. 1286 // preparing the same method will be sure to see non-null entry & mirror.
1278 IRT_END 1287 IRT_END
1279 1288
1280 #if defined(IA32) || defined(AMD64) || defined(ARM) 1289 #if defined(IA32) || defined(AMD64) || defined(ARM) || defined(MIPS)
1281 IRT_LEAF(void, InterpreterRuntime::popframe_move_outgoing_args(JavaThread* thread, void* src_address, void* dest_address)) 1290 IRT_LEAF(void, InterpreterRuntime::popframe_move_outgoing_args(JavaThread* thread, void* src_address, void* dest_address))
1282 if (src_address == dest_address) { 1291 if (src_address == dest_address) {
1283 return; 1292 return;
1284 } 1293 }
1285 ResetNoHandleMark rnm; // In a LEAF entry. 1294 ResetNoHandleMark rnm; // In a LEAF entry.

mercurial