hotspot/src/share/vm/ci/ciEnv.hpp
author neliasso
Tue, 20 Oct 2015 18:07:28 +0200
changeset 33451 0712796e4039
parent 27706 3f10f4ac2bd6
child 33626 3c94db05e903
permissions -rw-r--r--
8137167: JEP165: Compiler Control: Implementation task Summary: Compiler Control JEP Reviewed-by: roland, twisti, zmajo, simonis
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
22234
da823d78ad65 8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
mikael
parents: 20692
diff changeset
     2
 * Copyright (c) 1999, 2013, 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: 5353
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5353
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: 5353
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    25
#ifndef SHARE_VM_CI_CIENV_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    26
#define SHARE_VM_CI_CIENV_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    28
#include "ci/ciClassList.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    29
#include "ci/ciObjectFactory.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    30
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    31
#include "code/debugInfoRec.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    32
#include "code/dependencies.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    33
#include "code/exceptionHandlerTable.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    34
#include "compiler/oopMap.hpp"
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 27706
diff changeset
    35
#include "compiler/compilerDirectives.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    36
#include "runtime/thread.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    37
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
class CompileTask;
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 27706
diff changeset
    39
class DirectiveSet;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// ciEnv
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// This class is the top level broker for requests from the compiler
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// to the VM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
class ciEnv : StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  CI_PACKAGE_ACCESS_TO
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  friend class CompileBroker;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  friend class Dependencies;  // for get_object, during logging
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  Arena*           _arena;       // Alias for _ciEnv_arena except in init_shared_objects()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  Arena            _ciEnv_arena;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  int              _system_dictionary_modification_counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  ciObjectFactory* _factory;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  OopRecorder*     _oop_recorder;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  DebugInformationRecorder* _debug_info;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  Dependencies*    _dependencies;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  const char*      _failure_reason;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  int              _compilable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  bool             _break_at_compile;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  int              _num_inlined_bytecodes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  CompileTask*     _task;           // faster access to CompilerThread::task
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  CompileLog*      _log;            // faster access to CompilerThread::log
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  void*            _compiler_data;  // compiler-specific stuff, if any
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  char* _name_buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  int   _name_buffer_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
2867
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
    70
  // 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
    71
  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
    72
  bool  _jvmti_can_access_local_variables;
4761
bdb7375a1fee 6902182: 4/4 Starting with jdwp agent should not incur performance penalty
dcubed
parents: 4571
diff changeset
    73
  bool  _jvmti_can_post_on_exceptions;
22893
e3a2b513713a 8035493: JVMTI PopFrame capability must instruct compilers not to prune locals
mgronlun
parents: 22243
diff changeset
    74
  bool  _jvmti_can_pop_frame;
2867
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
    75
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
    76
  // 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
    77
  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
    78
  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
    79
  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
    80
  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
    81
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // Distinguished instances of certain ciObjects..
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  static ciObject*              _null_object_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4567
diff changeset
    85
#define WK_KLASS_DECL(name, ignore_s, ignore_o) static ciInstanceKlass* _##name;
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4567
diff changeset
    86
  WK_KLASSES_DO(WK_KLASS_DECL)
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4567
diff changeset
    87
