src/hotspot/share/oops/constMethod.hpp
author ccheung
Wed, 02 Oct 2019 16:55:08 -0700
changeset 58447 319173c62caa
parent 54927 1512d88b24c6
child 58861 2c3cc4b01880
permissions -rw-r--r--
8231606: _method_ordering is not set during CDS dynamic dump time Summary: Add the missing DynamicDumpSharedSpaces check in sort_methods(); replace the (DumpSharedSpaces || DynamicDumpSharedSpaces) with the Arguments::is_dumping_archive() function call. Reviewed-by: iklam, coleenp, jiangli
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49364
diff changeset
     2
 * Copyright (c) 2003, 2019, 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: 4567
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4567
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: 4567
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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49364
diff changeset
    25
#ifndef SHARE_OOPS_CONSTMETHOD_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49364
diff changeset
    26
#define SHARE_OOPS_CONSTMETHOD_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "oops/oop.hpp"
58447
319173c62caa 8231606: _method_ordering is not set during CDS dynamic dump time
ccheung
parents: 54927
diff changeset
    29
#include "runtime/arguments.hpp"
46625
edefffab74e2 8183552: Move align functions to align.hpp
stefank
parents: 46619
diff changeset
    30
#include "utilities/align.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    32
// An ConstMethod represents portions of a Java method which are not written to after
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    33
// the classfile is parsed(*see below).  This part of the method can be shared across
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    34
// processes in a read-only section with Class Data Sharing (CDS).  It's important
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    35
// that this class doesn't have virtual functions because the vptr cannot be shared
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    36
// with CDS.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
//
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    38
// Note that most applications load thousands of methods, so keeping the size of this
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// structure small has a big impact on footprint.
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    40
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    41
// The actual bytecodes are inlined after the end of the ConstMethod struct.
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    42
//
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    43
// The line number table is compressed and inlined following the byte codes. It is
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    44
// found as the first byte following the byte codes.  Note that accessing the line
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    45
// number and local variable tables is not performance critical at all.
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    46
//
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    47
// The checked exceptions table and the local variable table are inlined after the
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    48
// line number table, and indexed from the end of the method. We do not compress the
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    49
// checked exceptions table since the average length is less than 2, and it is used
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    50
// by reflection so access should be fast.  We do not bother to compress the local
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    51
// variable table either since it is mostly absent.
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    52
//
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
//
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    54
//  ConstMethod embedded field layout (after declared fields):
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    55
//    [EMBEDDED byte codes]
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    56
//    [EMBEDDED compressed linenumber table]
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    57
//     (see class CompressedLineNumberReadStream)
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    58
//     (note that length is unknown until decompressed)
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    59
//     (access flags bit tells whether table is present)
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    60
//     (indexed from start of ConstMethod)
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    61
//     (elements not necessarily sorted!)
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    62
//    [EMBEDDED localvariable table elements + length (length last)]
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    63
//     (length is u2, elements are 6-tuples of u2)
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    64
//     (see class LocalVariableTableElement)
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    65
//     (access flags bit tells whether table is present)
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    66
//     (indexed from end of ConstMethod*)
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    67
//    [EMBEDDED exception table + length (length last)]
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    68
//     (length is u2, elements are 4-tuples of u2)
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    69
//     (see class ExceptionTableElement)
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    70
//     (access flags bit tells whether table is present)
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    71
//     (indexed from end of ConstMethod*)
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    72
//    [EMBEDDED checked exceptions elements + length (length last)]
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    73
//     (length is u2, elements are u2)
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    74
//     (see class CheckedExceptionElement)
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    75
//     (access flags bit tells whether table is present)
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    76
//     (indexed from end of ConstMethod*)
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    77
//    [EMBEDDED method parameters elements + length (length last)]
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    78
//     (length is u2, elements are u2, u4 structures)
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    79
//     (see class MethodParametersElement)
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    80
//     (access flags bit tells whether table is present)
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    81
//     (indexed from end of ConstMethod*)
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    82
//    [EMBEDDED generic signature index (u2)]
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    83
//     (indexed from end of constMethodOop)
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    84
//    [EMBEDDED annotations arrays - method, parameter, type, default]
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 16588
diff changeset
    85
