src/hotspot/share/ci/ciInstanceKlass.cpp
author coleenp
Wed, 13 Nov 2019 08:23:23 -0500
changeset 59056 15936b142f86
parent 58722 cba8afa5cfed
permissions -rw-r--r--
8233913: Remove implicit conversion from Method* to methodHandle Summary: Fix call sites to use existing THREAD local or pass down THREAD local for shallower callsites. Make linkResolver methods return Method* for caller to handleize if needed. Reviewed-by: iklam, thartmann, hseigel
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
58722
cba8afa5cfed 8231844: Enhance type signature characters in classfile_constants.h and improve the JVM to use type signature characters more consistently
lfoltan
parents: 53763
diff changeset
     2
 * Copyright (c) 1999, 2019, 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: 4571
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4571
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: 4571
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: 7125
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7125
diff changeset
    26
#include "ci/ciField.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7125
diff changeset
    27
#include "ci/ciInstance.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7125
diff changeset
    28
#include "ci/ciInstanceKlass.hpp"
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49192
diff changeset
    29
#include "ci/ciUtilities.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7125
diff changeset
    30
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7125
diff changeset
    31
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7125
diff changeset
    32
#include "memory/allocation.inline.hpp"
37248
11a660dbbb8e 8132524: Missing includes to resourceArea.hpp
jprovino
parents: 33611
diff changeset
    33
#include "memory/resourceArea.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7125
diff changeset
    34
#include "oops/oop.inline.hpp"
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 58722
diff changeset
    35
#include "oops/fieldStreams.inline.hpp"
51467
12997ebbc0d8 8209647: constantPoolHandle::constantPoolHandle(ConstantPool*) when precompiled header is disabled
iklam
parents: 51444
diff changeset
    36
#include "runtime/fieldDescriptor.inline.hpp"
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49192
diff changeset
    37
#include "runtime/handles.inline.hpp"
49192
6734eeef4283 8198474: Move JNIHandles::resolve into jniHandles.inline.hpp
kbarrett
parents: 48614
diff changeset
    38
#include "runtime/jniHandles.inline.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// ciInstanceKlass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
//
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
    42
// This class represents a Klass* in the HotSpot virtual machine
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
    43
// whose Klass part in an InstanceKlass.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
47887
e20d8f168bb6 8190891: Clean up G1 barrier code in compiler interface (ci)
coleenp
parents: 47551
diff changeset
    45
e20d8f168bb6 8190891: Clean up G1 barrier code in compiler interface (ci)
coleenp
parents: 47551
diff changeset
    46
// ------------------------------------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// ciInstanceKlass::ciInstanceKlass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// Loaded instance klass.
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 41669
diff changeset
    50
ciInstanceKlass::ciInstanceKlass(Klass* k) :
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 41669
diff changeset
    51
  ciKlass(k)
