src/hotspot/share/interpreter/bytecode.hpp
author coleenp
Wed, 13 Nov 2019 08:23:23 -0500
changeset 59056 15936b142f86
parent 53244 9807daeb47c4
permissions -rw-r--r--
8233913: Remove implicit conversion from Method* to methodHandle Summary: Fix call sites to use existing THREAD local or pass down THREAD local for shallower callsites. Make linkResolver methods return Method* for caller to handleize if needed. Reviewed-by: iklam, thartmann, hseigel
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49364
diff changeset
     2
 * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4567
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4567
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4567
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49364
diff changeset
    25
#ifndef SHARE_INTERPRETER_BYTECODE_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49364
diff changeset
    26
#define SHARE_INTERPRETER_BYTECODE_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    28
#include "interpreter/bytecodes.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    29
#include "memory/allocation.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    30
#include "oops/method.hpp"
46625
edefffab74e2 8183552: Move align functions to align.hpp
stefank
parents: 46620
diff changeset
    31
#include "utilities/align.hpp"
25715
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 13728
diff changeset
    32
#include "utilities/bytes.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    33
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
    34
class ciBytecodeStream;
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
    35
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
    36
// The base class for different kinds of bytecode abstractions.
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
    37
// Provides the primitive operations to manipulate code relative
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
    38
// to the bcp.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
    40
