hotspot/src/share/vm/ci/ciObjectFactory.cpp
author goetz
Thu, 22 Oct 2015 13:07:10 -0400
changeset 33589 7cbd1b2c139b
parent 30764 fec48bf5a827
child 33611 9abd65805e19
permissions -rw-r--r--
8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux. Reviewed-by: stuefe, coleenp, roland
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 27685
diff changeset
     2
 * Copyright (c) 1999, 2015, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5420
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5420
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5420
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    26
#include "ci/ciCallSite.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    27
#include "ci/ciInstance.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    28
#include "ci/ciInstanceKlass.hpp"
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13195
diff changeset
    29
#include "ci/ciMemberName.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    30
#include "ci/ciMethod.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    31
#include "ci/ciMethodData.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    32
#include "ci/ciMethodHandle.hpp"
13929
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
    33
#include "ci/ciMethodType.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    34
#include "ci/ciNullObject.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    35
#include "ci/ciObjArray.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    36
#include "ci/ciObjArrayKlass.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    37
#include "ci/ciObject.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    38
#include "ci/ciObjectFactory.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    39
#include "ci/ciSymbol.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    40
#include "ci/ciTypeArray.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    41
#include "ci/ciTypeArrayKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    42
#include "ci/ciUtilities.hpp"
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 27685
diff changeset
    43
#include "classfile/javaClasses.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    44
#include "classfile/systemDictionary.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29081
diff changeset
    45
#include "gc/shared/collectedHeap.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    46
#include "memory/allocation.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    47
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    48
#include "runtime/fieldType.hpp"
27684
e0391b2bf625 8064581: Move INCLUDE_ALL_GCS include section to the end of the include list
stefank
parents: 25946
diff changeset
    49
#include "utilities/macros.hpp"
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
    50
#if INCLUDE_ALL_GCS
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29081
diff changeset
    51
