hotspot/src/share/vm/ci/ciEnv.cpp
author twisti
Tue, 05 Jan 2010 15:21:25 +0100
changeset 4567 7fc02fbe5c7a
parent 4566 b363f6ef4068
child 4571 80b553bddc26
permissions -rw-r--r--
6893268: additional dynamic language related optimizations in C2 Summary: C2 needs some additional optimizations to be able to handle MethodHandle invokes and invokedynamic instructions at the best performance. Reviewed-by: kvn, never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
3261
c7d5aae8d3f7 6862919: Update copyright year
xdono
parents: 2867
diff changeset
     2
 * Copyright 1999-2009 Sun Microsystems, Inc.  All Rights Reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
#include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#include "incls/_ciEnv.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// ciEnv
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// This class is the top level broker for requests from the compiler
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// to the VM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
ciObject*              ciEnv::_null_object_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
ciMethodKlass*         ciEnv::_method_klass_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
ciSymbolKlass*         ciEnv::_symbol_klass_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
ciKlassKlass*          ciEnv::_klass_klass_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
ciInstanceKlassKlass*  ciEnv::_instance_klass_klass_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
ciTypeArrayKlassKlass* ciEnv::_type_array_klass_klass_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
ciObjArrayKlassKlass*  ciEnv::_obj_array_klass_klass_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
ciInstanceKlass* ciEnv::_ArrayStoreException;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
ciInstanceKlass* ciEnv::_Class;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
ciInstanceKlass* ciEnv::_ClassCastException;
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
    44
ciInstanceKlass* ciEnv::_InvokeDynamic;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
ciInstanceKlass* ciEnv::_Object;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
ciInstanceKlass* ciEnv::_Throwable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
ciInstanceKlass* ciEnv::_Thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
ciInstanceKlass* ciEnv::_OutOfMemoryError;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
ciInstanceKlass* ciEnv::_String;
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
    50
ciInstanceKlass* ciEnv::_StringBuffer;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
    51
ciInstanceKlass* ciEnv::_StringBuilder;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
    52
