comparison src/share/vm/interpreter/abstractInterpreter.hpp @ 14391:d2907f74462e

8016586: PPC64 (part 3): basic changes for PPC64 Summary: added #includes needed for ppc64 port. Renamed _MODEL_ppc to _MODEL_ppc_32 and renamed corresponding old _ppc files to _ppc_32. Reviewed-by: dholmes, kvn
author goetz
date Thu, 20 Jun 2013 16:30:44 -0700
parents 0094485b46c7
children 6cc7093e1341
comparison
equal deleted inserted replaced
14390:0f03ff49c720 14391:d2907f74462e
43 # include "interp_masm_zero.hpp" 43 # include "interp_masm_zero.hpp"
44 #endif 44 #endif
45 #ifdef TARGET_ARCH_MODEL_arm 45 #ifdef TARGET_ARCH_MODEL_arm
46 # include "interp_masm_arm.hpp" 46 # include "interp_masm_arm.hpp"
47 #endif 47 #endif
48 #ifdef TARGET_ARCH_MODEL_ppc 48 #ifdef TARGET_ARCH_MODEL_ppc_32
49 # include "interp_masm_ppc.hpp" 49 # include "interp_masm_ppc_32.hpp"
50 #endif
51 #ifdef TARGET_ARCH_MODEL_ppc_64
52 # include "interp_masm_ppc_64.hpp"
50 #endif 53 #endif
51 54
52 // This file contains the platform-independent parts 55 // This file contains the platform-independent parts
53 // of the abstract interpreter and the abstract interpreter generator. 56 // of the abstract interpreter and the abstract interpreter generator.
54 57