class Bytecode: public StackObj {
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
    41
 protected:
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
    42
  const address   _bcp;
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
    43
  const Bytecodes::Code _code;
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
    44
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  // Address computation
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
    46
  address addr_at            (int offset)        const     { return (address)_bcp + offset; }
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
    47
  u_char byte_at(int offset) const               { return *addr_at(offset); }
46620
750c6edff33b 8178500: Replace usages of round_to and round_down with align_up and align_down
stefank
parents: 46504
diff changeset
    48
  address aligned_addr_at    (int offset)        const     { return align_up(addr_at(offset), jintSize); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    50
  // Word access:
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    51
  int     get_Java_u2_at     (int offset)        const     { return Bytes::get_Java_u2(addr_at(offset)); }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    52
  int     get_Java_u4_at     (int offset)        const     { return Bytes::get_Java_u4(addr_at(offset)); }
43458
61ab1daf0fc8 8144518: ClassVerboseTest crashes on Windows
coleenp
parents: 33593
diff changeset
    53
  int     get_aligned_Java_u4_at(int offset)     const     { return Bytes::get_Java_u4(aligned_addr_at(offset)); }
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    54
  int     get_native_u2_at   (int offset)        const     { return Bytes::get_native_u2(addr_at(offset)); }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    55
  int     get_native_u4_at   (int offset)        const     { return Bytes::get_native_u4(addr_at(offset)); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
 public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    58
  Bytecode(Method* method, address bcp): _bcp(bcp), _code(Bytecodes::code_at(method, addr_at(0))) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    59
    assert(method != NULL, "this form requires a valid Method*");
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
    60
  }
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
    61
  // Defined in ciStreams.hpp
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
    62
  inline Bytecode(const ciBytecodeStream* stream, address bcp = NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
    64
  // Attributes
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
    65
  address bcp() const                            { return _bcp; }
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
    66
  int instruction_size() const                   { return Bytecodes::length_for_code_at(_code, bcp()); }
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
    67
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
    68
  Bytecodes::Code code() const                   { return _code; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  Bytecodes::Code java_code() const              { return Bytecodes::java_code(code()); }
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10979
diff changeset
    70
  Bytecodes::Code invoke_code() const            { return (code() == Bytecodes::_invokehandle) ? code() : java_code(); }
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
    71
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    72
  // Static functions for parsing bytecodes in place.
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    73
  int get_index_u1(Bytecodes::Code bc) const {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    74
    assert_same_format_as(bc); assert_index_size(1, bc);
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    75
    return *(jubyte*)addr_at(1);
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    76
  }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    77
  int get_index_u2(Bytecodes::Code bc, bool is_wide = false) const {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    78
    assert_same_format_as(bc, is_wide); assert_index_size(2, bc, is_wide);
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    79
    address p = addr_at(is_wide ? 2 : 1);
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    80
    if (can_use_native_byte_order(bc, is_wide))
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
    81
      return Bytes::get_native_u2(p);
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    82
    else  return Bytes::get_Java_u2(p);
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    83
  }
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
    84
  int get_index_u1_cpcache(Bytecodes::Code bc) const {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
    85
    assert_same_format_as(bc); assert_index_size(1, bc);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    86
    return *(jubyte*)addr_at(1) + ConstantPool::CPCACHE_INDEX_TAG;
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
    87
  }
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    88
  int get_index_u2_cpcache(Bytecodes::Code bc) const {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    89
    assert_same_format_as(bc); assert_index_size(2, bc); assert_native_index(bc);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    90
    return Bytes::get_native_u2(addr_at(1)) + ConstantPool::CPCACHE_INDEX_TAG;
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    91
  }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    92
  int get_index_u4(Bytecodes::Code bc) const {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    93
    assert_same_format_as(bc); assert_index_size(4, bc);
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    94
    assert(can_use_native_byte_order(bc), "");
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    95
    return Bytes::get_native_u4(addr_at(1));
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    96
  }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    97
  bool has_index_u4(Bytecodes::Code bc) const {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    98
    return bc == Bytecodes::_invokedynamic;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    99
  }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   100
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   101
  int get_offset_s2(Bytecodes::Code bc) const {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   102
    assert_same_format_as(bc); assert_offset_size(2, bc);
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   103
    return (jshort) Bytes::get_Java_u2(addr_at(1));
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   104
  }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   105
  int get_offset_s4(Bytecodes::Code bc) const {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   106
    assert_same_format_as(bc); assert_offset_size(4, bc);
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   107
    return (jint) Bytes::get_Java_u4(addr_at(1));
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   108
  }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   109
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   110
  int get_constant_u1(int offset, Bytecodes::Code bc) const {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   111
    assert_same_format_as(bc); assert_constant_size(1, offset, bc);
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   112
    return *(jbyte*)addr_at(offset);
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   113
  }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   114
  int get_constant_u2(int offset, Bytecodes::Code bc, bool is_wide = false) const {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   115
    assert_same_format_as(bc, is_wide); assert_constant_size(2, offset, bc, is_wide);
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   116
    return (jshort) Bytes::get_Java_u2(addr_at(offset));
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   117
  }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   118
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   119
  // These are used locally and also from bytecode streams.
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   120
  void assert_same_format_as(Bytecodes::Code testbc, bool is_wide = false) const NOT_DEBUG_RETURN;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   121
  static void assert_index_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DEBUG_RETURN;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   122
  static void assert_offset_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DEBUG_RETURN;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   123
  static void assert_constant_size(int required_size, int where, Bytecodes::Code bc, bool is_wide = false) NOT_DEBUG_RETURN;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   124
  static void assert_native_index(Bytecodes::Code bc, bool is_wide = false) NOT_DEBUG_RETURN;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   125
  static bool can_use_native_byte_order(Bytecodes::Code bc, bool is_wide = false) {
46504
38048d4d20e7 8180032: Unaligned pointer dereference in ClassFileParser
mikael
parents: 43458
diff changeset
   126
    return (!Endian::is_Java_byte_ordering_different() || Bytecodes::native_byte_order(bc /*, is_wide*/));
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   127
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
// Abstractions for lookupswitch bytecode
49364
601146c66cad 8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents: 49340
diff changeset
   132
class LookupswitchPair {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
 private:
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   134
  const address _bcp;
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   135
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   136
  address addr_at            (int offset)        const     { return _bcp + offset; }
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   137
  int     get_Java_u4_at     (int offset)        const     { return Bytes::get_Java_u4(addr_at(offset)); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
 public:
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   140
  LookupswitchPair(address bcp): _bcp(bcp) {}
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   141
  int  match() const                             { return get_Java_u4_at(0 * jintSize); }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   142
  int  offset() const                            { return get_Java_u4_at(1 * jintSize); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
class Bytecode_lookupswitch: public Bytecode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
 public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   148
  Bytecode_lookupswitch(Method* method, address bcp): Bytecode(method, bcp) { verify(); }
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   149
  // Defined in ciStreams.hpp
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   150
  inline Bytecode_lookupswitch(const ciBytecodeStream* stream);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  void verify() const PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // Attributes
43458
61ab1daf0fc8 8144518: ClassVerboseTest crashes on Windows
coleenp
parents: 33593
diff changeset
   154
  int  default_offset() const                    { return get_aligned_Java_u4_at(1 + 0*jintSize); }
61ab1daf0fc8 8144518: ClassVerboseTest crashes on Windows
coleenp
parents: 33593
diff changeset
   155
  int  number_of_pairs() const                   { return get_aligned_Java_u4_at(1 + 1*jintSize); }
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   156
  LookupswitchPair pair_at(int i) const          {
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   157
    assert(0 <= i && i < number_of_pairs(), "pair index out of bounds");
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   158
    return LookupswitchPair(aligned_addr_at(1 + (1 + i)*2*jintSize));
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   159
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
class Bytecode_tableswitch: public Bytecode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
 public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   164
  Bytecode_tableswitch(Method* method, address bcp): Bytecode(method, bcp) { verify(); }
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   165
  // Defined in ciStreams.hpp
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   166
  inline Bytecode_tableswitch(const ciBytecodeStream* stream);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  void verify() const PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  // Attributes
43458
61ab1daf0fc8 8144518: ClassVerboseTest crashes on Windows
coleenp
parents: 33593
diff changeset
   170
  int  default_offset() const                    { return get_aligned_Java_u4_at(1 + 0*jintSize); }
61ab1daf0fc8 8144518: ClassVerboseTest crashes on Windows
coleenp
parents: 33593
diff changeset
   171
  int  low_key() const                           { return get_aligned_Java_u4_at(1 + 1*jintSize); }
61ab1daf0fc8 8144518: ClassVerboseTest crashes on Windows
coleenp
parents: 33593
diff changeset
   172
  int  high_key() const                          { return get_aligned_Java_u4_at(1 + 2*jintSize); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  int  dest_offset_at(int i) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  int  length()                                  { return high_key()-low_key()+1; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   177
// Common code for decoding invokes and field references.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   179
class Bytecode_member_ref: public Bytecode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
 protected:
46727
6e4a84748e2c 8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents: 46625
diff changeset
   181
  const Method* _method;                          // method containing the bytecode
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
46727
6e4a84748e2c 8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents: 46625
diff changeset
   183
  Bytecode_member_ref(const methodHandle& method, int bci)  : Bytecode(method(), method()->bcp_from(bci)), _method(method()) {}
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   184
46727
6e4a84748e2c 8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents: 46625
diff changeset
   185
  const Method* method() const                 { return _method; }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   186
  ConstantPool* constants() const              { return _method->constants(); }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   187
  ConstantPoolCache* cpcache() const           { return _method->constants()->cache(); }
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10979
diff changeset
   188
  ConstantPoolCacheEntry* cpcache_entry() const;
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   189
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   190
 public:
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   191
  int          index() const;                    // cache index (loaded from instruction)
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   192
  int          pool_index() const;               // constant pool index
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10979
diff changeset
   193
  Symbol*      klass() const;                    // returns the klass of the method or field
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
   194
  Symbol*      name() const;                     // returns the name of the method or field
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
   195
  Symbol*      signature() const;                // returns the signature of the method or field
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   196
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
   197
  BasicType    result_type() const;              // returns the result type of the getfield or invoke
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   198
};
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   199
49189
41e570d862b4 8148871: Possible wrong expression stack depth at deopt point
thartmann
parents: 47216
diff changeset
   200
// Abstraction for invoke_{virtual, static, interface, special, dynamic, handle}
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   201
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   202
class Bytecode_invoke: public Bytecode_member_ref {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   203
 protected:
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   204
  // Constructor that skips verification
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 25715
diff changeset
   205
  Bytecode_invoke(const methodHandle& method, int bci, bool unused)  : Bytecode_member_ref(method, bci) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
 public:
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 25715
diff changeset
   208
  Bytecode_invoke(const methodHandle& method, int bci)  : Bytecode_member_ref(method, bci) { verify(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  void verify() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  // Attributes
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 53244
diff changeset
   212
  Method* static_target(TRAPS);                  // "specified" method   (from constant pool)
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10979
diff changeset
   213
  Handle       appendix(TRAPS);                  // if CPCE::has_appendix (from constant pool)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  // Testers
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10979
diff changeset
   216
  bool is_invokeinterface() const                { return invoke_code() == Bytecodes::_invokeinterface; }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10979
diff changeset
   217
  bool is_invokevirtual() const                  { return invoke_code() == Bytecodes::_invokevirtual; }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10979
diff changeset
   218
  bool is_invokestatic() const                   { return invoke_code() == Bytecodes::_invokestatic; }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10979
diff changeset
   219
  bool is_invokespecial() const                  { return invoke_code() == Bytecodes::_invokespecial; }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10979
diff changeset
   220
  bool is_invokedynamic() const                  { return invoke_code() == Bytecodes::_invokedynamic; }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10979
diff changeset
   221
  bool is_invokehandle() const                   { return invoke_code() == Bytecodes::_invokehandle; }
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   222
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4564
diff changeset
   223
  bool has_receiver() const                      { return !is_invokestatic() && !is_invokedynamic(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  bool is_valid() const                          { return is_invokeinterface() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
                                                          is_invokevirtual()   ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
                                                          is_invokestatic()    ||
4564
55dfb20908d0 6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents: 3261
diff changeset
   228
                                                          is_invokespecial()   ||
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10979
diff changeset
   229
                                                          is_invokedynamic()   ||
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10979
diff changeset
   230
                                                          is_invokehandle(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
49340
4e82736053ae 8191102: Incorrect include file use in classLoader.hpp
hseigel
parents: 49189
diff changeset
   232
  bool has_appendix();
10979
c25dd872c62f 7106774: JSR 292: nightly test inlineMHTarget fails with wrong result
twisti
parents: 8107
diff changeset
   233
49189
41e570d862b4 8148871: Possible wrong expression stack depth at deopt point
thartmann
parents: 47216
diff changeset
   234
  int size_of_parameters() const;
41e570d862b4 8148871: Possible wrong expression stack depth at deopt point
thartmann
parents: 47216
diff changeset
   235
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10979
diff changeset
   236
 private:
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   237
  // Helper to skip verification.   Used is_valid() to check if the result is really an invoke
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 25715
diff changeset
   238
  inline friend Bytecode_invoke Bytecode_invoke_check(const methodHandle& method, int bci);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 25715
diff changeset
   241
inline Bytecode_invoke Bytecode_invoke_check(const methodHandle& method, int bci) {
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   242
  return Bytecode_invoke(method, bci, false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   246
// Abstraction for all field accesses (put/get field/static)
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   247
class Bytecode_field: public Bytecode_member_ref {
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   248
 public:
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 25715
diff changeset
   249
  Bytecode_field(const methodHandle& method, int bci)  : Bytecode_member_ref(method, bci) { verify(); }
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   250
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   251
  // Testers
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   252
  bool is_getfield() const                       { return java_code() == Bytecodes::_getfield; }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   253
  bool is_putfield() const                       { return java_code() == Bytecodes::_putfield; }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   254
  bool is_getstatic() const                      { return java_code() == Bytecodes::_getstatic; }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   255
  bool is_putstatic() const                      { return java_code() == Bytecodes::_putstatic; }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   256
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   257
  bool is_getter() const                         { return is_getfield()  || is_getstatic(); }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   258
  bool is_static() const                         { return is_getstatic() || is_putstatic(); }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   259
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   260
  bool is_valid() const                          { return is_getfield()   ||
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   261
                                                          is_putfield()   ||
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   262
                                                          is_getstatic()  ||
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   263
                                                          is_putstatic(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  void verify() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
// Abstraction for checkcast
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
class Bytecode_checkcast: public Bytecode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
 public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   270
  Bytecode_checkcast(Method* method, address bcp): Bytecode(method, bcp) { verify(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  void verify() const { assert(Bytecodes::java_code(code()) == Bytecodes::_checkcast, "check checkcast"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  // Returns index
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   274
  long index() const   { return get_index_u2(Bytecodes::_checkcast); };
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
// Abstraction for instanceof
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
class Bytecode_instanceof: public Bytecode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
 public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   280
  Bytecode_instanceof(Method* method, address bcp): Bytecode(method, bcp) { verify(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  void verify() const { assert(code() == Bytecodes::_instanceof, "check instanceof"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  // Returns index
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   284
  long index() const   { return get_index_u2(Bytecodes::_instanceof); };
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
class Bytecode_new: public Bytecode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
 public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   289
  Bytecode_new(Method* method, address bcp): Bytecode(method, bcp) { verify(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  void verify() const { assert(java_code() == Bytecodes::_new, "check new"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  // Returns index
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   293
  long index() const   { return get_index_u2(Bytecodes::_new); };
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
class Bytecode_multianewarray: public Bytecode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
 public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   298
  Bytecode_multianewarray(Method* method, address bcp): Bytecode(method, bcp) { verify(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  void verify() const { assert(java_code() == Bytecodes::_multianewarray, "check new"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  // Returns index
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   302
  long index() const   { return get_index_u2(Bytecodes::_multianewarray); };
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
class Bytecode_anewarray: public Bytecode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
 public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   307
  Bytecode_anewarray(Method* method, address bcp): Bytecode(method, bcp) { verify(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  void verify() const { assert(java_code() == Bytecodes::_anewarray, "check anewarray"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  // Returns index
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   311
  long index() const   { return get_index_u2(Bytecodes::_anewarray); };
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
// Abstraction for ldc, ldc_w and ldc2_w
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   315
class Bytecode_loadconstant: public Bytecode {
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   316
 private:
46727
6e4a84748e2c 8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents: 46625
diff changeset
   317
  const Method* _method;
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   318
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   319
  int raw_index() const;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   320
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
 public:
46727
6e4a84748e2c 8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents: 46625
diff changeset
   322
  Bytecode_loadconstant(const methodHandle& method, int bci): Bytecode(method(), method->bcp_from(bci)), _method(method()) { verify(); }
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   323
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  void verify() const {
46727
6e4a84748e2c 8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents: 46625
diff changeset
   325
    assert(_method != NULL, "must supply method");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
    Bytecodes::Code stdc = Bytecodes::java_code(code());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
    assert(stdc == Bytecodes::_ldc ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
           stdc == Bytecodes::_ldc_w ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
           stdc == Bytecodes::_ldc2_w, "load constant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   332
  // Only non-standard bytecodes (fast_aldc) have reference cache indexes.
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   333
  bool has_cache_index() const { return code() >= Bytecodes::number_of_java_codes; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   335
  int pool_index() const;               // index into constant pool
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   336
  int cache_index() const {             // index into reference cache (or -1 if none)
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   337
    return has_cache_index() ? raw_index() : -1;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   338
  }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   339
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   340
  BasicType result_type() const;        // returns the result type of the ldc
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   341
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   342
  oop resolve_constant(TRAPS) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49364
diff changeset
   345
#endif // SHARE_INTERPRETER_BYTECODE_HPP