hotspot/src/share/vm/ci/ciMethodBlocks.cpp
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 1 489c9b5090e2
child 199 fb51d01039ff
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2006 Sun Microsystems, Inc.  All Rights Reserved.
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
#include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#include "incls/_ciMethodBlocks.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// ciMethodBlocks
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
ciBlock *ciMethodBlocks::block_containing(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  ciBlock *blk = _bci_to_block[bci];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  return blk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
bool ciMethodBlocks::is_block_start(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  assert(bci >=0 && bci < _code_size, "valid bytecode range");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  ciBlock *b = _bci_to_block[bci];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  assert(b != NULL, "must have block for bytecode");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  return b->start_bci() == bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
// ciMethodBlocks::split_block_at
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// Split the block spanning bci into two separate ranges.  The former
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
// block becomes the second half and a new range is created for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// first half.  Returns the range beginning at bci.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
ciBlock *ciMethodBlocks::split_block_at(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  ciBlock *former_block = block_containing(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  ciBlock *new_block = new(_arena) ciBlock(_method, _num_blocks++, this, former_block->start_bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  _blocks->append(new_block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  assert(former_block != NULL, "must not be NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  new_block->set_limit_bci(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  former_block->set_start_bci(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  for (int pos=bci-1; pos >= 0; pos--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    ciBlock *current_block = block_containing(pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    if (current_block == former_block) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
      // Replace it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
      _bci_to_block[pos] = new_block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    } else if (current_block == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
      // Non-bytecode start.  Skip.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
      // We are done with our backwards walk
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  return former_block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
ciBlock *ciMethodBlocks::make_block_at(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  ciBlock *cb = block_containing(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  if (cb == NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    // This is our first time visiting this bytecode.  Create
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    // a fresh block and assign it this starting point.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    ciBlock *nb = new(_arena) ciBlock(_method, _num_blocks++, this, bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    _blocks->append(nb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
     _bci_to_block[bci] = nb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    return nb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  } else if (cb->start_bci() == bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    // The block begins at bci.  Simply return it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    return cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    // We have already created a block containing bci but
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    // not starting at bci.  This existing block needs to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    // be split into two.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    return split_block_at(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
void ciMethodBlocks::do_analysis() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  ciBytecodeStream s(_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  ciBlock *cur_block = block_containing(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  int limit_bci = _method->code_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  while (s.next() != ciBytecodeStream::EOBC()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    int bci = s.cur_bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    // Determine if a new block has been made at the current bci.  If
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    // this block differs from our current range, switch to the new
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    // one and end the old one.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    assert(cur_block != NULL, "must always have a current block");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    ciBlock *new_block = block_containing(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    if (new_block == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
      // We have not marked this bci as the start of a new block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
      // Keep interpreting the current_range.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
      _bci_to_block[bci] = cur_block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
      cur_block->set_limit_bci(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
      cur_block = new_block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    switch (s.cur_bc()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
      case Bytecodes::_ifeq        :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
      case Bytecodes::_ifne        :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
      case Bytecodes::_iflt        :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
      case Bytecodes::_ifge        :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
      case Bytecodes::_ifgt        :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
      case Bytecodes::_ifle        :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
      case Bytecodes::_if_icmpeq   :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
      case Bytecodes::_if_icmpne   :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
      case Bytecodes::_if_icmplt   :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
      case Bytecodes::_if_icmpge   :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
      case Bytecodes::_if_icmpgt   :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
      case Bytecodes::_if_icmple   :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
      case Bytecodes::_if_acmpeq   :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
      case Bytecodes::_if_acmpne   :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
      case Bytecodes::_ifnull      :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
      case Bytecodes::_ifnonnull   :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
        cur_block->set_control_bci(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
        ciBlock *fall_through = make_block_at(s.next_bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
        int dest_bci = s.get_dest();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
        ciBlock *dest = make_block_at(dest_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
      case Bytecodes::_goto        :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
        cur_block->set_control_bci(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
        if (s.next_bci() < limit_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
          (void) make_block_at(s.next_bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
        int dest_bci = s.get_dest();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
        ciBlock *dest = make_block_at(dest_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
      case Bytecodes::_jsr         :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
        cur_block->set_control_bci(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
        ciBlock *ret = make_block_at(s.next_bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
        int dest_bci = s.get_dest();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
        ciBlock *dest = make_block_at(dest_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
      case Bytecodes::_tableswitch :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
        {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
          cur_block->set_control_bci(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
          Bytecode_tableswitch* switch_ = Bytecode_tableswitch_at(s.cur_bcp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
          int len = switch_->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
          ciBlock *dest;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
          int dest_bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
          for (int i = 0; i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
            dest_bci = s.cur_bci() + switch_->dest_offset_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
            dest = make_block_at(dest_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
          dest_bci = s.cur_bci() + switch_->default_offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
          make_block_at(dest_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
          if (s.next_bci() < limit_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
            dest = make_block_at(s.next_bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
      case Bytecodes::_lookupswitch:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
        {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
          cur_block->set_control_bci(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
          Bytecode_lookupswitch* switch_ = Bytecode_lookupswitch_at(s.cur_bcp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
          int len = switch_->number_of_pairs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
          ciBlock *dest;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
          int dest_bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
          for (int i = 0; i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
            dest_bci = s.cur_bci() + switch_->pair_at(i)->offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
            dest = make_block_at(dest_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
          dest_bci = s.cur_bci() + switch_->default_offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
          dest = make_block_at(dest_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
          if (s.next_bci() < limit_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
            dest = make_block_at(s.next_bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
      case Bytecodes::_goto_w      :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
        cur_block->set_control_bci(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
        if (s.next_bci() < limit_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
          (void) make_block_at(s.next_bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
        int dest_bci = s.get_far_dest();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
        ciBlock *dest = make_block_at(dest_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
      case Bytecodes::_jsr_w       :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
        cur_block->set_control_bci(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
        ciBlock *ret = make_block_at(s.next_bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
        int dest_bci = s.get_far_dest();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
        ciBlock *dest = make_block_at(dest_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
      case Bytecodes::_athrow      :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
        cur_block->set_may_throw();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
        // fall-through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
      case Bytecodes::_ret         :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
      case Bytecodes::_ireturn     :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
      case Bytecodes::_lreturn     :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
      case Bytecodes::_freturn     :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
      case Bytecodes::_dreturn     :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
      case Bytecodes::_areturn     :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
      case Bytecodes::_return      :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
        cur_block->set_control_bci(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
        if (s.next_bci() < limit_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
          (void) make_block_at(s.next_bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  //  End the last block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  cur_block->set_limit_bci(limit_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
ciMethodBlocks::ciMethodBlocks(Arena *arena, ciMethod *meth): _method(meth),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
                          _arena(arena), _num_blocks(0), _code_size(meth->code_size()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  int block_estimate = _code_size / 8;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  _blocks =  new(_arena) GrowableArray<ciBlock *>(block_estimate);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  int b2bsize = _code_size * sizeof(ciBlock **);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  _bci_to_block = (ciBlock **) arena->Amalloc(b2bsize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  Copy::zero_to_words((HeapWord*) _bci_to_block, b2bsize / sizeof(HeapWord));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  // create initial block covering the entire method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  ciBlock *b = new(arena) ciBlock(_method, _num_blocks++, this, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  _blocks->append(b);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  _bci_to_block[0] = b;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  // create blocks for exception handlers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  if (meth->has_exception_handlers()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    for(ciExceptionHandlerStream str(meth); !str.is_done(); str.next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
      ciExceptionHandler* handler = str.handler();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
      ciBlock *eb = make_block_at(handler->handler_bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
      eb->set_handler();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
      int ex_start = handler->start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
      int ex_end = handler->limit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
      eb->set_exception_range(ex_start, ex_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
      // ensure a block at the start of exception range and start of following code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
      (void) make_block_at(ex_start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
      if (ex_end < _code_size)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
        (void) make_block_at(ex_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  // scan the bytecodes and identify blocks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  do_analysis();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  // mark blocks that have exception handlers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  if (meth->has_exception_handlers()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
    for(ciExceptionHandlerStream str(meth); !str.is_done(); str.next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
      ciExceptionHandler* handler = str.handler();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
      int ex_start = handler->start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
      int ex_end = handler->limit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
      int bci = ex_start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
      while (bci < ex_end) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
        ciBlock *b = block_containing(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
        b->set_has_handler();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
        bci = b->limit_bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
void ciMethodBlocks::clear_processed() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  for (int i = 0; i < _blocks->length(); i++)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
    _blocks->at(i)->clear_processed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
void ciMethodBlocks::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  tty->print("---- blocks for method: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  _method->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  for (int i = 0; i < _blocks->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
    tty->print("  B%d: ", i); _blocks->at(i)->dump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
ciBlock::ciBlock(ciMethod *method, int index, ciMethodBlocks *mb, int start_bci) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
                         _method(method),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
                         _idx(index), _flags(0), _start_bci(start_bci), _limit_bci(-1), _control_bci(fall_through_bci),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
                         _ex_start_bci(-1), _ex_limit_bci(-1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
void ciBlock::set_exception_range(int start_bci, int limit_bci)  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
   assert(limit_bci >= start_bci, "valid range");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
   assert(is_handler(), "must be handler");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
   _ex_start_bci = start_bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
   _ex_limit_bci = limit_bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
static char *flagnames[] = {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  "Processed",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  "Handler",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  "MayThrow",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  "Jsr",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  "Ret",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  "RetTarget",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  "HasHandler",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
void ciBlock::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  tty->print(" [%d .. %d), {", _start_bci, _limit_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  for (int i = 0; i < 8; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
    if ((_flags & (1 << i)) != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
      tty->print(" %s", flagnames[i]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  tty->print(" ]");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  if (is_handler())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
    tty->print(" handles(%d..%d)", _ex_start_bci, _ex_limit_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
// ------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
// ciBlock::print_on
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
void ciBlock::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  st->print_cr("--------------------------------------------------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  st->print   ("ciBlock [%d - %d) control : ", start_bci(), limit_bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  if (control_bci() == fall_through_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
    st->print_cr("%d:fall through", limit_bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
    st->print_cr("%d:%s", control_bci(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
        Bytecodes::name(method()->java_code_at_bci(control_bci())));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  if (Verbose || WizardMode) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
    method()->print_codes_on(start_bci(), limit_bci(), st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
#endif