src/share/vm/c1/c1_LinearScan.hpp

Print this page
rev 7258 : 8064611: AARCH64: Changes to HotSpot shared code
Summary: Everything except cpu/ and os_cpu/.
Reviewed-by: kvn


 968   elapsedTimer* timer(int idx) { return &(_timers[idx]); }
 969 };
 970 
 971 
 972 #endif // ifndef PRODUCT
 973 
 974 
 975 // Pick up platform-dependent implementation details
 976 #ifdef TARGET_ARCH_x86
 977 # include "c1_LinearScan_x86.hpp"
 978 #endif
 979 #ifdef TARGET_ARCH_sparc
 980 # include "c1_LinearScan_sparc.hpp"
 981 #endif
 982 #ifdef TARGET_ARCH_arm
 983 # include "c1_LinearScan_arm.hpp"
 984 #endif
 985 #ifdef TARGET_ARCH_ppc
 986 # include "c1_LinearScan_ppc.hpp"
 987 #endif



 988 
 989 
 990 #endif // SHARE_VM_C1_C1_LINEARSCAN_HPP


 968   elapsedTimer* timer(int idx) { return &(_timers[idx]); }
 969 };
 970 
 971 
 972 #endif // ifndef PRODUCT
 973 
 974 
 975 // Pick up platform-dependent implementation details
 976 #ifdef TARGET_ARCH_x86
 977 # include "c1_LinearScan_x86.hpp"
 978 #endif
 979 #ifdef TARGET_ARCH_sparc
 980 # include "c1_LinearScan_sparc.hpp"
 981 #endif
 982 #ifdef TARGET_ARCH_arm
 983 # include "c1_LinearScan_arm.hpp"
 984 #endif
 985 #ifdef TARGET_ARCH_ppc
 986 # include "c1_LinearScan_ppc.hpp"
 987 #endif
 988 #ifdef TARGET_ARCH_aarch64
 989 # include "c1_LinearScan_aarch64.hpp"
 990 #endif
 991 
 992 
 993 #endif // SHARE_VM_C1_C1_LINEARSCAN_HPP