hotspot/src/share/vm/interpreter/bytecode.cpp
author coleenp
Thu, 27 Jan 2011 16:11:27 -0800
changeset 8076 96d498ec7ae1
parent 7913 dd096a83bdbb
child 13391 30245956af37
permissions -rw-r--r--
6990754: Use native memory and reference counting to implement SymbolTable Summary: move symbols from permgen into C heap and reference count them Reviewed-by: never, acorn, jmasa, stefank
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
     2
 * Copyright (c) 1997, 2011, 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: 4564
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4564
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: 4564
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: 5882
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    26
#include "interpreter/bytecode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    27
#include "interpreter/linkResolver.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    28
#include "oops/constantPoolOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    29
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    30
#include "runtime/fieldType.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    31
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    32
#include "runtime/safepoint.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5882
diff changeset
    33
#include "runtime/signature.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// Implementation of Bytecode
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    37
#ifdef ASSERT
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    38
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    39
void Bytecode::assert_same_format_as(Bytecodes::Code testbc, bool is_wide) const {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    40
  Bytecodes::Code thisbc = Bytecodes::cast(byte_at(0));
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    41
  if (thisbc == Bytecodes::_breakpoint)  return;  // let the assertion fail silently
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    42
  if (is_wide) {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    43
    assert(thisbc == Bytecodes::_wide, "expected a wide instruction");
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    44
    thisbc = Bytecodes::cast(byte_at(1));
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    45
    if (thisbc == Bytecodes::_breakpoint)  return;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    46
  }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    47
  int thisflags = Bytecodes::flags(testbc, is_wide) & Bytecodes::_all_fmt_bits;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    48
  int testflags = Bytecodes::flags(thisbc, is_wide) & Bytecodes::_all_fmt_bits;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    49
  if (thisflags != testflags)
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    50
    tty->print_cr("assert_same_format_as(%d) failed on bc=%d%s; %d != %d",
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    51
                  (int)testbc, (int)thisbc, (is_wide?"/wide":""), testflags, thisflags);
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    52
  assert(thisflags == testflags, "expected format");
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    53
}
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    54
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    55
void Bytecode::assert_index_size(int size, Bytecodes::Code bc, bool is_wide) {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    56
  int have_fmt = (Bytecodes::flags(bc, is_wide)
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    57
                  & (Bytecodes::_fmt_has_u2 | Bytecodes::_fmt_has_u4 |
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    58
                     Bytecodes::_fmt_not_simple |
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    59
                     // Not an offset field:
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    60
                     Bytecodes::_fmt_has_o));
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    61
  int need_fmt = -1;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    62
  switch (size) {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    63
  case 1: need_fmt = 0;                      break;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    64
  case 2: need_fmt = Bytecodes::_fmt_has_u2; break;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    65
  case 4: need_fmt = Bytecodes::_fmt_has_u4; break;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    66
  }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    67
  if (is_wide)  need_fmt |= Bytecodes::_fmt_not_simple;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    68
  if (have_fmt != need_fmt) {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    69
    tty->print_cr("assert_index_size %d: bc=%d%s %d != %d", size, bc, (is_wide?"/wide":""), have_fmt, need_fmt);
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    70
    assert(have_fmt == need_fmt, "assert_index_size");
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    71
  }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    72
}
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    73
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    74
void Bytecode::assert_offset_size(int size, Bytecodes::Code bc, bool is_wide) {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    75
  int have_fmt = Bytecodes::flags(bc, is_wide) & Bytecodes::_all_fmt_bits;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    76
  int need_fmt = -1;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    77
  switch (size) {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    78
  case 2: need_fmt = Bytecodes::_fmt_bo2; break;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    79
  case 4: need_fmt = Bytecodes::_fmt_bo4; break;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    80
  }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    81
  if (is_wide)  need_fmt |= Bytecodes::_fmt_not_simple;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    82
  if (have_fmt != need_fmt) {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    83
    tty->print_cr("assert_offset_size %d: bc=%d%s %d != %d", size, bc, (is_wide?"/wide":""), have_fmt, need_fmt);
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    84
    assert(have_fmt == need_fmt, "assert_offset_size");
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    85
  }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    86
}
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    87
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    88
void Bytecode::assert_constant_size(int size, int where, Bytecodes::Code bc, bool is_wide) {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    89
  int have_fmt = Bytecodes::flags(bc, is_wide) & (Bytecodes::_all_fmt_bits
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    90
                                                  // Ignore any 'i' field (for iinc):
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    91
                                                  & ~Bytecodes::_fmt_has_i);
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    92
  int need_fmt = -1;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    93
  switch (size) {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    94
  case 1: need_fmt = Bytecodes::_fmt_bc;                          break;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    95
  case 2: need_fmt = Bytecodes::_fmt_bc | Bytecodes::_fmt_has_u2; break;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    96
  }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    97
  if (is_wide)  need_fmt |= Bytecodes::_fmt_not_simple;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    98
  int length = is_wide ? Bytecodes::wide_length_for(bc) : Bytecodes::length_for(bc);
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
    99
  if (have_fmt != need_fmt || where + size != length) {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
   100
    tty->print_cr("assert_constant_size %d @%d: bc=%d%s %d != %d", size, where, bc, (is_wide?"/wide":""), have_fmt, need_fmt);
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
   101
  }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
   102
  assert(have_fmt == need_fmt, "assert_constant_size");
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
   103
  assert(where + size == length, "assert_constant_size oob");
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
   104
}
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
   105
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
   106
