comparison src/share/vm/interpreter/templateTable.hpp @ 14456:abec000618bf

Merge
author kvn
date Tue, 28 Jan 2014 12:25:34 -0800
parents de6a9e811145 2b8e28fdf503
children 58cf34613a72 4ca6dc0799b6
comparison
equal deleted inserted replaced
14269:2a8891e0a082 14456:abec000618bf
38 # include "interp_masm_zero.hpp" 38 # include "interp_masm_zero.hpp"
39 #endif 39 #endif
40 #ifdef TARGET_ARCH_MODEL_arm 40 #ifdef TARGET_ARCH_MODEL_arm
41 # include "interp_masm_arm.hpp" 41 # include "interp_masm_arm.hpp"
42 #endif 42 #endif
43 #ifdef TARGET_ARCH_MODEL_ppc 43 #ifdef TARGET_ARCH_MODEL_ppc_32
44 # include "interp_masm_ppc.hpp" 44 # include "interp_masm_ppc_32.hpp"
45 #endif
46 #ifdef TARGET_ARCH_MODEL_ppc_64
47 # include "interp_masm_ppc_64.hpp"
45 #endif 48 #endif
46 49
47 #ifndef CC_INTERP 50 #ifndef CC_INTERP
48 // All the necessary definitions used for (bytecode) template generation. Instead of 51 // All the necessary definitions used for (bytecode) template generation. Instead of
49 // spreading the implementation functionality for each bytecode in the interpreter 52 // spreading the implementation functionality for each bytecode in the interpreter
368 # include "templateTable_zero.hpp" 371 # include "templateTable_zero.hpp"
369 #endif 372 #endif
370 #ifdef TARGET_ARCH_MODEL_arm 373 #ifdef TARGET_ARCH_MODEL_arm
371 # include "templateTable_arm.hpp" 374 # include "templateTable_arm.hpp"
372 #endif 375 #endif
373 #ifdef TARGET_ARCH_MODEL_ppc 376 #ifdef TARGET_ARCH_MODEL_ppc_32
374 # include "templateTable_ppc.hpp" 377 # include "templateTable_ppc_32.hpp"
375 #endif 378 #endif
376 379
377 }; 380 };
378 #endif /* !CC_INTERP */ 381 #endif /* !CC_INTERP */
379 382