217
c646ef2f5d58 6667620: (Escape Analysis) fix deoptimization for scalar replaced objects
kvn
parents: 1
diff changeset
    52
{
33611
9abd65805e19 8139203: Consistent naming for klass type predicates
coleenp
parents: 31519
diff changeset
    53
  assert(get_Klass()->is_instance_klass(), "wrong type");
8314
057b1c20fd7e 6354181: nsk.logging.stress.threads.scmhml001 fails assertion in "src/share/vm/oops/instanceKlass.cpp, 111"
never
parents: 8076
diff changeset
    54
  assert(get_instanceKlass()->is_loaded(), "must be at least loaded");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
    55
  InstanceKlass* ik = get_instanceKlass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  AccessFlags access_flags = ik->access_flags();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  _flags = ciFlags(access_flags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  _has_finalizer = access_flags.has_finalizer();
52784
621efe32eb0b 8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents: 52424
diff changeset
    60
  _has_subklass = flags().is_final() ? subklass_false : subklass_unknown;
11407
5399831730cd 7117052: instanceKlass::_init_state can be u1 type
coleenp
parents: 10546
diff changeset
    61
  _init_state = ik->init_state();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  _nonstatic_field_size = ik->nonstatic_field_size();
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 217
diff changeset
    63
  _has_nonstatic_fields = ik->has_nonstatic_fields();
41669
2091069b6851 8081800: AbstractMethodError when evaluating a private method in an interface via debugger
dholmes
parents: 37248
diff changeset
    64
  _has_nonstatic_concrete_methods = ik->has_nonstatic_concrete_methods();
51444
3e5d28e6de32 8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents: 51379
diff changeset
    65
  _is_unsafe_anonymous = ik->is_unsafe_anonymous();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  _nonstatic_fields = NULL; // initialized lazily by compute_nonstatic_fields:
28396
7fe4347e6792 6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents: 26706
diff changeset
    67
  _has_injected_fields = -1;
12369
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 11407
diff changeset
    68
  _implementor = NULL; // we will fill these lazily
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
48614
c39ae979ca35 8191567: Refactor ciInstanceKlass G1 keep alive barrier to use Access API.
eosterlund
parents: 47887
diff changeset
    70
  // Ensure that the metadata wrapped by the ciMetadata is kept alive by GC.
c39ae979ca35 8191567: Refactor ciInstanceKlass G1 keep alive barrier to use Access API.
eosterlund
parents: 47887
diff changeset
    71
  // This is primarily useful for metadata which is considered as weak roots
c39ae979ca35 8191567: Refactor ciInstanceKlass G1 keep alive barrier to use Access API.
eosterlund
parents: 47887
diff changeset
    72
  // by the GC but need to be strong roots if reachable from a current compilation.
c39ae979ca35 8191567: Refactor ciInstanceKlass G1 keep alive barrier to use Access API.
eosterlund
parents: 47887
diff changeset
    73
  // InstanceKlass are created for both weak and strong metadata.  Ensuring this metadata
c39ae979ca35 8191567: Refactor ciInstanceKlass G1 keep alive barrier to use Access API.
eosterlund
parents: 47887
diff changeset
    74
  // alive covers the cases where there are weak roots without performance cost.
52907
7cc17c043ce0 8214972: Uses of klass_holder() except GC need to apply GC barriers
coleenp
parents: 52784
diff changeset
    75
  oop holder = ik->klass_holder();
51444
3e5d28e6de32 8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents: 51379
diff changeset
    76
  if (ik->is_unsafe_anonymous()) {
47887
e20d8f168bb6 8190891: Clean up G1 barrier code in compiler interface (ci)
coleenp
parents: 47551
diff changeset
    77
    // Though ciInstanceKlass records class loader oop, it's not enough to keep
51444
3e5d28e6de32 8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents: 51379
diff changeset
    78
    // VM unsafe anonymous classes alive (loader == NULL). Klass holder should
3e5d28e6de32 8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents: 51379
diff changeset
    79
    // be used instead. It is enough to record a ciObject, since cached elements are never removed
47887
e20d8f168bb6 8190891: Clean up G1 barrier code in compiler interface (ci)
coleenp
parents: 47551
diff changeset
    80
    // during ciObjectFactory lifetime. ciObjectFactory itself is created for
e20d8f168bb6 8190891: Clean up G1 barrier code in compiler interface (ci)
coleenp
parents: 47551
diff changeset
    81
    // every compilation and lives for the whole duration of the compilation.
51444
3e5d28e6de32 8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents: 51379
diff changeset
    82
    assert(holder != NULL, "holder of unsafe anonymous class is the mirror which is never null");
47887
e20d8f168bb6 8190891: Clean up G1 barrier code in compiler interface (ci)
coleenp
parents: 47551
diff changeset
    83
    (void)CURRENT_ENV->get_object(holder);
e20d8f168bb6 8190891: Clean up G1 barrier code in compiler interface (ci)
coleenp
parents: 47551
diff changeset
    84
  }
e20d8f168bb6 8190891: Clean up G1 barrier code in compiler interface (ci)
coleenp
parents: 47551
diff changeset
    85
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  Thread *thread = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  if (ciObjectFactory::is_initialized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    _loader = JNIHandles::make_local(thread, ik->class_loader());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    _protection_domain = JNIHandles::make_local(thread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
                                                ik->protection_domain());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    _is_shared = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    Handle h_loader(thread, ik->class_loader());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    Handle h_protection_domain(thread, ik->protection_domain());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    _loader = JNIHandles::make_global(h_loader);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    _protection_domain = JNIHandles::make_global(h_protection_domain);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    _is_shared = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  // Lazy fields get filled in only upon request.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  _super  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  _java_mirror = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  if (is_shared()) {
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 41669
diff changeset
   105
    if (k != SystemDictionary::Object_klass()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
      super();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    //compute_nonstatic_fields();  // done outside of constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  _field_cache = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
// Version for unloaded classes:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
ciInstanceKlass::ciInstanceKlass(ciSymbol* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
                                 jobject loader, jobject protection_domain)
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   117
  : ciKlass(name, T_OBJECT)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
{
58722
cba8afa5cfed 8231844: Enhance type signature characters in classfile_constants.h and improve the JVM to use type signature characters more consistently
lfoltan
parents: 53763
diff changeset
   119
  assert(name->char_at(0) != JVM_SIGNATURE_ARRAY, "not an instance klass");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   120
  _init_state = (InstanceKlass::ClassState)0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  _nonstatic_field_size = -1;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 217
diff changeset
   122
  _has_nonstatic_fields = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  _nonstatic_fields = NULL;
28396
7fe4347e6792 6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents: 26706
diff changeset
   124
  _has_injected_fields = -1;
51444
3e5d28e6de32 8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents: 51379
diff changeset
   125
  _is_unsafe_anonymous = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  _loader = loader;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  _protection_domain = protection_domain;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  _is_shared = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  _super = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  _java_mirror = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  _field_cache = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
// ciInstanceKlass::compute_shared_is_initialized
5925
a30fef61d0b7 6958668: repeated uncommon trapping for new of klass which is being initialized
never
parents: 5884
diff changeset
   138
void ciInstanceKlass::compute_shared_init_state() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  GUARDED_VM_ENTRY(
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   140
    InstanceKlass* ik = get_instanceKlass();
11407
5399831730cd 7117052: instanceKlass::_init_state can be u1 type
coleenp
parents: 10546
diff changeset
   141
    _init_state = ik->init_state();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
// ciInstanceKlass::compute_shared_has_subklass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
bool ciInstanceKlass::compute_shared_has_subklass() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  GUARDED_VM_ENTRY(
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   149
    InstanceKlass* ik = get_instanceKlass();
52784
621efe32eb0b 8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents: 52424
diff changeset
   150
    _has_subklass = ik->subklass() != NULL ? subklass_true : subklass_false;
621efe32eb0b 8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents: 52424
diff changeset
   151
    return _has_subklass == subklass_true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
// ciInstanceKlass::loader
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
oop ciInstanceKlass::loader() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  ASSERT_IN_VM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  return JNIHandles::resolve(_loader);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
// ciInstanceKlass::loader_handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
jobject ciInstanceKlass::loader_handle() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  return _loader;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
// ciInstanceKlass::protection_domain
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
oop ciInstanceKlass::protection_domain() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  ASSERT_IN_VM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  return JNIHandles::resolve(_protection_domain);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
// ciInstanceKlass::protection_domain_handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
jobject ciInstanceKlass::protection_domain_handle() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  return _protection_domain;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
// ciInstanceKlass::field_cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
// Get the field cache associated with this klass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
ciConstantPoolCache* ciInstanceKlass::field_cache() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  if (is_shared()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  if (_field_cache == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    assert(!is_java_lang_Object(), "Object has no fields");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    Arena* arena = CURRENT_ENV->arena();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    _field_cache = new (arena) ciConstantPoolCache(arena, 5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  return _field_cache;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
// ciInstanceKlass::get_canonical_holder
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
ciInstanceKlass* ciInstanceKlass::get_canonical_holder(int offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  #ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  if (!(offset >= 0 && offset < layout_helper())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
    tty->print("*** get_canonical_holder(%d) on ", offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
    this->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    tty->print_cr(" ***");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  assert(offset >= 0 && offset < layout_helper(), "offset must be tame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 217
diff changeset
   210
  if (offset < instanceOopDesc::base_offset_in_bytes()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    // All header offsets belong properly to java/lang/Object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    return CURRENT_ENV->Object_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  ciInstanceKlass* self = this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  for (;;) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    assert(self->is_loaded(), "must be loaded to have size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    ciInstanceKlass* super = self->super();
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 217
diff changeset
   219
    if (super == NULL || super->nof_nonstatic_fields() == 0 ||
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 217
diff changeset
   220
        !super->contains_field_offset(offset)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
      return self;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
      self = super;  // return super->get_canonical_holder(offset)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
// ciInstanceKlass::is_java_lang_Object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
// Is this klass java.lang.Object?
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   232
bool ciInstanceKlass::is_java_lang_Object() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  return equals(CURRENT_ENV->Object_klass());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
// ciInstanceKlass::uses_default_loader
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   238
bool ciInstanceKlass::uses_default_loader() const {
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   239
  // Note:  We do not need to resolve the handle or enter the VM
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   240
  // in order to test null-ness.
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   241
  return _loader == NULL;
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   242
}
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   243
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   244
// ------------------------------------------------------------------
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   245
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   246
/**
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   247
 * Return basic type of boxed value for box klass or T_OBJECT if not.
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   248
 */
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   249
BasicType ciInstanceKlass::box_klass_type() const {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   250
  if (uses_default_loader() && is_loaded()) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   251
    return SystemDictionary::box_klass_type(get_Klass());
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   252
  } else {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   253
    return T_OBJECT;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   254
  }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   255
}
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   256
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   257
/**
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   258
 * Is this boxing klass?
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   259
 */
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   260
bool ciInstanceKlass::is_box_klass() const {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   261
  return is_java_primitive(box_klass_type());
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   262
}
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   263
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   264
/**
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   265
 *  Is this boxed value offset?
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   266
 */
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   267
bool ciInstanceKlass::is_boxed_value_offset(int offset) const {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   268
  BasicType bt = box_klass_type();
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   269
  return is_java_primitive(bt) &&
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   270
         (offset == java_lang_boxing_object::value_offset_in_bytes(bt));
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   271
}
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   272
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15471
diff changeset
   273
// ------------------------------------------------------------------
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   274
// ciInstanceKlass::is_in_package
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   275
//
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   276
// Is this klass in the given package?
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   277
bool ciInstanceKlass::is_in_package(const char* packagename, int len) {
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   278
  // To avoid class loader mischief, this test always rejects application classes.
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   279
  if (!uses_default_loader())
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   280
    return false;
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   281
  GUARDED_VM_ENTRY(
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   282
    return is_in_package_impl(packagename, len);
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   283
  )
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   284
}
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   285
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   286
bool ciInstanceKlass::is_in_package_impl(const char* packagename, int len) {
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   287
  ASSERT_IN_VM;
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   288
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   289
  // If packagename contains trailing '/' exclude it from the
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   290
  // prefix-test since we test for it explicitly.
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   291
  if (packagename[len - 1] == '/')
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   292
    len--;
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   293
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   294
  if (!name()->starts_with(packagename, len))
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   295
    return false;
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   296
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   297
  // Test if the class name is something like "java/lang".
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   298
  if ((len + 1) > name()->utf8_length())
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   299
    return false;
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   300
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   301
  // Test for trailing '/'
51997
9ce37fa2e179 8209138: Symbol constructor uses u1 as the element type of its name argument
hseigel
parents: 51467
diff changeset
   302
  if (name()->char_at(len) != '/')
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   303
    return false;
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   304
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   305
  // Make sure it's not actually in a subpackage:
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   306
  if (name()->index_of_at(len+1, "/", 1) >= 0)
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   307
    return false;
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   308
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   309
  return true;
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
// ciInstanceKlass::print_impl
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
// Implementation of the print method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
void ciInstanceKlass::print_impl(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  ciKlass::print_impl(st);
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 21209
diff changeset
   318
  GUARDED_VM_ENTRY(st->print(" loader=" INTPTR_FORMAT, p2i((address)loader()));)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  if (is_loaded()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
    st->print(" loaded=true initialized=%s finalized=%s subklass=%s size=%d flags=",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
              bool_to_str(is_initialized()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
              bool_to_str(has_finalizer()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
              bool_to_str(has_subklass()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
              layout_helper());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
    _flags.print_klass_flags();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
    if (_super) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
      st->print(" super=");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
      _super->print_name();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
    if (_java_mirror) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
      st->print(" mirror=PRESENT");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
    st->print(" loaded=false");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
// ciInstanceKlass::super
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
// Get the superklass of this klass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
ciInstanceKlass* ciInstanceKlass::super() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  assert(is_loaded(), "must be loaded");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  if (_super == NULL && !is_java_lang_Object()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
    GUARDED_VM_ENTRY(
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   348
      Klass* super_klass = get_instanceKlass()->super();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   349
      _super = CURRENT_ENV->get_instance_klass(super_klass);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
    )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  return _super;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
// ciInstanceKlass::java_mirror
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
// Get the instance of java.lang.Class corresponding to this klass.
5884
3963019e3782 6960865: ldc of unloaded class throws an assert in ciTypeFlow
jrose
parents: 5882
diff changeset
   359
// Cache it on this->_java_mirror.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
ciInstance* ciInstanceKlass::java_mirror() {
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8314
diff changeset
   361
  if (is_shared()) {
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8314
diff changeset
   362
    return ciKlass::java_mirror();
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8314
diff changeset
   363
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  if (_java_mirror == NULL) {
5884
3963019e3782 6960865: ldc of unloaded class throws an assert in ciTypeFlow
jrose
parents: 5882
diff changeset
   365
    _java_mirror = ciKlass::java_mirror();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  return _java_mirror;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
// ciInstanceKlass::unique_concrete_subklass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
ciInstanceKlass* ciInstanceKlass::unique_concrete_subklass() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  if (!is_loaded())     return NULL; // No change if class is not loaded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  if (!is_abstract())   return NULL; // Only applies to abstract classes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  if (!has_subklass())  return NULL; // Must have at least one subklass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   377
  InstanceKlass* ik = get_instanceKlass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  Klass* up = ik->up_cast_abstract();
33611
9abd65805e19 8139203: Consistent naming for klass type predicates
coleenp
parents: 31519
diff changeset
   379
  assert(up->is_instance_klass(), "must be InstanceKlass");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  if (ik == up) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   383
  return CURRENT_THREAD_ENV->get_instance_klass(up);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
// ciInstanceKlass::has_finalizable_subclass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
bool ciInstanceKlass::has_finalizable_subclass() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  if (!is_loaded())     return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  VM_ENTRY_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  return Dependencies::find_finalizable_subclass(get_instanceKlass()) != NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
// ciInstanceKlass::get_field_by_offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
ciField* ciInstanceKlass::get_field_by_offset(int field_offset, bool is_static) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  if (!is_static) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
    for (int i = 0, len = nof_nonstatic_fields(); i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
      ciField* field = _nonstatic_fields->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
      int  field_off = field->offset_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
      if (field_off == field_offset)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
        return field;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
      if (field_off > field_offset)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
      // could do binary search or check bins, but probably not worth it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   410
  InstanceKlass* k = get_instanceKlass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  fieldDescriptor fd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  if (!k->find_field_from_offset(field_offset, is_static, &fd)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  ciField* field = new (CURRENT_THREAD_ENV->arena()) ciField(&fd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  return field;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
217
c646ef2f5d58 6667620: (Escape Analysis) fix deoptimization for scalar replaced objects
kvn
parents: 1
diff changeset
   419
// ------------------------------------------------------------------
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 670
diff changeset
   420
// ciInstanceKlass::get_field_by_name
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 670
diff changeset
   421
ciField* ciInstanceKlass::get_field_by_name(ciSymbol* name, ciSymbol* signature, bool is_static) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 670
diff changeset
   422
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   423
  InstanceKlass* k = get_instanceKlass();
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 670
diff changeset
   424
  fieldDescriptor fd;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   425
  Klass* def = k->find_field(name->get_symbol(), signature->get_symbol(), is_static, &fd);
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 670
diff changeset
   426
  if (def == NULL) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 670
diff changeset
   427
    return NULL;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 670
diff changeset
   428
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 670
diff changeset
   429
  ciField* field = new (CURRENT_THREAD_ENV->arena()) ciField(&fd);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 670
diff changeset
   430
  return field;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 670
diff changeset
   431
}
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 670
diff changeset
   432
217
c646ef2f5d58 6667620: (Escape Analysis) fix deoptimization for scalar replaced objects
kvn
parents: 1
diff changeset
   433
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
static int sort_field_by_offset(ciField** a, ciField** b) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  return (*a)->offset_in_bytes() - (*b)->offset_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  // (no worries about 32-bit overflow...)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
// ciInstanceKlass::compute_nonstatic_fields
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
int ciInstanceKlass::compute_nonstatic_fields() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  assert(is_loaded(), "must be loaded");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  if (_nonstatic_fields != NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
    return _nonstatic_fields->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 217
diff changeset
   447
  if (!has_nonstatic_fields()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
    Arena* arena = CURRENT_ENV->arena();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
    _nonstatic_fields = new (arena) GrowableArray<ciField*>(arena, 0, 0, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  assert(!is_java_lang_Object(), "bootstrap OK");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 217
diff changeset
   454
  // Size in bytes of my fields, including inherited fields.
591
04d2e26e6d69 6703888: Compressed Oops: use the 32-bits gap after klass in a object
kvn
parents: 360
diff changeset
   455
  int fsize = nonstatic_field_size() * heapOopSize;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 217
diff changeset
   456
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  ciInstanceKlass* super = this->super();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  GrowableArray<ciField*>* super_fields = NULL;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 217
diff changeset
   459
  if (super != NULL && super->has_nonstatic_fields()) {
591
04d2e26e6d69 6703888: Compressed Oops: use the 32-bits gap after klass in a object
kvn
parents: 360
diff changeset
   460
    int super_fsize  = super->nonstatic_field_size() * heapOopSize;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 217
diff changeset
   461
    int super_flen   = super->nof_nonstatic_fields();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    super_fields = super->_nonstatic_fields;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
    assert(super_flen == 0 || super_fields != NULL, "first get nof_fields");
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 217
diff changeset
   464
    // See if I am no larger than my super; if so, I can use his fields.
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 217
diff changeset
   465
    if (fsize == super_fsize) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 217
diff changeset
   466
      _nonstatic_fields = super_fields;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 217
diff changeset
   467
      return super_fields->length();
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 217
diff changeset
   468
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  GrowableArray<ciField*>* fields = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  GUARDED_VM_ENTRY({
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
      fields = compute_nonstatic_fields_impl(super_fields);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
    });
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  if (fields == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
    // This can happen if this class (java.lang.Class) has invisible fields.
31037
01a5c5fa5681 8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents: 28933
diff changeset
   478
    if (super_fields != NULL) {
01a5c5fa5681 8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents: 28933
diff changeset
   479
      _nonstatic_fields = super_fields;
01a5c5fa5681 8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents: 28933
diff changeset
   480
      return super_fields->length();
01a5c5fa5681 8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents: 28933
diff changeset
   481
    } else {
01a5c5fa5681 8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents: 28933
diff changeset
   482
      return 0;
01a5c5fa5681 8079205: CallSite dependency tracking is broken after sun.misc.Cleaner became automatically cleared
vlivanov
parents: 28933
diff changeset
   483
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  int flen = fields->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  // Now sort them by offset, ascending.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  // (In principle, they could mix with superclass fields.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  fields->sort(sort_field_by_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  _nonstatic_fields = fields;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  return flen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
GrowableArray<ciField*>*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
ciInstanceKlass::compute_nonstatic_fields_impl(GrowableArray<ciField*>*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
                                               super_fields) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  ASSERT_IN_VM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  Arena* arena = CURRENT_ENV->arena();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  int flen = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  GrowableArray<ciField*>* fields = NULL;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   502
  InstanceKlass* k = get_instanceKlass();
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8725
diff changeset
   503
  for (JavaFieldStream fs(k); !fs.done(); fs.next()) {
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8725
diff changeset
   504
    if (fs.access_flags().is_static())  continue;
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8725
diff changeset
   505
    flen += 1;
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8725
diff changeset
   506
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8725
diff changeset
   508
  // allocate the array:
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8725
diff changeset
   509
  if (flen == 0) {
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8725
diff changeset
   510
    return NULL;  // return nothing if none are locally declared
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8725
diff changeset
   511
  }
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8725
diff changeset
   512
  if (super_fields != NULL) {
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8725
diff changeset
   513
    flen += super_fields->length();
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8725
diff changeset
   514
  }
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8725
diff changeset
   515
  fields = new (arena) GrowableArray<ciField*>(arena, flen, 0, NULL);
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8725
diff changeset
   516
  if (super_fields != NULL) {
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8725
diff changeset
   517
    fields->appendAll(super_fields);
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8725
diff changeset
   518
  }
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8725
diff changeset
   519
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8725
diff changeset
   520
  for (JavaFieldStream fs(k); !fs.done(); fs.next()) {
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8725
diff changeset
   521
    if (fs.access_flags().is_static())  continue;
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 17383
diff changeset
   522
    fieldDescriptor& fd = fs.field_descriptor();
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8725
diff changeset
   523
    ciField* field = new (arena) ciField(&fd);
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8725
diff changeset
   524
    fields->append(field);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  assert(fields->length() == flen, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  return fields;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
28933
a11a29cf06d5 8071821: Assert failed in UnexpectedDeoptimizationTest.java
roland
parents: 28396
diff changeset
   530
bool ciInstanceKlass::compute_injected_fields_helper() {
28396
7fe4347e6792 6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents: 26706
diff changeset
   531
  ASSERT_IN_VM;
7fe4347e6792 6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents: 26706
diff changeset
   532
  InstanceKlass* k = get_instanceKlass();
7fe4347e6792 6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents: 26706
diff changeset
   533
7fe4347e6792 6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents: 26706
diff changeset
   534
  for (InternalFieldStream fs(k); !fs.done(); fs.next()) {
7fe4347e6792 6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents: 26706
diff changeset
   535
    if (fs.access_flags().is_static())  continue;
28933
a11a29cf06d5 8071821: Assert failed in UnexpectedDeoptimizationTest.java
roland
parents: 28396
diff changeset
   536
    return true;
28396
7fe4347e6792 6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents: 26706
diff changeset
   537
  }
28933
a11a29cf06d5 8071821: Assert failed in UnexpectedDeoptimizationTest.java
roland
parents: 28396
diff changeset
   538
  return false;
28396
7fe4347e6792 6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents: 26706
diff changeset
   539
}
7fe4347e6792 6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents: 26706
diff changeset
   540
28933
a11a29cf06d5 8071821: Assert failed in UnexpectedDeoptimizationTest.java
roland
parents: 28396
diff changeset
   541
void ciInstanceKlass::compute_injected_fields() {
28396
7fe4347e6792 6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents: 26706
diff changeset
   542
  assert(is_loaded(), "must be loaded");
7fe4347e6792 6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents: 26706
diff changeset
   543
28933
a11a29cf06d5 8071821: Assert failed in UnexpectedDeoptimizationTest.java
roland
parents: 28396
diff changeset
   544
  int has_injected_fields = 0;
28396
7fe4347e6792 6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents: 26706
diff changeset
   545
  if (super() != NULL && super()->has_injected_fields()) {
28933
a11a29cf06d5 8071821: Assert failed in UnexpectedDeoptimizationTest.java
roland
parents: 28396
diff changeset
   546
    has_injected_fields = 1;
a11a29cf06d5 8071821: Assert failed in UnexpectedDeoptimizationTest.java
roland
parents: 28396
diff changeset
   547
  } else {
a11a29cf06d5 8071821: Assert failed in UnexpectedDeoptimizationTest.java
roland
parents: 28396
diff changeset
   548
    GUARDED_VM_ENTRY({
a11a29cf06d5 8071821: Assert failed in UnexpectedDeoptimizationTest.java
roland
parents: 28396
diff changeset
   549
        has_injected_fields = compute_injected_fields_helper() ? 1 : 0;
a11a29cf06d5 8071821: Assert failed in UnexpectedDeoptimizationTest.java
roland
parents: 28396
diff changeset
   550
      });
28396
7fe4347e6792 6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents: 26706
diff changeset
   551
  }
28933
a11a29cf06d5 8071821: Assert failed in UnexpectedDeoptimizationTest.java
roland
parents: 28396
diff changeset
   552
  // may be concurrently initialized for shared ciInstanceKlass objects
a11a29cf06d5 8071821: Assert failed in UnexpectedDeoptimizationTest.java
roland
parents: 28396
diff changeset
   553
  assert(_has_injected_fields == -1 || _has_injected_fields == has_injected_fields, "broken concurrent initialization");
a11a29cf06d5 8071821: Assert failed in UnexpectedDeoptimizationTest.java
roland
parents: 28396
diff changeset
   554
  _has_injected_fields = has_injected_fields;
28396
7fe4347e6792 6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents: 26706
diff changeset
   555
}
7fe4347e6792 6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents: 26706
diff changeset
   556
52424
e3d79743f57d 8212243: More gc interface tweaks for arraycopy
roland
parents: 52356
diff changeset
   557
bool ciInstanceKlass::has_object_fields() const {
e3d79743f57d 8212243: More gc interface tweaks for arraycopy
roland
parents: 52356
diff changeset
   558
  GUARDED_VM_ENTRY(
e3d79743f57d 8212243: More gc interface tweaks for arraycopy
roland
parents: 52356
diff changeset
   559
      return get_instanceKlass()->nonstatic_oop_map_size() > 0;
e3d79743f57d 8212243: More gc interface tweaks for arraycopy
roland
parents: 52356
diff changeset
   560
    );
e3d79743f57d 8212243: More gc interface tweaks for arraycopy
roland
parents: 52356
diff changeset
   561
}
e3d79743f57d 8212243: More gc interface tweaks for arraycopy
roland
parents: 52356
diff changeset
   562
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
// ciInstanceKlass::find_method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
// Find a method in this klass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
ciMethod* ciInstanceKlass::find_method(ciSymbol* name, ciSymbol* signature) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  VM_ENTRY_MARK;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   569
  InstanceKlass* k = get_instanceKlass();
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   570
  Symbol* name_sym = name->get_symbol();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   571
  Symbol* sig_sym= signature->get_symbol();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   573
  Method* m = k->find_method(name_sym, sig_sym);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  if (m == NULL)  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   576
  return CURRENT_THREAD_ENV->get_method(m);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
// ciInstanceKlass::is_leaf_type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
bool ciInstanceKlass::is_leaf_type() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  assert(is_loaded(), "must be loaded");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  if (is_shared()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
    return is_final();  // approximately correct
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  } else {
52784
621efe32eb0b 8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents: 52424
diff changeset
   586
    return !has_subklass() && (nof_implementors() == 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
// ciInstanceKlass::implementor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
// Report an implementor of this interface.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
// Note that there are various races here, since my copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
// of _nof_implementors might be out of date with respect
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   596
// to results returned by InstanceKlass::implementor.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
// This is OK, since any dependencies we decide to assert
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
// will be checked later under the Compile_lock.
12369
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 11407
diff changeset
   599
ciInstanceKlass* ciInstanceKlass::implementor() {
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 11407
diff changeset
   600
  ciInstanceKlass* impl = _implementor;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  if (impl == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
    // Go into the VM to fetch the implementor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
      VM_ENTRY_MARK;
51379
802f7e5e7e6b 8207924: serviceability/sa/TestUniverse.java#id0 intermittently fails with assert(get_instanceKlass()->is_loaded()) failed: must be at least loaded
coleenp
parents: 49738
diff changeset
   605
      MutexLocker ml(Compile_lock);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   606
      Klass* k = get_instanceKlass()->implementor();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
      if (k != NULL) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   608
        if (k == get_instanceKlass()) {
12369
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 11407
diff changeset
   609
          // More than one implementors. Use 'this' in this case.
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 11407
diff changeset
   610
          impl = this;
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 11407
diff changeset
   611
        } else {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12369
diff changeset
   612
          impl = CURRENT_THREAD_ENV->get_instance_klass(k);
12369
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 11407
diff changeset
   613
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
    // Memoize this result.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
    if (!is_shared()) {
12369
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 11407
diff changeset
   618
      _implementor = impl;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
  return impl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
}
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   623
51444
3e5d28e6de32 8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents: 51379
diff changeset
   624
ciInstanceKlass* ciInstanceKlass::unsafe_anonymous_host() {
44738
11431bbc9549 8168699: Validate special case invocations
coleenp
parents: 41669
diff changeset
   625
  assert(is_loaded(), "must be loaded");
51444
3e5d28e6de32 8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents: 51379
diff changeset
   626
  if (is_unsafe_anonymous()) {
44738
11431bbc9549 8168699: Validate special case invocations
coleenp
parents: 41669
diff changeset
   627
    VM_ENTRY_MARK
51444
3e5d28e6de32 8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents: 51379
diff changeset
   628
    Klass* unsafe_anonymous_host = get_instanceKlass()->unsafe_anonymous_host();
3e5d28e6de32 8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents: 51379
diff changeset
   629
    return CURRENT_ENV->get_instance_klass(unsafe_anonymous_host);
44738
11431bbc9549 8168699: Validate special case invocations
coleenp
parents: 41669
diff changeset
   630
  }
11431bbc9549 8168699: Validate special case invocations
coleenp
parents: 41669
diff changeset
   631
  return NULL;
11431bbc9549 8168699: Validate special case invocations
coleenp
parents: 41669
diff changeset
   632
}
11431bbc9549 8168699: Validate special case invocations
coleenp
parents: 41669
diff changeset
   633
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   634
// Utility class for printing of the contents of the static fields for
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   635
// use by compilation replay.  It only prints out the information that
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   636
// could be consumed by the compiler, so for primitive types it prints
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   637
// out the actual value.  For Strings it's the actual string value.
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   638
// For array types it it's first level array size since that's the
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   639
// only value which statically unchangeable.  For all other reference
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   640
// types it simply prints out the dynamic type.
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   641
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   642
class StaticFinalFieldPrinter : public FieldClosure {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   643
  outputStream* _out;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   644
  const char*   _holder;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   645
 public:
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   646
  StaticFinalFieldPrinter(outputStream* out, const char* holder) :
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   647
    _out(out),
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   648
    _holder(holder) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   649
  }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   650
  void do_field(fieldDescriptor* fd) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   651
    if (fd->is_final() && !fd->has_initial_value()) {
15471
41f75023e6a6 8006410: allocating without ResourceMark when CompileCommand was specified
vlivanov
parents: 14477
diff changeset
   652
      ResourceMark rm;
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   653
      oop mirror = fd->field_holder()->java_mirror();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   654
      _out->print("staticfield %s %s %s ", _holder, fd->name()->as_quoted_ascii(), fd->signature()->as_quoted_ascii());
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   655
      switch (fd->field_type()) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   656
        case T_BYTE:    _out->print_cr("%d", mirror->byte_field(fd->offset()));   break;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   657
        case T_BOOLEAN: _out->print_cr("%d", mirror->bool_field(fd->offset()));   break;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   658
        case T_SHORT:   _out->print_cr("%d", mirror->short_field(fd->offset()));  break;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   659
        case T_CHAR:    _out->print_cr("%d", mirror->char_field(fd->offset()));   break;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   660
        case T_INT:     _out->print_cr("%d", mirror->int_field(fd->offset()));    break;
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 21209
diff changeset
   661
        case T_LONG:    _out->print_cr(INT64_FORMAT, (int64_t)(mirror->long_field(fd->offset())));   break;
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   662
        case T_FLOAT: {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   663
          float f = mirror->float_field(fd->offset());
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   664
          _out->print_cr("%d", *(int*)&f);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   665
          break;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   666
        }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   667
        case T_DOUBLE: {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   668
          double d = mirror->double_field(fd->offset());
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 21209
diff changeset
   669
          _out->print_cr(INT64_FORMAT, *(int64_t*)&d);
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   670
          break;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   671
        }
53763
93b42eb5f3fc 8218881: C2: StaticFinalFieldPrinter doesn't handle T_ARRAY values in T_OBJECT fields
vlivanov
parents: 52925
diff changeset
   672
        case T_ARRAY:  // fall-through
93b42eb5f3fc 8218881: C2: StaticFinalFieldPrinter doesn't handle T_ARRAY values in T_OBJECT fields
vlivanov
parents: 52925
diff changeset
   673
        case T_OBJECT: {
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   674
          oop value =  mirror->obj_field_acquire(fd->offset());
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   675
          if (value == NULL) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   676
            _out->print_cr("null");
53763
93b42eb5f3fc 8218881: C2: StaticFinalFieldPrinter doesn't handle T_ARRAY values in T_OBJECT fields
vlivanov
parents: 52925
diff changeset
   677
          } else if (value->is_instance()) {
93b42eb5f3fc 8218881: C2: StaticFinalFieldPrinter doesn't handle T_ARRAY values in T_OBJECT fields
vlivanov
parents: 52925
diff changeset
   678
            assert(fd->field_type() == T_OBJECT, "");
93b42eb5f3fc 8218881: C2: StaticFinalFieldPrinter doesn't handle T_ARRAY values in T_OBJECT fields
vlivanov
parents: 52925
diff changeset
   679
            if (value->is_a(SystemDictionary::String_klass())) {
93b42eb5f3fc 8218881: C2: StaticFinalFieldPrinter doesn't handle T_ARRAY values in T_OBJECT fields
vlivanov
parents: 52925
diff changeset
   680
              const char* ascii_value = java_lang_String::as_quoted_ascii(value);
93b42eb5f3fc 8218881: C2: StaticFinalFieldPrinter doesn't handle T_ARRAY values in T_OBJECT fields
vlivanov
parents: 52925
diff changeset
   681
              _out->print("\"%s\"", (ascii_value != NULL) ? ascii_value : "");
93b42eb5f3fc 8218881: C2: StaticFinalFieldPrinter doesn't handle T_ARRAY values in T_OBJECT fields
vlivanov
parents: 52925
diff changeset
   682
            } else {
93b42eb5f3fc 8218881: C2: StaticFinalFieldPrinter doesn't handle T_ARRAY values in T_OBJECT fields
vlivanov
parents: 52925
diff changeset
   683
              const char* klass_name  = value->klass()->name()->as_quoted_ascii();
93b42eb5f3fc 8218881: C2: StaticFinalFieldPrinter doesn't handle T_ARRAY values in T_OBJECT fields
vlivanov
parents: 52925
diff changeset
   684
              _out->print_cr("%s", klass_name);
93b42eb5f3fc 8218881: C2: StaticFinalFieldPrinter doesn't handle T_ARRAY values in T_OBJECT fields
vlivanov
parents: 52925
diff changeset
   685
            }
93b42eb5f3fc 8218881: C2: StaticFinalFieldPrinter doesn't handle T_ARRAY values in T_OBJECT fields
vlivanov
parents: 52925
diff changeset
   686
          } else if (value->is_array()) {
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   687
            typeArrayOop ta = (typeArrayOop)value;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   688
            _out->print("%d", ta->length());
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   689
            if (value->is_objArray()) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   690
              objArrayOop oa = (objArrayOop)value;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   691
              const char* klass_name  = value->klass()->name()->as_quoted_ascii();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   692
              _out->print(" %s", klass_name);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   693
            }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   694
            _out->cr();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   695
          } else {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   696
            ShouldNotReachHere();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   697
          }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   698
          break;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   699
        }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   700
        default:
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   701
          ShouldNotReachHere();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   702
        }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   703
    }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   704
  }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   705
};
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   706
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   707
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   708
void ciInstanceKlass::dump_replay_data(outputStream* out) {
15471
41f75023e6a6 8006410: allocating without ResourceMark when CompileCommand was specified
vlivanov
parents: 14477
diff changeset
   709
  ResourceMark rm;
41f75023e6a6 8006410: allocating without ResourceMark when CompileCommand was specified
vlivanov
parents: 14477
diff changeset
   710
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   711
  InstanceKlass* ik = get_instanceKlass();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   712
  ConstantPool*  cp = ik->constants();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   713
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   714
  // Try to record related loaded classes
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   715
  Klass* sub = ik->subklass();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   716
  while (sub != NULL) {
33611
9abd65805e19 8139203: Consistent naming for klass type predicates
coleenp
parents: 31519
diff changeset
   717
    if (sub->is_instance_klass()) {
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   718
      out->print_cr("instanceKlass %s", sub->name()->as_quoted_ascii());
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   719
    }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   720
    sub = sub->next_sibling();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   721
  }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   722
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   723
  // Dump out the state of the constant pool tags.  During replay the
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   724
  // tags will be validated for things which shouldn't change and
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   725
  // classes will be resolved if the tags indicate that they were
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   726
  // resolved at compile time.
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   727
  out->print("ciInstanceKlass %s %d %d %d", ik->name()->as_quoted_ascii(),
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   728
             is_linked(), is_initialized(), cp->length());
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   729
  for (int index = 1; index < cp->length(); index++) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   730
    out->print(" %d", cp->tags()->at(index));
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   731
  }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   732
  out->cr();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   733
  if (is_initialized()) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   734
    //  Dump out the static final fields in case the compilation relies
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   735
    //  on their value for correct replay.
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   736
    StaticFinalFieldPrinter sffp(out, ik->name()->as_quoted_ascii());
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   737
    ik->do_local_static_fields(&sffp);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   738
  }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   739
}
52925
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52907
diff changeset
   740
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52907
diff changeset
   741
#ifdef ASSERT
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52907
diff changeset
   742
bool ciInstanceKlass::debug_final_field_at(int offset) {
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52907
diff changeset
   743
  GUARDED_VM_ENTRY(
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52907
diff changeset
   744
    InstanceKlass* ik = get_instanceKlass();
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52907
diff changeset
   745
    fieldDescriptor fd;
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52907
diff changeset
   746
    if (ik->find_field_from_offset(offset, false, &fd)) {
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52907
diff changeset
   747
      return fd.is_final();
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52907
diff changeset
   748
    }
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52907
diff changeset
   749
  );
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52907
diff changeset
   750
  return false;
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52907
diff changeset
   751
}
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52907
diff changeset
   752
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52907
diff changeset
   753
bool ciInstanceKlass::debug_stable_field_at(int offset) {
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52907
diff changeset
   754
  GUARDED_VM_ENTRY(
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52907
diff changeset
   755
    InstanceKlass* ik = get_instanceKlass();
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52907
diff changeset
   756
    fieldDescriptor fd;
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52907
diff changeset
   757
    if (ik->find_field_from_offset(offset, false, &fd)) {
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52907
diff changeset
   758
      return fd.is_stable();
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52907
diff changeset
   759
    }
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52907
diff changeset
   760
  );
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52907
diff changeset
   761
  return false;
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52907
diff changeset
   762
}
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52907
diff changeset
   763
#endif