constMethod.hpp 14.0 KB
Newer Older
D
duke 已提交
1
/*
2
 * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
D
duke 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
19 20 21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
D
duke 已提交
22 23 24
 *
 */

25 26 27 28 29
#ifndef SHARE_VM_OOPS_CONSTMETHODOOP_HPP
#define SHARE_VM_OOPS_CONSTMETHODOOP_HPP

#include "oops/oop.hpp"

30
// An ConstMethod* represents portions of a Java method which
D
duke 已提交
31 32 33 34 35 36 37 38 39 40 41 42
// do not vary.
//
// Memory layout (each line represents a word). Note that most
// applications load thousands of methods, so keeping the size of this
// structure small has a big impact on footprint.
//
// |------------------------------------------------------|
// | header                                               |
// | klass                                                |
// |------------------------------------------------------|
// | fingerprint 1                                        |
// | fingerprint 2                                        |
43
// | constants                      (oop)                 |
D
duke 已提交
44 45 46 47
// | stackmap_data                  (oop)                 |
// | constMethod_size                                     |
// | interp_kind  | flags    | code_size                  |
// | name index              | signature index            |
48
// | method_idnum            | max_stack                  |
D
duke 已提交
49 50 51 52 53 54 55 56 57
// |------------------------------------------------------|
// |                                                      |
// | byte codes                                           |
// |                                                      |
// |------------------------------------------------------|
// | compressed linenumber table                          |
// |  (see class CompressedLineNumberReadStream)          |
// |  (note that length is unknown until decompressed)    |
// |  (access flags bit tells whether table is present)   |
58
// |  (indexed from start of ConstMethod*)                |
D
duke 已提交
59 60 61 62 63 64
// |  (elements not necessarily sorted!)                  |
// |------------------------------------------------------|
// | localvariable table elements + length (length last)  |
// |  (length is u2, elements are 6-tuples of u2)         |
// |  (see class LocalVariableTableElement)               |
// |  (access flags bit tells whether table is present)   |
65
// |  (indexed from end of ConstMethod*)                  |
66 67 68 69 70
// |------------------------------------------------------|
// | exception table + length (length last)               |
// |  (length is u2, elements are 4-tuples of u2)         |
// |  (see class ExceptionTableElement)                   |
// |  (access flags bit tells whether table is present)   |
71
// |  (indexed from end of ConstMethod*)                  |
D
duke 已提交
72 73 74 75 76
// |------------------------------------------------------|
// | checked exceptions elements + length (length last)   |
// |  (length is u2, elements are u2)                     |
// |  (see class CheckedExceptionElement)                 |
// |  (access flags bit tells whether table is present)   |
77 78 79 80
// |  (indexed from end of ConstMethod*)                  |
// |------------------------------------------------------|
// | generic signature index (u2)                         |
// |  (indexed from start of constMethodOop)              |
D
duke 已提交
81 82 83
// |------------------------------------------------------|


84
// Utitily class decribing elements in checked exceptions table inlined in Method*.
D
duke 已提交
85 86 87 88 89 90
class CheckedExceptionElement VALUE_OBJ_CLASS_SPEC {
 public:
  u2 class_cp_index;
};


91
// Utitily class decribing elements in local variable table inlined in Method*.
D
duke 已提交
92 93 94 95 96 97 98 99 100 101
class LocalVariableTableElement VALUE_OBJ_CLASS_SPEC {
 public:
  u2 start_bci;
  u2 length;
  u2 name_cp_index;
  u2 descriptor_cp_index;
  u2 signature_cp_index;
  u2 slot;
};

102 103 104 105 106 107 108 109 110
// Utitily class describing elements in exception table
class ExceptionTableElement VALUE_OBJ_CLASS_SPEC {
 public:
  u2 start_pc;
  u2 end_pc;
  u2 handler_pc;
  u2 catch_type_index;
};

111 112

class ConstMethod : public MetaspaceObj {
D
duke 已提交
113
  friend class VMStructs;
114 115 116 117

public:
  typedef enum { NORMAL, OVERPASS } MethodType;

D
duke 已提交
118 119 120 121
private:
  enum {
    _has_linenumber_table = 1,
    _has_checked_exceptions = 2,
122
    _has_localvariable_table = 4,
123
    _has_exception_table = 8,
124 125
    _has_generic_signature = 16,
    _is_overpass = 32
D
duke 已提交
126 127 128 129 130 131 132 133 134 135
  };

  // Bit vector of signature
  // Callers interpret 0=not initialized yet and
  // -1=too many args to fix, must parse the slow way.
  // The real initial value is special to account for nonatomicity of 64 bit
  // loads and stores.  This value may updated and read without a lock by
  // multiple threads, so is volatile.
  volatile uint64_t _fingerprint;

136
  ConstantPool*     _constants;                  // Constant pool
D
duke 已提交
137 138