ciInstanceKlass* ciEnv::_Integer;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
ciSymbol*        ciEnv::_unloaded_cisymbol = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
ciInstanceKlass* ciEnv::_unloaded_ciinstance_klass = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
ciObjArrayKlass* ciEnv::_unloaded_ciobjarrayklass = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
jobject ciEnv::_ArrayIndexOutOfBoundsException_handle = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
jobject ciEnv::_ArrayStoreException_handle = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
jobject ciEnv::_ClassCastException_handle = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
static bool firstEnv = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
#endif /* PRODUCT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
// ciEnv::ciEnv
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
ciEnv::ciEnv(CompileTask* task, int system_dictionary_modification_counter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  VM_ENTRY_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // Set up ciEnv::current immediately, for the sake of ciObjectFactory, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  thread->set_env(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  assert(ciEnv::current() == this, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  _oop_recorder = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  _debug_info = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  _dependencies = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  _failure_reason = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  _compilable = MethodCompilable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  _break_at_compile = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  _compiler_data = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  assert(!firstEnv, "not initialized properly");
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
  _system_dictionary_modification_counter = system_dictionary_modification_counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  _num_inlined_bytecodes = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  assert(task == NULL || thread->task() == task, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  _task = task;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  _log = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // Temporary buffer for creating symbols and such.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  _name_buffer = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  _name_buffer_len = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  _arena   = &_ciEnv_arena;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  _factory = new (_arena) ciObjectFactory(_arena, 128);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  // Preload commonly referenced system ciObjects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  // During VM initialization, these instances have not yet been created.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  // Assertions ensure that these instances are not accessed before
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // their initialization.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  assert(Universe::is_fully_initialized(), "should be complete");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  oop o = Universe::null_ptr_exception_instance();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  assert(o != NULL, "should have been initialized");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  _NullPointerException_instance = get_object(o)->as_instance();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  o = Universe::arithmetic_exception_instance();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  assert(o != NULL, "should have been initialized");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  _ArithmeticException_instance = get_object(o)->as_instance();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  _ArrayIndexOutOfBoundsException_instance = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  _ArrayStoreException_instance = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  _ClassCastException_instance = NULL;
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   117
  _the_null_string = NULL;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   118
  _the_min_jint_string = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
ciEnv::ciEnv(Arena* arena) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  ASSERT_IN_VM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  // Set up ciEnv::current immediately, for the sake of ciObjectFactory, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  CompilerThread* current_thread = CompilerThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  assert(current_thread->env() == NULL, "must be");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  current_thread->set_env(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  assert(ciEnv::current() == this, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  _oop_recorder = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  _debug_info = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  _dependencies = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  _failure_reason = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  _compilable = MethodCompilable_never;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  _break_at_compile = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  _compiler_data = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  assert(firstEnv, "must be first");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  firstEnv = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
#endif /* !PRODUCT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  _system_dictionary_modification_counter = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  _num_inlined_bytecodes = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  _task = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  _log = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // Temporary buffer for creating symbols and such.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  _name_buffer = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  _name_buffer_len = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  _arena   = arena;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  _factory = new (_arena) ciObjectFactory(_arena, 128);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  // Preload commonly referenced system ciObjects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  // During VM initialization, these instances have not yet been created.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  // Assertions ensure that these instances are not accessed before
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // their initialization.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  assert(Universe::is_fully_initialized(), "must be");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  oop o = Universe::null_ptr_exception_instance();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  assert(o != NULL, "should have been initialized");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  _NullPointerException_instance = get_object(o)->as_instance();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  o = Universe::arithmetic_exception_instance();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  assert(o != NULL, "should have been initialized");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  _ArithmeticException_instance = get_object(o)->as_instance();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  _ArrayIndexOutOfBoundsException_instance = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  _ArrayStoreException_instance = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  _ClassCastException_instance = NULL;
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   172
  _the_null_string = NULL;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   173
  _the_min_jint_string = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
ciEnv::~ciEnv() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  CompilerThread* current_thread = CompilerThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  current_thread->set_env(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
// ------------------------------------------------------------------
2867
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   182
// 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
   183
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
   184
  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
   185
  // 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
   186
  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
   187
  _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
   188
  _jvmti_can_examine_or_deopt_anywhere  = JvmtiExport::can_examine_or_deopt_anywhere();
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   189
  _jvmti_can_access_local_variables     = JvmtiExport::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
   190
  _jvmti_can_post_exceptions            = JvmtiExport::can_post_exceptions();
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   191
}
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   192
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   193
// ------------------------------------------------------------------
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   194
// 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
   195
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
   196
  // Need lock?
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   197
  _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
   198
  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
   199
    _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
   200
    _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
   201
    _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
   202
  } else {
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   203
    _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
   204
    _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
   205
    _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
   206
  }
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   207
}
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
// ------------------------------------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
// helper for lazy exception creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
ciInstance* ciEnv::get_or_create_exception(jobject& handle, symbolHandle name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  VM_ENTRY_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  if (handle == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    // Cf. universe.cpp, creation of Universe::_null_ptr_exception_instance.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    klassOop k = SystemDictionary::find(name, Handle(), Handle(), THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    jobject objh = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    if (!HAS_PENDING_EXCEPTION && k != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
      oop obj = instanceKlass::cast(k)->allocate_permanent_instance(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
      if (!HAS_PENDING_EXCEPTION)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
        objh = JNIHandles::make_global(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    if (HAS_PENDING_EXCEPTION) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
      CLEAR_PENDING_EXCEPTION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
      handle = objh;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  oop obj = JNIHandles::resolve(handle);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  return obj == NULL? NULL: get_object(obj)->as_instance();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
// ciEnv::ArrayIndexOutOfBoundsException_instance, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
ciInstance* ciEnv::ArrayIndexOutOfBoundsException_instance() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  if (_ArrayIndexOutOfBoundsException_instance == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    _ArrayIndexOutOfBoundsException_instance
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
          = get_or_create_exception(_ArrayIndexOutOfBoundsException_handle,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
          vmSymbolHandles::java_lang_ArrayIndexOutOfBoundsException());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  return _ArrayIndexOutOfBoundsException_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
ciInstance* ciEnv::ArrayStoreException_instance() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  if (_ArrayStoreException_instance == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    _ArrayStoreException_instance
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
          = get_or_create_exception(_ArrayStoreException_handle,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
          vmSymbolHandles::java_lang_ArrayStoreException());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  return _ArrayStoreException_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
ciInstance* ciEnv::ClassCastException_instance() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  if (_ClassCastException_instance == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    _ClassCastException_instance
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
          = get_or_create_exception(_ClassCastException_handle,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
          vmSymbolHandles::java_lang_ClassCastException());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  return _ClassCastException_instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   259
ciInstance* ciEnv::the_null_string() {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   260
  if (_the_null_string == NULL) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   261
    VM_ENTRY_MARK;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   262
    _the_null_string = get_object(Universe::the_null_string())->as_instance();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   263
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   264
  return _the_null_string;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   265
}
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   266
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   267
ciInstance* ciEnv::the_min_jint_string() {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   268
  if (_the_min_jint_string == NULL) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   269
    VM_ENTRY_MARK;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   270
    _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
   271
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   272
  return _the_min_jint_string;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   273
}
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   274
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
// ciEnv::get_method_from_handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
ciMethod* ciEnv::get_method_from_handle(jobject method) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  VM_ENTRY_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  return get_object(JNIHandles::resolve(method))->as_method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
// ciEnv::make_array
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3261
diff changeset
   284
ciArray* ciEnv::make_system_array(GrowableArray<ciObject*>* objects) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  VM_ENTRY_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  int length = objects->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  objArrayOop a = oopFactory::new_system_objArray(length, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  if (HAS_PENDING_EXCEPTION) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    CLEAR_PENDING_EXCEPTION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
    record_out_of_memory_failure();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  for (int i = 0; i < length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    a->obj_at_put(i, objects->at(i)->get_oop());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  assert(a->is_perm(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  return get_object(a)->as_array();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
// ciEnv::array_element_offset_in_bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
int ciEnv::array_element_offset_in_bytes(ciArray* a_h, ciObject* o_h) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  VM_ENTRY_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  objArrayOop a = (objArrayOop)a_h->get_oop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  assert(a->is_objArray(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  int length = a->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  oop o = o_h->get_oop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  for (int i = 0; i < length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
    if (a->obj_at(i) == o)  return i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
// ciEnv::check_klass_accessiblity
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
// Note: the logic of this method should mirror the logic of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
// constantPoolOopDesc::verify_constant_pool_resolve.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
bool ciEnv::check_klass_accessibility(ciKlass* accessing_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
                                      klassOop resolved_klass) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  if (accessing_klass == NULL || !accessing_klass->is_loaded()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  if (accessing_klass->is_obj_array()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
    accessing_klass = accessing_klass->as_obj_array_klass()->base_element_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  if (!accessing_klass->is_instance_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  if (resolved_klass->klass_part()->oop_is_objArray()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
    // Find the element klass, if this is an array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
    resolved_klass = objArrayKlass::cast(resolved_klass)->bottom_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  if (resolved_klass->klass_part()->oop_is_instance()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
    return Reflection::verify_class_access(accessing_klass->get_klassOop(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
                                           resolved_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
                                           true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
// ciEnv::get_klass_by_name_impl
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
ciKlass* ciEnv::get_klass_by_name_impl(ciKlass* accessing_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
                                       ciSymbol* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
                                       bool require_local) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  ASSERT_IN_VM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  EXCEPTION_CONTEXT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  // Now we need to check the SystemDictionary
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  symbolHandle sym(THREAD, name->get_symbolOop());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  if (sym->byte_at(0) == 'L' &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
    sym->byte_at(sym->utf8_length()-1) == ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
    // This is a name from a signature.  Strip off the trimmings.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
    sym = oopFactory::new_symbol_handle(sym->as_utf8()+1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
                                        sym->utf8_length()-2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
                                        KILL_COMPILE_ON_FATAL_(_unloaded_ciinstance_klass));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
    name = get_object(sym())->as_symbol();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  // Check for prior unloaded klass.  The SystemDictionary's answers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  // can vary over time but the compiler needs consistency.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  ciKlass* unloaded_klass = check_get_unloaded_klass(accessing_klass, name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  if (unloaded_klass != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
    if (require_local)  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
    return unloaded_klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  Handle loader(THREAD, (oop)NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  Handle domain(THREAD, (oop)NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  if (accessing_klass != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
    loader = Handle(THREAD, accessing_klass->loader());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
    domain = Handle(THREAD, accessing_klass->protection_domain());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  // setup up the proper type to return on OOM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  ciKlass* fail_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  if (sym->byte_at(0) == '[') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
    fail_type = _unloaded_ciobjarrayklass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
    fail_type = _unloaded_ciinstance_klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  klassOop found_klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  if (!require_local) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
    found_klass =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
      SystemDictionary::find_constrained_instance_or_array_klass(sym, loader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
                                                                 KILL_COMPILE_ON_FATAL_(fail_type));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
    found_klass =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
      SystemDictionary::find_instance_or_array_klass(sym, loader, domain,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
                                                     KILL_COMPILE_ON_FATAL_(fail_type));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  if (found_klass != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
    // Found it.  Build a CI handle.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
    return get_object(found_klass)->as_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  // If we fail to find an array klass, look again for its element type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  // The element type may be available either locally or via constraints.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  // In either case, if we can find the element type in the system dictionary,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  // we must build an array type around it.  The CI requires array klasses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  // to be loaded if their element klasses are loaded, except when memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  // is exhausted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  if (sym->byte_at(0) == '[' &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
      (sym->byte_at(1) == '[' || sym->byte_at(1) == 'L')) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
    // We have an unloaded array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
    // Build it on the fly if the element class exists.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    symbolOop elem_sym = oopFactory::new_symbol(sym->as_utf8()+1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
                                                sym->utf8_length()-1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
                                                KILL_COMPILE_ON_FATAL_(fail_type));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
    // Get element ciKlass recursively.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
    ciKlass* elem_klass =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
      get_klass_by_name_impl(accessing_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
                             get_object(elem_sym)->as_symbol(),
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  if (require_local)  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  // Not yet loaded into the VM, or not governed by loader constraints.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  // Make a CI representative for it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  return get_unloaded_klass(accessing_klass, name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
// ciEnv::get_klass_by_name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
ciKlass* ciEnv::get_klass_by_name(ciKlass* accessing_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
                                  ciSymbol* klass_name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
                                  bool require_local) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  GUARDED_VM_ENTRY(return get_klass_by_name_impl(accessing_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
                                                 klass_name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
                                                 require_local);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
// ciEnv::get_klass_by_index_impl
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
// Implementation of get_klass_by_index.
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   446
ciKlass* ciEnv::get_klass_by_index_impl(constantPoolHandle cpool,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
                                        int index,
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   448
                                        bool& is_accessible,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   449
                                        ciInstanceKlass* accessor) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  EXCEPTION_CONTEXT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  KlassHandle klass (THREAD, constantPoolOopDesc::klass_at_if_loaded(cpool, index));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  symbolHandle klass_name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  if (klass.is_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
    // The klass has not been inserted into the constant pool.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
    // Try to look it up by name.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
      // We have to lock the cpool to keep the oop from being resolved
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
      // while we are accessing it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
      ObjectLocker ol(cpool, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
      constantTag tag = cpool->tag_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
      if (tag.is_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
        // The klass has been inserted into the constant pool
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
        // very recently.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
        klass = KlassHandle(THREAD, cpool->resolved_klass_at(index));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
      } else if (tag.is_symbol()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
        klass_name = symbolHandle(THREAD, cpool->symbol_at(index));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
        assert(cpool->tag_at(index).is_unresolved_klass(), "wrong tag");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
        klass_name = symbolHandle(THREAD, cpool->unresolved_klass_at(index));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  if (klass.is_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
    // Not found in constant pool.  Use the name to do the lookup.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
    ciKlass* k = get_klass_by_name_impl(accessor,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
                                        get_object(klass_name())->as_symbol(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
                                        false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
    // Calculate accessibility the hard way.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
    if (!k->is_loaded()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
      is_accessible = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
    } else if (k->loader() != accessor->loader() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
               get_klass_by_name_impl(accessor, k->name(), true) == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
      // Loaded only remotely.  Not linked yet.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
      is_accessible = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
      // Linked locally, and we must also check public/private, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
      is_accessible = check_klass_accessibility(accessor, k->get_klassOop());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
    return k;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  // Check for prior unloaded klass.  The SystemDictionary's answers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  // can vary over time but the compiler needs consistency.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  ciSymbol* name = get_object(klass()->klass_part()->name())->as_symbol();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  ciKlass* unloaded_klass = check_get_unloaded_klass(accessor, name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  if (unloaded_klass != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
    is_accessible = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
    return unloaded_klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  // It is known to be accessible, since it was found in the constant pool.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  is_accessible = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  return get_object(klass())->as_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
// ciEnv::get_klass_by_index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
// Get a klass from the constant pool.
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   512
ciKlass* ciEnv::get_klass_by_index(constantPoolHandle cpool,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
                                   int index,
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   514
                                   bool& is_accessible,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   515
                                   ciInstanceKlass* accessor) {
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   516
  GUARDED_VM_ENTRY(return get_klass_by_index_impl(cpool, index, is_accessible, accessor);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
// ciEnv::get_constant_by_index_impl
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
// Implementation of get_constant_by_index().
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   523
ciConstant ciEnv::get_constant_by_index_impl(constantPoolHandle cpool,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   524
                                             int index,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   525
                                             ciInstanceKlass* accessor) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  EXCEPTION_CONTEXT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  constantTag tag = cpool->tag_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  if (tag.is_int()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
    return ciConstant(T_INT, (jint)cpool->int_at(index));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  } else if (tag.is_long()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
    return ciConstant((jlong)cpool->long_at(index));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  } else if (tag.is_float()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
    return ciConstant((jfloat)cpool->float_at(index));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  } else if (tag.is_double()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    return ciConstant((jdouble)cpool->double_at(index));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  } else if (tag.is_string() || tag.is_unresolved_string()) {
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   537
    oop string = NULL;
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   538
    if (cpool->is_pseudo_string_at(index)) {
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   539
      string = cpool->pseudo_string_at(index);
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   540
    } else {
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   541
      string = cpool->string_at(index, THREAD);
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   542
      if (HAS_PENDING_EXCEPTION) {
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   543
        CLEAR_PENDING_EXCEPTION;
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   544
        record_out_of_memory_failure();
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   545
        return ciConstant();
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
   546
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
    ciObject* constant = get_object(string);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
    assert (constant->is_instance(), "must be an instance, or not? ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
    return ciConstant(T_OBJECT, constant);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  } else if (tag.is_klass() || tag.is_unresolved_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
    // 4881222: allow ldc to take a class type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
    bool ignore;
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   554
    ciKlass* klass = get_klass_by_index_impl(cpool, index, ignore, accessor);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
    if (HAS_PENDING_EXCEPTION) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
      CLEAR_PENDING_EXCEPTION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
      record_out_of_memory_failure();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
      return ciConstant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
    assert (klass->is_instance_klass() || klass->is_array_klass(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
            "must be an instance or array klass ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
    return ciConstant(T_OBJECT, klass);
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   563
  } else if (tag.is_object()) {
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   564
    oop obj = cpool->object_at(index);
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   565
    assert(obj->is_instance(), "must be an instance");
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   566
    ciObject* ciobj = get_object(obj);
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   567
    return ciConstant(T_OBJECT, ciobj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
    return ciConstant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
// ciEnv::is_unresolved_string_impl
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
// Implementation of is_unresolved_string().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
bool ciEnv::is_unresolved_string_impl(instanceKlass* accessor, int index) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  EXCEPTION_CONTEXT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  assert(accessor->is_linked(), "must be linked before accessing constant pool");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  constantPoolOop cpool = accessor->constants();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  constantTag tag = cpool->tag_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  return tag.is_unresolved_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
// ciEnv::is_unresolved_klass_impl
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
// Implementation of is_unresolved_klass().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
bool ciEnv::is_unresolved_klass_impl(instanceKlass* accessor, int index) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  EXCEPTION_CONTEXT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  assert(accessor->is_linked(), "must be linked before accessing constant pool");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  constantPoolOop cpool = accessor->constants();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  constantTag tag = cpool->tag_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  return tag.is_unresolved_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
// ciEnv::get_constant_by_index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
// Pull a constant out of the constant pool.  How appropriate.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
// 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
   604
ciConstant ciEnv::get_constant_by_index(constantPoolHandle cpool,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   605
                                        int index,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   606
                                        ciInstanceKlass* accessor) {
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   607
  GUARDED_VM_ENTRY(return get_constant_by_index_impl(cpool, index, accessor);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
// ciEnv::is_unresolved_string
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
// Check constant pool
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
// Implementation note: this query is currently in no way cached.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
bool ciEnv::is_unresolved_string(ciInstanceKlass* accessor,
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   617
                                 int index) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  GUARDED_VM_ENTRY(return is_unresolved_string_impl(accessor->get_instanceKlass(), index); )
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::is_unresolved_klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
// Check constant pool
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.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
bool ciEnv::is_unresolved_klass(ciInstanceKlass* accessor,
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   628
                                int index) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  GUARDED_VM_ENTRY(return is_unresolved_klass_impl(accessor->get_instanceKlass(), index); )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
// ciEnv::get_field_by_index_impl
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
// Implementation of get_field_by_index.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
// Implementation note: the results of field lookups are cached
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
// in the accessor klass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
ciField* ciEnv::get_field_by_index_impl(ciInstanceKlass* accessor,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
                                        int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  ciConstantPoolCache* cache = accessor->field_cache();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  if (cache == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
    ciField* field = new (arena()) ciField(accessor, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
    return field;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
    ciField* field = (ciField*)cache->get(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
    if (field == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
      field = new (arena()) ciField(accessor, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
      cache->insert(index, field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
    return field;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
  }
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
// ciEnv::get_field_by_index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
// Get a field by index from a klass's constant pool.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
ciField* ciEnv::get_field_by_index(ciInstanceKlass* accessor,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
                                   int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  GUARDED_VM_ENTRY(return get_field_by_index_impl(accessor, index);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
// ciEnv::lookup_method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
// Perform an appropriate method lookup based on accessor, holder,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
// name, signature, and bytecode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
methodOop ciEnv::lookup_method(instanceKlass*  accessor,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
                               instanceKlass*  holder,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
                               symbolOop       name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
                               symbolOop       sig,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
                               Bytecodes::Code bc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
  EXCEPTION_CONTEXT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  KlassHandle h_accessor(THREAD, accessor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  KlassHandle h_holder(THREAD, holder);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  symbolHandle h_name(THREAD, name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
  symbolHandle h_sig(THREAD, sig);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
  LinkResolver::check_klass_accessability(h_accessor, h_holder, KILL_COMPILE_ON_FATAL_(NULL));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  methodHandle dest_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  switch (bc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  case Bytecodes::_invokestatic:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
    dest_method =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
      LinkResolver::resolve_static_call_or_null(h_holder, h_name, h_sig, h_accessor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  case Bytecodes::_invokespecial:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
    dest_method =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
      LinkResolver::resolve_special_call_or_null(h_holder, h_name, h_sig, h_accessor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  case Bytecodes::_invokeinterface:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
    dest_method =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
      LinkResolver::linktime_resolve_interface_method_or_null(h_holder, h_name, h_sig,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
                                                              h_accessor, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  case Bytecodes::_invokevirtual:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
    dest_method =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
      LinkResolver::linktime_resolve_virtual_method_or_null(h_holder, h_name, h_sig,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
                                                            h_accessor, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  default: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
  return dest_method();
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
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
// ciEnv::get_method_by_index_impl
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   709
ciMethod* ciEnv::get_method_by_index_impl(constantPoolHandle cpool,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   710
                                          int index, Bytecodes::Code bc,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   711
                                          ciInstanceKlass* accessor) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  int holder_index = cpool->klass_ref_index_at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
  bool holder_is_accessible;
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   714
  ciKlass* holder = get_klass_by_index_impl(cpool, holder_index, holder_is_accessible, accessor);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
  ciInstanceKlass* declared_holder = get_instance_klass_for_declared_method_holder(holder);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  // Get the method's name and signature.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  symbolOop name_sym = cpool->name_ref_at(index);
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 3908
diff changeset
   719
  symbolOop sig_sym  = cpool->signature_ref_at(index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  if (holder_is_accessible) { // Our declared holder is loaded.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
    instanceKlass* lookup = declared_holder->get_instanceKlass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
    methodOop m = lookup_method(accessor->get_instanceKlass(), lookup, name_sym, sig_sym, bc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
    if (m != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
      // We found the method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
      return get_object(m)->as_method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  // Either the declared holder was not loaded, or the method could
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
  // not be found.  Create a dummy ciMethod to represent the failed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
  // lookup.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
  return get_unloaded_method(declared_holder,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
                             get_object(name_sym)->as_symbol(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
                             get_object(sig_sym)->as_symbol());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
// ------------------------------------------------------------------
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   741
// ciEnv::get_fake_invokedynamic_method_impl
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   742
ciMethod* ciEnv::get_fake_invokedynamic_method_impl(constantPoolHandle cpool,
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   743
                                                    int index, Bytecodes::Code bc) {
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   744
  assert(bc == Bytecodes::_invokedynamic, "must be invokedynamic");
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   745
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   746
  // Get the CallSite from the constant pool cache.
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   747
  ConstantPoolCacheEntry* cpc_entry = cpool->cache()->secondary_entry_at(index);
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   748
  assert(cpc_entry != NULL && cpc_entry->is_secondary_entry(), "sanity");
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   749
  Handle call_site = cpc_entry->f1();
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   750
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   751
  // Call site might not be linked yet.
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   752
  if (call_site.is_null()) {
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   753
    ciInstanceKlass* mh_klass = get_object(SystemDictionary::MethodHandle_klass())->as_instance_klass();
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   754
    ciSymbol*       sig_sym   = get_object(cpool->signature_ref_at(index))->as_symbol();
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   755
    return get_unloaded_method(mh_klass, ciSymbol::invoke_name(), sig_sym);
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   756
  }
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   757
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   758
  // Get the methodOop from the CallSite.
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   759
  methodOop method_oop = (methodOop) java_dyn_CallSite::vmmethod(call_site());
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   760
  assert(method_oop != NULL, "sanity");
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   761
  assert(method_oop->is_method_handle_invoke(), "consistent");
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   762
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   763
  return get_object(method_oop)->as_method();
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   764
}
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   765
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   766
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   767
// ------------------------------------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
// ciEnv::get_instance_klass_for_declared_method_holder
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
ciInstanceKlass* ciEnv::get_instance_klass_for_declared_method_holder(ciKlass* method_holder) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
  // For the case of <array>.clone(), the method holder can be a ciArrayKlass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
  // instead of a ciInstanceKlass.  For that case simply pretend that the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  // declared holder is Object.clone since that's where the call will bottom out.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  // A more correct fix would trickle out through many interfaces in CI,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  // requiring ciInstanceKlass* to become ciKlass* and many more places would
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
  // require checks to make sure the expected type was found.  Given that this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
  // only occurs for clone() the more extensive fix seems like overkill so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
  // instead we simply smear the array type into Object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
  if (method_holder->is_instance_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
    return method_holder->as_instance_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
  } else if (method_holder->is_array_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
    return current()->Object_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
// ciEnv::get_method_by_index
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   791
ciMethod* ciEnv::get_method_by_index(constantPoolHandle cpool,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   792
                                     int index, Bytecodes::Code bc,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   793
                                     ciInstanceKlass* accessor) {
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   794
  if (bc == Bytecodes::_invokedynamic) {
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   795
    GUARDED_VM_ENTRY(return get_fake_invokedynamic_method_impl(cpool, index, bc);)
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   796
  } else {
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   797
    GUARDED_VM_ENTRY(return get_method_by_index_impl(cpool, index, bc, accessor);)
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   798
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   801
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
// ciEnv::name_buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
char *ciEnv::name_buffer(int req_len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
  if (_name_buffer_len < req_len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
    if (_name_buffer == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
      _name_buffer = (char*)arena()->Amalloc(sizeof(char)*req_len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
      _name_buffer_len = req_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
      _name_buffer =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
        (char*)arena()->Arealloc(_name_buffer, _name_buffer_len, req_len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
      _name_buffer_len = req_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
  return _name_buffer;
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::is_in_vm
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
bool ciEnv::is_in_vm() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
  return JavaThread::current()->thread_state() == _thread_in_vm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
bool ciEnv::system_dictionary_modification_counter_changed() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
  return _system_dictionary_modification_counter != SystemDictionary::number_of_modifications();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
// ciEnv::check_for_system_dictionary_modification
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
// Check for changes to the system dictionary during compilation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
// class loads, evolution, breakpoints
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
void ciEnv::check_for_system_dictionary_modification(ciMethod* target) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
  if (failing())  return;  // no need for further checks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
  // Dependencies must be checked when the system dictionary changes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
  // If logging is enabled all violated dependences will be recorded in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
  // the log.  In debug mode check dependencies even if the system
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
  // dictionary hasn't changed to verify that no invalid dependencies
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
  // were inserted.  Any violated dependences in this case are dumped to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
  // the tty.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
  bool counter_changed = system_dictionary_modification_counter_changed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
  bool test_deps = counter_changed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
  DEBUG_ONLY(test_deps = true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
  if (!test_deps)  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
  bool print_failures = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
  DEBUG_ONLY(print_failures = !counter_changed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
  bool keep_going = (print_failures || xtty != NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
  int violated = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
  for (Dependencies::DepStream deps(dependencies()); deps.next(); ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
    klassOop witness = deps.check_dependency();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
    if (witness != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
      ++violated;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
      if (print_failures)  deps.print_dependency(witness, /*verbose=*/ true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
      // If there's no log and we're not sanity-checking, we're done.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
      if (!keep_going)     break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
  if (violated != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
    assert(counter_changed, "failed dependencies, but counter didn't change");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
    record_failure("concurrent class loading");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
// ciEnv::register_method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
void ciEnv::register_method(ciMethod* target,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
                            int entry_bci,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
                            CodeOffsets* offsets,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
                            int orig_pc_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
                            CodeBuffer* code_buffer,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
                            int frame_words,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
                            OopMapSet* oop_map_set,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
                            ExceptionHandlerTable* handler_table,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
                            ImplicitExceptionTable* inc_table,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
                            AbstractCompiler* compiler,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
                            int comp_level,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
                            bool has_debug_info,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
                            bool has_unsafe_access) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
  VM_ENTRY_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
  nmethod* nm = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
    // To prevent compile queue updates.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
    MutexLocker locker(MethodCompileQueue_lock, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
    // Prevent SystemDictionary::add_to_hierarchy from running
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
    // and invalidating our dependencies until we install this method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
    MutexLocker ml(Compile_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
2867
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   895
    // 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
   896
    if (!failing() &&
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   897
        ( (!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
   898
           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
   899
          (!jvmti_can_examine_or_deopt_anywhere() &&
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   900
           JvmtiExport::can_examine_or_deopt_anywhere()) ||
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   901
          (!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
   902
           JvmtiExport::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
   903
          (!jvmti_can_post_exceptions() &&
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   904
           JvmtiExport::can_post_exceptions()) )) {
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   905
      record_failure("Jvmti state change invalidated dependencies");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
2867
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   908
    // 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
   909
    if (!failing() &&
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   910
        ( (!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
   911
          (!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
   912
          (!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
   913
      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
   914
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
2867
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   916
    if (!failing()) {
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   917
      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
   918
        // 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
   919
        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
   920
      }
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   921
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   922
      // 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
   923
      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
   924
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   925
      // Check for {class loads, evolution, breakpoints} during compilation
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   926
      check_for_system_dictionary_modification(target);
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 1623
diff changeset
   927
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
    methodHandle method(THREAD, target->get_methodOop());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
    if (failing()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
      // While not a true deoptimization, it is a preemptive decompile.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
      methodDataOop mdo = method()->method_data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
      if (mdo != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
        mdo->inc_decompile_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
      // All buffers in the CodeBuffer are allocated in the CodeCache.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
      // If the code buffer is created on each compile attempt
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
      // as in C2, then it must be freed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
      code_buffer->free_blob();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
    assert(offsets->value(CodeOffsets::Deopt) != -1, "must have deopt entry");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
    assert(offsets->value(CodeOffsets::Exceptions) != -1, "must have exception entry");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
    nm =  nmethod::new_nmethod(method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
                               compile_id(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
                               entry_bci,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
                               offsets,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
                               orig_pc_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
                               debug_info(), dependencies(), code_buffer,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
                               frame_words, oop_map_set,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
                               handler_table, inc_table,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
                               compiler, comp_level);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
    // Free codeBlobs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
    code_buffer->free_blob();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
    // stress test 6243940 by immediately making the method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
    // non-entrant behind the system's back. This has serious
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
    // side effects on the code cache and is not meant for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
    // general stress testing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
    if (nm != NULL && StressNonEntrant) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
      MutexLockerEx pl(Patching_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
      NativeJump::patch_verified_entry(nm->entry_point(), nm->verified_entry_point(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
                  SharedRuntime::get_handle_wrong_method_stub());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
    if (nm == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
      // The CodeCache is full.  Print out warning and disable compilation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
      record_failure("code cache is full");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
      UseInterpreter = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
      if (UseCompiler || AlwaysCompileLoopMethods ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
        warning("CodeCache is full. Compiler has been disabled");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
        if (CompileTheWorld || ExitOnFullCodeCache) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
          before_exit(JavaThread::current());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
          exit_globals(); // will delete tty
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
          vm_direct_exit(CompileTheWorld ? 0 : 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
        UseCompiler               = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
        AlwaysCompileLoopMethods  = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
      NOT_PRODUCT(nm->set_has_debug_info(has_debug_info); )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
      nm->set_has_unsafe_access(has_unsafe_access);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
      // Record successful registration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
      // (Put nm into the task handle *before* publishing to the Java heap.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
      if (task() != NULL)  task()->set_code(nm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
      if (entry_bci == InvocationEntryBci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
#ifdef TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
        // If there is an old version we're done with it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
        nmethod* old = method->code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
        if (TraceMethodReplacement && old != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
          ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
          char *method_name = method->name_and_sig_as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
          tty->print_cr("Replacing method %s", method_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
        if (old != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
          old->make_not_entrant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
#endif // TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
        if (TraceNMethodInstalls ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
          ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
          char *method_name = method->name_and_sig_as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
          ttyLocker ttyl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
          tty->print_cr("Installing method (%d) %s ",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
                        comp_level,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
                        method_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
        // Allow the code to be executed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
        method->set_code(method, nm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
        if (TraceNMethodInstalls ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
          ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
          char *method_name = method->name_and_sig_as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
          ttyLocker ttyl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
          tty->print_cr("Installing osr method (%d) %s @ %d",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
                        comp_level,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
                        method_name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
                        entry_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
        instanceKlass::cast(method->method_holder())->add_osr_nmethod(nm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
  // JVMTI -- compiled method notification (must be done outside lock)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
  if (nm != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
    nm->post_compiled_method_load_event();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
// ciEnv::find_system_klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
ciKlass* ciEnv::find_system_klass(ciSymbol* klass_name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
  VM_ENTRY_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
  return get_klass_by_name_impl(NULL, klass_name, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
// ciEnv::comp_level
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
int ciEnv::comp_level() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
  if (task() == NULL)  return CompLevel_full_optimization;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
  return task()->comp_level();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
// ciEnv::compile_id
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
uint ciEnv::compile_id() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
  if (task() == NULL)  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
  return task()->compile_id();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
// ciEnv::notice_inlined_method()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
void ciEnv::notice_inlined_method(ciMethod* method) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
  _num_inlined_bytecodes += method->code_size();
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
// ciEnv::num_inlined_bytecodes()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
int ciEnv::num_inlined_bytecodes() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
  return _num_inlined_bytecodes;
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
// ciEnv::record_failure()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
void ciEnv::record_failure(const char* reason) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
  if (log() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
    log()->elem("failure reason='%s'", reason);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
  if (_failure_reason == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
    // Record the first failure reason.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
    _failure_reason = reason;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
// ciEnv::record_method_not_compilable()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
void ciEnv::record_method_not_compilable(const char* reason, bool all_tiers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
  int new_compilable =
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
    all_tiers ? MethodCompilable_never : MethodCompilable_not_at_tier ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
  // Only note transitions to a worse state
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
  if (new_compilable > _compilable) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
    if (log() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
      if (all_tiers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
        log()->elem("method_not_compilable");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
        log()->elem("method_not_compilable_at_tier");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
    _compilable = new_compilable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
    // Reset failure reason; this one is more important.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
    _failure_reason = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
    record_failure(reason);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
// ciEnv::record_out_of_memory_failure()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
void ciEnv::record_out_of_memory_failure() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
  // If memory is low, we stop compiling methods.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
  record_method_not_compilable("out of memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
}