comparison src/share/vm/interpreter/templateTable.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 da91efe96a93
children 2b8e28fdf503
comparison
equal deleted inserted replaced
14390:0f03ff49c720 14391:d2907f74462e
41 # include "interp_masm_zero.hpp" 41 # include "interp_masm_zero.hpp"
42 #endif 42 #endif
43 #ifdef TARGET_ARCH_MODEL_arm 43 #ifdef TARGET_ARCH_MODEL_arm
44 # include "interp_masm_arm.hpp" 44 # include "interp_masm_arm.hpp"
45 #endif 45 #endif
46 #ifdef TARGET_ARCH_MODEL_ppc 46 #ifdef TARGET_ARCH_MODEL_ppc_32
47 # include "interp_masm_ppc.hpp" 47 # include "interp_masm_ppc_32.hpp"
48 #endif
49 #ifdef TARGET_ARCH_MODEL_ppc_64
50 # include "interp_masm_ppc_64.hpp"
48 #endif 51 #endif
49 52
50 #ifndef CC_INTERP 53 #ifndef CC_INTERP
51 // All the necessary definitions used for (bytecode) template generation. Instead of 54 // All the necessary definitions used for (bytecode) template generation. Instead of
52 // spreading the implementation functionality for each bytecode in the interpreter 55 // spreading the implementation functionality for each bytecode in the interpreter
371 # include "templateTable_zero.hpp" 374 # include "templateTable_zero.hpp"
372 #endif 375 #endif
373 #ifdef TARGET_ARCH_MODEL_arm 376 #ifdef TARGET_ARCH_MODEL_arm
374 # include "templateTable_arm.hpp" 377 # include "templateTable_arm.hpp"
375 #endif 378 #endif
376 #ifdef TARGET_ARCH_MODEL_ppc 379 #ifdef TARGET_ARCH_MODEL_ppc_32
377 # include "templateTable_ppc.hpp" 380 # include "templateTable_ppc_32.hpp"
378 #endif 381 #endif
379 382
380 }; 383 };
381 #endif /* !CC_INTERP */ 384 #endif /* !CC_INTERP */
382 385