hotspot/src/share/vm/oops/typeArrayKlass.hpp
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 1 489c9b5090e2
child 1668 8ec481b8f514
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 1997-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
// A typeArrayKlass is the klass of a typeArray
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// It contains the type and size of the elements
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
class typeArrayKlass : public arrayKlass {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  jint _max_length;            // maximum number of elements allowed in an array
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  // instance variables
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  jint max_length()                     { return _max_length; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  void set_max_length(jint m)           { _max_length = m;    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  // testers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  bool oop_is_typeArray_slow() const    { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  // klass allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  DEFINE_ALLOCATE_PERMANENT(typeArrayKlass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  static klassOop create_klass(BasicType type, int scale, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  int oop_size(oop obj) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  int klass_oop_size() const  { return object_size(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  bool compute_is_subtype_of(klassOop k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  // Allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  typeArrayOop allocate(int length, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  typeArrayOop allocate_permanent(int length, TRAPS);  // used for class file structures
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  oop multi_allocate(int rank, jint* sizes, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  // Copying
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  void  copy_array(arrayOop s, int src_pos, arrayOop d, int dst_pos, int length, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // Iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  int oop_oop_iterate(oop obj, OopClosure* blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  int oop_oop_iterate_m(oop obj, OopClosure* blk, MemRegion mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // Garbage collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  void oop_follow_contents(oop obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  int  oop_adjust_pointers(oop obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // Parallel Scavenge and Parallel Old
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  PARALLEL_GC_DECLS
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // Find n'th dimensional array
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  virtual klassOop array_klass_impl(bool or_null, int n, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  // Returns the array class with this class as element type
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  virtual klassOop array_klass_impl(bool or_null, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  // Casting from klassOop
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  static typeArrayKlass* cast(klassOop k) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    assert(k->klass_part()->oop_is_typeArray_slow(), "cast to typeArrayKlass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    return (typeArrayKlass*) k->klass_part();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // Naming
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  static const char* external_name(BasicType type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // Sizing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  static int header_size()  { return oopDesc::header_size() + sizeof(typeArrayKlass)/HeapWordSize; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  int object_size() const   { return arrayKlass::object_size(header_size()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // Initialization (virtual from Klass)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  void initialize(TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
   // Helpers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
   static klassOop array_klass_impl(typeArrayKlassHandle h_this, bool or_null, int n, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  // Printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  void oop_print_on(oop obj, outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  const char* internal_name() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
};