comparison src/cpu/sparc/vm/interp_masm_sparc.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 d5d065957597
children dd031b2226de
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_SPARC_VM_INTERP_MASM_SPARC_HPP
26 #define CPU_SPARC_VM_INTERP_MASM_SPARC_HPP
27
28 #include "assembler_sparc.inline.hpp"
29 #include "interpreter/invocationCounter.hpp"
24 30
25 // This file specializes the assember with interpreter-specific macros 31 // This file specializes the assember with interpreter-specific macros
26 32
27 REGISTER_DECLARATION( Register, Otos_i , O0); // tos for ints, etc 33 REGISTER_DECLARATION( Register, Otos_i , O0); // tos for ints, etc
28 REGISTER_DECLARATION( Register, Otos_l , O0); // for longs 34 REGISTER_DECLARATION( Register, Otos_l , O0); // for longs
325 331
326 void save_return_value(TosState state, bool is_native_call); 332 void save_return_value(TosState state, bool is_native_call);
327 void restore_return_value(TosState state, bool is_native_call); 333 void restore_return_value(TosState state, bool is_native_call);
328 334
329 }; 335 };
336
337 #endif // CPU_SPARC_VM_INTERP_MASM_SPARC_HPP