hotspot/src/share/vm/opto/c2_globals.hpp
author kvn
Wed, 04 May 2011 13:12:42 -0700
changeset 9446 748a37b25d10
parent 8921 14bfe81f2a9d
child 10565 dc90c239f4ec
permissions -rw-r--r--
5091921: Sign flip issues in loop optimizer Summary: Fix integer overflow problem in the code generated by loop optimizer. Reviewed-by: never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
8921
14bfe81f2a9d 7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents: 8732
diff changeset
     2
 * Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5249
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5249
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5249
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    25
#ifndef SHARE_VM_OPTO_C2_GLOBALS_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    26
#define SHARE_VM_OPTO_C2_GLOBALS_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    28
#include "runtime/globals.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    29
#ifdef TARGET_ARCH_x86
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    30
# include "c2_globals_x86.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    31
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    32
#ifdef TARGET_ARCH_sparc
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    33
# include "c2_globals_sparc.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    34
#endif
8107
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7433
diff changeset
    35
#ifdef TARGET_ARCH_arm
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7433
diff changeset
    36
# include "c2_globals_arm.hpp"
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7433
diff changeset
    37
#endif
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    38
#ifdef TARGET_OS_FAMILY_linux
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    39
# include "c2_globals_linux.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    40
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    41
#ifdef TARGET_OS_FAMILY_solaris
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    42
# include "c2_globals_solaris.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    43
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    44
#ifdef TARGET_OS_FAMILY_windows
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    45
# include "c2_globals_windows.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    46
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
    47
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// Defines all globals flags used by the server compiler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3685
diff changeset
    52
#define C2_FLAGS(develop, develop_pd, product, product_pd, diagnostic, experimental, notproduct) \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  notproduct(intx, CompileZapFirst, 0,                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
          "If +ZapDeadCompiledLocals, "                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
          "skip this many before compiling in zap calls")                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  notproduct(intx, CompileZapLast, -1,                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
          "If +ZapDeadCompiledLocals, "                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
          "compile this many after skipping (incl. skip count, -1 = all)")  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  notproduct(intx, ZapDeadCompiledLocalsFirst, 0,                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
          "If +ZapDeadCompiledLocals, "                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
          "skip this many before really doing it")                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  notproduct(intx, ZapDeadCompiledLocalsLast, -1,                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
          "If +ZapDeadCompiledLocals, "                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
          "do this many after skipping (incl. skip count, -1 = all)")       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  develop(intx, OptoPrologueNops, 0,                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
          "Insert this many extra nop instructions "                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
          "in the prologue of every nmethod")                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  product_pd(intx, InteriorEntryAlignment,                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
          "Code alignment for interior entry points "                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
          "in generated code (in bytes)")                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  product(intx, MaxLoopPad, (OptoLoopAlignment-1),                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
          "Align a loop if padding size in bytes is less or equal to this value") \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  product(intx, NumberOfLoopInstrToAlign, 4,                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
          "Number of first instructions in a loop to align")                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  notproduct(intx, IndexSetWatch, 0,                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
          "Trace all operations on this IndexSet (-1 means all, 0 none)")   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  develop(intx, OptoNodeListSize, 4,                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
          "Starting allocation size of Node_List data structures")          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  develop(intx, OptoBlockListSize, 8,                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
          "Starting allocation size of Block_List data structures")         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  develop(intx, OptoPeepholeAt, -1,                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
          "Apply peephole optimizations to this peephole rule")             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  notproduct(bool, PrintIdeal, false,                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
          "Print ideal graph before code generation")                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  notproduct(bool, PrintOpto, false,                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
          "Print compiler2 attempts")                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  notproduct(bool, PrintOptoInlining, false,                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
          "Print compiler2 inlining decisions")                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  notproduct(bool, VerifyOpto, false,                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
          "Apply more time consuming verification during compilation")      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  notproduct(bool, VerifyOptoOopOffsets, false,                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
          "Check types of base addresses in field references")              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  develop(bool, IdealizedNumerics, false,                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
          "Check performance difference allowing FP "                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
          "associativity and commutativity...")                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  develop(bool, OptoBreakpoint, false,                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
          "insert breakpoint at method entry")                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  notproduct(bool, OptoBreakpointOSR, false,                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
          "insert breakpoint at osr method entry")                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  notproduct(intx, BreakAtNode, 0,                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
          "Break at construction of this Node (either _idx or _debug_idx)") \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  notproduct(bool, OptoBreakpointC2R, false,                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
          "insert breakpoint at runtime stub entry")                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  notproduct(bool, OptoNoExecute, false,                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
          "Attempt to parse and compile but do not execute generated code") \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  notproduct(bool, PrintOptoStatistics, false,                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
          "Print New compiler statistics")                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  notproduct(bool, PrintOptoAssembly, false,                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
          "Print New compiler assembly output")                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  develop_pd(bool, OptoPeephole,                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
          "Apply peephole optimizations after register allocation")         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  develop(bool, OptoRemoveUseless, true,                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
          "Remove useless nodes after parsing")                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  notproduct(bool, PrintFrameConverterAssembly, false,                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
          "Print New compiler assembly output for frame converters")        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  notproduct(bool, PrintParseStatistics, false,                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
          "Print nodes, transforms and new values made per bytecode parsed")\
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  notproduct(bool, PrintOptoPeephole, false,                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
          "Print New compiler peephole replacements")                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  develop(bool, PrintCFGBlockFreq, false,                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
          "Print CFG block freqencies")                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  develop(bool, TraceOptoParse, false,                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
          "Trace bytecode parse and control-flow merge")                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  product_pd(intx,  LoopUnrollLimit,                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
          "Unroll loop bodies with node count less than this")              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  product(intx,  LoopUnrollMin, 4,                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
          "Minimum number of unroll loop bodies before checking progress"   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
          "of rounds of unroll,optimize,..")                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  develop(intx, UnrollLimitForProfileCheck, 1,                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
          "Don't use profile_trip_cnt() to restrict unrolling until "       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
          "unrolling would push the number of unrolled iterations above "   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
          "UnrollLimitForProfileCheck. A higher value allows more "         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
          "unrolling. Zero acts as a very large value." )                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  product(intx, MultiArrayExpandLimit, 6,                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
          "Maximum number of individual allocations in an inline-expanded " \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
          "multianewarray instruction")                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  notproduct(bool, TraceProfileTripCount, false,                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
          "Trace profile loop trip count information")                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
                                                                            \
