hotspot/src/share/vm/oops/constMethod.cpp
author coleenp
Wed, 13 Mar 2013 09:10:35 -0400
changeset 15931 c4fc378a132b
parent 15928 f9d5c6e4107f
child 15935 50da9e5eb858
permissions -rw-r--r--
8009836: nsk/regression/b4222717 fails with empty stack trace Summary: Some zeroing was missed for bug 8003553, causing empty stack traces and Xcom crashes, add back zeroing to metablock Reviewed-by: dholmes, rbackman
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);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    43
  return new (loader_data, size, true, 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
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    70
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    71
// Deallocate metadata fields associated with ConstMethod*
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    72
void ConstMethod::deallocate_contents(ClassLoaderData* loader_data) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    73
  if (stackmap_data() != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    74
    MetadataFactory::free_array<u1>(loader_data, stackmap_data());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    75
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    76
  set_stackmap_data(NULL);
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    77
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    78
  // deallocate annotation arrays
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    79
  if (has_method_annotations())
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    80
    MetadataFactory::free_array<u1>(loader_data, method_annotations());
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    81
  if (has_parameter_annotations())
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    82
    MetadataFactory::free_array<u1>(loader_data, parameter_annotations());
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    83
  if (has_type_annotations())
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    84
    MetadataFactory::free_array<u1>(loader_data, type_annotations());
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    85
  if (has_default_annotations())
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    86
    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
    87
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
// How big must this constMethodObject be?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    91
int ConstMethod::size(int code_size,
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    92
                      InlineTableSizes* sizes) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  int extra_bytes = code_size;
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    94
  if (sizes->compressed_linenumber_size() > 0) {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    95
    extra_bytes += sizes->compressed_linenumber_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  }
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    97
  if (sizes->checked_exceptions_length() > 0) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    extra_bytes += sizeof(u2);
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
    99
    extra_bytes += sizes->checked_exceptions_length() * sizeof(CheckedExceptionElement);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  }
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   101
  if (sizes->localvariable_table_length() > 0) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    extra_bytes += sizeof(u2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    extra_bytes +=
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   104
              sizes->localvariable_table_length() * sizeof(LocalVariableTableElement);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  }
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   106
  if (sizes->exception_table_length() > 0) {
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   107
    extra_bytes += sizeof(u2);
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   108
    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
   109
  }
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   110
  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
   111
    extra_bytes += sizeof(u2);
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14391
diff changeset
   112
  }
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   113
  if (sizes->method_parameters_length() > 0) {
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   114
    extra_bytes += sizeof(u2);
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   115
    extra_bytes += sizes->method_parameters_length() * sizeof(MethodParametersElement);
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   116
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   117
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   118
  // Align sizes up to a word.
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   119
  extra_bytes = align_size_up(extra_bytes, BytesPerWord);
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   120
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   121
  // One pointer per annotation array
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   122
  if (sizes->method_annotations_length() > 0) {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   123
    extra_bytes += sizeof(AnnotationArray*);
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   124
  }
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   125
  if (sizes->parameter_annotations_length() > 0) {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   126
    extra_bytes += sizeof(AnnotationArray*);
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   127
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   128
  if (sizes->type_annotations_length() > 0) {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   129
    extra_bytes += sizeof(AnnotationArray*);
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   130
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   131
  if (sizes->default_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
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  int extra_words = align_size_up(extra_bytes, BytesPerWord) / BytesPerWord;
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   136
  assert(extra_words == extra_bytes/BytesPerWord, "should already be aligned");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  return align_object_size(header_size() + extra_words);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   140
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
   141
    return _constants->pool_holder()->method_with_idnum(_method_idnum);
12937
0032fb2caff6 7172967: Eliminate constMethod's _method backpointer to methodOop.
jiangli
parents: 7397
diff changeset
   142
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
// linenumber table - note that length is unknown until decompression,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
// see class CompressedLineNumberReadStream.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   147
u_char* ConstMethod::compressed_linenumber_table() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  // Located immediately following the bytecodes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  assert(has_linenumber_table(), "called only if table is present");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  return code_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   153
// Last short in ConstMethod* before annotations
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   154
u2* ConstMethod::last_u2_element() const {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   155
  int offset = 0;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   156
  if (has_method_annotations()) offset++;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   157
  if (has_parameter_annotations()) offset++;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   158
  if (has_type_annotations()) offset++;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   159
  if (has_default_annotations()) offset++;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   160
  return (u2*)((AnnotationArray**)constMethod_end() - offset) - 1;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   161
}
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   162
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14391
diff changeset
   163
u2* ConstMethod::generic_signature_index_addr() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // 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
   165
  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
   166
  return last_u2_element();
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14391
diff changeset
   167
}
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14391
diff changeset
   168
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   169
u2* ConstMethod::method_parameters_length_addr() const {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   170
  assert(has_method_parameters(), "called only if table is present");
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   171
  return has_generic_signature() ? (last_u2_element() - 1) :
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   172
                                    last_u2_element();
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   173
}
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   174
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14391
diff changeset
   175
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
   176
  // Located immediately before the generic signature index.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  assert(has_checked_exceptions(), "called only if table is present");
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   178
  if(has_method_parameters()) {
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   179
    // If method parameters present, locate immediately before them.
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   180
    return (u2*)method_parameters_start() - 1;
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   181
  } else {
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   182
    // Else, the exception table is at the end of the constMethod.
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   183
    return has_generic_signature() ? (last_u2_element() - 1) :
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   184
                                     last_u2_element();
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   185
  }
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   186
}
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   187
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   188
u2* ConstMethod::exception_table_length_addr() const {
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   189
  assert(has_exception_handler(), "called only if table is present");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  if (has_checked_exceptions()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    // If checked_exception present, locate immediately before them.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    return (u2*) checked_exceptions_start() - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  } else {
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   194
    if(has_method_parameters()) {
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   195
      // If method parameters present, locate immediately before them.
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   196
      return (u2*)method_parameters_start() - 1;
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   197
    } else {
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   198
      // Else, the exception table is at the end of the constMethod.
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   199
      return has_generic_signature() ? (last_u2_element() - 1) :
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   200
                                        last_u2_element();
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   201
    }
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   202
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   205
u2* ConstMethod::localvariable_table_length_addr() const {
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   206
  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
   207
  if (has_exception_handler()) {
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   208
    // If exception_table present, locate immediately before them.
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   209
    return (u2*) exception_table_start() - 1;
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   210
  } else {
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   211
    if (has_checked_exceptions()) {
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   212
      // If checked_exception present, locate immediately before them.
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   213
      return (u2*) checked_exceptions_start() - 1;
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   214
    } else {
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   215
      if(has_method_parameters()) {
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   216
        // If method parameters present, locate immediately before them.
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   217
        return (u2*)method_parameters_start() - 1;
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   218
      } else {
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   219
        // 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
   220
      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
   221
                                        last_u2_element();
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   222
      }
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   223
    }
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   224
  }
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   225
}
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   226
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
// Update the flags to indicate the presence of these optional fields.
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   228
void ConstMethod::set_inlined_tables_length(InlineTableSizes* sizes) {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   229
  _flags = 0;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   230
  if (sizes->compressed_linenumber_size() > 0)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    _flags |= _has_linenumber_table;
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   232
  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
   233
    _flags |= _has_generic_signature;
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   234
  if (sizes->method_parameters_length() > 0)
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   235
    _flags |= _has_method_parameters;
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   236
  if (sizes->checked_exceptions_length() > 0)
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   237
    _flags |= _has_checked_exceptions;
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   238
  if (sizes->exception_table_length() > 0)
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   239
    _flags |= _has_exception_table;
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   240
  if (sizes->localvariable_table_length() > 0)
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   241
    _flags |= _has_localvariable_table;
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   242
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   243
  // annotations, they are all pointer sized embedded objects so don't have
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   244
  // a length embedded also.
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   245
  if (sizes->method_annotations_length() > 0)
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   246
    _flags |= _has_method_annotations;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   247
  if (sizes->parameter_annotations_length() > 0)
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   248
    _flags |= _has_parameter_annotations;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   249
  if (sizes->type_annotations_length() > 0)
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   250
    _flags |= _has_type_annotations;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   251
  if (sizes->default_annotations_length() > 0)
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   252
    _flags |= _has_default_annotations;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   253
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   254
  // This code is extremely brittle and should possibly be revised.
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   255
  // The *_length_addr functions walk backwards through the
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   256
  // constMethod data, using each of the length indexes ahead of them,
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   257
  // as well as the flags variable.  Therefore, the indexes must be
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   258
  // initialized in reverse order, or else they will compute the wrong
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   259
  // offsets.  Moving the initialization of _flags into a separate
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   260
  // block solves *half* of the problem, but the following part will
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   261
  // still break if the order is not exactly right.
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   262
  //
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   263
  // Also, the servicability agent needs to be informed anytime
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   264
  // 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
   265
  // of indication of this inline.
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   266
  if (sizes->generic_signature_index() != 0)
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   267
    *(generic_signature_index_addr()) = sizes->generic_signature_index();
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   268
  // New data should probably go here.
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   269
  if (sizes->method_parameters_length() > 0)
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   270
    *(method_parameters_length_addr()) = sizes->method_parameters_length();
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   271
  if (sizes->checked_exceptions_length() > 0)
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   272
    *(checked_exceptions_length_addr()) = sizes->checked_exceptions_length();
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   273
  if (sizes->exception_table_length() > 0)
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   274
    *(exception_table_length_addr()) = sizes->exception_table_length();
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   275
  if (sizes->localvariable_table_length() > 0)
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   276
    *(localvariable_table_length_addr()) = sizes->localvariable_table_length();
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   277
}
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   278
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   279
int ConstMethod::method_parameters_length() const {
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   280
  return has_method_parameters() ? *(method_parameters_length_addr()) : 0;
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   281
}
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   282
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   283
MethodParametersElement* ConstMethod::method_parameters_start() const {
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   284
  u2* addr = method_parameters_length_addr();
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   285
  u2 length = *addr;
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   286
  assert(length > 0, "should only be called if table is present");
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   287
  addr -= length * sizeof(MethodParametersElement) / sizeof(u2);
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   288
  return (MethodParametersElement*) addr;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   292
int ConstMethod::checked_exceptions_length() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  return has_checked_exceptions() ? *(checked_exceptions_length_addr()) : 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   297
CheckedExceptionElement* ConstMethod::checked_exceptions_start() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  u2* addr = checked_exceptions_length_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  u2 length = *addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  assert(length > 0, "should only be called if table is present");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  addr -= length * sizeof(CheckedExceptionElement) / sizeof(u2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  return (CheckedExceptionElement*) addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   306
int ConstMethod::localvariable_table_length() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  return has_localvariable_table() ? *(localvariable_table_length_addr()) : 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   311
LocalVariableTableElement* ConstMethod::localvariable_table_start() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  u2* addr = localvariable_table_length_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  u2 length = *addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  assert(length > 0, "should only be called if table is present");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  addr -= length * sizeof(LocalVariableTableElement) / sizeof(u2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  return (LocalVariableTableElement*) addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
}
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   318
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   319
int ConstMethod::exception_table_length() const {
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   320
  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
   321
}
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   322
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   323
ExceptionTableElement* ConstMethod::exception_table_start() const {
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   324
  u2* addr = exception_table_length_addr();
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   325
  u2 length = *addr;
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   326
  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
   327
  addr -= length * sizeof(ExceptionTableElement) / sizeof(u2);
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   328
  return (ExceptionTableElement*)addr;
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   329
}
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   330
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   331
AnnotationArray** ConstMethod::method_annotations_addr() const {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   332
  assert(has_method_annotations(), "should only be called if method annotations are present");
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   333
  return (AnnotationArray**)constMethod_end() - 1;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   334
}
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   335
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   336
AnnotationArray** ConstMethod::parameter_annotations_addr() const {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   337
  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
   338
  int offset = 1;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   339
  if (has_method_annotations()) offset++;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   340
  return (AnnotationArray**)constMethod_end() - offset;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   341
}
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   342
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   343
AnnotationArray** ConstMethod::type_annotations_addr() const {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   344
  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
   345
  int offset = 1;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   346
  if (has_method_annotations()) offset++;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   347
  if (has_parameter_annotations()) offset++;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   348
  return (AnnotationArray**)constMethod_end() - offset;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   349
}
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   350
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   351
AnnotationArray** ConstMethod::default_annotations_addr() const {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   352
  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
   353
  int offset = 1;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   354
  if (has_method_annotations()) offset++;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   355
  if (has_parameter_annotations()) offset++;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   356
  if (has_type_annotations()) offset++;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   357
  return (AnnotationArray**)constMethod_end() - offset;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   358
}
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   359
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   360
// Printing
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   361
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   362
void ConstMethod::print_on(outputStream* st) const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   363
  ResourceMark rm;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   364
  assert(is_constMethod(), "must be constMethod");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   365
  st->print_cr(internal_name());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   366
  st->print(" - method:       " INTPTR_FORMAT " ", (address)method());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   367
  method()->print_value_on(st); st->cr();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   368
  if (has_stackmap_table()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   369
    st->print(" - stackmap data:       ");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   370
    stackmap_data()->print_value_on(st);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   371
    st->cr();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   372
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   373
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   374
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   375
// 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
   376
// method it belongs to.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   377
void ConstMethod::print_value_on(outputStream* st) const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   378
  assert(is_constMethod(), "must be constMethod");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   379
  st->print(" const part of method " );
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   380
  method()->print_value_on(st);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   381
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   382
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15102
diff changeset
   383
#if INCLUDE_SERVICES
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15102
diff changeset
   384
// Size Statistics
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15102
diff changeset
   385
void ConstMethod::collect_statistics(KlassSizeStats *sz) const {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15102
diff changeset
   386
  int n1, n2, n3;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15102
diff changeset
   387
  sz->_const_method_bytes += (n1 = sz->count(this));
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15102
diff changeset
   388
  sz->_bytecode_bytes     += (n2 = code_size());
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15102
diff changeset
   389
  sz->_stackmap_bytes     += (n3 = sz->count_array(stackmap_data()));
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15102
diff changeset
   390
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   391
  // Count method annotations
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   392
  int a1 = 0, a2 = 0, a3 = 0, a4 = 0;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   393
  if (has_method_annotations()) {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   394
    sz->_methods_annotations_bytes += (a1 = sz->count_array(method_annotations()));
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   395
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   396
  if (has_parameter_annotations()) {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   397
    sz->_methods_parameter_annotations_bytes += (a2 = sz->count_array(parameter_annotations()));
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   398
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   399
  if (has_type_annotations()) {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   400
    sz->_methods_type_annotations_bytes += (a3 = sz->count_array(type_annotations()));
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   401
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   402
  if (has_default_annotations()) {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   403
    sz->_methods_default_annotations_bytes += (a4 = sz->count_array(default_annotations()));
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   404
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   405
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   406
  int size_annotations = a1 + a2 + a3 + a4;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   407
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   408
  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
   409
  sz->_ro_bytes += n1 + n3 + size_annotations;
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15102
diff changeset
   410
}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15102
diff changeset
   411
#endif // INCLUDE_SERVICES
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   412
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   413
// Verification
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   414
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   415
void ConstMethod::verify_on(outputStream* st) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   416
  guarantee(is_constMethod(), "object must be constMethod");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   417
  guarantee(is_metadata(), err_msg("Should be metadata " PTR_FORMAT, this));
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   418
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   419
  // 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
   420
  // other fields have been initialized.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   421
  guarantee(method()->is_method(), "should be method");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   422
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15437
diff changeset
   423
  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
   424
  address compressed_table_start = code_end();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   425
  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
   426
  address compressed_table_end = compressed_table_start;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   427
  // Verify line number table
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   428
  if (has_linenumber_table()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   429
    CompressedLineNumberReadStream stream(compressed_linenumber_table());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   430
    while (stream.read_pair()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   431
      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
   432
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   433
    compressed_table_end += stream.position();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   434
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   435
  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
   436
  // Verify checked exceptions, exception table and local variable tables
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   437
  if (has_method_parameters()) {
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   438
    u2* addr = method_parameters_length_addr();
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   439
    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
   440
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   441
  if (has_checked_exceptions()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   442
    u2* addr = checked_exceptions_length_addr();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   443
    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
   444
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   445
  if (has_exception_handler()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   446
    u2* addr = exception_table_length_addr();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   447
     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
   448
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   449
  if (has_localvariable_table()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   450
    u2* addr = localvariable_table_length_addr();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   451
    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
   452
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   453
  // 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
   454
  u2* uncompressed_table_start;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   455
  if (has_localvariable_table()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   456
    uncompressed_table_start = (u2*) localvariable_table_start();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   457
  } else if (has_exception_handler()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   458
    uncompressed_table_start = (u2*) exception_table_start();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   459
  } else if (has_checked_exceptions()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   460
      uncompressed_table_start = (u2*) checked_exceptions_start();
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   461
  } else if (has_method_parameters()) {
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14586
diff changeset
   462
      uncompressed_table_start = (u2*) method_parameters_start();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   463
  } else {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   464
      uncompressed_table_start = (u2*) m_end;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   465
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   466
  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
   467
  int max_gap = align_object_size(1)*BytesPerWord;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   468
  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
   469
}