comparison src/cpu/x86/vm/frame_x86.inline.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 3e8fbc61cee8
children 167b70ff3abc
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_FRAME_X86_INLINE_HPP
26 #define CPU_X86_VM_FRAME_X86_INLINE_HPP
24 27
25 // Inline functions for Intel frames: 28 // Inline functions for Intel frames:
26 29
27 // Constructors: 30 // Constructors:
28 31
294 } 297 }
295 298
296 inline void frame::set_saved_oop_result(RegisterMap* map, oop obj) { 299 inline void frame::set_saved_oop_result(RegisterMap* map, oop obj) {
297 *((oop*) map->location(rax->as_VMReg())) = obj; 300 *((oop*) map->location(rax->as_VMReg())) = obj;
298 } 301 }
302
303 #endif // CPU_X86_VM_FRAME_X86_INLINE_HPP