< prev index next >

src/share/vm/c1/c1_globals.hpp

Print this page
rev 11567 : 8160245: C1: Clean up platform #defines in c1_LIR.hpp.
Summary: Also add fnoreg on x86, LIR_Address constructor without scale, and clean up templateInterpreterGenerator.hpp.

@@ -301,13 +301,13 @@
           "bailout of compilation for methods with exception handlers")     \
                                                                             \
   develop(bool, InstallMethods, true,                                       \
           "Install methods at the end of successful compilations")          \
                                                                             \
-  develop(intx, NMethodSizeLimit, (64*K)*wordSize,                          \
+  develop(intx, NMethodSizeLimit, NOT_PPC32(2*)(32*K)*wordSize,             \
           "Maximum size of a compiled method.")                             \
-          range(0, max_jint)                                                \
+           range(0, NOT_PPC32(max_jint) PPC32_ONLY(32*K))                   \
                                                                             \
   develop(bool, TraceFPUStack, false,                                       \
           "Trace emulation of the FPU stack (intel only)")                  \
                                                                             \
   develop(bool, TraceFPURegisterUsage, false,                               \
< prev index next >