src/hotspot/cpu/ppc/globals_ppc.hpp
author mhorie
Thu, 22 Nov 2018 21:43:37 -0500
changeset 52667 a959583eea01
parent 52460 f1bb77833b59
child 53244 9807daeb47c4
permissions -rw-r--r--
8214205: PPC64: Add instructions for counting trailing zeros Reviewed-by: mdoerr, gromero
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
22824
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
     1
/*
48626
9f6f48d4f9a1 8194814: [ppc, s390] A row of minor fixes and cleanups
goetz
parents: 48332
diff changeset
     2
 * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved.
9f6f48d4f9a1 8194814: [ppc, s390] A row of minor fixes and cleanups
goetz
parents: 48332
diff changeset
     3
 * Copyright (c) 2012, 2018 SAP SE. All rights reserved.
22824
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
     4
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
     5
 *
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
     6
 * This code is free software; you can redistribute it and/or modify it
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
     7
 * under the terms of the GNU General Public License version 2 only, as
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
     8
 * published by the Free Software Foundation.
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
     9
 *
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    10
 * This code is distributed in the hope that it will be useful, but WITHOUT
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    12
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    13
 * version 2 for more details (a copy is included in the LICENSE file that
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    14
 * accompanied this code).
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    15
 *
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    16
 * You should have received a copy of the GNU General Public License version
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    17
 * 2 along with this work; if not, write to the Free Software Foundation,
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    18
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    19
 *
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    20
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    21
 * or visit www.oracle.com if you need additional information or have any
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    22
 * questions.
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    23
 *
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    24
 */
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    25
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    26
#ifndef CPU_PPC_VM_GLOBALS_PPC_HPP
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    27
#define CPU_PPC_VM_GLOBALS_PPC_HPP
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    28
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    29
#include "utilities/globalDefinitions.hpp"
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    30
#include "utilities/macros.hpp"
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    31
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    32
// Sets the default values for platform dependent flags used by the runtime system.
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    33
// (see globals.hpp)
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    34
47586
07ad034e0c29 8188773: PPC64 and s390: Fix UseMembar and enable ShareVtableStubs
mdoerr
parents: 47216
diff changeset
    35
define_pd_global(bool, ShareVtableStubs,      true);
22824
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    36
define_pd_global(bool, NeedsDeoptSuspend,     false); // Only register window machines need this.
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    37
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    38
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    39
define_pd_global(bool, ImplicitNullChecks,    true);  // Generate code for implicit null checks.
22856
03ad2cf18166 8029015: PPC64 (part 216): opto: trap based null and range checks
goetz
parents: 22852
diff changeset
    40
define_pd_global(bool, TrapBasedNullChecks,   true);
22824
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    41
define_pd_global(bool, UncommonNullCast,      true);  // Uncommon-trap NULLs passed to check cast.
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    42
39390
edf6a424a8b7 8159335: Fix problems with stack overflow handling.
goetz
parents: 38931
diff changeset
    43
#define DEFAULT_STACK_YELLOW_PAGES (2)
33222
e0a340f4ab6e 8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents: 31783
diff changeset
    44
#define DEFAULT_STACK_RED_PAGES (1)
42906
1a8db9cf1407 8170655: [posix] Fix minimum stack size computations
goetz
parents: 42062
diff changeset
    45
// Java_java_net_SocketOutputStream_socketWrite0() uses a 64k buffer on the
1a8db9cf1407 8170655: [posix] Fix minimum stack size computations
goetz
parents: 42062
diff changeset
    46
// stack if compiled for unix and LP64. To pass stack overflow tests we need
1a8db9cf1407 8170655: [posix] Fix minimum stack size computations
goetz
parents: 42062
diff changeset
    47
// 20 shadow pages.
39390
edf6a424a8b7 8159335: Fix problems with stack overflow handling.
goetz
parents: 38931
diff changeset
    48
#define DEFAULT_STACK_SHADOW_PAGES (20 DEBUG_ONLY(+2))
38931
3cf28d630349 8156923: [ppc] Implement "JEP 270: Reserved Stack Areas for Critical Sections".
goetz
parents: 38273
diff changeset
    49
#define DEFAULT_STACK_RESERVED_PAGES (1)
33222
e0a340f4ab6e 8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents: 31783
diff changeset
    50
35201
996db89f378e 8139864: Improve handling of stack protection zones.
goetz
parents: 35078
diff changeset
    51
