src/hotspot/share/compiler/compileBroker.hpp
author mdoerr
Mon, 21 Oct 2019 19:58:16 +0200
changeset 59050 7bbaa3c416e7
parent 55294 3493c1bc59fd
child 59125 5ac4a49f5399
permissions -rw-r--r--
8230459: Test failed to resume JVMCI CompilerThread Reviewed-by: dholmes, kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52605
diff changeset
     2
 * Copyright (c) 1999, 2019, 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: 5402
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5402
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: 5402
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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52605
diff changeset
    25
#ifndef SHARE_COMPILER_COMPILEBROKER_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52605
diff changeset
    26
#define SHARE_COMPILER_COMPILEBROKER_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    28
#include "ci/compilerInterface.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    29
#include "compiler/abstractCompiler.hpp"
32582
56619bb8bcaa 8135067: Preparatory refactorings for compiler control
neliasso
parents: 31981
diff changeset
    30
#include "compiler/compileTask.hpp"
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33168
diff changeset
    31
#include "compiler/compilerDirectives.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    32
#include "runtime/perfData.hpp"
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33168
diff changeset
    33
#include "utilities/stack.hpp"
35845
30025047885d 8148507: [JVMCI] mitigate deadlocks related to JVMCI compiler under -Xbatch
dnsimon
parents: 35825
diff changeset
    34
#if INCLUDE_JVMCI
30025047885d 8148507: [JVMCI] mitigate deadlocks related to JVMCI compiler under -Xbatch
dnsimon
parents: 35825
diff changeset
    35
#include "jvmci/jvmciCompiler.hpp"
30025047885d 8148507: [JVMCI] mitigate deadlocks related to JVMCI compiler under -Xbatch
dnsimon
parents: 35825
diff changeset
    36
#endif
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    37
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
class nmethod;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
class nmethodLocker;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// CompilerCounters
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// Per Compiler Performance Counters.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
//
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11636
diff changeset
    45