//      pointer to Array<u1> if annotation is present
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14745
diff changeset
    86
//
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14745
diff changeset
    87
// IMPORTANT: If anything gets added here, there need to be changes to
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14745
diff changeset
    88
// ensure that ServicabilityAgent doesn't get broken as a result!
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
    91
// Utility class describing elements in checked exceptions table inlined in Method*.
49364
601146c66cad 8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents: 47216
diff changeset
    92
class CheckedExceptionElement {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  u2 class_cp_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
    98
// Utility class describing elements in local variable table inlined in Method*.
49364
601146c66cad 8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents: 47216
diff changeset
    99
class LocalVariableTableElement {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  u2 start_bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  u2 length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  u2 name_cp_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  u2 descriptor_cp_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  u2 signature_cp_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  u2 slot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   109
// Utility class describing elements in exception table
49364
601146c66cad 8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents: 47216
diff changeset
   110
class ExceptionTableElement {
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   111
 public:
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   112
  u2 start_pc;
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   113
  u2 end_pc;
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   114
  u2 handler_pc;
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   115
  u2 catch_type_index;
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   116
};
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   117
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14745
diff changeset
   118
// Utility class describing elements in method parameters
49364
601146c66cad 8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents: 47216
diff changeset
   119
class MethodParametersElement {
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14745
diff changeset
   120
 public:
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14745
diff changeset
   121
  u2 name_cp_index;
15464
1f2cca0aa501 8006949: Update hotspot for MethodParameters format change
emc
parents: 15437
diff changeset
   122
  u2 flags;
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14745
diff changeset
   123
};
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14745
diff changeset
   124
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15194
diff changeset
   125
class KlassSizeStats;
37439
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   126
class AdapterHandlerEntry;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   127
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   128
// Class to collect the sizes of ConstMethod inline tables
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   129
#define INLINE_TABLES_DO(do_element)            \
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   130
  do_element(localvariable_table_length)        \
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   131
  do_element(compressed_linenumber_size)        \
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   132
  do_element(exception_table_length)            \
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   133
  do_element(checked_exceptions_length)         \
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   134
  do_element(method_parameters_length)          \
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   135
  do_element(generic_signature_index)           \
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   136
  do_element(method_annotations_length)         \
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   137
  do_element(parameter_annotations_length)      \
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   138
  do_element(type_annotations_length)           \
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   139
  do_element(default_annotations_length)
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   140
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   141
#define INLINE_TABLE_DECLARE(sym)    int _##sym;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   142
#define INLINE_TABLE_PARAM(sym)      int sym,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   143
#define INLINE_TABLE_INIT(sym)       _##sym(sym),
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   144
#define INLINE_TABLE_NULL(sym)       _##sym(0),
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   145
#define INLINE_TABLE_ACCESSOR(sym)   int sym() const { return _##sym; }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   146
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   147
class InlineTableSizes : StackObj {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   148
  // declarations
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   149
  INLINE_TABLES_DO(INLINE_TABLE_DECLARE)
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   150
  int _end;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   151
 public:
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   152
  InlineTableSizes(
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   153
      INLINE_TABLES_DO(INLINE_TABLE_PARAM)
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   154
      int end) :
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   155
      INLINE_TABLES_DO(INLINE_TABLE_INIT)
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   156
      _end(end) {}
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   157
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   158
  // Default constructor for no inlined tables
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   159
  InlineTableSizes() :
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   160
      INLINE_TABLES_DO(INLINE_TABLE_NULL)
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   161
      _end(0) {}
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   162
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   163
  // Accessors
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   164
  INLINE_TABLES_DO(INLINE_TABLE_ACCESSOR)
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   165
};
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   166
#undef INLINE_TABLE_ACCESSOR
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   167
#undef INLINE_TABLE_NULL
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   168
#undef INLINE_TABLE_INIT
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   169
#undef INLINE_TABLE_PARAM
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   170
#undef INLINE_TABLE_DECLARE
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   171
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   172
class ConstMethod : public MetaspaceObj {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  friend class VMStructs;
35123
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 30117
diff changeset
   174
  friend class JVMCIVMStructs;
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   175
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   176
public:
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   177
  typedef enum { NORMAL, OVERPASS } MethodType;
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   178
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  enum {
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   181
    _has_linenumber_table = 0x0001,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   182
    _has_checked_exceptions = 0x0002,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   183
    _has_localvariable_table = 0x0004,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   184
    _has_exception_table = 0x0008,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   185
    _has_generic_signature = 0x0010,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   186
    _has_method_parameters = 0x0020,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   187
    _is_overpass = 0x0040,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   188
    _has_method_annotations = 0x0080,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   189
    _has_parameter_annotations = 0x0100,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   190
    _has_type_annotations = 0x0200,
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   191
    _has_default_annotations = 0x0400
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  // Bit vector of signature
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  // Callers interpret 0=not initialized yet and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  // -1=too many args to fix, must parse the slow way.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  // The real initial value is special to account for nonatomicity of 64 bit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  // loads and stores.  This value may updated and read without a lock by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  // multiple threads, so is volatile.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  volatile uint64_t _fingerprint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46625
diff changeset
   202
  // If you add a new field that points to any metaspace object, you
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46625
diff changeset
   203
  // must add this field to ConstMethod::metaspace_pointers_do().
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46625
diff changeset
   204
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   205
  ConstantPool*     _constants;                  // Constant pool
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  // Raw stackmap data for the method
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   208
  Array<u1>*        _stackmap_data;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
37439
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   210
  // Adapter blob (i2c/c2i) for this Method*. Set once when method is linked.
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   211
  union {
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   212
    AdapterHandlerEntry* _adapter;
42608
14af45789042 8169867: Method::restore_unshareable_info does not invoke Method::link_method
iklam
parents: 41727
diff changeset
   213
    AdapterHandlerEntry** _adapter_trampoline; // see comments around Method::link_method()
37439
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   214
  };
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   215
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  int               _constMethod_size;
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   217
  u2                _flags;
37480
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 37439
diff changeset
   218
  u1                _result_type;                 // BasicType of result
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   220
  // Size of Java bytecodes allocated immediately after Method*.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  u2                _code_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  u2                _name_index;                 // Method name (index in constant pool)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  u2                _signature_index;            // Method signature (index in constant pool)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  u2                _method_idnum;               // unique identification number for the method within the class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
                                                 // initially corresponds to the index into the methods array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
                                                 // but this may change with redefinition
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   227
  u2                _max_stack;                  // Maximum number of entries on the expression stack
14745
03904dd8649b 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 14586
diff changeset
   228
  u2                _max_locals;                 // Number of local variables used by this method
03904dd8649b 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 14586
diff changeset
   229
  u2                _size_of_parameters;         // size of the parameter block (receiver + arguments) in words
29316
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 27612
diff changeset
   230
  u2                _orig_method_idnum;          // Original unique identification number for the method
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   231
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   232
  // Constructor
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   233
  ConstMethod(int byte_code_size,
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   234
              InlineTableSizes* sizes,
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   235
              MethodType is_overpass,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   236
              int size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
public:
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   238
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   239
  static ConstMethod* allocate(ClassLoaderData* loader_data,
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   240
                               int byte_code_size,
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   241
                               InlineTableSizes* sizes,
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   242
                               MethodType mt,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   243
                               TRAPS);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   244
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  // Inlined tables
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   246
  void set_inlined_tables_length(InlineTableSizes* sizes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   248
  bool has_generic_signature() const
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   249
    { return (_flags & _has_generic_signature) != 0; }
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   250
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  bool has_linenumber_table() const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    { return (_flags & _has_linenumber_table) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  bool has_checked_exceptions() const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    { return (_flags & _has_checked_exceptions) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  bool has_localvariable_table() const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
    { return (_flags & _has_localvariable_table) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   260
  bool has_exception_handler() const
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   261
    { return (_flags & _has_exception_table) != 0; }
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   262
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14745
diff changeset
   263
  bool has_method_parameters() const
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14745
diff changeset
   264
    { return (_flags & _has_method_parameters) != 0; }
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14745
diff changeset
   265
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   266
  MethodType method_type() const {
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   267
    return ((_flags & _is_overpass) == 0) ? NORMAL : OVERPASS;
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   268
  }
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   269
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   270
  void set_method_type(MethodType mt) {
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   271
    if (mt == NORMAL) {
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   272
      _flags &= ~(_is_overpass);
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   273
    } else {
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   274
      _flags |= _is_overpass;
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   275
    }
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   276
  }
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   277
12937
0032fb2caff6 7172967: Eliminate constMethod's _method backpointer to methodOop.
jiangli
parents: 7397
diff changeset
   278
  // constant pool
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   279
  ConstantPool* constants() const        { return _constants; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   280
  void set_constants(ConstantPool* c)    { _constants = c; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   282
  Method* method() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  // stackmap table data
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   285
  Array<u1>* stackmap_data() const { return _stackmap_data; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   286
  void set_stackmap_data(Array<u1>* sd) { _stackmap_data = sd; }
15935
50da9e5eb858 8003419: NPG: Clean up metadata created during class loading if failure
coleenp
parents: 15601
diff changeset
   287
  void copy_stackmap_data(ClassLoaderData* loader_data, u1* sd, int length, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  bool has_stackmap_table() const { return _stackmap_data != NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
37439
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   290
  // adapter
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   291
  void set_adapter_entry(AdapterHandlerEntry* adapter) {
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 53584
diff changeset
   292
    assert(!is_shared(),
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 53584
diff changeset
   293
           "shared methods in archive have fixed adapter_trampoline");
37439
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   294
    _adapter = adapter;
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   295
  }
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   296
  void set_adapter_trampoline(AdapterHandlerEntry** trampoline) {
58447
319173c62caa 8231606: _method_ordering is not set during CDS dynamic dump time
ccheung
parents: 54927
diff changeset
   297
    Arguments::assert_is_dumping_archive();
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 53584
diff changeset
   298
    if (DumpSharedSpaces) {
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 53584
diff changeset
   299
      assert(*trampoline == NULL,
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 53584
diff changeset
   300
             "must be NULL during dump time, to be initialized at run time");
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 53584
diff changeset
   301
    }
37439
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   302
    _adapter_trampoline = trampoline;
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   303
  }
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   304
  void update_adapter_trampoline(AdapterHandlerEntry* adapter) {
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   305
    assert(is_shared(), "must be");
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   306
    *_adapter_trampoline = adapter;
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   307
    assert(this->adapter() == adapter, "must be");
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   308
  }
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   309
  AdapterHandlerEntry* adapter() {
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   310
    if (is_shared()) {
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   311
      return *_adapter_trampoline;
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   312
    } else {
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   313
      return _adapter;
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   314
    }
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   315
  }
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 35898
diff changeset
   316
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  void init_fingerprint() {
27471
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 23515
diff changeset
   318
    const uint64_t initval = UCONST64(0x8000000000000000);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
    _fingerprint = initval;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  uint64_t fingerprint() const                   {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
    // Since reads aren't atomic for 64 bits, if any of the high or low order
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
    // word is the initial value, return 0.  See init_fingerprint for initval.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
    uint high_fp = (uint)(_fingerprint >> 32);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
    if ((int) _fingerprint == 0 || high_fp == 0x80000000) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
      return 0L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
      return _fingerprint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  uint64_t set_fingerprint(uint64_t new_fingerprint) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
    // Assert only valid if complete/valid 64 bit _fingerprint value is read.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
    uint64_t oldfp = fingerprint();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
    _fingerprint = new_fingerprint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
    assert(oldfp == 0L || new_fingerprint == oldfp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
           "fingerprint cannot change");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
    assert(((new_fingerprint >> 32) != 0x80000000) && (int)new_fingerprint !=0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
           "fingerprint should call init to set initial value");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
    return new_fingerprint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  // name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  int name_index() const                         { return _name_index; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  void set_name_index(int index)                 { _name_index = index; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  // signature
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  int signature_index() const                    { return _signature_index; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  void set_signature_index(int index)            { _signature_index = index; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  // generics support
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   355
  int generic_signature_index() const            {
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   356
    if (has_generic_signature()) {
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   357
      return *generic_signature_index_addr();
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   358
    } else {
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   359
      return 0;
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   360
    }
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   361
  }
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   362
  void set_generic_signature_index(u2 index)    {
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   363
    assert(has_generic_signature(), "");
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   364
    u2* addr = generic_signature_index_addr();
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   365
    *addr = index;
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   366
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  // Sizing
44524
b0d3e8ba6f27 8170812: Metaspace corruption caused by incorrect memory size for MethodCounters
aph
parents: 42608
diff changeset
   369
  static int header_size() {
46619
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46618
diff changeset
   370
    return align_up((int)sizeof(ConstMethod), wordSize) / wordSize;
44524
b0d3e8ba6f27 8170812: Metaspace corruption caused by incorrect memory size for MethodCounters
aph
parents: 42608
diff changeset
   371
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   373
  // Size needed
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   374
  static int size(int code_size, InlineTableSizes* sizes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   376
  int size() const                    { return _constMethod_size;}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  void set_constMethod_size(int size)     { _constMethod_size = size; }
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46625
diff changeset
   378
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46625
diff changeset
   379
  // ConstMethods should be stored in the read-only region of CDS archive.
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46625
diff changeset
   380
  static bool is_read_only_by_default() { return true; }
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46625
diff changeset
   381
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15194
diff changeset
   382
#if INCLUDE_SERVICES
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15194
diff changeset
   383
  void collect_statistics(KlassSizeStats *sz) const;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 15194
diff changeset
   384
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  // code size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  int code_size() const                          { return _code_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  void set_code_size(int size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
    assert(max_method_code_size < (1 << 16),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
           "u2 is too small to hold method code size in general");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
    assert(0 <= size && size <= max_method_code_size, "invalid code size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
    _code_size = size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  // linenumber table - note that length is unknown until decompression,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  // see class CompressedLineNumberReadStream.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  u_char* compressed_linenumber_table() const;         // not preserved by gc
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   398
  u2* generic_signature_index_addr() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  u2* checked_exceptions_length_addr() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  u2* localvariable_table_length_addr() const;
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   401
  u2* exception_table_length_addr() const;
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14745
diff changeset
   402
  u2* method_parameters_length_addr() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  // checked exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  int checked_exceptions_length() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  CheckedExceptionElement* checked_exceptions_start() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  // localvariable table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  int localvariable_table_length() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  LocalVariableTableElement* localvariable_table_start() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   412
  // exception table
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   413
  int exception_table_length() const;
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   414
  ExceptionTableElement* exception_table_start() const;
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   415
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14745
diff changeset
   416
  // method parameters table
27612
7201412afbd0 8058313: Mismatch of method descriptor and MethodParameters.parameters_count should cause MalformedParameterException
emc
parents: 27471
diff changeset
   417
7201412afbd0 8058313: Mismatch of method descriptor and MethodParameters.parameters_count should cause MalformedParameterException
emc
parents: 27471
diff changeset
   418
  // This returns -1 if no parameters are present, a non-negative
7201412afbd0 8058313: Mismatch of method descriptor and MethodParameters.parameters_count should cause MalformedParameterException
emc
parents: 27471
diff changeset
   419
  // value otherwise.  Note: sometimes, there are 0-length parameters
7201412afbd0 8058313: Mismatch of method descriptor and MethodParameters.parameters_count should cause MalformedParameterException
emc
parents: 27471
diff changeset
   420
  // attributes that must be reported up to the reflection API all the
7201412afbd0 8058313: Mismatch of method descriptor and MethodParameters.parameters_count should cause MalformedParameterException
emc
parents: 27471
diff changeset
   421
  // same.
15102
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14745
diff changeset
   422
  int method_parameters_length() const;
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14745
diff changeset
   423
  MethodParametersElement* method_parameters_start() const;
0a86564e5f61 8004728: Add hotspot support for parameter reflection
coleenp
parents: 14745
diff changeset
   424
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   425
  // method annotations
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   426
  bool has_method_annotations() const
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   427
    { return (_flags & _has_method_annotations) != 0; }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   428
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   429
  bool has_parameter_annotations() const
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   430
    { return (_flags & _has_parameter_annotations) != 0; }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   431
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   432
  bool has_type_annotations() const
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   433
    { return (_flags & _has_type_annotations) != 0; }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   434
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   435
  bool has_default_annotations() const
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   436
    { return (_flags & _has_default_annotations) != 0; }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   437
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   438
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   439
  AnnotationArray** method_annotations_addr() const;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   440
  AnnotationArray* method_annotations() const  {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   441
    return has_method_annotations() ? *(method_annotations_addr()) : NULL;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   442
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   443
  void set_method_annotations(AnnotationArray* anno) {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   444
    *(method_annotations_addr()) = anno;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   445
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   446
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   447
  AnnotationArray** parameter_annotations_addr() const;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   448
  AnnotationArray* parameter_annotations() const {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   449
    return has_parameter_annotations() ? *(parameter_annotations_addr()) : NULL;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   450
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   451
  void set_parameter_annotations(AnnotationArray* anno) {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   452
    *(parameter_annotations_addr()) = anno;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   453
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   454
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   455
  AnnotationArray** type_annotations_addr() const;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   456
  AnnotationArray* type_annotations() const {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   457
    return has_type_annotations() ? *(type_annotations_addr()) : NULL;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   458
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   459
  void set_type_annotations(AnnotationArray* anno) {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   460
    *(type_annotations_addr()) = anno;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   461
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   462
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   463
  AnnotationArray** default_annotations_addr() const;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   464
  AnnotationArray* default_annotations() const {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   465
    return has_default_annotations() ? *(default_annotations_addr()) : NULL;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   466
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   467
  void set_default_annotations(AnnotationArray* anno) {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   468
    *(default_annotations_addr()) = anno;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   469
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   470
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   471
  int method_annotations_length() const {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   472
    return has_method_annotations() ? method_annotations()->length() : 0;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   473
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   474
  int parameter_annotations_length() const {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   475
    return has_parameter_annotations() ? parameter_annotations()->length() : 0;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   476
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   477
  int type_annotations_length() const {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   478
    return has_type_annotations() ? type_annotations()->length() : 0;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   479
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   480
  int default_annotations_length() const {
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   481
    return has_default_annotations() ? default_annotations()->length() : 0;
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   482
  }
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   483
16588
7e90e795813e 8009531: Crash when redefining class with annotated method
coleenp
parents: 15935
diff changeset
   484
  // Copy annotations from other ConstMethod
41727
f1658e76a682 8164921: Memory leaked when instrumentation.retransformClasses() is called repeatedly
coleenp
parents: 37480
diff changeset
   485
  void copy_annotations_from(ClassLoaderData* loader_data, ConstMethod* cm, TRAPS);
16588
7e90e795813e 8009531: Crash when redefining class with annotated method
coleenp
parents: 15935
diff changeset
   486
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  // byte codes
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 2105
diff changeset
   488
  void    set_code(address code) {
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 2105
diff changeset
   489
    if (code_size() > 0) {
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 2105
diff changeset
   490
      memcpy(code_base(), code, code_size());
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 2105
diff changeset
   491
    }
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 2105
diff changeset
   492
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  address code_base() const            { return (address) (this+1); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  address code_end() const             { return code_base() + code_size(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  bool    contains(address bcp) const  { return code_base() <= bcp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
                                                     && bcp < code_end(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  // Offset to bytecodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  static ByteSize codes_offset()
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   499
                            { return in_ByteSize(sizeof(ConstMethod)); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   501
  static ByteSize constants_offset()
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   502
                            { return byte_offset_of(ConstMethod, _constants); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   504
  static ByteSize max_stack_offset()
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   505
                            { return byte_offset_of(ConstMethod, _max_stack); }
14745
03904dd8649b 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 14586
diff changeset
   506
  static ByteSize size_of_locals_offset()
03904dd8649b 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 14586
diff changeset
   507
                            { return byte_offset_of(ConstMethod, _max_locals); }
03904dd8649b 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 14586
diff changeset
   508
  static ByteSize size_of_parameters_offset()
03904dd8649b 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 14586
diff changeset
   509
                            { return byte_offset_of(ConstMethod, _size_of_parameters); }
03904dd8649b 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 14586
diff changeset
   510
37480
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 37439
diff changeset
   511
  static ByteSize result_type_offset()
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 37439
diff changeset
   512
                            { return byte_offset_of(ConstMethod, _result_type); }
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   513
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  // Unique id for the method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  static const u2 MAX_IDNUM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  static const u2 UNSET_IDNUM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  u2 method_idnum() const                        { return _method_idnum; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  void set_method_idnum(u2 idnum)                { _method_idnum = idnum; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
29316
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 27612
diff changeset
   520
  u2 orig_method_idnum() const                   { return _orig_method_idnum; }
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 27612
diff changeset
   521
  void set_orig_method_idnum(u2 idnum)           { _orig_method_idnum = idnum; }
5287df8a8972 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 27612
diff changeset
   522
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   523
  // max stack
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   524
  int  max_stack() const                         { return _max_stack; }
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   525
  void set_max_stack(int size)                   { _max_stack = size; }
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   526
14745
03904dd8649b 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 14586
diff changeset
   527
  // max locals
03904dd8649b 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 14586
diff changeset
   528
  int  max_locals() const                        { return _max_locals; }
03904dd8649b 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 14586
diff changeset
   529
  void set_max_locals(int size)                  { _max_locals = size; }
03904dd8649b 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 14586
diff changeset
   530
03904dd8649b 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 14586
diff changeset
   531
  // size of parameters
03904dd8649b 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 14586
diff changeset
   532
  int  size_of_parameters() const                { return _size_of_parameters; }
03904dd8649b 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 14586
diff changeset
   533
  void set_size_of_parameters(int size)          { _size_of_parameters = size; }
03904dd8649b 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 14586
diff changeset
   534
37480
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 37439
diff changeset
   535
  void set_result_type(BasicType rt)             { assert(rt < 16, "result type too large");
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 37439
diff changeset
   536
                                                   _result_type = (u1)rt; }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   537
  // Deallocation for RedefineClasses
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   538
  void deallocate_contents(ClassLoaderData* loader_data);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   539
  bool is_klass() const { return false; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   540
  DEBUG_ONLY(bool on_stack() { return false; })
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   541
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46625
diff changeset
   542
  void metaspace_pointers_do(MetaspaceClosure* it);
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46625
diff changeset
   543
  MetaspaceObj::Type type() const { return ConstMethodType; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  // Since the size of the compressed line number table is unknown, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  // offsets of the other variable sized sections are computed backwards
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   547
  // from the end of the ConstMethod*.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   549
  // First byte after ConstMethod*
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  address constMethod_end() const
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   551
                          { return (address)((intptr_t*)this + _constMethod_size); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   553
  // Last short in ConstMethod*
15601
df8faef6efaf 8007320: NPG: move method annotations
coleenp
parents: 15464
diff changeset
   554
  u2* last_u2_element() const;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   555
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   556
 public:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   557
  // Printing
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   558
  void print_on      (outputStream* st) const;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   559
  void print_value_on(outputStream* st) const;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   560
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   561
  const char* internal_name() const { return "{constMethod}"; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   562
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   563
  // Verify
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   564
  void verify_on(outputStream* st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   566
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49364
diff changeset
   567
#endif // SHARE_OOPS_CONSTMETHOD_HPP