7061187: need some includes for arm/ppc
Reviewed-by: dholmes, never, jwilhelm, kvn
This commit is contained in:
parent
ce3ae66eeb
commit
07d5e13794
@ -45,6 +45,9 @@
|
||||
#ifdef TARGET_ARCH_MODEL_arm
|
||||
# include "adfiles/ad_arm.hpp"
|
||||
#endif
|
||||
#ifdef TARGET_ARCH_MODEL_ppc
|
||||
# include "adfiles/ad_ppc.hpp"
|
||||
#endif
|
||||
|
||||
// Optimization - Graph Style
|
||||
|
||||
|
@ -52,6 +52,9 @@
|
||||
#ifdef TARGET_ARCH_MODEL_arm
|
||||
# include "adfiles/ad_arm.hpp"
|
||||
#endif
|
||||
#ifdef TARGET_ARCH_MODEL_ppc
|
||||
# include "adfiles/ad_ppc.hpp"
|
||||
#endif
|
||||
|
||||
OptoReg::Name OptoReg::c_frame_pointer;
|
||||
|
||||
|
@ -51,6 +51,12 @@
|
||||
#ifdef TARGET_OS_ARCH_windows_x86
|
||||
# include "atomic_windows_x86.inline.hpp"
|
||||
#endif
|
||||
#ifdef TARGET_OS_ARCH_linux_arm
|
||||
# include "atomic_linux_arm.inline.hpp"
|
||||
#endif
|
||||
#ifdef TARGET_OS_ARCH_linux_ppc
|
||||
# include "atomic_linux_ppc.inline.hpp"
|
||||
#endif
|
||||
|
||||
jbyte Atomic::cmpxchg(jbyte exchange_value, volatile jbyte* dest, jbyte compare_value) {
|
||||
assert(sizeof(jbyte) == 1, "assumption.");
|
||||
|
Loading…
x
Reference in New Issue
Block a user