4643
61c659c91c57 6894779: Loop Predication for Loop Optimizer in C2
cfang
parents: 4451
diff changeset
   177
  product(bool, UseLoopPredicate, true,                                     \
61c659c91c57 6894779: Loop Predication for Loop Optimizer in C2
cfang
parents: 4451
diff changeset
   178
          "Generate a predicate to select fast/slow loop versions")         \
61c659c91c57 6894779: Loop Predication for Loop Optimizer in C2
cfang
parents: 4451
diff changeset
   179
                                                                            \
61c659c91c57 6894779: Loop Predication for Loop Optimizer in C2
cfang
parents: 4451
diff changeset
   180
  develop(bool, TraceLoopPredicate, false,                                  \
61c659c91c57 6894779: Loop Predication for Loop Optimizer in C2
cfang
parents: 4451
diff changeset
   181
          "Trace generation of loop predicates")                            \
61c659c91c57 6894779: Loop Predication for Loop Optimizer in C2
cfang
parents: 4451
diff changeset
   182
                                                                            \
8732
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 8107
diff changeset
   183
  develop(bool, TraceLoopOpts, false,                                       \
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 8107
diff changeset
   184
          "Trace executed loop optimizations")                              \
16fc1c68714b 7008866: Missing loop predicate for loop with multiple entries
kvn
parents: 8107
diff changeset
   185
                                                                            \
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 8921
diff changeset
   186
  diagnostic(bool, LoopLimitCheck, true,                                    \
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 8921
diff changeset
   187
          "Generate a loop limits check for overflow")                      \
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 8921
diff changeset
   188
                                                                            \
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 8921
diff changeset
   189
  develop(bool, TraceLoopLimitCheck, false,                                 \
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 8921
diff changeset
   190
          "Trace generation of loop limits checks")                         \
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 8921
diff changeset
   191
                                                                            \
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 8921
diff changeset
   192
  diagnostic(bool, RangeLimitCheck, true,                                   \
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 8921
diff changeset
   193
          "Additional overflow checks during range check elimination")      \
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 8921
diff changeset
   194
                                                                            \
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 8921
diff changeset
   195
  develop(bool, TraceRangeLimitCheck, false,                                \
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 8921
diff changeset
   196
          "Trace additional overflow checks in RCE")                        \
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 8921
diff changeset
   197
                                                                            \
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 8921
diff changeset
   198
  diagnostic(bool, UnrollLimitCheck, true,                                  \
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 8921
diff changeset
   199
          "Additional overflow checks during loop unroll")                  \
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 8921
diff changeset
   200
                                                                            \
