hotspot/src/share/vm/utilities/array.hpp
author david
Tue, 29 Sep 2015 11:02:08 +0200
changeset 33105 294e48b4f704
parent 27680 8ecc0871c18e
child 35123 b0b89d83bcf5
permissions -rw-r--r--
8080775: Better argument formatting for assert() and friends Reviewed-by: kbarrett, pliden
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
22750
a3c879b18f22 8033528: assert(0 <= i && i < length()) failed: index out of bounds
coleenp
parents: 20285
diff changeset
     2
 * Copyright (c) 2000, 2014, 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: 1623
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1623
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: 1623
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_UTILITIES_ARRAY_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_UTILITIES_ARRAY_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 "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "memory/allocation.inline.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    30
#include "memory/metaspace.hpp"
24351
61b33cc6d3cf 8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents: 22750
diff changeset
    31
#include "runtime/orderAccess.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// correct linkage required to compile w/o warnings
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// (must be on file level - cannot be local)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
extern "C" { typedef int (*ftype)(const void*, const void*); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
class ResourceArray: public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  int   _length;                                 // the number of array elements
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  void* _data;                                   // the array memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  int   _nesting;                                // the resource area nesting level
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  // creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  ResourceArray() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    _length  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    _data    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    DEBUG_ONLY(init_nesting();)
1551
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
    51
    // client may call initialize, at most once
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  ResourceArray(size_t esize, int length) {
1551
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
    56
    DEBUG_ONLY(_data = NULL);
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
    57
    initialize(esize, length);
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
    58
  }
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
    59
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
    60
  void initialize(size_t esize, int length) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    assert(length >= 0, "illegal length");
22750
a3c879b18f22 8033528: assert(0 <= i && i < length()) failed: index out of bounds
coleenp
parents: 20285
diff changeset
    62
    assert(StressRewriter || _data == NULL, "must be new object");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    _length  = length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    _data    = resource_allocate_bytes(esize * length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    DEBUG_ONLY(init_nesting();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  void init_nesting();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  // helper functions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  void sort     (size_t esize, ftype f);         // sort the array
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  void expand   (size_t esize, int i, int& size);// expand the array to include slot i
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  void remove_at(size_t esize, int i);           // remove the element in slot i
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // standard operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  int  length() const                            { return _length; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  bool is_empty() const                          { return length() == 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7397
diff changeset
    84
template <MEMFLAGS F>class CHeapArray: public CHeapObj<F> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  int   _length;                                 // the number of array elements
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  void* _data;                                   // the array memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  CHeapArray() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    _length  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    _data    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  CHeapArray(size_t esize, int length) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    assert(length >= 0, "illegal length");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    _length  = length;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7397
diff changeset
    99
    _data    = (void*) NEW_C_HEAP_ARRAY(char *, esize * length, F);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   102
  void initialize(size_t esize, int length) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   103
    // In debug set array to 0?
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   104
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   105
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  void init_nesting();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  // helper functions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  void sort     (size_t esize, ftype f);         // sort the array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  void expand   (size_t esize, int i, int& size);// expand the array to include slot i
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  void remove_at(size_t esize, int i);           // remove the element in slot i
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // standard operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  int  length() const                            { return _length; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  bool is_empty() const                          { return length() == 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
#define define_generic_array(array_name,element_type, base_class)                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  class array_name: public base_class {                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
   protected:                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    typedef element_type etype;                                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    enum { esize = sizeof(etype) };                                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
                                                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    void base_remove_at(size_t size, int i) { base_class::remove_at(size, i); }          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
                                                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
   public:                                                                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    /* creation */                                                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    array_name() : base_class()                       {}                                 \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   132
    explicit array_name(const int length) : base_class(esize, length) {}                          \
1551
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
   133
    array_name(const int length, const etype fx)      { initialize(length, fx); }        \
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
   134
    void initialize(const int length)     { base_class::initialize(esize, length); }     \
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
   135
    void initialize(const int length, const etype fx) {                                  \
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
   136
      initialize(length);                                                                \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
      for (int i = 0; i < length; i++) ((etype*)_data)[i] = fx;                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    }                                                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
                                                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    /* standard operations */                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    etype& operator [] (const int i) const {                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
      assert(0 <= i && i < length(), "index out of bounds");                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
      return ((etype*)_data)[i];                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    }                                                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
                                                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    int index_of(const etype x) const {                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
      int i = length();                                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
      while (i-- > 0 && ((etype*)_data)[i] != x) ;                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
      /* i < 0 || ((etype*)_data)_data[i] == x */                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
      return i;                                                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    }                                                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
                                                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    void sort(int f(etype*, etype*))             { base_class::sort(esize, (ftype)f); }  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    bool contains(const etype x) const           { return index_of(x) >= 0; }            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
                                                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    /* deprecated operations - for compatibility with GrowableArray only */              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    etype  at(const int i) const                 { return (*this)[i]; }                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    void   at_put(const int i, const etype x)    { (*this)[i] = x; }                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    etype* adr_at(const int i)                   { return &(*this)[i]; }                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    int    find(const etype x)                   { return index_of(x); }                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  };                                                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
#define define_array(array_name,element_type)                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  define_generic_array(array_name, element_type, ResourceArray)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
#define define_stack(stack_name,array_name)                                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  class stack_name: public array_name {                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
   protected:                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    int _size;                                                                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
                                                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    void grow(const int i, const etype fx) {                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
      assert(i >= length(), "index too small");                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
      if (i >= size()) expand(esize, i, _size);                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
      for (int j = length(); j <= i; j++) ((etype*)_data)[j] = fx;                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
      _length = i+1;                                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    }                                                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
                                                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
   public:                                                                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    /* creation */                                                                       \
1551
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
   182
    stack_name() : array_name()                     { _size = 0; }                       \
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
   183
    stack_name(const int size)                      { initialize(size); }                \
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
   184
    stack_name(const int size, const etype fx)      { initialize(size, fx); }            \
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
   185
    void initialize(const int size, const etype fx) {                                    \
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
   186
      _size = size;                                                                      \
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
   187
      array_name::initialize(size, fx);                                                  \
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
   188
      /* _length == size, allocation and size are the same */                            \
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
   189
    }                                                                                    \
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
   190
    void initialize(const int size) {                                                    \
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
   191
      _size = size;                                                                      \
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
   192
      array_name::initialize(size);                                                      \
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
   193
      _length = 0;          /* reset length to zero; _size records the allocation */     \
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
   194
    }                                                                                    \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
                                                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    /* standard operations */                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    int size() const                             { return _size; }                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
                                                                                         \
1551
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
   199
    int push(const etype x) {                                                            \
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
   200
      int len = length();                                                                \
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
   201
      if (len >= size()) expand(esize, len, _size);                                      \
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
   202
      ((etype*)_data)[len] = x;                                                          \
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
   203
      _length = len+1;                                                                   \
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
   204
      return len;                                                                        \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    }                                                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
                                                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    etype pop() {                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
      assert(!is_empty(), "stack is empty");                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
      return ((etype*)_data)[--_length];                                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
    }                                                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
                                                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    etype top() const {                                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
      assert(!is_empty(), "stack is empty");                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
      return ((etype*)_data)[length() - 1];                                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    }                                                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
                                                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    void push_all(const stack_name* stack) {                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
      const int l = stack->length();                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
      for (int i = 0; i < l; i++) push(((etype*)(stack->_data))[i]);                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
    }                                                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
                                                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    etype at_grow(const int i, const etype fx) {                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
      if (i >= length()) grow(i, fx);                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
      return ((etype*)_data)[i];                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    }                                                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
                                                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    void at_put_grow(const int i, const etype x, const etype fx) {                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
      if (i >= length()) grow(i, fx);                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
      ((etype*)_data)[i] = x;                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    }                                                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
                                                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    void truncate(const int length) {                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
      assert(0 <= length && length <= this->length(), "illegal length");                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
      _length = length;                                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    }                                                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
                                                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    void remove_at(int i)                        { base_remove_at(esize, i); }           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    void remove(etype x)                         { remove_at(index_of(x)); }             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
                                                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    /* inserts the given element before the element at index i */                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    void insert_before(const int i, const etype el)  {                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
      int len = length();                                                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
      int new_length = len + 1;                                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
      if (new_length >= size()) expand(esize, new_length, _size);                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
      for (int j = len - 1; j >= i; j--) {                                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
        ((etype*)_data)[j + 1] = ((etype*)_data)[j];                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
      }                                                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
      _length = new_length;                                                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
      at_put(i, el);                                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    }                                                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
                                                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    /* inserts contents of the given stack before the element at index i */              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
    void insert_before(const int i, const stack_name *st) {                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
      if (st->length() == 0) return;                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
      int len = length();                                                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
      int st_len = st->length();                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
      int new_length = len + st_len;                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
      if (new_length >= size()) expand(esize, new_length, _size);                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
      int j;                                                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
      for (j = len - 1; j >= i; j--) {                                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
        ((etype*)_data)[j + st_len] = ((etype*)_data)[j];                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
      }                                                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
      for (j = 0; j < st_len; j++) {                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
        ((etype*)_data)[i + j] = ((etype*)st->_data)[j];                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
      }                                                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
      _length = new_length;                                                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
    }                                                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
                                                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
    /* deprecated operations - for compatibility with GrowableArray only */              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
    int  capacity() const                        { return size(); }                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
    void clear()                                 { truncate(0); }                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
    void trunc_to(const int length)              { truncate(length); }                   \
1551
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
   273
    int  append(const etype x)                   { return push(x); }                     \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
    void appendAll(const stack_name* stack)      { push_all(stack); }                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
    etype last() const                           { return top(); }                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  };                                                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
#define define_resource_list(element_type)                                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  define_generic_array(element_type##Array, element_type, ResourceArray)                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  define_stack(element_type##List, element_type##Array)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
#define define_resource_pointer_list(element_type)                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  define_generic_array(element_type##Array, element_type *, ResourceArray)               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  define_stack(element_type##List, element_type##Array)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
#define define_c_heap_list(element_type)                                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  define_generic_array(element_type##Array, element_type, CHeapArray)                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  define_stack(element_type##List, element_type##Array)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
#define define_c_heap_pointer_list(element_type)                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  define_generic_array(element_type##Array, element_type *, CHeapArray)                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  define_stack(element_type##List, element_type##Array)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
// Arrays for basic types
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
define_array(boolArray, bool)          define_stack(boolStack, boolArray)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
define_array(intArray , int )          define_stack(intStack , intArray )
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   300
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   301
// Array for metadata allocation
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   302
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   303
template <typename T>
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   304
class Array: public MetaspaceObj {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   305
  friend class MetadataFactory;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   306
  friend class VMStructs;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   307
  friend class MethodHandleCompiler;           // special case
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   308
  friend class WhiteBox;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   309
protected:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   310
  int _length;                                 // the number of array elements
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   311
  T   _data[1];                                // the array memory
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   312
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   313
  void initialize(int length) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   314
    _length = length;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   315
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   316
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   317
 private:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   318
  // Turn off copy constructor and assignment operator.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   319
  Array(const Array<T>&);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   320
  void operator=(const Array<T>&);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   321
19696
bd5a0131bde1 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 17858
diff changeset
   322
  void* operator new(size_t size, ClassLoaderData* loader_data, int length, bool read_only, TRAPS) throw() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   323
    size_t word_size = Array::size(length);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   324
    return (void*) Metaspace::allocate(loader_data, word_size, read_only,
27680
8ecc0871c18e 8064811: Use THREAD instead of CHECK_NULL in return statements
stefank
parents: 25500
diff changeset
   325
                                       MetaspaceObj::array_type(sizeof(T)), THREAD);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   326
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   327
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   328
  static size_t byte_sizeof(int length) { return sizeof(Array<T>) + MAX2(length - 1, 0) * sizeof(T); }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   329
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   330
  // WhiteBox API helper.
25500
4d2e06147d1e 8049426: Minor cleanups after G1 class unloading
ehelin
parents: 25492
diff changeset
   331
  // Can't distinguish between array of length 0 and length 1,
4d2e06147d1e 8049426: Minor cleanups after G1 class unloading
ehelin
parents: 25492
diff changeset
   332
  // will always return 0 in those cases.
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   333
  static int bytes_to_length(size_t bytes)       {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   334
    assert(is_size_aligned(bytes, BytesPerWord), "Must be, for now");
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   335
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   336
    if (sizeof(Array<T>) >= bytes) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   337
      return 0;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   338
    }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   339
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   340
    size_t left = bytes - sizeof(Array<T>);
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   341
    assert(is_size_aligned(left, sizeof(T)), "Must be");
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   342
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   343
    size_t elements = left / sizeof(T);
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 27680
diff changeset
   344
    assert(elements <= (size_t)INT_MAX, "number of elements " SIZE_FORMAT "doesn't fit into an int.", elements);
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   345
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   346
    int length = (int)elements;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   347
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   348
    assert((size_t)size(length) * BytesPerWord == bytes,
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 27680
diff changeset
   349
           "Expected: " SIZE_FORMAT " got: " SIZE_FORMAT,
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 27680
diff changeset
   350
           bytes, (size_t)size(length) * BytesPerWord);
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   351
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   352
    return length;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   353
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   354
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   355
  explicit Array(int length) : _length(length) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   356
    assert(length >= 0, "illegal length");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   357
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   358
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   359
  Array(int length, T init) : _length(length) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   360
    assert(length >= 0, "illegal length");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   361
    for (int i = 0; i < length; i++) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   362
      _data[i] = init;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   363
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   364
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   365
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   366
 public:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   367
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   368
  // standard operations
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   369
  int  length() const                 { return _length; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   370
  T* data()                           { return _data; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   371
  bool is_empty() const               { return length() == 0; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   372
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   373
  int index_of(const T& x) const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   374
    int i = length();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   375
    while (i-- > 0 && _data[i] != x) ;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   376
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   377
    return i;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   378
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   379
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   380
  // sort the array.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   381
  bool contains(const T& x) const      { return index_of(x) >= 0; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   382
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 27680
diff changeset
   383
  T    at(int i) const                 { assert(i >= 0 && i< _length, "oob: 0 <= %d < %d", i, _length); return _data[i]; }
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 27680
diff changeset
   384
  void at_put(const int i, const T& x) { assert(i >= 0 && i< _length, "oob: 0 <= %d < %d", i, _length); _data[i] = x; }
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 27680
diff changeset
   385
  T*   adr_at(const int i)             { assert(i >= 0 && i< _length, "oob: 0 <= %d < %d", i, _length); return &_data[i]; }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   386
  int  find(const T& x)                { return index_of(x); }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   387
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   388
  T at_acquire(const int which)              { return OrderAccess::load_acquire(adr_at(which)); }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   389
  void release_at_put(int which, T contents) { OrderAccess::release_store(adr_at(which), contents); }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   390
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   391
  static int size(int length) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   392
    return align_size_up(byte_sizeof(length), BytesPerWord) / BytesPerWord;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   393
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   394
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   395
  int size() {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   396
    return size(_length);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   397
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   398
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   399
  static int length_offset_in_bytes() { return (int) (offset_of(Array<T>, _length)); }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   400
  // Note, this offset don't have to be wordSize aligned.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   401
  static int base_offset_in_bytes() { return (int) (offset_of(Array<T>, _data)); };
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   402
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   403
  // FIXME: How to handle this?
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   404
  void print_value_on(outputStream* st) const {
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24351
diff changeset
   405
    st->print("Array<T>(" INTPTR_FORMAT ")", p2i(this));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   406
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   407
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   408
#ifndef PRODUCT
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   409
  void print(outputStream* st) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   410
     for (int i = 0; i< _length; i++) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   411
       st->print_cr("%d: " INTPTR_FORMAT, i, (intptr_t)at(i));
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   412
     }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   413
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   414
  void print() { print(tty); }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   415
#endif // PRODUCT
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   416
};
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   417
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   418
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   419
#endif // SHARE_VM_UTILITIES_ARRAY_HPP