#undef WK_KLASS_DECL
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  static ciSymbol*        _unloaded_cisymbol;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  static ciInstanceKlass* _unloaded_ciinstance_klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  static ciObjArrayKlass* _unloaded_ciobjarrayklass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  static jobject _ArrayIndexOutOfBoundsException_handle;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  static jobject _ArrayStoreException_handle;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  static jobject _ClassCastException_handle;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  ciInstance* _NullPointerException_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  ciInstance* _ArithmeticException_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  ciInstance* _ArrayIndexOutOfBoundsException_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  ciInstance* _ArrayStoreException_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  ciInstance* _ClassCastException_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3908
diff changeset
   103
  ciInstance* _the_null_string;      // The Java string "null"
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3908
diff changeset
   104
  ciInstance* _the_min_jint_string; // The Java string "-2147483648"
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3908
diff changeset
   105
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  // Look up a klass by name from a particular class loader (the accessor's).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // If require_local, result must be defined in that class loader, or NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // If !require_local, a result from remote class loader may be reported,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  // if sufficient class loader constraints exist such that initiating
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  // a class loading request from the given loader is bound to return
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  // the class defined in the remote loader (or throw an error).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // Return an unloaded klass if !require_local and no class at all is found.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  // The CI treats a klass as loaded if it is consistently defined in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // another loader, even if it hasn't yet been loaded in all loaders
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  // that could potentially see it via delegation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  ciKlass* get_klass_by_name(ciKlass* accessing_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
                             ciSymbol* klass_name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
                             bool require_local);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // Constant pool access.
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   123
  ciKlass*   get_klass_by_index(constantPoolHandle cpool,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
                                int klass_index,
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   125
                                bool& is_accessible,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   126
                                ciInstanceKlass* loading_klass);
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   127
  ciConstant get_constant_by_index(constantPoolHandle cpool,
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   128
                                   int pool_index, int cache_index,
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   129
                                   ciInstanceKlass* accessor);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  ciField*   get_field_by_index(ciInstanceKlass* loading_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
                                int field_index);
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   132
  ciMethod*  get_method_by_index(constantPoolHandle cpool,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   133
                                 int method_index, Bytecodes::Code bc,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   134
                                 ciInstanceKlass* loading_klass);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  // Implementation methods for loading and constant pool access.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  ciKlass* get_klass_by_name_impl(ciKlass* accessing_klass,