  // Raw stackmap data for the method
139
  Array<u1>*        _stackmap_data;
D
duke 已提交
140 141 142 143 144

  int               _constMethod_size;
  jbyte             _interpreter_kind;
  jbyte             _flags;

145
  // Size of Java bytecodes allocated immediately after Method*.
D
duke 已提交
146 147 148 149 150 151
  u2                _code_size;
  u2                _name_index;                 // Method name (index in constant pool)
  u2                _signature_index;            // Method signature (index in constant pool)
  u2                _method_idnum;               // unique identification number for the method within the class
                                                 // initially corresponds to the index into the methods array.
                                                 // but this may change with redefinition
152
  u2                _max_stack;                  // Maximum number of entries on the expression stack
D
duke 已提交
153

154 155 156

  // Constructor
  ConstMethod(int byte_code_size,
157 158 159 160
              int compressed_line_number_size,
              int localvariable_table_length,
              int exception_table_length,
              int checked_exceptions_length,
161
              u2  generic_signature_index,
162 163
              MethodType is_overpass,
              int size);
D
duke 已提交
164
public:
165

166
  static ConstMethod* allocate(ClassLoaderData* loader_data,
167 168 169 170 171
                               int byte_code_size,
                               int compressed_line_number_size,
                               int localvariable_table_length,
                               int exception_table_length,
                               int checked_exceptions_length,
172
                               u2  generic_signature_index,
173 174
                               MethodType mt,
                               TRAPS);
175 176 177

  bool is_constMethod() const { return true; }

D
duke 已提交
178
  // Inlined tables
179 180
  void set_inlined_tables_length(u2  generic_signature_index,
                                 int checked_exceptions_len,
D
duke 已提交
181
                                 int compressed_line_number_size,
182 183
                                 int localvariable_table_len,
                                 int exception_table_len);
D
duke 已提交
184

185 186 187
  bool has_generic_signature() const
    { return (_flags & _has_generic_signature) != 0; }

D
duke 已提交
188 189 190 191 192 193 194 195 196
  bool has_linenumber_table() const
    { return (_flags & _has_linenumber_table) != 0; }

  bool has_checked_exceptions() const
    { return (_flags & _has_checked_exceptions) != 0; }

  bool has_localvariable_table() const
    { return (_flags & _has_localvariable_table) != 0; }

197 198 199
  bool has_exception_handler() const
    { return (_flags & _has_exception_table) != 0; }

200 201 202 203 204 205 206 207 208 209 210 211 212
  MethodType method_type() const {
    return ((_flags & _is_overpass) == 0) ? NORMAL : OVERPASS;
  }

  void set_method_type(MethodType mt) {
    if (mt == NORMAL) {
      _flags &= ~(_is_overpass);
    } else {
      _flags |= _is_overpass;
    }
  }


D
duke 已提交
213 214 215
  void set_interpreter_kind(int kind)      { _interpreter_kind = kind; }
  int  interpreter_kind(void) const        { return _interpreter_kind; }

216
  // constant pool
217 218
  ConstantPool* constants() const        { return _constants; }
  void set_constants(ConstantPool* c)    { _constants = c; }
D
duke 已提交
219

220
  Method* method() const;
D
duke 已提交
221 222

  // stackmap table data
223 224
  Array<u1>* stackmap_data() const { return _stackmap_data; }
  void set_stackmap_data(Array<u1>* sd) { _stackmap_data = sd; }
D
duke 已提交
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
  bool has_stackmap_table() const { return _stackmap_data != NULL; }

  void init_fingerprint() {
    const uint64_t initval = CONST64(0x8000000000000000);
    _fingerprint = initval;
  }

  uint64_t fingerprint() const                   {
    // Since reads aren't atomic for 64 bits, if any of the high or low order
    // word is the initial value, return 0.  See init_fingerprint for initval.
    uint high_fp = (uint)(_fingerprint >> 32);
    if ((int) _fingerprint == 0 || high_fp == 0x80000000) {
      return 0L;
    } else {
      return _fingerprint;
    }
  }

  uint64_t set_fingerprint(uint64_t new_fingerprint) {
#ifdef ASSERT
    // Assert only valid if complete/valid 64 bit _fingerprint value is read.
    uint64_t oldfp = fingerprint();
#endif // ASSERT
    _fingerprint = new_fingerprint;
    assert(oldfp == 0L || new_fingerprint == oldfp,
           "fingerprint cannot change");
    assert(((new_fingerprint >> 32) != 0x80000000) && (int)new_fingerprint !=0,
           "fingerprint should call init to set initial value");
    return new_fingerprint;
  }

  // name
  int name_index() const                         { return _name_index; }
  void set_name_index(int index)                 { _name_index = index; }

