hotspot/src/share/vm/ci/ciEnv.hpp
author twisti
Tue, 05 Jan 2010 15:21:25 +0100
changeset 4567 7fc02fbe5c7a
parent 4566 b363f6ef4068
child 4571 80b553bddc26
permissions -rw-r--r--
6893268: additional dynamic language related optimizations in C2 Summary: C2 needs some additional optimizations to be able to handle MethodHandle invokes and invokedynamic instructions at the best performance. Reviewed-by: kvn, never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
3261
c7d5aae8d3f7 6862919: Update copyright year
xdono
parents: 2867
diff changeset
     2
 * Copyright 1999-2009 Sun Microsystems, Inc.  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
 *
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 CompileTask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// ciEnv
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// This class is the top level broker for requests from the compiler
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// to the VM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
class ciEnv : StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  CI_PACKAGE_ACCESS_TO
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  friend class CompileBroker;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  friend class Dependencies;  // for get_object, during logging
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  Arena*           _arena;       // Alias for _ciEnv_arena except in init_shared_objects()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  Arena            _ciEnv_arena;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  int              _system_dictionary_modification_counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  ciObjectFactory* _factory;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  OopRecorder*     _oop_recorder;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  DebugInformationRecorder* _debug_info;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  Dependencies*    _dependencies;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  const char*      _failure_reason;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  int              _compilable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  bool             _break_at_compile;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  int              _num_inlined_bytecodes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  CompileTask*     _task;           // faster access to CompilerThread::task
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  CompileLog*      _log;            // faster access to CompilerThread::log
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  void*            _compiler_data;  // compiler-specific stuff, if any
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  char* _name_buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  int   _name_buffer_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
2867
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
    56
  // Cache Jvmti state
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
    57
  bool  _jvmti_can_hotswap_or_post_breakpoint;
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
    58
  bool  _jvmti_can_examine_or_deopt_anywhere;
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
    59
  bool  _jvmti_can_access_local_variables;
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
    60
  bool  _jvmti_can_post_exceptions;
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
    61
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
    62
  // Cache DTrace flags
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
    63
  bool  _dtrace_extended_probes;
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
    64
  bool  _dtrace_monitor_probes;
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
    65
  bool  _dtrace_method_probes;
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
    66
  bool  _dtrace_alloc_probes;
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
    67
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // Distinguished instances of certain ciObjects..
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  static ciObject*              _null_object_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  static ciMethodKlass*         _method_klass_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  static ciSymbolKlass*         _symbol_klass_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  static ciKlassKlass*          _klass_klass_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  static ciInstanceKlassKlass*  _instance_klass_klass_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  static ciTypeArrayKlassKlass* _type_array_klass_klass_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  static ciObjArrayKlassKlass*  _obj_array_klass_klass_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  static ciInstanceKlass* _ArrayStoreException;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  static ciInstanceKlass* _Class;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  static ciInstanceKlass* _ClassCastException;
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
    80
  static ciInstanceKlass* _InvokeDynamic;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  static ciInstanceKlass* _Object;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  static ciInstanceKlass* _Throwable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  static ciInstanceKlass* _Thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  static ciInstanceKlass* _OutOfMemoryError;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  static ciInstanceKlass* _String;
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3908
diff changeset
    86
  static ciInstanceKlass* _StringBuffer;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3908
diff changeset
    87
  static ciInstanceKlass* _StringBuilder;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3908
diff changeset
    88
  static ciInstanceKlass* _Integer;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  static ciSymbol*        _unloaded_cisymbol;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  static ciInstanceKlass* _unloaded_ciinstance_klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  static ciObjArrayKlass* _unloaded_ciobjarrayklass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  static jobject _ArrayIndexOutOfBoundsException_handle;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  static jobject _ArrayStoreException_handle;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  static jobject _ClassCastException_handle;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  ciInstance* _NullPointerException_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  ciInstance* _ArithmeticException_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  ciInstance* _ArrayIndexOutOfBoundsException_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  ciInstance* _ArrayStoreException_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  ciInstance* _ClassCastException_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3908
