comparison src/share/vm/c1/c1_LIRAssembler.hpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents 3a294e483abc
children ac637b7220d1
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
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 */ 23 */
24
25 #ifndef SHARE_VM_C1_C1_LIRASSEMBLER_HPP
26 #define SHARE_VM_C1_C1_LIRASSEMBLER_HPP
27
28 #include "c1/c1_CodeStubs.hpp"
29 #include "ci/ciMethodData.hpp"
30 #include "oops/methodDataOop.hpp"
31 #include "utilities/top.hpp"
24 32
25 class Compilation; 33 class Compilation;
26 class ScopeValue; 34 class ScopeValue;
27 class BarrierSet; 35 class BarrierSet;
28 36
234 void membar_release(); 242 void membar_release();
235 void get_thread(LIR_Opr result); 243 void get_thread(LIR_Opr result);
236 244
237 void verify_oop_map(CodeEmitInfo* info); 245 void verify_oop_map(CodeEmitInfo* info);
238 246
239 #include "incls/_c1_LIRAssembler_pd.hpp.incl" 247 #ifdef TARGET_ARCH_x86
248 # include "c1_LIRAssembler_x86.hpp"
249 #endif
250 #ifdef TARGET_ARCH_sparc
251 # include "c1_LIRAssembler_sparc.hpp"
252 #endif
253
240 }; 254 };
255
256 #endif // SHARE_VM_C1_C1_LIRASSEMBLER_HPP