提交 5f92a492 编写于 作者: G goetz

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
上级 d11fa79d
...@@ -80,7 +80,7 @@ combination of ptrace and /proc calls. ...@@ -80,7 +80,7 @@ combination of ptrace and /proc calls.
*************************************************************************************/ *************************************************************************************/
#if defined(sparc) || defined(sparcv9) #if defined(sparc) || defined(sparcv9) || defined(ppc64)
#define user_regs_struct pt_regs #define user_regs_struct pt_regs
#endif #endif
......
...@@ -2,11 +2,11 @@ os_family = linux ...@@ -2,11 +2,11 @@ os_family = linux
arch = ppc arch = ppc
arch_model = ppc arch_model = ppc_32
os_arch = linux_ppc os_arch = linux_ppc
os_arch_model = linux_ppc os_arch_model = linux_ppc_32
lib_arch = ppc lib_arch = ppc
......
...@@ -132,7 +132,7 @@ static int clock_tics_per_sec = 100; ...@@ -132,7 +132,7 @@ static int clock_tics_per_sec = 100;
// For diagnostics to print a message once. see run_periodic_checks // For diagnostics to print a message once. see run_periodic_checks
static sigset_t check_signal_done; static sigset_t check_signal_done;
static bool check_signals = true;; static bool check_signals = true;
static pid_t _initial_pid = 0; static pid_t _initial_pid = 0;
...@@ -249,6 +249,8 @@ static char cpu_arch[] = "amd64"; ...@@ -249,6 +249,8 @@ static char cpu_arch[] = "amd64";
static char cpu_arch[] = "arm"; static char cpu_arch[] = "arm";
#elif defined(PPC32) #elif defined(PPC32)
static char cpu_arch[] = "ppc"; static char cpu_arch[] = "ppc";
#elif defined(PPC64)
static char cpu_arch[] = "ppc64";
#elif defined(SPARC) #elif defined(SPARC)
# ifdef _LP64 # ifdef _LP64
static char cpu_arch[] = "sparcv9"; static char cpu_arch[] = "sparcv9";
...@@ -4402,7 +4404,7 @@ jint os::init_2(void) ...@@ -4402,7 +4404,7 @@ jint os::init_2(void)
// the future if the appropriate cleanup code can be added to the // the future if the appropriate cleanup code can be added to the
// VM_Exit VMOperation's doit method. // VM_Exit VMOperation's doit method.
if (atexit(perfMemory_exit_helper) != 0) { if (atexit(perfMemory_exit_helper) != 0) {
warning("os::init2 atexit(perfMemory_exit_helper) failed"); warning("os::init_2 atexit(perfMemory_exit_helper) failed");
} }
} }
...@@ -4413,8 +4415,7 @@ jint os::init_2(void) ...@@ -4413,8 +4415,7 @@ jint os::init_2(void)
} }
// this is called at the end of vm_initialization // this is called at the end of vm_initialization
void os::init_3(void) void os::init_3(void) {
{
#ifdef JAVASE_EMBEDDED #ifdef JAVASE_EMBEDDED
// Start the MemNotifyThread // Start the MemNotifyThread
if (LowMemoryProtection) { if (LowMemoryProtection) {
......
...@@ -242,6 +242,11 @@ int main(int argc, char *argv[]) ...@@ -242,6 +242,11 @@ int main(int argc, char *argv[])
#ifdef TARGET_ARCH_arm #ifdef TARGET_ARCH_arm
AD.addInclude(AD._CPP_file, "nativeInst_arm.hpp"); AD.addInclude(AD._CPP_file, "nativeInst_arm.hpp");
AD.addInclude(AD._CPP_file, "vmreg_arm.inline.hpp"); AD.addInclude(AD._CPP_file, "vmreg_arm.inline.hpp");
#endif
#ifdef TARGET_ARCH_ppc
AD.addInclude(AD._CPP_file, "assembler_ppc.inline.hpp");
AD.addInclude(AD._CPP_file, "nativeInst_ppc.hpp");
AD.addInclude(AD._CPP_file, "vmreg_ppc.inline.hpp");
#endif #endif
AD.addInclude(AD._HPP_file, "memory/allocation.hpp"); AD.addInclude(AD._HPP_file, "memory/allocation.hpp");
AD.addInclude(AD._HPP_file, "opto/machnode.hpp"); AD.addInclude(AD._HPP_file, "opto/machnode.hpp");
......
...@@ -47,8 +47,11 @@ ...@@ -47,8 +47,11 @@
#ifdef TARGET_ARCH_MODEL_arm #ifdef TARGET_ARCH_MODEL_arm
# include "adfiles/adGlobals_arm.hpp" # include "adfiles/adGlobals_arm.hpp"
#endif #endif
#ifdef TARGET_ARCH_MODEL_ppc #ifdef TARGET_ARCH_MODEL_ppc_32
# include "adfiles/adGlobals_ppc.hpp" # include "adfiles/adGlobals_ppc_32.hpp"
#endif
#ifdef TARGET_ARCH_MODEL_ppc_64
# include "adfiles/adGlobals_ppc_64.hpp"
#endif #endif
#endif #endif
......
...@@ -958,7 +958,7 @@ CompilerThread* CompileBroker::make_compiler_thread(const char* name, CompileQue ...@@ -958,7 +958,7 @@ CompilerThread* CompileBroker::make_compiler_thread(const char* name, CompileQue
// Initialize the compilation queue // Initialize the compilation queue
void CompileBroker::init_compiler_threads(int c1_compiler_count, int c2_compiler_count) { void CompileBroker::init_compiler_threads(int c1_compiler_count, int c2_compiler_count) {
EXCEPTION_MARK; EXCEPTION_MARK;
#if !defined(ZERO) && !defined(SHARK) #if !defined(ZERO) && !defined(SHARK) && !defined(PPC64)
assert(c2_compiler_count > 0 || c1_compiler_count > 0, "No compilers?"); assert(c2_compiler_count > 0 || c1_compiler_count > 0, "No compilers?");
#endif // !ZERO && !SHARK #endif // !ZERO && !SHARK
if (c2_compiler_count > 0) { if (c2_compiler_count > 0) {
......
...@@ -29,6 +29,7 @@ ...@@ -29,6 +29,7 @@
#include "gc_implementation/g1/g1CollectedHeap.hpp" #include "gc_implementation/g1/g1CollectedHeap.hpp"
#include "gc_implementation/g1/g1OopClosures.hpp" #include "gc_implementation/g1/g1OopClosures.hpp"
#include "gc_implementation/g1/g1RemSet.hpp" #include "gc_implementation/g1/g1RemSet.hpp"
#include "gc_implementation/g1/g1RemSet.inline.hpp"
#include "gc_implementation/g1/heapRegionRemSet.hpp" #include "gc_implementation/g1/heapRegionRemSet.hpp"
/* /*
......
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
#include "gc_implementation/parallelScavenge/psOldGen.hpp" #include "gc_implementation/parallelScavenge/psOldGen.hpp"
#include "gc_implementation/parallelScavenge/psPromotionManager.hpp" #include "gc_implementation/parallelScavenge/psPromotionManager.hpp"
#include "gc_implementation/parallelScavenge/psScavenge.hpp" #include "gc_implementation/parallelScavenge/psScavenge.hpp"
#include "oops/oop.psgc.inline.hpp"
inline PSPromotionManager* PSPromotionManager::manager_array(int index) { inline PSPromotionManager* PSPromotionManager::manager_array(int index) {
assert(_manager_array != NULL, "access of NULL manager_array"); assert(_manager_array != NULL, "access of NULL manager_array");
......
...@@ -45,8 +45,11 @@ ...@@ -45,8 +45,11 @@
#ifdef TARGET_ARCH_MODEL_arm #ifdef TARGET_ARCH_MODEL_arm
# include "interp_masm_arm.hpp" # include "interp_masm_arm.hpp"
#endif #endif
#ifdef TARGET_ARCH_MODEL_ppc #ifdef TARGET_ARCH_MODEL_ppc_32
# include "interp_masm_ppc.hpp" # include "interp_masm_ppc_32.hpp"
#endif
#ifdef TARGET_ARCH_MODEL_ppc_64
# include "interp_masm_ppc_64.hpp"
#endif #endif
// This file contains the platform-independent parts // This file contains the platform-independent parts
......
...@@ -43,8 +43,11 @@ ...@@ -43,8 +43,11 @@
#ifdef TARGET_ARCH_MODEL_arm #ifdef TARGET_ARCH_MODEL_arm
# include "interp_masm_arm.hpp" # include "interp_masm_arm.hpp"
#endif #endif
#ifdef TARGET_ARCH_MODEL_ppc #ifdef TARGET_ARCH_MODEL_ppc_32
# include "interp_masm_ppc.hpp" # include "interp_masm_ppc_32.hpp"
#endif
#ifdef TARGET_ARCH_MODEL_ppc_64
# include "interp_masm_ppc_64.hpp"
#endif #endif
#ifndef CC_INTERP #ifndef CC_INTERP
...@@ -373,8 +376,8 @@ class TemplateTable: AllStatic { ...@@ -373,8 +376,8 @@ class TemplateTable: AllStatic {
#ifdef TARGET_ARCH_MODEL_arm #ifdef TARGET_ARCH_MODEL_arm
# include "templateTable_arm.hpp" # include "templateTable_arm.hpp"
#endif #endif
#ifdef TARGET_ARCH_MODEL_ppc #ifdef TARGET_ARCH_MODEL_ppc_32
# include "templateTable_ppc.hpp" # include "templateTable_ppc_32.hpp"
#endif #endif
}; };
......
...@@ -35,6 +35,9 @@ ...@@ -35,6 +35,9 @@
#ifdef TARGET_ARCH_arm #ifdef TARGET_ARCH_arm
# include "c2_globals_arm.hpp" # include "c2_globals_arm.hpp"
#endif #endif
#ifdef TARGET_ARCH_ppc
# include "c2_globals_ppc.hpp"
#endif
#ifdef TARGET_OS_FAMILY_linux #ifdef TARGET_OS_FAMILY_linux
# include "c2_globals_linux.hpp" # include "c2_globals_linux.hpp"
#endif #endif
......
...@@ -40,8 +40,11 @@ ...@@ -40,8 +40,11 @@
#ifdef TARGET_ARCH_MODEL_arm #ifdef TARGET_ARCH_MODEL_arm
# include "adfiles/ad_arm.hpp" # include "adfiles/ad_arm.hpp"
#endif #endif
#ifdef TARGET_ARCH_MODEL_ppc #ifdef TARGET_ARCH_MODEL_ppc_32
# include "adfiles/ad_ppc.hpp" # include "adfiles/ad_ppc_32.hpp"
#endif
#ifdef TARGET_ARCH_MODEL_ppc_64
# include "adfiles/ad_ppc_64.hpp"
#endif #endif
......
...@@ -79,8 +79,11 @@ ...@@ -79,8 +79,11 @@
#ifdef TARGET_ARCH_MODEL_arm #ifdef TARGET_ARCH_MODEL_arm
# include "adfiles/ad_arm.hpp" # include "adfiles/ad_arm.hpp"
#endif #endif
#ifdef TARGET_ARCH_MODEL_ppc #ifdef TARGET_ARCH_MODEL_ppc_32
# include "adfiles/ad_ppc.hpp" # include "adfiles/ad_ppc_32.hpp"
#endif
#ifdef TARGET_ARCH_MODEL_ppc_64
# include "adfiles/ad_ppc_64.hpp"
#endif #endif
......
...@@ -50,9 +50,13 @@ ...@@ -50,9 +50,13 @@
#ifdef TARGET_ARCH_MODEL_arm #ifdef TARGET_ARCH_MODEL_arm
# include "adfiles/ad_arm.hpp" # include "adfiles/ad_arm.hpp"
#endif #endif
#ifdef TARGET_ARCH_MODEL_ppc #ifdef TARGET_ARCH_MODEL_ppc_32
# include "adfiles/ad_ppc.hpp" # include "adfiles/ad_ppc_32.hpp"
#endif #endif
#ifdef TARGET_ARCH_MODEL_ppc_64
# include "adfiles/ad_ppc_64.hpp"
#endif
// Portions of code courtesy of Clifford Click // Portions of code courtesy of Clifford Click
......
...@@ -45,8 +45,11 @@ ...@@ -45,8 +45,11 @@
#ifdef TARGET_ARCH_MODEL_arm #ifdef TARGET_ARCH_MODEL_arm
# include "adfiles/ad_arm.hpp" # include "adfiles/ad_arm.hpp"
#endif #endif
#ifdef TARGET_ARCH_MODEL_ppc #ifdef TARGET_ARCH_MODEL_ppc_32
# include "adfiles/ad_ppc.hpp" # include "adfiles/ad_ppc_32.hpp"
#endif
#ifdef TARGET_ARCH_MODEL_ppc_64
# include "adfiles/ad_ppc_64.hpp"
#endif #endif
// Optimization - Graph Style // Optimization - Graph Style
......
...@@ -43,8 +43,11 @@ ...@@ -43,8 +43,11 @@
#ifdef TARGET_ARCH_MODEL_arm #ifdef TARGET_ARCH_MODEL_arm
# include "adfiles/ad_arm.hpp" # include "adfiles/ad_arm.hpp"
#endif #endif
#ifdef TARGET_ARCH_MODEL_ppc #ifdef TARGET_ARCH_MODEL_ppc_32
# include "adfiles/ad_ppc.hpp" # include "adfiles/ad_ppc_32.hpp"
#endif
#ifdef TARGET_ARCH_MODEL_ppc_64
# include "adfiles/ad_ppc_64.hpp"
#endif #endif
//------------------------------BoxLockNode------------------------------------ //------------------------------BoxLockNode------------------------------------
......
...@@ -53,8 +53,11 @@ ...@@ -53,8 +53,11 @@
#ifdef TARGET_ARCH_MODEL_arm #ifdef TARGET_ARCH_MODEL_arm
# include "adfiles/ad_arm.hpp" # include "adfiles/ad_arm.hpp"
#endif #endif
#ifdef TARGET_ARCH_MODEL_ppc #ifdef TARGET_ARCH_MODEL_ppc_32
# include "adfiles/ad_ppc.hpp" # include "adfiles/ad_ppc_32.hpp"
#endif
#ifdef TARGET_ARCH_MODEL_ppc_64
# include "adfiles/ad_ppc_64.hpp"
#endif #endif
OptoReg::Name OptoReg::c_frame_pointer; OptoReg::Name OptoReg::c_frame_pointer;
......
...@@ -42,8 +42,11 @@ ...@@ -42,8 +42,11 @@
#ifdef TARGET_ARCH_MODEL_arm #ifdef TARGET_ARCH_MODEL_arm
# include "adfiles/ad_arm.hpp" # include "adfiles/ad_arm.hpp"
#endif #endif
#ifdef TARGET_ARCH_MODEL_ppc #ifdef TARGET_ARCH_MODEL_ppc_32
# include "adfiles/ad_ppc.hpp" # include "adfiles/ad_ppc_32.hpp"
#endif
#ifdef TARGET_ARCH_MODEL_ppc_64
# include "adfiles/ad_ppc_64.hpp"
#endif #endif
class Arena; class Arena;
......
...@@ -40,8 +40,11 @@ ...@@ -40,8 +40,11 @@
#ifdef TARGET_ARCH_MODEL_arm #ifdef TARGET_ARCH_MODEL_arm
# include "adfiles/ad_arm.hpp" # include "adfiles/ad_arm.hpp"
#endif #endif
#ifdef TARGET_ARCH_MODEL_ppc #ifdef TARGET_ARCH_MODEL_ppc_32
# include "adfiles/ad_ppc.hpp" # include "adfiles/ad_ppc_32.hpp"
#endif
#ifdef TARGET_ARCH_MODEL_ppc_64
# include "adfiles/ad_ppc_64.hpp"
#endif #endif
#define RM_SIZE _RM_SIZE /* a constant private to the class RegMask */ #define RM_SIZE _RM_SIZE /* a constant private to the class RegMask */
......
...@@ -43,8 +43,11 @@ ...@@ -43,8 +43,11 @@
#ifdef TARGET_ARCH_MODEL_arm #ifdef TARGET_ARCH_MODEL_arm
# include "adfiles/adGlobals_arm.hpp" # include "adfiles/adGlobals_arm.hpp"
#endif #endif
#ifdef TARGET_ARCH_MODEL_ppc #ifdef TARGET_ARCH_MODEL_ppc_32
# include "adfiles/adGlobals_ppc.hpp" # include "adfiles/adGlobals_ppc_32.hpp"
#endif
#ifdef TARGET_ARCH_MODEL_ppc_64
# include "adfiles/adGlobals_ppc_64.hpp"
#endif #endif
// Some fun naming (textual) substitutions: // Some fun naming (textual) substitutions:
......
...@@ -83,8 +83,11 @@ ...@@ -83,8 +83,11 @@
#ifdef TARGET_ARCH_MODEL_arm #ifdef TARGET_ARCH_MODEL_arm
# include "adfiles/ad_arm.hpp" # include "adfiles/ad_arm.hpp"
#endif #endif
#ifdef TARGET_ARCH_MODEL_ppc #ifdef TARGET_ARCH_MODEL_ppc_32
# include "adfiles/ad_ppc.hpp" # include "adfiles/ad_ppc_32.hpp"
#endif
#ifdef TARGET_ARCH_MODEL_ppc_64
# include "adfiles/ad_ppc_64.hpp"
#endif #endif
...@@ -977,7 +980,7 @@ JRT_ENTRY_NO_ASYNC(address, OptoRuntime::handle_exception_C_helper(JavaThread* t ...@@ -977,7 +980,7 @@ JRT_ENTRY_NO_ASYNC(address, OptoRuntime::handle_exception_C_helper(JavaThread* t
nm = CodeCache::find_nmethod(pc); nm = CodeCache::find_nmethod(pc);
assert(nm != NULL, "No NMethod found"); assert(nm != NULL, "No NMethod found");
if (nm->is_native_method()) { if (nm->is_native_method()) {
fatal("Native mathod should not have path to exception handling"); fatal("Native method should not have path to exception handling");
} else { } else {
// we are switching to old paradigm: search for exception handler in caller_frame // we are switching to old paradigm: search for exception handler in caller_frame
// instead in exception handler of caller_frame.sender() // instead in exception handler of caller_frame.sender()
...@@ -1006,7 +1009,7 @@ JRT_ENTRY_NO_ASYNC(address, OptoRuntime::handle_exception_C_helper(JavaThread* t ...@@ -1006,7 +1009,7 @@ JRT_ENTRY_NO_ASYNC(address, OptoRuntime::handle_exception_C_helper(JavaThread* t
} }
// If we are forcing an unwind because of stack overflow then deopt is // If we are forcing an unwind because of stack overflow then deopt is
// irrelevant sice we are throwing the frame away anyway. // irrelevant since we are throwing the frame away anyway.
if (deopting && !force_unwind) { if (deopting && !force_unwind) {
handler_address = SharedRuntime::deopt_blob()->unpack_with_exception(); handler_address = SharedRuntime::deopt_blob()->unpack_with_exception();
...@@ -1049,7 +1052,7 @@ JRT_END ...@@ -1049,7 +1052,7 @@ JRT_END
// Note we enter without the usual JRT wrapper. We will call a helper routine that // Note we enter without the usual JRT wrapper. We will call a helper routine that
// will do the normal VM entry. We do it this way so that we can see if the nmethod // will do the normal VM entry. We do it this way so that we can see if the nmethod
// we looked up the handler for has been deoptimized in the meantime. If it has been // we looked up the handler for has been deoptimized in the meantime. If it has been
// we must not use the handler and instread return the deopt blob. // we must not use the handler and instead return the deopt blob.
address OptoRuntime::handle_exception_C(JavaThread* thread) { address OptoRuntime::handle_exception_C(JavaThread* thread) {
// //
// We are in Java not VM and in debug mode we have a NoHandleMark // We are in Java not VM and in debug mode we have a NoHandleMark
......
...@@ -81,10 +81,13 @@ ...@@ -81,10 +81,13 @@
#ifdef TARGET_ARCH_MODEL_arm #ifdef TARGET_ARCH_MODEL_arm
# include "adfiles/ad_arm.hpp" # include "adfiles/ad_arm.hpp"
#endif #endif
#ifdef TARGET_ARCH_MODEL_ppc #ifdef TARGET_ARCH_MODEL_ppc_32
# include "adfiles/ad_ppc.hpp" # include "adfiles/ad_ppc_32.hpp"
#endif #endif
#ifdef TARGET_ARCH_MODEL_ppc_64
# include "adfiles/ad_ppc_64.hpp"
#endif #endif
#endif // COMPILER2
bool DeoptimizationMarker::_is_active = false; bool DeoptimizationMarker::_is_active = false;
......
...@@ -46,10 +46,13 @@ ...@@ -46,10 +46,13 @@
#ifdef TARGET_ARCH_MODEL_arm #ifdef TARGET_ARCH_MODEL_arm
# include "adfiles/adGlobals_arm.hpp" # include "adfiles/adGlobals_arm.hpp"
#endif #endif
#ifdef TARGET_ARCH_MODEL_ppc #ifdef TARGET_ARCH_MODEL_ppc_32
# include "adfiles/adGlobals_ppc.hpp" # include "adfiles/adGlobals_ppc_32.hpp"
#endif #endif
#ifdef TARGET_ARCH_MODEL_ppc_64
# include "adfiles/adGlobals_ppc_64.hpp"
#endif #endif
#endif // COMPILER2
#ifdef ZERO #ifdef ZERO
#ifdef TARGET_ARCH_zero #ifdef TARGET_ARCH_zero
# include "stack_zero.hpp" # include "stack_zero.hpp"
......
...@@ -167,7 +167,6 @@ define_pd_global(intx, BackEdgeThreshold, 0); ...@@ -167,7 +167,6 @@ define_pd_global(intx, BackEdgeThreshold, 0);
define_pd_global(intx, OnStackReplacePercentage, 0); define_pd_global(intx, OnStackReplacePercentage, 0);
define_pd_global(bool, ResizeTLAB, false); define_pd_global(bool, ResizeTLAB, false);
define_pd_global(intx, FreqInlineSize, 0); define_pd_global(intx, FreqInlineSize, 0);
define_pd_global(intx, InlineSmallCode, 0);
define_pd_global(intx, NewSizeThreadIncrease, 4*K); define_pd_global(intx, NewSizeThreadIncrease, 4*K);
define_pd_global(intx, InlineClassNatives, true); define_pd_global(intx, InlineClassNatives, true);
define_pd_global(intx, InlineUnsafeOps, true); define_pd_global(intx, InlineUnsafeOps, true);
...@@ -3143,7 +3142,8 @@ class CommandLineFlags { ...@@ -3143,7 +3142,8 @@ class CommandLineFlags {
"disable this feature") \ "disable this feature") \
\ \
/* code cache parameters */ \ /* code cache parameters */ \
develop(uintx, CodeCacheSegmentSize, 64, \ /* ppc64 has large code-entry alignment. */ \
develop(uintx, CodeCacheSegmentSize, 64 PPC64_ONLY(+64), \
"Code cache segment size (in bytes) - smallest unit of " \ "Code cache segment size (in bytes) - smallest unit of " \
"allocation") \ "allocation") \
\ \
...@@ -3605,7 +3605,7 @@ class CommandLineFlags { ...@@ -3605,7 +3605,7 @@ class CommandLineFlags {
NOT_LP64(LINUX_ONLY(2*G) NOT_LINUX(0)), \ NOT_LP64(LINUX_ONLY(2*G) NOT_LINUX(0)), \
"Address to allocate shared memory region for class data") \ "Address to allocate shared memory region for class data") \
\ \
diagnostic(bool, EnableInvokeDynamic, true, \ diagnostic(bool, EnableInvokeDynamic, true PPC64_ONLY(&& false), \
"support JSR 292 (method handles, invokedynamic, " \ "support JSR 292 (method handles, invokedynamic, " \
"anonymous classes") \ "anonymous classes") \
\ \
......
...@@ -114,8 +114,11 @@ class StubRoutines: AllStatic { ...@@ -114,8 +114,11 @@ class StubRoutines: AllStatic {
#ifdef TARGET_ARCH_MODEL_arm #ifdef TARGET_ARCH_MODEL_arm
# include "stubRoutines_arm.hpp" # include "stubRoutines_arm.hpp"
#endif #endif
#ifdef TARGET_ARCH_MODEL_ppc #ifdef TARGET_ARCH_MODEL_ppc_32
# include "stubRoutines_ppc.hpp" # include "stubRoutines_ppc_32.hpp"
#endif
#ifdef TARGET_ARCH_MODEL_ppc_64
# include "stubRoutines_ppc_64.hpp"
#endif #endif
......
...@@ -197,10 +197,13 @@ ...@@ -197,10 +197,13 @@
#ifdef TARGET_ARCH_MODEL_arm #ifdef TARGET_ARCH_MODEL_arm
# include "adfiles/adGlobals_arm.hpp" # include "adfiles/adGlobals_arm.hpp"
#endif #endif
#ifdef TARGET_ARCH_MODEL_ppc #ifdef TARGET_ARCH_MODEL_ppc_32
# include "adfiles/adGlobals_ppc.hpp" # include "adfiles/adGlobals_ppc_32.hpp"
#endif #endif
#ifdef TARGET_ARCH_MODEL_ppc_64
# include "adfiles/adGlobals_ppc_64.hpp"
#endif #endif
#endif // COMPILER2
// Note: the cross-product of (c1, c2, product, nonproduct, ...), // Note: the cross-product of (c1, c2, product, nonproduct, ...),
// (nonstatic, static), and (unchecked, checked) has not been taken. // (nonstatic, static), and (unchecked, checked) has not been taken.
......
...@@ -187,6 +187,7 @@ const char* Abstract_VM_Version::jre_release_version() { ...@@ -187,6 +187,7 @@ const char* Abstract_VM_Version::jre_release_version() {
AMD64_ONLY("amd64") \ AMD64_ONLY("amd64") \
ARM_ONLY("arm") \ ARM_ONLY("arm") \
PPC32_ONLY("ppc") \ PPC32_ONLY("ppc") \
PPC64_ONLY("ppc64") \
SPARC_ONLY("sparc") SPARC_ONLY("sparc")
#endif // ZERO #endif // ZERO
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册