src/share/vm/runtime/globals.hpp

changeset 9448
73d689add964
parent 9417
65409bcab2ad
parent 8868
91ddc23482a4
child 9637
eef07cd490d4
     1.1 --- a/src/share/vm/runtime/globals.hpp	Sat Oct 06 10:25:04 2018 +0100
     1.2 +++ b/src/share/vm/runtime/globals.hpp	Thu Dec 27 11:43:33 2018 +0800
     1.3 @@ -52,6 +52,9 @@
     1.4  #ifdef TARGET_ARCH_ppc
     1.5  # include "globals_ppc.hpp"
     1.6  #endif
     1.7 +#ifdef TARGET_ARCH_mips
     1.8 +# include "globals_mips.hpp"
     1.9 +#endif
    1.10  #ifdef TARGET_OS_FAMILY_linux
    1.11  # include "globals_linux.hpp"
    1.12  #endif
    1.13 @@ -73,6 +76,9 @@
    1.14  #ifdef TARGET_OS_ARCH_linux_sparc
    1.15  # include "globals_linux_sparc.hpp"
    1.16  #endif
    1.17 +#ifdef TARGET_OS_ARCH_linux_mips
    1.18 +# include "globals_linux_mips.hpp"
    1.19 +#endif
    1.20  #ifdef TARGET_OS_ARCH_linux_zero
    1.21  # include "globals_linux_zero.hpp"
    1.22  #endif
    1.23 @@ -107,6 +113,9 @@
    1.24  #ifdef TARGET_ARCH_sparc
    1.25  # include "c1_globals_sparc.hpp"
    1.26  #endif
    1.27 +#ifdef TARGET_ARCH_mips
    1.28 +# include "c1_globals_mips.hpp"
    1.29 +#endif
    1.30  #ifdef TARGET_ARCH_arm
    1.31  # include "c1_globals_arm.hpp"
    1.32  #endif
    1.33 @@ -136,6 +145,9 @@
    1.34  #ifdef TARGET_ARCH_sparc
    1.35  # include "c2_globals_sparc.hpp"
    1.36  #endif
    1.37 +#ifdef TARGET_ARCH_mips
    1.38 +# include "c2_globals_mips.hpp"
    1.39 +#endif
    1.40  #ifdef TARGET_ARCH_arm
    1.41  # include "c2_globals_arm.hpp"
    1.42  #endif
    1.43 @@ -3184,7 +3196,7 @@
    1.44    product(uintx, InitialHeapSize, 0,                                        \
    1.45            "Initial heap size (in bytes); zero means use ergonomics")        \
    1.46                                                                              \
    1.47 -  product(uintx, MaxHeapSize, ScaleForWordSize(96*M),                       \
    1.48 +  product(uintx, MaxHeapSize, ScaleForWordSize(MIPS64_ONLY(1500) NOT_MIPS64(96) *M),                     \
    1.49            "Maximum heap size (in bytes)")                                   \
    1.50                                                                              \
    1.51    product(uintx, OldSize, ScaleForWordSize(4*M),                            \
    1.52 @@ -3711,10 +3723,10 @@
    1.53            "The maximum number of interpreted frames to skip when searching "\
    1.54            "for recompilee")                                                 \
    1.55                                                                              \
    1.56 -  develop(intx, DesiredMethodLimit,  8000,                                  \
    1.57 +  product(intx, DesiredMethodLimit, 8000,                                   \
    1.58            "The desired maximum method size (in bytecodes) after inlining")  \
    1.59                                                                              \
    1.60 -  develop(intx, HugeMethodLimit,  8000,                                     \
    1.61 +  product(intx, HugeMethodLimit, 8000,                                      \
    1.62            "Don't compile methods larger than this if "                      \
    1.63            "+DontCompileHugeMethods")                                        \
    1.64                                                                              \

mercurial