class CompilerCounters : public CHeapObj<mtCompiler> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
      cmname_buffer_length = 160
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    char _current_method[cmname_buffer_length];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    int  _compile_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  public:
33168
20f107826ae8 8134607: Remove per-compiler performance counters
redestad
parents: 33160
diff changeset
    58
    CompilerCounters();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    // these methods should be called in a thread safe context
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    void set_current_method(const char* method) {
30281
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 27701
diff changeset
    63
      strncpy(_current_method, method, (size_t)cmname_buffer_length-1);
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 27701
diff changeset
    64
      _current_method[cmname_buffer_length-1] = '\0';
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    char* current_method()                  { return _current_method; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    void set_compile_type(int compile_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
      _compile_type = compile_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    int compile_type()                       { return _compile_type; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
// CompileQueue
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
// A list of CompileTasks.
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11636
diff changeset
    80
class CompileQueue : public CHeapObj<mtCompiler> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  const char* _name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  CompileTask* _first;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  CompileTask* _last;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
24443
7aaf1b306b55 8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents: 24321
diff changeset
    87
  CompileTask* _first_stale;
7aaf1b306b55 8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents: 24321
diff changeset
    88
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
    89
  int _size;
24443
7aaf1b306b55 8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents: 24321
diff changeset
    90
7aaf1b306b55 8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents: 24321
diff changeset
    91
  void purge_stale_tasks();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
 public:
27696
c43940b3cf78 8061256: com/sun/management/DiagnosticCommandMBean/DcmdMBeanPermissionsTest.java timed out
neliasso
parents: 27464
diff changeset
    93
  CompileQueue(const char* name) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    _name = name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    _first = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    _last = NULL;
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
    97
    _size = 0;
24443
7aaf1b306b55 8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents: 24321
diff changeset
    98
    _first_stale = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  const char*  name() const                      { return _name; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  void         add(CompileTask* task);
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   104
  void         remove(CompileTask* task);
24443
7aaf1b306b55 8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents: 24321
diff changeset
   105
  void         remove_and_mark_stale(CompileTask* task);
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   106
  CompileTask* first()                           { return _first; }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   107
  CompileTask* last()                            { return _last;  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  CompileTask* get();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  bool         is_empty() const                  { return _first == NULL; }
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   112
  int          size()     const                  { return _size;          }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
24443
7aaf1b306b55 8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents: 24321
diff changeset
   114
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   115
  // Redefine Classes support
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   116
  void mark_on_stack();
24321
621f7e09fc0a 8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents: 22247
diff changeset
   117
  void free_all();
26587
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25642
diff changeset
   118
  void print_tty();
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25642
diff changeset
   119
  void print(outputStream* st = tty);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   120
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 18025
diff changeset
   121
  ~CompileQueue() {
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 18025
diff changeset
   122
    assert (is_empty(), " Compile Queue must be empty");
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 18025
diff changeset
   123
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   126
// CompileTaskWrapper
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   127
//
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   128
// Assign this task to the current thread.  Deallocate the task
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   129
// when the compilation is complete.
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   130
class CompileTaskWrapper : StackObj {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   131
public:
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   132
  CompileTaskWrapper(CompileTask* task);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   133
  ~CompileTaskWrapper();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   134
};
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   135
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
// Compilation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
// The broker for all compilation requests.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
class CompileBroker: AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
 friend class Threads;
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33168
diff changeset
   141
 friend class CompileTaskWrapper;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    name_buffer_length = 100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  // Compile type Information for print_last_compile() and CompilerCounters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  enum { no_compile, normal_compile, osr_compile, native_compile };
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33168
diff changeset
   150
  static int assign_compile_id (const methodHandle& method, int osr_bci);
22247
cde20a0fa906 8022494: Make compilation IDs sequential
anoll
parents: 21575
diff changeset
   151
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  static bool _initialized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  static volatile bool _should_block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   157
  // This flag can be used to stop compilation or turn it back on
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   158
  static volatile jint _should_compile_new_jobs;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   159
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // The installed compiler(s)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  static AbstractCompiler* _compilers[2];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
49848
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   163
  // The maximum numbers of compiler threads to be determined during startup.
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   164
  static int _c1_count, _c2_count;
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   165
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   166
  // An array of compiler thread Java objects
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   167
  static jobject *_compiler1_objects, *_compiler2_objects;
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   168
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   169
  // An array of compiler logs
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   170
  static CompileLog **_compiler1_logs, **_compiler2_logs;
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   171
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  // These counters are used for assigning id's to each compilation
22247
cde20a0fa906 8022494: Make compilation IDs sequential
anoll
parents: 21575
diff changeset
   173
  static volatile jint _compilation_id;
cde20a0fa906 8022494: Make compilation IDs sequential
anoll
parents: 21575
diff changeset
   174
  static volatile jint _osr_compilation_id;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
24321
621f7e09fc0a 8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents: 22247
diff changeset
   176
  static CompileQueue* _c2_compile_queue;
621f7e09fc0a 8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents: 22247
diff changeset
   177
  static CompileQueue* _c1_compile_queue;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  // performance counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  static PerfCounter* _perf_total_compilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  static PerfCounter* _perf_native_compilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  static PerfCounter* _perf_osr_compilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  static PerfCounter* _perf_standard_compilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  static PerfCounter* _perf_total_bailout_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  static PerfCounter* _perf_total_invalidated_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  static PerfCounter* _perf_total_compile_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  static PerfCounter* _perf_total_native_compile_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  static PerfCounter* _perf_total_osr_compile_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  static PerfCounter* _perf_total_standard_compile_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  static PerfCounter* _perf_sum_osr_bytes_compiled;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  static PerfCounter* _perf_sum_standard_bytes_compiled;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  static PerfCounter* _perf_sum_nmethod_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  static PerfCounter* _perf_sum_nmethod_code_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  static PerfStringVariable* _perf_last_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  static PerfStringVariable* _perf_last_failed_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  static PerfStringVariable* _perf_last_invalidated_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  static PerfVariable*       _perf_last_compile_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  static PerfVariable*       _perf_last_compile_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  static PerfVariable*       _perf_last_failed_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  static PerfVariable*       _perf_last_invalidated_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  // Timers and counters for generating statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  static elapsedTimer _t_total_compilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  static elapsedTimer _t_osr_compilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  static elapsedTimer _t_standard_compilation;
26913
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26796
diff changeset
   209
  static elapsedTimer _t_invalidated_compilation;
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26796
diff changeset
   210
  static elapsedTimer _t_bailedout_compilation;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16372
diff changeset
   212
  static int _total_compile_count;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  static int _total_bailout_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  static int _total_invalidated_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  static int _total_native_compile_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  static int _total_osr_compile_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  static int _total_standard_compile_count;
50515
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50113
diff changeset
   218
  static int _total_compiler_stopped_count;
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50113
diff changeset
   219
  static int _total_compiler_restarted_count;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  static int _sum_osr_bytes_compiled;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  static int _sum_standard_bytes_compiled;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  static int _sum_nmethod_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  static int _sum_nmethod_code_size;
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16372
diff changeset
   224
  static long _peak_compilation_time;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
47765
b7c7428eaab9 8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents: 47578
diff changeset
   226
  static volatile int _print_compilation_warning;
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20707
diff changeset
   227
49848
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   228
  static Handle create_thread_oop(const char* name, TRAPS);
52369
52f892f43a05 8213014: Crash in CompileBroker::make_thread due to OOM
thartmann
parents: 50515
diff changeset
   229
  static JavaThread* make_thread(jobject thread_oop, CompileQueue* queue, AbstractCompiler* comp, TRAPS);
49848
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   230
  static void init_compiler_sweeper_threads();
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   231
  static void possibly_add_compiler_threads();
36597
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 35845
diff changeset
   232
  static bool compilation_is_prohibited(const methodHandle& method, int osr_bci, int comp_level, bool excluded);
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33168
diff changeset
   233
  static void preload_classes          (const methodHandle& method, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
33626
jwilhelm
parents: 33593 33451
diff changeset
   235
  static CompileTask* create_compile_task(CompileQueue*       queue,
jwilhelm
parents: 33593 33451
diff changeset
   236
                                          int                 compile_id,
jwilhelm
parents: 33593 33451
diff changeset
   237
                                          const methodHandle& method,
jwilhelm
parents: 33593 33451
diff changeset
   238
                                          int                 osr_bci,
jwilhelm
parents: 33593 33451
diff changeset
   239
                                          int                 comp_level,
jwilhelm
parents: 33593 33451
diff changeset
   240
                                          const methodHandle& hot_method,
jwilhelm
parents: 33593 33451
diff changeset
   241
                                          int                 hot_count,
38218
f5ba1dea04eb 8153013: BlockingCompilation test times out
neliasso
parents: 36597
diff changeset
   242
                                          CompileTask::CompileReason compile_reason,
33626
jwilhelm
parents: 33593 33451
diff changeset
   243
                                          bool                blocking);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  static void wait_for_completion(CompileTask* task);
35547
0ee84aa8e705 8146705: Improve JVMCI support for blocking compilation
dnsimon
parents: 35114
diff changeset
   245
#if INCLUDE_JVMCI
35845
30025047885d 8148507: [JVMCI] mitigate deadlocks related to JVMCI compiler under -Xbatch
dnsimon
parents: 35825
diff changeset
   246
  static bool wait_for_jvmci_completion(JVMCICompiler* comp, CompileTask* task, JavaThread* thread);
35547
0ee84aa8e705 8146705: Improve JVMCI support for blocking compilation
dnsimon
parents: 35114
diff changeset
   247
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  static void invoke_compiler_on_method(CompileTask* task);
52605
b8c88c64abf0 8212070: Introduce diagnostic flag to abort VM on failed JIT compilation
shade
parents: 52369
diff changeset
   250
  static void post_compile(CompilerThread* thread, CompileTask* task, bool success, ciEnv* ci_env,
b8c88c64abf0 8212070: Introduce diagnostic flag to abort VM on failed JIT compilation
shade
parents: 52369
diff changeset
   251
                           int compilable, const char* failure_reason);
54482
c914170817d4 8221853: Data race in compile broker (set_last_compile)
jcbeyler
parents: 53244
diff changeset
   252
  static void update_compile_perf_data(CompilerThread *thread, const methodHandle& method, bool is_osr);
c914170817d4 8221853: Data race in compile broker (set_last_compile)
jcbeyler
parents: 53244
diff changeset
   253
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  static void push_jni_handle_block();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  static void pop_jni_handle_block();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  static void collect_statistics(CompilerThread* thread, elapsedTimer time, CompileTask* task);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33168
diff changeset
   258
  static void compile_method_base(const methodHandle& method,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
                                  int osr_bci,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
                                  int comp_level,
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33168
diff changeset
   261
                                  const methodHandle& hot_method,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
                                  int hot_count,
38218
f5ba1dea04eb 8153013: BlockingCompilation test times out
neliasso
parents: 36597
diff changeset
   263
                                  CompileTask::CompileReason compile_reason,
36597
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 35845
diff changeset
   264
                                  bool blocking,
11572
84afef481892 7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents: 10547
diff changeset
   265
                                  Thread* thread);
26587
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25642
diff changeset
   266
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25642
diff changeset
   267
  static CompileQueue* compile_queue(int comp_level);
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 18025
diff changeset
   268
  static bool init_compiler_runtime();
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 18025
diff changeset
   269
  static void shutdown_compiler_runtime(AbstractCompiler* comp, CompilerThread* thread);
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 18025
diff changeset
   270
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33168
diff changeset
   271
public:
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33168
diff changeset
   272
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33168
diff changeset
   273
  static DirectivesStack* dirstack();
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33168
diff changeset
   274
  static void set_dirstack(DirectivesStack* stack);
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33168
diff changeset
   275
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
    // The entry bci used for non-OSR compilations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    standard_entry_bci = InvocationEntryBci
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   281
  static AbstractCompiler* compiler(int comp_level) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   282
    if (is_c2_compile(comp_level)) return _compilers[1]; // C2
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   283
    if (is_c1_compile(comp_level)) return _compilers[0]; // C1
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   284
    return NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
54736
1dc9bf9d016b 8222670: pathological case of JIT recompilation and code cache bloat
xliu
parents: 54482
diff changeset
   287
  static bool compilation_is_complete(const methodHandle& method, int osr_bci, int comp_level);
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33168
diff changeset
   288
  static bool compilation_is_in_queue(const methodHandle& method);
26587
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25642
diff changeset
   289
  static void print_compile_queues(outputStream* st);
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33168
diff changeset
   290
  static void print_directives(outputStream* st);
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   291
  static int queue_size(int comp_level) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   292
    CompileQueue *q = compile_queue(comp_level);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   293
    return q != NULL ? q->size() : 0;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   294
  }
49618
c5b066caefba 8200230: [Graal] Compilations should not be enqueued before Graal is initialized
thartmann
parents: 49611
diff changeset
   295
  static void compilation_init_phase1(TRAPS);
c5b066caefba 8200230: [Graal] Compilations should not be enqueued before Graal is initialized
thartmann
parents: 49611
diff changeset
   296
  static void compilation_init_phase2();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  static void init_compiler_thread_log();
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33168
diff changeset
   298
  static nmethod* compile_method(const methodHandle& method,
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   299
                                 int osr_bci,
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   300
                                 int comp_level,
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33168
diff changeset
   301
                                 const methodHandle& hot_method,
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   302
                                 int hot_count,
38218
f5ba1dea04eb 8153013: BlockingCompilation test times out
neliasso
parents: 36597
diff changeset
   303
                                 CompileTask::CompileReason compile_reason,
f5ba1dea04eb 8153013: BlockingCompilation test times out
neliasso
parents: 36597
diff changeset
   304
                                 Thread* thread);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
36597
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 35845
diff changeset
   306
  static nmethod* compile_method(const methodHandle& method,
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 35845
diff changeset
   307
                                   int osr_bci,
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 35845
diff changeset
   308
                                   int comp_level,
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 35845
diff changeset
   309
                                   const methodHandle& hot_method,
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 35845
diff changeset
   310
                                   int hot_count,
38218
f5ba1dea04eb 8153013: BlockingCompilation test times out
neliasso
parents: 36597
diff changeset
   311
                                   CompileTask::CompileReason compile_reason,
36597
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 35845
diff changeset
   312
                                   DirectiveSet* directive,
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 35845
diff changeset
   313
                                   Thread* thread);
ee256e343585 8150646: Add support for blocking compiles though whitebox API
simonis
parents: 35845
diff changeset
   314
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32582
diff changeset
   315
  // Acquire any needed locks and assign a compile id
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33168
diff changeset
   316
  static uint assign_compile_id_unlocked(Thread* thread, const methodHandle& method, int osr_bci);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32582
diff changeset
   317
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  static void compiler_thread_loop();
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   319
  static uint get_compilation_id() { return _compilation_id; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  // Set _should_block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  // Call this from the VM, with Threads_lock held and a safepoint requested.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  static void set_should_block();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  // Call this from the compiler at convenient points, to poll for _should_block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  static void maybe_block();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
46650
642365ee2b92 8184073: Cleanup of compiler activity enum in compileBroker.hpp
eosterlund
parents: 38218
diff changeset
   328
  enum CompilerActivity {
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   329
    // Flags for toggling compiler activity
46650
642365ee2b92 8184073: Cleanup of compiler activity enum in compileBroker.hpp
eosterlund
parents: 38218
diff changeset
   330
    stop_compilation     = 0,
642365ee2b92 8184073: Cleanup of compiler activity enum in compileBroker.hpp
eosterlund
parents: 38218
diff changeset
   331
    run_compilation      = 1,
642365ee2b92 8184073: Cleanup of compiler activity enum in compileBroker.hpp
eosterlund
parents: 38218
diff changeset
   332
    shutdown_compilation = 2
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   333
  };
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   334
27701
c6b49b72dc61 8059550: JEP-JDK-8043304: Test task: segment overflow w/ empty others
iignatyev
parents: 27696
diff changeset
   335
  static jint get_compilation_activity_mode() { return _should_compile_new_jobs; }
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   336
  static bool should_compile_new_jobs() { return UseCompiler && (_should_compile_new_jobs == run_compilation); }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   337
  static bool set_should_compile_new_jobs(jint new_state) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   338
    // Return success if the current caller set it
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   339
    jint old = Atomic::cmpxchg(new_state, &_should_compile_new_jobs, 1-new_state);
50515
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50113
diff changeset
   340
    bool success = (old == (1-new_state));
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50113
diff changeset
   341
    if (success) {
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50113
diff changeset
   342
      if (new_state == run_compilation) {
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50113
diff changeset
   343
        _total_compiler_restarted_count++;
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50113
diff changeset
   344
      } else {
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50113
diff changeset
   345
        _total_compiler_stopped_count++;
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50113
diff changeset
   346
      }
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50113
diff changeset
   347
    }
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50113
diff changeset
   348
    return success;
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   349
  }
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 18025
diff changeset
   350
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 18025
diff changeset
   351
  static void disable_compilation_forever() {
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 18025
diff changeset
   352
    UseCompiler               = false;
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 18025
diff changeset
   353
    AlwaysCompileLoopMethods  = false;
47578
09c41c4913d9 8187977: Generalize Atomic::xchg to use templates
eosterlund
parents: 47216
diff changeset
   354
    Atomic::xchg(jint(shutdown_compilation), &_should_compile_new_jobs);
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 18025
diff changeset
   355
  }
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 18025
diff changeset
   356
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 18025
diff changeset
   357
  static bool is_compilation_disabled_forever() {
46650
642365ee2b92 8184073: Cleanup of compiler activity enum in compileBroker.hpp
eosterlund
parents: 38218
diff changeset
   358
    return _should_compile_new_jobs == shutdown_compilation;
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 18025
diff changeset
   359
  }
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 26587
diff changeset
   360
  static void handle_full_code_cache(int code_blob_type);
21575
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20707
diff changeset
   361
  // Ensures that warning is only printed once.
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20707
diff changeset
   362
  static bool should_print_compiler_warning() {
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20707
diff changeset
   363
    jint old = Atomic::cmpxchg(1, &_print_compilation_warning, 0);
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20707
diff changeset
   364
    return old == 0;
6a9645992cee 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 20707
diff changeset
   365
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  // Return total compilation ticks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  static jlong total_compilation_ticks() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
    return _perf_total_compilation != NULL ? _perf_total_compilation->get_value() : 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   371
  // Redefine Classes support
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   372
  static void mark_on_stack();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   373
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32582
diff changeset
   374
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32582
diff changeset
   375
  // Print curent compilation time stats for a given compiler
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32582
diff changeset
   376
  static void print_times(AbstractCompiler* comp);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32582
diff changeset
   377
#endif
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32582
diff changeset
   378
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  // Print a detailed accounting of compilation time
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32582
diff changeset
   380
  static void print_times(bool per_compiler = true, bool aggregate = true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
16372
20c2c4dc8b77 8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents: 14588
diff changeset
   382
  // compiler name for debugging
20c2c4dc8b77 8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents: 14588
diff changeset
   383
  static const char* compiler_name(int comp_level);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16372
diff changeset
   384
49848
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   385
  // Provide access to compiler thread Java objects
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   386
  static jobject compiler1_object(int idx) {
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   387
    assert(_compiler1_objects != NULL, "must be initialized");
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   388
    assert(idx < _c1_count, "oob");
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   389
    return _compiler1_objects[idx];
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   390
  }
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   391
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   392
  static jobject compiler2_object(int idx) {
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   393
    assert(_compiler2_objects != NULL, "must be initialized");
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   394
    assert(idx < _c2_count, "oob");
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   395
    return _compiler2_objects[idx];
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   396
  }
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   397
59050
7bbaa3c416e7 8230459: Test failed to resume JVMCI CompilerThread
mdoerr
parents: 55294
diff changeset
   398
  static bool can_remove(CompilerThread *ct, bool do_it);
7bbaa3c416e7 8230459: Test failed to resume JVMCI CompilerThread
mdoerr
parents: 55294
diff changeset
   399
49848
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   400
  static CompileLog* get_log(CompilerThread* ct);
fcd5df7aa235 8198756: Lazy allocation of compiler threads
mdoerr
parents: 49618
diff changeset
   401
50515
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50113
diff changeset
   402
  static int get_total_compile_count() {            return _total_compile_count; }
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50113
diff changeset
   403
  static int get_total_bailout_count() {            return _total_bailout_count; }
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50113
diff changeset
   404
  static int get_total_invalidated_count() {        return _total_invalidated_count; }
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50113
diff changeset
   405
  static int get_total_native_compile_count() {     return _total_native_compile_count; }
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50113
diff changeset
   406
  static int get_total_osr_compile_count() {        return _total_osr_compile_count; }
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50113
diff changeset
   407
  static int get_total_standard_compile_count() {   return _total_standard_compile_count; }
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50113
diff changeset
   408
  static int get_total_compiler_stopped_count() {   return _total_compiler_stopped_count; }
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50113
diff changeset
   409
  static int get_total_compiler_restarted_count() { return _total_compiler_restarted_count; }
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50113
diff changeset
   410
  static int get_sum_osr_bytes_compiled() {         return _sum_osr_bytes_compiled; }
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50113
diff changeset
   411
  static int get_sum_standard_bytes_compiled() {    return _sum_standard_bytes_compiled; }
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50113
diff changeset
   412
  static int get_sum_nmethod_size() {               return _sum_nmethod_size;}
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50113
diff changeset
   413
  static int get_sum_nmethod_code_size() {          return _sum_nmethod_code_size; }
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50113
diff changeset
   414
  static long get_peak_compilation_time() {         return _peak_compilation_time; }
1ce463f497ad 8204476: Add additional statistics to CodeCache::print_summary
goetz
parents: 50113
diff changeset
   415
  static long get_total_compilation_time() {        return _t_total_compilation.milliseconds(); }
27461
90e9e0f9c0c5 8037842: Failing to allocate MethodCounters and MDO causes a serious performance drop
coleenp
parents: 26913
diff changeset
   416
90e9e0f9c0c5 8037842: Failing to allocate MethodCounters and MDO causes a serious performance drop
coleenp
parents: 26913
diff changeset
   417
  // Log that compilation profiling is skipped because metaspace is full.
90e9e0f9c0c5 8037842: Failing to allocate MethodCounters and MDO causes a serious performance drop
coleenp
parents: 26913
diff changeset
   418
  static void log_metaspace_failure();
49611
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 47765
diff changeset
   419
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 47765
diff changeset
   420
  // CodeHeap State Analytics.
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 47765
diff changeset
   421
  static void print_info(outputStream *out);
55294
3493c1bc59fd 8225388: Running jcmd Compiler.CodeHeap_Analytics all 0 cause crash.
lmesnik
parents: 54736
diff changeset
   422
  static void print_heapinfo(outputStream *out, const char* function, size_t granularity);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
   424
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52605
diff changeset
   425
#endif // SHARE_COMPILER_COMPILEBROKER_HPP