src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/InstanceKlass.java
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 46729 hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/InstanceKlass.java@c62d2e8b2728
child 48166 2659c4fe8ea7
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
46460
d25a320cd821 8179769: serviceability/sa/TestCpoolForInvokeDynamic.java failing after changes for JDK-8171392
iklam
parents: 42650
diff changeset
     2
 * Copyright (c) 2000, 2017, 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: 670
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 670
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: 670
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
package sun.jvm.hotspot.oops;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
import java.io.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
import java.util.*;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
    29
import sun.jvm.hotspot.classfile.ClassLoaderData;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
import sun.jvm.hotspot.debugger.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
import sun.jvm.hotspot.memory.*;
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
    32
import sun.jvm.hotspot.memory.Dictionary;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
import sun.jvm.hotspot.runtime.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
import sun.jvm.hotspot.types.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
import sun.jvm.hotspot.utilities.*;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// An InstanceKlass is the VM level representation of a Java class.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
public class InstanceKlass extends Klass {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  static {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
    VM.registerVMInitializedObserver(new Observer() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
        public void update(Observable o, Object data) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
          initialize(VM.getVM().getTypeDataBase());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
      });
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  // field offset constants
10567
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
    49
  private static int ACCESS_FLAGS_OFFSET;
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
    50
  private static int NAME_INDEX_OFFSET;
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
    51
  private static int SIGNATURE_INDEX_OFFSET;
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
    52
  private static int INITVAL_INDEX_OFFSET;
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
    53
  private static int LOW_OFFSET;
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
    54
  private static int HIGH_OFFSET;
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
    55
  private static int FIELD_SLOTS;
15193
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 14477
diff changeset
    56
  private static short FIELDINFO_TAG_SIZE;
15225
40677d8847bd 8006403: Regression: jstack failed due to the FieldInfo regression in SA
sla
parents: 15193
diff changeset
    57
  private static short FIELDINFO_TAG_MASK;
15193
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 14477
diff changeset
    58
  private static short FIELDINFO_TAG_OFFSET;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  // ClassState constants
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  private static int CLASS_STATE_ALLOCATED;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  private static int CLASS_STATE_LOADED;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  private static int CLASS_STATE_LINKED;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  private static int CLASS_STATE_BEING_INITIALIZED;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  private static int CLASS_STATE_FULLY_INITIALIZED;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  private static int CLASS_STATE_INITIALIZATION_ERROR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
    68
  // _misc_flags constants
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
    69
  private static int MISC_REWRITTEN;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
    70
  private static int MISC_HAS_NONSTATIC_FIELDS;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
    71
  private static int MISC_SHOULD_VERIFY_CLASS;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
    72
  private static int MISC_IS_ANONYMOUS;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
    73
  private static int MISC_IS_CONTENDED;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
    74
  private static int MISC_HAS_NONSTATIC_CONCRETE_METHODS;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
    75
  private static int MISC_DECLARES_NONSTATIC_CONCRETE_METHODS;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
    76
  private static int MISC_HAS_BEEN_REDEFINED;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
    77
  private static int MISC_HAS_PASSED_FINGERPRINT_CHECK;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
    78
  private static int MISC_IS_SCRATCH_CLASS;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
    79
  private static int MISC_IS_SHARED_BOOT_CLASS;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
    80
  private static int MISC_IS_SHARED_PLATFORM_CLASS;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
    81
  private static int MISC_IS_SHARED_APP_CLASS;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
    82
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  private static synchronized void initialize(TypeDataBase db) throws WrongTypeException {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
    84
    Type type            = db.lookupType("InstanceKlass");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
    85
    arrayKlasses         = new MetadataField(type.getAddressField("_array_klasses"), 0);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
    86
    methods              = type.getAddressField("_methods");
41174
aed0f6434aea 8027920: SA: Add default methods to InstanceKlass
dsamersoff
parents: 39999
diff changeset
    87
    defaultMethods       = type.getAddressField("_default_methods");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
    88
    methodOrdering       = type.getAddressField("_method_ordering");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
    89
    localInterfaces      = type.getAddressField("_local_interfaces");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
    90
    transitiveInterfaces = type.getAddressField("_transitive_interfaces");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
    91
    fields               = type.getAddressField("_fields");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
    92
    javaFieldsCount      = new CIntField(type.getCIntegerField("_java_fields_count"), 0);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
    93
    constants            = new MetadataField(type.getAddressField("_constants"), 0);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 5547
diff changeset
    94
    sourceDebugExtension = type.getAddressField("_source_debug_extension");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
    95
    innerClasses         = type.getAddressField("_inner_classes");
19326
14cb6cf26a96 8021948: Change InstanceKlass::_source_file_name and _generic_signature from Symbol* to constant pool indexes.
jiangli
parents: 17826
diff changeset
    96
    sourceFileNameIndex  = new CIntField(type.getCIntegerField("_source_file_name_index"), 0);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
    97
    nonstaticFieldSize   = new CIntField(type.getCIntegerField("_nonstatic_field_size"), 0);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
    98
    staticFieldSize      = new CIntField(type.getCIntegerField("_static_field_size"), 0);
19326
14cb6cf26a96 8021948: Change InstanceKlass::_source_file_name and _generic_signature from Symbol* to constant pool indexes.
jiangli
parents: 17826
diff changeset
    99
    staticOopFieldCount  = new CIntField(type.getCIntegerField("_static_oop_field_count"), 0);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   100
    nonstaticOopMapSize  = new CIntField(type.getCIntegerField("_nonstatic_oop_map_size"), 0);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   101
    isMarkedDependent    = new CIntField(type.getCIntegerField("_is_marked_dependent"), 0);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   102
    initState            = new CIntField(type.getCIntegerField("_init_state"), 0);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   103
    itableLen            = new CIntField(type.getCIntegerField("_itable_len"), 0);
38059
86ab3f0a9f87 8148195: Some InstanceKlass and MethodCounters fields can be excluded when JVMTI is not supported
cjplummer
parents: 35899
diff changeset
   104
    if (VM.getVM().isJvmtiSupported()) {
86ab3f0a9f87 8148195: Some InstanceKlass and MethodCounters fields can be excluded when JVMTI is not supported
cjplummer
parents: 35899
diff changeset
   105
      breakpoints        = type.getAddressField("_breakpoints");
86ab3f0a9f87 8148195: Some InstanceKlass and MethodCounters fields can be excluded when JVMTI is not supported
cjplummer
parents: 35899
diff changeset
   106
    }
19326
14cb6cf26a96 8021948: Change InstanceKlass::_source_file_name and _generic_signature from Symbol* to constant pool indexes.
jiangli
parents: 17826
diff changeset
   107
    genericSignatureIndex = new CIntField(type.getCIntegerField("_generic_signature_index"), 0);
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   108
    miscFlags            = new CIntField(type.getCIntegerField("_misc_flags"), 0);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   109
    majorVersion         = new CIntField(type.getCIntegerField("_major_version"), 0);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   110
    minorVersion         = new CIntField(type.getCIntegerField("_minor_version"), 0);
35847
990c61a50f24 8143608: Don't 64-bit align start of InstanceKlass vtable, itable, and nonstatic_oopmap on 32-bit systems
cjplummer
parents: 35217
diff changeset
   111
    headerSize           = type.getSize();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    // read field offset constants
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   114
    ACCESS_FLAGS_OFFSET            = db.lookupIntConstant("FieldInfo::access_flags_offset").intValue();
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   115
    NAME_INDEX_OFFSET              = db.lookupIntConstant("FieldInfo::name_index_offset").intValue();
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   116
    SIGNATURE_INDEX_OFFSET         = db.lookupIntConstant("FieldInfo::signature_index_offset").intValue();
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   117
    INITVAL_INDEX_OFFSET           = db.lookupIntConstant("FieldInfo::initval_index_offset").intValue();
15193
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 14477
diff changeset
   118
    LOW_OFFSET                     = db.lookupIntConstant("FieldInfo::low_packed_offset").intValue();
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 14477
diff changeset
   119
    HIGH_OFFSET                    = db.lookupIntConstant("FieldInfo::high_packed_offset").intValue();
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   120
    FIELD_SLOTS                    = db.lookupIntConstant("FieldInfo::field_slots").intValue();
15193
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 14477
diff changeset
   121
    FIELDINFO_TAG_SIZE             = db.lookupIntConstant("FIELDINFO_TAG_SIZE").shortValue();
15225
40677d8847bd 8006403: Regression: jstack failed due to the FieldInfo regression in SA
sla
parents: 15193
diff changeset
   122
    FIELDINFO_TAG_MASK             = db.lookupIntConstant("FIELDINFO_TAG_MASK").shortValue();
15193
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 14477
diff changeset
   123
    FIELDINFO_TAG_OFFSET           = db.lookupIntConstant("FIELDINFO_TAG_OFFSET").shortValue();
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 14477
diff changeset
   124
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    // read ClassState constants
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   126
    CLASS_STATE_ALLOCATED = db.lookupIntConstant("InstanceKlass::allocated").intValue();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   127
    CLASS_STATE_LOADED = db.lookupIntConstant("InstanceKlass::loaded").intValue();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   128
    CLASS_STATE_LINKED = db.lookupIntConstant("InstanceKlass::linked").intValue();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   129
    CLASS_STATE_BEING_INITIALIZED = db.lookupIntConstant("InstanceKlass::being_initialized").intValue();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   130
    CLASS_STATE_FULLY_INITIALIZED = db.lookupIntConstant("InstanceKlass::fully_initialized").intValue();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   131
    CLASS_STATE_INITIALIZATION_ERROR = db.lookupIntConstant("InstanceKlass::initialization_error").intValue();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   133
    MISC_REWRITTEN                    = db.lookupIntConstant("InstanceKlass::_misc_rewritten").intValue();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   134
    MISC_HAS_NONSTATIC_FIELDS         = db.lookupIntConstant("InstanceKlass::_misc_has_nonstatic_fields").intValue();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   135
    MISC_SHOULD_VERIFY_CLASS          = db.lookupIntConstant("InstanceKlass::_misc_should_verify_class").intValue();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   136
    MISC_IS_ANONYMOUS                 = db.lookupIntConstant("InstanceKlass::_misc_is_anonymous").intValue();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   137
    MISC_IS_CONTENDED                 = db.lookupIntConstant("InstanceKlass::_misc_is_contended").intValue();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   138
    MISC_HAS_NONSTATIC_CONCRETE_METHODS      = db.lookupIntConstant("InstanceKlass::_misc_has_nonstatic_concrete_methods").intValue();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   139
    MISC_DECLARES_NONSTATIC_CONCRETE_METHODS = db.lookupIntConstant("InstanceKlass::_misc_declares_nonstatic_concrete_methods").intValue();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   140
    MISC_HAS_BEEN_REDEFINED           = db.lookupIntConstant("InstanceKlass::_misc_has_been_redefined").intValue();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   141
    MISC_HAS_PASSED_FINGERPRINT_CHECK = db.lookupIntConstant("InstanceKlass::_misc_has_passed_fingerprint_check").intValue();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   142
    MISC_IS_SCRATCH_CLASS             = db.lookupIntConstant("InstanceKlass::_misc_is_scratch_class").intValue();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   143
    MISC_IS_SHARED_BOOT_CLASS         = db.lookupIntConstant("InstanceKlass::_misc_is_shared_boot_class").intValue();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   144
    MISC_IS_SHARED_PLATFORM_CLASS     = db.lookupIntConstant("InstanceKlass::_misc_is_shared_platform_class").intValue();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   145
    MISC_IS_SHARED_APP_CLASS          = db.lookupIntConstant("InstanceKlass::_misc_is_shared_app_class").intValue();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   148
  public InstanceKlass(Address addr) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   149
    super(addr);
10567
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   150
    if (getJavaFieldsCount() != getAllFieldsCount()) {
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   151
      // Exercise the injected field logic
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   152
      for (int i = getJavaFieldsCount(); i < getAllFieldsCount(); i++) {
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   153
        getFieldName(i);
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   154
        getFieldSignature(i);
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   155
      }
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   156
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   159
  private static MetadataField arrayKlasses;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   160
  private static AddressField  methods;
41174
aed0f6434aea 8027920: SA: Add default methods to InstanceKlass
dsamersoff
parents: 39999
diff changeset
   161
  private static AddressField  defaultMethods;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   162
  private static AddressField  methodOrdering;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   163
  private static AddressField  localInterfaces;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   164
  private static AddressField  transitiveInterfaces;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   165
  private static AddressField fields;
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   166
  private static CIntField javaFieldsCount;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   167
  private static MetadataField constants;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 5547
diff changeset
   168
  private static AddressField  sourceDebugExtension;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   169
  private static AddressField  innerClasses;
19326
14cb6cf26a96 8021948: Change InstanceKlass::_source_file_name and _generic_signature from Symbol* to constant pool indexes.
jiangli
parents: 17826
diff changeset
   170
  private static CIntField sourceFileNameIndex;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  private static CIntField nonstaticFieldSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  private static CIntField staticFieldSize;
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8076
diff changeset
   173
  private static CIntField staticOopFieldCount;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  private static CIntField nonstaticOopMapSize;
11440
dea12ec80745 7129240: backout fix for 7102776 until 7128770 is resolved
dcubed
parents: 11405
diff changeset
   175
  private static CIntField isMarkedDependent;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  private static CIntField initState;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  private static CIntField itableLen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  private static AddressField breakpoints;
19326
14cb6cf26a96 8021948: Change InstanceKlass::_source_file_name and _generic_signature from Symbol* to constant pool indexes.
jiangli
parents: 17826
diff changeset
   179
  private static CIntField genericSignatureIndex;
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   180
  private static CIntField miscFlags;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  private static CIntField majorVersion;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  private static CIntField minorVersion;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  // type safe enum for ClassState from instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  public static class ClassState {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
     public static final ClassState ALLOCATED    = new ClassState("allocated");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
     public static final ClassState LOADED       = new ClassState("loaded");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
     public static final ClassState LINKED       = new ClassState("linked");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
     public static final ClassState BEING_INITIALIZED      = new ClassState("beingInitialized");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
     public static final ClassState FULLY_INITIALIZED    = new ClassState("fullyInitialized");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
     public static final ClassState INITIALIZATION_ERROR = new ClassState("initializationError");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
     private ClassState(String value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
        this.value = value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
     public String toString() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
        return value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
     private String value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
10547
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10546
diff changeset
   204
  public int  getInitStateAsInt() { return (int) initState.getValue(this); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  public ClassState getInitState() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
     int state = getInitStateAsInt();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   207
     if (state == CLASS_STATE_ALLOCATED) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
        return ClassState.ALLOCATED;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
     } else if (state == CLASS_STATE_LOADED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
        return ClassState.LOADED;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
     } else if (state == CLASS_STATE_LINKED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
        return ClassState.LINKED;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
     } else if (state == CLASS_STATE_BEING_INITIALIZED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
        return ClassState.BEING_INITIALIZED;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
     } else if (state == CLASS_STATE_FULLY_INITIALIZED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
        return ClassState.FULLY_INITIALIZED;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
     } else if (state == CLASS_STATE_INITIALIZATION_ERROR) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
        return ClassState.INITIALIZATION_ERROR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
     } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
        throw new RuntimeException("should not reach here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  // initialization state quaries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  public boolean isLoaded() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
     return getInitStateAsInt() >= CLASS_STATE_LOADED;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  public boolean isLinked() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
     return getInitStateAsInt() >= CLASS_STATE_LINKED;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  public boolean isInitialized() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
     return getInitStateAsInt() == CLASS_STATE_FULLY_INITIALIZED;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  public boolean isNotInitialized() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
     return getInitStateAsInt() < CLASS_STATE_BEING_INITIALIZED;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  public boolean isBeingInitialized() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
     return getInitStateAsInt() == CLASS_STATE_BEING_INITIALIZED;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  public boolean isInErrorState() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
     return getInitStateAsInt() == CLASS_STATE_INITIALIZATION_ERROR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  public int getClassStatus() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
     int result = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
     if (isLinked()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
        result |= JVMDIClassStatus.VERIFIED | JVMDIClassStatus.PREPARED;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
     if (isInitialized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
        if (Assert.ASSERTS_ENABLED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
           Assert.that(isLinked(), "Class status is not consistent");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
        result |= JVMDIClassStatus.INITIALIZED;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
     if (isInErrorState()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
        result |= JVMDIClassStatus.ERROR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
     return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  // Byteside of the header
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  private static long headerSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
8878
a6283814032c 7031614: jmap -permstat fails with java.lang.InternalError in sun.jvm.hotspot.oops.OopField.getValue
never
parents: 8725
diff changeset
   271
  public long getObjectSize(Oop object) {
a6283814032c 7031614: jmap -permstat fails with java.lang.InternalError in sun.jvm.hotspot.oops.OopField.getValue
never
parents: 8725
diff changeset
   272
    return getSizeHelper() * VM.getVM().getAddressSize();
a6283814032c 7031614: jmap -permstat fails with java.lang.InternalError in sun.jvm.hotspot.oops.OopField.getValue
never
parents: 8725
diff changeset
   273
  }
a6283814032c 7031614: jmap -permstat fails with java.lang.InternalError in sun.jvm.hotspot.oops.OopField.getValue
never
parents: 8725
diff changeset
   274
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   275
  public long getSize() { // in number of bytes
39999
82ece130a37b 8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents: 38059
diff changeset
   276
    long wordLength = VM.getVM().getBytesPerWord();
82ece130a37b 8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents: 38059
diff changeset
   277
    long size = getHeaderSize() +
82ece130a37b 8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents: 38059
diff changeset
   278
                (getVtableLen() +
82ece130a37b 8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents: 38059
diff changeset
   279
                 getItableLen() +
82ece130a37b 8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents: 38059
diff changeset
   280
                 getNonstaticOopMapSize()) * wordLength;
82ece130a37b 8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents: 38059
diff changeset
   281
    if (isInterface()) {
82ece130a37b 8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents: 38059
diff changeset
   282
      size += wordLength;
82ece130a37b 8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents: 38059
diff changeset
   283
    }
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   284
    if (isAnonymous()) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   285
      size += wordLength;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   286
    }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   287
    if (hasStoredFingerprint()) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   288
      size += 8; // uint64_t
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   289
    }
39999
82ece130a37b 8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents: 38059
diff changeset
   290
    return alignSize(size);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   291
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   292
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   293
  private int getMiscFlags() {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   294
    return (int) miscFlags.getValue(this);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   295
  }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   296
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   297
  public boolean isAnonymous() {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   298
    return (getMiscFlags() & MISC_IS_ANONYMOUS) != 0;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   299
  }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   300
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   301
  public static boolean shouldStoreFingerprint() {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   302
    VM vm = VM.getVM();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   303
    if (vm.getCommandLineBooleanFlag("EnableJVMCI") && !vm.getCommandLineBooleanFlag("UseJVMCICompiler")) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   304
      return true;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   305
    }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   306
    if (vm.getCommandLineBooleanFlag("DumpSharedSpaces")) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   307
      return true;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   308
    }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   309
    return false;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   310
  }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   311
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   312
  public boolean hasStoredFingerprint() {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   313
    return shouldStoreFingerprint() || isShared();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   314
  }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   315
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   316
  public boolean isShared() {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   317
    VM vm = VM.getVM();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   318
    if (vm.isSharingEnabled()) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   319
      // This is not the same implementation as the C++ function MetaspaceObj::is_shared()
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   320
      //     bool MetaspaceObj::is_shared() const {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   321
      //       return MetaspaceShared::is_in_shared_space(this);
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   322
      //     }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   323
      // However, MetaspaceShared::is_in_shared_space is complicated and hard to emulate in
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   324
      // Java code, so let's do this by looking up from the shared dictionary. Of course,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   325
      // this works for shared InstanceKlass only and does not work for other types of
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   326
      // MetaspaceObj in the CDS shared archive.
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   327
      Dictionary sharedDictionary = vm.getSystemDictionary().sharedDictionary();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   328
      if (sharedDictionary != null) {
46729
c62d2e8b2728 7133093: Improve system dictionary performance
coleenp
parents: 46460
diff changeset
   329
        if (sharedDictionary.contains(this)) {
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   330
          return true;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   331
        }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   332
      }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   333
    }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   334
    return false;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   335
  }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42590
diff changeset
   336
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  public static long getHeaderSize() { return headerSize; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   339
  public short getFieldAccessFlags(int index) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   340
    return getFields().at(index * FIELD_SLOTS + ACCESS_FLAGS_OFFSET);
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   341
  }
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   342
10567
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   343
  public short getFieldNameIndex(int index) {
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   344
    if (index >= getJavaFieldsCount()) throw new IndexOutOfBoundsException("not a Java field;");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   345
    return getFields().at(index * FIELD_SLOTS + NAME_INDEX_OFFSET);
10567
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   346
  }
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   347
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   348
  public Symbol getFieldName(int index) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   349
    int nameIndex = getFields().at(index * FIELD_SLOTS + NAME_INDEX_OFFSET);
10567
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   350
    if (index < getJavaFieldsCount()) {
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   351
      return getConstants().getSymbolAt(nameIndex);
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   352
    } else {
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   353
      return vmSymbols.symbolAt(nameIndex);
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   354
    }
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   355
  }
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   356
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   357
  public short getFieldSignatureIndex(int index) {
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   358
    if (index >= getJavaFieldsCount()) throw new IndexOutOfBoundsException("not a Java field;");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   359
    return getFields().at(index * FIELD_SLOTS + SIGNATURE_INDEX_OFFSET);
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   360
  }
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   361
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   362
  public Symbol getFieldSignature(int index) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   363
    int signatureIndex = getFields().at(index * FIELD_SLOTS + SIGNATURE_INDEX_OFFSET);
10567
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   364
    if (index < getJavaFieldsCount()) {
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   365
      return getConstants().getSymbolAt(signatureIndex);
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   366
    } else {
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   367
      return vmSymbols.symbolAt(signatureIndex);
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   368
    }
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   369
  }
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   370
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   371
  public short getFieldGenericSignatureIndex(int index) {
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   372
    // int len = getFields().length();
12772
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   373
    int allFieldsCount = getAllFieldsCount();
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   374
    int generic_signature_slot = allFieldsCount * FIELD_SLOTS;
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   375
    for (int i = 0; i < allFieldsCount; i++) {
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   376
      short flags = getFieldAccessFlags(i);
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   377
      AccessFlags access = new AccessFlags(flags);
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   378
      if (i == index) {
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   379
        if (access.fieldHasGenericSignature()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   380
           return getFields().at(generic_signature_slot);
12772
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   381
        } else {
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   382
          return 0;
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   383
        }
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   384
      } else {
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   385
        if (access.fieldHasGenericSignature()) {
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   386
          generic_signature_slot ++;
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   387
        }
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   388
      }
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   389
    }
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   390
    return 0;
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   391
  }
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   392
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   393
  public Symbol getFieldGenericSignature(int index) {
10567
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   394
    short genericSignatureIndex = getFieldGenericSignatureIndex(index);
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   395
    if (genericSignatureIndex != 0)  {
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   396
      return getConstants().getSymbolAt(genericSignatureIndex);
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   397
    }
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   398
    return null;
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   399
  }
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   400
10567
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   401
  public short getFieldInitialValueIndex(int index) {
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   402
    if (index >= getJavaFieldsCount()) throw new IndexOutOfBoundsException("not a Java field;");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   403
    return getFields().at(index * FIELD_SLOTS + INITVAL_INDEX_OFFSET);
10567
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   404
  }
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   405
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   406
  public int getFieldOffset(int index) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   407
    U2Array fields = getFields();
15193
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 14477
diff changeset
   408
    short lo = fields.at(index * FIELD_SLOTS + LOW_OFFSET);
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 14477
diff changeset
   409
    short hi = fields.at(index * FIELD_SLOTS + HIGH_OFFSET);
15225
40677d8847bd 8006403: Regression: jstack failed due to the FieldInfo regression in SA
sla
parents: 15193
diff changeset
   410
    if ((lo & FIELDINFO_TAG_MASK) == FIELDINFO_TAG_OFFSET) {
15193
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 14477
diff changeset
   411
      return VM.getVM().buildIntFromShorts(lo, hi) >> FIELDINFO_TAG_SIZE;
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 14477
diff changeset
   412
    }
8e6b5694267f 8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents: 14477
diff changeset
   413
    throw new RuntimeException("should not reach here");
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   414
  }
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   415
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  // Accessors for declared fields
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  public Klass     getArrayKlasses()        { return (Klass)        arrayKlasses.getValue(this); }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   418
  public MethodArray  getMethods()              { return new MethodArray(methods.getValue(getAddress())); }
41174
aed0f6434aea 8027920: SA: Add default methods to InstanceKlass
dsamersoff
parents: 39999
diff changeset
   419
aed0f6434aea 8027920: SA: Add default methods to InstanceKlass
dsamersoff
parents: 39999
diff changeset
   420
  public MethodArray  getDefaultMethods() {
aed0f6434aea 8027920: SA: Add default methods to InstanceKlass
dsamersoff
parents: 39999
diff changeset
   421
    if (defaultMethods != null) {
aed0f6434aea 8027920: SA: Add default methods to InstanceKlass
dsamersoff
parents: 39999
diff changeset
   422
      Address addr = defaultMethods.getValue(getAddress());
aed0f6434aea 8027920: SA: Add default methods to InstanceKlass
dsamersoff
parents: 39999
diff changeset
   423
      if ((addr != null) && (addr.getAddressAt(0) != null)) {
aed0f6434aea 8027920: SA: Add default methods to InstanceKlass
dsamersoff
parents: 39999
diff changeset
   424
        return new MethodArray(addr);
aed0f6434aea 8027920: SA: Add default methods to InstanceKlass
dsamersoff
parents: 39999
diff changeset
   425
      } else {
aed0f6434aea 8027920: SA: Add default methods to InstanceKlass
dsamersoff
parents: 39999
diff changeset
   426
        return null;
aed0f6434aea 8027920: SA: Add default methods to InstanceKlass
dsamersoff
parents: 39999
diff changeset
   427
      }
aed0f6434aea 8027920: SA: Add default methods to InstanceKlass
dsamersoff
parents: 39999
diff changeset
   428
    } else {
aed0f6434aea 8027920: SA: Add default methods to InstanceKlass
dsamersoff
parents: 39999
diff changeset
   429
      return null;
aed0f6434aea 8027920: SA: Add default methods to InstanceKlass
dsamersoff
parents: 39999
diff changeset
   430
    }
aed0f6434aea 8027920: SA: Add default methods to InstanceKlass
dsamersoff
parents: 39999
diff changeset
   431
  }
aed0f6434aea 8027920: SA: Add default methods to InstanceKlass
dsamersoff
parents: 39999
diff changeset
   432
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   433
  public KlassArray   getLocalInterfaces()      { return new KlassArray(localInterfaces.getValue(getAddress())); }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   434
  public KlassArray   getTransitiveInterfaces() { return new KlassArray(transitiveInterfaces.getValue(getAddress())); }
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   435
  public int       getJavaFieldsCount()     { return                (int) javaFieldsCount.getValue(this); }
12772
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   436
  public int       getAllFieldsCount()      {
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   437
    int len = getFields().length();
12772
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   438
    int allFieldsCount = 0;
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   439
    for (; allFieldsCount*FIELD_SLOTS < len; allFieldsCount++) {
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   440
      short flags = getFieldAccessFlags(allFieldsCount);
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   441
      AccessFlags access = new AccessFlags(flags);
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   442
      if (access.fieldHasGenericSignature()) {
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   443
        len --;
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   444
      }
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   445
    }
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   446
    return allFieldsCount;
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 12369
diff changeset
   447
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  public ConstantPool getConstants()        { return (ConstantPool) constants.getValue(this); }
19326
14cb6cf26a96 8021948: Change InstanceKlass::_source_file_name and _generic_signature from Symbol* to constant pool indexes.
jiangli
parents: 17826
diff changeset
   449
  public Symbol    getSourceFileName()      { return                getConstants().getSymbolAt(sourceFileNameIndex.getValue(this)); }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   450
  public String    getSourceDebugExtension(){ return                CStringUtilities.getString(sourceDebugExtension.getValue(getAddress())); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  public long      getNonstaticFieldSize()  { return                nonstaticFieldSize.getValue(this); }
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8076
diff changeset
   452
  public long      getStaticOopFieldCount() { return                staticOopFieldCount.getValue(this); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  public long      getNonstaticOopMapSize() { return                nonstaticOopMapSize.getValue(this); }
11440
dea12ec80745 7129240: backout fix for 7102776 until 7128770 is resolved
dcubed
parents: 11405
diff changeset
   454
  public boolean   getIsMarkedDependent()   { return                isMarkedDependent.getValue(this) != 0; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  public long      getItableLen()           { return                itableLen.getValue(this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  public long      majorVersion()           { return                majorVersion.getValue(this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  public long      minorVersion()           { return                minorVersion.getValue(this); }
19683
243b76d51b69 8023477: Invalid CP index when reading ConstantPool.
jiangli
parents: 19326
diff changeset
   458
  public Symbol    getGenericSignature()    {
243b76d51b69 8023477: Invalid CP index when reading ConstantPool.
jiangli
parents: 19326
diff changeset
   459
    long index = genericSignatureIndex.getValue(this);
243b76d51b69 8023477: Invalid CP index when reading ConstantPool.
jiangli
parents: 19326
diff changeset
   460
    if (index != 0) {
243b76d51b69 8023477: Invalid CP index when reading ConstantPool.
jiangli
parents: 19326
diff changeset
   461
      return getConstants().getSymbolAt(index);
243b76d51b69 8023477: Invalid CP index when reading ConstantPool.
jiangli
parents: 19326
diff changeset
   462
    } else {
243b76d51b69 8023477: Invalid CP index when reading ConstantPool.
jiangli
parents: 19326
diff changeset
   463
      return null;
243b76d51b69 8023477: Invalid CP index when reading ConstantPool.
jiangli
parents: 19326
diff changeset
   464
    }
243b76d51b69 8023477: Invalid CP index when reading ConstantPool.
jiangli
parents: 19326
diff changeset
   465
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  // "size helper" == instance size in words
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  public long getSizeHelper() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
    int lh = getLayoutHelper();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
    if (Assert.ASSERTS_ENABLED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
      Assert.that(lh > 0, "layout helper initialized for instance class");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
    return lh / VM.getVM().getAddressSize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  // same as enum InnerClassAttributeOffset in VM code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  public static interface InnerClassAttributeOffset {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
    // from JVM spec. "InnerClasses" attribute
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
    public static final int innerClassInnerClassInfoOffset = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
    public static final int innerClassOuterClassInfoOffset = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
    public static final int innerClassInnerNameOffset = 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
    public static final int innerClassAccessFlagsOffset = 3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
    public static final int innerClassNextOffset = 4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
12231
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 11440
diff changeset
   486
  public static interface EnclosingMethodAttributeOffset {
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 11440
diff changeset
   487
    public static final int enclosing_method_class_index_offset = 0;
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 11440
diff changeset
   488
    public static final int enclosing_method_method_index_offset = 1;
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 11440
diff changeset
   489
    public static final int enclosing_method_attribute_size = 2;
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 11440
diff changeset
   490
  };
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 11440
diff changeset
   491
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  // refer to compute_modifier_flags in VM code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  public long computeModifierFlags() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
    long access = getAccessFlags();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
    // But check if it happens to be member class.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   496
    U2Array innerClassList = getInnerClasses();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   497
    int length = (innerClassList == null)? 0 : (int) innerClassList.length();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
    if (length > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
       if (Assert.ASSERTS_ENABLED) {
12231
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 11440
diff changeset
   500
          Assert.that(length % InnerClassAttributeOffset.innerClassNextOffset == 0 ||
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 11440
diff changeset
   501
                      length % InnerClassAttributeOffset.innerClassNextOffset == EnclosingMethodAttributeOffset.enclosing_method_attribute_size,
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 11440
diff changeset
   502
                      "just checking");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
       for (int i = 0; i < length; i += InnerClassAttributeOffset.innerClassNextOffset) {
12231
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 11440
diff changeset
   505
          if (i == length - EnclosingMethodAttributeOffset.enclosing_method_attribute_size) {
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 11440
diff changeset
   506
              break;
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 11440
diff changeset
   507
          }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   508
          int ioff = innerClassList.at(i +
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
                         InnerClassAttributeOffset.innerClassInnerClassInfoOffset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
          // 'ioff' can be zero.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
          // refer to JVM spec. section 4.7.5.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
          if (ioff != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
             // only look at classes that are already loaded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
             // since we are looking for the flags for our self.
46460
d25a320cd821 8179769: serviceability/sa/TestCpoolForInvokeDynamic.java failing after changes for JDK-8171392
iklam
parents: 42650
diff changeset
   515
             Symbol name = getConstants().getKlassNameAt(ioff);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
             if (name.equals(getName())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
                // This is really a member class
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   519
                access = innerClassList.at(i +
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
                        InnerClassAttributeOffset.innerClassAccessFlagsOffset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
                break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
             }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
       } // for inner classes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
    // Remember to strip ACC_SUPER bit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
    return (access & (~JVM_ACC_SUPER)) & JVM_ACC_WRITTEN_FLAGS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  // whether given Symbol is name of an inner/nested Klass of this Klass?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  // anonymous and local classes are excluded.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  public boolean isInnerClassName(Symbol sym) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    return isInInnerClasses(sym, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  // whether given Symbol is name of an inner/nested Klass of this Klass?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  // anonymous classes excluded, but local classes are included.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  public boolean isInnerOrLocalClassName(Symbol sym) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
    return isInInnerClasses(sym, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  private boolean isInInnerClasses(Symbol sym, boolean includeLocals) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   545
    U2Array innerClassList = getInnerClasses();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   546
    int length = ( innerClassList == null)? 0 : (int) innerClassList.length();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
    if (length > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
       if (Assert.ASSERTS_ENABLED) {
12231
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 11440
diff changeset
   549
         Assert.that(length % InnerClassAttributeOffset.innerClassNextOffset == 0 ||
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 11440
diff changeset
   550
                     length % InnerClassAttributeOffset.innerClassNextOffset == EnclosingMethodAttributeOffset.enclosing_method_attribute_size,
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 11440
diff changeset
   551
                     "just checking");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
       for (int i = 0; i < length; i += InnerClassAttributeOffset.innerClassNextOffset) {
12231
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 11440
diff changeset
   554
         if (i == length - EnclosingMethodAttributeOffset.enclosing_method_attribute_size) {
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 11440
diff changeset
   555
             break;
6a9cfc59a18a 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 11440
diff changeset
   556
         }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   557
         int ioff = innerClassList.at(i +
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
                        InnerClassAttributeOffset.innerClassInnerClassInfoOffset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
         // 'ioff' can be zero.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
         // refer to JVM spec. section 4.7.5.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
         if (ioff != 0) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   562
            Symbol innerName = getConstants().getKlassNameAt(ioff);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
            Symbol myname = getName();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   564
            int ooff = innerClassList.at(i +
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
                        InnerClassAttributeOffset.innerClassOuterClassInfoOffset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
            // for anonymous classes inner_name_index of InnerClasses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
            // attribute is zero.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   568
            int innerNameIndex = innerClassList.at(i +
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
                        InnerClassAttributeOffset.innerClassInnerNameOffset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
            // if this is not a member (anonymous, local etc.), 'ooff' will be zero
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
            // refer to JVM spec. section 4.7.5.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
            if (ooff == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
               if (includeLocals) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
                  // does it looks like my local class?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
                  if (innerName.equals(sym) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
                     innerName.asString().startsWith(myname.asString())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
                     // exclude anonymous classes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
                     return (innerNameIndex != 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
                  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
               }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
            } else {
46460
d25a320cd821 8179769: serviceability/sa/TestCpoolForInvokeDynamic.java failing after changes for JDK-8171392
iklam
parents: 42650
diff changeset
   582
               Symbol outerName = getConstants().getKlassNameAt(ooff);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
               // include only if current class is outer class.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
               if (outerName.equals(myname) && innerName.equals(sym)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
                  return true;
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
       } // for inner classes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
       return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
       return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  public boolean implementsInterface(Klass k) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
    if (Assert.ASSERTS_ENABLED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
      Assert.that(k.isInterface(), "should not reach here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   601
    KlassArray interfaces =  getTransitiveInterfaces();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   602
    final int len = interfaces.length();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
    for (int i = 0; i < len; i++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   604
      if (interfaces.getAt(i).equals(k)) return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  boolean computeSubtypeOf(Klass k) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
    if (k.isInterface()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
      return implementsInterface(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
      return super.computeSubtypeOf(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  public void printValueOn(PrintStream tty) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
    tty.print("InstanceKlass for " + getName().asString());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   621
  public void iterateFields(MetadataVisitor visitor) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   622
    super.iterateFields(visitor);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   623
    visitor.doMetadata(arrayKlasses, true);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   624
    // visitor.doOop(methods, true);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   625
    // visitor.doOop(localInterfaces, true);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   626
    // visitor.doOop(transitiveInterfaces, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
      visitor.doCInt(nonstaticFieldSize, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
      visitor.doCInt(staticFieldSize, true);
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8076
diff changeset
   629
      visitor.doCInt(staticOopFieldCount, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
      visitor.doCInt(nonstaticOopMapSize, true);
11440
dea12ec80745 7129240: backout fix for 7102776 until 7128770 is resolved
dcubed
parents: 11405
diff changeset
   631
      visitor.doCInt(isMarkedDependent, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
      visitor.doCInt(initState, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
      visitor.doCInt(itableLen, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
8878
a6283814032c 7031614: jmap -permstat fails with java.lang.InternalError in sun.jvm.hotspot.oops.OopField.getValue
never
parents: 8725
diff changeset
   636
  /*
a6283814032c 7031614: jmap -permstat fails with java.lang.InternalError in sun.jvm.hotspot.oops.OopField.getValue
never
parents: 8725
diff changeset
   637
   *  Visit the static fields of this InstanceKlass with the obj of
a6283814032c 7031614: jmap -permstat fails with java.lang.InternalError in sun.jvm.hotspot.oops.OopField.getValue
never
parents: 8725
diff changeset
   638
   *  the visitor set to the oop holding the fields, which is
a6283814032c 7031614: jmap -permstat fails with java.lang.InternalError in sun.jvm.hotspot.oops.OopField.getValue
never
parents: 8725
diff changeset
   639
   *  currently the java mirror.
a6283814032c 7031614: jmap -permstat fails with java.lang.InternalError in sun.jvm.hotspot.oops.OopField.getValue
never
parents: 8725
diff changeset
   640
   */
a6283814032c 7031614: jmap -permstat fails with java.lang.InternalError in sun.jvm.hotspot.oops.OopField.getValue
never
parents: 8725
diff changeset
   641
  public void iterateStaticFields(OopVisitor visitor) {
a6283814032c 7031614: jmap -permstat fails with java.lang.InternalError in sun.jvm.hotspot.oops.OopField.getValue
never
parents: 8725
diff changeset
   642
    visitor.setObj(getJavaMirror());
a6283814032c 7031614: jmap -permstat fails with java.lang.InternalError in sun.jvm.hotspot.oops.OopField.getValue
never
parents: 8725
diff changeset
   643
    visitor.prologue();
a6283814032c 7031614: jmap -permstat fails with java.lang.InternalError in sun.jvm.hotspot.oops.OopField.getValue
never
parents: 8725
diff changeset
   644
    iterateStaticFieldsInternal(visitor);
a6283814032c 7031614: jmap -permstat fails with java.lang.InternalError in sun.jvm.hotspot.oops.OopField.getValue
never
parents: 8725
diff changeset
   645
    visitor.epilogue();
a6283814032c 7031614: jmap -permstat fails with java.lang.InternalError in sun.jvm.hotspot.oops.OopField.getValue
never
parents: 8725
diff changeset
   646
a6283814032c 7031614: jmap -permstat fails with java.lang.InternalError in sun.jvm.hotspot.oops.OopField.getValue
never
parents: 8725
diff changeset
   647
  }
a6283814032c 7031614: jmap -permstat fails with java.lang.InternalError in sun.jvm.hotspot.oops.OopField.getValue
never
parents: 8725
diff changeset
   648
a6283814032c 7031614: jmap -permstat fails with java.lang.InternalError in sun.jvm.hotspot.oops.OopField.getValue
never
parents: 8725
diff changeset
   649
  void iterateStaticFieldsInternal(OopVisitor visitor) {
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   650
    int length = getJavaFieldsCount();
10552
4c615382f246 7090654: nightly failures after 7086585
never
parents: 10547
diff changeset
   651
    for (int index = 0; index < length; index++) {
4c615382f246 7090654: nightly failures after 7086585
never
parents: 10547
diff changeset
   652
      short accessFlags    = getFieldAccessFlags(index);
4c615382f246 7090654: nightly failures after 7086585
never
parents: 10547
diff changeset
   653
      FieldType   type   = new FieldType(getFieldSignature(index));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
      AccessFlags access = new AccessFlags(accessFlags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
      if (access.isStatic()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
        visitField(visitor, type, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  public Klass getJavaSuper() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
    return getSuper();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
10547
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10546
diff changeset
   665
  public static class StaticField {
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10546
diff changeset
   666
    public AccessFlags flags;
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10546
diff changeset
   667
    public Field field;
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10546
diff changeset
   668
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10546
diff changeset
   669
    StaticField(Field field, AccessFlags flags) {
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10546
diff changeset
   670
      this.field = field;
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10546
diff changeset
   671
      this.flags = flags;
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10546
diff changeset
   672
    }
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10546
diff changeset
   673
  }
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10546
diff changeset
   674
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   675
  public Field[] getStaticFields() {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   676
    U2Array fields = getFields();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   677
    int length = getJavaFieldsCount();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   678
    ArrayList result = new ArrayList();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   679
    for (int index = 0; index < length; index++) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   680
      Field f = newField(index);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   681
      if (f.isStatic()) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   682
        result.add(f);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   683
      }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   684
    }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   685
    return (Field[])result.toArray(new Field[result.size()]);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   686
  }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
   687
8878
a6283814032c 7031614: jmap -permstat fails with java.lang.InternalError in sun.jvm.hotspot.oops.OopField.getValue
never
parents: 8725
diff changeset
   688
  public void iterateNonStaticFields(OopVisitor visitor, Oop obj) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
    if (getSuper() != null) {
8878
a6283814032c 7031614: jmap -permstat fails with java.lang.InternalError in sun.jvm.hotspot.oops.OopField.getValue
never
parents: 8725
diff changeset
   690
      ((InstanceKlass) getSuper()).iterateNonStaticFields(visitor, obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
    }
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   692
    int length = getJavaFieldsCount();
10552
4c615382f246 7090654: nightly failures after 7086585
never
parents: 10547
diff changeset
   693
    for (int index = 0; index < length; index++) {
4c615382f246 7090654: nightly failures after 7086585
never
parents: 10547
diff changeset
   694
      short accessFlags    = getFieldAccessFlags(index);
4c615382f246 7090654: nightly failures after 7086585
never
parents: 10547
diff changeset
   695
      FieldType   type   = new FieldType(getFieldSignature(index));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
      AccessFlags access = new AccessFlags(accessFlags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
      if (!access.isStatic()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
        visitField(visitor, type, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
  /** Field access by name. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
  public Field findLocalField(Symbol name, Symbol sig) {
10567
149651837c4a 7092278: "jmap -finalizerinfo" throws "sun.jvm.hotspot.utilities.AssertionFailure: invalid cp index 0 137"
never
parents: 10552
diff changeset
   705
    int length = getJavaFieldsCount();
10552
4c615382f246 7090654: nightly failures after 7086585
never
parents: 10547
diff changeset
   706
    for (int i = 0; i < length; i++) {
4c615382f246 7090654: nightly failures after 7086585
never
parents: 10547
diff changeset
   707
      Symbol f_name = getFieldName(i);
4c615382f246 7090654: nightly failures after 7086585
never
parents: 10547
diff changeset
   708
      Symbol f_sig  = getFieldSignature(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
      if (name.equals(f_name) && sig.equals(f_sig)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
        return newField(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
    return null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  /** Find field in direct superinterfaces. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  public Field findInterfaceField(Symbol name, Symbol sig) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   719
    KlassArray interfaces = getLocalInterfaces();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   720
    int n = interfaces.length();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
    for (int i = 0; i < n; i++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   722
      InstanceKlass intf1 = (InstanceKlass) interfaces.getAt(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
      if (Assert.ASSERTS_ENABLED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
        Assert.that(intf1.isInterface(), "just checking type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
      // search for field in current interface
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
      Field f = intf1.findLocalField(name, sig);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
      if (f != null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
        if (Assert.ASSERTS_ENABLED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
          Assert.that(f.getAccessFlagsObj().isStatic(), "interface field must be static");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
        return f;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
      // search for field in direct superinterfaces
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
      f = intf1.findInterfaceField(name, sig);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
      if (f != null) return f;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
    // otherwise field lookup fails
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
    return null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
  /** Find field according to JVM spec 5.4.3.2, returns the klass in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
      which the field is defined. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
  public Field findField(Symbol name, Symbol sig) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
    // search order according to newest JVM spec (5.4.3.2, p.167).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
    // 1) search for field in current klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
    Field f = findLocalField(name, sig);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
    if (f != null) return f;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
    // 2) search for field recursively in direct superinterfaces
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
    f = findInterfaceField(name, sig);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
    if (f != null) return f;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
    // 3) apply field lookup recursively if superclass exists
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
    InstanceKlass supr = (InstanceKlass) getSuper();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
    if (supr != null) return supr.findField(name, sig);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
    // 4) otherwise field lookup fails
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
    return null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
  /** Find field according to JVM spec 5.4.3.2, returns the klass in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
      which the field is defined (convenience routine) */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  public Field findField(String name, String sig) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
    SymbolTable symbols = VM.getVM().getSymbolTable();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
    Symbol nameSym = symbols.probe(name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
    Symbol sigSym  = symbols.probe(sig);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
    if (nameSym == null || sigSym == null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
      return null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
    return findField(nameSym, sigSym);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  /** Find field according to JVM spec 5.4.3.2, returns the klass in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
      which the field is defined (retained only for backward
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
      compatibility with jdbx) */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
  public Field findFieldDbg(String name, String sig) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
    return findField(name, sig);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
  /** Get field by its index in the fields array. Only designed for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
      use in a debugging system. */
10552
4c615382f246 7090654: nightly failures after 7086585
never
parents: 10547
diff changeset
   783
  public Field getFieldByIndex(int fieldIndex) {
4c615382f246 7090654: nightly failures after 7086585
never
parents: 10547
diff changeset
   784
    return newField(fieldIndex);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
    /** Return a List of SA Fields for the fields declared in this class.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
        Inherited fields are not included.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
        Return an empty list if there are no fields declared in this class.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
        Only designed for use in a debugging system. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
    public List getImmediateFields() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
        // A list of Fields for each field declared in this class/interface,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
        // not including inherited fields.
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   795
        int length = getJavaFieldsCount();
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 8878
diff changeset
   796
        List immediateFields = new ArrayList(length);
10552
4c615382f246 7090654: nightly failures after 7086585
never
parents: 10547
diff changeset
   797
        for (int index = 0; index < length; index++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
            immediateFields.add(getFieldByIndex(index));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
        return immediateFields;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
    /** Return a List of SA Fields for all the java fields in this class,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
        including all inherited fields.  This includes hidden
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
        fields.  Thus the returned list can contain fields with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
        the same name.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
        Return an empty list if there are no fields.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
        Only designed for use in a debugging system. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
    public List getAllFields() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
        // Contains a Field for each field in this class, including immediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
        // fields and inherited fields.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
        List  allFields = getImmediateFields();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
        // transitiveInterfaces contains all interfaces implemented
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
        // by this class and its superclass chain with no duplicates.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   818
        KlassArray interfaces = getTransitiveInterfaces();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   819
        int n = interfaces.length();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
        for (int i = 0; i < n; i++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   821
            InstanceKlass intf1 = (InstanceKlass) interfaces.getAt(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
            if (Assert.ASSERTS_ENABLED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
                Assert.that(intf1.isInterface(), "just checking type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
            allFields.addAll(intf1.getImmediateFields());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
        // Get all fields in the superclass, recursively.  But, don't
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
        // include fields in interfaces implemented by superclasses;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
        // we already have all those.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
        if (!isInterface()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
            InstanceKlass supr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
            if  ( (supr = (InstanceKlass) getSuper()) != null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
                allFields.addAll(supr.getImmediateFields());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
        return allFields;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
    /** Return a List of SA Methods declared directly in this class/interface.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
        Return an empty list if there are none, or if this isn't a class/
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
        interface.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
    */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
    public List getImmediateMethods() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
      // Contains a Method for each method declared in this class/interface
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
      // not including inherited methods.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   850
      MethodArray methods = getMethods();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   851
      int length = methods.length();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
      Object[] tmp = new Object[length];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   854
      IntArray methodOrdering = getMethodOrdering();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   855
      if (methodOrdering.length() != length) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
         // no ordering info present
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
         for (int index = 0; index < length; index++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   858
            tmp[index] = methods.at(index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
         for (int index = 0; index < length; index++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   862
            int originalIndex = methodOrdering.at(index);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   863
            tmp[originalIndex] = methods.at(index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
      return Arrays.asList(tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
    /** Return a List containing an SA InstanceKlass for each
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
        interface named in this class's 'implements' clause.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
    */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
    public List getDirectImplementedInterfaces() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
        // Contains an InstanceKlass for each interface in this classes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
        // 'implements' clause.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   877
        KlassArray interfaces = getLocalInterfaces();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   878
        int length = interfaces.length();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
        List directImplementedInterfaces = new ArrayList(length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
        for (int index = 0; index < length; index ++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   882
            directImplementedInterfaces.add(interfaces.getAt(index));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
        return directImplementedInterfaces;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
  public Klass arrayKlassImpl(boolean orNull, int n) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
    // FIXME: in reflective system this would need to change to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
    // actually allocate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
    if (getArrayKlasses() == null) { return null; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
    ObjArrayKlass oak = (ObjArrayKlass) getArrayKlasses();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
    if (orNull) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
      return oak.arrayKlassOrNull(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
    return oak.arrayKlass(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
  public Klass arrayKlassImpl(boolean orNull) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
    return arrayKlassImpl(orNull, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
  public String signature() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
     return "L" + super.signature() + ";";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
  /** Convenience routine taking Strings; lookup is done in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
      SymbolTable. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
  public Method findMethod(String name, String sig) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
    SymbolTable syms = VM.getVM().getSymbolTable();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
    Symbol nameSym = syms.probe(name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
    Symbol sigSym  = syms.probe(sig);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
    if (nameSym == null || sigSym == null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
      return null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
    return findMethod(nameSym, sigSym);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
  /** Find method in vtable. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
  public Method findMethod(Symbol name, Symbol sig) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
    return findMethod(getMethods(), name, sig);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   924
  /** Breakpoint support (see methods on Method* for details) */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
  public BreakpointInfo getBreakpoints() {
38059
86ab3f0a9f87 8148195: Some InstanceKlass and MethodCounters fields can be excluded when JVMTI is not supported
cjplummer
parents: 35899
diff changeset
   926
    if (!VM.getVM().isJvmtiSupported()) {
86ab3f0a9f87 8148195: Some InstanceKlass and MethodCounters fields can be excluded when JVMTI is not supported
cjplummer
parents: 35899
diff changeset
   927
      return null;
86ab3f0a9f87 8148195: Some InstanceKlass and MethodCounters fields can be excluded when JVMTI is not supported
cjplummer
parents: 35899
diff changeset
   928
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   929
    Address addr = getAddress().getAddressAt(breakpoints.getOffset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
    return (BreakpointInfo) VMObjectFactory.newObject(BreakpointInfo.class, addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   933
  public IntArray  getMethodOrdering() {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   934
    Address addr = getAddress().getAddressAt(methodOrdering.getOffset());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   935
    return (IntArray) VMObjectFactory.newObject(IntArray.class, addr);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   936
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   937
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   938
  public U2Array getFields() {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   939
    Address addr = getAddress().getAddressAt(fields.getOffset());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   940
    return (U2Array) VMObjectFactory.newObject(U2Array.class, addr);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   941
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   942
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   943
  public U2Array getInnerClasses() {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   944
    Address addr = getAddress().getAddressAt(innerClasses.getOffset());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   945
    return (U2Array) VMObjectFactory.newObject(U2Array.class, addr);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   946
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   947
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
   948
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
  //----------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
  // Internals only below this point
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
  private void visitField(OopVisitor visitor, FieldType type, int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
    Field f = newField(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
    if (type.isOop()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
      visitor.doOop((OopField) f, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
    if (type.isByte()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
      visitor.doByte((ByteField) f, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
    if (type.isChar()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
      visitor.doChar((CharField) f, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
    if (type.isDouble()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
      visitor.doDouble((DoubleField) f, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
    if (type.isFloat()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
      visitor.doFloat((FloatField) f, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
    if (type.isInt()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
      visitor.doInt((IntField) f, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
    if (type.isLong()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
      visitor.doLong((LongField) f, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
    if (type.isShort()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
      visitor.doShort((ShortField) f, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
    if (type.isBoolean()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
      visitor.doBoolean((BooleanField) f, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
  // Creates new field from index in fields TypeArray
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
  private Field newField(int index) {
10552
4c615382f246 7090654: nightly failures after 7086585
never
parents: 10547
diff changeset
   995
    FieldType type = new FieldType(getFieldSignature(index));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
    if (type.isOop()) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   997
     if (VM.getVM().isCompressedOopsEnabled()) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   998
        return new NarrowOopField(this, index);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   999
     } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1000
        return new OopField(this, index);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1001
     }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
    if (type.isByte()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
      return new ByteField(this, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
    if (type.isChar()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
      return new CharField(this, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
    if (type.isDouble()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
      return new DoubleField(this, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
    if (type.isFloat()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
      return new FloatField(this, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
    if (type.isInt()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
      return new IntField(this, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
    if (type.isLong()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
      return new LongField(this, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
    if (type.isShort()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
      return new ShortField(this, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
    if (type.isBoolean()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
      return new BooleanField(this, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
    throw new RuntimeException("Illegal field type at index " + index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
  1030
  private static Method findMethod(MethodArray methods, Symbol name, Symbol signature) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
  1031
    int len = methods.length();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
    // methods are sorted, so do binary search
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
    int l = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
    int h = len - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
    while (l <= h) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
      int mid = (l + h) >> 1;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
  1037
      Method m = methods.at(mid);
42590
48d874bf85fb 8169232: SA: TestCpoolForInvokeDynamic.java fails with sun.jvm.hotspot.debugger.DebuggerException: binary search bug: should have found entry 1
vtewari
parents: 41174
diff changeset
  1038
      long res = m.getName().fastCompare(name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
      if (res == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
        // found matching name; do linear search to find matching signature
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
        // first, quick check for common case
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
        if (m.getSignature().equals(signature)) return m;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
        // search downwards through overloaded methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
        int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
        for (i = mid - 1; i >= l; i--) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
  1046
          Method m1 = methods.at(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
          if (!m1.getName().equals(name)) break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
          if (m1.getSignature().equals(signature)) return m1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
        // search upwards
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
        for (i = mid + 1; i <= h; i++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
  1052
          Method m1 = methods.at(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
          if (!m1.getName().equals(name)) break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
          if (m1.getSignature().equals(signature)) return m1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
        // not found
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
        if (Assert.ASSERTS_ENABLED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
          int index = linearSearch(methods, name, signature);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
          if (index != -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
            throw new DebuggerException("binary search bug: should have found entry " + index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
        return null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
      } else if (res < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
        l = mid + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
        h = mid - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
    if (Assert.ASSERTS_ENABLED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
      int index = linearSearch(methods, name, signature);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
      if (index != -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
        throw new DebuggerException("binary search bug: should have found entry " + index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
    return null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
  1079
  private static int linearSearch(MethodArray methods, Symbol name, Symbol signature) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
  1080
    int len = (int) methods.length();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
    for (int index = 0; index < len; index++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13201
diff changeset
  1082
      Method m = methods.at(index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
      if (m.getSignature().equals(signature) && m.getName().equals(name)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
        return index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
    return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
  }
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1089
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1090
  public void dumpReplayData(PrintStream out) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1091
    ConstantPool cp = getConstants();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1092
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1093
    // Try to record related loaded classes
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1094
    Klass sub = getSubklassKlass();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1095
    while (sub != null) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1096
        if (sub instanceof InstanceKlass) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1097
            out.println("instanceKlass " + sub.getName().asString());
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1098
        }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1099
        sub = sub.getNextSiblingKlass();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1100
    }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1101
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1102
    final int length = (int) cp.getLength();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1103
    out.print("ciInstanceKlass " + getName().asString() + " " + (isLinked() ? 1 : 0) + " " + (isInitialized() ? 1 : 0) + " " + length);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1104
    for (int index = 1; index < length; index++) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1105
      out.print(" " + cp.getTags().at(index));
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1106
    }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1107
    out.println();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1108
    if (isInitialized()) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1109
      Field[] staticFields = getStaticFields();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1110
      for (int i = 0; i < staticFields.length; i++) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1111
        Field f = staticFields[i];
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1112
        Oop mirror = getJavaMirror();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1113
        if (f.isFinal() && !f.hasInitialValue()) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1114
          out.print("staticfield " + getName().asString() + " " +
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1115
                    OopUtilities.escapeString(f.getID().getName()) + " " +
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1116
                    f.getFieldType().getSignature().asString() + " ");
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1117
          if (f instanceof ByteField) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1118
            ByteField bf = (ByteField)f;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1119
            out.println(bf.getValue(mirror));
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1120
          } else if (f instanceof BooleanField) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1121
            BooleanField bf = (BooleanField)f;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1122
            out.println(bf.getValue(mirror) ? 1 : 0);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1123
          } else if (f instanceof ShortField) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1124
            ShortField bf = (ShortField)f;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1125
            out.println(bf.getValue(mirror));
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1126
          } else if (f instanceof CharField) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1127
            CharField bf = (CharField)f;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1128
            out.println(bf.getValue(mirror) & 0xffff);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1129
          } else if (f instanceof IntField) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1130
            IntField bf = (IntField)f;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1131
            out.println(bf.getValue(mirror));
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1132
          } else  if (f instanceof LongField) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1133
            LongField bf = (LongField)f;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1134
            out.println(bf.getValue(mirror));
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1135
          } else if (f instanceof FloatField) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1136
            FloatField bf = (FloatField)f;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1137
            out.println(Float.floatToRawIntBits(bf.getValue(mirror)));
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1138
          } else if (f instanceof DoubleField) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1139
            DoubleField bf = (DoubleField)f;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1140
            out.println(Double.doubleToRawLongBits(bf.getValue(mirror)));
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1141
          } else if (f instanceof OopField) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1142
            OopField bf = (OopField)f;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1143
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1144
            Oop value = bf.getValue(mirror);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1145
            if (value == null) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1146
              out.println("null");
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1147
            } else if (value.isInstance()) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1148
              Instance inst = (Instance)value;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1149
              if (inst.isA(SystemDictionary.getStringKlass())) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1150
                out.println("\"" + OopUtilities.stringOopToEscapedString(inst) + "\"");
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1151
              } else {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1152
                out.println(inst.getKlass().getName().asString());
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1153
              }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1154
            } else if (value.isObjArray()) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1155
              ObjArray oa = (ObjArray)value;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1156
              Klass ek = (ObjArrayKlass)oa.getKlass();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1157
              out.println(oa.getLength() + " " + ek.getName().asString());
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1158
            } else if (value.isTypeArray()) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1159
              TypeArray ta = (TypeArray)value;
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1160
              out.println(ta.getLength());
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1161
            } else {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1162
              out.println(value);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1163
            }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1164
          }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1165
        }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1166
      }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1167
    }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13728
diff changeset
  1168
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
}