comparison src/cpu/x86/vm/c1_FrameMap_x86.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 e9ff18c4ace7
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 CPU_X86_VM_C1_FRAMEMAP_X86_HPP
26 #define CPU_X86_VM_C1_FRAMEMAP_X86_HPP
24 27
25 // On i486 the frame looks as follows: 28 // On i486 the frame looks as follows:
26 // 29 //
27 // +-----------------------------+---------+----------------------------------------+----------------+----------- 30 // +-----------------------------+---------+----------------------------------------+----------------+-----------
28 // | size_arguments-nof_reg_args | 2 words | size_locals-size_arguments+numreg_args | _size_monitors | spilling . 31 // | size_arguments-nof_reg_args | 2 words | size_locals-size_arguments+numreg_args | _size_monitors | spilling .
124 127
125 static LIR_Opr caller_save_xmm_reg_at(int i) { 128 static LIR_Opr caller_save_xmm_reg_at(int i) {
126 assert(i >= 0 && i < nof_caller_save_xmm_regs, "out of bounds"); 129 assert(i >= 0 && i < nof_caller_save_xmm_regs, "out of bounds");
127 return _caller_save_xmm_regs[i]; 130 return _caller_save_xmm_regs[i];
128 } 131 }
132
133 #endif // CPU_X86_VM_C1_FRAMEMAP_X86_HPP