src/share/vm/runtime/deoptimization.cpp

changeset 9448
73d689add964
parent 9327
f96fcd9e1e1b
parent 8604
04d83ba48607
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 "code/debugInfoRec.hpp" 33 #include "code/debugInfoRec.hpp"
63 # include "vmreg_arm.inline.hpp" 69 # include "vmreg_arm.inline.hpp"
64 #endif 70 #endif
65 #ifdef TARGET_ARCH_ppc 71 #ifdef TARGET_ARCH_ppc
66 # include "vmreg_ppc.inline.hpp" 72 # include "vmreg_ppc.inline.hpp"
67 #endif 73 #endif
74 #ifdef TARGET_ARCH_mips
75 # include "vmreg_mips.inline.hpp"
76 #endif
68 #ifdef COMPILER2 77 #ifdef COMPILER2
69 #if defined AD_MD_HPP 78 #if defined AD_MD_HPP
70 # include AD_MD_HPP 79 # include AD_MD_HPP
71 #elif defined TARGET_ARCH_MODEL_x86_32 80 #elif defined TARGET_ARCH_MODEL_x86_32
72 # include "adfiles/ad_x86_32.hpp" 81 # include "adfiles/ad_x86_32.hpp"
76 # include "adfiles/ad_sparc.hpp" 85 # include "adfiles/ad_sparc.hpp"
77 #elif defined TARGET_ARCH_MODEL_zero 86 #elif defined TARGET_ARCH_MODEL_zero
78 # include "adfiles/ad_zero.hpp" 87 # include "adfiles/ad_zero.hpp"
79 #elif defined TARGET_ARCH_MODEL_ppc_64 88 #elif defined TARGET_ARCH_MODEL_ppc_64
80 # include "adfiles/ad_ppc_64.hpp" 89 # include "adfiles/ad_ppc_64.hpp"
90 #endif
91 #ifdef TARGET_ARCH_MODEL_mips_64
92 # include "adfiles/ad_mips_64.hpp"
81 #endif 93 #endif
82 #endif // COMPILER2 94 #endif // COMPILER2
83 95
84 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC 96 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
85 97

mercurial