hotspot/src/share/vm/runtime/reflectionUtils.hpp
author coleenp
Thu, 27 Jan 2011 16:11:27 -0800
changeset 8076 96d498ec7ae1
parent 7397 5b173b4ca846
child 8921 14bfe81f2a9d
permissions -rw-r--r--
6990754: Use native memory and reference counting to implement SymbolTable Summary: move symbols from permgen into C heap and reference count them Reviewed-by: never, acorn, jmasa, stefank
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
     2
 * Copyright (c) 1999, 2010, 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: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
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: 1
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_RUNTIME_REFLECTIONUTILS_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_RUNTIME_REFLECTIONUTILS_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 "oops/instanceKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "oops/objArrayOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "oops/oopsHierarchy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "runtime/reflection.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "utilities/accessFlags.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "utilities/globalDefinitions.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// A KlassStream is an abstract stream for streaming over self, superclasses
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// and (super)interfaces. Streaming is done in reverse order (subclasses first,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// interfaces last).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
//    for (KlassStream st(k, false, false); !st.eos(); st.next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
//      klassOop k = st.klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
//      ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
//    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
class KlassStream VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  instanceKlassHandle _klass;           // current klass/interface iterated over
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  objArrayHandle      _interfaces;      // transitive interfaces for initial class
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  int                 _interface_index; // current interface being processed
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  bool                _local_only;      // process initial class/interface only
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  bool                _classes_only;    // process classes only (no interfaces)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  int                 _index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  virtual int length() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  // constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  KlassStream(instanceKlassHandle klass, bool local_only, bool classes_only);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // testing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  bool eos();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // iterating
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  virtual void next() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  instanceKlassHandle klass() const { return _klass; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  int index() const                 { return _index; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
// A MethodStream streams over all methods in a class, superclasses and (super)interfaces.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
// Streaming is done in reverse order (subclasses first, methods in reverse order)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
// Usage:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
//    for (MethodStream st(k, false, false); !st.eos(); st.next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
//      methodOop m = st.method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
//      ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
//    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
class MethodStream : public KlassStream {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  int length() const          { return methods()->length(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  objArrayOop methods() const { return _klass->methods(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  MethodStream(instanceKlassHandle klass, bool local_only, bool classes_only)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    : KlassStream(klass, local_only, classes_only) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    _index = length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  void next() { _index--; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  methodOop method() const { return methodOop(methods()->obj_at(index())); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
// A FieldStream streams over all fields in a class, superclasses and (super)interfaces.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
// Streaming is done in reverse order (subclasses first, fields in reverse order)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
// Usage:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
//    for (FieldStream st(k, false, false); !st.eos(); st.next()) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   103
//      Symbol* field_name = st.name();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
//      ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
//    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
class FieldStream : public KlassStream {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  int length() const                { return fields()->length(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  constantPoolOop constants() const { return _klass->constants(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  typeArrayOop fields() const       { return _klass->fields(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  FieldStream(instanceKlassHandle klass, bool local_only, bool classes_only)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    : KlassStream(klass, local_only, classes_only) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    _index = length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  void next() { _index -= instanceKlass::next_offset; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // Accessors for current field
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  AccessFlags access_flags() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    AccessFlags flags;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    flags.set_flags(fields()->ushort_at(index() + instanceKlass::access_flags_offset));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    return flags;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  }
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   129
  Symbol* name() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    int name_index = fields()->ushort_at(index() + instanceKlass::name_index_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    return constants()->symbol_at(name_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  }
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   133
  Symbol* signature() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    int signature_index = fields()->ushort_at(index() +
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
                                       instanceKlass::signature_index_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    return constants()->symbol_at(signature_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  // missing: initval()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  int offset() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    return _klass->offset_from_fields( index() );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
class FilteredField {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  klassOop _klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  int      _field_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  FilteredField(klassOop klass, int field_offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    _klass = klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    _field_offset = field_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  klassOop klass() { return _klass; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  oop* klass_addr() { return (oop*) &_klass; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  int  field_offset() { return _field_offset; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
class FilteredFieldsMap : AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  static GrowableArray<FilteredField *> *_filtered_fields;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  static void initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  static bool is_filtered_field(klassOop klass, int field_offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    for (int i=0; i < _filtered_fields->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
      if (klass == _filtered_fields->at(i)->klass() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
        field_offset == _filtered_fields->at(i)->field_offset()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
        return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  static int  filtered_fields_count(klassOop klass, bool local_only) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    int nflds = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    for (int i=0; i < _filtered_fields->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
      if (local_only && klass == _filtered_fields->at(i)->klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
        nflds++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
      } else if (klass->klass_part()->is_subtype_of(_filtered_fields->at(i)->klass())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
        nflds++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    return nflds;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  // GC support.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  static void klasses_oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    for (int i = 0; i < _filtered_fields->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
      f->do_oop((oop*)_filtered_fields->at(i)->klass_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
// A FilteredFieldStream streams over all fields in a class, superclasses and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
// (super)interfaces. Streaming is done in reverse order (subclasses first,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
// fields in reverse order)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
// Usage:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
//    for (FilteredFieldStream st(k, false, false); !st.eos(); st.next()) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   200
//      Symbol* field_name = st.name();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
//      ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
//    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
class FilteredFieldStream : public FieldStream {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  int  _filtered_fields_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  bool has_filtered_field() { return (_filtered_fields_count > 0); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  FilteredFieldStream(instanceKlassHandle klass, bool local_only, bool classes_only)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    : FieldStream(klass, local_only, classes_only) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    _filtered_fields_count = FilteredFieldsMap::filtered_fields_count((klassOop)klass(), local_only);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  int field_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  void next() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    _index -= instanceKlass::next_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    if (has_filtered_field()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
      while (_index >=0 && FilteredFieldsMap::is_filtered_field((klassOop)_klass(), offset())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
        _index -= instanceKlass::next_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   224
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   225
#endif // SHARE_VM_RUNTIME_REFLECTIONUTILS_HPP