# include "gc/g1/g1SATBCardTableModRefBS.hpp"
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
    52
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
// ciObjectFactory
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// This class handles requests for the creation of new instances
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
// of ciObject and its subclasses.  It contains a caching mechanism
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
// which ensures that for each oop, at most one ciObject is created.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
// This invariant allows more efficient implementation of ciObject.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
// Implementation note: the oop->ciObject mapping is represented as
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
// a table stored in an array.  Even though objects are moved
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
// by the garbage collector, the compactor preserves their relative
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
// order; address comparison of oops (in perm space) is safe so long
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
// as we prohibit GC during our comparisons.  We currently use binary
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
// search to find the oop in the table, and inserting a new oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
// into the table may be costly.  If this cost ends up being
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
// problematic the underlying data structure can be switched to some
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
// sort of balanced binary tree.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    71
GrowableArray<ciMetadata*>* ciObjectFactory::_shared_ci_metadata = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
ciSymbol*                 ciObjectFactory::_shared_ci_symbols[vmSymbols::SID_LIMIT];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
int                       ciObjectFactory::_shared_ident_limit = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
volatile bool             ciObjectFactory::_initialized = false;
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
ciObjectFactory::ciObjectFactory(Arena* arena,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
                                 int expected_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  for (int i = 0; i < NON_PERM_BUCKETS; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    _non_perm_bucket[i] = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  _non_perm_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  _next_ident = _shared_ident_limit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  _arena = arena;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    89
  _ci_metadata = new (arena) GrowableArray<ciMetadata*>(arena, expected_size, 0, NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // If the shared ci objects exist append them to this factory's objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    93
  if (_shared_ci_metadata != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    94
    _ci_metadata->appendAll(_shared_ci_metadata);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  _unloaded_methods = new (arena) GrowableArray<ciMethod*>(arena, 4, 0, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  _unloaded_klasses = new (arena) GrowableArray<ciKlass*>(arena, 8, 0, NULL);
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    99
  _unloaded_instances = new (arena) GrowableArray<ciInstance*>(arena, 4, 0, NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  _return_addresses =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    new (arena) GrowableArray<ciReturnAddress*>(arena, 8, 0, NULL);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   102
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   103
  _symbols = new (arena) GrowableArray<ciSymbol*>(arena, 100, 0, NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
// ciObjectFactory::ciObjectFactory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
void ciObjectFactory::initialize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  ASSERT_IN_VM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  JavaThread* thread = JavaThread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  HandleMark  handle_mark(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // This Arena is long lived and exists in the resource mark of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  // compiler thread that initializes the initial ciObjectFactory which
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  // creates the shared ciObjects that all later ciObjectFactories use.
25946
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 25492
diff changeset
   116
  Arena* arena = new (mtCompiler) Arena(mtCompiler);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  ciEnv initial(arena);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  ciEnv* env = ciEnv::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  env->_factory->init_shared_objects();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  _initialized = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
void ciObjectFactory::init_shared_objects() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  _next_ident = 1;  // start numbering CI objects at 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   130
    // Create the shared symbols, but not in _shared_ci_metadata.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    for (i = vmSymbols::FIRST_SID; i < vmSymbols::SID_LIMIT; i++) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   133
      Symbol* vmsym = vmSymbols::symbol_at((vmSymbols::SID) i);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   134
      assert(vmSymbols::find_sid(vmsym) == i, "1-1 mapping");
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   135
      ciSymbol* sym = new (_arena) ciSymbol(vmsym, (vmSymbols::SID) i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
      init_ident_of(sym);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
      _shared_ci_symbols[i] = sym;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    for (i = vmSymbols::FIRST_SID; i < vmSymbols::SID_LIMIT; i++) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   141
      Symbol* vmsym = vmSymbols::symbol_at((vmSymbols::SID) i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
      ciSymbol* sym = vm_symbol_at((vmSymbols::SID) i);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   143
      assert(sym->get_symbol() == vmsym, "oop must match");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    }
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   145
    assert(ciSymbol::void_class_signature()->get_symbol() == vmSymbols::void_class_signature(), "spot check");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   149
  _ci_metadata = new (_arena) GrowableArray<ciMetadata*>(_arena, 64, 0, NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  for (int i = T_BOOLEAN; i <= T_CONFLICT; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    BasicType t = (BasicType)i;
13969
d2a189b83b87 7054512: Compress class pointers after perm gen removal
roland
parents: 13929
diff changeset
   153
    if (type2name(t) != NULL && t != T_OBJECT && t != T_ARRAY && t != T_NARROWOOP && t != T_NARROWKLASS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
      ciType::_basic_types[t] = new (_arena) ciType(t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
      init_ident_of(ciType::_basic_types[t]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  ciEnv::_null_object_instance = new (_arena) ciNullObject();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  init_ident_of(ciEnv::_null_object_instance);
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4567
diff changeset
   161
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4567
diff changeset
   162
#define WK_KLASS_DEFN(name, ignore_s, opt)                              \
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4567
diff changeset
   163
  if (SystemDictionary::name() != NULL) \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   164
    ciEnv::_##name = get_metadata(SystemDictionary::name())->as_instance_klass();
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4567
diff changeset
   165
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4567
diff changeset
   166
  WK_KLASSES_DO(WK_KLASS_DEFN)
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4567
diff changeset
   167
#undef WK_KLASS_DEFN
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   169
  for (int len = -1; len != _ci_metadata->length(); ) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   170
    len = _ci_metadata->length();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    for (int i2 = 0; i2 < len; i2++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   172
      ciMetadata* obj = _ci_metadata->at(i2);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   173
      assert (obj->is_metadata(), "what else would it be?");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
      if (obj->is_loaded() && obj->is_instance_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
        obj->as_instance_klass()->compute_nonstatic_fields();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   180
  ciEnv::_unloaded_cisymbol = ciObjectFactory::get_symbol(vmSymbols::dummy_symbol());
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   181
  // Create dummy InstanceKlass and ObjArrayKlass object and assign them idents
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  ciEnv::_unloaded_ciinstance_klass = new (_arena) ciInstanceKlass(ciEnv::_unloaded_cisymbol, NULL, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  init_ident_of(ciEnv::_unloaded_ciinstance_klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  ciEnv::_unloaded_ciobjarrayklass = new (_arena) ciObjArrayKlass(ciEnv::_unloaded_cisymbol, ciEnv::_unloaded_ciinstance_klass, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  init_ident_of(ciEnv::_unloaded_ciobjarrayklass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  assert(ciEnv::_unloaded_ciobjarrayklass->is_obj_array_klass(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   188
  get_metadata(Universe::boolArrayKlassObj());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   189
  get_metadata(Universe::charArrayKlassObj());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   190
  get_metadata(Universe::singleArrayKlassObj());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   191
  get_metadata(Universe::doubleArrayKlassObj());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   192
  get_metadata(Universe::byteArrayKlassObj());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   193
  get_metadata(Universe::shortArrayKlassObj());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   194
  get_metadata(Universe::intArrayKlassObj());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   195
  get_metadata(Universe::longArrayKlassObj());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  assert(_non_perm_count == 0, "no shared non-perm objects");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  // The shared_ident_limit is the first ident number that will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  // be used for non-shared objects.  That is, numbers less than
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  // this limit are permanently assigned to shared CI objects,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  // while the higher numbers are recycled afresh by each new ciEnv.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  _shared_ident_limit = _next_ident;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   207
  _shared_ci_metadata = _ci_metadata;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   210
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   211
ciSymbol* ciObjectFactory::get_symbol(Symbol* key) {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   212
  vmSymbols::SID sid = vmSymbols::find_sid(key);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   213
  if (sid != vmSymbols::NO_SID) {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   214
    // do not pollute the main cache with it
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   215
    return vm_symbol_at(sid);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   216
  }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   217
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   218
  assert(vmSymbols::find_sid(key) == vmSymbols::NO_SID, "");
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   219
  ciSymbol* s = new (arena()) ciSymbol(key, vmSymbols::NO_SID);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   220
  _symbols->push(s);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   221
  return s;
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   222
}
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   223
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   224
// Decrement the refcount when done on symbols referenced by this compilation.
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   225
void ciObjectFactory::remove_symbols() {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   226
  for (int i = 0; i < _symbols->length(); i++) {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   227
    ciSymbol* s = _symbols->at(i);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   228
    s->get_symbol()->decrement_refcount();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   229
  }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   230
  // Since _symbols is resource allocated we're not allowed to delete it
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   231
  // but it'll go away just the same.
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   232
}
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   233
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
// ciObjectFactory::get
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
// Get the ciObject corresponding to some oop.  If the ciObject has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
// already been created, it is returned.  Otherwise, a new ciObject
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
// is created.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
ciObject* ciObjectFactory::get(oop key) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  ASSERT_IN_VM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
27644
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   243
  assert(Universe::heap()->is_in_reserved(key), "must be");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   244
13929
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   245
  NonPermObject* &bucket = find_non_perm(key);
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   246
  if (bucket != NULL) {
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   247
    return bucket->object();
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   248
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
13929
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   250
  // The ciObject does not yet exist.  Create it and insert it
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   251
  // into the cache.
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   252
  Handle keyHandle(key);
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   253
  ciObject* new_object = create_new_object(keyHandle());
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   254
  assert(keyHandle() == new_object->get_oop(), "must be properly recorded");
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   255
  init_ident_of(new_object);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   256
  assert(Universe::heap()->is_in_reserved(new_object->get_oop()), "must be");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   257
13929
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   258
  // Not a perm-space object.
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   259
  insert_non_perm(bucket, keyHandle(), new_object);
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   260
  return new_object;
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   261
}
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   262
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   263
// ------------------------------------------------------------------
27644
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   264
// ciObjectFactory::get_metadata
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   265
//
27644
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   266
// Get the ciMetadata corresponding to some Metadata. If the ciMetadata has
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   267
// already been created, it is returned. Otherwise, a new ciMetadata
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   268
// is created.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   269
ciMetadata* ciObjectFactory::get_metadata(Metadata* key) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   270
  ASSERT_IN_VM;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   271
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   272
#ifdef ASSERT
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   273
  if (CIObjectFactoryVerify) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   274
    Metadata* last = NULL;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   275
    for (int j = 0; j< _ci_metadata->length(); j++) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   276
      Metadata* o = _ci_metadata->at(j)->constant_encoding();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   277
      assert(last < o, "out of order");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   278
      last = o;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   279
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   280
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   281
#endif // ASSERT
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   282
  int len = _ci_metadata->length();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   283
  int index = find(key, _ci_metadata);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   284
#ifdef ASSERT
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   285
  if (CIObjectFactoryVerify) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   286
    for (int i=0; i<_ci_metadata->length(); i++) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   287
      if (_ci_metadata->at(i)->constant_encoding() == key) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   288
        assert(index == i, " bad lookup");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   289
      }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   290
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   291
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   292
#endif
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   293
  if (!is_found_at(index, key, _ci_metadata)) {
27644
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   294
    // The ciMetadata does not yet exist. Create it and insert it
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   295
    // into the cache.
27644
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   296
    ciMetadata* new_object = create_new_metadata(key);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   297
    init_ident_of(new_object);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   298
    assert(new_object->is_metadata(), "must be");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   299
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   300
    if (len != _ci_metadata->length()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
      // creating the new object has recursively entered new objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
      // into the table.  We need to recompute our index.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   303
      index = find(key, _ci_metadata);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   305
    assert(!is_found_at(index, key, _ci_metadata), "no double insert");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   306
    insert(index, new_object, _ci_metadata);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
    return new_object;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   309
  return _ci_metadata->at(index)->as_metadata();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
// ciObjectFactory::create_new_object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
// Create a new ciObject from an oop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
// Implementation note: this functionality could be virtual behavior
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
// of the oop itself.  For now, we explicitly marshal the object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
ciObject* ciObjectFactory::create_new_object(oop o) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  EXCEPTION_CONTEXT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   322
  if (o->is_instance()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
    instanceHandle h_i(THREAD, (instanceOop)o);
8676
9098d4e927e1 7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents: 8076
diff changeset
   324
    if (java_lang_invoke_CallSite::is_instance(o))
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   325
      return new (arena()) ciCallSite(h_i);
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13195
diff changeset
   326
    else if (java_lang_invoke_MemberName::is_instance(o))
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13195
diff changeset
   327
      return new (arena()) ciMemberName(h_i);
8676
9098d4e927e1 7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents: 8076
diff changeset
   328
    else if (java_lang_invoke_MethodHandle::is_instance(o))
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   329
      return new (arena()) ciMethodHandle(h_i);
13929
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   330
    else if (java_lang_invoke_MethodType::is_instance(o))
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   331
      return new (arena()) ciMethodType(h_i);
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   332
    else
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   333
      return new (arena()) ciInstance(h_i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  } else if (o->is_objArray()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
    objArrayHandle h_oa(THREAD, (objArrayOop)o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
    return new (arena()) ciObjArray(h_oa);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  } else if (o->is_typeArray()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
    typeArrayHandle h_ta(THREAD, (typeArrayOop)o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
    return new (arena()) ciTypeArray(h_ta);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   340
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   341
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   342
  // The oop is of some type not supported by the compiler interface.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   343
  ShouldNotReachHere();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   344
  return NULL;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   345
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   346
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   347
// ------------------------------------------------------------------
27644
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   348
// ciObjectFactory::create_new_metadata
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   349
//
27644
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   350
// Create a new ciMetadata from a Metadata*.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   351
//
27644
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   352
// Implementation note: in order to keep Metadata live, an auxiliary ciObject
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   353
// is used, which points to it's holder.
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   354
ciMetadata* ciObjectFactory::create_new_metadata(Metadata* o) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   355
  EXCEPTION_CONTEXT;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   356
27644
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   357
  // Hold metadata from unloading by keeping it's holder alive.
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   358
  if (_initialized && o->is_klass()) {
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   359
    Klass* holder = ((Klass*)o);
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   360
    if (holder->oop_is_instance() && InstanceKlass::cast(holder)->is_anonymous()) {
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   361
      // Though ciInstanceKlass records class loader oop, it's not enough to keep
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   362
      // VM anonymous classes alive (loader == NULL). Klass holder should be used instead.
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   363
      // It is enough to record a ciObject, since cached elements are never removed
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   364
      // during ciObjectFactory lifetime. ciObjectFactory itself is created for
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   365
      // every compilation and lives for the whole duration of the compilation.
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   366
      ciObject* h = get(holder->klass_holder());
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   367
    }
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   368
  }
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   369
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   370
  if (o->is_klass()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   371
    KlassHandle h_k(THREAD, (Klass*)o);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   372
    Klass* k = (Klass*)o;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   373
    if (k->oop_is_instance()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   374
      return new (arena()) ciInstanceKlass(h_k);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   375
    } else if (k->oop_is_objArray()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   376
      return new (arena()) ciObjArrayKlass(h_k);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   377
    } else if (k->oop_is_typeArray()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   378
      return new (arena()) ciTypeArrayKlass(h_k);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   379
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   380
  } else if (o->is_method()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   381
    methodHandle h_m(THREAD, (Method*)o);
27644
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   382
    ciEnv *env = CURRENT_THREAD_ENV;
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   383
    ciInstanceKlass* holder = env->get_instance_klass(h_m()->method_holder());
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   384
    return new (arena()) ciMethod(h_m, holder);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   385
  } else if (o->is_methodData()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   386
    // Hold methodHandle alive - might not be necessary ???
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   387
    methodHandle h_m(THREAD, ((MethodData*)o)->method());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   388
    return new (arena()) ciMethodData((MethodData*)o);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
27644
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   391
  // The Metadata* is of some type not supported by the compiler interface.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   396
// ------------------------------------------------------------------
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   397
// ciObjectFactory::ensure_metadata_alive
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   398
//
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   399
// Ensure that the metadata wrapped by the ciMetadata is kept alive by GC.
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   400
// This is primarily useful for metadata which is considered as weak roots
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   401
// by the GC but need to be strong roots if reachable from a current compilation.
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   402
//
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   403
void ciObjectFactory::ensure_metadata_alive(ciMetadata* m) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   404
  ASSERT_IN_VM; // We're handling raw oops here.
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   405
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   406
#if INCLUDE_ALL_GCS
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   407
  if (!UseG1GC) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   408
    return;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   409
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   410
  Klass* metadata_owner_klass;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   411
  if (m->is_klass()) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   412
    metadata_owner_klass = m->as_klass()->get_Klass();
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   413
  } else if (m->is_method()) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   414
    metadata_owner_klass = m->as_method()->get_Method()->constants()->pool_holder();
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   415
  } else {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   416
    fatal("Not implemented for other types of metadata");
33589
7cbd1b2c139b 8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
goetz
parents: 30764
diff changeset
   417
    return;
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   418
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   419
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   420
  oop metadata_holder = metadata_owner_klass->klass_holder();
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   421
  if (metadata_holder != NULL) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   422
    G1SATBCardTableModRefBS::enqueue(metadata_holder);
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   423
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   424
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   425
#endif
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   426
}
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   427
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
//------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
// ciObjectFactory::get_unloaded_method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
// Get the ciMethod representing an unloaded/unfound method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
// Implementation note: unloaded methods are currently stored in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
// an unordered array, requiring a linear-time lookup for each
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
// unloaded method.  This may need to change.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
ciMethod* ciObjectFactory::get_unloaded_method(ciInstanceKlass* holder,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
                                               ciSymbol*        name,
10734
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 8725
diff changeset
   438
                                               ciSymbol*        signature,
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 8725
diff changeset
   439
                                               ciInstanceKlass* accessor) {
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 8725
diff changeset
   440
  ciSignature* that = NULL;
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 8725
diff changeset
   441
  for (int i = 0; i < _unloaded_methods->length(); i++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
    ciMethod* entry = _unloaded_methods->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
    if (entry->holder()->equals(holder) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
        entry->name()->equals(name) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
        entry->signature()->as_symbol()->equals(signature)) {
10734
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 8725
diff changeset
   446
      // Short-circuit slow resolve.
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 8725
diff changeset
   447
      if (entry->signature()->accessing_klass() == accessor) {
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 8725
diff changeset
   448
        // We've found a match.
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 8725
diff changeset
   449
        return entry;
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 8725
diff changeset
   450
      } else {
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 8725
diff changeset
   451
        // Lazily create ciSignature
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 8725
diff changeset
   452
        if (that == NULL)  that = new (arena()) ciSignature(accessor, constantPoolHandle(), signature);
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 8725
diff changeset
   453
        if (entry->signature()->equals(that)) {
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 8725
diff changeset
   454
          // We've found a match.
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 8725
diff changeset
   455
          return entry;
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 8725
diff changeset
   456
        }
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 8725
diff changeset
   457
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  // This is a new unloaded method.  Create it and stick it in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  // the cache.
10734
065435337883 7092712: JSR 292: unloaded invokedynamic call sites can lead to a crash with signature types not on BCP
twisti
parents: 8725
diff changeset
   463
  ciMethod* new_method = new (arena()) ciMethod(holder, name, signature, accessor);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  init_ident_of(new_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  _unloaded_methods->append(new_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  return new_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
//------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
// ciObjectFactory::get_unloaded_klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
// Get a ciKlass representing an unloaded klass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
// Implementation note: unloaded klasses are currently stored in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
// an unordered array, requiring a linear-time lookup for each
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
// unloaded klass.  This may need to change.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
ciKlass* ciObjectFactory::get_unloaded_klass(ciKlass* accessing_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
                                             ciSymbol* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
                                             bool create_if_not_found) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  EXCEPTION_CONTEXT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  oop loader = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  oop domain = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  if (accessing_klass != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
    loader = accessing_klass->loader();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
    domain = accessing_klass->protection_domain();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  for (int i=0; i<_unloaded_klasses->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
    ciKlass* entry = _unloaded_klasses->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
    if (entry->name()->equals(name) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
        entry->loader() == loader &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
        entry->protection_domain() == domain) {
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
  if (!create_if_not_found)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  // This is a new unloaded klass.  Create it and stick it in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  // the cache.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  ciKlass* new_klass = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   506
  // Two cases: this is an unloaded ObjArrayKlass or an
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   507
  // unloaded InstanceKlass.  Deal with both.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  if (name->byte_at(0) == '[') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
    // Decompose the name.'
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   510
    FieldArrayInfo fd;
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   511
    BasicType element_type = FieldType::get_array_info(name->get_symbol(),
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   512
                                                       fd, THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
    if (HAS_PENDING_EXCEPTION) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
      CLEAR_PENDING_EXCEPTION;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
      CURRENT_THREAD_ENV->record_out_of_memory_failure();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
      return ciEnv::_unloaded_ciobjarrayklass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
    }
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   518
    int dimension = fd.dimension();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
    assert(element_type != T_ARRAY, "unsuccessful decomposition");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
    ciKlass* element_klass = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
    if (element_type == T_OBJECT) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
      ciEnv *env = CURRENT_THREAD_ENV;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   523
      ciSymbol* ci_name = env->get_symbol(fd.object_key());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
      element_klass =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
        env->get_klass_by_name(accessing_klass, ci_name, false)->as_instance_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
      assert(dimension > 1, "one dimensional type arrays are always loaded.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
      // The type array itself takes care of one of the dimensions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
      dimension--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   532
      // The element klass is a TypeArrayKlass.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
      element_klass = ciTypeArrayKlass::make(element_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    new_klass = new (arena()) ciObjArrayKlass(name, element_klass, dimension);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
    jobject loader_handle = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
    jobject domain_handle = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
    if (accessing_klass != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
      loader_handle = accessing_klass->loader_handle();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
      domain_handle = accessing_klass->protection_domain_handle();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
    new_klass = new (arena()) ciInstanceKlass(name, loader_handle, domain_handle);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  init_ident_of(new_klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  _unloaded_klasses->append(new_klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  return new_klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   551
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   552
//------------------------------------------------------------------
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   553
// ciObjectFactory::get_unloaded_instance
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   554
//
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   555
// Get a ciInstance representing an as-yet undetermined instance of a given class.
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   556
//
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   557
ciInstance* ciObjectFactory::get_unloaded_instance(ciInstanceKlass* instance_klass) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   558
  for (int i=0; i<_unloaded_instances->length(); i++) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   559
    ciInstance* entry = _unloaded_instances->at(i);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   560
    if (entry->klass()->equals(instance_klass)) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   561
      // We've found a match.
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   562
      return entry;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   563
    }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   564
  }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   565
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   566
  // This is a new unloaded instance.  Create it and stick it in
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   567
  // the cache.
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   568
  ciInstance* new_instance = new (arena()) ciInstance(instance_klass);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   569
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   570
  init_ident_of(new_instance);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   571
  _unloaded_instances->append(new_instance);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   572
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   573
  // make sure it looks the way we want:
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   574
  assert(!new_instance->is_loaded(), "");
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   575
  assert(new_instance->klass() == instance_klass, "");
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   576
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   577
  return new_instance;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   578
}
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   579
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   580
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   581
//------------------------------------------------------------------
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   582
// ciObjectFactory::get_unloaded_klass_mirror
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   583
//
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   584
// Get a ciInstance representing an unresolved klass mirror.
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   585
//
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   586
// Currently, this ignores the parameters and returns a unique unloaded instance.
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   587
ciInstance* ciObjectFactory::get_unloaded_klass_mirror(ciKlass*  type) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   588
  assert(ciEnv::_Class_klass != NULL, "");
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   589
  return get_unloaded_instance(ciEnv::_Class_klass->as_instance_klass());
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   590
}
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   591
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   592
//------------------------------------------------------------------
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   593
// ciObjectFactory::get_unloaded_method_handle_constant
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   594
//
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   595
// Get a ciInstance representing an unresolved method handle constant.
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   596
//
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   597
// Currently, this ignores the parameters and returns a unique unloaded instance.
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   598
ciInstance* ciObjectFactory::get_unloaded_method_handle_constant(ciKlass*  holder,
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   599
                                                                 ciSymbol* name,
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   600
                                                                 ciSymbol* signature,
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   601
                                                                 int       ref_kind) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   602
  if (ciEnv::_MethodHandle_klass == NULL)  return NULL;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   603
  return get_unloaded_instance(ciEnv::_MethodHandle_klass->as_instance_klass());
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   604
}
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   605
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   606
//------------------------------------------------------------------
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   607
// ciObjectFactory::get_unloaded_method_type_constant
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   608
//
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   609
// Get a ciInstance representing an unresolved method type constant.
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   610
//
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   611
// Currently, this ignores the parameters and returns a unique unloaded instance.
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   612
ciInstance* ciObjectFactory::get_unloaded_method_type_constant(ciSymbol* signature) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   613
  if (ciEnv::_MethodType_klass == NULL)  return NULL;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   614
  return get_unloaded_instance(ciEnv::_MethodType_klass->as_instance_klass());
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   615
}
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   616
19710
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 18439
diff changeset
   617
ciInstance* ciObjectFactory::get_unloaded_object_constant() {
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 18439
diff changeset
   618
  if (ciEnv::_Object_klass == NULL)  return NULL;
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 18439
diff changeset
   619
  return get_unloaded_instance(ciEnv::_Object_klass->as_instance_klass());
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 18439
diff changeset
   620
}
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   621
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
//------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
// ciObjectFactory::get_empty_methodData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
// Get the ciMethodData representing the methodData for a method with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
// none.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
ciMethodData* ciObjectFactory::get_empty_methodData() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  ciMethodData* new_methodData = new (arena()) ciMethodData();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  init_ident_of(new_methodData);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  return new_methodData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
//------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
// ciObjectFactory::get_return_address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
// Get a ciReturnAddress for a specified bci.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
ciReturnAddress* ciObjectFactory::get_return_address(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  for (int i=0; i<_return_addresses->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
    ciReturnAddress* entry = _return_addresses->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
    if (entry->bci() == bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
      // We've found a match.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
      return entry;
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
  ciReturnAddress* new_ret_addr = new (arena()) ciReturnAddress(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  init_ident_of(new_ret_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  _return_addresses->append(new_ret_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  return new_ret_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
// ciObjectFactory::init_ident_of
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   654
void ciObjectFactory::init_ident_of(ciBaseObject* obj) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
  obj->set_ident(_next_ident++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
// ciObjectFactory::find
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
// Use binary search to find the position of this oop in the cache.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
// If there is no entry in the cache corresponding to this oop, return
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
// the position at which the oop should be inserted.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   664
int ciObjectFactory::find(Metadata* key, GrowableArray<ciMetadata*>* objects) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
  int min = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
  int max = objects->length()-1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  // print_contents();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  while (max >= min) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
    int mid = (max + min) / 2;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   672
    Metadata* value = objects->at(mid)->constant_encoding();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
    if (value < key) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
      min = mid + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
    } else if (value > key) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
      max = mid - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
      return mid;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  return min;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
// ciObjectFactory::is_found_at
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
// Verify that the binary seach found the given key.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   688
bool ciObjectFactory::is_found_at(int index, Metadata* key, GrowableArray<ciMetadata*>* objects) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  return (index < objects->length() &&
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   690
          objects->at(index)->constant_encoding() == key);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
// ciObjectFactory::insert
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
// Insert a ciObject into the table at some index.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   698
void ciObjectFactory::insert(int index, ciMetadata* obj, GrowableArray<ciMetadata*>* objects) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  int len = objects->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  if (len == index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
    objects->append(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
    objects->append(objects->at(len-1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
    int pos;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
    for (pos = len-2; pos >= index; pos--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
      objects->at_put(pos+1,objects->at(pos));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
    objects->at_put(index, obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
static ciObjectFactory::NonPermObject* emptyBucket = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
// ciObjectFactory::find_non_perm
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
// Use a small hash table, hashed on the klass of the key.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
// If there is no entry in the cache corresponding to this oop, return
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
// the null tail of the bucket into which the oop should be inserted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
ciObjectFactory::NonPermObject* &ciObjectFactory::find_non_perm(oop key) {
27644
f4aa22a934e4 8060147: SIGSEGV in Metadata::mark_on_stack() while marking metadata in ciEnv
vlivanov
parents: 25946
diff changeset
   721
  assert(Universe::heap()->is_in_reserved(key), "must be");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   722
  ciMetadata* klass = get_metadata(key->klass());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
  NonPermObject* *bp = &_non_perm_bucket[(unsigned) klass->hash() % NON_PERM_BUCKETS];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
  for (NonPermObject* p; (p = (*bp)) != NULL; bp = &p->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
    if (is_equal(p, key))  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
  return (*bp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
// Code for for NonPermObject
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
inline ciObjectFactory::NonPermObject::NonPermObject(ciObjectFactory::NonPermObject* &bucket, oop key, ciObject* object) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
  assert(ciObjectFactory::is_initialized(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
  _object = object;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
  _next = bucket;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
  bucket = this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
// ciObjectFactory::insert_non_perm
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
// Insert a ciObject into the non-perm table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
void ciObjectFactory::insert_non_perm(ciObjectFactory::NonPermObject* &where, oop key, ciObject* obj) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   749
  assert(Universe::heap()->is_in_reserved_or_null(key), "must be");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
  assert(&where != &emptyBucket, "must not try to fill empty bucket");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
  NonPermObject* p = new (arena()) NonPermObject(where, key, obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
  assert(where == p && is_equal(p, key) && p->object() == obj, "entry must match");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
  assert(find_non_perm(key) == p, "must find the same spot");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
  ++_non_perm_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
// ciObjectFactory::vm_symbol_at
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
// Get the ciSymbol corresponding to some index in vmSymbols.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
ciSymbol* ciObjectFactory::vm_symbol_at(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
  assert(index >= vmSymbols::FIRST_SID && index < vmSymbols::SID_LIMIT, "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
  return _shared_ci_symbols[index];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
// ------------------------------------------------------------------
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   766
// ciObjectFactory::metadata_do
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   767
void ciObjectFactory::metadata_do(void f(Metadata*)) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   768
  if (_ci_metadata == NULL) return;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   769
  for (int j = 0; j< _ci_metadata->length(); j++) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   770
    Metadata* o = _ci_metadata->at(j)->constant_encoding();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   771
    f(o);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   772
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   773
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   774
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   775
// ------------------------------------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
// ciObjectFactory::print_contents_impl
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
void ciObjectFactory::print_contents_impl() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   778
  int len = _ci_metadata->length();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   779
  tty->print_cr("ciObjectFactory (%d) meta data contents:", len);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
  for (int i=0; i<len; i++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   781
    _ci_metadata->at(i)->print();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
    tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
// ciObjectFactory::print_contents
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
void ciObjectFactory::print_contents() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
  print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
  GUARDED_VM_ENTRY(print_contents_impl();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
// ciObjectFactory::print
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
// Print debugging information about the object factory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
void ciObjectFactory::print() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   799
  tty->print("<ciObjectFactory oops=%d metadata=%d unloaded_methods=%d unloaded_instances=%d unloaded_klasses=%d>",
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   800
             _non_perm_count, _ci_metadata->length(), _unloaded_methods->length(),
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   801
             _unloaded_instances->length(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
             _unloaded_klasses->length());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
}