6433
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6272
diff changeset
   201
  product(bool, OptimizeFill, false,                                        \
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6272
diff changeset
   202
          "convert fill/copy loops into intrinsic")                         \
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6272
diff changeset
   203
                                                                            \
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6272
diff changeset
   204
  develop(bool, TraceOptimizeFill, false,                                   \
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6272
diff changeset
   205
          "print detailed information about fill conversion")               \
b0e4fafdc38b 4809552: Optimize Arrays.fill(...)
never
parents: 6272
diff changeset
   206
                                                                            \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  develop(bool, OptoCoalesce, true,                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
          "Use Conservative Copy Coalescing in the Register Allocator")     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  develop(bool, UseUniqueSubclasses, true,                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
          "Narrow an abstract reference to the unique concrete subclass")   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  develop(bool, UseExactTypes, true,                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
          "Use exact types to eliminate array store checks and v-calls")    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  product(intx, TrackedInitializationLimit, 50,                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
          "When initializing fields, track up to this many words")          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  product(bool, ReduceFieldZeroing, true,                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
          "When initializing fields, try to avoid needless zeroing")        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  product(bool, ReduceInitialCardMarks, true,                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
          "When initializing fields, try to avoid needless card marks")     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  product(bool, ReduceBulkZeroing, true,                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
          "When bulk-initializing, try to avoid needless zeroing")          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
                                                                            \
6272
94a20ad0e9de 6978249: spill between cpu and fpu registers when those moves are fast
never
parents: 6180
diff changeset
   228
  product(bool, UseFPUForSpilling, false,                                   \
94a20ad0e9de 6978249: spill between cpu and fpu registers when those moves are fast
never
parents: 6180
diff changeset
   229
          "Spill integer registers to FPU instead of stack when possible")  \
94a20ad0e9de 6978249: spill between cpu and fpu registers when those moves are fast
never
parents: 6180
diff changeset
   230
                                                                            \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  develop_pd(intx, RegisterCostAreaRatio,                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
          "Spill selection in reg allocator: scale area by (X/64K) before " \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
          "adding cost")                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  develop_pd(bool, UseCISCSpill,                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
          "Use ADLC supplied cisc instructions during allocation")          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  notproduct(bool, VerifyGraphEdges , false,                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
          "Verify Bi-directional Edges")                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  notproduct(bool, VerifyDUIterators, true,                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
          "Verify the safety of all iterations of Bi-directional Edges")    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  notproduct(bool, VerifyHashTableKeys, true,                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
          "Verify the immutability of keys in the VN hash tables")          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
                                                                            \
2014
5510e7394f2d 6782232: assert("CreateEx must be first instruction in block" )
kvn
parents: 1553
diff changeset
   247
  notproduct(bool, VerifyRegisterAllocator , false,                         \
5510e7394f2d 6782232: assert("CreateEx must be first instruction in block" )
kvn
parents: 1553
diff changeset
   248
          "Verify Register Allocator")                                      \
