hotspot/src/share/vm/ci/ciObjectFactory.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
/*
3795
6227ff014cfe 6884624: Update copyright year
xdono
parents: 3609
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/_ciObjectFactory.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// ciObjectFactory
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// This class handles requests for the creation of new instances
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// of ciObject and its subclasses.  It contains a caching mechanism
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// which ensures that for each oop, at most one ciObject is created.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// This invariant allows more efficient implementation of ciObject.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// Implementation note: the oop->ciObject mapping is represented as
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// a table stored in an array.  Even though objects are moved
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// by the garbage collector, the compactor preserves their relative
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// order; address comparison of oops (in perm space) is safe so long
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// as we prohibit GC during our comparisons.  We currently use binary
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// search to find the oop in the table, and inserting a new oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// into the table may be costly.  If this cost ends up being
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// problematic the underlying data structure can be switched to some
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// sort of balanced binary tree.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
GrowableArray<ciObject*>* ciObjectFactory::_shared_ci_objects = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
ciSymbol*                 ciObjectFactory::_shared_ci_symbols[vmSymbols::SID_LIMIT];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
int                       ciObjectFactory::_shared_ident_limit = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
volatile bool             ciObjectFactory::_initialized = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
// ciObjectFactory::ciObjectFactory
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
ciObjectFactory::ciObjectFactory(Arena* arena,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
                                 int expected_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  for (int i = 0; i < NON_PERM_BUCKETS; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    _non_perm_bucket[i] = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  _non_perm_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  _next_ident = _shared_ident_limit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  _arena = arena;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  _ci_objects = new (arena) GrowableArray<ciObject*>(arena, expected_size, 0, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // If the shared ci objects exist append them to this factory's objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  if (_shared_ci_objects != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    _ci_objects->appendAll(_shared_ci_objects);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  _unloaded_methods = new (arena) GrowableArray<ciMethod*>(arena, 4, 0, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  _unloaded_klasses = new (arena) GrowableArray<ciKlass*>(arena, 8, 0, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  _return_addresses =
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    new (arena) GrowableArray<ciReturnAddress*>(arena, 8, 0, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
// ciObjectFactory::ciObjectFactory
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
void ciObjectFactory::initialize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  ASSERT_IN_VM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  JavaThread* thread = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  HandleMark  handle_mark(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // This Arena is long lived and exists in the resource mark of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // compiler thread that initializes the initial ciObjectFactory which
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // creates the shared ciObjects that all later ciObjectFactories use.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  Arena* arena = new Arena();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  ciEnv initial(arena);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  ciEnv* env = ciEnv::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  env->_factory->init_shared_objects();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  _initialized = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
void ciObjectFactory::init_shared_objects() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  _next_ident = 1;  // start numbering CI objects at 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    // Create the shared symbols, but not in _shared_ci_objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    for (i = vmSymbols::FIRST_SID; i < vmSymbols::SID_LIMIT; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
      symbolHandle sym_handle = vmSymbolHandles::symbol_handle_at((vmSymbols::SID) i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
      assert(vmSymbols::find_sid(sym_handle()) == i, "1-1 mapping");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
      ciSymbol* sym = new (_arena) ciSymbol(sym_handle);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
      init_ident_of(sym);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
      _shared_ci_symbols[i] = sym;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    for (i = vmSymbols::FIRST_SID; i < vmSymbols::SID_LIMIT; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
      symbolHandle sym_handle = vmSymbolHandles::symbol_handle_at((vmSymbols::SID) i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
      ciSymbol* sym = vm_symbol_at((vmSymbols::SID) i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
      assert(sym->get_oop() == sym_handle(), "oop must match");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    assert(ciSymbol::void_class_signature()->get_oop() == vmSymbols::void_class_signature(), "spot check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  _ci_objects = new (_arena) GrowableArray<ciObject*>(_arena, 64, 0, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  for (int i = T_BOOLEAN; i <= T_CONFLICT; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    BasicType t = (BasicType)i;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   124
    if (type2name(t) != NULL && t != T_OBJECT && t != T_ARRAY && t != T_NARROWOOP) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
      ciType::_basic_types[t] = new (_arena) ciType(t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
      init_ident_of(ciType::_basic_types[t]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  ciEnv::_null_object_instance = new (_arena) ciNullObject();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  init_ident_of(ciEnv::_null_object_instance);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  ciEnv::_method_klass_instance =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    get(Universe::methodKlassObj())->as_method_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  ciEnv::_symbol_klass_instance =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    get(Universe::symbolKlassObj())->as_symbol_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  ciEnv::_klass_klass_instance =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    get(Universe::klassKlassObj())->as_klass_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  ciEnv::_instance_klass_klass_instance =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    get(Universe::instanceKlassKlassObj())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
      ->as_instance_klass_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  ciEnv::_type_array_klass_klass_instance =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    get(Universe::typeArrayKlassKlassObj())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
      ->as_type_array_klass_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  ciEnv::_obj_array_klass_klass_instance =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    get(Universe::objArrayKlassKlassObj())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
      ->as_obj_array_klass_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  ciEnv::_ArrayStoreException =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    get(SystemDictionary::ArrayStoreException_klass())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
      ->as_instance_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  ciEnv::_Class =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    get(SystemDictionary::class_klass())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
      ->as_instance_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  ciEnv::_ClassCastException =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    get(SystemDictionary::ClassCastException_klass())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
      ->as_instance_klass();
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   156
  if (EnableInvokeDynamic) {
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   157
    ciEnv::_InvokeDynamic =
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   158
      get(SystemDictionary::InvokeDynamic_klass())->as_instance_klass();
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   159
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  ciEnv::_Object =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    get(SystemDictionary::object_klass())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
      ->as_instance_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  ciEnv::_Throwable =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    get(SystemDictionary::throwable_klass())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
      ->as_instance_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  ciEnv::_Thread =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    get(SystemDictionary::thread_klass())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
      ->as_instance_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  ciEnv::_OutOfMemoryError =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    get(SystemDictionary::OutOfMemoryError_klass())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
      ->as_instance_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  ciEnv::_String =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    get(SystemDictionary::string_klass())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
      ->as_instance_klass();
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3919
diff changeset
   175
  ciEnv::_StringBuffer =
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3919
diff changeset
   176
    get(SystemDictionary::stringBuffer_klass())
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3919
diff changeset
   177
      ->as_instance_klass();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3919
diff changeset
   178
  ciEnv::_StringBuilder =
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3919
diff changeset
   179
    get(SystemDictionary::StringBuilder_klass())
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3919
diff changeset
   180
      ->as_instance_klass();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3919
diff changeset
   181
  ciEnv::_Integer =
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3919
diff changeset
   182
    get(SystemDictionary::int_klass())
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3919
diff changeset
   183
      ->as_instance_klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  for (int len = -1; len != _ci_objects->length(); ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    len = _ci_objects->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    for (int i2 = 0; i2 < len; i2++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
      ciObject* obj = _ci_objects->at(i2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
      if (obj->is_loaded() && obj->is_instance_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
        obj->as_instance_klass()->compute_nonstatic_fields();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  ciEnv::_unloaded_cisymbol = (ciSymbol*) ciObjectFactory::get(vmSymbols::dummy_symbol_oop());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  // Create dummy instanceKlass and objArrayKlass object and assign them idents
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  ciEnv::_unloaded_ciinstance_klass = new (_arena) ciInstanceKlass(ciEnv::_unloaded_cisymbol, NULL, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  init_ident_of(ciEnv::_unloaded_ciinstance_klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  ciEnv::_unloaded_ciobjarrayklass = new (_arena) ciObjArrayKlass(ciEnv::_unloaded_cisymbol, ciEnv::_unloaded_ciinstance_klass, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  init_ident_of(ciEnv::_unloaded_ciobjarrayklass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  assert(ciEnv::_unloaded_ciobjarrayklass->is_obj_array_klass(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  get(Universe::boolArrayKlassObj());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  get(Universe::charArrayKlassObj());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  get(Universe::singleArrayKlassObj());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  get(Universe::doubleArrayKlassObj());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  get(Universe::byteArrayKlassObj());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  get(Universe::shortArrayKlassObj());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  get(Universe::intArrayKlassObj());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  get(Universe::longArrayKlassObj());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  assert(_non_perm_count == 0, "no shared non-perm objects");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  // The shared_ident_limit is the first ident number that will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  // be used for non-shared objects.  That is, numbers less than
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  // this limit are permanently assigned to shared CI objects,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  // while the higher numbers are recycled afresh by each new ciEnv.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  _shared_ident_limit = _next_ident;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  _shared_ci_objects = _ci_objects;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
// ciObjectFactory::get
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
// Get the ciObject corresponding to some oop.  If the ciObject has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
// already been created, it is returned.  Otherwise, a new ciObject
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
// is created.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
ciObject* ciObjectFactory::get(oop key) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  ASSERT_IN_VM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
#ifdef ASSERT
3609
5f16c48e608a 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 670
diff changeset
   235
  if (CIObjectFactoryVerify) {
5f16c48e608a 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 670
diff changeset
   236
    oop last = NULL;
5f16c48e608a 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 670
diff changeset
   237
    for (int j = 0; j< _ci_objects->length(); j++) {
5f16c48e608a 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 670
diff changeset
   238
      oop o = _ci_objects->at(j)->get_oop();
5f16c48e608a 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 670
diff changeset
   239
      assert(last < o, "out of order");
5f16c48e608a 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 670
diff changeset
   240
      last = o;
5f16c48e608a 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 670
diff changeset
   241
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  int len = _ci_objects->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  int index = find(key, _ci_objects);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
#ifdef ASSERT
3609
5f16c48e608a 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 670
diff changeset
   247
  if (CIObjectFactoryVerify) {
5f16c48e608a 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 670
diff changeset
   248
    for (int i=0; i<_ci_objects->length(); i++) {
5f16c48e608a 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 670
diff changeset
   249
      if (_ci_objects->at(i)->get_oop() == key) {
5f16c48e608a 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 670
diff changeset
   250
        assert(index == i, " bad lookup");
5f16c48e608a 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 670
diff changeset
   251
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  if (!is_found_at(index, key, _ci_objects)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
    // Check in the non-perm area before putting it in the list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
    NonPermObject* &bucket = find_non_perm(key);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
    if (bucket != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
      return bucket->object();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
    // Check in the shared symbol area before putting it in the list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
    if (key->is_symbol()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
      vmSymbols::SID sid = vmSymbols::find_sid((symbolOop)key);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
      if (sid != vmSymbols::NO_SID) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
        // do not pollute the main cache with it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
        return vm_symbol_at(sid);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
    // The ciObject does not yet exist.  Create it and insert it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
    // into the cache.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
    Handle keyHandle(key);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
    ciObject* new_object = create_new_object(keyHandle());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
    assert(keyHandle() == new_object->get_oop(), "must be properly recorded");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    init_ident_of(new_object);
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3609
diff changeset
   277
    if (!new_object->is_perm()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
      // Not a perm-space object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
      insert_non_perm(bucket, keyHandle(), new_object);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
      return new_object;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
    if (len != _ci_objects->length()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
      // creating the new object has recursively entered new objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
      // into the table.  We need to recompute our index.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
      index = find(keyHandle(), _ci_objects);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
    assert(!is_found_at(index, keyHandle(), _ci_objects), "no double insert");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
    insert(index, new_object, _ci_objects);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    return new_object;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  return _ci_objects->at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
// ciObjectFactory::create_new_object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
// Create a new ciObject from an oop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
// Implementation note: this functionality could be virtual behavior
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
// of the oop itself.  For now, we explicitly marshal the object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
ciObject* ciObjectFactory::create_new_object(oop o) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  EXCEPTION_CONTEXT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  if (o->is_symbol()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
    symbolHandle h_o(THREAD, (symbolOop)o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
    return new (arena()) ciSymbol(h_o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  } else if (o->is_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
    KlassHandle h_k(THREAD, (klassOop)o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
    Klass* k = ((klassOop)o)->klass_part();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
    if (k->oop_is_instance()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
      return new (arena()) ciInstanceKlass(h_k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
    } else if (k->oop_is_objArray()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
      return new (arena()) ciObjArrayKlass(h_k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
    } else if (k->oop_is_typeArray()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
      return new (arena()) ciTypeArrayKlass(h_k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
    } else if (k->oop_is_method()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
      return new (arena()) ciMethodKlass(h_k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
    } else if (k->oop_is_symbol()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
      return new (arena()) ciSymbolKlass(h_k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
    } else if (k->oop_is_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
      if (k->oop_is_objArrayKlass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
        return new (arena()) ciObjArrayKlassKlass(h_k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
      } else if (k->oop_is_typeArrayKlass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
        return new (arena()) ciTypeArrayKlassKlass(h_k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
      } else if (k->oop_is_instanceKlass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
        return new (arena()) ciInstanceKlassKlass(h_k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
        assert(o == Universe::klassKlassObj(), "bad klassKlass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
        return new (arena()) ciKlassKlass(h_k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  } else if (o->is_method()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
    methodHandle h_m(THREAD, (methodOop)o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
    return new (arena()) ciMethod(h_m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  } else if (o->is_methodData()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
    methodDataHandle h_md(THREAD, (methodDataOop)o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
    return new (arena()) ciMethodData(h_md);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  } else if (o->is_instance()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
    instanceHandle h_i(THREAD, (instanceOop)o);
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   340
    if (java_dyn_CallSite::is_instance(o))
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   341
      return new (arena()) ciCallSite(h_i);
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   342
    else if (java_dyn_MethodHandle::is_instance(o))
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   343
      return new (arena()) ciMethodHandle(h_i);
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   344
    else
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   345
      return new (arena()) ciInstance(h_i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  } else if (o->is_objArray()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
    objArrayHandle h_oa(THREAD, (objArrayOop)o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
    return new (arena()) ciObjArray(h_oa);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  } else if (o->is_typeArray()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
    typeArrayHandle h_ta(THREAD, (typeArrayOop)o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
    return new (arena()) ciTypeArray(h_ta);
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   352
  } else if (o->is_constantPoolCache()) {
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   353
    constantPoolCacheHandle h_cpc(THREAD, (constantPoolCacheOop) o);
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   354
    return new (arena()) ciCPCache(h_cpc);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  // The oop is of some type not supported by the compiler interface.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
//------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
// ciObjectFactory::get_unloaded_method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
// Get the ciMethod representing an unloaded/unfound method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
// Implementation note: unloaded methods are currently stored in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
// an unordered array, requiring a linear-time lookup for each
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
// unloaded method.  This may need to change.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
ciMethod* ciObjectFactory::get_unloaded_method(ciInstanceKlass* holder,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
                                               ciSymbol*        name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
                                               ciSymbol*        signature) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  for (int i=0; i<_unloaded_methods->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
    ciMethod* entry = _unloaded_methods->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
    if (entry->holder()->equals(holder) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
        entry->name()->equals(name) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
        entry->signature()->as_symbol()->equals(signature)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
      // We've found a match.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
      return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  // This is a new unloaded method.  Create it and stick it in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  // the cache.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  ciMethod* new_method = new (arena()) ciMethod(holder, name, signature);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  init_ident_of(new_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  _unloaded_methods->append(new_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  return new_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
//------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
// ciObjectFactory::get_unloaded_klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
// Get a ciKlass representing an unloaded klass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
// Implementation note: unloaded klasses are currently stored in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
// an unordered array, requiring a linear-time lookup for each
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
// unloaded klass.  This may need to change.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
ciKlass* ciObjectFactory::get_unloaded_klass(ciKlass* accessing_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
                                             ciSymbol* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
                                             bool create_if_not_found) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  EXCEPTION_CONTEXT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  oop loader = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  oop domain = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  if (accessing_klass != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
    loader = accessing_klass->loader();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    domain = accessing_klass->protection_domain();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  for (int i=0; i<_unloaded_klasses->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    ciKlass* entry = _unloaded_klasses->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    if (entry->name()->equals(name) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
        entry->loader() == loader &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
        entry->protection_domain() == domain) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
      // We've found a match.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
      return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  if (!create_if_not_found)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  // This is a new unloaded klass.  Create it and stick it in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  // the cache.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  ciKlass* new_klass = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  // Two cases: this is an unloaded objArrayKlass or an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  // unloaded instanceKlass.  Deal with both.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  if (name->byte_at(0) == '[') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
    // Decompose the name.'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
    jint dimension = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
    symbolOop element_name = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
    BasicType element_type= FieldType::get_array_info(name->get_symbolOop(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
                                                      &dimension,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
                                                      &element_name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
                                                      THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
    if (HAS_PENDING_EXCEPTION) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
      CLEAR_PENDING_EXCEPTION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
      CURRENT_THREAD_ENV->record_out_of_memory_failure();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
      return ciEnv::_unloaded_ciobjarrayklass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
    assert(element_type != T_ARRAY, "unsuccessful decomposition");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
    ciKlass* element_klass = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
    if (element_type == T_OBJECT) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
      ciEnv *env = CURRENT_THREAD_ENV;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
      ciSymbol* ci_name = env->get_object(element_name)->as_symbol();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
      element_klass =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
        env->get_klass_by_name(accessing_klass, ci_name, false)->as_instance_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
      assert(dimension > 1, "one dimensional type arrays are always loaded.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
      // The type array itself takes care of one of the dimensions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
      dimension--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
      // The element klass is a typeArrayKlass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
      element_klass = ciTypeArrayKlass::make(element_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
    new_klass = new (arena()) ciObjArrayKlass(name, element_klass, dimension);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    jobject loader_handle = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    jobject domain_handle = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
    if (accessing_klass != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
      loader_handle = accessing_klass->loader_handle();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
      domain_handle = accessing_klass->protection_domain_handle();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
    new_klass = new (arena()) ciInstanceKlass(name, loader_handle, domain_handle);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  init_ident_of(new_klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  _unloaded_klasses->append(new_klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  return new_klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
//------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
// ciObjectFactory::get_empty_methodData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
// Get the ciMethodData representing the methodData for a method with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
// none.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
ciMethodData* ciObjectFactory::get_empty_methodData() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  ciMethodData* new_methodData = new (arena()) ciMethodData();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  init_ident_of(new_methodData);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  return new_methodData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
//------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
// ciObjectFactory::get_return_address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
// Get a ciReturnAddress for a specified bci.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
ciReturnAddress* ciObjectFactory::get_return_address(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  for (int i=0; i<_return_addresses->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
    ciReturnAddress* entry = _return_addresses->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
    if (entry->bci() == bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
      // We've found a match.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
      return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  ciReturnAddress* new_ret_addr = new (arena()) ciReturnAddress(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  init_ident_of(new_ret_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  _return_addresses->append(new_ret_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  return new_ret_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
// ciObjectFactory::init_ident_of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
void ciObjectFactory::init_ident_of(ciObject* obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  obj->set_ident(_next_ident++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
// ciObjectFactory::find
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
// Use binary search to find the position of this oop in the cache.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
// If there is no entry in the cache corresponding to this oop, return
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
// the position at which the oop should be inserted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
int ciObjectFactory::find(oop key, GrowableArray<ciObject*>* objects) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  int min = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  int max = objects->length()-1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  // print_contents();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  while (max >= min) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
    int mid = (max + min) / 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
    oop value = objects->at(mid)->get_oop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
    if (value < key) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
      min = mid + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
    } else if (value > key) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
      max = mid - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
      return mid;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  return min;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
// ciObjectFactory::is_found_at
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
// Verify that the binary seach found the given key.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
bool ciObjectFactory::is_found_at(int index, oop key, GrowableArray<ciObject*>* objects) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  return (index < objects->length() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
          objects->at(index)->get_oop() == key);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
// ciObjectFactory::insert
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
// Insert a ciObject into the table at some index.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
void ciObjectFactory::insert(int index, ciObject* obj, GrowableArray<ciObject*>* objects) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
  int len = objects->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  if (len == index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
    objects->append(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
    objects->append(objects->at(len-1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
    int pos;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
    for (pos = len-2; pos >= index; pos--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
      objects->at_put(pos+1,objects->at(pos));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
    objects->at_put(index, obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
#ifdef ASSERT
3609
5f16c48e608a 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 670
diff changeset
   565
  if (CIObjectFactoryVerify) {
5f16c48e608a 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 670
diff changeset
   566
    oop last = NULL;
5f16c48e608a 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 670
diff changeset
   567
    for (int j = 0; j< objects->length(); j++) {
5f16c48e608a 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 670
diff changeset
   568
      oop o = objects->at(j)->get_oop();
5f16c48e608a 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 670
diff changeset
   569
      assert(last < o, "out of order");
5f16c48e608a 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 670
diff changeset
   570
      last = o;
5f16c48e608a 6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents: 670
diff changeset
   571
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
static ciObjectFactory::NonPermObject* emptyBucket = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
// ciObjectFactory::find_non_perm
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
// Use a small hash table, hashed on the klass of the key.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
// If there is no entry in the cache corresponding to this oop, return
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
// the null tail of the bucket into which the oop should be inserted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
ciObjectFactory::NonPermObject* &ciObjectFactory::find_non_perm(oop key) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  // Be careful:  is_perm might change from false to true.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  // Thus, there might be a matching perm object in the table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  // If there is, this probe must find it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  if (key->is_perm() && _non_perm_count == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
    return emptyBucket;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  } else if (key->is_instance()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
    if (key->klass() == SystemDictionary::class_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
      // class mirror instances are always perm
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
      return emptyBucket;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
    // fall through to probe
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  } else if (key->is_array()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
    // fall through to probe
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
    // not an array or instance
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
    return emptyBucket;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  ciObject* klass = get(key->klass());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
  NonPermObject* *bp = &_non_perm_bucket[(unsigned) klass->hash() % NON_PERM_BUCKETS];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
  for (NonPermObject* p; (p = (*bp)) != NULL; bp = &p->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
    if (is_equal(p, key))  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  return (*bp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
// Code for for NonPermObject
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
inline ciObjectFactory::NonPermObject::NonPermObject(ciObjectFactory::NonPermObject* &bucket, oop key, ciObject* object) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  assert(ciObjectFactory::is_initialized(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  _object = object;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  _next = bucket;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  bucket = this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
// ciObjectFactory::insert_non_perm
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
// Insert a ciObject into the non-perm table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
void ciObjectFactory::insert_non_perm(ciObjectFactory::NonPermObject* &where, oop key, ciObject* obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  assert(&where != &emptyBucket, "must not try to fill empty bucket");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  NonPermObject* p = new (arena()) NonPermObject(where, key, obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  assert(where == p && is_equal(p, key) && p->object() == obj, "entry must match");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  assert(find_non_perm(key) == p, "must find the same spot");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  ++_non_perm_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
// ciObjectFactory::vm_symbol_at
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
// Get the ciSymbol corresponding to some index in vmSymbols.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
ciSymbol* ciObjectFactory::vm_symbol_at(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  assert(index >= vmSymbols::FIRST_SID && index < vmSymbols::SID_LIMIT, "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  return _shared_ci_symbols[index];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
// ciObjectFactory::print_contents_impl
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
void ciObjectFactory::print_contents_impl() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  int len = _ci_objects->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  tty->print_cr("ciObjectFactory (%d) oop contents:", len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  for (int i=0; i<len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
    _ci_objects->at(i)->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
    tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
// ciObjectFactory::print_contents
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
void ciObjectFactory::print_contents() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  GUARDED_VM_ENTRY(print_contents_impl();)
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
// ciObjectFactory::print
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
// Print debugging information about the object factory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
void ciObjectFactory::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
  tty->print("<ciObjectFactory oops=%d unloaded_methods=%d unloaded_klasses=%d>",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
             _ci_objects->length(), _unloaded_methods->length(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
             _unloaded_klasses->length());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
}