hotspot/src/share/vm/ci/ciStreams.hpp
author jrose
Sun, 23 May 2010 01:38:26 -0700
changeset 5688 9052dc91ea67
parent 4567 7fc02fbe5c7a
child 5702 201c5cde25bb
permissions -rw-r--r--
6939207: refactor constant pool index processing Summary: Factored cleanup of instruction decode which prepares for enhanced ldc semantics. Reviewed-by: twisti
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
     2
 * Copyright 1999-2010 Sun Microsystems, Inc.  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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
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
// ciBytecodeStream
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// The class is used to iterate over the bytecodes of a method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// It hides the details of constant pool structure/access by
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// providing accessors for constant pool items.  It returns only pure
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// Java bytecodes; VM-internal _fast bytecodes are translated back to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// their original form during iteration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
class ciBytecodeStream : StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
private:
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    34
  // Handling for the weird bytecodes
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    35
  Bytecodes::Code next_wide_or_table(Bytecodes::Code); // Handle _wide & complicated inline table
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  static Bytecodes::Code check_java(Bytecodes::Code c) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
    assert(Bytecodes::is_java_code(c), "should not return _fast bytecodes");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
    return c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    42
  static Bytecodes::Code check_defined(Bytecodes::Code c) {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    43
    assert(Bytecodes::is_defined(c), "");
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    44
    return c;
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    45
  }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    46
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  ciMethod* _method;           // the method
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  ciInstanceKlass* _holder;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  address _bc_start;            // Start of current bytecode for table
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  address _was_wide;            // Address past last wide bytecode
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  jint* _table_base;            // Aligned start of last table or switch
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  address _start;                  // Start of bytecodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  address _end;                    // Past end of bytecodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  address _pc;                     // Current PC
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  Bytecodes::Code _bc;             // Current bytecode
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    57
  Bytecodes::Code _raw_bc;         // Current bytecode, raw form
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  void reset( address base, unsigned int size ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    _bc_start =_was_wide = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    _start = _pc = base; _end = base + size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    63
  void assert_wide(bool require_wide) const {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    64
    if (require_wide)
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    65
         { assert(is_wide(),  "must be a wide instruction"); }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    66
    else { assert(!is_wide(), "must not be a wide instruction"); }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    67
  }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    68
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    69
  Bytecode* bytecode() const { return Bytecode_at(_bc_start); }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    70
  Bytecode* next_bytecode() const { return Bytecode_at(_pc); }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
    71
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // End-Of-Bytecodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  static Bytecodes::Code EOBC() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    return Bytecodes::_illegal;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  ciBytecodeStream(ciMethod* m) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    reset_to_method(m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  ciBytecodeStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    reset_to_method(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  ciMethod* method() const { return _method; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  void reset_to_method(ciMethod* m) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    _method = m;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    if (m == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
      _holder = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
      reset(NULL, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
      _holder = m->holder();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
      reset(m->code(), m->code_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  void reset_to_bci( int bci );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  // Force the iterator to report a certain bci.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  void force_bci(int bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  void set_max_bci( int max ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    _end = _start + max;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   108
  address cur_bcp() const       { return _bc_start; }  // Returns bcp to current instruction
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   109
  int next_bci() const          { return _pc - _start; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  int cur_bci() const           { return _bc_start - _start; }
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   111
  int instruction_size() const  { return _pc - _bc_start; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  Bytecodes::Code cur_bc() const{ return check_java(_bc); }
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   114
  Bytecodes::Code cur_bc_raw() const { return check_defined(_raw_bc); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  Bytecodes::Code next_bc()     { return Bytecodes::java_code((Bytecodes::Code)* _pc); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  // Return current ByteCode and increment PC to next bytecode, skipping all
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  // intermediate constants.  Returns EOBC at end.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // Expected usage:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  //     while( (bc = iter.next()) != EOBC() ) { ... }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  Bytecodes::Code next() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    _bc_start = _pc;                        // Capture start of bc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    if( _pc >= _end ) return EOBC();        // End-Of-Bytecodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    // Fetch Java bytecode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    // All rewritten bytecodes maintain the size of original bytecode.
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   127
    _bc = Bytecodes::java_code(_raw_bc = (Bytecodes::Code)*_pc);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    int csize = Bytecodes::length_for(_bc); // Expected size
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   129
    _pc += csize;                           // Bump PC past bytecode
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   130
    if (csize == 0) {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   131
      _bc = next_wide_or_table(_bc);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    return check_java(_bc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   136
  bool is_wide() const { return ( _pc == _was_wide ); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   138
  // Does this instruction contain an index which refes into the CP cache?
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   139
  bool uses_cp_cache() const { return Bytecodes::uses_cp_cache(cur_bc_raw()); }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   140
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   141
  int get_index_u1() const {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   142
    return bytecode()->get_index_u1(cur_bc_raw());
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   143
  }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   144
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  // Get a byte index following this bytecode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  // If prefixed with a wide bytecode, get a wide index.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  int get_index() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    return (_pc == _was_wide)   // was widened?
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   149
      ? get_index_u2(true)      // yes, return wide index
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   150
      : get_index_u1();         // no, return narrow index
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   153
  // Get 2-byte index (byte swapping depending on which bytecode)
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   154
  int get_index_u2(bool is_wide = false) const {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   155
    return bytecode()->get_index_u2(cur_bc_raw(), is_wide);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   158
  // Get 2-byte index in native byte order.  (Rewriter::rewrite makes these.)
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   159
  int get_index_u2_cpcache() const {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   160
    return bytecode()->get_index_u2_cpcache(cur_bc_raw());
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   161
  }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   162
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   163
  // Get 4-byte index, for invokedynamic.
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   164
  int get_index_u4() const {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   165
    return bytecode()->get_index_u4(cur_bc_raw());
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   166
  }
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   167
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   168
  bool has_index_u4() const {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   169
    return bytecode()->has_index_u4(cur_bc_raw());
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   170
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  // Get dimensions byte (multinewarray)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  int get_dimensions() const { return *(unsigned char*)(_pc-1); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  // Sign-extended index byte/short, no widening
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   176
  int get_constant_u1()                     const { return bytecode()->get_constant_u1(instruction_size()-1, cur_bc_raw()); }
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   177
  int get_constant_u2(bool is_wide = false) const { return bytecode()->get_constant_u2(instruction_size()-2, cur_bc_raw(), is_wide); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  // Get a byte signed constant for "iinc".  Invalid for other bytecodes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  // If prefixed with a wide bytecode, get a wide constant
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   181
  int get_iinc_con() const {return (_pc==_was_wide) ? (jshort) get_constant_u2(true) : (jbyte) get_constant_u1();}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  // 2-byte branch offset from current pc
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   184
  int get_dest() const {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   185
    return cur_bci() + bytecode()->get_offset_s2(cur_bc_raw());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // 2-byte branch offset from next pc
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   189
  int next_get_dest() const {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   190
    assert(_pc < _end, "");
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   191
    return next_bci() + next_bytecode()->get_offset_s2(Bytecodes::_ifeq);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  // 4-byte branch offset from current pc
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   195
  int get_far_dest() const {
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 4567
diff changeset
   196
    return cur_bci() + bytecode()->get_offset_s4(cur_bc_raw());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  // For a lookup or switch table, return target destination
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  int get_int_table( int index ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    return Bytes::get_Java_u4((address)&_table_base[index]); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  // For tableswitch - get length of offset part
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  int get_tableswitch_length()  { return get_int_table(2)-get_int_table(1)+1; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  int get_dest_table( int index ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    return cur_bci() + get_int_table(index); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  // --- Constant pool access ---
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  int get_constant_index() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  int get_field_index();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  int get_method_index();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  // If this bytecode is a new, newarray, multianewarray, instanceof,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  // or checkcast, get the referenced klass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  ciKlass* get_klass(bool& will_link);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  int get_klass_index() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  // If this bytecode is one of the ldc variants, get the referenced
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  // constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  ciConstant get_constant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  // True if the ldc variant points to an unresolved string
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  bool is_unresolved_string() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  // True if the ldc variant points to an unresolved klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  bool is_unresolved_klass() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  // If this bytecode is one of get_field, get_static, put_field,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  // or put_static, get the referenced field.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  ciField* get_field(bool& will_link);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  ciInstanceKlass* get_declared_field_holder();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  int      get_field_holder_index();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  int      get_field_signature_index();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  // If this is a method invocation bytecode, get the invoked method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  ciMethod* get_method(bool& will_link);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  ciKlass*  get_declared_method_holder();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  int       get_method_holder_index();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  int       get_method_signature_index();
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 1
diff changeset
   240
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   241
  ciCPCache*  get_cpcache();
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   242
  ciCallSite* get_call_site();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
// ciSignatureStream
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
// The class is used to iterate over the elements of a method signature.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
class ciSignatureStream : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  ciSignature* _sig;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  int    _pos;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  ciSignatureStream(ciSignature* signature) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    _sig = signature;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
    _pos = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  bool at_return_type() { return _pos == _sig->count(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  bool is_done() { return _pos > _sig->count(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  void next() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
    if (_pos <= _sig->count()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
      _pos++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  ciType* type() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
    if (at_return_type()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
      return _sig->return_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
      return _sig->type_at(_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
// ciExceptionHandlerStream
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
// The class is used to iterate over the exception handlers of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
// a method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
class ciExceptionHandlerStream : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  // The method whose handlers we are traversing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  ciMethod* _method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  // Our current position in the list of handlers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  int        _pos;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  int        _end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  ciInstanceKlass*  _exception_klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  int        _bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  bool       _is_exact;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  ciExceptionHandlerStream(ciMethod* method) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
    _method = method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
    // Force loading of method code and handlers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
    _method->code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
    _pos = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
    _end = _method->_handler_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
    _exception_klass = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
    _bci    = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
    _is_exact = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  ciExceptionHandlerStream(ciMethod* method, int bci,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
                           ciInstanceKlass* exception_klass = NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
                           bool is_exact = false) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
    _method = method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
    // Force loading of method code and handlers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
    _method->code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
    _pos = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
    _end = _method->_handler_count + 1; // include the rethrow handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
    _exception_klass = (exception_klass != NULL && exception_klass->is_loaded()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
                          ? exception_klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
                          : NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
    _bci = bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
    assert(_bci >= 0, "bci out of range");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
    _is_exact = is_exact;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
    next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  // These methods are currently implemented in an odd way.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  // Count the number of handlers the iterator has ever produced
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  // or will ever produce.  Do not include the final rethrow handler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  // That is, a trivial exception handler stream will have a count
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  // of zero and produce just the rethrow handler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  int count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  // Count the number of handlers this stream will produce from now on.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  // Include the current handler, and the final rethrow handler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  // The remaining count will be zero iff is_done() is true,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  int count_remaining();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  bool is_done() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
    return (_pos >= _end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  void next() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
    _pos++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
    if (_bci != -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
      // We are not iterating over all handlers...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
      while (!is_done()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
        ciExceptionHandler* handler = _method->_exception_handlers[_pos];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
        if (handler->is_in_range(_bci)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
          if (handler->is_catch_all()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
            // Found final active catch block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
            _end = _pos+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
          } else if (_exception_klass == NULL || !handler->catch_klass()->is_loaded()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
            // We cannot do any type analysis here.  Must conservatively assume
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
            // catch block is reachable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
          } else if (_exception_klass->is_subtype_of(handler->catch_klass())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
            // This catch clause will definitely catch the exception.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
            // Final candidate.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
            _end = _pos+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
          } else if (!_is_exact &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
                     handler->catch_klass()->is_subtype_of(_exception_klass)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
            // This catch block may be reachable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
        // The catch block was not pertinent.  Go on.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
        _pos++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
      // This is an iteration over all handlers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  ciExceptionHandler* handler() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
    return _method->_exception_handlers[_pos];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
};