5510e7394f2d 6782232: assert("CreateEx must be first instruction in block" )
kvn
parents: 1553
diff changeset
   249
                                                                            \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  develop_pd(intx, FLOATPRESSURE,                                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
          "Number of float LRG's that constitute high register pressure")   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  develop_pd(intx, INTPRESSURE,                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
          "Number of integer LRG's that constitute high register pressure") \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  notproduct(bool, TraceOptoPipelining, false,                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
          "Trace pipelining information")                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  notproduct(bool, TraceOptoOutput, false,                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
          "Trace pipelining information")                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  product_pd(bool, OptoScheduling,                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
          "Instruction Scheduling after register allocation")               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  product(bool, PartialPeelLoop, true,                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
          "Partial peel (rotate) loops")                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  product(intx, PartialPeelNewPhiDelta, 0,                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
          "Additional phis that can be created by partial peeling")         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  notproduct(bool, TracePartialPeeling, false,                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
          "Trace partial peeling (loop rotation) information")              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  product(bool, PartialPeelAtUnsignedTests, true,                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
          "Partial peel at unsigned tests if no signed test exists")        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  product(bool, ReassociateInvariants, true,                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
          "Enable reassociation of expressions with loop invariants.")      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  product(bool, LoopUnswitching, true,                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
          "Enable loop unswitching (a form of invariant test hoisting)")    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  notproduct(bool, TraceLoopUnswitching, false,                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
          "Trace loop unswitching")                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  product(bool, UseSuperWord, true,                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
          "Transform scalar operations into superword operations")          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  develop(bool, SuperWordRTDepCheck, false,                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
          "Enable runtime dependency checks.")                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  product(bool, TraceSuperWord, false,                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
          "Trace superword transforms")                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  product_pd(bool, OptoBundling,                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
          "Generate nops to fill i-cache lines")                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  product_pd(intx, ConditionalMoveLimit,                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
          "Limit of ops to make speculative when using CMOVE")              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  /* Set BranchOnRegister == false. See 4965987. */                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  product(bool, BranchOnRegister, false,                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
          "Use Sparc V9 branch-on-register opcodes")                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  develop(bool, SparcV9RegsHiBitsZero, true,                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
          "Assume Sparc V9 I&L registers on V8+ systems are zero-extended") \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
                                                                            \
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
   308
  product(bool, UseRDPCForConstantTableBase, false,                         \
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
   309
          "Use Sparc RDPC instruction for the constant table base.")        \
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
   310
                                                                            \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  develop(intx, PrintIdealGraphLevel, 0,                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
          "Print ideal graph to XML file / network interface. "             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
          "By default attempts to connect to the visualizer on a socket.")  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  develop(intx, PrintIdealGraphPort, 4444,                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
          "Ideal graph printer to network port")                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
                                                                            \
1553
fc10c169d15d 6772413: code cleanup
kvn
parents: 1500
diff changeset
   318
  notproduct(ccstr, PrintIdealGraphAddress, "127.0.0.1",                    \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
          "IP address to connect to visualizer")                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
                                                                            \
1553
fc10c169d15d 6772413: code cleanup
kvn
parents: 1500
diff changeset
   321
  notproduct(ccstr, PrintIdealGraphFile, NULL,                              \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
          "File to dump ideal graph to.  If set overrides the "             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
          "use of the network")                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  product(bool, UseOldInlining, true,                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
          "Enable the 1.3 inlining strategy")                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  product(bool, UseBimorphicInlining, true,                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
          "Profiling based inlining for two receivers")                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  product(bool, UseOnlyInlinedBimorphic, true,                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
          "Don't use BimorphicInlining if can't inline a second method")    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  product(bool, InsertMemBarAfterArraycopy, true,                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
          "Insert memory barrier after arraycopy call")                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
                                                                            \
6180
53c1bf468c81 6973963: SEGV in ciBlock::start_bci() with EA
kvn
parents: 5547
diff changeset
   337
  develop(bool, SubsumeLoads, true,                                         \
53c1bf468c81 6973963: SEGV in ciBlock::start_bci() with EA
kvn
parents: 5547
diff changeset
   338
          "Attempt to compile while subsuming loads into machine instructions.") \
53c1bf468c81 6973963: SEGV in ciBlock::start_bci() with EA
kvn
parents: 5547
diff changeset
   339
                                                                            \
53c1bf468c81 6973963: SEGV in ciBlock::start_bci() with EA
kvn
parents: 5547
diff changeset
   340
  develop(bool, StressRecompilation, false,                                 \
53c1bf468c81 6973963: SEGV in ciBlock::start_bci() with EA
kvn
parents: 5547
diff changeset
   341
          "Recompile each compiled method without subsuming loads or escape analysis.") \
