comparison src/share/vm/runtime/globals.hpp @ 8804:91bf0bdae37b

8008217: CDS: Class data sharing limits the malloc heap on Solaris Summary: In 64bit VM move CDS archive address to 32G on all platforms using new flag SharedBaseAddress. In 32bit VM set CDS archive address to 3Gb on Linux and let other OSs pick the address. Reviewed-by: kvn, dcubed, zgu, hseigel
author coleenp
date Wed, 20 Mar 2013 08:04:54 -0400
parents eca90b8a06eb
children 0ac03fef364f
comparison
equal deleted inserted replaced
8803:a649f6511c04 8804:91bf0bdae37b
3571 "Size of the shared miscellaneous data area (in bytes)") \ 3571 "Size of the shared miscellaneous data area (in bytes)") \
3572 \ 3572 \
3573 product(uintx, SharedMiscCodeSize, 120*K, \ 3573 product(uintx, SharedMiscCodeSize, 120*K, \
3574 "Size of the shared miscellaneous code area (in bytes)") \ 3574 "Size of the shared miscellaneous code area (in bytes)") \
3575 \ 3575 \
3576 product(uintx, SharedDummyBlockSize, 0, \ 3576 product(uintx, SharedBaseAddress, LP64_ONLY(32*G) \
3577 "Size of dummy block used to shift heap addresses (in bytes)") \ 3577 NOT_LP64(LINUX_ONLY(2*G) NOT_LINUX(0)), \
3578 "Address to allocate shared memory region for class data") \
3578 \ 3579 \
3579 diagnostic(bool, EnableInvokeDynamic, true, \ 3580 diagnostic(bool, EnableInvokeDynamic, true, \
3580 "support JSR 292 (method handles, invokedynamic, " \ 3581 "support JSR 292 (method handles, invokedynamic, " \
3581 "anonymous classes") \ 3582 "anonymous classes") \
3582 \ 3583 \