hotspot/src/share/vm/ci/ciEnv.cpp
author kvn
Thu, 02 May 2013 18:50:05 -0700
changeset 17134 d58219af8d68
parent 17078 a37993c37937
parent 17123 a8e62eed2e3e
child 19710 2f8ca425504e
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
15799
6aa92f9debd2 8000797: NPG: is_pseudo_string_at() doesn't work
coleenp
parents: 15485
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: 5420
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5420
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: 5420
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: 6453
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    26
#include "ci/ciConstant.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    27
#include "ci/ciEnv.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    28
#include "ci/ciField.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    29
#include "ci/ciInstance.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    30
#include "ci/ciInstanceKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    31
#include "ci/ciMethod.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    32
#include "ci/ciNullObject.hpp"
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
    33
#include "ci/ciReplay.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    34
#include "ci/ciUtilities.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    35
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    36
#include "classfile/vmSymbols.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    37
#include "code/scopeDesc.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    38
#include "compiler/compileBroker.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    39
#include "compiler/compileLog.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    40
#include "compiler/compilerOracle.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    41
#include "gc_interface/collectedHeap.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    42
#include "interpreter/linkResolver.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    43
#include "memory/allocation.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    44
#include "memory/oopFactory.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    45
#include "memory/universe.inline.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
    46
#include "oops/methodData.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    47
#include "oops/objArrayKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    48
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    49
#include "oops/oop.inline2.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    50
#include "prims/jvmtiExport.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    51
#include "runtime/init.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    52
#include "runtime/reflection.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    53
#include "runtime/sharedRuntime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    54
#include "utilities/dtrace.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 14490
diff changeset
    55
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    56
#ifdef COMPILER1
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    57
#include "c1/c1_Runtime1.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    58
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    59
#ifdef COMPILER2
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    60
#include "opto/runtime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    61
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
// ciEnv
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
// This class is the top level broker for requests from the compiler
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
// to the VM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
ciObject*              ciEnv::_null_object_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4567
diff changeset
    70
#define WK_KLASS_DEFN(name, ignore_s, ignore_o) ciInstanceKlass* ciEnv::_##name = NULL;
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4567
diff changeset
    71
WK_KLASSES_DO(WK_KLASS_DEFN)
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4567
diff changeset
    72
