< prev index next >

src/share/vm/runtime/globals.hpp

Print this page
rev 12121 : [mq]: all_changes.patch


3308           "4KB. If pages are bigger shadow zone is aligned up. "            \
3309           "This should exceed the depth of the VM and native call stack.")  \
3310           range(MIN_STACK_SHADOW_PAGES, (DEFAULT_STACK_SHADOW_PAGES+30))    \
3311                                                                             \
3312   product_pd(intx, ThreadStackSize,                                         \
3313           "Thread Stack Size (in Kbytes)")                                  \
3314           range(0, (max_intx-os::vm_page_size())/(1 * K))                   \
3315                                                                             \
3316   product_pd(intx, VMThreadStackSize,                                       \
3317           "Non-Java Thread Stack Size (in Kbytes)")                         \
3318           range(0, max_intx/(1 * K))                                        \
3319                                                                             \
3320   product_pd(intx, CompilerThreadStackSize,                                 \
3321           "Compiler Thread Stack Size (in Kbytes)")                         \
3322           range(0, max_intx/(1 * K))                                        \
3323                                                                             \
3324   develop_pd(size_t, JVMInvokeMethodSlack,                                  \
3325           "Stack space (bytes) required for JVM_InvokeMethod to complete")  \
3326                                                                             \
3327   /* code cache parameters                                    */            \
3328   /* ppc64/tiered compilation has large code-entry alignment. */            \
3329   develop(uintx, CodeCacheSegmentSize,                                      \
3330           64 PPC64_ONLY(+64) NOT_PPC64(TIERED_ONLY(+64)),                   \
3331           "Code cache segment size (in bytes) - smallest unit of "          \
3332           "allocation")                                                     \
3333           range(1, 1024)                                                    \
3334           constraint(CodeCacheSegmentSizeConstraintFunc, AfterErgo)         \
3335                                                                             \
3336   develop_pd(intx, CodeEntryAlignment,                                      \
3337           "Code entry alignment for generated code (in bytes)")             \
3338           constraint(CodeEntryAlignmentConstraintFunc, AfterErgo)           \
3339                                                                             \
3340   product_pd(intx, OptoLoopAlignment,                                       \
3341           "Align inner loops to zero relative to this modulus")             \
3342           range(1, 16)                                                      \
3343           constraint(OptoLoopAlignmentConstraintFunc, AfterErgo)            \
3344                                                                             \
3345   product_pd(uintx, InitialCodeCacheSize,                                   \
3346           "Initial code cache size (in bytes)")                             \
3347           range(0, max_uintx)                                               \
3348                                                                             \
3349   develop_pd(uintx, CodeCacheMinimumUseSpace,                               \
3350           "Minimum code cache size (in bytes) required to start VM.")       \




3308           "4KB. If pages are bigger shadow zone is aligned up. "            \
3309           "This should exceed the depth of the VM and native call stack.")  \
3310           range(MIN_STACK_SHADOW_PAGES, (DEFAULT_STACK_SHADOW_PAGES+30))    \
3311                                                                             \
3312   product_pd(intx, ThreadStackSize,                                         \
3313           "Thread Stack Size (in Kbytes)")                                  \
3314           range(0, (max_intx-os::vm_page_size())/(1 * K))                   \
3315                                                                             \
3316   product_pd(intx, VMThreadStackSize,                                       \
3317           "Non-Java Thread Stack Size (in Kbytes)")                         \
3318           range(0, max_intx/(1 * K))                                        \
3319                                                                             \
3320   product_pd(intx, CompilerThreadStackSize,                                 \
3321           "Compiler Thread Stack Size (in Kbytes)")                         \
3322           range(0, max_intx/(1 * K))                                        \
3323                                                                             \
3324   develop_pd(size_t, JVMInvokeMethodSlack,                                  \
3325           "Stack space (bytes) required for JVM_InvokeMethod to complete")  \
3326                                                                             \
3327   /* code cache parameters                                    */            \
3328   develop_pd(uintx, CodeCacheSegmentSize,                                   \


3329           "Code cache segment size (in bytes) - smallest unit of "          \
3330           "allocation")                                                     \
3331           range(1, 1024)                                                    \
3332           constraint(CodeCacheSegmentSizeConstraintFunc, AfterErgo)         \
3333                                                                             \
3334   develop_pd(intx, CodeEntryAlignment,                                      \
3335           "Code entry alignment for generated code (in bytes)")             \
3336           constraint(CodeEntryAlignmentConstraintFunc, AfterErgo)           \
3337                                                                             \
3338   product_pd(intx, OptoLoopAlignment,                                       \
3339           "Align inner loops to zero relative to this modulus")             \
3340           range(1, 16)                                                      \
3341           constraint(OptoLoopAlignmentConstraintFunc, AfterErgo)            \
3342                                                                             \
3343   product_pd(uintx, InitialCodeCacheSize,                                   \
3344           "Initial code cache size (in bytes)")                             \
3345           range(0, max_uintx)                                               \
3346                                                                             \
3347   develop_pd(uintx, CodeCacheMinimumUseSpace,                               \
3348           "Minimum code cache size (in bytes) required to start VM.")       \


< prev index next >