  // signature
  int signature_index() const                    { return _signature_index; }
  void set_signature_index(int index)            { _signature_index = index; }

  // generics support
265 266 267 268 269 270 271 272 273 274 275 276
  int generic_signature_index() const            {
    if (has_generic_signature()) {
      return *generic_signature_index_addr();
    } else {
      return 0;
    }
  }
  void set_generic_signature_index(u2 index)    {
    assert(has_generic_signature(), "");
    u2* addr = generic_signature_index_addr();
    *addr = index;
  }
D
duke 已提交
277 278 279

  // Sizing
  static int header_size() {
280
    return sizeof(ConstMethod)/HeapWordSize;
D
duke 已提交
281 282
  }

283 284
  // Size needed
  static int size(int code_size, int compressed_line_number_size,
D
duke 已提交
285
                         int local_variable_table_length,
286
                         int exception_table_length,
287 288
                         int checked_exceptions_length,
                         u2  generic_signature_index);
D
duke 已提交
289

290
  int size() const                    { return _constMethod_size;}
D
duke 已提交
291 292 293 294 295 296 297 298 299 300 301 302 303 304
  void set_constMethod_size(int size)     { _constMethod_size = size; }

  // code size
  int code_size() const                          { return _code_size; }
  void set_code_size(int size) {
    assert(max_method_code_size < (1 << 16),
           "u2 is too small to hold method code size in general");
    assert(0 <= size && size <= max_method_code_size, "invalid code size");
    _code_size = size;
  }

  // linenumber table - note that length is unknown until decompression,
  // see class CompressedLineNumberReadStream.
  u_char* compressed_linenumber_table() const;         // not preserved by gc
305
  u2* generic_signature_index_addr() const;
D
duke 已提交
306 307
  u2* checked_exceptions_length_addr() const;
  u2* localvariable_table_length_addr() const;
308
  u2* exception_table_length_addr() const;
D
duke 已提交
309 310 311 312 313 314 315 316 317

  // checked exceptions
  int checked_exceptions_length() const;
  CheckedExceptionElement* checked_exceptions_start() const;

  // localvariable table
  int localvariable_table_length() const;
  LocalVariableTableElement* localvariable_table_start() const;

318 319 320 321
  // exception table
  int exception_table_length() const;
  ExceptionTableElement* exception_table_start() const;

D
duke 已提交
322
  // byte codes
323 324 325 326 327
  void    set_code(address code) {
    if (code_size() > 0) {
      memcpy(code_base(), code, code_size());
    }
  }
D
duke 已提交
328 329 330 331 332 333
  address code_base() const            { return (address) (this+1); }
  address code_end() const             { return code_base() + code_size(); }
  bool    contains(address bcp) const  { return code_base() <= bcp
                                                     && bcp < code_end(); }
  // Offset to bytecodes
  static ByteSize codes_offset()
334
                            { return in_ByteSize(sizeof(ConstMethod)); }
D
duke 已提交
335

336
  static ByteSize constants_offset()
337
                            { return byte_offset_of(ConstMethod, _constants); }
D
duke 已提交
338

339 340 341
  static ByteSize max_stack_offset()
                            { return byte_offset_of(ConstMethod, _max_stack); }

D
duke 已提交
342 343 344 345 346 347
  // Unique id for the method
  static const u2 MAX_IDNUM;
  static const u2 UNSET_IDNUM;
  u2 method_idnum() const                        { return _method_idnum; }
  void set_method_idnum(u2 idnum)                { _method_idnum = idnum; }

348 349 350 351
  // max stack
  int  max_stack() const                         { return _max_stack; }
  void set_max_stack(int size)                   { _max_stack = size; }

352 353 354 355 356
  // Deallocation for RedefineClasses
  void deallocate_contents(ClassLoaderData* loader_data);
  bool is_klass() const { return false; }
  DEBUG_ONLY(bool on_stack() { return false; })

D
duke 已提交
357 358 359
private:
  // Since the size of the compressed line number table is unknown, the
  // offsets of the other variable sized sections are computed backwards
360
  // from the end of the ConstMethod*.
D
duke 已提交
361

362
  // First byte after ConstMethod*
D
duke 已提交
363 364 365
  address constMethod_end() const
                          { return (address)((oop*)this + _constMethod_size); }

366
  // Last short in ConstMethod*
D
duke 已提交
367 368
  u2* last_u2_element() const
                                         { return (u2*)constMethod_end() - 1; }
369 370 371 372 373 374 375 376 377 378

 public:
  // Printing
  void print_on      (outputStream* st) const;
  void print_value_on(outputStream* st) const;

  const char* internal_name() const { return "{constMethod}"; }

  // Verify
  void verify_on(outputStream* st);
D
duke 已提交
379
};
380 381

#endif // SHARE_VM_OOPS_CONSTMETHODOOP_HPP