53c1bf468c81 6973963: SEGV in ciBlock::start_bci() with EA
kvn
parents: 5547
diff changeset
   342
                                                                            \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  /* controls for tier 1 compilations */                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  develop(bool, Tier1CountInvocations, true,                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
          "Generate code, during tier 1, to update invocation counter")     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  product(intx, Tier1Inline, false,                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
          "enable inlining during tier 1")                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  product(intx, Tier1MaxInlineSize, 8,                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
          "maximum bytecode size of a method to be inlined, during tier 1") \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  product(intx, Tier1FreqInlineSize, 35,                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
          "max bytecode size of a frequent method to be inlined, tier 1")   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  develop(intx, ImplicitNullCheckThreshold, 3,                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
          "Don't do implicit null checks if NPE's in a method exceeds limit") \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
 /* controls for loop optimization */                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  product(intx, Tier1LoopOptsCount, 0,                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
          "Set level of loop optimization for tier 1 compiles")             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  product(intx, LoopOptsCount, 43,                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
          "Set level of loop optimization for tier 1 compiles")             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  /* controls for heat-based inlining */                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  develop(intx, NodeCountInliningCutoff, 18000,                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
          "If parser node generation exceeds limit stop inlining")          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  develop(intx, NodeCountInliningStep, 1000,                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
          "Target size of warm calls inlined between optimization passes")  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  develop(bool, InlineWarmCalls, false,                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
          "Use a heat-based priority queue to govern inlining")             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  develop(intx, HotCallCountThreshold, 999999,                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
          "large numbers of calls (per method invocation) force hotness")   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  develop(intx, HotCallProfitThreshold, 999999,                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
          "highly profitable inlining opportunities force hotness")         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  develop(intx, HotCallTrivialWork, -1,                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
          "trivial execution time (no larger than this) forces hotness")    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  develop(intx, HotCallTrivialSize, -1,                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
          "trivial methods (no larger than this) force calls to be hot")    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  develop(intx, WarmCallMinCount, -1,                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
          "number of calls (per method invocation) to enable inlining")     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  develop(intx, WarmCallMinProfit, -1,                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
          "number of calls (per method invocation) to enable inlining")     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  develop(intx, WarmCallMaxWork, 999999,                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
          "execution time of the largest inlinable method")                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  develop(intx, WarmCallMaxSize, 999999,                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
          "size of the largest inlinable method")                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  product(intx, MaxNodeLimit, 65000,                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
          "Maximum number of nodes")                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  product(intx, NodeLimitFudgeFactor, 1000,                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
          "Fudge Factor for certain optimizations")                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  product(bool, UseJumpTables, true,                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
          "Use JumpTables instead of a binary search tree for switches")    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  product(bool, UseDivMod, true,                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
          "Use combined DivMod instruction if available")                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  product(intx, MinJumpTableSize, 18,                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
          "Minimum number of targets in a generated jump table")            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  product(intx, MaxJumpTableSize, 65000,                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
          "Maximum number of targets in a generated jump table")            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  product(intx, MaxJumpTableSparseness, 5,                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
          "Maximum sparseness for jumptables")                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  product(bool, EliminateLocks, true,                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
          "Coarsen locks when possible")                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  notproduct(bool, PrintLockStatistics, false,                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
          "Print precise statistics on the dynamic lock usage")             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  diagnostic(bool, PrintPreciseBiasedLockingStatistics, false,              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
          "Print per-lock-site statistics of biased locking in JVM")        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  notproduct(bool, PrintEliminateLocks, false,                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
          "Print out when locks are eliminated")                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
                                                                            \
190
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
   435
  diagnostic(bool, EliminateAutoBox, false,                                 \
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
   436
          "Private flag to control optimizations for autobox elimination")  \
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
   437
                                                                            \
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
   438
  product(intx, AutoBoxCacheMax, 128,                                       \
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
   439
          "Sets max value cached by the java.lang.Integer autobox cache")   \
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
   440
                                                                            \
3685
e14965d942e3 6873799: enable escape analysis by default
kvn
parents: 2340
diff changeset
   441
  product(bool, DoEscapeAnalysis, true,                                     \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
          "Perform escape analysis")                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  notproduct(bool, PrintEscapeAnalysis, false,                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
          "Print the results of escape analysis")                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  product(bool, EliminateAllocations, true,                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
          "Use escape analysis to eliminate allocations")                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
                                                                            \
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 190
diff changeset
   450
  notproduct(bool, PrintEliminateAllocations, false,                        \
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 190
diff changeset
   451
          "Print out when allocations are eliminated")                      \
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 190
diff changeset
   452
                                                                            \
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 190
diff changeset
   453
  product(intx, EliminateAllocationArraySizeLimit, 64,                      \
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 190
diff changeset
   454
          "Array size (number of elements) limit for scalar replacement")   \
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 190
diff changeset
   455
                                                                            \
