# HG changeset patch # User twisti # Date 1375766507 25200 # Node ID 22d3ee2fcb97bac07e9091a29fd7f2b7541a7757 # Parent cf9603cd8b13b45f57d4ee6c1ffa9ee988c95abf SPARC and Solaris fixes after HSX merge diff -r cf9603cd8b13 -r 22d3ee2fcb97 make/solaris/makefiles/mapfile-vers --- a/make/solaris/makefiles/mapfile-vers Tue Aug 06 22:12:12 2013 +0200 +++ b/make/solaris/makefiles/mapfile-vers Mon Aug 05 22:21:47 2013 -0700 @@ -223,6 +223,8 @@ JVM_SetLength; JVM_SetNativeThreadName; JVM_SetPrimitiveArrayElement; + # Preserved so that Graal repo can link against a JDK7 libjava.so works + JVM_SetProtectionDomain; JVM_SetSockOpt; JVM_SetThreadPriority; JVM_Sleep; diff -r cf9603cd8b13 -r 22d3ee2fcb97 src/cpu/sparc/vm/graalGlobals_sparc.hpp --- a/src/cpu/sparc/vm/graalGlobals_sparc.hpp Tue Aug 06 22:12:12 2013 +0200 +++ b/src/cpu/sparc/vm/graalGlobals_sparc.hpp Mon Aug 05 22:21:47 2013 -0700 @@ -55,6 +55,7 @@ define_pd_global(bool, ProfileInterpreter, true ); define_pd_global(intx, CodeCacheExpansionSize, 64*K ); define_pd_global(uintx,CodeCacheMinBlockLength, 4); +define_pd_global(uintx, CodeCacheMinimumUseSpace, 400*K); define_pd_global(intx, TypeProfileWidth, 8); define_pd_global(intx, MethodProfileWidth, 4); #endif