hotspot/src/share/vm/compiler/compileBroker.hpp
author jcoomes
Sun, 11 Oct 2009 16:19:25 -0700
changeset 5402 c51fd0c1d005
parent 4750 71fd601907dc
child 5547 f4b087cbb361
permissions -rw-r--r--
6888953: some calls to function-like macros are missing semicolons Reviewed-by: pbk, kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1999-2006 Sun Microsystems, Inc.  All Rights Reserved.
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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
class nmethod;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
class nmethodLocker;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// CompileTask
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// An entry in the compile queue.  It represents a pending or current
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// compilation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
class CompileTask : public CHeapObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  Monitor*     _lock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  uint         _compile_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  jobject      _method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  int          _osr_bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  bool         _is_complete;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  bool         _is_success;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  bool         _is_blocking;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  int          _comp_level;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  int          _num_inlined_bytecodes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  nmethodLocker* _code_handle;  // holder of eventual result
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  CompileTask* _next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  // Fields used for logging why the compilation was initiated:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  jlong        _time_queued;  // in units of os::elapsed_counter()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  jobject      _hot_method;   // which method actually triggered this task
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  int          _hot_count;    // information about its invocation counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  const char*  _comment;      // more info about the task
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  CompileTask() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    _lock = new Monitor(Mutex::nonleaf+2, "CompileTaskLock");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  void initialize(int compile_id, methodHandle method, int osr_bci, int comp_level,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
                  methodHandle hot_method, int hot_count, const char* comment,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
                  bool is_blocking);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  void free();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  int          compile_id() const                { return _compile_id; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  jobject      method_handle() const             { return _method; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  int          osr_bci() const                   { return _osr_bci; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  bool         is_complete() const               { return _is_complete; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  bool         is_blocking() const               { return _is_blocking; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  bool         is_success() const                { return _is_success; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  nmethodLocker* code_handle() const             { return _code_handle; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  void         set_code_handle(nmethodLocker* l) { _code_handle = l; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  nmethod*     code() const;                     // _code_handle->code()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  void         set_code(nmethod* nm);            // _code_handle->set_code(nm)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  Monitor*     lock() const                      { return _lock; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  void         mark_complete()                   { _is_complete = true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  void         mark_success()                    { _is_success = true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  int          comp_level()                      { return _comp_level;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  void         set_comp_level(int comp_level)    { _comp_level = comp_level;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  int          num_inlined_bytecodes() const     { return _num_inlined_bytecodes; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  void         set_num_inlined_bytecodes(int n)  { _num_inlined_bytecodes = n; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  CompileTask* next() const                      { return _next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  void         set_next(CompileTask* next)       { _next = next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  void         print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  void         print_line();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  void         print_line_on_error(outputStream* st, char* buf, int buflen);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  void         log_task(xmlStream* log);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  void         log_task_queued();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  void         log_task_start(CompileLog* log);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  void         log_task_done(CompileLog* log);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
// CompilerCounters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
// Per Compiler Performance Counters.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
class CompilerCounters : public CHeapObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
      cmname_buffer_length = 160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    char _current_method[cmname_buffer_length];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    PerfStringVariable* _perf_current_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    int  _compile_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    PerfVariable* _perf_compile_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    PerfCounter* _perf_time;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    PerfCounter* _perf_compiles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    CompilerCounters(const char* name, int instance, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    // these methods should be called in a thread safe context
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    void set_current_method(const char* method) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
      strncpy(_current_method, method, (size_t)cmname_buffer_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
      if (UsePerfData) _perf_current_method->set_value(method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    char* current_method()                  { return _current_method; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    void set_compile_type(int compile_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
      _compile_type = compile_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
      if (UsePerfData) _perf_compile_type->set_value((jlong)compile_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    int compile_type()                       { return _compile_type; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    PerfCounter* time_counter()              { return _perf_time; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    PerfCounter* compile_counter()           { return _perf_compiles; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
// CompileQueue
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
// A list of CompileTasks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
class CompileQueue : public CHeapObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  const char* _name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  Monitor*    _lock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  CompileTask* _first;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  CompileTask* _last;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  CompileQueue(const char* name, Monitor* lock) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    _name = name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    _lock = lock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    _first = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    _last = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  const char*  name() const                      { return _name; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  Monitor*     lock() const                      { return _lock; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  void         add(CompileTask* task);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  CompileTask* get();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  bool         is_empty() const                  { return _first == NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  void         print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
// Compilation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
// The broker for all compilation requests.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
class CompileBroker: AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
 friend class Threads;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  friend class CompileTaskWrapper;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    name_buffer_length = 100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  // Compile type Information for print_last_compile() and CompilerCounters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  enum { no_compile, normal_compile, osr_compile, native_compile };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  static bool _initialized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  static volatile bool _should_block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   196
  // 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
   197
  static volatile jint _should_compile_new_jobs;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   198
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  // The installed compiler(s)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  static AbstractCompiler* _compilers[2];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  // These counters are used for assigning id's to each compilation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  static uint _compilation_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  static uint _osr_compilation_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  static uint _native_compilation_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  static int  _last_compile_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  static int  _last_compile_level;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  static char _last_method_compiled[name_buffer_length];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  static CompileQueue* _method_queue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  static CompileTask* _task_free_list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  static GrowableArray<CompilerThread*>* _method_threads;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  // performance counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  static PerfCounter* _perf_total_compilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  static PerfCounter* _perf_native_compilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  static PerfCounter* _perf_osr_compilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  static PerfCounter* _perf_standard_compilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  static PerfCounter* _perf_total_bailout_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  static PerfCounter* _perf_total_invalidated_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  static PerfCounter* _perf_total_compile_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  static PerfCounter* _perf_total_native_compile_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  static PerfCounter* _perf_total_osr_compile_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  static PerfCounter* _perf_total_standard_compile_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  static PerfCounter* _perf_sum_osr_bytes_compiled;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  static PerfCounter* _perf_sum_standard_bytes_compiled;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  static PerfCounter* _perf_sum_nmethod_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  static PerfCounter* _perf_sum_nmethod_code_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  static PerfStringVariable* _perf_last_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  static PerfStringVariable* _perf_last_failed_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  static PerfStringVariable* _perf_last_invalidated_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  static PerfVariable*       _perf_last_compile_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  static PerfVariable*       _perf_last_compile_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  static PerfVariable*       _perf_last_failed_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  static PerfVariable*       _perf_last_invalidated_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  // Timers and counters for generating statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  static elapsedTimer _t_total_compilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  static elapsedTimer _t_osr_compilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  static elapsedTimer _t_standard_compilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  static int _total_bailout_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  static int _total_invalidated_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  static int _total_compile_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  static int _total_native_compile_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  static int _total_osr_compile_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  static int _total_standard_compile_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  static int _sum_osr_bytes_compiled;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  static int _sum_standard_bytes_compiled;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  static int _sum_nmethod_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  static int _sum_nmethod_code_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  static int compiler_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
    return CICompilerCountPerCPU
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
      // Example: if CICompilerCountPerCPU is true, then we get
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
      // max(log2(8)-1,1) = 2 compiler threads on an 8-way machine.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
      // May help big-app startup time.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
      ? (MAX2(log2_intptr(os::active_processor_count())-1,1))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
      : CICompilerCount;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  static CompilerThread* make_compiler_thread(const char* name, CompileQueue* queue, CompilerCounters* counters, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  static void init_compiler_threads(int compiler_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  static bool compilation_is_complete  (methodHandle method, int osr_bci, int comp_level);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  static bool compilation_is_in_queue  (methodHandle method, int osr_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  static bool compilation_is_prohibited(methodHandle method, int osr_bci, int comp_level);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  static uint assign_compile_id        (methodHandle method, int osr_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  static bool is_compile_blocking      (methodHandle method, int osr_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  static void preload_classes          (methodHandle method, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  static CompileTask* create_compile_task(CompileQueue* queue,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
                                          int           compile_id,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
                                          methodHandle  method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
                                          int           osr_bci,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
                                          int           comp_level,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
                                          methodHandle  hot_method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
                                          int           hot_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
                                          const char*   comment,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
                                          bool          blocking);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  static CompileTask* allocate_task();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  static void free_task(CompileTask* task);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  static void wait_for_completion(CompileTask* task);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  static void invoke_compiler_on_method(CompileTask* task);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  static void set_last_compile(CompilerThread *thread, methodHandle method, bool is_osr, int comp_level);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  static void push_jni_handle_block();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  static void pop_jni_handle_block();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  static bool check_break_at(methodHandle method, int compile_id, bool is_osr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  static void collect_statistics(CompilerThread* thread, elapsedTimer time, CompileTask* task);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  static void compile_method_base(methodHandle method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
                                  int osr_bci,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
                                  int comp_level,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
                                  methodHandle hot_method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
                                  int hot_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
                                  const char* comment,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
                                  TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
    // The entry bci used for non-OSR compilations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
    standard_entry_bci = InvocationEntryBci
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  static AbstractCompiler* compiler(int level ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
    if (level == CompLevel_fast_compile) return _compilers[0];
5402
c51fd0c1d005 6888953: some calls to function-like macros are missing semicolons
jcoomes
parents: 4750
diff changeset
   313
    assert(level == CompLevel_highest_tier, "what level?");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
    return _compilers[1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  static void compilation_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  static void init_compiler_thread_log();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  static nmethod* compile_method(methodHandle method, int osr_bci,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
                                 methodHandle hot_method, int hot_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
                                 const char* comment, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  static void compiler_thread_loop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   325
  static uint get_compilation_id() { return _compilation_id; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  static bool is_idle();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  // Set _should_block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  // Call this from the VM, with Threads_lock held and a safepoint requested.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  static void set_should_block();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  // Call this from the compiler at convenient points, to poll for _should_block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  static void maybe_block();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   335
  enum {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   336
    // Flags for toggling compiler activity
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   337
    stop_compilation = 0,
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   338
    run_compilation  = 1
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   339
  };
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   340
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   341
  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
   342
  static bool set_should_compile_new_jobs(jint new_state) {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   343
    // Return success if the current caller set it
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   344
    jint old = Atomic::cmpxchg(new_state, &_should_compile_new_jobs, 1-new_state);
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   345
    return (old == (1-new_state));
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   346
  }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   347
  static void handle_full_code_cache();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 1
diff changeset
   348
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  // Return total compilation ticks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  static jlong total_compilation_ticks() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
    return _perf_total_compilation != NULL ? _perf_total_compilation->get_value() : 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  // Print a detailed accounting of compilation time
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  static void print_times();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  // Debugging output for failure
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  static void print_last_compile();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  static void print_compiler_threads_on(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
};