comparison src/cpu/x86/vm/interp_masm_x86_64.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 2e038ad0c1d0
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_INTERP_MASM_X86_64_HPP
26 #define CPU_X86_VM_INTERP_MASM_X86_64_HPP
27
28 #include "assembler_x86.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 33
28 class InterpreterMacroAssembler: public MacroAssembler { 34 class InterpreterMacroAssembler: public MacroAssembler {
241 247
242 // support for jvmti/dtrace 248 // support for jvmti/dtrace
243 void notify_method_entry(); 249 void notify_method_entry();
244 void notify_method_exit(TosState state, NotifyMethodExitMode mode); 250 void notify_method_exit(TosState state, NotifyMethodExitMode mode);
245 }; 251 };
252
253 #endif // CPU_X86_VM_INTERP_MASM_X86_64_HPP