void Bytecode::assert_native_index(Bytecodes::Code bc, bool is_wide) {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
   107
  assert((Bytecodes::flags(bc, is_wide) & Bytecodes::_fmt_has_nbo) != 0, "native index");
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
   108
}
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
   109
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
   110
#endif //ASSERT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
// Implementation of Bytecode_tableupswitch
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
int Bytecode_tableswitch::dest_offset_at(int i) const {
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
   115
  return get_Java_u4_at(aligned_offset(1 + (3 + i)*jintSize));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
// Implementation of Bytecode_invoke
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
void Bytecode_invoke::verify() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  assert(is_valid(), "check invoke");
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4564
diff changeset
   123
  assert(method()->constants()->cache() != NULL, "do not call this from verifier or rewriter");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
   127
Symbol* Bytecode_member_ref::signature() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  constantPoolOop constants = method()->constants();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  return constants->signature_ref_at(index());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
   133
Symbol* Bytecode_member_ref::name() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  constantPoolOop constants = method()->constants();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  return constants->name_ref_at(index());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
   139
BasicType Bytecode_member_ref::result_type() const {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
   140
  ResultTypeFinder rts(signature());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  rts.iterate();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  return rts.type();
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
methodHandle Bytecode_invoke::static_target(TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  methodHandle m;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  KlassHandle resolved_klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  constantPoolHandle constants(THREAD, _method->constants());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   151
  if (java_code() == Bytecodes::_invokedynamic) {
4564
55dfb20908d0 6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents: 3261
diff changeset
   152
    LinkResolver::resolve_dynamic_method(m, resolved_klass, constants, index(), CHECK_(methodHandle()));
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   153
  } else if (java_code() != Bytecodes::_invokeinterface) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    LinkResolver::resolve_method(m, resolved_klass, constants, index(), CHECK_(methodHandle()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    LinkResolver::resolve_interface_method(m, resolved_klass, constants, index(), CHECK_(methodHandle()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  return m;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   162
int Bytecode_member_ref::index() const {
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   163
  // Note:  Rewriter::rewrite changes the Java_u2 of an invokedynamic to a native_u4,
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   164
  // at the same time it allocates per-call-site CP cache entries.
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   165
  Bytecodes::Code rawc = code();
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   166
  if (has_index_u4(rawc))
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   167
    return get_index_u4(rawc);
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   168
  else
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   169
    return get_index_u2_cpcache(rawc);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   172
int Bytecode_member_ref::pool_index() const {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   173
  int index = this->index();
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   174
  DEBUG_ONLY({
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   175
      if (!has_index_u4(code()))
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   176
        index -= constantPoolOopDesc::CPCACHE_INDEX_TAG;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   177
    });
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   178
  return _method->constants()->cache()->entry_at(index)->constant_pool_index();
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   179
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
// Implementation of Bytecode_field
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
void Bytecode_field::verify() const {
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   184
  assert(is_valid(), "check field");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   188
// Implementation of Bytecode_loadconstant
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
int Bytecode_loadconstant::raw_index() const {
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   191
  Bytecodes::Code rawc = code();
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   192
  assert(rawc != Bytecodes::_wide, "verifier prevents this");
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   193
  if (Bytecodes::java_code(rawc) == Bytecodes::_ldc)
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   194
    return get_index_u1(rawc);
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   195
  else
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   196
    return get_index_u2(rawc, false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   199
int Bytecode_loadconstant::pool_index() const {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   200
  int index = raw_index();
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   201
  if (has_cache_index()) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   202
    return _method->constants()->cache()->entry_at(index)->constant_pool_index();
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   203
  }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   204
  return index;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   205
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   207
BasicType Bytecode_loadconstant::result_type() const {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   208
  int index = pool_index();
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   209
  constantTag tag = _method->constants()->tag_at(index);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   210
  return tag.basic_type();
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   211
}
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   212
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   213
oop Bytecode_loadconstant::resolve_constant(TRAPS) const {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   214
  assert(_method.not_null(), "must supply method to resolve constant");
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   215
  int index = raw_index();
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   216
  constantPoolOop constants = _method->constants();
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   217
  if (has_cache_index()) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   218
    return constants->resolve_cached_constant_at(index, THREAD);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   219
  } else {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   220
    return constants->resolve_constant_at(index, THREAD);
5697
0cf7190475ee 6957080: MethodComparator needs stress testing
jrose
parents: 5688
diff changeset
   221
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
//------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
// Non-product code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
void Bytecode_lookupswitch::verify() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  switch (Bytecodes::java_code(code())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    case Bytecodes::_lookupswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
      { int i = number_of_pairs() - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
        while (i-- > 0) {
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7397
diff changeset
   234
          assert(pair_at(i).match() < pair_at(i+1).match(), "unsorted table entries");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
      fatal("not a lookupswitch bytecode");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
void Bytecode_tableswitch::verify() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  switch (Bytecodes::java_code(code())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
    case Bytecodes::_tableswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
      { int lo = low_key();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
        int hi = high_key();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
        assert (hi >= lo, "incorrect hi/lo values in tableswitch");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
        int i  = hi - lo - 1 ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
        while (i-- > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
          // no special check needed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
      fatal("not a tableswitch bytecode");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
#endif