src/hotspot/share/compiler/compilerDefinitions.cpp
author stefank
Wed, 22 May 2019 13:06:31 +0200
changeset 54983 81becad91321
parent 54669 ad45b3802d4e
child 58367 b3ca57ddfc92
permissions -rw-r--r--
8224203: Remove need to specify type when using FLAG_SET macros Reviewed-by: rehn, pliden, coleenp
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
42040
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
     1
/*
53592
8da08ded586f 8217848: [Graal] vmTestbase/nsk/jvmti/ResourceExhausted/resexhausted003/TestDescription.java fails
iignatyev
parents: 52934
diff changeset
     2
 * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
42040
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
     4
 *
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
     7
 * published by the Free Software Foundation.
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
     8
 *
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
    13
 * accompanied this code).
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
    14
 *
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
    18
 *
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
    21
 * questions.
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
    22
 *
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
    23
 */
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
    24
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
    25
#include "precompiled.hpp"
52870
a76b7884b59a 8208277: Code cache heap (-XX:ReservedCodeCacheSize) doesn't work with 1GB LargePages
thartmann
parents: 51002
diff changeset
    26
#include "code/codeCache.hpp"
43455
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    27
#include "runtime/globals.hpp"
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    28
#include "runtime/globals_extension.hpp"
42040
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
    29
#include "compiler/compilerDefinitions.hpp"
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    30
#include "gc/shared/gcConfig.hpp"
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    31
#include "utilities/defaultStream.hpp"
42040
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
    32
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
    33
const char* compilertype2name_tab[compiler_number_of_types] = {
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
    34
  "",
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
    35
  "c1",
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
    36
  "c2",
47687
fb290fd1f9d4 8171853: Remove Shark compiler
rkennke
parents: 47216
diff changeset
    37
  "jvmci"
42040
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
diff changeset
    38
};
43455
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    39
47687
fb290fd1f9d4 8171853: Remove Shark compiler
rkennke
parents: 47216
diff changeset
    40
#if defined(COMPILER2)
43455
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    41
CompLevel  CompLevel_highest_tier      = CompLevel_full_optimization;  // pure C2 and tiered or JVMCI and tiered
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    42
#elif defined(COMPILER1)
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    43
CompLevel  CompLevel_highest_tier      = CompLevel_simple;             // pure C1 or JVMCI
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    44
#else
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    45
CompLevel  CompLevel_highest_tier      = CompLevel_none;
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    46
#endif
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    47
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    48
#if defined(TIERED)
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    49
CompLevel  CompLevel_initial_compile   = CompLevel_full_profile;        // tiered
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    50
#elif defined(COMPILER1) || INCLUDE_JVMCI
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    51
CompLevel  CompLevel_initial_compile   = CompLevel_simple;              // pure C1 or JVMCI
47687
fb290fd1f9d4 8171853: Remove Shark compiler
rkennke
parents: 47216
diff changeset
    52
