hotspot/src/share/vm/oops/constMethodOop.hpp
author stefank
Tue, 23 Nov 2010 13:22:55 -0800
changeset 7397 5b173b4ca846
parent 5547 f4b087cbb361
child 12937 0032fb2caff6
permissions -rw-r--r--
6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
     2
 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 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
#include "oops/typeArrayOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// An constMethodOop represents portions of a Java method which
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// do not vary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// Memory layout (each line represents a word). Note that most
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// applications load thousands of methods, so keeping the size of this
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// structure small has a big impact on footprint.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// |------------------------------------------------------|
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// | header                                               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// | klass                                                |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// |------------------------------------------------------|
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// | fingerprint 1                                        |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// | fingerprint 2                                        |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// | method                         (oop)                 |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
// | stackmap_data                  (oop)                 |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// | exception_table                (oop)                 |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// | constMethod_size                                     |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
// | interp_kind  | flags    | code_size                  |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// | name index              | signature index            |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// | method_idnum            | generic_signature_index    |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
// |------------------------------------------------------|
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
// |                                                      |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// | byte codes                                           |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
// |                                                      |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
// |------------------------------------------------------|
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// | compressed linenumber table                          |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
// |  (see class CompressedLineNumberReadStream)          |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
// |  (note that length is unknown until decompressed)    |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
// |  (access flags bit tells whether table is present)   |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
// |  (indexed from start of constMethodOop)              |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
// |  (elements not necessarily sorted!)                  |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
// |------------------------------------------------------|
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
// | localvariable table elements + length (length last)  |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
// |  (length is u2, elements are 6-tuples of u2)         |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
// |  (see class LocalVariableTableElement)               |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
// |  (access flags bit tells whether table is present)   |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
// |  (indexed from end of contMethodOop)                 |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
// |------------------------------------------------------|
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
// | checked exceptions elements + length (length last)   |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
// |  (length is u2, elements are u2)                     |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
// |  (see class CheckedExceptionElement)                 |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
// |  (access flags bit tells whether table is present)   |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
// |  (indexed from end of constMethodOop)                |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
// |------------------------------------------------------|
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
// Utitily class decribing elements in checked exceptions table inlined in methodOop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
class CheckedExceptionElement VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  u2 class_cp_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
// Utitily class decribing elements in local variable table inlined in methodOop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
class LocalVariableTableElement VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  u2 start_bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  u2 length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  u2 name_cp_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  u2 descriptor_cp_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  u2 signature_cp_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  u2 slot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
class constMethodOopDesc : public oopDesc {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  friend class constMethodKlass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    _has_linenumber_table = 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    _has_checked_exceptions = 2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    _has_localvariable_table = 4
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  // Bit vector of signature
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // Callers interpret 0=not initialized yet and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // -1=too many args to fix, must parse the slow way.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  // The real initial value is special to account for nonatomicity of 64 bit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  // loads and stores.  This value may updated and read without a lock by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  // multiple threads, so is volatile.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  volatile uint64_t _fingerprint;
1894
5c343868d071 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 1
diff changeset
   113
  volatile bool     _is_conc_safe; // if true, safe for concurrent GC processing
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  oop* oop_block_beg() const { return adr_method(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  oop* oop_block_end() const { return adr_exception_table() + 1; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // The oop block.  See comment in klass.hpp before making changes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  // Backpointer to non-const methodOop (needed for some JVMTI operations)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  methodOop         _method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  // Raw stackmap data for the method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  typeArrayOop      _stackmap_data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  // The exception handler table. 4-tuples of ints [start_pc, end_pc,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  // handler_pc, catch_type index] For methods with no exceptions the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  // table is pointing to Universe::the_empty_int_array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  typeArrayOop      _exception_table;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  // End of the oop block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  int               _constMethod_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  jbyte             _interpreter_kind;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  jbyte             _flags;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  // Size of Java bytecodes allocated immediately after methodOop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  u2                _code_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  u2                _name_index;                 // Method name (index in constant pool)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  u2                _signature_index;            // Method signature (index in constant pool)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  u2                _method_idnum;               // unique identification number for the method within the class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
                                                 // initially corresponds to the index into the methods array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
                                                 // but this may change with redefinition
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  u2                _generic_signature_index;    // Generic signature (index in constant pool, 0 if absent)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // Inlined tables
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  void set_inlined_tables_length(int checked_exceptions_len,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
                                 int compressed_line_number_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
                                 int localvariable_table_len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  bool has_linenumber_table() const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    { return (_flags & _has_linenumber_table) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  bool has_checked_exceptions() const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    { return (_flags & _has_checked_exceptions) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  bool has_localvariable_table() const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    { return (_flags & _has_localvariable_table) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  void set_interpreter_kind(int kind)      { _interpreter_kind = kind; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  int  interpreter_kind(void) const        { return _interpreter_kind; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  // backpointer to non-const methodOop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  methodOop method() const                 { return _method; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  void set_method(methodOop m)             { oop_store_without_check((oop*)&_method, (oop) m); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  // stackmap table data
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  typeArrayOop stackmap_data() const { return _stackmap_data; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  void set_stackmap_data(typeArrayOop sd) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    oop_store_without_check((oop*)&_stackmap_data, (oop)sd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  bool has_stackmap_table() const { return _stackmap_data != NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  // exception handler table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  typeArrayOop exception_table() const           { return _exception_table; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  void set_exception_table(typeArrayOop e)       { oop_store_without_check((oop*) &_exception_table, (oop) e); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  bool has_exception_handler() const             { return exception_table() != NULL && exception_table()->length() > 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  void init_fingerprint() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    const uint64_t initval = CONST64(0x8000000000000000);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    _fingerprint = initval;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  uint64_t fingerprint() const                   {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    // Since reads aren't atomic for 64 bits, if any of the high or low order
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    // word is the initial value, return 0.  See init_fingerprint for initval.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    uint high_fp = (uint)(_fingerprint >> 32);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    if ((int) _fingerprint == 0 || high_fp == 0x80000000) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
      return 0L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
      return _fingerprint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  uint64_t set_fingerprint(uint64_t new_fingerprint) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    // Assert only valid if complete/valid 64 bit _fingerprint value is read.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
    uint64_t oldfp = fingerprint();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    _fingerprint = new_fingerprint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    assert(oldfp == 0L || new_fingerprint == oldfp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
           "fingerprint cannot change");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    assert(((new_fingerprint >> 32) != 0x80000000) && (int)new_fingerprint !=0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
           "fingerprint should call init to set initial value");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    return new_fingerprint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  // name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  int name_index() const                         { return _name_index; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  void set_name_index(int index)                 { _name_index = index; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  // signature
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  int signature_index() const                    { return _signature_index; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  void set_signature_index(int index)            { _signature_index = index; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  // generics support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  int generic_signature_index() const            { return _generic_signature_index; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  void set_generic_signature_index(int index)    { _generic_signature_index = index; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  // Sizing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  static int header_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    return sizeof(constMethodOopDesc)/HeapWordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  // Object size needed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  static int object_size(int code_size, int compressed_line_number_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
                         int local_variable_table_length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
                         int checked_exceptions_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  int object_size() const                 { return _constMethod_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  void set_constMethod_size(int size)     { _constMethod_size = size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  // Is object parsable by gc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  bool object_is_parsable()               { return object_size() > 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  // code size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  int code_size() const                          { return _code_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  void set_code_size(int size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
    assert(max_method_code_size < (1 << 16),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
           "u2 is too small to hold method code size in general");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    assert(0 <= size && size <= max_method_code_size, "invalid code size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
    _code_size = size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  // linenumber table - note that length is unknown until decompression,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  // see class CompressedLineNumberReadStream.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  u_char* compressed_linenumber_table() const;         // not preserved by gc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  u2* checked_exceptions_length_addr() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  u2* localvariable_table_length_addr() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  // checked exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  int checked_exceptions_length() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  CheckedExceptionElement* checked_exceptions_start() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  // localvariable table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  int localvariable_table_length() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  LocalVariableTableElement* localvariable_table_start() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  // byte codes
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 2105
diff changeset
   267
  void    set_code(address code) {
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 2105
diff changeset
   268
    if (code_size() > 0) {
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 2105
diff changeset
   269
      memcpy(code_base(), code, code_size());
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 2105
diff changeset
   270
    }
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 2105
diff changeset
   271
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  address code_base() const            { return (address) (this+1); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  address code_end() const             { return code_base() + code_size(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  bool    contains(address bcp) const  { return code_base() <= bcp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
                                                     && bcp < code_end(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  // Offset to bytecodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  static ByteSize codes_offset()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
                            { return in_ByteSize(sizeof(constMethodOopDesc)); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  // interpreter support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  static ByteSize exception_table_offset()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
               { return byte_offset_of(constMethodOopDesc, _exception_table); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  // Garbage collection support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  oop*  adr_method() const             { return (oop*)&_method;          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  oop*  adr_stackmap_data() const      { return (oop*)&_stackmap_data;   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  oop*  adr_exception_table() const    { return (oop*)&_exception_table; }
1894
5c343868d071 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 1
diff changeset
   288
  bool is_conc_safe() { return _is_conc_safe; }
5c343868d071 6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents: 1
diff changeset
   289
  void set_is_conc_safe(bool v) { _is_conc_safe = v; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  // Unique id for the method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  static const u2 MAX_IDNUM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  static const u2 UNSET_IDNUM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  u2 method_idnum() const                        { return _method_idnum; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  void set_method_idnum(u2 idnum)                { _method_idnum = idnum; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  // Since the size of the compressed line number table is unknown, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  // offsets of the other variable sized sections are computed backwards
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  // from the end of the constMethodOop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  // First byte after constMethodOop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  address constMethod_end() const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
                          { return (address)((oop*)this + _constMethod_size); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  // Last short in constMethodOop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  u2* last_u2_element() const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
                                         { return (u2*)constMethod_end() - 1; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   310
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   311
#endif // SHARE_VM_OOPS_CONSTMETHODOOP_HPP