comparison src/share/vm/runtime/deoptimization.cpp @ 2192:b92c45f2bc75

7016023: Enable building ARM and PPC from src/closed repository Reviewed-by: dholmes, bdelsart
author bobv
date Wed, 02 Feb 2011 11:35:26 -0500
parents 3582bf76420e
children 0cd39a385a72 4f148718983e
comparison
equal deleted inserted replaced
2177:3582bf76420e 2192:b92c45f2bc75
57 # include "vmreg_sparc.inline.hpp" 57 # include "vmreg_sparc.inline.hpp"
58 #endif 58 #endif
59 #ifdef TARGET_ARCH_zero 59 #ifdef TARGET_ARCH_zero
60 # include "vmreg_zero.inline.hpp" 60 # include "vmreg_zero.inline.hpp"
61 #endif 61 #endif
62 #ifdef TARGET_ARCH_arm
63 # include "vmreg_arm.inline.hpp"
64 #endif
65 #ifdef TARGET_ARCH_ppc
66 # include "vmreg_ppc.inline.hpp"
67 #endif
62 #ifdef COMPILER2 68 #ifdef COMPILER2
63 #ifdef TARGET_ARCH_MODEL_x86_32 69 #ifdef TARGET_ARCH_MODEL_x86_32
64 # include "adfiles/ad_x86_32.hpp" 70 # include "adfiles/ad_x86_32.hpp"
65 #endif 71 #endif
66 #ifdef TARGET_ARCH_MODEL_x86_64 72 #ifdef TARGET_ARCH_MODEL_x86_64
69 #ifdef TARGET_ARCH_MODEL_sparc 75 #ifdef TARGET_ARCH_MODEL_sparc
70 # include "adfiles/ad_sparc.hpp" 76 # include "adfiles/ad_sparc.hpp"
71 #endif 77 #endif
72 #ifdef TARGET_ARCH_MODEL_zero 78 #ifdef TARGET_ARCH_MODEL_zero
73 # include "adfiles/ad_zero.hpp" 79 # include "adfiles/ad_zero.hpp"
80 #endif
81 #ifdef TARGET_ARCH_MODEL_arm
82 # include "adfiles/ad_arm.hpp"
83 #endif
84 #ifdef TARGET_ARCH_MODEL_ppc
85 # include "adfiles/ad_ppc.hpp"
74 #endif 86 #endif
75 #endif 87 #endif
76 88
77 bool DeoptimizationMarker::_is_active = false; 89 bool DeoptimizationMarker::_is_active = false;
78 90