comparison src/share/vm/graal/graalCodeInstaller.hpp @ 15123:7ccd2a1df0fa

made SPARC compile again; moved graalCodeInstaller_<arch>.hpp to .cpp files
author twisti
date Tue, 15 Apr 2014 12:01:51 -1000
parents 5c71dcf0915d
children a2ec1ac769e4
comparison
equal deleted inserted replaced
15122:11a591a99515 15123:7ccd2a1df0fa
128 /** 128 /**
129 * Gets the Method metaspace object from a HotSpotResolvedJavaMethod Java object. 129 * Gets the Method metaspace object from a HotSpotResolvedJavaMethod Java object.
130 */ 130 */
131 Method* getMethodFromHotSpotMethod(oop hotspot_method); 131 Method* getMethodFromHotSpotMethod(oop hotspot_method);
132 132
133 #ifdef TARGET_ARCH_x86
134 # include "graalCodeInstaller_x86.hpp"
135 #endif
136 #ifdef TARGET_ARCH_sparc
137 # include "graalCodeInstaller_sparc.hpp"
138 #endif
139 #ifdef TARGET_ARCH_zero
140 # error
141 #endif
142 #ifdef TARGET_ARCH_arm
143 # error
144 #endif
145 #ifdef TARGET_ARCH_ppc
146 # error
147 #endif
148
149 #endif // SHARE_VM_GRAAL_GRAAL_CODE_INSTALLER_HPP 133 #endif // SHARE_VM_GRAAL_GRAAL_CODE_INSTALLER_HPP