hotspot/src/share/vm/ci/ciKlass.hpp
author roland
Wed, 09 Oct 2013 16:32:21 +0200
changeset 20702 bbe0fcde6e13
parent 13952 e3cf184080bc
child 22234 da823d78ad65
permissions -rw-r--r--
8023657: New type profiling points: arguments to call Summary: x86 interpreter and c1 type profiling for arguments at calls Reviewed-by: kvn, twisti
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
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: 5547
diff changeset
    25
#ifndef SHARE_VM_CI_CIKLASS_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_CI_CIKLASS_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "ci/ciType.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// ciKlass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
//
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    32
// This class and its subclasses represent Klass*s in the
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    33
// HotSpot virtual machine.  In the vm, each Klass* contains an
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// embedded Klass object.  ciKlass is subclassed to explicitly
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    35
// represent the kind of Klass embedded in the Klass*.  For
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
    36
// example, a Klass* with an embedded ObjArrayKlass object is
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// represented in the ciObject hierarchy by the class
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// ciObjArrayKlass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
class ciKlass : public ciType {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  CI_PACKAGE_ACCESS
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  friend class ciEnv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  friend class ciField;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  friend class ciMethod;
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 13952
diff changeset
    44
  friend class ciMethodData;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  friend class ciObjArrayKlass;
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
  ciSymbol* _name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  jint _layout_helper;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  ciKlass(KlassHandle k_h, ciSymbol* name);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    53
  ciKlass(ciSymbol* name, BasicType bt);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    55
  Klass* get_Klass() const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    56
    Klass* k = (Klass*)_metadata;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    assert(k != NULL, "illegal use of unloaded klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    return k;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // Certain subklasses have an associated class loader.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  virtual oop loader()             { return NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  virtual jobject loader_handle()  { return NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  virtual oop protection_domain()             { return NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  virtual jobject protection_domain_handle()  { return NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  const char* type_string() { return "ciKlass"; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  void print_impl(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  ciKlass(KlassHandle k_h);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  // What is the name of this klass?
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1
diff changeset
    76
  ciSymbol* name() const { return _name; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // What is its layout helper value?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  jint layout_helper() { return _layout_helper; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  bool is_subtype_of(ciKlass* klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  bool is_subclass_of(ciKlass* klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  juint super_depth();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  juint super_check_offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  ciKlass* super_of_depth(juint i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  bool can_be_primary_super();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  static juint primary_super_limit() { return Klass::primary_super_limit(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    89
  // Is this ciObject the ciInstanceKlass representing java.lang.Object()?
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    90
  virtual bool is_java_lang_Object() const  { return false; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    91
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // Get the shared parent of two klasses.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  ciKlass* least_common_ancestor(ciKlass* k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  virtual bool is_interface() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  virtual bool is_abstract() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // Does this type (array, class, interface) have no subtypes?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  virtual bool is_leaf_type() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // Attempt to get a klass using this ciKlass's loader.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  ciKlass* find_klass(ciSymbol* klass_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  // Note:  To find a class from its name string, use ciSymbol::make,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  // but consider adding to vmSymbols.hpp instead.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // Get the instance of java.lang.Class corresponding to this klass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  ciInstance*            java_mirror();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // Fetch Klass::modifier_flags.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  jint                   modifier_flags();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // Fetch Klass::access_flags.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  jint                   access_flags();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // What kind of ciObject is this?
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   123
  bool is_klass() const { return true; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 13952
diff changeset
   125
  virtual ciKlass* exact_klass() = 0;
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 13952
diff changeset
   126
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  void print_name_on(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   129
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   130
#endif // SHARE_VM_CI_CIKLASS_HPP