comparison src/share/vm/c1/c1_FrameMap.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 126ea7725993
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_FRAMEMAP_HPP
26 #define SHARE_VM_C1_C1_FRAMEMAP_HPP
27
28 #include "asm/assembler.hpp"
29 #include "c1/c1_Defs.hpp"
30 #include "c1/c1_LIR.hpp"
31 #include "code/vmreg.hpp"
32 #include "memory/allocation.hpp"
33 #include "runtime/frame.hpp"
34 #include "runtime/synchronizer.hpp"
35 #include "utilities/globalDefinitions.hpp"
24 36
25 class ciMethod; 37 class ciMethod;
26 class CallingConvention; 38 class CallingConvention;
27 class BasicTypeArray; 39 class BasicTypeArray;
28 class BasicTypeList; 40 class BasicTypeList;
68 nof_caller_save_fpu_regs = pd_nof_caller_save_fpu_regs_frame_map, 80 nof_caller_save_fpu_regs = pd_nof_caller_save_fpu_regs_frame_map,
69 81
70 spill_slot_size_in_bytes = 4 82 spill_slot_size_in_bytes = 4
71 }; 83 };
72 84
73 # include "incls/_c1_FrameMap_pd.hpp.incl" // platform dependent declarations 85 #ifdef TARGET_ARCH_x86
86 # include "c1_FrameMap_x86.hpp"
87 #endif
88 #ifdef TARGET_ARCH_sparc
89 # include "c1_FrameMap_sparc.hpp"
90 #endif
91
74 92
75 friend class LIR_OprDesc; 93 friend class LIR_OprDesc;
76 94
77 private: 95 private:
78 static bool _init_done; 96 static bool _init_done;
264 at(i)->print(); 282 at(i)->print();
265 } 283 }
266 } 284 }
267 #endif // PRODUCT 285 #endif // PRODUCT
268 }; 286 };
287
288 #endif // SHARE_VM_C1_C1_FRAMEMAP_HPP