#elif defined(COMPILER2)
43455
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    53
CompLevel  CompLevel_initial_compile   = CompLevel_full_optimization;   // pure C2
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    54
#else
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    55
CompLevel  CompLevel_initial_compile   = CompLevel_none;
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    56
#endif
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    57
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    58
#if defined(COMPILER2)
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    59
CompMode  Compilation_mode             = CompMode_server;
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    60
#elif defined(COMPILER1)
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    61
CompMode  Compilation_mode             = CompMode_client;
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    62
#else
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    63
CompMode  Compilation_mode             = CompMode_none;
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    64
#endif
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
    65
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    66
// Returns threshold scaled with CompileThresholdScaling
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    67
intx CompilerConfig::scaled_compile_threshold(intx threshold) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    68
  return scaled_compile_threshold(threshold, CompileThresholdScaling);
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    69
}
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    70
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    71
// Returns freq_log scaled with CompileThresholdScaling
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    72
intx CompilerConfig::scaled_freq_log(intx freq_log) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    73
  return scaled_freq_log(freq_log, CompileThresholdScaling);
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    74
}
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    75
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    76
// Returns threshold scaled with the value of scale.
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    77
// If scale < 0.0, threshold is returned without scaling.
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    78
intx CompilerConfig::scaled_compile_threshold(intx threshold, double scale) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    79
  if (scale == 1.0 || scale < 0.0) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    80
    return threshold;
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    81
  } else {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    82
    return (intx)(threshold * scale);
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    83
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    84
}
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    85
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    86
// Returns freq_log scaled with the value of scale.
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    87
// Returned values are in the range of [0, InvocationCounter::number_of_count_bits + 1].
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    88
// If scale < 0.0, freq_log is returned without scaling.
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    89
intx CompilerConfig::scaled_freq_log(intx freq_log, double scale) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    90
  // Check if scaling is necessary or if negative value was specified.
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    91
  if (scale == 1.0 || scale < 0.0) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    92
    return freq_log;
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    93
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    94
  // Check values to avoid calculating log2 of 0.
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    95
  if (scale == 0.0 || freq_log == 0) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    96
    return 0;
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    97
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    98
  // Determine the maximum notification frequency value currently supported.
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
    99
  // The largest mask value that the interpreter/C1 can handle is
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   100
  // of length InvocationCounter::number_of_count_bits. Mask values are always
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   101
  // one bit shorter then the value of the notification frequency. Set
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   102
  // max_freq_bits accordingly.
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   103
  intx max_freq_bits = InvocationCounter::number_of_count_bits + 1;
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   104
  intx scaled_freq = scaled_compile_threshold((intx)1 << freq_log, scale);
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   105
  if (scaled_freq == 0) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   106
    // Return 0 right away to avoid calculating log2 of 0.
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   107
    return 0;
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   108
  } else if (scaled_freq > nth_bit(max_freq_bits)) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   109
    return max_freq_bits;
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   110
  } else {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   111
    return log2_intptr(scaled_freq);
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   112
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   113
}
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   114
43455
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   115
#ifdef TIERED
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   116
void set_client_compilation_mode() {
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   117
  Compilation_mode = CompMode_client;
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   118
  CompLevel_highest_tier = CompLevel_simple;
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   119
  CompLevel_initial_compile = CompLevel_simple;
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   120
  FLAG_SET_ERGO(TieredCompilation, false);
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   121
  FLAG_SET_ERGO(ProfileInterpreter, false);
43455
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   122
#if INCLUDE_JVMCI
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   123
  FLAG_SET_ERGO(EnableJVMCI, false);
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   124
  FLAG_SET_ERGO(UseJVMCICompiler, false);
43455
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   125
#endif
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   126
#if INCLUDE_AOT
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   127
  FLAG_SET_ERGO(UseAOT, false);
43455
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   128
#endif
43473
3beee3e324cf 8173037: V [jvm.dll+0x2343fc] GraphBuilder::args_list_for_profiling+0x8c
jcm
parents: 43455
diff changeset
   129
  if (FLAG_IS_DEFAULT(NeverActAsServerClassMachine)) {
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   130
    FLAG_SET_ERGO(NeverActAsServerClassMachine, true);
43473
3beee3e324cf 8173037: V [jvm.dll+0x2343fc] GraphBuilder::args_list_for_profiling+0x8c
jcm
parents: 43455
diff changeset
   131
  }
43455
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   132
  if (FLAG_IS_DEFAULT(InitialCodeCacheSize)) {
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   133
    FLAG_SET_ERGO(InitialCodeCacheSize, 160*K);
43455
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   134
  }
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   135
  if (FLAG_IS_DEFAULT(ReservedCodeCacheSize)) {
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   136
    FLAG_SET_ERGO(ReservedCodeCacheSize, 32*M);
43455
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   137
  }
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   138
  if (FLAG_IS_DEFAULT(NonProfiledCodeHeapSize)) {
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   139
    FLAG_SET_ERGO(NonProfiledCodeHeapSize, 27*M);
43455
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   140
  }
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   141
  if (FLAG_IS_DEFAULT(ProfiledCodeHeapSize)) {
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   142
    FLAG_SET_ERGO(ProfiledCodeHeapSize, 0);
43455
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   143
  }
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   144
  if (FLAG_IS_DEFAULT(NonNMethodCodeHeapSize)) {
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   145
    FLAG_SET_ERGO(NonNMethodCodeHeapSize, 5*M);
43455
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   146
  }
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   147
  if (FLAG_IS_DEFAULT(CodeCacheExpansionSize)) {
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   148
    FLAG_SET_ERGO(CodeCacheExpansionSize, 32*K);
43455
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   149
  }
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   150
  if (FLAG_IS_DEFAULT(MetaspaceSize)) {
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   151
    FLAG_SET_ERGO(MetaspaceSize, MIN2(12*M, MaxMetaspaceSize));
43455
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   152
  }
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   153
  if (FLAG_IS_DEFAULT(MaxRAM)) {
44320
27047c8fa964 8176573: Do not use FLAG_SET_ERGO to update MaxRAM for emulated client
jcm
parents: 43473
diff changeset
   154
    // Do not use FLAG_SET_ERGO to update MaxRAM, as this will impact
27047c8fa964 8176573: Do not use FLAG_SET_ERGO to update MaxRAM for emulated client
jcm
parents: 43473
diff changeset
   155
    // heap setting done based on available phys_mem (see Arguments::set_heap_size).
27047c8fa964 8176573: Do not use FLAG_SET_ERGO to update MaxRAM for emulated client
jcm
parents: 43473
diff changeset
   156
    FLAG_SET_DEFAULT(MaxRAM, 1ULL*G);
43455
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   157
  }
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   158
  if (FLAG_IS_DEFAULT(CompileThreshold)) {
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   159
    FLAG_SET_ERGO(CompileThreshold, 1500);
43455
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   160
  }
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   161
  if (FLAG_IS_DEFAULT(OnStackReplacePercentage)) {
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   162
    FLAG_SET_ERGO(OnStackReplacePercentage, 933);
43455
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   163
  }
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   164
  if (FLAG_IS_DEFAULT(CICompilerCount)) {
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   165
    FLAG_SET_ERGO(CICompilerCount, 1);
43455
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   166
  }
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   167
}
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   168
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   169
bool compilation_mode_selected() {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   170
  return !FLAG_IS_DEFAULT(TieredCompilation) ||
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   171
         !FLAG_IS_DEFAULT(TieredStopAtLevel) ||
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   172
         !FLAG_IS_DEFAULT(UseAOT)
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   173
         JVMCI_ONLY(|| !FLAG_IS_DEFAULT(EnableJVMCI)
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   174
                    || !FLAG_IS_DEFAULT(UseJVMCICompiler));
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   175
}
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   176
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   177
void select_compilation_mode_ergonomically() {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   178
#if defined(_WINDOWS) && !defined(_LP64)
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   179
  if (FLAG_IS_DEFAULT(NeverActAsServerClassMachine)) {
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   180
    FLAG_SET_ERGO(NeverActAsServerClassMachine, true);
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   181
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   182
#endif
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   183
  if (NeverActAsServerClassMachine) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   184
    set_client_compilation_mode();
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   185
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   186
}
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   187
43455
96560cffef4d 8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents: 42040
diff changeset
   188
#endif // TIERED
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   189
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   190
void CompilerConfig::set_tiered_flags() {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   191
  // With tiered, set default policy to SimpleThresholdPolicy, which is 2.
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   192
  if (FLAG_IS_DEFAULT(CompilationPolicyChoice)) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   193
    FLAG_SET_DEFAULT(CompilationPolicyChoice, 2);
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   194
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   195
  if (CompilationPolicyChoice < 2) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   196
    vm_exit_during_initialization(
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   197
      "Incompatible compilation policy selected", NULL);
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   198
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   199
  // Increase the code cache size - tiered compiles a lot more.
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   200
  if (FLAG_IS_DEFAULT(ReservedCodeCacheSize)) {
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   201
    FLAG_SET_ERGO(ReservedCodeCacheSize,
50676
8c0a5b51559b 8203030: Zero s390 31 bit size_t type conflicts in shared code
chrisphi
parents: 50589
diff changeset
   202
                  MIN2(CODE_CACHE_DEFAULT_LIMIT, (size_t)ReservedCodeCacheSize * 5));
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   203
  }
52870
a76b7884b59a 8208277: Code cache heap (-XX:ReservedCodeCacheSize) doesn't work with 1GB LargePages
thartmann
parents: 51002
diff changeset
   204
  // Enable SegmentedCodeCache if TieredCompilation is enabled, ReservedCodeCacheSize >= 240M
a76b7884b59a 8208277: Code cache heap (-XX:ReservedCodeCacheSize) doesn't work with 1GB LargePages
thartmann
parents: 51002
diff changeset
   205
  // and the code cache contains at least 8 pages (segmentation disables advantage of huge pages).
a76b7884b59a 8208277: Code cache heap (-XX:ReservedCodeCacheSize) doesn't work with 1GB LargePages
thartmann
parents: 51002
diff changeset
   206
  if (FLAG_IS_DEFAULT(SegmentedCodeCache) && ReservedCodeCacheSize >= 240*M &&
a76b7884b59a 8208277: Code cache heap (-XX:ReservedCodeCacheSize) doesn't work with 1GB LargePages
thartmann
parents: 51002
diff changeset
   207
      8 * CodeCache::page_size() <= ReservedCodeCacheSize) {
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   208
    FLAG_SET_ERGO(SegmentedCodeCache, true);
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   209
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   210
  if (!UseInterpreter) { // -Xcomp
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   211
    Tier3InvokeNotifyFreqLog = 0;
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   212
    Tier4InvocationThreshold = 0;
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   213
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   214
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   215
  if (CompileThresholdScaling < 0) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   216
    vm_exit_during_initialization("Negative value specified for CompileThresholdScaling", NULL);
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   217
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   218
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   219
  // Scale tiered compilation thresholds.
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   220
  // CompileThresholdScaling == 0.0 is equivalent to -Xint and leaves compilation thresholds unchanged.
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   221
  if (!FLAG_IS_DEFAULT(CompileThresholdScaling) && CompileThresholdScaling > 0.0) {
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   222
    FLAG_SET_ERGO(Tier0InvokeNotifyFreqLog, scaled_freq_log(Tier0InvokeNotifyFreqLog));
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   223
    FLAG_SET_ERGO(Tier0BackedgeNotifyFreqLog, scaled_freq_log(Tier0BackedgeNotifyFreqLog));
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   224
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   225
    FLAG_SET_ERGO(Tier3InvocationThreshold, scaled_compile_threshold(Tier3InvocationThreshold));
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   226
    FLAG_SET_ERGO(Tier3MinInvocationThreshold, scaled_compile_threshold(Tier3MinInvocationThreshold));
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   227
    FLAG_SET_ERGO(Tier3CompileThreshold, scaled_compile_threshold(Tier3CompileThreshold));
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   228
    FLAG_SET_ERGO(Tier3BackEdgeThreshold, scaled_compile_threshold(Tier3BackEdgeThreshold));
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   229
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   230
    // Tier2{Invocation,MinInvocation,Compile,Backedge}Threshold should be scaled here
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   231
    // once these thresholds become supported.
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   232
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   233
    FLAG_SET_ERGO(Tier2InvokeNotifyFreqLog, scaled_freq_log(Tier2InvokeNotifyFreqLog));
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   234
    FLAG_SET_ERGO(Tier2BackedgeNotifyFreqLog, scaled_freq_log(Tier2BackedgeNotifyFreqLog));
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   235
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   236
    FLAG_SET_ERGO(Tier3InvokeNotifyFreqLog, scaled_freq_log(Tier3InvokeNotifyFreqLog));
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   237
    FLAG_SET_ERGO(Tier3BackedgeNotifyFreqLog, scaled_freq_log(Tier3BackedgeNotifyFreqLog));
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   238
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   239
    FLAG_SET_ERGO(Tier23InlineeNotifyFreqLog, scaled_freq_log(Tier23InlineeNotifyFreqLog));
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   240
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   241
    FLAG_SET_ERGO(Tier4InvocationThreshold, scaled_compile_threshold(Tier4InvocationThreshold));
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   242
    FLAG_SET_ERGO(Tier4MinInvocationThreshold, scaled_compile_threshold(Tier4MinInvocationThreshold));
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   243
    FLAG_SET_ERGO(Tier4CompileThreshold, scaled_compile_threshold(Tier4CompileThreshold));
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   244
    FLAG_SET_ERGO(Tier4BackEdgeThreshold, scaled_compile_threshold(Tier4BackEdgeThreshold));
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   245
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   246
}
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   247
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   248
#if INCLUDE_JVMCI
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   249
void set_jvmci_specific_flags() {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   250
  if (UseJVMCICompiler) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   251
    Compilation_mode = CompMode_server;
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   252
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   253
    if (FLAG_IS_DEFAULT(TypeProfileWidth)) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   254
      FLAG_SET_DEFAULT(TypeProfileWidth, 8);
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   255
    }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   256
    if (TieredStopAtLevel != CompLevel_full_optimization) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   257
      // Currently JVMCI compiler can only work at the full optimization level
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   258
      warning("forcing TieredStopAtLevel to full optimization because JVMCI is enabled");
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   259
      FLAG_SET_ERGO(TieredStopAtLevel, CompLevel_full_optimization);
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   260
    }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   261
    if (FLAG_IS_DEFAULT(TypeProfileLevel)) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   262
      FLAG_SET_DEFAULT(TypeProfileLevel, 0);
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   263
    }
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   264
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   265
    if (UseJVMCINativeLibrary) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   266
      // SVM compiled code requires more stack space
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   267
      if (FLAG_IS_DEFAULT(CompilerThreadStackSize)) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   268
        // Duplicate logic in the implementations of os::create_thread
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   269
        // so that we can then double the computed stack size. Once
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   270
        // the stack size requirements of SVM are better understood,
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   271
        // this logic can be pushed down into os::create_thread.
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   272
        int stack_size = CompilerThreadStackSize;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   273
        if (stack_size == 0) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   274
          stack_size = VMThreadStackSize;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   275
        }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   276
        if (stack_size != 0) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   277
          FLAG_SET_DEFAULT(CompilerThreadStackSize, stack_size * 2);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   278
        }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   279
      }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   280
    } else {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   281
      // Adjust the on stack replacement percentage to avoid early
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   282
      // OSR compilations while JVMCI itself is warming up
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   283
      if (FLAG_IS_DEFAULT(OnStackReplacePercentage)) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   284
        FLAG_SET_DEFAULT(OnStackReplacePercentage, 933);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   285
      }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   286
      // JVMCI needs values not less than defaults
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   287
      if (FLAG_IS_DEFAULT(ReservedCodeCacheSize)) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   288
        FLAG_SET_DEFAULT(ReservedCodeCacheSize, MAX2(64*M, ReservedCodeCacheSize));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   289
      }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   290
      if (FLAG_IS_DEFAULT(InitialCodeCacheSize)) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   291
        FLAG_SET_DEFAULT(InitialCodeCacheSize, MAX2(16*M, InitialCodeCacheSize));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   292
      }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   293
      if (FLAG_IS_DEFAULT(MetaspaceSize)) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   294
        FLAG_SET_DEFAULT(MetaspaceSize, MIN2(MAX2(12*M, MetaspaceSize), MaxMetaspaceSize));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   295
      }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   296
      if (FLAG_IS_DEFAULT(NewSizeThreadIncrease)) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   297
        FLAG_SET_DEFAULT(NewSizeThreadIncrease, MAX2(4*K, NewSizeThreadIncrease));
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   298
      }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   299
    } // !UseJVMCINativeLibrary
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   300
  } // UseJVMCICompiler
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   301
}
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   302
#endif // INCLUDE_JVMCI
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   303
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   304
bool CompilerConfig::check_args_consistency(bool status) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   305
  // Check lower bounds of the code cache
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   306
  // Template Interpreter code is approximately 3X larger in debug builds.
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   307
  uint min_code_cache_size = CodeCacheMinimumUseSpace DEBUG_ONLY(* 3);
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   308
  if (ReservedCodeCacheSize < InitialCodeCacheSize) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   309
    jio_fprintf(defaultStream::error_stream(),
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   310
                "Invalid ReservedCodeCacheSize: %dK. Must be at least InitialCodeCacheSize=%dK.\n",
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   311
                ReservedCodeCacheSize/K, InitialCodeCacheSize/K);
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   312
    status = false;
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   313
  } else if (ReservedCodeCacheSize < min_code_cache_size) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   314
    jio_fprintf(defaultStream::error_stream(),
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   315
                "Invalid ReservedCodeCacheSize=%dK. Must be at least %uK.\n", ReservedCodeCacheSize/K,
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   316
                min_code_cache_size/K);
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   317
    status = false;
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   318
  } else if (ReservedCodeCacheSize > CODE_CACHE_SIZE_LIMIT) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   319
    // Code cache size larger than CODE_CACHE_SIZE_LIMIT is not supported.
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   320
    jio_fprintf(defaultStream::error_stream(),
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   321
                "Invalid ReservedCodeCacheSize=%dM. Must be at most %uM.\n", ReservedCodeCacheSize/M,
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   322
                CODE_CACHE_SIZE_LIMIT/M);
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   323
    status = false;
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   324
  } else if (NonNMethodCodeHeapSize < min_code_cache_size) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   325
    jio_fprintf(defaultStream::error_stream(),
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   326
                "Invalid NonNMethodCodeHeapSize=%dK. Must be at least %uK.\n", NonNMethodCodeHeapSize/K,
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   327
                min_code_cache_size/K);
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   328
    status = false;
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   329
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   330
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   331
#ifdef _LP64
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   332
  if (!FLAG_IS_DEFAULT(CICompilerCount) && !FLAG_IS_DEFAULT(CICompilerCountPerCPU) && CICompilerCountPerCPU) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   333
    warning("The VM option CICompilerCountPerCPU overrides CICompilerCount.");
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   334
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   335
#endif
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   336
52934
8deeb7bba516 8214917: CTW testlibrary shouldn't ignore errors raised by the library itself
iignatyev
parents: 52870
diff changeset
   337
  if (BackgroundCompilation && ReplayCompiles) {
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   338
    if (!FLAG_IS_DEFAULT(BackgroundCompilation)) {
52934
8deeb7bba516 8214917: CTW testlibrary shouldn't ignore errors raised by the library itself
iignatyev
parents: 52870
diff changeset
   339
      warning("BackgroundCompilation disabled due to ReplayCompiles option.");
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   340
    }
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   341
    FLAG_SET_CMDLINE(BackgroundCompilation, false);
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   342
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   343
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   344
#ifdef COMPILER2
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   345
  if (PostLoopMultiversioning && !RangeCheckElimination) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   346
    if (!FLAG_IS_DEFAULT(PostLoopMultiversioning)) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   347
      warning("PostLoopMultiversioning disabled because RangeCheckElimination is disabled.");
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   348
    }
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   349
    FLAG_SET_CMDLINE(PostLoopMultiversioning, false);
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   350
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   351
  if (UseCountedLoopSafepoints && LoopStripMiningIter == 0) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   352
    if (!FLAG_IS_DEFAULT(UseCountedLoopSafepoints) || !FLAG_IS_DEFAULT(LoopStripMiningIter)) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   353
      warning("When counted loop safepoints are enabled, LoopStripMiningIter must be at least 1 (a safepoint every 1 iteration): setting it to 1");
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   354
    }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   355
    LoopStripMiningIter = 1;
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   356
  } else if (!UseCountedLoopSafepoints && LoopStripMiningIter > 0) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   357
    if (!FLAG_IS_DEFAULT(UseCountedLoopSafepoints) || !FLAG_IS_DEFAULT(LoopStripMiningIter)) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   358
      warning("Disabling counted safepoints implies no loop strip mining: setting LoopStripMiningIter to 0");
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   359
    }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   360
    LoopStripMiningIter = 0;
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   361
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   362
#endif // COMPILER2
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   363
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   364
  if (Arguments::is_interpreter_only()) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   365
    if (UseCompiler) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   366
      if (!FLAG_IS_DEFAULT(UseCompiler)) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   367
        warning("UseCompiler disabled due to -Xint.");
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   368
      }
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   369
      FLAG_SET_CMDLINE(UseCompiler, false);
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   370
    }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   371
    if (ProfileInterpreter) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   372
      if (!FLAG_IS_DEFAULT(ProfileInterpreter)) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   373
        warning("ProfileInterpreter disabled due to -Xint.");
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   374
      }
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   375
      FLAG_SET_CMDLINE(ProfileInterpreter, false);
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   376
    }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   377
    if (TieredCompilation) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   378
      if (!FLAG_IS_DEFAULT(TieredCompilation)) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   379
        warning("TieredCompilation disabled due to -Xint.");
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   380
      }
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   381
      FLAG_SET_CMDLINE(TieredCompilation, false);
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   382
    }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   383
