hotspot/src/share/vm/ci/ciInstanceKlass.hpp
author jiangli
Thu, 29 Mar 2012 22:18:56 -0400
changeset 12369 48fd3da4025c
parent 7397 5b173b4ca846
child 13728 882756847a04
permissions -rw-r--r--
7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass. Summary: Change implementor to embedded instanceKlass field. Reviewed-by: sspitsyn, minqi, coleenp
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
12369
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 7397
diff changeset
     2
 * Copyright (c) 1999, 2012, 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: 4567
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4567
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: 4567
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5925
diff changeset
    25
#ifndef SHARE_VM_CI_CIINSTANCEKLASS_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5925
diff changeset
    26
#define SHARE_VM_CI_CIINSTANCEKLASS_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5925
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5925
diff changeset
    28
#include "ci/ciConstantPoolCache.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5925
diff changeset
    29
#include "ci/ciFlags.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5925
diff changeset
    30
#include "ci/ciInstanceKlassKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5925
diff changeset
    31
#include "ci/ciKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5925
diff changeset
    32
#include "ci/ciSymbol.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5925
diff changeset
    33
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// ciInstanceKlass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// This class represents a klassOop in the HotSpot virtual machine
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// whose Klass part is an instanceKlass.  It may or may not
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// be loaded.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
class ciInstanceKlass : public ciKlass {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  CI_PACKAGE_ACCESS
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
    41
  friend class ciBytecodeStream;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  friend class ciEnv;
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
    43
  friend class ciExceptionHandler;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  friend class ciMethod;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  friend class ciField;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  jobject                _loader;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  jobject                _protection_domain;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
5925
a30fef61d0b7 6958668: repeated uncommon trapping for new of klass which is being initialized
never
parents: 5547
diff changeset
    51
  instanceKlass::ClassState _init_state;           // state of class
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 217
diff changeset
    52
  bool                   _is_shared;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  bool                   _has_finalizer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  bool                   _has_subklass;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 217
diff changeset
    55
  bool                   _has_nonstatic_fields;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 217
diff changeset
    56
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  ciFlags                _flags;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  jint                   _nonstatic_field_size;
217
c646ef2f5d58 6667620: (Escape Analysis) fix deoptimization for scalar replaced objects
kvn
parents: 1
diff changeset
    59
  jint                   _nonstatic_oop_map_size;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // Lazy fields get filled in only upon request.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  ciInstanceKlass*       _super;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  ciInstance*            _java_mirror;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  ciConstantPoolCache*   _field_cache;  // cached map index->field
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  GrowableArray<ciField*>* _nonstatic_fields;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
12369
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 7397
diff changeset
    68
  // The possible values of the _implementor fall into following three cases:
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 7397
diff changeset
    69
  //   NULL: no implementor.
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 7397
diff changeset
    70
  //   A ciInstanceKlass that's not itself: one implementor.
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 7397
diff changeset
    71
  //   Itsef: more than one implementors.
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 7397
diff changeset
    72
  ciInstanceKlass*       _implementor;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
217
c646ef2f5d58 6667620: (Escape Analysis) fix deoptimization for scalar replaced objects
kvn
parents: 1
diff changeset
    74
  GrowableArray<ciField*>* _non_static_fields;
c646ef2f5d58 6667620: (Escape Analysis) fix deoptimization for scalar replaced objects
kvn
parents: 1
diff changeset
    75
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  ciInstanceKlass(KlassHandle h_k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  ciInstanceKlass(ciSymbol* name, jobject loader, jobject protection_domain);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  instanceKlass* get_instanceKlass() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    return (instanceKlass*)get_Klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  oop loader();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  jobject loader_handle();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  oop protection_domain();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  jobject protection_domain_handle();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  const char* type_string() { return "ciInstanceKlass"; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
    92
  bool is_in_package_impl(const char* packagename, int len);
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
    93
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  void print_impl(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  ciConstantPoolCache* field_cache();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  bool is_shared() { return _is_shared; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
5925
a30fef61d0b7 6958668: repeated uncommon trapping for new of klass which is being initialized
never
parents: 5547
diff changeset
   100
  void compute_shared_init_state();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  bool compute_shared_has_subklass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  int  compute_nonstatic_fields();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  GrowableArray<ciField*>* compute_nonstatic_fields_impl(GrowableArray<ciField*>* super_fields);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
5925
a30fef61d0b7 6958668: repeated uncommon trapping for new of klass which is being initialized
never
parents: 5547
diff changeset
   105
  // Update the init_state for shared klasses
a30fef61d0b7 6958668: repeated uncommon trapping for new of klass which is being initialized
never
parents: 5547
diff changeset
   106
  void update_if_shared(instanceKlass::ClassState expected) {
a30fef61d0b7 6958668: repeated uncommon trapping for new of klass which is being initialized
never
parents: 5547
diff changeset
   107
    if (_is_shared && _init_state != expected) {
a30fef61d0b7 6958668: repeated uncommon trapping for new of klass which is being initialized
never
parents: 5547
diff changeset
   108
      if (is_loaded()) compute_shared_init_state();
a30fef61d0b7 6958668: repeated uncommon trapping for new of klass which is being initialized
never
parents: 5547
diff changeset
   109
    }
a30fef61d0b7 6958668: repeated uncommon trapping for new of klass which is being initialized
never
parents: 5547
diff changeset
   110
  }
a30fef61d0b7 6958668: repeated uncommon trapping for new of klass which is being initialized
never
parents: 5547
diff changeset
   111
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // Has this klass been initialized?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  bool                   is_initialized() {
5925
a30fef61d0b7 6958668: repeated uncommon trapping for new of klass which is being initialized
never
parents: 5547
diff changeset
   115
    update_if_shared(instanceKlass::fully_initialized);
a30fef61d0b7 6958668: repeated uncommon trapping for new of klass which is being initialized
never
parents: 5547
diff changeset
   116
    return _init_state == instanceKlass::fully_initialized;
a30fef61d0b7 6958668: repeated uncommon trapping for new of klass which is being initialized
never
parents: 5547
diff changeset
   117
  }
a30fef61d0b7 6958668: repeated uncommon trapping for new of klass which is being initialized
never
parents: 5547
diff changeset
   118
  // Is this klass being initialized?
a30fef61d0b7 6958668: repeated uncommon trapping for new of klass which is being initialized
never
parents: 5547
diff changeset
   119
  bool                   is_being_initialized() {
a30fef61d0b7 6958668: repeated uncommon trapping for new of klass which is being initialized
never
parents: 5547
diff changeset
   120
    update_if_shared(instanceKlass::being_initialized);
a30fef61d0b7 6958668: repeated uncommon trapping for new of klass which is being initialized
never
parents: 5547
diff changeset
   121
    return _init_state == instanceKlass::being_initialized;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // Has this klass been linked?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  bool                   is_linked() {
5925
a30fef61d0b7 6958668: repeated uncommon trapping for new of klass which is being initialized
never
parents: 5547
diff changeset
   125
    update_if_shared(instanceKlass::linked);
a30fef61d0b7 6958668: repeated uncommon trapping for new of klass which is being initialized
never
parents: 5547
diff changeset
   126
    return _init_state >= instanceKlass::linked;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // General klass information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  ciFlags                flags()          {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    assert(is_loaded(), "must be loaded");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    return _flags;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  bool                   has_finalizer()  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    assert(is_loaded(), "must be loaded");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    return _has_finalizer; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  bool                   has_subklass()   {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    assert(is_loaded(), "must be loaded");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    if (_is_shared && !_has_subklass) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
      if (flags().is_final()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
        return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
        return compute_shared_has_subklass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    return _has_subklass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  jint                   size_helper()  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    return (Klass::layout_helper_size_in_bytes(layout_helper())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
            >> LogHeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  jint                   nonstatic_field_size()  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    assert(is_loaded(), "must be loaded");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    return _nonstatic_field_size; }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 217
diff changeset
   155
  jint                   has_nonstatic_fields()  {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 217
diff changeset
   156
    assert(is_loaded(), "must be loaded");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 217
diff changeset
   157
    return _has_nonstatic_fields; }
217
c646ef2f5d58 6667620: (Escape Analysis) fix deoptimization for scalar replaced objects
kvn
parents: 1
diff changeset
   158
  jint                   nonstatic_oop_map_size()  {
c646ef2f5d58 6667620: (Escape Analysis) fix deoptimization for scalar replaced objects
kvn
parents: 1
diff changeset
   159
    assert(is_loaded(), "must be loaded");
c646ef2f5d58 6667620: (Escape Analysis) fix deoptimization for scalar replaced objects
kvn
parents: 1
diff changeset
   160
    return _nonstatic_oop_map_size; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  ciInstanceKlass*       super();
12369
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 7397
diff changeset
   162
  jint                   nof_implementors() {
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 7397
diff changeset
   163
    ciInstanceKlass* impl;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    assert(is_loaded(), "must be loaded");
12369
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 7397
diff changeset
   165
    impl = implementor();
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 7397
diff changeset
   166
    if (impl == NULL) {
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 7397
diff changeset
   167
      return 0;
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 7397
diff changeset
   168
    } else if (impl != this) {
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 7397
diff changeset
   169
      return 1;
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 7397
diff changeset
   170
    } else {
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 7397
diff changeset
   171
      return 2;
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 7397
diff changeset
   172
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  ciInstanceKlass* get_canonical_holder(int offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  ciField* get_field_by_offset(int field_offset, bool is_static);
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 670
diff changeset
   177
  ciField* get_field_by_name(ciSymbol* name, ciSymbol* signature, bool is_static);
217
c646ef2f5d58 6667620: (Escape Analysis) fix deoptimization for scalar replaced objects
kvn
parents: 1
diff changeset
   178
c646ef2f5d58 6667620: (Escape Analysis) fix deoptimization for scalar replaced objects
kvn
parents: 1
diff changeset
   179
  GrowableArray<ciField*>* non_static_fields();
c646ef2f5d58 6667620: (Escape Analysis) fix deoptimization for scalar replaced objects
kvn
parents: 1
diff changeset
   180
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  // total number of nonstatic fields (including inherited):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  int nof_nonstatic_fields() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    if (_nonstatic_fields == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
      return compute_nonstatic_fields();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
      return _nonstatic_fields->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // nth nonstatic field (presented by ascending address)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  ciField* nonstatic_field_at(int i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    assert(_nonstatic_fields != NULL, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    return _nonstatic_fields->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  ciInstanceKlass* unique_concrete_subklass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  bool has_finalizable_subclass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  bool contains_field_offset(int offset) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 217
diff changeset
   198
    return instanceOopDesc::contains_field_offset(offset, nonstatic_field_size());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  // Get the instance of java.lang.Class corresponding to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  // this klass.  This instance is used for locking of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  // synchronized static methods of this klass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  ciInstance*            java_mirror();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  // Java access flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  bool is_public      () { return flags().is_public(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  bool is_final       () { return flags().is_final(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  bool is_super       () { return flags().is_super(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  bool is_interface   () { return flags().is_interface(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  bool is_abstract    () { return flags().is_abstract(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  ciMethod* find_method(ciSymbol* name, ciSymbol* signature);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  // Note:  To find a method from name and type strings, use ciSymbol::make,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  // but consider adding to vmSymbols.hpp instead.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  bool is_leaf_type();
12369
48fd3da4025c 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 7397
diff changeset
   218
  ciInstanceKlass* implementor();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  // Is the defining class loader of this class the default loader?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  bool uses_default_loader();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  bool is_java_lang_Object();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   225
  // Is this klass in the given package?
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   226
  bool is_in_package(const char* packagename) {
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   227
    return is_in_package(packagename, (int) strlen(packagename));
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   228
  }
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   229
  bool is_in_package(const char* packagename, int len);
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4450
diff changeset
   230
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  // What kind of ciObject is this?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  bool is_instance_klass() { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  bool is_java_klass()     { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5925
diff changeset
   235
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5925
diff changeset
   236
#endif // SHARE_VM_CI_CIINSTANCEKLASS_HPP