comparison src/share/vm/code/relocInfo.cpp @ 7199:cd3d6a6b95d9

8003240: x86: move MacroAssembler into separate file Reviewed-by: kvn
author twisti
date Fri, 30 Nov 2012 15:23:16 -0800
parents da91efe96a93
children 7875ea94bea5
comparison
equal deleted inserted replaced
7198:6ab62ad83507 7199:cd3d6a6b95d9
21 * questions. 21 * questions.
22 * 22 *
23 */ 23 */
24 24
25 #include "precompiled.hpp" 25 #include "precompiled.hpp"
26 #include "code/codeCache.hpp"
26 #include "code/compiledIC.hpp" 27 #include "code/compiledIC.hpp"
27 #include "code/nmethod.hpp" 28 #include "code/nmethod.hpp"
28 #include "code/relocInfo.hpp" 29 #include "code/relocInfo.hpp"
29 #include "memory/resourceArea.hpp" 30 #include "memory/resourceArea.hpp"
30 #include "runtime/stubCodeGenerator.hpp" 31 #include "runtime/stubCodeGenerator.hpp"
31 #include "utilities/copy.hpp" 32 #include "utilities/copy.hpp"
32 #ifdef TARGET_ARCH_x86
33 # include "assembler_x86.inline.hpp"
34 # include "nativeInst_x86.hpp"
35 #endif
36 #ifdef TARGET_ARCH_sparc
37 # include "assembler_sparc.inline.hpp"
38 # include "nativeInst_sparc.hpp"
39 #endif
40 #ifdef TARGET_ARCH_zero
41 # include "assembler_zero.inline.hpp"
42 # include "nativeInst_zero.hpp"
43 #endif
44 #ifdef TARGET_ARCH_arm
45 # include "assembler_arm.inline.hpp"
46 # include "nativeInst_arm.hpp"
47 #endif
48 #ifdef TARGET_ARCH_ppc
49 # include "assembler_ppc.inline.hpp"
50 # include "nativeInst_ppc.hpp"
51 #endif
52 33
53 34
54 const RelocationHolder RelocationHolder::none; // its type is relocInfo::none 35 const RelocationHolder RelocationHolder::none; // its type is relocInfo::none
55 36
56 37