hotspot/src/share/vm/oops/constMethod.hpp
author jiangli
Tue, 11 Dec 2012 12:41:31 -0500
changeset 14745 03904dd8649b
parent 14586 1262473e8fc1
child 15102 0a86564e5f61
permissions -rw-r--r--
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing. Summary: Move _max_locals and _size_of_parameters to ConstMethod for better sharing. Reviewed-by: coleenp, minqi, jrose
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
12937
0032fb2caff6 7172967: Eliminate constMethod's _method backpointer to methodOop.
jiangli
parents: 7397
diff changeset
     2
 * Copyright (c) 2003, 2012, 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
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#ifndef SHARE_VM_OOPS_CONSTMETHODOOP_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_OOPS_CONSTMETHODOOP_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "oops/oop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    30
// An ConstMethod* represents portions of a Java method which
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// do not vary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// Memory layout (each line represents a word). Note that most
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// applications load thousands of methods, so keeping the size of this
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// structure small has a big impact on footprint.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// |------------------------------------------------------|
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// | header                                               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// | klass                                                |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// |------------------------------------------------------|
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// | fingerprint 1                                        |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// | fingerprint 2                                        |
12937
0032fb2caff6 7172967: Eliminate constMethod's _method backpointer to methodOop.
jiangli
parents: 7397
diff changeset
    43
// | constants                      (oop)                 |
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// | stackmap_data                  (oop)                 |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
// | constMethod_size                                     |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// | interp_kind  | flags    | code_size                  |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// | name index              | signature index            |
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
    48
// | method_idnum            | max_stack                  |
14745
03904dd8649b 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 14586
diff changeset
    49
// | max_locals              | size_of_parameters         |
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// |------------------------------------------------------|
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
// |                                                      |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
// | byte codes                                           |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// |                                                      |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
// |------------------------------------------------------|
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
// | compressed linenumber table                          |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// |  (see class CompressedLineNumberReadStream)          |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
// |  (note that length is unknown until decompressed)    |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
// |  (access flags bit tells whether table is present)   |
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
    59
// |  (indexed from start of ConstMethod*)                |
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
// |  (elements not necessarily sorted!)                  |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
// |------------------------------------------------------|
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
// | localvariable table elements + length (length last)  |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
// |  (length is u2, elements are 6-tuples of u2)         |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
// |  (see class LocalVariableTableElement)               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
// |  (access flags bit tells whether table is present)   |
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
    66
// |  (indexed from end of ConstMethod*)                  |
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
    67
// |------------------------------------------------------|
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
    68
// | exception table + length (length last)               |
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
    69
// |  (length is u2, elements are 4-tuples of u2)         |
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
    70
// |  (see class ExceptionTableElement)                   |
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
    71
// |  (access flags bit tells whether table is present)   |
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
    72
// |  (indexed from end of ConstMethod*)                  |
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
// |------------------------------------------------------|
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
// | checked exceptions elements + length (length last)   |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
// |  (length is u2, elements are u2)                     |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
// |  (see class CheckedExceptionElement)                 |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
// |  (access flags bit tells whether table is present)   |
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
    78
// |  (indexed from end of ConstMethod*)                  |
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
    79
// |------------------------------------------------------|
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
    80
// | generic signature index (u2)                         |
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
    81
// |  (indexed from start of constMethodOop)              |
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
// |------------------------------------------------------|
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    85
// Utitily class decribing elements in checked exceptions table inlined in Method*.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
class CheckedExceptionElement VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  u2 class_cp_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
    92