2340
cb47f8209cd8 6810845: Performance regression in mpegaudio on x64
kvn
parents: 2105
diff changeset
   456
  product(bool, UseOptoBiasInlining, true,                                  \
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1498
diff changeset
   457
          "Generate biased locking code in C2 ideal graph")                 \
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1498
diff changeset
   458
                                                                            \
4451
dfc03acffc4c 6904191: OptimizeStringConcat should be product instead of experimental
cfang
parents: 4450
diff changeset
   459
  product(bool, OptimizeStringConcat, false,                                \
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3685
diff changeset
   460
          "Optimize the construction of Strings by StringBuilder")          \
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3685
diff changeset
   461
                                                                            \
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3685
diff changeset
   462
  notproduct(bool, PrintOptimizeStringConcat, false,                        \
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3685
diff changeset
   463
          "Print information about transformations performed on Strings")   \
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3685
diff changeset
   464
                                                                            \
961
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 953
diff changeset
   465
  product(intx, ValueSearchLimit, 1000,                                     \
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 953
diff changeset
   466
          "Recursion limit in PhaseMacroExpand::value_from_mem_phi")        \
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 953
diff changeset
   467
                                                                            \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  product(intx, MaxLabelRootDepth, 1100,                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
          "Maximum times call Label_Root to prevent stack overflow")        \
581
02338c8a1bcf 6701887: JDK7 server VM in endless loop in Node::dominates
kvn
parents: 238
diff changeset
   470
                                                                            \
02338c8a1bcf 6701887: JDK7 server VM in endless loop in Node::dominates
kvn
parents: 238
diff changeset
   471
  diagnostic(intx, DominatorSearchLimit, 1000,                              \
02338c8a1bcf 6701887: JDK7 server VM in endless loop in Node::dominates
kvn
parents: 238
diff changeset
   472
          "Iterations limit in Node::dominates")                            \
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 965
diff changeset
   473
                                                                            \
346bf226078e 6743900: frequency based block layout
rasbold
parents: 965
diff changeset
   474
  product(bool, BlockLayoutByFrequency, true,                               \
346bf226078e 6743900: frequency based block layout
rasbold
parents: 965
diff changeset
   475
          "Use edge frequencies to drive block ordering")                   \
346bf226078e 6743900: frequency based block layout
rasbold
parents: 965
diff changeset
   476
                                                                            \
346bf226078e 6743900: frequency based block layout
rasbold
parents: 965
diff changeset
   477
  product(intx, BlockLayoutMinDiamondPercentage, 20,                        \
346bf226078e 6743900: frequency based block layout
rasbold
parents: 965
diff changeset
   478
          "Miniumum %% of a successor (predecessor) for which block layout "\
346bf226078e 6743900: frequency based block layout
rasbold
parents: 965
diff changeset
   479
          "a will allow a fork (join) in a single chain")                   \
346bf226078e 6743900: frequency based block layout
rasbold
parents: 965
diff changeset
   480
                                                                            \
2340
cb47f8209cd8 6810845: Performance regression in mpegaudio on x64
kvn
parents: 2105
diff changeset
   481
  product(bool, BlockLayoutRotateLoops, true,                               \
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 965
diff changeset
   482
          "Allow back branches to be fall throughs in the block layour")    \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3685
diff changeset
   484
C2_FLAGS(DECLARE_DEVELOPER_FLAG, DECLARE_PD_DEVELOPER_FLAG, DECLARE_PRODUCT_FLAG, DECLARE_PD_PRODUCT_FLAG, DECLARE_DIAGNOSTIC_FLAG, DECLARE_EXPERIMENTAL_FLAG, DECLARE_NOTPRODUCT_FLAG)
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
   485
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6433
diff changeset
   486
#endif // SHARE_VM_OPTO_C2_GLOBALS_HPP