Increase MaxHeapSize for better performance on MIPS

Thu, 24 May 2018 20:03:11 +0800

author
aoqi
date
Thu, 24 May 2018 20:03:11 +0800
changeset 8868
91ddc23482a4
parent 8867
34020d024017
child 8869
9e933050faaf

Increase MaxHeapSize for better performance on MIPS

src/share/vm/runtime/globals.hpp file | annotate | diff | comparison | revisions
     1.1 --- a/src/share/vm/runtime/globals.hpp	Thu May 24 19:57:44 2018 +0800
     1.2 +++ b/src/share/vm/runtime/globals.hpp	Thu May 24 20:03:11 2018 +0800
     1.3 @@ -3169,7 +3169,7 @@
     1.4    product(uintx, InitialHeapSize, 0,                                        \
     1.5            "Initial heap size (in bytes); zero means use ergonomics")        \
     1.6                                                                              \
     1.7 -  product(uintx, MaxHeapSize, ScaleForWordSize(96*M),                       \
     1.8 +  product(uintx, MaxHeapSize, ScaleForWordSize(MIPS64_ONLY(1500) NOT_MIPS64(96) *M),                     \
     1.9            "Maximum heap size (in bytes)")                                   \
    1.10                                                                              \
    1.11    product(uintx, OldSize, ScaleForWordSize(4*M),                            \

mercurial