10008
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 8921
diff changeset
   138
                                  constantPoolHandle cpool,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
                                  ciSymbol* klass_name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
                                  bool require_local);
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   141
  ciKlass*   get_klass_by_index_impl(constantPoolHandle cpool,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
                                     int klass_index,
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   143
                                     bool& is_accessible,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   144
                                     ciInstanceKlass* loading_klass);
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   145
  ciConstant get_constant_by_index_impl(constantPoolHandle cpool,
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   146
                                        int pool_index, int cache_index,
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   147
                                        ciInstanceKlass* loading_klass);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  ciField*   get_field_by_index_impl(ciInstanceKlass* loading_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
                                     int field_index);
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   150
  ciMethod*  get_method_by_index_impl(constantPoolHandle cpool,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   151
                                      int method_index, Bytecodes::Code bc,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   152
                                      ciInstanceKlass* loading_klass);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  // Helper methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  bool       check_klass_accessibility(ciKlass* accessing_klass,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   156
                                      Klass* resolved_klass);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   157
  Method*    lookup_method(InstanceKlass*  accessor,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   158
                           InstanceKlass*  holder,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   159
                           Symbol*         name,
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   160
                           Symbol*         sig,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
                           Bytecodes::Code bc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // Get a ciObject from the object factory.  Ensures uniqueness
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // of ciObjects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  ciObject* get_object(oop o) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    if (o == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
      return _null_object_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
      return _factory->get(o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   173
  ciSymbol* get_symbol(Symbol* o) {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   174
    if (o == NULL) {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   175
      ShouldNotReachHere();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   176
      return NULL;
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   177
    } else {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   178
      return _factory->get_symbol(o);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   179
    }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   180
  }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   181
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   182
  ciMetadata* get_metadata(Metadata* o) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   183
    if (o == NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   184
      return NULL;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   185
    } else {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   186
      return _factory->get_metadata(o);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   187
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   188
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   189
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   190
  void ensure_metadata_alive(ciMetadata* m) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   191
    _factory->ensure_metadata_alive(m);
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   192
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   193
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   194
  ciInstance* get_instance(oop o) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   195
    if (o == NULL) return NULL;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   196
    return get_object(o)->as_instance();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   197
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   198
  ciObjArrayKlass* get_obj_array_klass(Klass* o) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   199
    if (o == NULL) return NULL;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   200
    return get_metadata(o)->as_obj_array_klass();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   201
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   202
  ciTypeArrayKlass* get_type_array_klass(Klass* o) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   203
    if (o == NULL) return NULL;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   204
    return get_metadata(o)->as_type_array_klass();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   205
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   206
  ciKlass* get_klass(Klass* o) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   207
    if (o == NULL) return NULL;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   208
    return get_metadata(o)->as_klass();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   209
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   210
  ciInstanceKlass* get_instance_klass(Klass* o) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   211
    if (o == NULL) return NULL;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   212
    return get_metadata(o)->as_instance_klass();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   213
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   214
  ciMethod* get_method(Method* o) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   215
    if (o == NULL) return NULL;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   216
    return get_metadata(o)->as_method();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   217
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   218
  ciMethodData* get_method_data(MethodData* o) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   219
    if (o == NULL) return NULL;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   220
    return get_metadata(o)->as_method_data();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   221
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   222
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   223
  ciMethod* get_method_from_handle(Method* method);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   225
  ciInstance* get_or_create_exception(jobject& handle, Symbol* name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  // Get a ciMethod representing either an unfound method or
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  // a method with an unloaded holder.  Ensures uniqueness of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  // the result.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  ciMethod* get_unloaded_method(ciInstanceKlass* holder,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
                                ciSymbol*        name,
10734
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 10508
diff changeset
   232
                                ciSymbol*        signature,
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 10508
diff changeset
   233
                                ciInstanceKlass* accessor) {
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 10508
diff changeset
   234
    return _factory->get_unloaded_method(holder, name, signature, accessor);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  // Get a ciKlass representing an unloaded klass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  // Ensures uniqueness of the result.
10734
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 10508
diff changeset
   239
  ciKlass* get_unloaded_klass(ciKlass*  accessing_klass,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
                              ciSymbol* name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    return _factory->get_unloaded_klass(accessing_klass, name, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   244
  // Get a ciKlass representing an unloaded klass mirror.
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   245
  // Result is not necessarily unique, but will be unloaded.
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   246
  ciInstance* get_unloaded_klass_mirror(ciKlass* type) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   247
    return _factory->get_unloaded_klass_mirror(type);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   248
  }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   249
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   250
  // Get a ciInstance representing an unresolved method handle constant.
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   251
  ciInstance* get_unloaded_method_handle_constant(ciKlass*  holder,
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   252
                                                  ciSymbol* name,
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   253
                                                  ciSymbol* signature,
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   254
                                                  int       ref_kind) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   255
    return _factory->get_unloaded_method_handle_constant(holder, name, signature, ref_kind);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   256
  }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   257
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   258
  // Get a ciInstance representing an unresolved method type constant.
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   259
  ciInstance* get_unloaded_method_type_constant(ciSymbol* signature) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   260
    return _factory->get_unloaded_method_type_constant(signature);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   261
  }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   262
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  // See if we already have an unloaded klass for the given name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  // or return NULL if not.
10734
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 10508
diff changeset
   265
  ciKlass *check_get_unloaded_klass(ciKlass*  accessing_klass, ciSymbol* name) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
    return _factory->get_unloaded_klass(accessing_klass, name, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  // Get a ciReturnAddress corresponding to the given bci.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  // Ensures uniqueness of the result.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  ciReturnAddress* get_return_address(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
    return _factory->get_return_address(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  // Get a ciMethodData representing the methodData for a method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  // with none.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  ciMethodData* get_empty_methodData() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    return _factory->get_empty_methodData();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  // General utility : get a buffer of some required length.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  // Used in symbol creation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  char* name_buffer(int req_len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  // Is this thread currently in the VM state?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  static bool is_in_vm();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   288
  // Helper routine for determining the validity of a compilation with
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   289
  // respect to method dependencies (e.g. concurrent class loading).
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   290
  void validate_compile_task_dependencies(ciMethod* target);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    MethodCompilable,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
    MethodCompilable_not_at_tier,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
    MethodCompilable_never
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  ciEnv(CompileTask* task, int system_dictionary_modification_counter);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  // Used only during initialization of the ci
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  ciEnv(Arena* arena);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  ~ciEnv();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  OopRecorder* oop_recorder() { return _oop_recorder; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  void set_oop_recorder(OopRecorder* r) { _oop_recorder = r; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  DebugInformationRecorder* debug_info() { return _debug_info; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  void set_debug_info(DebugInformationRecorder* i) { _debug_info = i; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  Dependencies* dependencies() { return _dependencies; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  void set_dependencies(Dependencies* d) { _dependencies = d; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  // This is true if the compilation is not going to produce code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  // (It is reasonable to retry failed compilations.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  bool failing() { return _failure_reason != NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  // Reason this compilation is failing, such as "too many basic blocks".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  const char* failure_reason() { return _failure_reason; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  // Return state of appropriate compilability
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  int compilable() { return _compilable; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
11636
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 10734
diff changeset
   323
  const char* retry_message() const {
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 10734
diff changeset
   324
    switch (_compilable) {
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 10734
diff changeset
   325
      case ciEnv::MethodCompilable_not_at_tier:
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 10734
diff changeset
   326
        return "retry at different tier";
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 10734
diff changeset
   327
      case ciEnv::MethodCompilable_never:
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 10734
diff changeset
   328
        return "not retryable";
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 10734
diff changeset
   329
      case ciEnv::MethodCompilable:
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 10734
diff changeset
   330
        return NULL;
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 10734
diff changeset
   331
      default:
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 10734
diff changeset
   332
        ShouldNotReachHere();
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 10734
diff changeset
   333
        return NULL;
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 10734
diff changeset
   334
    }
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 10734
diff changeset
   335
  }
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 10734
diff changeset
   336
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  bool break_at_compile() { return _break_at_compile; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  void set_break_at_compile(bool z) { _break_at_compile = z; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
2867
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
   340
  // 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
   341
  void  cache_jvmti_state();
22893
e3a2b513713a 8035493: JVMTI PopFrame capability must instruct compilers not to prune locals
mgronlun
parents: 22243
diff changeset
   342
  bool  jvmti_state_changed() const;
e3a2b513713a 8035493: JVMTI PopFrame capability must instruct compilers not to prune locals
mgronlun
parents: 22243
diff changeset
   343
  bool  should_retain_local_variables() const;
2867
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
   344
  bool  jvmti_can_hotswap_or_post_breakpoint() const { return _jvmti_can_hotswap_or_post_breakpoint; }
4761
bdb7375a1fee 6902182: 4/4 Starting with jdwp agent should not incur performance penalty
dcubed
parents: 4571
diff changeset
   345
  bool  jvmti_can_post_on_exceptions()         const { return _jvmti_can_post_on_exceptions; }
2867
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
   346
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1
diff changeset
   347
  // 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
   348
  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
   349
  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
   350
  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
   351
  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
   352
  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
   353
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  // The compiler task which has created this env.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  // May be useful to find out compile_id, comp_level, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  CompileTask* task() { return _task; }
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 27706
diff changeset
   357
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  // Handy forwards to the task:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  int comp_level();   // task()->comp_level()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  uint compile_id();  // task()->compile_id()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  // Register the result of a compilation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  void register_method(ciMethod*                 target,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
                       int                       entry_bci,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
                       CodeOffsets*              offsets,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
                       int                       orig_pc_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
                       CodeBuffer*               code_buffer,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
                       int                       frame_words,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
                       OopMapSet*                oop_map_set,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
                       ExceptionHandlerTable*    handler_table,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
                       ImplicitExceptionTable*   inc_table,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
                       AbstractCompiler*         compiler,
13883
6979b9850feb 7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents: 13728
diff changeset
   373
                       bool                      has_unsafe_access,
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22893
diff changeset
   374
                       bool                      has_wide_vectors,
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 27706
diff changeset
   375
                       DirectiveSet*             directives,
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22893
diff changeset
   376
                       RTMState                  rtm_state = NoRTM);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  // Access to certain well known ciObjects.
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4567
diff changeset
   380
#define WK_KLASS_FUNC(name, ignore_s, ignore_o) \
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4567
diff changeset
   381
  ciInstanceKlass* name() { \
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4567
diff changeset
   382
    return _##name;\
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  }
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4567
diff changeset
   384
  WK_KLASSES_DO(WK_KLASS_FUNC)
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4567
diff changeset
   385
#undef WK_KLASS_FUNC
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4567
diff changeset
   386
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  ciInstance* NullPointerException_instance() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
    assert(_NullPointerException_instance != NULL, "initialization problem");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
    return _NullPointerException_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  ciInstance* ArithmeticException_instance() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
    assert(_ArithmeticException_instance != NULL, "initialization problem");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
    return _ArithmeticException_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  // Lazy constructors:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  ciInstance* ArrayIndexOutOfBoundsException_instance();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  ciInstance* ArrayStoreException_instance();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  ciInstance* ClassCastException_instance();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3908
diff changeset
   401
  ciInstance* the_null_string();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3908
diff changeset
   402
  ciInstance* the_min_jint_string();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3908
diff changeset
   403
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  static ciSymbol* unloaded_cisymbol() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
    return _unloaded_cisymbol;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  static ciObjArrayKlass* unloaded_ciobjarrayklass() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
    return _unloaded_ciobjarrayklass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  static ciInstanceKlass* unloaded_ciinstance_klass() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
    return _unloaded_ciinstance_klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  }
19710
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 17121
diff changeset
   413
  ciInstance* unloaded_ciinstance();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  ciKlass*  find_system_klass(ciSymbol* klass_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  // Note:  To find a class from its name string, use ciSymbol::make,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  // but consider adding to vmSymbols.hpp instead.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  // converts the ciKlass* representing the holder of a method into a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  // ciInstanceKlass*.  This is needed since the holder of a method in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  // the bytecodes could be an array type.  Basically this converts
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  // array types into java/lang/Object and other types stay as they are.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  static ciInstanceKlass* get_instance_klass_for_declared_method_holder(ciKlass* klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  // Return the machine-level offset of o, which must be an element of a.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  // This may be used to form constant-loading expressions in lieu of simpler encodings.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  int       array_element_offset_in_bytes(ciArray* a, ciObject* o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  // Access to the compile-lifetime allocation arena.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  Arena*    arena() { return _arena; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  // What is the current compilation environment?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  static ciEnv* current() { return CompilerThread::current()->env(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  // Overload with current thread argument
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  static ciEnv* current(CompilerThread *thread) { return thread->env(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  // Per-compiler data.  (Used by C2 to publish the Compile* pointer.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  void* compiler_data() { return _compiler_data; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  void set_compiler_data(void* x) { _compiler_data = x; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  // Notice that a method has been inlined in the current compile;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  // used only for statistics.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  void notice_inlined_method(ciMethod* method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  // Total number of bytecodes in inlined methods in this compile
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  int num_inlined_bytecodes() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  // Output stream for logging compilation info.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  CompileLog* log() { return _log; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  void set_log(CompileLog* log) { _log = log; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  // Check for changes to the system dictionary during compilation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  bool system_dictionary_modification_counter_changed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
27706
3f10f4ac2bd6 8065339: Failed compilation does not always trigger a JFR event 'CompilerFailure'
thartmann
parents: 25492
diff changeset
   456
  void record_failure(const char* reason);      // Record failure and report later
3f10f4ac2bd6 8065339: Failed compilation does not always trigger a JFR event 'CompilerFailure'
thartmann
parents: 25492
diff changeset
   457
  void report_failure(const char* reason);      // Report failure immediately
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  void record_method_not_compilable(const char* reason, bool all_tiers = true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  void record_out_of_memory_failure();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   460
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   461
  // RedefineClasses support
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   462
  void metadata_do(void f(Metadata*)) { _factory->metadata_do(f); }
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13883
diff changeset
   463
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13883
diff changeset
   464
  // Dump the compilation replay data for the ciEnv to the stream.
22243
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 22234
diff changeset
   465
  void dump_replay_data(int compile_id);
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 22234
diff changeset
   466
  void dump_inline_data(int compile_id);
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13883
diff changeset
   467
  void dump_replay_data(outputStream* out);
20692
65021f70c2fc 8024943: ciReplay: fails to dump replay data during safepointing
vlivanov
parents: 19710
diff changeset
   468
  void dump_replay_data_unsafe(outputStream* out);
22243
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 22234
diff changeset
   469
  void dump_compile_data(outputStream* out);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
   471
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
   472
#endif // SHARE_VM_CI_CIENV_HPP