#if INCLUDE_JVMCI
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   384
    if (EnableJVMCI) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   385
      if (!FLAG_IS_DEFAULT(EnableJVMCI) || !FLAG_IS_DEFAULT(UseJVMCICompiler)) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   386
        warning("JVMCI Compiler disabled due to -Xint.");
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   387
      }
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   388
      FLAG_SET_CMDLINE(EnableJVMCI, false);
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   389
      FLAG_SET_CMDLINE(UseJVMCICompiler, false);
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   390
    }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   391
#endif
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   392
  } else {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   393
#if INCLUDE_JVMCI
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   394
    status = status && JVMCIGlobals::check_jvmci_flags_are_consistent();
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   395
#endif
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   396
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   397
  return status;
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   398
}
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   399
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   400
void CompilerConfig::ergo_initialize() {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   401
  if (Arguments::is_interpreter_only()) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   402
    return; // Nothing to do.
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   403
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   404
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   405
#ifdef TIERED
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   406
  if (!compilation_mode_selected()) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   407
    select_compilation_mode_ergonomically();
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   408
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   409
#endif
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   410
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   411
#if INCLUDE_JVMCI
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   412
  // Check that JVMCI compiler supports selested GC.
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   413
  // Should be done after GCConfig::initialize() was called.
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   414
  JVMCIGlobals::check_jvmci_supported_gc();
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   415
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 53592
diff changeset
   416
  // Do JVMCI specific settings
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   417
  set_jvmci_specific_flags();
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   418
#endif
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   419
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   420
  if (TieredCompilation) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   421
    set_tiered_flags();
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   422
  } else {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   423
    int max_compilation_policy_choice = 1;
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   424
#ifdef COMPILER2
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   425
    if (is_server_compilation_mode_vm()) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   426
      max_compilation_policy_choice = 2;
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   427
    }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   428