#undef WK_KLASS_DEFN
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
ciSymbol*        ciEnv::_unloaded_cisymbol = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
ciInstanceKlass* ciEnv::_unloaded_ciinstance_klass = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
ciObjArrayKlass* ciEnv::_unloaded_ciobjarrayklass = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
jobject ciEnv::_ArrayIndexOutOfBoundsException_handle = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
jobject ciEnv::_ArrayStoreException_handle = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
jobject ciEnv::_ClassCastException_handle = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
static bool firstEnv = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
#endif /* PRODUCT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
// ciEnv::ciEnv
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
ciEnv::ciEnv(CompileTask* task, int system_dictionary_modification_counter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  VM_ENTRY_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // Set up ciEnv::current immediately, for the sake of ciObjectFactory, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  thread->set_env(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  assert(ciEnv::current() == this, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  _oop_recorder = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  _debug_info = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  _dependencies = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  _failure_reason = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  _compilable = MethodCompilable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  _break_at_compile = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  _compiler_data = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  assert(!firstEnv, "not initialized properly");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
#endif /* !PRODUCT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  _system_dictionary_modification_counter = system_dictionary_modification_counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  _num_inlined_bytecodes = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  assert(task == NULL || thread->task() == task, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  _task = task;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  _log = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // Temporary buffer for creating symbols and such.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  _name_buffer = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  _name_buffer_len = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  _arena   = &_ciEnv_arena;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  _factory = new (_arena) ciObjectFactory(_arena, 128);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // Preload commonly referenced system ciObjects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // During VM initialization, these instances have not yet been created.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // Assertions ensure that these instances are not accessed before
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // their initialization.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  assert(Universe::is_fully_initialized(), "should be complete");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  oop o = Universe::null_ptr_exception_instance();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  assert(o != NULL, "should have been initialized");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  _NullPointerException_instance = get_object(o)->as_instance();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  o = Universe::arithmetic_exception_instance();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  assert(o != NULL, "should have been initialized");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  _ArithmeticException_instance = get_object(o)->as_instance();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  _ArrayIndexOutOfBoundsException_instance = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  _ArrayStoreException_instance = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  _ClassCastException_instance = NULL;
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   137
  _the_null_string = NULL;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   138
  _the_min_jint_string = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
ciEnv::ciEnv(Arena* arena) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  ASSERT_IN_VM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  // Set up ciEnv::current immediately, for the sake of ciObjectFactory, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  CompilerThread* current_thread = CompilerThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  assert(current_thread->env() == NULL, "must be");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  current_thread->set_env(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  assert(ciEnv::current() == this, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  _oop_recorder = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  _debug_info = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  _dependencies = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  _failure_reason = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  _compilable = MethodCompilable_never;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  _break_at_compile = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  _compiler_data = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  assert(firstEnv, "must be first");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  firstEnv = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
#endif /* !PRODUCT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  _system_dictionary_modification_counter = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  _num_inlined_bytecodes = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  _task = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  _log = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  // Temporary buffer for creating symbols and such.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  _name_buffer = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  _name_buffer_len = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  _arena   = arena;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  _factory = new (_arena) ciObjectFactory(_arena, 128);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  // Preload commonly referenced system ciObjects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  // During VM initialization, these instances have not yet been created.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  // Assertions ensure that these instances are not accessed before
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  // their initialization.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  assert(Universe::is_fully_initialized(), "must be");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   182
  _NullPointerException_instance = NULL;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   183
  _ArithmeticException_instance = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  _ArrayIndexOutOfBoundsException_instance = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  _ArrayStoreException_instance = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  _ClassCastException_instance = NULL;
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   187
  _the_null_string = NULL;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   188
  _the_min_jint_string = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
ciEnv::~ciEnv() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  CompilerThread* current_thread = CompilerThread::current();
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   193
  _factory->remove_symbols();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   194
  // Need safepoint to clear the env on the thread.  RedefineClasses might
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   195
  // be reading it.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   196
  GUARDED_VM_ENTRY(current_thread->set_env(NULL);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
// ------------------------------------------------------------------
2867
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   200
// Cache Jvmti state
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   201
void ciEnv::cache_jvmti_state() {
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   202
  VM_ENTRY_MARK;
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   203
  // Get Jvmti capabilities under lock to get consistant values.
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   204
  MutexLocker mu(JvmtiThreadState_lock);
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   205
  _jvmti_can_hotswap_or_post_breakpoint = JvmtiExport::can_hotswap_or_post_breakpoint();
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   206
  _jvmti_can_access_local_variables     = JvmtiExport::can_access_local_variables();
4761
bdb7375a1fee 6902182: 4/4 Starting with jdwp agent should not incur performance penalty
dcubed
parents: 4571
diff changeset
   207
  _jvmti_can_post_on_exceptions         = JvmtiExport::can_post_on_exceptions();
2867
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   208
}
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   209
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   210
// ------------------------------------------------------------------
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   211
// Cache DTrace flags
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   212
void ciEnv::cache_dtrace_flags() {
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   213
  // Need lock?
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   214
  _dtrace_extended_probes = ExtendedDTraceProbes;
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   215
  if (_dtrace_extended_probes) {
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   216
    _dtrace_monitor_probes  = true;
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   217
    _dtrace_method_probes   = true;
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   218
    _dtrace_alloc_probes    = true;
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   219
  } else {
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   220
    _dtrace_monitor_probes  = DTraceMonitorProbes;
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   221
    _dtrace_method_probes   = DTraceMethodProbes;
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   222
    _dtrace_alloc_probes    = DTraceAllocProbes;
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   223
  }
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   224
}
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   225
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   226
// ------------------------------------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
// helper for lazy exception creation
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   228
ciInstance* ciEnv::get_or_create_exception(jobject& handle, Symbol* name) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  VM_ENTRY_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  if (handle == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    // Cf. universe.cpp, creation of Universe::_null_ptr_exception_instance.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   232
    Klass* k = SystemDictionary::find(name, Handle(), Handle(), THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    jobject objh = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
    if (!HAS_PENDING_EXCEPTION && k != NULL) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   235
      oop obj = InstanceKlass::cast(k)->allocate_instance(THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
      if (!HAS_PENDING_EXCEPTION)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
        objh = JNIHandles::make_global(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    if (HAS_PENDING_EXCEPTION) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
      CLEAR_PENDING_EXCEPTION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
      handle = objh;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  oop obj = JNIHandles::resolve(handle);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  return obj == NULL? NULL: get_object(obj)->as_instance();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
ciInstance* ciEnv::ArrayIndexOutOfBoundsException_instance() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  if (_ArrayIndexOutOfBoundsException_instance == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    _ArrayIndexOutOfBoundsException_instance
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
          = get_or_create_exception(_ArrayIndexOutOfBoundsException_handle,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   253
          vmSymbols::java_lang_ArrayIndexOutOfBoundsException());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  return _ArrayIndexOutOfBoundsException_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
ciInstance* ciEnv::ArrayStoreException_instance() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  if (_ArrayStoreException_instance == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
    _ArrayStoreException_instance
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
          = get_or_create_exception(_ArrayStoreException_handle,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   261
          vmSymbols::java_lang_ArrayStoreException());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  return _ArrayStoreException_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
ciInstance* ciEnv::ClassCastException_instance() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  if (_ClassCastException_instance == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
    _ClassCastException_instance
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
          = get_or_create_exception(_ClassCastException_handle,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   269
          vmSymbols::java_lang_ClassCastException());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  return _ClassCastException_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   274
ciInstance* ciEnv::the_null_string() {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   275
  if (_the_null_string == NULL) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   276
    VM_ENTRY_MARK;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   277
    _the_null_string = get_object(Universe::the_null_string())->as_instance();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   278
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   279
  return _the_null_string;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   280
}
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   281
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   282
ciInstance* ciEnv::the_min_jint_string() {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   283
  if (_the_min_jint_string == NULL) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   284
    VM_ENTRY_MARK;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   285
    _the_min_jint_string = get_object(Universe::the_min_jint_string())->as_instance();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   286
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   287
  return _the_min_jint_string;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   288
}
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   289
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
// ciEnv::get_method_from_handle
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   292
ciMethod* ciEnv::get_method_from_handle(Method* method) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   294
  return get_metadata(method)->as_method();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
// ciEnv::array_element_offset_in_bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
int ciEnv::array_element_offset_in_bytes(ciArray* a_h, ciObject* o_h) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  VM_ENTRY_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  objArrayOop a = (objArrayOop)a_h->get_oop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  assert(a->is_objArray(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  int length = a->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  oop o = o_h->get_oop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  for (int i = 0; i < length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
    if (a->obj_at(i) == o)  return i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
// ciEnv::check_klass_accessiblity
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
// Note: the logic of this method should mirror the logic of
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   316
// ConstantPool::verify_constant_pool_resolve.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
bool ciEnv::check_klass_accessibility(ciKlass* accessing_klass,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   318
                                      Klass* resolved_klass) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  if (accessing_klass == NULL || !accessing_klass->is_loaded()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   322
  if (accessing_klass->is_obj_array_klass()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
    accessing_klass = accessing_klass->as_obj_array_klass()->base_element_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  if (!accessing_klass->is_instance_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   329
  if (resolved_klass->oop_is_objArray()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
    // Find the element klass, if this is an array.
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13883
diff changeset
   331
    resolved_klass = ObjArrayKlass::cast(resolved_klass)->bottom_klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   333
  if (resolved_klass->oop_is_instance()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   334
    return Reflection::verify_class_access(accessing_klass->get_Klass(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
                                           resolved_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
                                           true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
// ciEnv::get_klass_by_name_impl
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
ciKlass* ciEnv::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: 9328
diff changeset
   344
                                       constantPoolHandle cpool,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
                                       ciSymbol* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
                                       bool require_local) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  ASSERT_IN_VM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  EXCEPTION_CONTEXT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  // Now we need to check the SystemDictionary
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   351
  Symbol* sym = name->get_symbol();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  if (sym->byte_at(0) == 'L' &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
    sym->byte_at(sym->utf8_length()-1) == ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
    // This is a name from a signature.  Strip off the trimmings.
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   355
    // Call recursive to keep scope of strippedsym.
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   356
    TempNewSymbol strippedsym = SymbolTable::new_symbol(sym->as_utf8()+1,
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   357
                    sym->utf8_length()-2,
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   358
                    KILL_COMPILE_ON_FATAL_(_unloaded_ciinstance_klass));
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   359
    ciSymbol* strippedname = get_symbol(strippedsym);
10008
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9328
diff changeset
   360
    return get_klass_by_name_impl(accessing_klass, cpool, strippedname, require_local);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  // Check for prior unloaded klass.  The SystemDictionary's answers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  // can vary over time but the compiler needs consistency.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  ciKlass* unloaded_klass = check_get_unloaded_klass(accessing_klass, name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  if (unloaded_klass != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
    if (require_local)  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
    return unloaded_klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  Handle loader(THREAD, (oop)NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  Handle domain(THREAD, (oop)NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  if (accessing_klass != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
    loader = Handle(THREAD, accessing_klass->loader());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
    domain = Handle(THREAD, accessing_klass->protection_domain());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  // setup up the proper type to return on OOM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  ciKlass* fail_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  if (sym->byte_at(0) == '[') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
    fail_type = _unloaded_ciobjarrayklass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
    fail_type = _unloaded_ciinstance_klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  }
7918
ce1e4ae77aea 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 7397
diff changeset
   385
  KlassHandle found_klass;
8314
057b1c20fd7e 6354181: nsk.logging.stress.threads.scmhml001 fails assertion in "src/share/vm/oops/instanceKlass.cpp, 111"
never
parents: 8076
diff changeset
   386
  {
8333
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8314
diff changeset
   387
    ttyUnlocker ttyul;  // release tty lock to avoid ordering problems
8314
057b1c20fd7e 6354181: nsk.logging.stress.threads.scmhml001 fails assertion in "src/share/vm/oops/instanceKlass.cpp, 111"
never
parents: 8076
diff changeset
   388
    MutexLocker ml(Compile_lock);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   389
    Klass* kls;
8314
057b1c20fd7e 6354181: nsk.logging.stress.threads.scmhml001 fails assertion in "src/share/vm/oops/instanceKlass.cpp, 111"
never
parents: 8076
diff changeset
   390
    if (!require_local) {
057b1c20fd7e 6354181: nsk.logging.stress.threads.scmhml001 fails assertion in "src/share/vm/oops/instanceKlass.cpp, 111"
never
parents: 8076
diff changeset
   391
      kls = SystemDictionary::find_constrained_instance_or_array_klass(sym, loader,
057b1c20fd7e 6354181: nsk.logging.stress.threads.scmhml001 fails assertion in "src/share/vm/oops/instanceKlass.cpp, 111"
never
parents: 8076
diff changeset
   392
                                                                       KILL_COMPILE_ON_FATAL_(fail_type));
057b1c20fd7e 6354181: nsk.logging.stress.threads.scmhml001 fails assertion in "src/share/vm/oops/instanceKlass.cpp, 111"
never
parents: 8076
diff changeset
   393
    } else {
057b1c20fd7e 6354181: nsk.logging.stress.threads.scmhml001 fails assertion in "src/share/vm/oops/instanceKlass.cpp, 111"
never
parents: 8076
diff changeset
   394
      kls = SystemDictionary::find_instance_or_array_klass(sym, loader, domain,
057b1c20fd7e 6354181: nsk.logging.stress.threads.scmhml001 fails assertion in "src/share/vm/oops/instanceKlass.cpp, 111"
never
parents: 8076
diff changeset
   395
                                                           KILL_COMPILE_ON_FATAL_(fail_type));
057b1c20fd7e 6354181: nsk.logging.stress.threads.scmhml001 fails assertion in "src/share/vm/oops/instanceKlass.cpp, 111"
never
parents: 8076
diff changeset
   396
    }
7918
ce1e4ae77aea 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 7397
diff changeset
   397
    found_klass = KlassHandle(THREAD, kls);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  // If we fail to find an array klass, look again for its element type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  // The element type may be available either locally or via constraints.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  // In either case, if we can find the element type in the system dictionary,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  // we must build an array type around it.  The CI requires array klasses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  // to be loaded if their element klasses are loaded, except when memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  // is exhausted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  if (sym->byte_at(0) == '[' &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
      (sym->byte_at(1) == '[' || sym->byte_at(1) == 'L')) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
    // We have an unloaded array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    // Build it on the fly if the element class exists.
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   410
    TempNewSymbol elem_sym = SymbolTable::new_symbol(sym->as_utf8()+1,
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   411
                                                 sym->utf8_length()-1,
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   412
                                                 KILL_COMPILE_ON_FATAL_(fail_type));
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   413
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
    // Get element ciKlass recursively.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
    ciKlass* elem_klass =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
      get_klass_by_name_impl(accessing_klass,
10008
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9328
diff changeset
   417
                             cpool,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   418
                             get_symbol(elem_sym),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
                             require_local);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
    if (elem_klass != NULL && elem_klass->is_loaded()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
      // Now make an array for it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
      return ciObjArrayKlass::make_impl(elem_klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
10008
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9328
diff changeset
   426
  if (found_klass() == NULL && !cpool.is_null() && cpool->has_preresolution()) {
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9328
diff changeset
   427
    // Look inside the constant pool for pre-resolved class entries.
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9328
diff changeset
   428
    for (int i = cpool->length() - 1; i >= 1; i--) {
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9328
diff changeset
   429
      if (cpool->tag_at(i).is_klass()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   430
        Klass* kls = cpool->resolved_klass_at(i);
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   431
        if (kls->name() == sym) {
10008
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9328
diff changeset
   432
          found_klass = KlassHandle(THREAD, kls);
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9328
diff changeset
   433
          break;
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9328
diff changeset
   434
        }
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9328
diff changeset
   435
      }
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9328
diff changeset
   436
    }
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9328
diff changeset
   437
  }
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9328
diff changeset
   438
7918
ce1e4ae77aea 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 7397
diff changeset
   439
  if (found_klass() != NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
    // Found it.  Build a CI handle.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   441
    return get_klass(found_klass());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  if (require_local)  return NULL;
10734
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 10564
diff changeset
   445
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  // Not yet loaded into the VM, or not governed by loader constraints.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  // Make a CI representative for it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  return get_unloaded_klass(accessing_klass, name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
// ciEnv::get_klass_by_name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
ciKlass* ciEnv::get_klass_by_name(ciKlass* accessing_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
                                  ciSymbol* klass_name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
                                  bool require_local) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  GUARDED_VM_ENTRY(return get_klass_by_name_impl(accessing_klass,
10008
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9328
diff changeset
   457
                                                 constantPoolHandle(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
                                                 klass_name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
                                                 require_local);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
// ciEnv::get_klass_by_index_impl
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
// Implementation of get_klass_by_index.
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   466
ciKlass* ciEnv::get_klass_by_index_impl(constantPoolHandle cpool,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
                                        int index,
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   468
                                        bool& is_accessible,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   469
                                        ciInstanceKlass* accessor) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  EXCEPTION_CONTEXT;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   471
  KlassHandle klass; // = NULL;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   472
  Symbol* klass_name = NULL;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   473
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   474
  if (cpool->tag_at(index).is_symbol()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   475
    klass_name = cpool->symbol_at(index);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   476
  } else {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   477
    // Check if it's resolved if it's not a symbol constant pool entry.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   478
    klass = KlassHandle(THREAD, ConstantPool::klass_at_if_loaded(cpool, index));
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   479
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  if (klass.is_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
    // The klass has not been inserted into the constant pool.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
    // Try to look it up by name.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
      // We have to lock the cpool to keep the oop from being resolved
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
      // while we are accessing it.
17078
a37993c37937 8008962: NPG: Memory regression: One extra Monitor per ConstantPool
iklam
parents: 16378
diff changeset
   486
      oop cplock = cpool->lock();
a37993c37937 8008962: NPG: Memory regression: One extra Monitor per ConstantPool
iklam
parents: 16378
diff changeset
   487
      ObjectLocker ol(cplock, THREAD, cplock != NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
      constantTag tag = cpool->tag_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
      if (tag.is_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
        // The klass has been inserted into the constant pool
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
        // very recently.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
        klass = KlassHandle(THREAD, cpool->resolved_klass_at(index));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
        assert(cpool->tag_at(index).is_unresolved_klass(), "wrong tag");
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   495
        klass_name = cpool->unresolved_klass_at(index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   499
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  if (klass.is_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
    // Not found in constant pool.  Use the name to do the lookup.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
    ciKlass* k = get_klass_by_name_impl(accessor,
10008
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9328
diff changeset
   504
                                        cpool,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   505
                                        get_symbol(klass_name),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
                                        false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
    // Calculate accessibility the hard way.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
    if (!k->is_loaded()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
      is_accessible = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
    } else if (k->loader() != accessor->loader() &&
10008
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9328
diff changeset
   511
               get_klass_by_name_impl(accessor, cpool, k->name(), true) == NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
      // Loaded only remotely.  Not linked yet.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
      is_accessible = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
      // Linked locally, and we must also check public/private, etc.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   516
      is_accessible = check_klass_accessibility(accessor, k->get_Klass());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
    return k;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  // Check for prior unloaded klass.  The SystemDictionary's answers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  // can vary over time but the compiler needs consistency.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   523
  ciSymbol* name = get_symbol(klass()->name());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  ciKlass* unloaded_klass = check_get_unloaded_klass(accessor, name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  if (unloaded_klass != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
    is_accessible = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
    return unloaded_klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  // It is known to be accessible, since it was found in the constant pool.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  is_accessible = true;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   532
  return get_klass(klass());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
// ciEnv::get_klass_by_index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
// Get a klass from the constant pool.
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   539
ciKlass* ciEnv::get_klass_by_index(constantPoolHandle cpool,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
                                   int index,
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   541
                                   bool& is_accessible,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   542
                                   ciInstanceKlass* accessor) {
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   543
  GUARDED_VM_ENTRY(return get_klass_by_index_impl(cpool, index, is_accessible, accessor);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
// ciEnv::get_constant_by_index_impl
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
// Implementation of get_constant_by_index().
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   550
ciConstant ciEnv::get_constant_by_index_impl(constantPoolHandle cpool,
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   551
                                             int pool_index, int cache_index,
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   552
                                             ciInstanceKlass* accessor) {
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   553
  bool ignore_will_link;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  EXCEPTION_CONTEXT;
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   555
  int index = pool_index;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   556
  if (cache_index >= 0) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   557
    assert(index < 0, "only one kind of index at a time");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   558
    oop obj = cpool->resolved_references()->obj_at(cache_index);
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   559
    if (obj != NULL) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   560
      ciObject* ciobj = get_object(obj);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   561
      return ciConstant(T_OBJECT, ciobj);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   562
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   563
    index = cpool->object_to_cp_index(cache_index);
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   564
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  constantTag tag = cpool->tag_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  if (tag.is_int()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
    return ciConstant(T_INT, (jint)cpool->int_at(index));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  } else if (tag.is_long()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
    return ciConstant((jlong)cpool->long_at(index));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
  } else if (tag.is_float()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
    return ciConstant((jfloat)cpool->float_at(index));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  } else if (tag.is_double()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
    return ciConstant((jdouble)cpool->double_at(index));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   574
  } else if (tag.is_string()) {
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   575
    oop string = NULL;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   576
    assert(cache_index >= 0, "should have a cache index");
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   577
    if (cpool->is_pseudo_string_at(index)) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   578
      string = cpool->pseudo_string_at(index, cache_index);
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   579
    } else {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   580
      string = cpool->string_at(index, cache_index, THREAD);
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   581
      if (HAS_PENDING_EXCEPTION) {
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   582
        CLEAR_PENDING_EXCEPTION;
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   583
        record_out_of_memory_failure();
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   584
        return ciConstant();
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   585
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
    ciObject* constant = get_object(string);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
    assert (constant->is_instance(), "must be an instance, or not? ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
    return ciConstant(T_OBJECT, constant);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  } else if (tag.is_klass() || tag.is_unresolved_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
    // 4881222: allow ldc to take a class type
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   592
    ciKlass* klass = get_klass_by_index_impl(cpool, index, ignore_will_link, accessor);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
    if (HAS_PENDING_EXCEPTION) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
      CLEAR_PENDING_EXCEPTION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
      record_out_of_memory_failure();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
      return ciConstant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
    assert (klass->is_instance_klass() || klass->is_array_klass(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
            "must be an instance or array klass ");
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   600
    return ciConstant(T_OBJECT, klass->java_mirror());
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   601
  } else if (tag.is_method_type()) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   602
    // must execute Java code to link this CP entry into cache[i].f1
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   603
    ciSymbol* signature = get_symbol(cpool->method_type_signature_at(index));
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   604
    ciObject* ciobj = get_unloaded_method_type_constant(signature);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   605
    return ciConstant(T_OBJECT, ciobj);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   606
  } else if (tag.is_method_handle()) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   607
    // must execute Java code to link this CP entry into cache[i].f1
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   608
    int ref_kind        = cpool->method_handle_ref_kind_at(index);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   609
    int callee_index    = cpool->method_handle_klass_index_at(index);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   610
    ciKlass* callee     = get_klass_by_index_impl(cpool, callee_index, ignore_will_link, accessor);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   611
    ciSymbol* name      = get_symbol(cpool->method_handle_name_ref_at(index));
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   612
    ciSymbol* signature = get_symbol(cpool->method_handle_signature_ref_at(index));
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   613
    ciObject* ciobj     = get_unloaded_method_handle_constant(callee, name, signature, ref_kind);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   614
    return ciConstant(T_OBJECT, ciobj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
    return ciConstant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
// ciEnv::get_constant_by_index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
// Pull a constant out of the constant pool.  How appropriate.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
// Implementation note: this query is currently in no way cached.
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   627
ciConstant ciEnv::get_constant_by_index(constantPoolHandle cpool,
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   628
                                        int pool_index, int cache_index,
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   629
                                        ciInstanceKlass* accessor) {
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   630
  GUARDED_VM_ENTRY(return get_constant_by_index_impl(cpool, pool_index, cache_index, accessor);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
// ciEnv::get_field_by_index_impl
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
// Implementation of get_field_by_index.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
// Implementation note: the results of field lookups are cached
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
// in the accessor klass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
ciField* ciEnv::get_field_by_index_impl(ciInstanceKlass* accessor,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
                                        int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  ciConstantPoolCache* cache = accessor->field_cache();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  if (cache == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
    ciField* field = new (arena()) ciField(accessor, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
    return field;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
    ciField* field = (ciField*)cache->get(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
    if (field == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
      field = new (arena()) ciField(accessor, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
      cache->insert(index, field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
    return field;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
// ciEnv::get_field_by_index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
// Get a field by index from a klass's constant pool.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
ciField* ciEnv::get_field_by_index(ciInstanceKlass* accessor,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
                                   int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
  GUARDED_VM_ENTRY(return get_field_by_index_impl(accessor, index);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
// ciEnv::lookup_method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
// Perform an appropriate method lookup based on accessor, holder,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
// name, signature, and bytecode.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   670
Method* ciEnv::lookup_method(InstanceKlass*  accessor,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   671
                               InstanceKlass*  holder,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   672
                               Symbol*       name,
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   673
                               Symbol*       sig,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
                               Bytecodes::Code bc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  EXCEPTION_CONTEXT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  KlassHandle h_accessor(THREAD, accessor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  KlassHandle h_holder(THREAD, holder);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
  LinkResolver::check_klass_accessability(h_accessor, h_holder, KILL_COMPILE_ON_FATAL_(NULL));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
  methodHandle dest_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  switch (bc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  case Bytecodes::_invokestatic:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
    dest_method =
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   683
      LinkResolver::resolve_static_call_or_null(h_holder, name, sig, h_accessor);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
  case Bytecodes::_invokespecial:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
    dest_method =
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   687
      LinkResolver::resolve_special_call_or_null(h_holder, name, sig, h_accessor);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  case Bytecodes::_invokeinterface:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
    dest_method =
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   691
      LinkResolver::linktime_resolve_interface_method_or_null(h_holder, name, sig,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
                                                              h_accessor, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
  case Bytecodes::_invokevirtual:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
    dest_method =
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   696
      LinkResolver::linktime_resolve_virtual_method_or_null(h_holder, name, sig,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
                                                            h_accessor, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  default: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  return dest_method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
// ciEnv::get_method_by_index_impl
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   708
ciMethod* ciEnv::get_method_by_index_impl(constantPoolHandle cpool,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   709
                                          int index, Bytecodes::Code bc,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   710
                                          ciInstanceKlass* accessor) {
13522
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   711
  if (bc == Bytecodes::_invokedynamic) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   712
    ConstantPoolCacheEntry* cpce = cpool->invokedynamic_cp_cache_entry_at(index);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   713
    bool is_resolved = !cpce->is_f1_null();
13522
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   714
    // FIXME: code generation could allow for null (unlinked) call site
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   715
    // The call site could be made patchable as follows:
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   716
    // Load the appendix argument from the constant pool.
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   717
    // Test the appendix argument and jump to a known deopt routine if it is null.
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   718
    // Jump through a patchable call site, which is initially a deopt routine.
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   719
    // Patch the call site to the nmethod entry point of the static compiled lambda form.
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   720
    // As with other two-component call sites, both values must be independently verified.
10008
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9328
diff changeset
   721
13522
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   722
    if (is_resolved) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   723
      // Get the invoker Method* from the constant pool.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   724
      // (The appendix argument, if any, will be noted in the method's signature.)
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   725
      Method* adapter = cpce->f1_as_method();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   726
      return get_method(adapter);
10008
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9328
diff changeset
   727
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
13522
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   729
    // Fake a method that is equivalent to a declared method.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   730
    ciInstanceKlass* holder    = get_instance_klass(SystemDictionary::MethodHandle_klass());
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10734
diff changeset
   731
    ciSymbol*        name      = ciSymbol::invokeBasic_name();
10734
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 10564
diff changeset
   732
    ciSymbol*        signature = get_symbol(cpool->signature_ref_at(index));
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 10564
diff changeset
   733
    return get_unloaded_method(holder, name, signature, accessor);
13522
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   734
  } else {
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   735
    const int holder_index = cpool->klass_ref_index_at(index);
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   736
    bool holder_is_accessible;
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   737
    ciKlass* holder = get_klass_by_index_impl(cpool, holder_index, holder_is_accessible, accessor);
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   738
    ciInstanceKlass* declared_holder = get_instance_klass_for_declared_method_holder(holder);
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   739
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   740
    // Get the method's name and signature.
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   741
    Symbol* name_sym = cpool->name_ref_at(index);
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   742
    Symbol* sig_sym  = cpool->signature_ref_at(index);
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   743
13522
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   744
    if (cpool->has_preresolution()
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   745
        || (holder == ciEnv::MethodHandle_klass() &&
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   746
            MethodHandles::is_signature_polymorphic_name(holder->get_Klass(), name_sym))) {
13522
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   747
      // Short-circuit lookups for JSR 292-related call sites.
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   748
      // That is, do not rely only on name-based lookups, because they may fail
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   749
      // if the names are not resolvable in the boot class loader (7056328).
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   750
      switch (bc) {
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   751
      case Bytecodes::_invokevirtual:
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   752
      case Bytecodes::_invokeinterface:
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   753
      case Bytecodes::_invokespecial:
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   754
      case Bytecodes::_invokestatic:
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   755
        {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   756
          Method* m = ConstantPool::method_at_if_loaded(cpool, index);
13522
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   757
          if (m != NULL) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   758
            return get_method(m);
13522
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   759
          }
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   760
        }
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   761
        break;
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   762
      }
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   763
    }
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   764
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   765
    if (holder_is_accessible) {  // Our declared holder is loaded.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   766
      InstanceKlass* lookup = declared_holder->get_instanceKlass();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   767
      Method* m = lookup_method(accessor->get_instanceKlass(), lookup, name_sym, sig_sym, bc);
13522
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   768
      if (m != NULL &&
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   769
          (bc == Bytecodes::_invokestatic
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 13974
diff changeset
   770
           ?  m->method_holder()->is_not_initialized()
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 13974
diff changeset
   771
           : !m->method_holder()->is_loaded())) {
13522
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   772
        m = NULL;
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   773
      }
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   774
#ifdef ASSERT
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   775
      if (m != NULL && ReplayCompiles && !ciReplay::is_loaded(m)) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   776
        m = NULL;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   777
      }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
   778
#endif
13522
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   779
      if (m != NULL) {
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   780
        // We found the method.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   781
        return get_method(m);
13522
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   782
      }
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   783
    }
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   784
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   785
    // Either the declared holder was not loaded, or the method could
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   786
    // not be found.  Create a dummy ciMethod to represent the failed
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   787
    // lookup.
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   788
    ciSymbol* name      = get_symbol(name_sym);
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   789
    ciSymbol* signature = get_symbol(sig_sym);
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   790
    return get_unloaded_method(declared_holder, name, signature, accessor);
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   791
  }
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   792
}
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   793
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   794
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   795
// ------------------------------------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
// ciEnv::get_instance_klass_for_declared_method_holder
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
ciInstanceKlass* ciEnv::get_instance_klass_for_declared_method_holder(ciKlass* method_holder) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
  // For the case of <array>.clone(), the method holder can be a ciArrayKlass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
  // instead of a ciInstanceKlass.  For that case simply pretend that the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  // declared holder is Object.clone since that's where the call will bottom out.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
  // A more correct fix would trickle out through many interfaces in CI,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
  // requiring ciInstanceKlass* to become ciKlass* and many more places would
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
  // require checks to make sure the expected type was found.  Given that this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
  // only occurs for clone() the more extensive fix seems like overkill so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
  // instead we simply smear the array type into Object.
16378
453b42d22a85 8009565: [partfait] Null pointer deference in hotspot/src/share/vm/ci/ciEnv.cpp
morris
parents: 15799
diff changeset
   806
  guarantee(method_holder != NULL, "no method holder");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
  if (method_holder->is_instance_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
    return method_holder->as_instance_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
  } else if (method_holder->is_array_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
    return current()->Object_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
// ciEnv::get_method_by_index
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   820
ciMethod* ciEnv::get_method_by_index(constantPoolHandle cpool,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   821
                                     int index, Bytecodes::Code bc,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   822
                                     ciInstanceKlass* accessor) {
13522
5ad4627e792a 7192406: JSR 292: C2 needs exact return type information for invokedynamic and invokehandle call sites
twisti
parents: 13391
diff changeset
   823
  GUARDED_VM_ENTRY(return get_method_by_index_impl(cpool, index, bc, accessor);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   826
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
// ciEnv::name_buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
char *ciEnv::name_buffer(int req_len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
  if (_name_buffer_len < req_len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
    if (_name_buffer == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
      _name_buffer = (char*)arena()->Amalloc(sizeof(char)*req_len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
      _name_buffer_len = req_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
      _name_buffer =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
        (char*)arena()->Arealloc(_name_buffer, _name_buffer_len, req_len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
      _name_buffer_len = req_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
  return _name_buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
// ciEnv::is_in_vm
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
bool ciEnv::is_in_vm() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
  return JavaThread::current()->thread_state() == _thread_in_vm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
bool ciEnv::system_dictionary_modification_counter_changed() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
  return _system_dictionary_modification_counter != SystemDictionary::number_of_modifications();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
// ------------------------------------------------------------------
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   854
// ciEnv::validate_compile_task_dependencies
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   855
//
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   856
// Check for changes during compilation (e.g. class loads, evolution,
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   857
// breakpoints, call site invalidation).
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   858
void ciEnv::validate_compile_task_dependencies(ciMethod* target) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
  if (failing())  return;  // no need for further checks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   861
  // First, check non-klass dependencies as we might return early and
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   862
  // not check klass dependencies if the system dictionary
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   863
  // modification counter hasn't changed (see below).
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   864
  for (Dependencies::DepStream deps(dependencies()); deps.next(); ) {
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   865
    if (deps.is_klass_type())  continue;  // skip klass dependencies
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   866
    Klass* witness = deps.check_dependency();
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   867
    if (witness != NULL) {
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   868
      record_failure("invalid non-klass dependency");
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   869
      return;
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   870
    }
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   871
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   873
  // Klass dependencies must be checked when the system dictionary
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   874
  // changes.  If logging is enabled all violated dependences will be
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   875
  // recorded in the log.  In debug mode check dependencies even if
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   876
  // the system dictionary hasn't changed to verify that no invalid
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   877
  // dependencies were inserted.  Any violated dependences in this
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   878
  // case are dumped to the tty.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
  bool counter_changed = system_dictionary_modification_counter_changed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
10564
db5bf5438c0a 7092236: java/util/EnumSet/EnumSetBash.java fails
never
parents: 10508
diff changeset
   881
  bool verify_deps = trueInDebug;
db5bf5438c0a 7092236: java/util/EnumSet/EnumSetBash.java fails
never
parents: 10508
diff changeset
   882
  if (!counter_changed && !verify_deps)  return;
db5bf5438c0a 7092236: java/util/EnumSet/EnumSetBash.java fails
never
parents: 10508
diff changeset
   883
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   884
  int klass_violations = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
  for (Dependencies::DepStream deps(dependencies()); deps.next(); ) {
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   886
    if (!deps.is_klass_type())  continue;  // skip non-klass dependencies
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   887
    Klass* witness = deps.check_dependency();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
    if (witness != NULL) {
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   889
      klass_violations++;
10564
db5bf5438c0a 7092236: java/util/EnumSet/EnumSetBash.java fails
never
parents: 10508
diff changeset
   890
      if (!counter_changed) {
db5bf5438c0a 7092236: java/util/EnumSet/EnumSetBash.java fails
never
parents: 10508
diff changeset
   891
        // Dependence failed but counter didn't change.  Log a message
db5bf5438c0a 7092236: java/util/EnumSet/EnumSetBash.java fails
never
parents: 10508
diff changeset
   892
        // describing what failed and allow the assert at the end to
db5bf5438c0a 7092236: java/util/EnumSet/EnumSetBash.java fails
never
parents: 10508
diff changeset
   893
        // trigger.
db5bf5438c0a 7092236: java/util/EnumSet/EnumSetBash.java fails
never
parents: 10508
diff changeset
   894
        deps.print_dependency(witness);
db5bf5438c0a 7092236: java/util/EnumSet/EnumSetBash.java fails
never
parents: 10508
diff changeset
   895
      } else if (xtty == NULL) {
db5bf5438c0a 7092236: java/util/EnumSet/EnumSetBash.java fails
never
parents: 10508
diff changeset
   896
        // If we're not logging then a single violation is sufficient,
db5bf5438c0a 7092236: java/util/EnumSet/EnumSetBash.java fails
never
parents: 10508
diff changeset
   897
        // otherwise we want to log all the dependences which were
db5bf5438c0a 7092236: java/util/EnumSet/EnumSetBash.java fails
never
parents: 10508
diff changeset
   898
        // violated.
db5bf5438c0a 7092236: java/util/EnumSet/EnumSetBash.java fails
never
parents: 10508
diff changeset
   899
        break;
db5bf5438c0a 7092236: java/util/EnumSet/EnumSetBash.java fails
never
parents: 10508
diff changeset
   900
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   904
  if (klass_violations != 0) {
10564
db5bf5438c0a 7092236: java/util/EnumSet/EnumSetBash.java fails
never
parents: 10508
diff changeset
   905
#ifdef ASSERT
db5bf5438c0a 7092236: java/util/EnumSet/EnumSetBash.java fails
never
parents: 10508
diff changeset
   906
    if (!counter_changed && !PrintCompilation) {
db5bf5438c0a 7092236: java/util/EnumSet/EnumSetBash.java fails
never
parents: 10508
diff changeset
   907
      // Print out the compile task that failed
db5bf5438c0a 7092236: java/util/EnumSet/EnumSetBash.java fails
never
parents: 10508
diff changeset
   908
      _task->print_line();
db5bf5438c0a 7092236: java/util/EnumSet/EnumSetBash.java fails
never
parents: 10508
diff changeset
   909
    }
db5bf5438c0a 7092236: java/util/EnumSet/EnumSetBash.java fails
never
parents: 10508
diff changeset
   910
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
    assert(counter_changed, "failed dependencies, but counter didn't change");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
    record_failure("concurrent class loading");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
// ciEnv::register_method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
void ciEnv::register_method(ciMethod* target,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
                            int entry_bci,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
                            CodeOffsets* offsets,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
                            int orig_pc_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
                            CodeBuffer* code_buffer,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
                            int frame_words,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
                            OopMapSet* oop_map_set,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
                            ExceptionHandlerTable* handler_table,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
                            ImplicitExceptionTable* inc_table,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
                            AbstractCompiler* compiler,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
                            int comp_level,
13883
6979b9850feb 7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents: 13728
diff changeset
   929
                            bool has_unsafe_access,
6979b9850feb 7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents: 13728
diff changeset
   930
                            bool has_wide_vectors) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
  VM_ENTRY_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
  nmethod* nm = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
    // To prevent compile queue updates.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
    MutexLocker locker(MethodCompileQueue_lock, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
    // Prevent SystemDictionary::add_to_hierarchy from running
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
    // and invalidating our dependencies until we install this method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
    MutexLocker ml(Compile_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
2867
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   941
    // Change in Jvmti state may invalidate compilation.
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   942
    if (!failing() &&
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   943
        ( (!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: 1623
diff changeset
   944
           JvmtiExport::can_hotswap_or_post_breakpoint()) ||
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   945
          (!jvmti_can_access_local_variables() &&
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   946
           JvmtiExport::can_access_local_variables()) ||
4761
bdb7375a1fee 6902182: 4/4 Starting with jdwp agent should not incur performance penalty
dcubed
parents: 4571
diff changeset
   947
          (!jvmti_can_post_on_exceptions() &&
bdb7375a1fee 6902182: 4/4 Starting with jdwp agent should not incur performance penalty
dcubed
parents: 4571
diff changeset
   948
           JvmtiExport::can_post_on_exceptions()) )) {
2867
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   949
      record_failure("Jvmti state change invalidated dependencies");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
2867
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   952
    // Change in DTrace flags may invalidate compilation.
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   953
    if (!failing() &&
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   954
        ( (!dtrace_extended_probes() && ExtendedDTraceProbes) ||
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   955
          (!dtrace_method_probes() && DTraceMethodProbes) ||
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   956
          (!dtrace_alloc_probes() && DTraceAllocProbes) )) {
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   957
      record_failure("DTrace flags change invalidated dependencies");
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   958
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
2867
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   960
    if (!failing()) {
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   961
      if (log() != NULL) {
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   962
        // Log the dependencies which this compilation declares.
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   963
        dependencies()->log_all_dependencies();
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   964
      }
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   965
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   966
      // Encode the dependencies now, so we can check them right away.
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   967
      dependencies()->encode_content_bytes();
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   968
10503
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   969
      // Check for {class loads, evolution, breakpoints, ...} during compilation
04b74421bdea 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 10008
diff changeset
   970
      validate_compile_task_dependencies(target);
2867
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   971
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   973
    methodHandle method(THREAD, target->get_Method());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
    if (failing()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
      // While not a true deoptimization, it is a preemptive decompile.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13522
diff changeset
   977
      MethodData* mdo = method()->method_data();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
      if (mdo != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
        mdo->inc_decompile_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
      // All buffers in the CodeBuffer are allocated in the CodeCache.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
      // If the code buffer is created on each compile attempt
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
      // as in C2, then it must be freed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
      code_buffer->free_blob();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
    assert(offsets->value(CodeOffsets::Deopt) != -1, "must have deopt entry");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
    assert(offsets->value(CodeOffsets::Exceptions) != -1, "must have exception entry");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
    nm =  nmethod::new_nmethod(method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
                               compile_id(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
                               entry_bci,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
                               offsets,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
                               orig_pc_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
                               debug_info(), dependencies(), code_buffer,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
                               frame_words, oop_map_set,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
                               handler_table, inc_table,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
                               compiler, comp_level);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
    // Free codeBlobs
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
    code_buffer->free_blob();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
    // stress test 6243940 by immediately making the method
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
    // non-entrant behind the system's back. This has serious
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
    // side effects on the code cache and is not meant for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
    // general stress testing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
    if (nm != NULL && StressNonEntrant) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
      MutexLockerEx pl(Patching_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
      NativeJump::patch_verified_entry(nm->entry_point(), nm->verified_entry_point(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
                  SharedRuntime::get_handle_wrong_method_stub());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
    if (nm == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
      // The CodeCache is full.  Print out warning and disable compilation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
      record_failure("code cache is full");
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 4571
diff changeset
  1018
      {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 4571
diff changeset
  1019
        MutexUnlocker ml(Compile_lock);
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 4571
diff changeset
  1020
        MutexUnlocker locker(MethodCompileQueue_lock);
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 4571
diff changeset
  1021
        CompileBroker::handle_full_code_cache();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
      nm->set_has_unsafe_access(has_unsafe_access);
13883
6979b9850feb 7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents: 13728
diff changeset
  1025
      nm->set_has_wide_vectors(has_wide_vectors);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
      // Record successful registration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
      // (Put nm into the task handle *before* publishing to the Java heap.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
      if (task() != NULL)  task()->set_code(nm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
      if (entry_bci == InvocationEntryBci) {
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6064
diff changeset
  1032
        if (TieredCompilation) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6064
diff changeset
  1033
          // If there is an old version we're done with it
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6064
diff changeset
  1034
          nmethod* old = method->code();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6064
diff changeset
  1035
          if (TraceMethodReplacement && old != NULL) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6064
diff changeset
  1036
            ResourceMark rm;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6064
diff changeset
  1037
            char *method_name = method->name_and_sig_as_C_string();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6064
diff changeset
  1038
            tty->print_cr("Replacing method %s", method_name);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6064
diff changeset
  1039
          }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6064
diff changeset
  1040
          if (old != NULL ) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6064
diff changeset
  1041
            old->make_not_entrant();
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6064
diff changeset
  1042
          }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
        if (TraceNMethodInstalls ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
          ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
          char *method_name = method->name_and_sig_as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
          ttyLocker ttyl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
          tty->print_cr("Installing method (%d) %s ",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
                        comp_level,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
                        method_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
        // Allow the code to be executed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
        method->set_code(method, nm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
        if (TraceNMethodInstalls ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
          ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
          char *method_name = method->name_and_sig_as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
          ttyLocker ttyl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
          tty->print_cr("Installing osr method (%d) %s @ %d",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
                        comp_level,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
                        method_name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
                        entry_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
        }
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 13974
diff changeset
  1064
        method->method_holder()->add_osr_nmethod(nm);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
  // JVMTI -- compiled method notification (must be done outside lock)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
  if (nm != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
    nm->post_compiled_method_load_event();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
// ciEnv::find_system_klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
ciKlass* ciEnv::find_system_klass(ciSymbol* klass_name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
  VM_ENTRY_MARK;
10008
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9328
diff changeset
  1081
  return get_klass_by_name_impl(NULL, constantPoolHandle(), klass_name, false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
// ciEnv::comp_level
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
int ciEnv::comp_level() {
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6064
diff changeset
  1087
  if (task() == NULL)  return CompLevel_highest_tier;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
  return task()->comp_level();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
// ciEnv::compile_id
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
uint ciEnv::compile_id() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
  if (task() == NULL)  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
  return task()->compile_id();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
// ciEnv::notice_inlined_method()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
void ciEnv::notice_inlined_method(ciMethod* method) {
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10734
diff changeset
  1101
  _num_inlined_bytecodes += method->code_size_for_inlining();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
// ciEnv::num_inlined_bytecodes()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
int ciEnv::num_inlined_bytecodes() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
  return _num_inlined_bytecodes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
// ciEnv::record_failure()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
void ciEnv::record_failure(const char* reason) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
  if (log() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
    log()->elem("failure reason='%s'", reason);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
  if (_failure_reason == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
    // Record the first failure reason.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
    _failure_reason = reason;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
// ciEnv::record_method_not_compilable()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
void ciEnv::record_method_not_compilable(const char* reason, bool all_tiers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
  int new_compilable =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
    all_tiers ? MethodCompilable_never : MethodCompilable_not_at_tier ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
  // Only note transitions to a worse state
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
  if (new_compilable > _compilable) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
    if (log() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
      if (all_tiers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
        log()->elem("method_not_compilable");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
      } else {
13964
01a2b863cc61 7177003: C1: LogCompilation support
vlivanov
parents: 13883
diff changeset
  1134
        log()->elem("method_not_compilable_at_tier level='%d'",
01a2b863cc61 7177003: C1: LogCompilation support
vlivanov
parents: 13883
diff changeset
  1135
                    current()->task()->comp_level());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
    _compilable = new_compilable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
    // Reset failure reason; this one is more important.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
    _failure_reason = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
    record_failure(reason);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
// ciEnv::record_out_of_memory_failure()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
void ciEnv::record_out_of_memory_failure() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
  // If memory is low, we stop compiling methods.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
  record_method_not_compilable("out of memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
}
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1152
17121
e40a97c700d9 8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents: 16378
diff changeset
  1153
void ciEnv::dump_replay_data(outputStream* out) {
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1154
  VM_ENTRY_MARK;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1155
  MutexLocker ml(Compile_lock);
15471
41f75023e6a6 8006410: allocating without ResourceMark when CompileCommand was specified
vlivanov
parents: 14490
diff changeset
  1156
  ResourceMark rm;
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1157
#if INCLUDE_JVMTI
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1158
  out->print_cr("JvmtiExport can_access_local_variables %d",     _jvmti_can_access_local_variables);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1159
  out->print_cr("JvmtiExport can_hotswap_or_post_breakpoint %d", _jvmti_can_hotswap_or_post_breakpoint);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1160
  out->print_cr("JvmtiExport can_post_on_exceptions %d",         _jvmti_can_post_on_exceptions);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1161
#endif // INCLUDE_JVMTI
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1162
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1163
  GrowableArray<ciMetadata*>* objects = _factory->get_ci_metadata();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1164
  out->print_cr("# %d ciObject found", objects->length());
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1165
  for (int i = 0; i < objects->length(); i++) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1166
    objects->at(i)->dump_replay_data(out);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1167
  }
17123
a8e62eed2e3e 8011675: adding compilation level to replay data
iignatyev
parents: 17121
diff changeset
  1168
  CompileTask* task = this->task();
a8e62eed2e3e 8011675: adding compilation level to replay data
iignatyev
parents: 17121
diff changeset
  1169
  Method* method = task->method();
a8e62eed2e3e 8011675: adding compilation level to replay data
iignatyev
parents: 17121
diff changeset
  1170
  int entry_bci = task->osr_bci();
a8e62eed2e3e 8011675: adding compilation level to replay data
iignatyev
parents: 17121
diff changeset
  1171
  int comp_level = task->comp_level();
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1172
  // Klass holder = method->method_holder();
17123
a8e62eed2e3e 8011675: adding compilation level to replay data
iignatyev
parents: 17121
diff changeset
  1173
  out->print_cr("compile %s %s %s %d %d",
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1174
                method->klass_name()->as_quoted_ascii(),
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1175
                method->name()->as_quoted_ascii(),
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1176
                method->signature()->as_quoted_ascii(),
17123
a8e62eed2e3e 8011675: adding compilation level to replay data
iignatyev
parents: 17121
diff changeset
  1177
                entry_bci, comp_level);
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1178
  out->flush();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 14391
diff changeset
  1179
}