#define MIN_STACK_YELLOW_PAGES DEFAULT_STACK_YELLOW_PAGES
33222
e0a340f4ab6e 8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents: 31783
diff changeset
    52
#define MIN_STACK_RED_PAGES DEFAULT_STACK_RED_PAGES
35201
996db89f378e 8139864: Improve handling of stack protection zones.
goetz
parents: 35078
diff changeset
    53
#define MIN_STACK_SHADOW_PAGES (3 DEBUG_ONLY(+1))
35078
c2e328a0171f 8145292: PPC64: fix build after "8046936: JEP 270: Reserved Stack Areas for Critical Sections"
goetz
parents: 33628
diff changeset
    54
#define MIN_STACK_RESERVED_PAGES (0)
33222
e0a340f4ab6e 8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents: 31783
diff changeset
    55
e0a340f4ab6e 8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents: 31783
diff changeset
    56
define_pd_global(intx, StackYellowPages,      DEFAULT_STACK_YELLOW_PAGES);
e0a340f4ab6e 8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents: 31783
diff changeset
    57
define_pd_global(intx, StackRedPages,         DEFAULT_STACK_RED_PAGES);
e0a340f4ab6e 8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents: 31783
diff changeset
    58
define_pd_global(intx, StackShadowPages,      DEFAULT_STACK_SHADOW_PAGES);
35078
c2e328a0171f 8145292: PPC64: fix build after "8046936: JEP 270: Reserved Stack Areas for Critical Sections"
goetz
parents: 33628
diff changeset
    59
define_pd_global(intx, StackReservedPages,    DEFAULT_STACK_RESERVED_PAGES);
33222
e0a340f4ab6e 8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents: 31783
diff changeset
    60
22824
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    61
// Use large code-entry alignment.
42062
473286891dd8 8166560: [s390] Basic enablement of s390 port.
goetz
parents: 39390
diff changeset
    62
define_pd_global(uintx, CodeCacheSegmentSize,  128);
473286891dd8 8166560: [s390] Basic enablement of s390 port.
goetz
parents: 39390
diff changeset
    63
define_pd_global(intx,  CodeEntryAlignment,    128);
473286891dd8 8166560: [s390] Basic enablement of s390 port.
goetz
parents: 39390
diff changeset
    64
define_pd_global(intx,  OptoLoopAlignment,     16);
473286891dd8 8166560: [s390] Basic enablement of s390 port.
goetz
parents: 39390
diff changeset
    65
define_pd_global(intx,  InlineFrequencyCount,  100);
473286891dd8 8166560: [s390] Basic enablement of s390 port.
goetz
parents: 39390
diff changeset
    66
define_pd_global(intx,  InlineSmallCode,       1500);
22824
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    67
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    68
// Flags for template interpreter.
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    69
define_pd_global(bool, RewriteBytecodes,      true);
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    70
define_pd_global(bool, RewriteFrequentPairs,  true);
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    71
30305
b92a97e1e9cb 8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents: 29697
diff changeset
    72
define_pd_global(bool, PreserveFramePointer,  false);
b92a97e1e9cb 8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents: 29697
diff changeset
    73
22824
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    74
// GC Ergo Flags
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 22861
diff changeset
    75
define_pd_global(size_t, CMSYoungGenPerWorker, 16*M);  // Default max size of CMS young gen, per GC worker thread.
22824
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    76
30303
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
    77
define_pd_global(uintx, TypeProfileLevel, 111);
22824
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    78
36303
6241574f5982 8149655: PPC64: Implement CompactString intrinsics
mdoerr
parents: 35594
diff changeset
    79
define_pd_global(bool, CompactStrings, true);
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33222
diff changeset
    80
42661
2343dd675325 8170991: PPC64: Bad code for initialization of short arrays
mdoerr
parents: 42062
diff changeset
    81
// 2x unrolled loop is shorter with more than 9 HeapWords.
2343dd675325 8170991: PPC64: Bad code for initialization of short arrays
mdoerr
parents: 42062
diff changeset
    82
define_pd_global(intx, InitArrayShortSize, 9*BytesPerLong);
36554
a7eb9ee4680c 8146801: Allocating short arrays of non-constant size is slow
shade
parents: 36307
diff changeset
    83
48332
651a95f30dfb 8193257: PPC64, s390 implementation for Thread-local handshakes
mdoerr
parents: 47881
diff changeset
    84
define_pd_global(bool, ThreadLocalHandshakes, true);
47881
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47821
diff changeset
    85