#endif
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   429
    // Check if the policy is valid.
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   430
    if (CompilationPolicyChoice >= max_compilation_policy_choice) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   431
      vm_exit_during_initialization(
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   432
        "Incompatible compilation policy selected", NULL);
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   433
    }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   434
    // Scale CompileThreshold
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   435
    // CompileThresholdScaling == 0.0 is equivalent to -Xint and leaves CompileThreshold unchanged.
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   436
    if (!FLAG_IS_DEFAULT(CompileThresholdScaling) && CompileThresholdScaling > 0.0) {
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   437
      FLAG_SET_ERGO(CompileThreshold, scaled_compile_threshold(CompileThreshold));
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   438
    }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   439
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   440
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   441
  if (UseOnStackReplacement && !UseLoopCounter) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   442
    warning("On-stack-replacement requires loop counters; enabling loop counters");
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   443
    FLAG_SET_DEFAULT(UseLoopCounter, true);
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   444
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   445
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   446
#ifdef COMPILER2
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   447
  if (!EliminateLocks) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   448
    EliminateNestedLocks = false;
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   449
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   450
  if (!Inline) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   451
    IncrementalInline = false;
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   452
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   453
#ifndef PRODUCT
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   454
  if (!IncrementalInline) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   455
    AlwaysIncrementalInline = false;
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   456
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   457
  if (PrintIdealGraphLevel > 0) {
54983
81becad91321 8224203: Remove need to specify type when using FLAG_SET macros
stefank
parents: 54669
diff changeset
   458
    FLAG_SET_ERGO(PrintIdealGraph, true);
50589
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   459
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   460
#endif
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   461
  if (!UseTypeSpeculation && FLAG_IS_DEFAULT(TypeProfileLevel)) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   462
    // nothing to use the profiling, turn if off
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   463
    FLAG_SET_DEFAULT(TypeProfileLevel, 0);
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   464
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   465
  if (!FLAG_IS_DEFAULT(OptoLoopAlignment) && FLAG_IS_DEFAULT(MaxLoopPad)) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   466
    FLAG_SET_DEFAULT(MaxLoopPad, OptoLoopAlignment-1);
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   467
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   468
  if (FLAG_IS_DEFAULT(LoopStripMiningIterShortLoop)) {
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   469
    // blind guess
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   470
    LoopStripMiningIterShortLoop = LoopStripMiningIter / 10;
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   471
  }
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   472
#endif // COMPILER2
e5d741569070 8184349: There should be some verification that EnableJVMCI is disabled if a GC not supporting JVMCI is selected
kvn
parents: 47687
diff changeset
   473
}