// Utitily class decribing elements in local variable table inlined in Method*.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
class LocalVariableTableElement VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  u2 start_bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  u2 length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  u2 name_cp_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  u2 descriptor_cp_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  u2 signature_cp_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  u2 slot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   103
// Utitily class describing elements in exception table
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   104
class ExceptionTableElement VALUE_OBJ_CLASS_SPEC {
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   105
 public:
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   106
  u2 start_pc;
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   107
  u2 end_pc;
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   108
  u2 handler_pc;
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   109
  u2 catch_type_index;
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   110
};
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   111
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   112
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   113
class ConstMethod : public MetaspaceObj {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  friend class VMStructs;
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   115
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   116
public:
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   117
  typedef enum { NORMAL, OVERPASS } MethodType;
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   118
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    _has_linenumber_table = 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    _has_checked_exceptions = 2,
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   123
    _has_localvariable_table = 4,
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   124
    _has_exception_table = 8,
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   125
    _has_generic_signature = 16,
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   126
    _is_overpass = 32
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // Bit vector of signature
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  // Callers interpret 0=not initialized yet and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  // -1=too many args to fix, must parse the slow way.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  // The real initial value is special to account for nonatomicity of 64 bit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  // loads and stores.  This value may updated and read without a lock by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  // multiple threads, so is volatile.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  volatile uint64_t _fingerprint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   137
  ConstantPool*     _constants;                  // Constant pool
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  // Raw stackmap data for the method
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   140
  Array<u1>*        _stackmap_data;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  int               _constMethod_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  jbyte             _interpreter_kind;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  jbyte             _flags;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   146
  // Size of Java bytecodes allocated immediately after Method*.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  u2                _code_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  u2                _name_index;                 // Method name (index in constant pool)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  u2                _signature_index;            // Method signature (index in constant pool)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  u2                _method_idnum;               // unique identification number for the method within the class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
                                                 // initially corresponds to the index into the methods array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
                                                 // 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
   153
  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
   154
  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
   155
  u2                _size_of_parameters;         // size of the parameter block (receiver + arguments) in words
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   156
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   157
  // Constructor
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   158
  ConstMethod(int byte_code_size,
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   159
              int compressed_line_number_size,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   160
              int localvariable_table_length,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   161
              int exception_table_length,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   162
              int checked_exceptions_length,
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   163
              u2  generic_signature_index,
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   164
              MethodType is_overpass,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   165
              int size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
public:
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   167
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   168
  static ConstMethod* allocate(ClassLoaderData* loader_data,
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   169
                               int byte_code_size,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   170
                               int compressed_line_number_size,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   171
                               int localvariable_table_length,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   172
                               int exception_table_length,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   173
                               int checked_exceptions_length,
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   174
                               u2  generic_signature_index,
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   175
                               MethodType mt,
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   176
                               TRAPS);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   177
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   178
  bool is_constMethod() const { return true; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   179
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  // Inlined tables
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   181
  void set_inlined_tables_length(u2  generic_signature_index,
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   182
                                 int checked_exceptions_len,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
                                 int compressed_line_number_size,
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   184
                                 int localvariable_table_len,
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   185
                                 int exception_table_len);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   187
  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
   188
    { 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
   189
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  bool has_linenumber_table() const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    { return (_flags & _has_linenumber_table) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  bool has_checked_exceptions() const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    { return (_flags & _has_checked_exceptions) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  bool has_localvariable_table() const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    { return (_flags & _has_localvariable_table) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   199
  bool has_exception_handler() const
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   200
    { return (_flags & _has_exception_table) != 0; }
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   201
14385
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   202
  MethodType method_type() const {
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   203
    return ((_flags & _is_overpass) == 0) ? NORMAL : OVERPASS;
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   204
  }
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   205
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   206
  void set_method_type(MethodType mt) {
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   207
    if (mt == NORMAL) {
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   208
      _flags &= ~(_is_overpass);
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   209
    } else {
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   210
      _flags |= _is_overpass;
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   211
    }
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   212
  }
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   213
959bbcc16725 7200776: Implement default methods in interfaces
kamg
parents: 13728
diff changeset
   214
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  void set_interpreter_kind(int kind)      { _interpreter_kind = kind; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  int  interpreter_kind(void) const        { return _interpreter_kind; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
12937
0032fb2caff6 7172967: Eliminate constMethod's _method backpointer to methodOop.
jiangli
parents: 7397
diff changeset
   218
  // constant pool
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   219
  ConstantPool* constants() const        { return _constants; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   220
  void set_constants(ConstantPool* c)    { _constants = c; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   222
  Method* method() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  // stackmap table data
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   225
  Array<u1>* stackmap_data() const { return _stackmap_data; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   226
  void set_stackmap_data(Array<u1>* sd) { _stackmap_data = sd; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  bool has_stackmap_table() const { return _stackmap_data != NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  void init_fingerprint() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    const uint64_t initval = CONST64(0x8000000000000000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    _fingerprint = initval;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  uint64_t fingerprint() const                   {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    // Since reads aren't atomic for 64 bits, if any of the high or low order
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    // word is the initial value, return 0.  See init_fingerprint for initval.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    uint high_fp = (uint)(_fingerprint >> 32);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    if ((int) _fingerprint == 0 || high_fp == 0x80000000) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
      return 0L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
      return _fingerprint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  uint64_t set_fingerprint(uint64_t new_fingerprint) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    // Assert only valid if complete/valid 64 bit _fingerprint value is read.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    uint64_t oldfp = fingerprint();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    _fingerprint = new_fingerprint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    assert(oldfp == 0L || new_fingerprint == oldfp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
           "fingerprint cannot change");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
    assert(((new_fingerprint >> 32) != 0x80000000) && (int)new_fingerprint !=0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
           "fingerprint should call init to set initial value");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    return new_fingerprint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  // name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  int name_index() const                         { return _name_index; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  void set_name_index(int index)                 { _name_index = index; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  // signature
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  int signature_index() const                    { return _signature_index; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  void set_signature_index(int index)            { _signature_index = index; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  // generics support
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   267
  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
   268
    if (has_generic_signature()) {
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   269
      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
   270
    } else {
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   271
      return 0;
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   272
    }
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   273
  }
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   274
  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
   275
    assert(has_generic_signature(), "");
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   276
    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
   277
    *addr = index;
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   278
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  // Sizing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  static int header_size() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   282
    return sizeof(ConstMethod)/HeapWordSize;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   285
  // Size needed
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   286
  static int size(int code_size, int compressed_line_number_size,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
                         int local_variable_table_length,
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   288
                         int exception_table_length,
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   289
                         int checked_exceptions_length,
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   290
                         u2  generic_signature_index);
1
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 size() const                    { return _constMethod_size;}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  void set_constMethod_size(int size)     { _constMethod_size = size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  // code size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  int code_size() const                          { return _code_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  void set_code_size(int size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
    assert(max_method_code_size < (1 << 16),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
           "u2 is too small to hold method code size in general");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
    assert(0 <= size && size <= max_method_code_size, "invalid code size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
    _code_size = size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  // linenumber table - note that length is unknown until decompression,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  // see class CompressedLineNumberReadStream.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  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
   307
  u2* generic_signature_index_addr() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  u2* checked_exceptions_length_addr() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  u2* localvariable_table_length_addr() const;
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   310
  u2* exception_table_length_addr() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  // checked exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  int checked_exceptions_length() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  CheckedExceptionElement* checked_exceptions_start() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  // localvariable table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  int localvariable_table_length() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  LocalVariableTableElement* localvariable_table_start() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
13282
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   320
  // exception table
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   321
  int exception_table_length() const;
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   322
  ExceptionTableElement* exception_table_start() const;
9872915dd78d 7178145: Change constMethodOop::_exception_table to optionally inlined u2 table.
jiangli
parents: 12937
diff changeset
   323
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  // byte codes
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 2105
diff changeset
   325
  void    set_code(address code) {
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 2105
diff changeset
   326
    if (code_size() > 0) {
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 2105
diff changeset
   327
      memcpy(code_base(), code, code_size());
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 2105
diff changeset
   328
    }
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 2105
diff changeset
   329
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  address code_base() const            { return (address) (this+1); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  address code_end() const             { return code_base() + code_size(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  bool    contains(address bcp) const  { return code_base() <= bcp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
                                                     && bcp < code_end(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  // Offset to bytecodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  static ByteSize codes_offset()
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   336
                            { return in_ByteSize(sizeof(ConstMethod)); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   338
  static ByteSize constants_offset()
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   339
                            { return byte_offset_of(ConstMethod, _constants); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   341
  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
   342
                            { 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
   343
  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
   344
                            { 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
   345
  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
   346
                            { 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
   347
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   348
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  // Unique id for the method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  static const u2 MAX_IDNUM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  static const u2 UNSET_IDNUM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  u2 method_idnum() const                        { return _method_idnum; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  void set_method_idnum(u2 idnum)                { _method_idnum = idnum; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
14586
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   355
  // max stack
1262473e8fc1 8003848: Make ConstMethod::generic_signature_index optional and move Method::_max_stack to ConstMethod.
jiangli
parents: 14385
diff changeset
   356
  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
   357
  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
   358
14745
03904dd8649b 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 14586
diff changeset
   359
  // max locals
03904dd8649b 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 14586
diff changeset
   360
  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
   361
  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
   362
03904dd8649b 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 14586
diff changeset
   363
  // size of parameters
03904dd8649b 8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents: 14586
diff changeset
   364
  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
   365
  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
   366
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   367
  // Deallocation for RedefineClasses
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   368
  void deallocate_contents(ClassLoaderData* loader_data);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   369
  bool is_klass() const { return false; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   370
  DEBUG_ONLY(bool on_stack() { return false; })
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   371
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  // Since the size of the compressed line number table is unknown, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  // 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
   375
  // from the end of the ConstMethod*.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   377
  // First byte after ConstMethod*
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  address constMethod_end() const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
                          { return (address)((oop*)this + _constMethod_size); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   381
  // Last short in ConstMethod*
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  u2* last_u2_element() const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
                                         { return (u2*)constMethod_end() - 1; }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   384
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   385
 public:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   386
  // Printing
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   387
  void print_on      (outputStream* st) const;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   388
  void print_value_on(outputStream* st) const;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   389
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   390
  const char* internal_name() const { return "{constMethod}"; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   391
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   392
  // Verify
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13282
diff changeset
   393
  void verify_on(outputStream* st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   395
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   396
#endif // SHARE_VM_OOPS_CONSTMETHODOOP_HPP