22824
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    86
// Platform dependent flag handling: flags only defined on this platform.
48626
9f6f48d4f9a1 8194814: [ppc, s390] A row of minor fixes and cleanups
goetz
parents: 48332
diff changeset
    87
#define ARCH_FLAGS(develop,      \
9f6f48d4f9a1 8194814: [ppc, s390] A row of minor fixes and cleanups
goetz
parents: 48332
diff changeset
    88
                   product,      \
9f6f48d4f9a1 8194814: [ppc, s390] A row of minor fixes and cleanups
goetz
parents: 48332
diff changeset
    89
                   diagnostic,   \
38273
2634194d7555 8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents: 36554
diff changeset
    90
                   experimental, \
48626
9f6f48d4f9a1 8194814: [ppc, s390] A row of minor fixes and cleanups
goetz
parents: 48332
diff changeset
    91
                   notproduct,   \
9f6f48d4f9a1 8194814: [ppc, s390] A row of minor fixes and cleanups
goetz
parents: 48332
diff changeset
    92
                   range,        \
9f6f48d4f9a1 8194814: [ppc, s390] A row of minor fixes and cleanups
goetz
parents: 48332
diff changeset
    93
                   constraint,   \
9f6f48d4f9a1 8194814: [ppc, s390] A row of minor fixes and cleanups
goetz
parents: 48332
diff changeset
    94
                   writeable)    \
22861
f5c393d456fc 8029940: PPC64 (part 122): C2 compiler port
goetz
parents: 22856
diff changeset
    95
                                                                            \
22824
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    96
  product(uintx, PowerArchitecturePPC64, 0,                                 \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    97
          "CPU Version: x for PowerX. Currently recognizes Power5 to "      \
30303
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
    98
          "Power8. Default is 0. Newer CPUs will be recognized as Power8.") \
22824
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
    99
                                                                            \
47594
fd0db78ac8d4 8188802: PPC64: Failure on assert(lrgmask.is_aligned_sets(RegMask::SlotsPerVecX))
mhorie
parents: 47586
diff changeset
   100
  product(bool, SuperwordUseVSX, false,                                     \
fd0db78ac8d4 8188802: PPC64: Failure on assert(lrgmask.is_aligned_sets(RegMask::SlotsPerVecX))
mhorie
parents: 47586
diff changeset
   101
          "Use Power8 VSX instructions for superword optimization.")        \
fd0db78ac8d4 8188802: PPC64: Failure on assert(lrgmask.is_aligned_sets(RegMask::SlotsPerVecX))
mhorie
parents: 47586
diff changeset
   102
                                                                            \
22824
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   103
  /* Reoptimize code-sequences of calls at runtime, e.g. replace an */      \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   104
  /* indirect call by a direct call.                                */      \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   105
  product(bool, ReoptimizeCallSequences, true,                              \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   106
          "Reoptimize code-sequences of calls at runtime.")                 \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   107
                                                                            \
30303
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   108
  /* Power 8: Configure Data Stream Control Register. */                    \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   109
  product(uint64_t,DSCR_PPC64, (uintx)-1,                                   \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   110
          "Power8 or later: Specify encoded value for Data Stream Control " \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   111
          "Register")                                                       \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   112
  product(uint64_t,DSCR_DPFD_PPC64, 8,                                      \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   113
          "Power8 or later: DPFD (default prefetch depth) value of the "    \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   114
          "Data Stream Control Register."                                   \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   115
          " 0: hardware default, 1: none, 2-7: min-max, 8: don't touch")    \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   116
  product(uint64_t,DSCR_URG_PPC64, 8,                                       \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   117
          "Power8 or later: URG (depth attainment urgency) value of the "   \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   118
          "Data Stream Control Register."                                   \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   119
          " 0: hardware default, 1: none, 2-7: min-max, 8: don't touch")    \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   120
                                                                            \
22824
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   121
  product(bool, UseLoadInstructionsForStackBangingPPC64, false,             \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   122
          "Use load instructions for stack banging.")                       \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   123
                                                                            \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   124
  /* special instructions */                                                \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   125
                                                                            \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   126
  product(bool, UseCountLeadingZerosInstructionsPPC64, true,                \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   127
          "Use count leading zeros instructions.")                          \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   128
                                                                            \
52667
a959583eea01 8214205: PPC64: Add instructions for counting trailing zeros
mhorie
parents: 52460
diff changeset
   129
  product(bool, UseCountTrailingZerosInstructionsPPC64, false,              \
a959583eea01 8214205: PPC64: Add instructions for counting trailing zeros
mhorie
parents: 52460
diff changeset
   130
          "Use count trailing zeros instructions.")                         \
