hotspot/src/share/vm/oops/constMethod.cpp
author coleenp
Mon, 24 Jun 2013 18:55:46 -0400
changeset 18439 725ce18186b3
parent 17858 c292f8791cca
child 24424 2658d7834c6e
permissions -rw-r--r--
8016325: JVM hangs verifying system dictionary Summary: Minimize redundant verifications of Klasses. Reviewed-by: hseigel, jmasa
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15102
diff changeset
     2
 * Copyright (c) 2003, 2013, 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
#include "precompiled.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    26
#include "interpreter/interpreter.hpp"
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    27
#include "memory/gcLocker.hpp"
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15102
diff changeset
    28
#include "memory/heapInspection.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    29
#include "memory/metadataFactory.hpp"
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    30
#include "oops/constMethod.hpp"
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    31
#include "oops/method.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// Static initialization
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    34
const u2 ConstMethod::MAX_IDNUM   = 0xFFFE;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    35
const u2 ConstMethod::UNSET_IDNUM = 0xFFFF;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    36
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    37
ConstMethod* ConstMethod::allocate(ClassLoaderData* loader_data,
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
    38
                                   int byte_code_size,
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    39
                                   InlineTableSizes* sizes,
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
    40
                                   MethodType method_type,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
    41
                                   TRAPS) {
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    42
  int size = ConstMethod::size(byte_code_size, sizes);
17858
c292f8791cca 8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents: 16588
diff changeset
    43
  return new (loader_data, size, true, MetaspaceObj::ConstMethodType, THREAD) ConstMethod(
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    44
      byte_code_size, sizes, method_type, size);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    45
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    46
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    47
ConstMethod::ConstMethod(int byte_code_size,
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    48
                         InlineTableSizes* sizes,
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
    49
                         MethodType method_type,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
    50
                         int size) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    51
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    52
  No_Safepoint_Verifier no_safepoint;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    53
  init_fingerprint();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    54
  set_constants(NULL);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    55
  set_stackmap_data(NULL);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    56
  set_code_size(byte_code_size);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    57
  set_constMethod_size(size);
15931
c4fc378a132b 8009836: nsk/regression/b4222717 fails with empty stack trace
coleenp
parents: 15928
diff changeset
    58
  set_inlined_tables_length(sizes); // sets _flags
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
    59
  set_method_type(method_type);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    60
  assert(this->size() == size, "wrong size for object");
15928
f9d5c6e4107f 8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents: 15601
diff changeset
    61
  set_name_index(0);
f9d5c6e4107f 8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents: 15601
diff changeset
    62
  set_signature_index(0);
f9d5c6e4107f 8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents: 15601
diff changeset
    63
  set_constants(NULL);
f9d5c6e4107f 8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents: 15601
diff changeset
    64
  set_max_stack(0);
f9d5c6e4107f 8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents: 15601
diff changeset
    65
  set_max_locals(0);
f9d5c6e4107f 8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents: 15601
diff changeset
    66
  set_method_idnum(0);
15931
c4fc378a132b 8009836: nsk/regression/b4222717 fails with empty stack trace
coleenp
parents: 15928
diff changeset
    67
  set_size_of_parameters(0);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    68
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    69
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15931
diff changeset
    70
// Accessor that copies to metadata.
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15931
diff changeset
    71
void ConstMethod::copy_stackmap_data(ClassLoaderData* loader_data,
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15931
diff changeset
    72
                                     u1* sd, int length, TRAPS) {
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15931
diff changeset
    73
  _stackmap_data = MetadataFactory::new_array<u1>(loader_data, length, CHECK);
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15931
diff changeset
    74
  memcpy((void*)_stackmap_data->adr_at(0), (void*)sd, length);
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15931
diff changeset
    75
}
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    76
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    77
// Deallocate metadata fields associated with ConstMethod*
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    78
void ConstMethod::deallocate_contents(ClassLoaderData* loader_data) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    79
  if (stackmap_data() != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    80
    MetadataFactory::free_array<u1>(loader_data, stackmap_data());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    81
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    82
  set_stackmap_data(NULL);
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    83
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    84
  // deallocate annotation arrays
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    85
  if (has_method_annotations())
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    86
    MetadataFactory::free_array<u1>(loader_data, method_annotations());
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    87
  if (has_parameter_annotations())
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    88
    MetadataFactory::free_array<u1>(loader_data, parameter_annotations());
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    89
  if (has_type_annotations())
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    90
    MetadataFactory::free_array<u1>(loader_data, type_annotations());
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    91
  if (has_default_annotations())
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    92
    MetadataFactory::free_array<u1>(loader_data, default_annotations());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    93
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
// How big must this constMethodObject be?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    97
int ConstMethod::size(int code_size,
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    98
                      InlineTableSizes* sizes) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  int extra_bytes = code_size;
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   100
  if (sizes->compressed_linenumber_size() > 0) {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   101
    extra_bytes += sizes->compressed_linenumber_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  }
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   103
  if (sizes->checked_exceptions_length() > 0) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    extra_bytes += sizeof(u2);
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   105
    extra_bytes += sizes->checked_exceptions_length() * sizeof(CheckedExceptionElement);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  }
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   107
  if (sizes->localvariable_table_length() > 0) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    extra_bytes += sizeof(u2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    extra_bytes +=
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   110
              sizes->localvariable_table_length() * sizeof(LocalVariableTableElement);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  }
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   112
  if (sizes->exception_table_length() > 0) {
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   113
    extra_bytes += sizeof(u2);
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   114
    extra_bytes += sizes->exception_table_length() * sizeof(ExceptionTableElement);
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   115
  }
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   116
  if (sizes->generic_signature_index() != 0) {
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14391
diff changeset
   117
    extra_bytes += sizeof(u2);
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14391
diff changeset
   118
  }
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   119
  if (sizes->method_parameters_length() > 0) {
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   120
    extra_bytes += sizeof(u2);
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   121
    extra_bytes += sizes->method_parameters_length() * sizeof(MethodParametersElement);
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   122
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   123
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   124
  // Align sizes up to a word.
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   125
  extra_bytes = align_size_up(extra_bytes, BytesPerWord);
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   126
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   127
  // One pointer per annotation array
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   128
  if (sizes->method_annotations_length() > 0) {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   129
    extra_bytes += sizeof(AnnotationArray*);
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   130
  }
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   131
  if (sizes->parameter_annotations_length() > 0) {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   132
    extra_bytes += sizeof(AnnotationArray*);
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   133
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   134
  if (sizes->type_annotations_length() > 0) {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   135
    extra_bytes += sizeof(AnnotationArray*);
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   136
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   137
  if (sizes->default_annotations_length() > 0) {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   138
    extra_bytes += sizeof(AnnotationArray*);
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   139
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   140
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  int extra_words = align_size_up(extra_bytes, BytesPerWord) / BytesPerWord;
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   142
  assert(extra_words == extra_bytes/BytesPerWord, "should already be aligned");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  return align_object_size(header_size() + extra_words);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   146
Method* ConstMethod::method() const {
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 14385
diff changeset
   147
    return _constants->pool_holder()->method_with_idnum(_method_idnum);
12937
0032fb2caff6 7172967: Eliminate constMethod's _method backpointer to methodOop.
jiangli
parents: 7397
diff changeset
   148
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
// linenumber table - note that length is unknown until decompression,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
// see class CompressedLineNumberReadStream.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   153
u_char* ConstMethod::compressed_linenumber_table() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  // Located immediately following the bytecodes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  assert(has_linenumber_table(), "called only if table is present");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  return code_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   159
// Last short in ConstMethod* before annotations
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   160
u2* ConstMethod::last_u2_element() const {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   161
  int offset = 0;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   162
  if (has_method_annotations()) offset++;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   163
  if (has_parameter_annotations()) offset++;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   164
  if (has_type_annotations()) offset++;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   165
  if (has_default_annotations()) offset++;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   166
  return (u2*)((AnnotationArray**)constMethod_end() - offset) - 1;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   167
}
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   168
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14391
diff changeset
   169
u2* ConstMethod::generic_signature_index_addr() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  // Located at the end of the constMethod.
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14391
diff changeset
   171
  assert(has_generic_signature(), "called only if generic signature exists");
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14391
diff changeset
   172
  return last_u2_element();
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14391
diff changeset
   173
}
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14391
diff changeset
   174
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   175
u2* ConstMethod::method_parameters_length_addr() const {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   176
  assert(has_method_parameters(), "called only if table is present");
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   177
  return has_generic_signature() ? (last_u2_element() - 1) :
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   178
                                    last_u2_element();
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   179
}
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   180
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14391
diff changeset
   181
u2* ConstMethod::checked_exceptions_length_addr() const {
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14391
diff changeset
   182
  // Located immediately before the generic signature index.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  assert(has_checked_exceptions(), "called only if table is present");
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   184
  if(has_method_parameters()) {
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   185
    // If method parameters present, locate immediately before them.
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   186
    return (u2*)method_parameters_start() - 1;
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   187
  } else {
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   188
    // Else, the exception table is at the end of the constMethod.
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   189
    return has_generic_signature() ? (last_u2_element() - 1) :
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   190
                                     last_u2_element();
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   191
  }
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   192
}
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   193
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   194
u2* ConstMethod::exception_table_length_addr() const {
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   195
  assert(has_exception_handler(), "called only if table is present");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  if (has_checked_exceptions()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    // If checked_exception present, locate immediately before them.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    return (u2*) checked_exceptions_start() - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  } else {
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   200
    if(has_method_parameters()) {
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   201
      // If method parameters present, locate immediately before them.
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   202
      return (u2*)method_parameters_start() - 1;
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   203
    } else {
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   204
      // Else, the exception table is at the end of the constMethod.
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   205
      return has_generic_signature() ? (last_u2_element() - 1) :
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   206
                                        last_u2_element();
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   207
    }
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   208
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   211
u2* ConstMethod::localvariable_table_length_addr() const {
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   212
  assert(has_localvariable_table(), "called only if table is present");
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   213
  if (has_exception_handler()) {
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   214
    // If exception_table present, locate immediately before them.
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   215
    return (u2*) exception_table_start() - 1;
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   216
  } else {
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   217
    if (has_checked_exceptions()) {
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   218
      // If checked_exception present, locate immediately before them.
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   219
      return (u2*) checked_exceptions_start() - 1;
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   220
    } else {
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   221
      if(has_method_parameters()) {
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   222
        // If method parameters present, locate immediately before them.
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   223
        return (u2*)method_parameters_start() - 1;
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   224
      } else {
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   225
        // Else, the exception table is at the end of the constMethod.
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14391
diff changeset
   226
      return has_generic_signature() ? (last_u2_element() - 1) :
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14391
diff changeset
   227
                                        last_u2_element();
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   228
      }
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   229
    }
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   230
  }
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   231
}
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   232
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
// Update the flags to indicate the presence of these optional fields.
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   234
void ConstMethod::set_inlined_tables_length(InlineTableSizes* sizes) {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   235
  _flags = 0;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   236
  if (sizes->compressed_linenumber_size() > 0)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    _flags |= _has_linenumber_table;
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   238
  if (sizes->generic_signature_index() != 0)
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14391
diff changeset
   239
    _flags |= _has_generic_signature;
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   240
  if (sizes->method_parameters_length() > 0)
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   241
    _flags |= _has_method_parameters;
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   242
  if (sizes->checked_exceptions_length() > 0)
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   243
    _flags |= _has_checked_exceptions;
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   244
  if (sizes->exception_table_length() > 0)
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   245
    _flags |= _has_exception_table;
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   246
  if (sizes->localvariable_table_length() > 0)
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   247
    _flags |= _has_localvariable_table;
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   248
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   249
  // annotations, they are all pointer sized embedded objects so don't have
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   250
  // a length embedded also.
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   251
  if (sizes->method_annotations_length() > 0)
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   252
    _flags |= _has_method_annotations;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   253
  if (sizes->parameter_annotations_length() > 0)
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   254
    _flags |= _has_parameter_annotations;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   255
  if (sizes->type_annotations_length() > 0)
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   256
    _flags |= _has_type_annotations;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   257
  if (sizes->default_annotations_length() > 0)
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   258
    _flags |= _has_default_annotations;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   259
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   260
  // This code is extremely brittle and should possibly be revised.
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   261
  // The *_length_addr functions walk backwards through the
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   262
  // constMethod data, using each of the length indexes ahead of them,
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   263
  // as well as the flags variable.  Therefore, the indexes must be
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   264
  // initialized in reverse order, or else they will compute the wrong
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   265
  // offsets.  Moving the initialization of _flags into a separate
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   266
  // block solves *half* of the problem, but the following part will
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   267
  // still break if the order is not exactly right.
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   268
  //
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   269
  // Also, the servicability agent needs to be informed anytime
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   270
  // anything is added here.  It might be advisable to have some sort
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   271
  // of indication of this inline.
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   272
  if (sizes->generic_signature_index() != 0)
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   273
    *(generic_signature_index_addr()) = sizes->generic_signature_index();
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   274
  // New data should probably go here.
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   275
  if (sizes->method_parameters_length() > 0)
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   276
    *(method_parameters_length_addr()) = sizes->method_parameters_length();
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   277
  if (sizes->checked_exceptions_length() > 0)
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   278
    *(checked_exceptions_length_addr()) = sizes->checked_exceptions_length();
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   279
  if (sizes->exception_table_length() > 0)
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   280
    *(exception_table_length_addr()) = sizes->exception_table_length();
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   281
  if (sizes->localvariable_table_length() > 0)
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   282
    *(localvariable_table_length_addr()) = sizes->localvariable_table_length();
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   283
}
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   284
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   285
int ConstMethod::method_parameters_length() const {
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   286
  return has_method_parameters() ? *(method_parameters_length_addr()) : 0;
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   287
}
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   288
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   289
MethodParametersElement* ConstMethod::method_parameters_start() const {
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   290
  u2* addr = method_parameters_length_addr();
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   291
  u2 length = *addr;
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   292
  assert(length > 0, "should only be called if table is present");
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   293
  addr -= length * sizeof(MethodParametersElement) / sizeof(u2);
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   294
  return (MethodParametersElement*) addr;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   298
int ConstMethod::checked_exceptions_length() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  return has_checked_exceptions() ? *(checked_exceptions_length_addr()) : 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   303
CheckedExceptionElement* ConstMethod::checked_exceptions_start() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  u2* addr = checked_exceptions_length_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  u2 length = *addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  assert(length > 0, "should only be called if table is present");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  addr -= length * sizeof(CheckedExceptionElement) / sizeof(u2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  return (CheckedExceptionElement*) addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   312
int ConstMethod::localvariable_table_length() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  return has_localvariable_table() ? *(localvariable_table_length_addr()) : 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   317
LocalVariableTableElement* ConstMethod::localvariable_table_start() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  u2* addr = localvariable_table_length_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  u2 length = *addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  assert(length > 0, "should only be called if table is present");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  addr -= length * sizeof(LocalVariableTableElement) / sizeof(u2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  return (LocalVariableTableElement*) addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
}
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   324
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   325
int ConstMethod::exception_table_length() const {
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   326
  return has_exception_handler() ? *(exception_table_length_addr()) : 0;
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   327
}
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   328
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   329
ExceptionTableElement* ConstMethod::exception_table_start() const {
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   330
  u2* addr = exception_table_length_addr();
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   331
  u2 length = *addr;
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   332
  assert(length > 0, "should only be called if table is present");
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   333
  addr -= length * sizeof(ExceptionTableElement) / sizeof(u2);
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   334
  return (ExceptionTableElement*)addr;
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   335
}
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   336
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   337
AnnotationArray** ConstMethod::method_annotations_addr() const {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   338
  assert(has_method_annotations(), "should only be called if method annotations are present");
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   339
  return (AnnotationArray**)constMethod_end() - 1;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   340
}
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   341
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   342
AnnotationArray** ConstMethod::parameter_annotations_addr() const {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   343
  assert(has_parameter_annotations(), "should only be called if method parameter annotations are present");
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   344
  int offset = 1;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   345
  if (has_method_annotations()) offset++;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   346
  return (AnnotationArray**)constMethod_end() - offset;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   347
}
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   348
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   349
AnnotationArray** ConstMethod::type_annotations_addr() const {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   350
  assert(has_type_annotations(), "should only be called if method type annotations are present");
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   351
  int offset = 1;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   352
  if (has_method_annotations()) offset++;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   353
  if (has_parameter_annotations()) offset++;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   354
  return (AnnotationArray**)constMethod_end() - offset;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   355
}
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   356
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   357
AnnotationArray** ConstMethod::default_annotations_addr() const {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   358
  assert(has_default_annotations(), "should only be called if method default annotations are present");
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   359
  int offset = 1;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   360
  if (has_method_annotations()) offset++;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   361
  if (has_parameter_annotations()) offset++;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   362
  if (has_type_annotations()) offset++;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   363
  return (AnnotationArray**)constMethod_end() - offset;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   364
}
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   365
16588
7e90e795813e 8009531: Crash when redefining class with annotated method
coleenp
parents: 15935
diff changeset
   366
// copy annotations from 'cm' to 'this'
7e90e795813e 8009531: Crash when redefining class with annotated method
coleenp
parents: 15935
diff changeset
   367
void ConstMethod::copy_annotations_from(ConstMethod* cm) {
7e90e795813e 8009531: Crash when redefining class with annotated method
coleenp
parents: 15935
diff changeset
   368
  if (cm->has_method_annotations()) {
7e90e795813e 8009531: Crash when redefining class with annotated method
coleenp
parents: 15935
diff changeset
   369
    assert(has_method_annotations(), "should be allocated already");
7e90e795813e 8009531: Crash when redefining class with annotated method
coleenp
parents: 15935
diff changeset
   370
    set_method_annotations(cm->method_annotations());
7e90e795813e 8009531: Crash when redefining class with annotated method
coleenp
parents: 15935
diff changeset
   371
  }
7e90e795813e 8009531: Crash when redefining class with annotated method
coleenp
parents: 15935
diff changeset
   372
  if (cm->has_parameter_annotations()) {
7e90e795813e 8009531: Crash when redefining class with annotated method
coleenp
parents: 15935
diff changeset
   373
    assert(has_parameter_annotations(), "should be allocated already");
7e90e795813e 8009531: Crash when redefining class with annotated method
coleenp
parents: 15935
diff changeset
   374
    set_parameter_annotations(cm->parameter_annotations());
7e90e795813e 8009531: Crash when redefining class with annotated method
coleenp
parents: 15935
diff changeset
   375
  }
7e90e795813e 8009531: Crash when redefining class with annotated method
coleenp
parents: 15935
diff changeset
   376
  if (cm->has_type_annotations()) {
7e90e795813e 8009531: Crash when redefining class with annotated method
coleenp
parents: 15935
diff changeset
   377
    assert(has_type_annotations(), "should be allocated already");
7e90e795813e 8009531: Crash when redefining class with annotated method
coleenp
parents: 15935
diff changeset
   378
    set_type_annotations(cm->type_annotations());
7e90e795813e 8009531: Crash when redefining class with annotated method
coleenp
parents: 15935
diff changeset
   379
  }
7e90e795813e 8009531: Crash when redefining class with annotated method
coleenp
parents: 15935
diff changeset
   380
  if (cm->has_default_annotations()) {
7e90e795813e 8009531: Crash when redefining class with annotated method
coleenp
parents: 15935
diff changeset
   381
    assert(has_default_annotations(), "should be allocated already");
7e90e795813e 8009531: Crash when redefining class with annotated method
coleenp
parents: 15935
diff changeset
   382
    set_default_annotations(cm->default_annotations());
7e90e795813e 8009531: Crash when redefining class with annotated method
coleenp
parents: 15935
diff changeset
   383
  }
7e90e795813e 8009531: Crash when redefining class with annotated method
coleenp
parents: 15935
diff changeset
   384
}
7e90e795813e 8009531: Crash when redefining class with annotated method
coleenp
parents: 15935
diff changeset
   385
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   386
// Printing
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   387
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   388
void ConstMethod::print_on(outputStream* st) const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   389
  ResourceMark rm;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   390
  assert(is_constMethod(), "must be constMethod");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   391
  st->print_cr(internal_name());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   392
  st->print(" - method:       " INTPTR_FORMAT " ", (address)method());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   393
  method()->print_value_on(st); st->cr();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   394
  if (has_stackmap_table()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   395
    st->print(" - stackmap data:       ");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   396
    stackmap_data()->print_value_on(st);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   397
    st->cr();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   398
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   399
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   400
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   401
// Short version of printing ConstMethod* - just print the name of the
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   402
// method it belongs to.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   403
void ConstMethod::print_value_on(outputStream* st) const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   404
  assert(is_constMethod(), "must be constMethod");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   405
  st->print(" const part of method " );
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   406
  method()->print_value_on(st);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   407
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   408
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15102
diff changeset
   409
#if INCLUDE_SERVICES
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15102
diff changeset
   410
// Size Statistics
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15102
diff changeset
   411
void ConstMethod::collect_statistics(KlassSizeStats *sz) const {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15102
diff changeset
   412
  int n1, n2, n3;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15102
diff changeset
   413
  sz->_const_method_bytes += (n1 = sz->count(this));
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15102
diff changeset
   414
  sz->_bytecode_bytes     += (n2 = code_size());
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15102
diff changeset
   415
  sz->_stackmap_bytes     += (n3 = sz->count_array(stackmap_data()));
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15102
diff changeset
   416
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   417
  // Count method annotations
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   418
  int a1 = 0, a2 = 0, a3 = 0, a4 = 0;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   419
  if (has_method_annotations()) {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   420
    sz->_methods_annotations_bytes += (a1 = sz->count_array(method_annotations()));
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   421
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   422
  if (has_parameter_annotations()) {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   423
    sz->_methods_parameter_annotations_bytes += (a2 = sz->count_array(parameter_annotations()));
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   424
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   425
  if (has_type_annotations()) {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   426
    sz->_methods_type_annotations_bytes += (a3 = sz->count_array(type_annotations()));
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   427
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   428
  if (has_default_annotations()) {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   429
    sz->_methods_default_annotations_bytes += (a4 = sz->count_array(default_annotations()));
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   430
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   431
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   432
  int size_annotations = a1 + a2 + a3 + a4;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   433
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   434
  sz->_method_all_bytes += n1 + n3 + size_annotations; // note: n2 is part of n3
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   435
  sz->_ro_bytes += n1 + n3 + size_annotations;
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15102
diff changeset
   436
}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15102
diff changeset
   437
#endif // INCLUDE_SERVICES
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   438
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   439
// Verification
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   440
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   441
void ConstMethod::verify_on(outputStream* st) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   442
  guarantee(is_constMethod(), "object must be constMethod");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   443
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   444
  // Verification can occur during oop construction before the method or
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   445
  // other fields have been initialized.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   446
  guarantee(method()->is_method(), "should be method");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   447
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   448
  address m_end = (address)((intptr_t) this + size());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   449
  address compressed_table_start = code_end();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   450
  guarantee(compressed_table_start <= m_end, "invalid method layout");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   451
  address compressed_table_end = compressed_table_start;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   452
  // Verify line number table
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   453
  if (has_linenumber_table()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   454
    CompressedLineNumberReadStream stream(compressed_linenumber_table());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   455
    while (stream.read_pair()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   456
      guarantee(stream.bci() >= 0 && stream.bci() <= code_size(), "invalid bci in line number table");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   457
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   458
    compressed_table_end += stream.position();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   459
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   460
  guarantee(compressed_table_end <= m_end, "invalid method layout");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   461
  // Verify checked exceptions, exception table and local variable tables
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   462
  if (has_method_parameters()) {
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   463
    u2* addr = method_parameters_length_addr();
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   464
    guarantee(*addr > 0 && (address) addr >= compressed_table_end && (address) addr < m_end, "invalid method layout");
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   465
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   466
  if (has_checked_exceptions()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   467
    u2* addr = checked_exceptions_length_addr();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   468
    guarantee(*addr > 0 && (address) addr >= compressed_table_end && (address) addr < m_end, "invalid method layout");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   469
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   470
  if (has_exception_handler()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   471
    u2* addr = exception_table_length_addr();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   472
     guarantee(*addr > 0 && (address) addr >= compressed_table_end && (address) addr < m_end, "invalid method layout");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   473
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   474
  if (has_localvariable_table()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   475
    u2* addr = localvariable_table_length_addr();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   476
    guarantee(*addr > 0 && (address) addr >= compressed_table_end && (address) addr < m_end, "invalid method layout");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   477
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   478
  // Check compressed_table_end relative to uncompressed_table_start
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   479
  u2* uncompressed_table_start;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   480
  if (has_localvariable_table()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   481
    uncompressed_table_start = (u2*) localvariable_table_start();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   482
  } else if (has_exception_handler()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   483
    uncompressed_table_start = (u2*) exception_table_start();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   484
  } else if (has_checked_exceptions()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   485
      uncompressed_table_start = (u2*) checked_exceptions_start();
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   486
  } else if (has_method_parameters()) {
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   487
      uncompressed_table_start = (u2*) method_parameters_start();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   488
  } else {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   489
      uncompressed_table_start = (u2*) m_end;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   490
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   491
  int gap = (intptr_t) uncompressed_table_start - (intptr_t) compressed_table_end;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   492
  int max_gap = align_object_size(1)*BytesPerWord;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   493
  guarantee(gap >= 0 && gap < max_gap, "invalid method layout");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   494
}