hotspot/src/share/vm/ci/ciKlass.hpp
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 1 489c9b5090e2
child 4567 7fc02fbe5c7a
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1999-2007 Sun Microsystems, Inc.  All Rights Reserved.
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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
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
// ciKlass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// This class and its subclasses represent klassOops in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// HotSpot virtual machine.  In the vm, each klassOop contains an
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// embedded Klass object.  ciKlass is subclassed to explicitly
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// represent the kind of Klass embedded in the klassOop.  For
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// example, a klassOop with an embedded objArrayKlass object is
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// represented in the ciObject hierarchy by the class
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// ciObjArrayKlass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
class ciKlass : public ciType {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  CI_PACKAGE_ACCESS
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  friend class ciEnv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  friend class ciField;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  friend class ciMethod;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  friend class ciObjArrayKlass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  ciSymbol* _name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  jint _layout_helper;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  ciKlass(KlassHandle k_h, ciSymbol* name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  ciKlass(ciSymbol* name, ciKlass* klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  klassOop get_klassOop() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    klassOop k = (klassOop)get_oop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    assert(k != NULL, "illegal use of unloaded klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    return k;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  Klass*   get_Klass() const { return get_klassOop()->klass_part(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // Certain subklasses have an associated class loader.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  virtual oop loader()             { return NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  virtual jobject loader_handle()  { return NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  virtual oop protection_domain()             { return NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  virtual jobject protection_domain_handle()  { return NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  const char* type_string() { return "ciKlass"; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  void print_impl(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  ciKlass(KlassHandle k_h);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // What is the name of this klass?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  ciSymbol* name() { return _name; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // What is its layout helper value?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  jint layout_helper() { return _layout_helper; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  bool is_subtype_of(ciKlass* klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  bool is_subclass_of(ciKlass* klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  juint super_depth();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  juint super_check_offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  ciKlass* super_of_depth(juint i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  bool can_be_primary_super();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  static juint primary_super_limit() { return Klass::primary_super_limit(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // Get the shared parent of two klasses.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  ciKlass* least_common_ancestor(ciKlass* k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  virtual bool is_interface() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  virtual bool is_abstract() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // Does this type (array, class, interface) have no subtypes?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  virtual bool is_leaf_type() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  // Attempt to get a klass using this ciKlass's loader.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  ciKlass* find_klass(ciSymbol* klass_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // Note:  To find a class from its name string, use ciSymbol::make,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  // but consider adding to vmSymbols.hpp instead.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  // Get the instance of java.lang.Class corresponding to this klass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  ciInstance*            java_mirror();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  // Fetch Klass::modifier_flags.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  jint                   modifier_flags();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // Fetch Klass::access_flags.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  jint                   access_flags();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  // What kind of ciObject is this?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  bool is_klass() { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  void print_name_on(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
};