a959583eea01 8214205: PPC64: Add instructions for counting trailing zeros
mhorie
parents: 52460
diff changeset
   131
                                                                            \
22824
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   132
  product(bool, UseExtendedLoadAndReserveInstructionsPPC64, false,          \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   133
          "Use extended versions of load-and-reserve instructions.")        \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   134
                                                                            \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   135
  product(bool, UseRotateAndMaskInstructionsPPC64, true,                    \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   136
          "Use rotate and mask instructions.")                              \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   137
                                                                            \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   138
  product(bool, UseStaticBranchPredictionInCompareAndSwapPPC64, true,       \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   139
          "Use static branch prediction hints in CAS operations.")          \
22861
f5c393d456fc 8029940: PPC64 (part 122): C2 compiler port
goetz
parents: 22856
diff changeset
   140
  product(bool, UseStaticBranchPredictionForUncommonPathsPPC64, false,      \
f5c393d456fc 8029940: PPC64 (part 122): C2 compiler port
goetz
parents: 22856
diff changeset
   141
          "Use static branch prediction hints for uncommon paths.")         \
f5c393d456fc 8029940: PPC64 (part 122): C2 compiler port
goetz
parents: 22856
diff changeset
   142
                                                                            \
f5c393d456fc 8029940: PPC64 (part 122): C2 compiler port
goetz
parents: 22856
diff changeset
   143
  product(bool, UsePower6SchedulerPPC64, false,                             \
f5c393d456fc 8029940: PPC64 (part 122): C2 compiler port
goetz
parents: 22856
diff changeset
   144
          "Use Power6 Scheduler.")                                          \
f5c393d456fc 8029940: PPC64 (part 122): C2 compiler port
goetz
parents: 22856
diff changeset
   145
                                                                            \
f5c393d456fc 8029940: PPC64 (part 122): C2 compiler port
goetz
parents: 22856
diff changeset
   146
  product(bool, InsertEndGroupPPC64, false,                                 \
f5c393d456fc 8029940: PPC64 (part 122): C2 compiler port
goetz
parents: 22856
diff changeset
   147
          "Insert EndGroup instructions to optimize for Power6.")           \
22824
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   148
                                                                            \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   149
  /* Trap based checks. */                                                  \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   150
  /* Trap based checks use the ppc trap instructions to check certain */    \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   151
  /* conditions. This instruction raises a SIGTRAP caught by the      */    \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   152
  /* exception handler of the VM.                                     */    \
22852
1063026e8cee 8028471: PPC64 (part 215): opto: Extend ImplicitNullCheck optimization.
goetz
parents: 22841
diff changeset
   153
  product(bool, UseSIGTRAP, true,                                           \
22824
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   154
          "Allow trap instructions that make use of SIGTRAP. Use this to "  \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   155
          "switch off all optimizations requiring SIGTRAP.")                \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   156
  product(bool, TrapBasedICMissChecks, true,                                \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   157
          "Raise and handle SIGTRAP if inline cache miss detected.")        \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   158
  product(bool, TrapBasedNotEntrantChecks, true,                            \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   159
          "Raise and handle SIGTRAP if calling not entrant or zombie"       \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   160
          " method.")                                                       \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   161
  product(bool, TraceTraps, false, "Trace all traps the signal handler"     \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   162
          "handles.")                                                       \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   163
                                                                            \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   164
  product(bool, ZapMemory, false, "Write 0x0101... to empty memory."        \
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   165
          " Use this to ease debugging.")                                   \
30303
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   166
                                                                            \
46494
3fdd343bc5ea 8180612: [ppc] assert failure in cpu/ppc/vm/assembler_ppc.hpp due to immediate value out of range
lucy
parents: 42907
diff changeset
   167
  /* Use Restricted Transactional Memory for lock elision */                \
30303
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   168
  product(bool, UseRTMLocking, false,                                       \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   169
          "Enable RTM lock eliding for inflated locks in compiled code")    \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   170
                                                                            \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   171
  experimental(bool, UseRTMForStackLocks, false,                            \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   172
          "Enable RTM lock eliding for stack locks in compiled code")       \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   173
                                                                            \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   174
  product(bool, UseRTMDeopt, false,                                         \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   175
          "Perform deopt and recompilation based on RTM abort ratio")       \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   176
                                                                            \
