hotspot/src/share/vm/interpreter/bytecodeTracer.cpp
author jrose
Wed, 02 Jun 2010 22:45:42 -0700
changeset 5702 201c5cde25bb
parent 5547 f4b087cbb361
parent 5688 9052dc91ea67
child 5882 6b2aecc4f7d8
permissions -rw-r--r--
Merge
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; }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    52
  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
    53
  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
    54
  int       get_index_special()      { return (is_wide()) ? get_index_u2() : get_index_u1(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  methodOop method()                 { return _current_method; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  bool      is_wide()                { return _is_wide; }
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    57
  Bytecodes::Code raw_code()         { return Bytecodes::Code(_code); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    60
  bool      check_index(int i, int& cp_index, outputStream* st = tty);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  void      print_constant(int i, outputStream* st = tty);
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
    62
  void      print_field_or_method(int i, outputStream* st = tty);
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    63
  void      print_attributes(int bci, outputStream* st = tty);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  void      bytecode_epilog(int bci, outputStream* st = tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  BytecodePrinter() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    _is_wide = false;
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    69
    _code = Bytecodes::_illegal;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  // This method is called while executing the raw bytecodes, so none of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // the adjustments that BytecodeStream performs applies.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  void trace(methodHandle method, address bcp, uintptr_t tos, uintptr_t tos2, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    if (_current_method != method()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
      // Note 1: This code will not work as expected with true MT/MP.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
      //         Need an explicit lock or a different solution.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
      // It is possible for this block to be skipped, if a garbage
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
      // _current_method pointer happens to have the same bits as
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
      // the incoming method.  We could lose a line of trace output.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
      // This is acceptable in a debug-only feature.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
      st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
      st->print("[%d] ", (int) Thread::current()->osthread()->thread_id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
      method->print_name(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
      st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
      _current_method = method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    Bytecodes::Code code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    if (is_wide()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
      // bcp wasn't advanced if previous bytecode was _wide.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
      code = Bytecodes::code_at(bcp+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
      code = Bytecodes::code_at(bcp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    }
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    96
    _code = code;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    97
     int bci = bcp - method->code_base();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    st->print("[%d] ", (int) Thread::current()->osthread()->thread_id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    if (Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
      st->print("%8d  %4d  " INTPTR_FORMAT " " INTPTR_FORMAT " %s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
           BytecodeCounter::counter_value(), bci, tos, tos2, Bytecodes::name(code));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
      st->print("%8d  %4d  %s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
           BytecodeCounter::counter_value(), bci, Bytecodes::name(code));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    _next_pc = is_wide() ? bcp+2 : bcp+1;
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   107
    print_attributes(bci);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    // Set is_wide for the next one, since the caller of this doesn't skip
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    // the next bytecode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    _is_wide = (code == Bytecodes::_wide);
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   111
    _code = Bytecodes::_illegal;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  // Used for methodOop::print_codes().  The input bcp comes from
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  // BytecodeStream, which will skip wide bytecodes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  void trace(methodHandle method, address bcp, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    _current_method = method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    Bytecodes::Code code = Bytecodes::code_at(bcp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    // Set is_wide
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    _is_wide = (code == Bytecodes::_wide);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    if (is_wide()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
      code = Bytecodes::code_at(bcp+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    }
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   125
    _code = code;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    int bci = bcp - method->code_base();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    // Print bytecode index and name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    if (is_wide()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
      st->print("%d %s_w", bci, Bytecodes::name(code));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
      st->print("%d %s", bci, Bytecodes::name(code));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    _next_pc = is_wide() ? bcp+2 : bcp+1;
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   134
    print_attributes(bci, st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    bytecode_epilog(bci, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
// Implementation of BytecodeTracer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
// %%% This set_closure thing seems overly general, given that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
// nobody uses it.  Also, if BytecodePrinter weren't hidden
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
// then methodOop could use instances of it directly and it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
// would be easier to remove races on _current_method and bcp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
// Since this is not product functionality, we can defer cleanup.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
BytecodeClosure* BytecodeTracer::_closure = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
static BytecodePrinter std_closure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
BytecodeClosure* BytecodeTracer::std_closure() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  return &::std_closure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
void BytecodeTracer::trace(methodHandle method, address bcp, uintptr_t tos, uintptr_t tos2, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  if (TraceBytecodes && BytecodeCounter::counter_value() >= TraceBytecodesAt) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    ttyLocker ttyl;  // 5065316: keep the following output coherent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    // The ttyLocker also prevents races between two threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    // trying to use the single instance of BytecodePrinter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    // Using the ttyLocker prevents the system from coming to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    // a safepoint within this code, which is sensitive to methodOop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    // movement.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    // There used to be a leaf mutex here, but the ttyLocker will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    // work just as well, as long as the printing operations never block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    // We put the locker on the static trace method, not the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    // virtual one, because the clients of this module go through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    // the static method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    _closure->trace(method, bcp, tos, tos2, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
void BytecodeTracer::trace(methodHandle method, address bcp, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  ttyLocker ttyl;  // 5065316: keep the following output coherent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  _closure->trace(method, bcp, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
void print_oop(oop value, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  if (value == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    st->print_cr(" NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    Handle h_value (THREAD, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    symbolHandle sym = java_lang_String::as_symbol(h_value, CATCH);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    if (sym->utf8_length() > 32) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
      st->print_cr(" ....");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
      sym->print_on(st); st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   195
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
   196
  constantPoolOop constants = method()->constants();
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   197
  int ilimit = constants->length(), climit = 0;
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   198
  Bytecodes::Code code = raw_code();
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   199
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   200
  constantPoolCacheOop cache = NULL;
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   201
  if (Bytecodes::uses_cp_cache(code)) {
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   202
    cache = constants->cache();
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   203
    if (cache != NULL) {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   204
      //climit = cache->length();  // %%% private!
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   205
      size_t size = cache->size() * HeapWordSize;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   206
      size -= sizeof(constantPoolCacheOopDesc);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   207
      size /= sizeof(ConstantPoolCacheEntry);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   208
      climit = (int) size;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   209
    }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   210
  }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   211
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   212
  if (cache != NULL && constantPoolCacheOopDesc::is_secondary_index(i)) {
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   213
    i = constantPoolCacheOopDesc::decode_secondary_index(i);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   214
    st->print(" secondary cache[%d] of", i);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   215
    if (i >= 0 && i < climit) {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   216
      if (!cache->entry_at(i)->is_secondary_entry()) {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   217
        st->print_cr(" not secondary entry?", i);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   218
        return false;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   219
      }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   220
      i = cache->entry_at(i)->main_entry_index();
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   221
      goto check_cache_index;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   222
    } else {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   223
      st->print_cr(" not in cache[*]?", i);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   224
      return false;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   225
    }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   226
  }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   227
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   228
  if (cache != NULL) {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   229
    goto check_cache_index;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   230
  }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   231
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   232
 check_cp_index:
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   233
  if (i >= 0 && i < ilimit) {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   234
    if (WizardMode)  st->print(" cp[%d]", i);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   235
    cp_index = i;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   236
    return true;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   237
  }
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
  st->print_cr(" CP[%d] not in CP", i);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   240
  return false;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   241
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   242
 check_cache_index:
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   243
#ifdef ASSERT
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   244
  {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   245
    const int CPCACHE_INDEX_TAG = constantPoolOopDesc::CPCACHE_INDEX_TAG;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   246
    if (i >= CPCACHE_INDEX_TAG && i < climit + CPCACHE_INDEX_TAG) {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   247
      i -= CPCACHE_INDEX_TAG;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   248
    } else {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   249
      st->print_cr(" CP[%d] missing bias?", i);
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   250
      return false;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   251
    }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   252
  }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   253
#endif //ASSERT
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   254
  if (i >= 0 && i < climit) {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   255
    if (cache->entry_at(i)->is_secondary_entry()) {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   256
      st->print_cr(" secondary entry?");
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   257
      return false;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   258
    }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   259
    i = cache->entry_at(i)->constant_pool_index();
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   260
    goto check_cp_index;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   261
  }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   262
  st->print_cr(" not in CP[*]?", i);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   263
  return false;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   264
}
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   265
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
void BytecodePrinter::print_constant(int i, outputStream* st) {
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   267
  int orig_i = i;
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   268
  if (!check_index(orig_i, i, st))  return;
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   269
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  constantPoolOop constants = method()->constants();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  constantTag tag = constants->tag_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  if (tag.is_int()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
    st->print_cr(" " INT32_FORMAT, constants->int_at(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  } else if (tag.is_long()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    st->print_cr(" " INT64_FORMAT, constants->long_at(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  } else if (tag.is_float()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    st->print_cr(" %f", constants->float_at(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  } else if (tag.is_double()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
    st->print_cr(" %f", constants->double_at(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  } else if (tag.is_string()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
    oop string = constants->resolved_string_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
    print_oop(string, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  } else if (tag.is_unresolved_string()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
    st->print_cr(" <unresolved string at %d>", i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  } else if (tag.is_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
    st->print_cr(" %s", constants->resolved_klass_at(i)->klass_part()->external_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  } else if (tag.is_unresolved_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    st->print_cr(" <unresolved klass at %d>", i);
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4429
diff changeset
   290
  } else if (tag.is_object()) {
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4429
diff changeset
   291
    st->print_cr(" " PTR_FORMAT, constants->object_at(i));
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   292
  } else {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   293
    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
   294
  }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   295
}
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   296
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   297
void BytecodePrinter::print_field_or_method(int i, outputStream* st) {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   298
  int orig_i = i;
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   299
  if (!check_index(orig_i, i, st))  return;
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   300
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   301
  constantPoolOop constants = method()->constants();
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   302
  constantTag tag = constants->tag_at(i);
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   303
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 3261
diff changeset
   304
  int nt_index = -1;
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 3261
diff changeset
   305
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   306
  switch (tag.value()) {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   307
  case JVM_CONSTANT_InterfaceMethodref:
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   308
  case JVM_CONSTANT_Methodref:
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   309
  case JVM_CONSTANT_Fieldref:
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 3261
diff changeset
   310
  case JVM_CONSTANT_NameAndType:
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   311
    break;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   312
  default:
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   313
    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
   314
    return;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   315
  }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   316
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 3261
diff changeset
   317
  symbolOop name = constants->uncached_name_ref_at(i);
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 3261
diff changeset
   318
  symbolOop signature = constants->uncached_signature_ref_at(i);
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   319
  st->print_cr(" %d <%s> <%s> ", i, name->as_C_string(), signature->as_C_string());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   323
void BytecodePrinter::print_attributes(int bci, outputStream* st) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  // Show attributes of pre-rewritten codes
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   325
  Bytecodes::Code code = Bytecodes::java_code(raw_code());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  // If the code doesn't have any fields there's nothing to print.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  // note this is ==1 because the tableswitch and lookupswitch are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  // zero size (for some reason) and we want to print stuff out for them.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  if (Bytecodes::length_for(code) == 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
    st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  switch(code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
    // Java specific bytecodes only matter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
    case Bytecodes::_bipush:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
      st->print_cr(" " INT32_FORMAT, get_byte());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
    case Bytecodes::_sipush:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
      st->print_cr(" " INT32_FORMAT, get_short());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
    case Bytecodes::_ldc:
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   343
      print_constant(get_index_u1(), st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
    case Bytecodes::_ldc_w:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
    case Bytecodes::_ldc2_w:
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   348
      print_constant(get_index_u2(), st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
    case Bytecodes::_iload:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
    case Bytecodes::_lload:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
    case Bytecodes::_fload:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
    case Bytecodes::_dload:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
    case Bytecodes::_aload:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
    case Bytecodes::_istore:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
    case Bytecodes::_lstore:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
    case Bytecodes::_fstore:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
    case Bytecodes::_dstore:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
    case Bytecodes::_astore:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
      st->print_cr(" #%d", get_index_special());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
    case Bytecodes::_iinc:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
      { int index = get_index_special();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
        jint offset = is_wide() ? get_short(): get_byte();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
        st->print_cr(" #%d " INT32_FORMAT, index, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
    case Bytecodes::_newarray: {
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   372
        BasicType atype = (BasicType)get_index_u1();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
        const char* str = type2name(atype);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
        if (str == NULL || atype == T_OBJECT || atype == T_ARRAY) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
          assert(false, "Unidentified basic type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
        st->print_cr(" %s", str);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
    case Bytecodes::_anewarray: {
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   381
        int klass_index = get_index_u2();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
        constantPoolOop constants = method()->constants();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
        symbolOop name = constants->klass_name_at(klass_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
        st->print_cr(" %s ", name->as_C_string());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
    case Bytecodes::_multianewarray: {
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   388
        int klass_index = get_index_u2();
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   389
        int nof_dims = get_index_u1();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
        constantPoolOop constants = method()->constants();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
        symbolOop name = constants->klass_name_at(klass_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
        st->print_cr(" %s %d", name->as_C_string(), nof_dims);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    case Bytecodes::_ifeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
    case Bytecodes::_ifnull:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
    case Bytecodes::_iflt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
    case Bytecodes::_ifle:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
    case Bytecodes::_ifne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
    case Bytecodes::_ifnonnull:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
    case Bytecodes::_ifgt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
    case Bytecodes::_ifge:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
    case Bytecodes::_if_icmpeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
    case Bytecodes::_if_icmpne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
    case Bytecodes::_if_icmplt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
    case Bytecodes::_if_icmpgt:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
    case Bytecodes::_if_icmple:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    case Bytecodes::_if_icmpge:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
    case Bytecodes::_if_acmpeq:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
    case Bytecodes::_if_acmpne:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    case Bytecodes::_goto:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    case Bytecodes::_jsr:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
      st->print_cr(" %d", bci + get_short());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
    case Bytecodes::_goto_w:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
    case Bytecodes::_jsr_w:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
      st->print_cr(" %d", bci + get_int());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
    case Bytecodes::_ret: st->print_cr(" %d", get_index_special()); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
    case Bytecodes::_tableswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
      { align();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
        int  default_dest = bci + get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
        int  lo           = get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
        int  hi           = get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
        int  len          = hi - lo + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
        jint* dest        = NEW_RESOURCE_ARRAY(jint, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
        for (int i = 0; i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
          dest[i] = bci + get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
        st->print(" %d " INT32_FORMAT " " INT32_FORMAT " ",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
                      default_dest, lo, hi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
        int first = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
        for (int ll = lo; ll <= hi; ll++, first = false)  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
          int idx = ll - lo;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
          const char *format = first ? " %d:" INT32_FORMAT " (delta: %d)" :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
                                       ", %d:" INT32_FORMAT " (delta: %d)";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
          st->print(format, ll, dest[idx], dest[idx]-bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
        st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
    case Bytecodes::_lookupswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
      { align();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
        int  default_dest = bci + get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
        int  len          = get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
        jint* key         = NEW_RESOURCE_ARRAY(jint, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
        jint* dest        = NEW_RESOURCE_ARRAY(jint, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
        for (int i = 0; i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
          key [i] = get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
          dest[i] = bci + get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
        };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
        st->print(" %d %d ", default_dest, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
        bool first = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
        for (int ll = 0; ll < len; ll++, first = false)  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
          const char *format = first ? " " INT32_FORMAT ":" INT32_FORMAT :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
                                       ", " INT32_FORMAT ":" INT32_FORMAT ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
          st->print(format, key[ll], dest[ll]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
        st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
    case Bytecodes::_putstatic:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
    case Bytecodes::_getstatic:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
    case Bytecodes::_putfield:
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   470
    case Bytecodes::_getfield:
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   471
      print_field_or_method(get_index_u2_cpcache(), st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
    case Bytecodes::_invokevirtual:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
    case Bytecodes::_invokespecial:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
    case Bytecodes::_invokestatic:
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   477
      print_field_or_method(get_index_u2_cpcache(), st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
    case Bytecodes::_invokeinterface:
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   481
      { int i = get_index_u2_cpcache();
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   482
        int n = get_index_u1();
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   483
        get_byte();            // ignore zero byte
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   484
        print_field_or_method(i, st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   488
    case Bytecodes::_invokedynamic:
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   489
      print_field_or_method(get_index_u4(), st);
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   490
      break;
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   491
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
    case Bytecodes::_new:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
    case Bytecodes::_checkcast:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
    case Bytecodes::_instanceof:
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   495
      { int i = get_index_u2();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
        constantPoolOop constants = method()->constants();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
        symbolOop name = constants->klass_name_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
        st->print_cr(" %d <%s>", i, name->as_C_string());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
    case Bytecodes::_wide:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
      // length is zero not one, but printed with no more info.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
      ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
void BytecodePrinter::bytecode_epilog(int bci, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  methodDataOop mdo = method()->method_data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  if (mdo != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
    ProfileData* data = mdo->bci_to_data(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
    if (data != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
      st->print("  %d", mdo->dp_to_di(data->dp()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
      st->fill_to(6);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
      data->print_data_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
#endif // PRODUCT