hotspot/src/share/vm/oops/arrayKlass.hpp
author bobv
Tue, 03 Aug 2010 08:13:38 -0400
changeset 6176 4d9030fe341f
parent 5547 f4b087cbb361
child 7397 5b173b4ca846
permissions -rw-r--r--
6953477: Increase portability and flexibility of building Hotspot Summary: A collection of portability improvements including shared code support for PPC, ARM platforms, software floating point, cross compilation support and improvements in error crash detail. Reviewed-by: phh, never, coleenp, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4571
diff changeset
     2
 * Copyright (c) 1997, 2007, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4571
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4571
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4571
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// arrayKlass is the abstract baseclass for all array classes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
class arrayKlass: public Klass {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
  int      _dimension;         // This is n'th-dimensional array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  klassOop _higher_dimension;  // Refers the (n+1)'th-dimensional array (if present).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  klassOop _lower_dimension;   // Refers the (n-1)'th-dimensional array (if present).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  int      _vtable_len;        // size of vtable for this klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  juint    _alloc_size;        // allocation profiling support
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  oop      _component_mirror;  // component type, as a java/lang/Class
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  // Testing operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  bool oop_is_array() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  // Instance variables
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  int dimension() const                 { return _dimension;      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  void set_dimension(int dimension)     { _dimension = dimension; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  klassOop higher_dimension() const     { return _higher_dimension; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  void set_higher_dimension(klassOop k) { oop_store_without_check((oop*) &_higher_dimension, (oop) k); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  oop* adr_higher_dimension()           { return (oop*)&this->_higher_dimension;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  klassOop lower_dimension() const      { return _lower_dimension; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  void set_lower_dimension(klassOop k)  { oop_store_without_check((oop*) &_lower_dimension, (oop) k); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  oop* adr_lower_dimension()            { return (oop*)&this->_lower_dimension;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  // Allocation profiling support
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  juint alloc_size() const              { return _alloc_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  void set_alloc_size(juint n)          { _alloc_size = n; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // offset of first element, including any padding for the sake of alignment
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  int  array_header_in_bytes() const    { return layout_helper_header_size(layout_helper()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  int  log2_element_size() const        { return layout_helper_log2_element_size(layout_helper()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  // type of elements (T_OBJECT for both oop arrays and array-arrays)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  BasicType element_type() const        { return layout_helper_element_type(layout_helper()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  oop  component_mirror() const         { return _component_mirror; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  void set_component_mirror(oop m)      { oop_store((oop*) &_component_mirror, m); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  oop* adr_component_mirror()           { return (oop*)&this->_component_mirror;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // Compiler/Interpreter offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  static ByteSize component_mirror_offset() { return byte_offset_of(arrayKlass, _component_mirror); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 1
diff changeset
    70
  virtual klassOop java_super() const;//{ return SystemDictionary::Object_klass(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  // Allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // Sizes points to the first dimension of the array, subsequent dimensions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // are always in higher memory.  The callers of these set that up.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  virtual oop multi_allocate(int rank, jint* sizes, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  objArrayOop allocate_arrayArray(int n, int length, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // Lookup operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  methodOop uncached_lookup_method(symbolOop name, symbolOop signature) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // Casting from klassOop
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  static arrayKlass* cast(klassOop k) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    Klass* kp = k->klass_part();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    assert(kp->null_vtbl() || kp->oop_is_array(), "cast to arrayKlass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    return (arrayKlass*) kp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  objArrayOop compute_secondary_supers(int num_extra_slots, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  bool compute_is_subtype_of(klassOop k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // Sizing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  static int header_size()                 { return oopDesc::header_size() + sizeof(arrayKlass)/HeapWordSize; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  int object_size(int header_size) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  bool object_is_parsable() const          { return _vtable_len > 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  // Java vtable
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  klassVtable* vtable() const;             // return new klassVtable
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  int  vtable_length() const               { return _vtable_len; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  static int base_vtable_length()          { return Universe::base_vtable_size(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  void set_vtable_length(int len)          { assert(len == base_vtable_length(), "bad length"); _vtable_len = len; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  inline intptr_t* start_of_vtable() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  // Iterators
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  void array_klasses_do(void f(klassOop k));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  void with_array_klasses_do(void f(klassOop k));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  // Shared creation method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  static arrayKlassHandle base_create_array_klass(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
                                          const Klass_vtbl& vtbl,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
                                          int header_size, KlassHandle klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
                                          TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  // Return a handle.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  static void     complete_create_array_klass(arrayKlassHandle k, KlassHandle super_klass, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   118
  // jvm support
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   119
  jint compute_modifier_flags(TRAPS) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   121
  // JVMTI support
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   122
  jint jvmti_class_status() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  // Printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  void oop_print_on(oop obj, outputStream* st);
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   126
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  // Verification
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  void oop_verify_on(oop obj, outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
};