46494
3fdd343bc5ea 8180612: [ppc] assert failure in cpu/ppc/vm/assembler_ppc.hpp due to immediate value out of range
lucy
parents: 42907
diff changeset
   177
  product(int, RTMRetryCount, 5,                                            \
30303
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   178
          "Number of RTM retries on lock abort or busy")                    \
46494
3fdd343bc5ea 8180612: [ppc] assert failure in cpu/ppc/vm/assembler_ppc.hpp due to immediate value out of range
lucy
parents: 42907
diff changeset
   179
          range(0, max_jint)                                                \
30303
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   180
                                                                            \
46494
3fdd343bc5ea 8180612: [ppc] assert failure in cpu/ppc/vm/assembler_ppc.hpp due to immediate value out of range
lucy
parents: 42907
diff changeset
   181
  experimental(int, RTMSpinLoopCount, 100,                                  \
30303
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   182
          "Spin count for lock to become free before RTM retry")            \
46494
3fdd343bc5ea 8180612: [ppc] assert failure in cpu/ppc/vm/assembler_ppc.hpp due to immediate value out of range
lucy
parents: 42907
diff changeset
   183
          range(0, 32767) /* immediate operand limit on ppc */              \
30303
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   184
                                                                            \
46494
3fdd343bc5ea 8180612: [ppc] assert failure in cpu/ppc/vm/assembler_ppc.hpp due to immediate value out of range
lucy
parents: 42907
diff changeset
   185
  experimental(int, RTMAbortThreshold, 1000,                                \
30303
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   186
          "Calculate abort ratio after this number of aborts")              \
46494
3fdd343bc5ea 8180612: [ppc] assert failure in cpu/ppc/vm/assembler_ppc.hpp due to immediate value out of range
lucy
parents: 42907
diff changeset
   187
          range(0, max_jint)                                                \
30303
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   188
                                                                            \
46494
3fdd343bc5ea 8180612: [ppc] assert failure in cpu/ppc/vm/assembler_ppc.hpp due to immediate value out of range
lucy
parents: 42907
diff changeset
   189
  experimental(int, RTMLockingThreshold, 10000,                             \
30303
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   190
          "Lock count at which to do RTM lock eliding without "             \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   191
          "abort ratio calculation")                                        \
46494
3fdd343bc5ea 8180612: [ppc] assert failure in cpu/ppc/vm/assembler_ppc.hpp due to immediate value out of range
lucy
parents: 42907
diff changeset
   192
          range(0, max_jint)                                                \
30303
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   193
                                                                            \
46494
3fdd343bc5ea 8180612: [ppc] assert failure in cpu/ppc/vm/assembler_ppc.hpp due to immediate value out of range
lucy
parents: 42907
diff changeset
   194
  experimental(int, RTMAbortRatio, 50,                                      \
30303
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   195
          "Lock abort ratio at which to stop use RTM lock eliding")         \
46698
fa625dca9270 8184800: Streamline RTM flag validity testing with generic flag testing support
goetz
parents: 46494
diff changeset
   196
          range(0, 100) /* natural range */                                 \
30303
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   197
                                                                            \
46494
3fdd343bc5ea 8180612: [ppc] assert failure in cpu/ppc/vm/assembler_ppc.hpp due to immediate value out of range
lucy
parents: 42907
diff changeset
   198
  experimental(int, RTMTotalCountIncrRate, 64,                              \
30303
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   199
          "Increment total RTM attempted lock count once every n times")    \
46494
3fdd343bc5ea 8180612: [ppc] assert failure in cpu/ppc/vm/assembler_ppc.hpp due to immediate value out of range
lucy
parents: 42907
diff changeset
   200
          range(1, 32767) /* immediate operand limit on ppc */              \
46698
fa625dca9270 8184800: Streamline RTM flag validity testing with generic flag testing support
goetz
parents: 46494
diff changeset
   201
          constraint(RTMTotalCountIncrRateConstraintFunc,AfterErgo)         \
30303
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   202
                                                                            \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   203
  experimental(intx, RTMLockingCalculationDelay, 0,                         \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   204
          "Number of milliseconds to wait before start calculating aborts " \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   205
          "for RTM locking")                                                \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   206
                                                                            \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   207
  experimental(bool, UseRTMXendForLockBusy, true,                           \
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 29697
diff changeset
   208
          "Use RTM Xend instead of Xabort when lock busy")                  \
22824
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   209
28258dd5cb2e 8019972: PPC64 (part 9): platform files for interpreter only VM.
goetz
parents:
diff changeset
   210
#endif // CPU_PPC_VM_GLOBALS_PPC_HPP