diff changeset
   104
  ciInstance* _the_null_string;      // The Java string "null"
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3908
diff changeset
   105
  ciInstance* _the_min_jint_string; // The Java string "-2147483648"
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3908
diff changeset
   106
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // Look up a klass by name from a particular class loader (the accessor's).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // If require_local, result must be defined in that class loader, or NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  // If !require_local, a result from remote class loader may be reported,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  // if sufficient class loader constraints exist such that initiating
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  // a class loading request from the given loader is bound to return
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // the class defined in the remote loader (or throw an error).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  // Return an unloaded klass if !require_local and no class at all is found.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // The CI treats a klass as loaded if it is consistently defined in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  // another loader, even if it hasn't yet been loaded in all loaders
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  // that could potentially see it via delegation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  ciKlass* get_klass_by_name(ciKlass* accessing_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
                             ciSymbol* klass_name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
                             bool require_local);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // Constant pool access.
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   124
  ciKlass*   get_klass_by_index(constantPoolHandle cpool,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
                                int klass_index,
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   126
                                bool& is_accessible,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   127
                                ciInstanceKlass* loading_klass);
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   128
  ciConstant get_constant_by_index(constantPoolHandle cpool,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   129
                                   int constant_index,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   130
                                   ciInstanceKlass* accessor);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  bool       is_unresolved_string(ciInstanceKlass* loading_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
                                   int constant_index) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  bool       is_unresolved_klass(ciInstanceKlass* loading_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
                                   int constant_index) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  ciField*   get_field_by_index(ciInstanceKlass* loading_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
                                int field_index);
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   137
  ciMethod*  get_method_by_index(constantPoolHandle cpool,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   138
                                 int method_index, Bytecodes::Code bc,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   139
                                 ciInstanceKlass* loading_klass);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // Implementation methods for loading and constant pool access.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  ciKlass* get_klass_by_name_impl(ciKlass* accessing_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
                                  ciSymbol* klass_name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
                                  bool require_local);
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   145
  ciKlass*   get_klass_by_index_impl(constantPoolHandle cpool,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
                                     int klass_index,
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   147
                                     bool& is_accessible,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   148
                                     ciInstanceKlass* loading_klass);
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   149
  ciConstant get_constant_by_index_impl(constantPoolHandle cpool,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   150
                                        int constant_index,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   151
                                        ciInstanceKlass* loading_klass);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  bool       is_unresolved_string_impl (instanceKlass* loading_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
                                        int constant_index) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  bool       is_unresolved_klass_impl (instanceKlass* loading_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
                                        int constant_index) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  ciField*   get_field_by_index_impl(ciInstanceKlass* loading_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
                                     int field_index);
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   158
  ciMethod*  get_method_by_index_impl(constantPoolHandle cpool,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   159
                                      int method_index, Bytecodes::Code bc,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   160
                                      ciInstanceKlass* loading_klass);
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   161
  ciMethod*  get_fake_invokedynamic_method_impl(constantPoolHandle cpool,
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   162
                                                int index, Bytecodes::Code bc);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // Helper methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  bool       check_klass_accessibility(ciKlass* accessing_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
                                      klassOop resolved_klassOop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  methodOop  lookup_method(instanceKlass*  accessor,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
                           instanceKlass*  holder,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
                           symbolOop       name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
                           symbolOop       sig,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
                           Bytecodes::Code bc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  // Get a ciObject from the object factory.  Ensures uniqueness
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  // of ciObjects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  ciObject* get_object(oop o) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    if (o == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
      return _null_object_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
      return _factory->get(o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  ciMethod* get_method_from_handle(jobject method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  ciInstance* get_or_create_exception(jobject& handle, symbolHandle name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  // Get a ciMethod representing either an unfound method or
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // a method with an unloaded holder.  Ensures uniqueness of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  // the result.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  ciMethod* get_unloaded_method(ciInstanceKlass* holder,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
                                ciSymbol*        name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
                                ciSymbol*        signature) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    return _factory->get_unloaded_method(holder, name, signature);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  // Get a ciKlass representing an unloaded klass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  // Ensures uniqueness of the result.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  ciKlass* get_unloaded_klass(ciKlass* accessing_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
                              ciSymbol* name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    return _factory->get_unloaded_klass(accessing_klass, name, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  // See if we already have an unloaded klass for the given name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  // or return NULL if not.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  ciKlass *check_get_unloaded_klass(ciKlass* accessing_klass, ciSymbol* name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
    return _factory->get_unloaded_klass(accessing_klass, name, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  // Get a ciReturnAddress corresponding to the given bci.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  // Ensures uniqueness of the result.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  ciReturnAddress* get_return_address(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    return _factory->get_return_address(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  // Get a ciMethodData representing the methodData for a method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  // with none.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  ciMethodData* get_empty_methodData() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    return _factory->get_empty_methodData();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  // General utility : get a buffer of some required length.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  // Used in symbol creation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  char* name_buffer(int req_len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  // Is this thread currently in the VM state?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  static bool is_in_vm();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  // Helper routine for determining the validity of a compilation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  // with respect to concurrent class loading.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  void check_for_system_dictionary_modification(ciMethod* target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
    MethodCompilable,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    MethodCompilable_not_at_tier,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    MethodCompilable_never
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  ciEnv(CompileTask* task, int system_dictionary_modification_counter);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  // Used only during initialization of the ci
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  ciEnv(Arena* arena);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  ~ciEnv();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  OopRecorder* oop_recorder() { return _oop_recorder; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  void set_oop_recorder(OopRecorder* r) { _oop_recorder = r; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  DebugInformationRecorder* debug_info() { return _debug_info; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  void set_debug_info(DebugInformationRecorder* i) { _debug_info = i; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  Dependencies* dependencies() { return _dependencies; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  void set_dependencies(Dependencies* d) { _dependencies = d; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  // This is true if the compilation is not going to produce code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  // (It is reasonable to retry failed compilations.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  bool failing() { return _failure_reason != NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  // Reason this compilation is failing, such as "too many basic blocks".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  const char* failure_reason() { return _failure_reason; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  // Return state of appropriate compilability
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  int compilable() { return _compilable; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  bool break_at_compile() { return _break_at_compile; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  void set_break_at_compile(bool z) { _break_at_compile = z; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
2867
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
   266
  // Cache Jvmti state
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
   267
  void  cache_jvmti_state();
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
   268
  bool  jvmti_can_hotswap_or_post_breakpoint() const { return _jvmti_can_hotswap_or_post_breakpoint; }
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
   269
  bool  jvmti_can_examine_or_deopt_anywhere()  const { return _jvmti_can_examine_or_deopt_anywhere; }
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
   270
  bool  jvmti_can_access_local_variables()     const { return _jvmti_can_access_local_variables; }
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
   271
  bool  jvmti_can_post_exceptions()            const { return _jvmti_can_post_exceptions; }
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
   272
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
   273
  // Cache DTrace flags
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
   274
  void  cache_dtrace_flags();
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
   275
  bool  dtrace_extended_probes() const { return _dtrace_extended_probes; }
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
   276
  bool  dtrace_monitor_probes()  const { return _dtrace_monitor_probes; }
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
   277
  bool  dtrace_method_probes()   const { return _dtrace_method_probes; }
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
   278
  bool  dtrace_alloc_probes()    const { return _dtrace_alloc_probes; }
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
   279
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  // The compiler task which has created this env.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  // May be useful to find out compile_id, comp_level, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  CompileTask* task() { return _task; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  // Handy forwards to the task:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  int comp_level();   // task()->comp_level()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  uint compile_id();  // task()->compile_id()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  // Register the result of a compilation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  void register_method(ciMethod*                 target,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
                       int                       entry_bci,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
                       CodeOffsets*              offsets,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
                       int                       orig_pc_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
                       CodeBuffer*               code_buffer,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
                       int                       frame_words,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
                       OopMapSet*                oop_map_set,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
                       ExceptionHandlerTable*    handler_table,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
                       ImplicitExceptionTable*   inc_table,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
                       AbstractCompiler*         compiler,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
                       int                       comp_level,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
                       bool                      has_debug_info = true,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
                       bool                      has_unsafe_access = false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  // Access to certain well known ciObjects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  ciInstanceKlass* ArrayStoreException_klass() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
    return _ArrayStoreException;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  ciInstanceKlass* Class_klass() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
    return _Class;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  ciInstanceKlass* ClassCastException_klass() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
    return _ClassCastException;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  }
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   313
  ciInstanceKlass* InvokeDynamic_klass() {
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   314
    return _InvokeDynamic;
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   315
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  ciInstanceKlass* Object_klass() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
    return _Object;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  ciInstanceKlass* Throwable_klass() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
    return _Throwable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  ciInstanceKlass* Thread_klass() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
    return _Thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  ciInstanceKlass* OutOfMemoryError_klass() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
    return _OutOfMemoryError;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  ciInstanceKlass* String_klass() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
    return _String;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  }
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3908
diff changeset
   331
  ciInstanceKlass* StringBuilder_klass() {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3908
diff changeset
   332
    return _StringBuilder;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3908
diff changeset
   333
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3908
diff changeset
   334
  ciInstanceKlass* StringBuffer_klass() {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3908
diff changeset
   335
    return _StringBuffer;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3908
diff changeset
   336
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3908
diff changeset
   337
  ciInstanceKlass* Integer_klass() {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3908
diff changeset
   338
    return _Integer;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3908
diff changeset
   339
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  ciInstance* NullPointerException_instance() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
    assert(_NullPointerException_instance != NULL, "initialization problem");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
    return _NullPointerException_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  ciInstance* ArithmeticException_instance() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
    assert(_ArithmeticException_instance != NULL, "initialization problem");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
    return _ArithmeticException_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  // Lazy constructors:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  ciInstance* ArrayIndexOutOfBoundsException_instance();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  ciInstance* ArrayStoreException_instance();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  ciInstance* ClassCastException_instance();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3908
diff changeset
   354
  ciInstance* the_null_string();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3908
diff changeset
   355
  ciInstance* the_min_jint_string();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3908
diff changeset
   356
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  static ciSymbol* unloaded_cisymbol() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
    return _unloaded_cisymbol;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  static ciObjArrayKlass* unloaded_ciobjarrayklass() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
    return _unloaded_ciobjarrayklass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  static ciInstanceKlass* unloaded_ciinstance_klass() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
    return _unloaded_ciinstance_klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  ciKlass*  find_system_klass(ciSymbol* klass_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  // Note:  To find a class from its name string, use ciSymbol::make,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  // but consider adding to vmSymbols.hpp instead.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  // Use this to make a holder for non-perm compile time constants.
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3261
diff changeset
   372
  // The resulting array is guaranteed to satisfy "can_be_constant".
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3261
diff changeset
   373
  ciArray*  make_system_array(GrowableArray<ciObject*>* objects);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  // converts the ciKlass* representing the holder of a method into a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  // ciInstanceKlass*.  This is needed since the holder of a method in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  // the bytecodes could be an array type.  Basically this converts
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  // array types into java/lang/Object and other types stay as they are.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  static ciInstanceKlass* get_instance_klass_for_declared_method_holder(ciKlass* klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  // Return the machine-level offset of o, which must be an element of a.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  // This may be used to form constant-loading expressions in lieu of simpler encodings.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  int       array_element_offset_in_bytes(ciArray* a, ciObject* o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  // Access to the compile-lifetime allocation arena.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  Arena*    arena() { return _arena; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  // What is the current compilation environment?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  static ciEnv* current() { return CompilerThread::current()->env(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  // Overload with current thread argument
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  static ciEnv* current(CompilerThread *thread) { return thread->env(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  // Per-compiler data.  (Used by C2 to publish the Compile* pointer.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  void* compiler_data() { return _compiler_data; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  void set_compiler_data(void* x) { _compiler_data = x; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  // Notice that a method has been inlined in the current compile;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  // used only for statistics.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  void notice_inlined_method(ciMethod* method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  // Total number of bytecodes in inlined methods in this compile
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  int num_inlined_bytecodes() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  // Output stream for logging compilation info.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  CompileLog* log() { return _log; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  void set_log(CompileLog* log) { _log = log; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  // Check for changes to the system dictionary during compilation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  bool system_dictionary_modification_counter_changed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  void record_failure(const char* reason);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  void record_method_not_compilable(const char* reason, bool all_tiers = true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  void record_out_of_memory_failure();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
};