hotspot/src/share/vm/interpreter/bytecodeTracer.cpp
author jrose
Wed, 09 Jun 2010 18:50:45 -0700
changeset 5882 6b2aecc4f7d8
parent 5702 201c5cde25bb
child 6062 bab93afe9df7
permissions -rw-r--r--
6939203: JSR 292 needs method handle constants Summary: Add new CP types CONSTANT_MethodHandle, CONSTANT_MethodType; extend 'ldc' bytecode. Reviewed-by: twisti, never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5702
jrose
parents: 5547 5688
diff changeset
     2
 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4567
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4567
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4567
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
#include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#include "incls/_bytecodeTracer.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// Standard closure for BytecodeTracer: prints the current bytecode
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// and its attributes using bytecode-specific information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
class BytecodePrinter: public BytecodeClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  // %%% This field is not GC-ed, and so can contain garbage
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  // between critical sections.  Use only pointer-comparison
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  // operations on the pointer, except within a critical section.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  // (Also, ensure that occasional false positives are benign.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  methodOop _current_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  bool      _is_wide;
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    42
  Bytecodes::Code _code;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  address   _next_pc;                // current decoding position
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  void      align()                  { _next_pc = (address)round_to((intptr_t)_next_pc, sizeof(jint)); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  int       get_byte()               { return *(jbyte*) _next_pc++; }  // signed
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  short     get_short()              { short i=Bytes::get_Java_u2(_next_pc); _next_pc+=2; return i; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  int       get_int()                { int i=Bytes::get_Java_u4(_next_pc); _next_pc+=4; return i; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    50
  int       get_index_u1()           { return *(address)_next_pc++; }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    51
  int       get_index_u2()           { int i=Bytes::get_Java_u2(_next_pc); _next_pc+=2; return i; }
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
    52
  int       get_index_u1_cpcache()   { return get_index_u1() + constantPoolOopDesc::CPCACHE_INDEX_TAG; }
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    53
  int       get_index_u2_cpcache()   { int i=Bytes::get_native_u2(_next_pc); _next_pc+=2; return i + constantPoolOopDesc::CPCACHE_INDEX_TAG; }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    54
  int       get_index_u4()           { int i=Bytes::get_native_u4(_next_pc); _next_pc+=4; return i; }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    55
  int       get_index_special()      { return (is_wide()) ? get_index_u2() : get_index_u1(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  methodOop method()                 { return _current_method; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  bool      is_wide()                { return _is_wide; }
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    58
  Bytecodes::Code raw_code()         { return Bytecodes::Code(_code); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    61
  bool      check_index(int i, int& cp_index, outputStream* st = tty);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  void      print_constant(int i, outputStream* st = tty);
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
    63
  void      print_field_or_method(int i, outputStream* st = tty);
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
    64
  void      print_field_or_method(int orig_i, int i, outputStream* st = tty);
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    65
  void      print_attributes(int bci, outputStream* st = tty);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  void      bytecode_epilog(int bci, outputStream* st = tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  BytecodePrinter() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    _is_wide = false;
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    71
    _code = Bytecodes::_illegal;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // This method is called while executing the raw bytecodes, so none of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  // the adjustments that BytecodeStream performs applies.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  void trace(methodHandle method, address bcp, uintptr_t tos, uintptr_t tos2, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    if (_current_method != method()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
      // Note 1: This code will not work as expected with true MT/MP.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
      //         Need an explicit lock or a different solution.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
      // It is possible for this block to be skipped, if a garbage
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
      // _current_method pointer happens to have the same bits as
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
      // the incoming method.  We could lose a line of trace output.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
      // This is acceptable in a debug-only feature.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
      st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
      st->print("[%d] ", (int) Thread::current()->osthread()->thread_id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
      method->print_name(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
      st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
      _current_method = method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    Bytecodes::Code code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    if (is_wide()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
      // bcp wasn't advanced if previous bytecode was _wide.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
      code = Bytecodes::code_at(bcp+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
      code = Bytecodes::code_at(bcp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    }
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    98
    _code = code;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    99
     int bci = bcp - method->code_base();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    st->print("[%d] ", (int) Thread::current()->osthread()->thread_id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    if (Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
      st->print("%8d  %4d  " INTPTR_FORMAT " " INTPTR_FORMAT " %s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
           BytecodeCounter::counter_value(), bci, tos, tos2, Bytecodes::name(code));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
      st->print("%8d  %4d  %s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
           BytecodeCounter::counter_value(), bci, Bytecodes::name(code));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    _next_pc = is_wide() ? bcp+2 : bcp+1;
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   109
    print_attributes(bci);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    // Set is_wide for the next one, since the caller of this doesn't skip
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    // the next bytecode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    _is_wide = (code == Bytecodes::_wide);
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   113
    _code = Bytecodes::_illegal;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // Used for methodOop::print_codes().  The input bcp comes from
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  // BytecodeStream, which will skip wide bytecodes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  void trace(methodHandle method, address bcp, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    _current_method = method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    Bytecodes::Code code = Bytecodes::code_at(bcp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    // Set is_wide
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    _is_wide = (code == Bytecodes::_wide);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    if (is_wide()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
      code = Bytecodes::code_at(bcp+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    }
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   127
    _code = code;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    int bci = bcp - method->code_base();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    // Print bytecode index and name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    if (is_wide()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
      st->print("%d %s_w", bci, Bytecodes::name(code));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
      st->print("%d %s", bci, Bytecodes::name(code));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    _next_pc = is_wide() ? bcp+2 : bcp+1;
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   136
    print_attributes(bci, st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    bytecode_epilog(bci, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
// Implementation of BytecodeTracer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
// %%% This set_closure thing seems overly general, given that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
// nobody uses it.  Also, if BytecodePrinter weren't hidden
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
// then methodOop could use instances of it directly and it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
// would be easier to remove races on _current_method and bcp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
// Since this is not product functionality, we can defer cleanup.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
BytecodeClosure* BytecodeTracer::_closure = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
static BytecodePrinter std_closure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
BytecodeClosure* BytecodeTracer::std_closure() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  return &::std_closure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
void BytecodeTracer::trace(methodHandle method, address bcp, uintptr_t tos, uintptr_t tos2, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  if (TraceBytecodes && BytecodeCounter::counter_value() >= TraceBytecodesAt) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    ttyLocker ttyl;  // 5065316: keep the following output coherent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    // The ttyLocker also prevents races between two threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    // trying to use the single instance of BytecodePrinter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    // Using the ttyLocker prevents the system from coming to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    // a safepoint within this code, which is sensitive to methodOop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    // movement.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    // There used to be a leaf mutex here, but the ttyLocker will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    // work just as well, as long as the printing operations never block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    // We put the locker on the static trace method, not the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    // virtual one, because the clients of this module go through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    // the static method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    _closure->trace(method, bcp, tos, tos2, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
void BytecodeTracer::trace(methodHandle method, address bcp, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  ttyLocker ttyl;  // 5065316: keep the following output coherent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  _closure->trace(method, bcp, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   182
void print_symbol(symbolOop sym, outputStream* st) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   183
  char buf[40];
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   184
  int len = sym->utf8_length();
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   185
  if (len >= (int)sizeof(buf)) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   186
    st->print_cr(" %s...[%d]", sym->as_C_string(buf, sizeof(buf)), len);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   187
  } else {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   188
    st->print(" ");
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   189
    sym->print_on(st); st->cr();
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   190
  }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   191
}
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   192
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
void print_oop(oop value, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  if (value == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    st->print_cr(" NULL");
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   196
  } else if (java_lang_String::is_instance(value)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    Handle h_value (THREAD, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    symbolHandle sym = java_lang_String::as_symbol(h_value, CATCH);
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   200
    print_symbol(sym(), st);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   201
  } else if (value->is_symbol()) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   202
    print_symbol(symbolOop(value), st);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   203
  } else {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   204
    st->print_cr(" " PTR_FORMAT, (intptr_t) value);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   208
bool BytecodePrinter::check_index(int i, int& cp_index, outputStream* st) {
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   209
  constantPoolOop constants = method()->constants();
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   210
  int ilimit = constants->length(), climit = 0;
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   211
  Bytecodes::Code code = raw_code();
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   212
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   213
  constantPoolCacheOop cache = NULL;
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   214
  if (Bytecodes::uses_cp_cache(code)) {
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   215
    cache = constants->cache();
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   216
    if (cache != NULL) {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   217
      //climit = cache->length();  // %%% private!
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   218
      size_t size = cache->size() * HeapWordSize;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   219
      size -= sizeof(constantPoolCacheOopDesc);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   220
      size /= sizeof(ConstantPoolCacheEntry);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   221
      climit = (int) size;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   222
    }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   223
  }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   224
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   225
  if (cache != NULL && constantPoolCacheOopDesc::is_secondary_index(i)) {
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   226
    i = constantPoolCacheOopDesc::decode_secondary_index(i);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   227
    st->print(" secondary cache[%d] of", i);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   228
    if (i >= 0 && i < climit) {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   229
      if (!cache->entry_at(i)->is_secondary_entry()) {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   230
        st->print_cr(" not secondary entry?", i);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   231
        return false;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   232
      }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   233
      i = cache->entry_at(i)->main_entry_index();
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   234
      goto check_cache_index;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   235
    } else {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   236
      st->print_cr(" not in cache[*]?", i);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   237
      return false;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   238
    }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   239
  }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   240
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   241
  if (cache != NULL) {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   242
    goto check_cache_index;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   243
  }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   244
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   245
 check_cp_index:
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   246
  if (i >= 0 && i < ilimit) {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   247
    if (WizardMode)  st->print(" cp[%d]", i);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   248
    cp_index = i;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   249
    return true;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   250
  }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   251
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   252
  st->print_cr(" CP[%d] not in CP", i);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   253
  return false;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   254
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   255
 check_cache_index:
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   256
#ifdef ASSERT
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   257
  {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   258
    const int CPCACHE_INDEX_TAG = constantPoolOopDesc::CPCACHE_INDEX_TAG;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   259
    if (i >= CPCACHE_INDEX_TAG && i < climit + CPCACHE_INDEX_TAG) {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   260
      i -= CPCACHE_INDEX_TAG;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   261
    } else {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   262
      st->print_cr(" CP[%d] missing bias?", i);
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   263
      return false;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   264
    }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   265
  }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   266
#endif //ASSERT
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   267
  if (i >= 0 && i < climit) {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   268
    if (cache->entry_at(i)->is_secondary_entry()) {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   269
      st->print_cr(" secondary entry?");
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   270
      return false;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   271
    }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   272
    i = cache->entry_at(i)->constant_pool_index();
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   273
    goto check_cp_index;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   274
  }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   275
  st->print_cr(" not in CP[*]?", i);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   276
  return false;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   277
}
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   278
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
void BytecodePrinter::print_constant(int i, outputStream* st) {
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   280
  int orig_i = i;
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   281
  if (!check_index(orig_i, i, st))  return;
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   282
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  constantPoolOop constants = method()->constants();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  constantTag tag = constants->tag_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  if (tag.is_int()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
    st->print_cr(" " INT32_FORMAT, constants->int_at(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  } else if (tag.is_long()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    st->print_cr(" " INT64_FORMAT, constants->long_at(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  } else if (tag.is_float()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
    st->print_cr(" %f", constants->float_at(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  } else if (tag.is_double()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
    st->print_cr(" %f", constants->double_at(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  } else if (tag.is_string()) {
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   295
    oop string = constants->pseudo_string_at(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
    print_oop(string, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  } else if (tag.is_unresolved_string()) {
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   298
    const char* string = constants->string_at_noresolve(i);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   299
    st->print_cr(" %s", string);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  } else if (tag.is_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
    st->print_cr(" %s", constants->resolved_klass_at(i)->klass_part()->external_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  } else if (tag.is_unresolved_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
    st->print_cr(" <unresolved klass at %d>", i);
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4429
diff changeset
   304
  } else if (tag.is_object()) {
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   305
    st->print(" <Object>");
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   306
    print_oop(constants->object_at(i), st);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   307
  } else if (tag.is_method_type()) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   308
    int i2 = constants->method_type_index_at(i);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   309
    st->print(" <MethodType> %d", i2);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   310
    print_oop(constants->symbol_at(i2), st);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   311
  } else if (tag.is_method_handle()) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   312
    int kind = constants->method_handle_ref_kind_at(i);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   313
    int i2 = constants->method_handle_index_at(i);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   314
    st->print(" <MethodHandle of kind %d>", kind, i2);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   315
    print_field_or_method(-i, i2, st);
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   316
  } else {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   317
    st->print_cr(" bad tag=%d at %d", tag.value(), i);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   318
  }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   319
}
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   320
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   321
void BytecodePrinter::print_field_or_method(int i, outputStream* st) {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   322
  int orig_i = i;
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   323
  if (!check_index(orig_i, i, st))  return;
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   324
  print_field_or_method(orig_i, i, st);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   325
}
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   326
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   327
void BytecodePrinter::print_field_or_method(int orig_i, int i, outputStream* st) {
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   328
  constantPoolOop constants = method()->constants();
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   329
  constantTag tag = constants->tag_at(i);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   330
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 3261
diff changeset
   331
  int nt_index = -1;
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 3261
diff changeset
   332
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   333
  switch (tag.value()) {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   334
  case JVM_CONSTANT_InterfaceMethodref:
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   335
  case JVM_CONSTANT_Methodref:
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   336
  case JVM_CONSTANT_Fieldref:
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 3261
diff changeset
   337
  case JVM_CONSTANT_NameAndType:
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   338
    break;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   339
  default:
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   340
    st->print_cr(" bad tag=%d at %d", tag.value(), i);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   341
    return;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   342
  }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   343
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   344
  symbolOop klass = constants->klass_name_at(constants->uncached_klass_ref_index_at(i));
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 3261
diff changeset
   345
  symbolOop name = constants->uncached_name_ref_at(i);
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 3261
diff changeset
   346
  symbolOop signature = constants->uncached_signature_ref_at(i);
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   347
  const char* sep = (tag.is_field() ? "/" : "");
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   348
  st->print_cr(" %d <%s.%s%s%s> ", i, klass->as_C_string(), name->as_C_string(), sep, signature->as_C_string());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   352
void BytecodePrinter::print_attributes(int bci, outputStream* st) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  // Show attributes of pre-rewritten codes
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   354
  Bytecodes::Code code = Bytecodes::java_code(raw_code());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  // If the code doesn't have any fields there's nothing to print.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  // note this is ==1 because the tableswitch and lookupswitch are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  // zero size (for some reason) and we want to print stuff out for them.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  if (Bytecodes::length_for(code) == 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
    st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  switch(code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
    // Java specific bytecodes only matter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
    case Bytecodes::_bipush:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
      st->print_cr(" " INT32_FORMAT, get_byte());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
    case Bytecodes::_sipush:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
      st->print_cr(" " INT32_FORMAT, get_short());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
    case Bytecodes::_ldc:
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   372
      if (Bytecodes::uses_cp_cache(raw_code())) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   373
        print_constant(get_index_u1_cpcache(), st);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   374
      } else {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   375
        print_constant(get_index_u1(), st);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   376
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
    case Bytecodes::_ldc_w:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
    case Bytecodes::_ldc2_w:
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   381
      if (Bytecodes::uses_cp_cache(raw_code())) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   382
        print_constant(get_index_u2_cpcache(), st);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   383
      } else {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   384
        print_constant(get_index_u2(), st);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   385
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
    case Bytecodes::_iload:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
    case Bytecodes::_lload:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
    case Bytecodes::_fload:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
    case Bytecodes::_dload:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
    case Bytecodes::_aload:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
    case Bytecodes::_istore:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
    case Bytecodes::_lstore:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
    case Bytecodes::_fstore:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    case Bytecodes::_dstore:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
    case Bytecodes::_astore:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
      st->print_cr(" #%d", get_index_special());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
    case Bytecodes::_iinc:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
      { int index = get_index_special();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
        jint offset = is_wide() ? get_short(): get_byte();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
        st->print_cr(" #%d " INT32_FORMAT, index, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
    case Bytecodes::_newarray: {
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   409
        BasicType atype = (BasicType)get_index_u1();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
        const char* str = type2name(atype);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
        if (str == NULL || atype == T_OBJECT || atype == T_ARRAY) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
          assert(false, "Unidentified basic type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
        st->print_cr(" %s", str);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
    case Bytecodes::_anewarray: {
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   418
        int klass_index = get_index_u2();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
        constantPoolOop constants = method()->constants();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
        symbolOop name = constants->klass_name_at(klass_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
        st->print_cr(" %s ", name->as_C_string());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
    case Bytecodes::_multianewarray: {
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   425
        int klass_index = get_index_u2();
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   426
        int nof_dims = get_index_u1();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
        constantPoolOop constants = method()->constants();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
        symbolOop name = constants->klass_name_at(klass_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
        st->print_cr(" %s %d", name->as_C_string(), nof_dims);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
    case Bytecodes::_ifeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
    case Bytecodes::_ifnull:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
    case Bytecodes::_iflt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
    case Bytecodes::_ifle:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
    case Bytecodes::_ifne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
    case Bytecodes::_ifnonnull:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
    case Bytecodes::_ifgt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
    case Bytecodes::_ifge:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
    case Bytecodes::_if_icmpeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
    case Bytecodes::_if_icmpne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
    case Bytecodes::_if_icmplt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
    case Bytecodes::_if_icmpgt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
    case Bytecodes::_if_icmple:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
    case Bytecodes::_if_icmpge:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
    case Bytecodes::_if_acmpeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
    case Bytecodes::_if_acmpne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
    case Bytecodes::_goto:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
    case Bytecodes::_jsr:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
      st->print_cr(" %d", bci + get_short());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
    case Bytecodes::_goto_w:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
    case Bytecodes::_jsr_w:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
      st->print_cr(" %d", bci + get_int());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
    case Bytecodes::_ret: st->print_cr(" %d", get_index_special()); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    case Bytecodes::_tableswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
      { align();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
        int  default_dest = bci + get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
        int  lo           = get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
        int  hi           = get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
        int  len          = hi - lo + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
        jint* dest        = NEW_RESOURCE_ARRAY(jint, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
        for (int i = 0; i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
          dest[i] = bci + get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
        st->print(" %d " INT32_FORMAT " " INT32_FORMAT " ",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
                      default_dest, lo, hi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
        int first = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
        for (int ll = lo; ll <= hi; ll++, first = false)  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
          int idx = ll - lo;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
          const char *format = first ? " %d:" INT32_FORMAT " (delta: %d)" :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
                                       ", %d:" INT32_FORMAT " (delta: %d)";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
          st->print(format, ll, dest[idx], dest[idx]-bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
        st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
    case Bytecodes::_lookupswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
      { align();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
        int  default_dest = bci + get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
        int  len          = get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
        jint* key         = NEW_RESOURCE_ARRAY(jint, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
        jint* dest        = NEW_RESOURCE_ARRAY(jint, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
        for (int i = 0; i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
          key [i] = get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
          dest[i] = bci + get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
        };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
        st->print(" %d %d ", default_dest, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
        bool first = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
        for (int ll = 0; ll < len; ll++, first = false)  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
          const char *format = first ? " " INT32_FORMAT ":" INT32_FORMAT :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
                                       ", " INT32_FORMAT ":" INT32_FORMAT ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
          st->print(format, key[ll], dest[ll]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
        st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
    case Bytecodes::_putstatic:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
    case Bytecodes::_getstatic:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
    case Bytecodes::_putfield:
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   507
    case Bytecodes::_getfield:
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   508
      print_field_or_method(get_index_u2_cpcache(), st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
    case Bytecodes::_invokevirtual:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
    case Bytecodes::_invokespecial:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
    case Bytecodes::_invokestatic:
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   514
      print_field_or_method(get_index_u2_cpcache(), st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
    case Bytecodes::_invokeinterface:
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   518
      { int i = get_index_u2_cpcache();
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   519
        int n = get_index_u1();
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   520
        get_byte();            // ignore zero byte
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   521
        print_field_or_method(i, st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   525
    case Bytecodes::_invokedynamic:
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   526
      print_field_or_method(get_index_u4(), st);
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   527
      break;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   528
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
    case Bytecodes::_new:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
    case Bytecodes::_checkcast:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
    case Bytecodes::_instanceof:
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   532
      { int i = get_index_u2();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
        constantPoolOop constants = method()->constants();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
        symbolOop name = constants->klass_name_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
        st->print_cr(" %d <%s>", i, name->as_C_string());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
    case Bytecodes::_wide:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
      // length is zero not one, but printed with no more info.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
      ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
void BytecodePrinter::bytecode_epilog(int bci, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  methodDataOop mdo = method()->method_data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
  if (mdo != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
    ProfileData* data = mdo->bci_to_data(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
    if (data != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
      st->print("  %d", mdo->dp_to_di(data->dp()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
      st->fill_to(6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
      data->print_data_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
#endif // PRODUCT