comparison src/cpu/x86/vm/bytecodeInterpreter_x86.cpp @ 12962:5ccbab1c69f3

8026251: New type profiling points: parameters to methods Summary: x86 interpreter and c1 type profiling for parameters on method entries Reviewed-by: kvn, twisti
author roland
date Tue, 22 Oct 2013 09:51:47 +0200
parents da91efe96a93
children de6a9e811145
comparison
equal deleted inserted replaced
12961:4748b3308cda 12962:5ccbab1c69f3
38 #include "runtime/sharedRuntime.hpp" 38 #include "runtime/sharedRuntime.hpp"
39 #include "runtime/stubRoutines.hpp" 39 #include "runtime/stubRoutines.hpp"
40 #include "runtime/synchronizer.hpp" 40 #include "runtime/synchronizer.hpp"
41 #include "runtime/vframeArray.hpp" 41 #include "runtime/vframeArray.hpp"
42 #include "utilities/debug.hpp" 42 #include "utilities/debug.hpp"
43 #ifdef TARGET_ARCH_MODEL_x86_32 43 #ifdef TARGET_ARCH_x86
44 # include "interp_masm_x86_32.hpp" 44 # include "interp_masm_x86.hpp"
45 #endif
46 #ifdef TARGET_ARCH_MODEL_x86_64
47 # include "interp_masm_x86_64.hpp"
48 #endif 45 #endif
49 46
50 #ifdef CC_INTERP 47 #ifdef CC_INTERP
51 48
52 #endif // CC_INTERP (all) 49 #endif // CC_INTERP (all)