hotspot/src/share/vm/c1/c1_Optimizer.cpp
author xdono
Mon, 15 Dec 2008 16:55:11 -0800
changeset 1623 a0dd9009e992
parent 1 489c9b5090e2
child 1674 a7b953e9fc86
permissions -rw-r--r--
6785258: Update copyright year Summary: Update copyright for files that have been modified starting July 2008 to Dec 2008 Reviewed-by: katleman, ohair, tbell
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 1999-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/_c1_Optimizer.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
define_array(ValueSetArray, ValueSet*);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
define_stack(ValueSetList, ValueSetArray);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
Optimizer::Optimizer(IR* ir) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  assert(ir->is_valid(), "IR must be valid");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  _ir = ir;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class CE_Eliminator: public BlockClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  IR* _hir;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  int _cee_count;                                // the number of CEs successfully eliminated
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  int _has_substitution;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  CE_Eliminator(IR* hir) : _cee_count(0), _hir(hir) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    _has_substitution = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
    _hir->iterate_preorder(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    if (_has_substitution) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
      // substituted some phis so resolve the substitution
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
      SubstitutionResolver sr(_hir);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  int cee_count() const                          { return _cee_count; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  void adjust_exception_edges(BlockBegin* block, BlockBegin* sux) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    int e = sux->number_of_exception_handlers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    for (int i = 0; i < e; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
      BlockBegin* xhandler = sux->exception_handler_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
      block->add_exception_handler(xhandler);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
      assert(xhandler->is_predecessor(sux), "missing predecessor");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
      if (sux->number_of_preds() == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
        // sux is disconnected from graph so disconnect from exception handlers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
        xhandler->remove_predecessor(sux);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
      if (!xhandler->is_predecessor(block)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
        xhandler->add_predecessor(block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  virtual void block_do(BlockBegin* block) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    // 1) find conditional expression
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    // check if block ends with an If
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    If* if_ = block->end()->as_If();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    if (if_ == NULL) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    // check if If works on int or object types
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    // (we cannot handle If's working on long, float or doubles yet,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    // since IfOp doesn't support them - these If's show up if cmp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    // operations followed by If's are eliminated)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    ValueType* if_type = if_->x()->type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    if (!if_type->is_int() && !if_type->is_object()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    BlockBegin* t_block = if_->tsux();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    BlockBegin* f_block = if_->fsux();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    Instruction* t_cur = t_block->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    Instruction* f_cur = f_block->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    // one Constant may be present between BlockBegin and BlockEnd
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    Value t_const = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    Value f_const = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    if (t_cur->as_Constant() != NULL && !t_cur->can_trap()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
      t_const = t_cur;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
      t_cur = t_cur->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    if (f_cur->as_Constant() != NULL && !f_cur->can_trap()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
      f_const = f_cur;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
      f_cur = f_cur->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    // check if both branches end with a goto
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    Goto* t_goto = t_cur->as_Goto();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    if (t_goto == NULL) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    Goto* f_goto = f_cur->as_Goto();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    if (f_goto == NULL) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    // check if both gotos merge into the same block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    BlockBegin* sux = t_goto->default_sux();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    if (sux != f_goto->default_sux()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    // check if at least one word was pushed on sux_state
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    ValueStack* sux_state = sux->state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    if (sux_state->stack_size() <= if_->state()->stack_size()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    // check if phi function is present at end of successor stack and that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    // only this phi was pushed on the stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    Value sux_phi = sux_state->stack_at(if_->state()->stack_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    if (sux_phi == NULL || sux_phi->as_Phi() == NULL || sux_phi->as_Phi()->block() != sux) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    if (sux_phi->type()->size() != sux_state->stack_size() - if_->state()->stack_size()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    // get the values that were pushed in the true- and false-branch
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    Value t_value = t_goto->state()->stack_at(if_->state()->stack_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    Value f_value = f_goto->state()->stack_at(if_->state()->stack_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    // backend does not support floats
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    assert(t_value->type()->base() == f_value->type()->base(), "incompatible types");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    if (t_value->type()->is_float_kind()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    // check that successor has no other phi functions but sux_phi
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    // this can happen when t_block or f_block contained additonal stores to local variables
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    // that are no longer represented by explicit instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    for_each_phi_fun(sux, phi,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
                     if (phi != sux_phi) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
                     );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    // true and false blocks can't have phis
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    for_each_phi_fun(t_block, phi, return; );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    for_each_phi_fun(f_block, phi, return; );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    // 2) substitute conditional expression
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    //    with an IfOp followed by a Goto
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    // cut if_ away and get node before
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    Instruction* cur_end = if_->prev(block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    int bci = if_->bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    // append constants of true- and false-block if necessary
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    // clone constants because original block must not be destroyed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    assert((t_value != f_const && f_value != t_const) || t_const == f_const, "mismatch");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    if (t_value == t_const) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
      t_value = new Constant(t_const->type());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
      cur_end = cur_end->set_next(t_value, bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    if (f_value == f_const) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
      f_value = new Constant(f_const->type());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
      cur_end = cur_end->set_next(f_value, bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    // it is very unlikely that the condition can be statically decided
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    // (this was checked previously by the Canonicalizer), so always
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    // append IfOp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    Value result = new IfOp(if_->x(), if_->cond(), if_->y(), t_value, f_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    cur_end = cur_end->set_next(result, bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    // append Goto to successor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    ValueStack* state_before = if_->is_safepoint() ? if_->state_before() : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    Goto* goto_ = new Goto(sux, state_before, if_->is_safepoint() || t_goto->is_safepoint() || f_goto->is_safepoint());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    // prepare state for Goto
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    ValueStack* goto_state = if_->state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    while (sux_state->scope() != goto_state->scope()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
      goto_state = goto_state->pop_scope();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
      assert(goto_state != NULL, "states do not match up");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    goto_state = goto_state->copy();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    goto_state->push(result->type(), result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    assert(goto_state->is_same_across_scopes(sux_state), "states must match now");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    goto_->set_state(goto_state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    // Steal the bci for the goto from the sux
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    cur_end = cur_end->set_next(goto_, sux->bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    // Adjust control flow graph
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    BlockBegin::disconnect_edge(block, t_block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    BlockBegin::disconnect_edge(block, f_block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    if (t_block->number_of_preds() == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
      BlockBegin::disconnect_edge(t_block, sux);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    adjust_exception_edges(block, t_block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    if (f_block->number_of_preds() == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
      BlockBegin::disconnect_edge(f_block, sux);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    adjust_exception_edges(block, f_block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    // update block end
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    block->set_end(goto_);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    // substitute the phi if possible
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    if (sux_phi->as_Phi()->operand_count() == 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
      assert(sux_phi->as_Phi()->operand_at(0) == result, "screwed up phi");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
      sux_phi->set_subst(result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
      _has_substitution = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
    // 3) successfully eliminated a conditional expression
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
    _cee_count++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    if (PrintCEE) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
      tty->print_cr("%d. CEE in B%d (B%d B%d)", cee_count(), block->block_id(), t_block->block_id(), f_block->block_id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    _hir->verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
void Optimizer::eliminate_conditional_expressions() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  // find conditional expressions & replace them with IfOps
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  CE_Eliminator ce(ir());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
class BlockMerger: public BlockClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  IR* _hir;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  int _merge_count;              // the number of block pairs successfully merged
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  BlockMerger(IR* hir)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  : _hir(hir)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  , _merge_count(0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    _hir->iterate_preorder(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  bool try_merge(BlockBegin* block) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
    BlockEnd* end = block->end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    if (end->as_Goto() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
      assert(end->number_of_sux() == 1, "end must have exactly one successor");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
      // Note: It would be sufficient to check for the number of successors (= 1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
      //       in order to decide if this block can be merged potentially. That
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
      //       would then also include switch statements w/ only a default case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
      //       However, in that case we would need to make sure the switch tag
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
      //       expression is executed if it can produce observable side effects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
      //       We should probably have the canonicalizer simplifying such switch
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
      //       statements and then we are sure we don't miss these merge opportunities
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
      //       here (was bug - gri 7/7/99).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
      BlockBegin* sux = end->default_sux();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
      if (sux->number_of_preds() == 1 && !sux->is_entry_block() && !end->is_safepoint()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
        // merge the two blocks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
        // verify that state at the end of block and at the beginning of sux are equal
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
        // no phi functions must be present at beginning of sux
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
        ValueStack* sux_state = sux->state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
        ValueStack* end_state = end->state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
        while (end_state->scope() != sux_state->scope()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
          // match up inlining level
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
          end_state = end_state->pop_scope();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
        assert(end_state->stack_size() == sux_state->stack_size(), "stack not equal");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
        assert(end_state->locals_size() == sux_state->locals_size(), "locals not equal");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
        int index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
        Value sux_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
        for_each_stack_value(sux_state, index, sux_value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
          assert(sux_value == end_state->stack_at(index), "stack not equal");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
        for_each_local_value(sux_state, index, sux_value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
          assert(sux_value == end_state->local_at(index), "locals not equal");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
        assert(sux_state->caller_state() == end_state->caller_state(), "caller not equal");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
        // find instruction before end & append first instruction of sux block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
        Instruction* prev = end->prev(block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
        Instruction* next = sux->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
        assert(prev->as_BlockEnd() == NULL, "must not be a BlockEnd");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
        prev->set_next(next, next->bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
        sux->disconnect_from_graph();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
        block->set_end(sux->end());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
        // add exception handlers of deleted block, if any
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
        for (int k = 0; k < sux->number_of_exception_handlers(); k++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
          BlockBegin* xhandler = sux->exception_handler_at(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
          block->add_exception_handler(xhandler);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
          // also substitute predecessor of exception handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
          assert(xhandler->is_predecessor(sux), "missing predecessor");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
          xhandler->remove_predecessor(sux);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
          if (!xhandler->is_predecessor(block)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
            xhandler->add_predecessor(block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
        // debugging output
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
        _merge_count++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
        if (PrintBlockElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
          tty->print_cr("%d. merged B%d & B%d (stack size = %d)",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
                        _merge_count, block->block_id(), sux->block_id(), sux->state()->stack_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
        _hir->verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
        If* if_ = block->end()->as_If();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
        if (if_) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
          IfOp* ifop    = if_->x()->as_IfOp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
          Constant* con = if_->y()->as_Constant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
          bool swapped = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
          if (!con || !ifop) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
            ifop = if_->y()->as_IfOp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
            con  = if_->x()->as_Constant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
            swapped = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
          if (con && ifop) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
            Constant* tval = ifop->tval()->as_Constant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
            Constant* fval = ifop->fval()->as_Constant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
            if (tval && fval) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
              // Find the instruction before if_, starting with ifop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
              // When if_ and ifop are not in the same block, prev
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
              // becomes NULL In such (rare) cases it is not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
              // profitable to perform the optimization.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
              Value prev = ifop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
              while (prev != NULL && prev->next() != if_) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
                prev = prev->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
              }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
              if (prev != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
                Instruction::Condition cond = if_->cond();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
                BlockBegin* tsux = if_->tsux();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
                BlockBegin* fsux = if_->fsux();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
                if (swapped) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
                  cond = Instruction::mirror(cond);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
                  tsux = if_->fsux();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
                  fsux = if_->tsux();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
                }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
                BlockBegin* tblock = tval->compare(cond, con, tsux, fsux);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
                BlockBegin* fblock = fval->compare(cond, con, tsux, fsux);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
                if (tblock != fblock && !if_->is_safepoint()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
                  If* newif = new If(ifop->x(), ifop->cond(), false, ifop->y(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
                                     tblock, fblock, if_->state_before(), if_->is_safepoint());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
                  newif->set_state(if_->state()->copy());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
                  assert(prev->next() == if_, "must be guaranteed by above search");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
                  prev->set_next(newif, if_->bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
                  block->set_end(newif);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
                  _merge_count++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
                  if (PrintBlockElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
                    tty->print_cr("%d. replaced If and IfOp at end of B%d with single If", _merge_count, block->block_id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
                  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
                  _hir->verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
                }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
              }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
        return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  virtual void block_do(BlockBegin* block) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
    _hir->verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
    // repeat since the same block may merge again
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
    while (try_merge(block)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
      _hir->verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
    }
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
void Optimizer::eliminate_blocks() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  // merge blocks if possible
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  BlockMerger bm(ir());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
class NullCheckEliminator;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
class NullCheckVisitor: public InstructionVisitor {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  NullCheckEliminator* _nce;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  NullCheckEliminator* nce() { return _nce; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  NullCheckVisitor() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  void set_eliminator(NullCheckEliminator* nce) { _nce = nce; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  void do_Phi            (Phi*             x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  void do_Local          (Local*           x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  void do_Constant       (Constant*        x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  void do_LoadField      (LoadField*       x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  void do_StoreField     (StoreField*      x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  void do_ArrayLength    (ArrayLength*     x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  void do_LoadIndexed    (LoadIndexed*     x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  void do_StoreIndexed   (StoreIndexed*    x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  void do_NegateOp       (NegateOp*        x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  void do_ArithmeticOp   (ArithmeticOp*    x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  void do_ShiftOp        (ShiftOp*         x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  void do_LogicOp        (LogicOp*         x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  void do_CompareOp      (CompareOp*       x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  void do_IfOp           (IfOp*            x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  void do_Convert        (Convert*         x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  void do_NullCheck      (NullCheck*       x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  void do_Invoke         (Invoke*          x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  void do_NewInstance    (NewInstance*     x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  void do_NewTypeArray   (NewTypeArray*    x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  void do_NewObjectArray (NewObjectArray*  x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  void do_NewMultiArray  (NewMultiArray*   x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  void do_CheckCast      (CheckCast*       x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  void do_InstanceOf     (InstanceOf*      x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  void do_MonitorEnter   (MonitorEnter*    x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  void do_MonitorExit    (MonitorExit*     x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  void do_Intrinsic      (Intrinsic*       x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  void do_BlockBegin     (BlockBegin*      x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  void do_Goto           (Goto*            x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  void do_If             (If*              x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  void do_IfInstanceOf   (IfInstanceOf*    x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  void do_TableSwitch    (TableSwitch*     x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  void do_LookupSwitch   (LookupSwitch*    x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  void do_Return         (Return*          x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  void do_Throw          (Throw*           x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  void do_Base           (Base*            x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  void do_OsrEntry       (OsrEntry*        x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  void do_ExceptionObject(ExceptionObject* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  void do_RoundFP        (RoundFP*         x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  void do_UnsafeGetRaw   (UnsafeGetRaw*    x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  void do_UnsafePutRaw   (UnsafePutRaw*    x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  void do_UnsafeGetObject(UnsafeGetObject* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  void do_UnsafePutObject(UnsafePutObject* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  void do_UnsafePrefetchRead (UnsafePrefetchRead*  x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  void do_UnsafePrefetchWrite(UnsafePrefetchWrite* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  void do_ProfileCall    (ProfileCall*     x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  void do_ProfileCounter (ProfileCounter*  x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
// Because of a static contained within (for the purpose of iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
// over instructions), it is only valid to have one of these active at
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
// a time
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
class NullCheckEliminator {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  static NullCheckEliminator* _static_nce;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  static void                 do_value(Value* vp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  Optimizer*        _opt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  ValueSet*         _visitable_instructions;        // Visit each instruction only once per basic block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  BlockList*        _work_list;                   // Basic blocks to visit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  bool visitable(Value x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
    assert(_visitable_instructions != NULL, "check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
    return _visitable_instructions->contains(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  void mark_visited(Value x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
    assert(_visitable_instructions != NULL, "check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
    _visitable_instructions->remove(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  void mark_visitable(Value x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    assert(_visitable_instructions != NULL, "check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    _visitable_instructions->put(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  void clear_visitable_state() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
    assert(_visitable_instructions != NULL, "check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    _visitable_instructions->clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  ValueSet*         _set;                         // current state, propagated to subsequent BlockBegins
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  ValueSetList      _block_states;                // BlockBegin null-check states for all processed blocks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  NullCheckVisitor  _visitor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  NullCheck*        _last_explicit_null_check;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  bool set_contains(Value x)                      { assert(_set != NULL, "check"); return _set->contains(x); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  void set_put     (Value x)                      { assert(_set != NULL, "check"); _set->put(x); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  void set_remove  (Value x)                      { assert(_set != NULL, "check"); _set->remove(x); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
  BlockList* work_list()                          { return _work_list; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  void iterate_all();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  void iterate_one(BlockBegin* block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  ValueSet* state()                               { return _set; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  void      set_state_from (ValueSet* state)      { _set->set_from(state); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  ValueSet* state_for      (BlockBegin* block)    { return _block_states[block->block_id()]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  void      set_state_for  (BlockBegin* block, ValueSet* stack) { _block_states[block->block_id()] = stack; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  // Returns true if caused a change in the block's state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  bool      merge_state_for(BlockBegin* block,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
                            ValueSet*   incoming_state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  // constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  NullCheckEliminator(Optimizer* opt)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
    : _opt(opt)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
    , _set(new ValueSet())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
    , _last_explicit_null_check(NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
    , _block_states(BlockBegin::number_of_blocks(), NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
    , _work_list(new BlockList()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
    _visitable_instructions = new ValueSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
    _visitor.set_eliminator(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  Optimizer*  opt()                               { return _opt; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  IR*         ir ()                               { return opt()->ir(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  // Process a graph
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  void iterate(BlockBegin* root);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  // In some situations (like NullCheck(x); getfield(x)) the debug
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  // information from the explicit NullCheck can be used to populate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  // the getfield, even if the two instructions are in different
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  // scopes; this allows implicit null checks to be used but the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  // correct exception information to be generated. We must clear the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  // last-traversed NullCheck when we reach a potentially-exception-
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  // throwing instruction, as well as in some other cases.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  void        set_last_explicit_null_check(NullCheck* check) { _last_explicit_null_check = check; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  NullCheck*  last_explicit_null_check()                     { return _last_explicit_null_check; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  Value       last_explicit_null_check_obj()                 { return (_last_explicit_null_check
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
                                                                         ? _last_explicit_null_check->obj()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
                                                                         : NULL); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  NullCheck*  consume_last_explicit_null_check() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
    _last_explicit_null_check->unpin(Instruction::PinExplicitNullCheck);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
    _last_explicit_null_check->set_can_trap(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
    return _last_explicit_null_check;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  void        clear_last_explicit_null_check()               { _last_explicit_null_check = NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  // Handlers for relevant instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  // (separated out from NullCheckVisitor for clarity)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  // The basic contract is that these must leave the instruction in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  // the desired state; must not assume anything about the state of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  // the instruction. We make multiple passes over some basic blocks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  // and the last pass is the only one whose result is valid.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  void handle_AccessField     (AccessField* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  void handle_ArrayLength     (ArrayLength* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  void handle_LoadIndexed     (LoadIndexed* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  void handle_StoreIndexed    (StoreIndexed* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  void handle_NullCheck       (NullCheck* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  void handle_Invoke          (Invoke* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  void handle_NewInstance     (NewInstance* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  void handle_NewArray        (NewArray* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  void handle_AccessMonitor   (AccessMonitor* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  void handle_Intrinsic       (Intrinsic* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  void handle_ExceptionObject (ExceptionObject* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  void handle_Phi             (Phi* x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
// NEEDS_CLEANUP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
// There may be other instructions which need to clear the last
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
// explicit null check. Anything across which we can not hoist the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
// debug information for a NullCheck instruction must clear it. It
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
// might be safer to pattern match "NullCheck ; {AccessField,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
// ArrayLength, LoadIndexed}" but it is more easily structured this way.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
// Should test to see performance hit of clearing it for all handlers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
// with empty bodies below. If it is negligible then we should leave
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
// that in for safety, otherwise should think more about it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
void NullCheckVisitor::do_Phi            (Phi*             x) { nce()->handle_Phi(x);      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
void NullCheckVisitor::do_Local          (Local*           x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
void NullCheckVisitor::do_Constant       (Constant*        x) { /* FIXME: handle object constants */ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
void NullCheckVisitor::do_LoadField      (LoadField*       x) { nce()->handle_AccessField(x); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
void NullCheckVisitor::do_StoreField     (StoreField*      x) { nce()->handle_AccessField(x); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
void NullCheckVisitor::do_ArrayLength    (ArrayLength*     x) { nce()->handle_ArrayLength(x); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
void NullCheckVisitor::do_LoadIndexed    (LoadIndexed*     x) { nce()->handle_LoadIndexed(x); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
void NullCheckVisitor::do_StoreIndexed   (StoreIndexed*    x) { nce()->handle_StoreIndexed(x); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
void NullCheckVisitor::do_NegateOp       (NegateOp*        x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
void NullCheckVisitor::do_ArithmeticOp   (ArithmeticOp*    x) { if (x->can_trap()) nce()->clear_last_explicit_null_check(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
void NullCheckVisitor::do_ShiftOp        (ShiftOp*         x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
void NullCheckVisitor::do_LogicOp        (LogicOp*         x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
void NullCheckVisitor::do_CompareOp      (CompareOp*       x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
void NullCheckVisitor::do_IfOp           (IfOp*            x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
void NullCheckVisitor::do_Convert        (Convert*         x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
void NullCheckVisitor::do_NullCheck      (NullCheck*       x) { nce()->handle_NullCheck(x); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
void NullCheckVisitor::do_Invoke         (Invoke*          x) { nce()->handle_Invoke(x); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
void NullCheckVisitor::do_NewInstance    (NewInstance*     x) { nce()->handle_NewInstance(x); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
void NullCheckVisitor::do_NewTypeArray   (NewTypeArray*    x) { nce()->handle_NewArray(x); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
void NullCheckVisitor::do_NewObjectArray (NewObjectArray*  x) { nce()->handle_NewArray(x); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
void NullCheckVisitor::do_NewMultiArray  (NewMultiArray*   x) { nce()->handle_NewArray(x); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
void NullCheckVisitor::do_CheckCast      (CheckCast*       x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
void NullCheckVisitor::do_InstanceOf     (InstanceOf*      x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
void NullCheckVisitor::do_MonitorEnter   (MonitorEnter*    x) { nce()->handle_AccessMonitor(x); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
void NullCheckVisitor::do_MonitorExit    (MonitorExit*     x) { nce()->handle_AccessMonitor(x); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
void NullCheckVisitor::do_Intrinsic      (Intrinsic*       x) { nce()->clear_last_explicit_null_check(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
void NullCheckVisitor::do_BlockBegin     (BlockBegin*      x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
void NullCheckVisitor::do_Goto           (Goto*            x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
void NullCheckVisitor::do_If             (If*              x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
void NullCheckVisitor::do_IfInstanceOf   (IfInstanceOf*    x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
void NullCheckVisitor::do_TableSwitch    (TableSwitch*     x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
void NullCheckVisitor::do_LookupSwitch   (LookupSwitch*    x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
void NullCheckVisitor::do_Return         (Return*          x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
void NullCheckVisitor::do_Throw          (Throw*           x) { nce()->clear_last_explicit_null_check(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
void NullCheckVisitor::do_Base           (Base*            x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
void NullCheckVisitor::do_OsrEntry       (OsrEntry*        x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
void NullCheckVisitor::do_ExceptionObject(ExceptionObject* x) { nce()->handle_ExceptionObject(x); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
void NullCheckVisitor::do_RoundFP        (RoundFP*         x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
void NullCheckVisitor::do_UnsafeGetRaw   (UnsafeGetRaw*    x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
void NullCheckVisitor::do_UnsafePutRaw   (UnsafePutRaw*    x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
void NullCheckVisitor::do_UnsafeGetObject(UnsafeGetObject* x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
void NullCheckVisitor::do_UnsafePutObject(UnsafePutObject* x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
void NullCheckVisitor::do_UnsafePrefetchRead (UnsafePrefetchRead*  x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
void NullCheckVisitor::do_UnsafePrefetchWrite(UnsafePrefetchWrite* x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
void NullCheckVisitor::do_ProfileCall    (ProfileCall*     x) { nce()->clear_last_explicit_null_check(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
void NullCheckVisitor::do_ProfileCounter (ProfileCounter*  x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
NullCheckEliminator* NullCheckEliminator::_static_nce = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
void NullCheckEliminator::do_value(Value* p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  assert(*p != NULL, "should not find NULL instructions");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  if (_static_nce->visitable(*p)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
    _static_nce->mark_visited(*p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
    (*p)->visit(&_static_nce->_visitor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
bool NullCheckEliminator::merge_state_for(BlockBegin* block, ValueSet* incoming_state) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  ValueSet* state = state_for(block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  if (state == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
    state = incoming_state->copy();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
    set_state_for(block, state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
    bool changed = state->set_intersect(incoming_state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
    if (PrintNullCheckElimination && changed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
      tty->print_cr("Block %d's null check state changed", block->block_id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
    return changed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
void NullCheckEliminator::iterate_all() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  while (work_list()->length() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
    iterate_one(work_list()->pop());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
void NullCheckEliminator::iterate_one(BlockBegin* block) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  _static_nce = this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  clear_visitable_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  // clear out an old explicit null checks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  set_last_explicit_null_check(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
    tty->print_cr(" ...iterating block %d in null check elimination for %s::%s%s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
                  block->block_id(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
                  ir()->method()->holder()->name()->as_utf8(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
                  ir()->method()->name()->as_utf8(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
                  ir()->method()->signature()->as_symbol()->as_utf8());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
  // Create new state if none present (only happens at root)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  if (state_for(block) == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
    ValueSet* tmp_state = new ValueSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
    set_state_for(block, tmp_state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
    // Initial state is that local 0 (receiver) is non-null for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
    // non-static methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
    ValueStack* stack  = block->state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
    IRScope*    scope  = stack->scope();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
    ciMethod*   method = scope->method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
    if (!method->is_static()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
      Local* local0 = stack->local_at(0)->as_Local();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
      assert(local0 != NULL, "must be");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
      assert(local0->type() == objectType, "invalid type of receiver");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
      if (local0 != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
        // Local 0 is used in this scope
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
        tmp_state->put(local0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
        if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
          tty->print_cr("Local 0 (value %d) proven non-null upon entry", local0->id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
  // Must copy block's state to avoid mutating it during iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  // through the block -- otherwise "not-null" states can accidentally
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  // propagate "up" through the block during processing of backward
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  // branches and algorithm is incorrect (and does not converge)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
  set_state_from(state_for(block));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
  // allow visiting of Phis belonging to this block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  for_each_phi_fun(block, phi,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
                   mark_visitable(phi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
                   );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  BlockEnd* e = block->end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  assert(e != NULL, "incomplete graph");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
  // Propagate the state before this block into the exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  // handlers.  They aren't true successors since we aren't guaranteed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  // to execute the whole block before executing them.  Also putting
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  // them on first seems to help reduce the amount of iteration to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  // reach a fixed point.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  for (i = 0; i < block->number_of_exception_handlers(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
    BlockBegin* next = block->exception_handler_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
    if (merge_state_for(next, state())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
      if (!work_list()->contains(next)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
        work_list()->push(next);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
  // Iterate through block, updating state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  for (Instruction* instr = block; instr != NULL; instr = instr->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
    // Mark instructions in this block as visitable as they are seen
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
    // in the instruction list.  This keeps the iteration from
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
    // visiting instructions which are references in other blocks or
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
    // visiting instructions more than once.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
    mark_visitable(instr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
    if (instr->is_root() || instr->can_trap() || (instr->as_NullCheck() != NULL)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
      mark_visited(instr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
      instr->input_values_do(&NullCheckEliminator::do_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
      instr->visit(&_visitor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
  // Propagate state to successors if necessary
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
  for (i = 0; i < e->number_of_sux(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
    BlockBegin* next = e->sux_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
    if (merge_state_for(next, state())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
      if (!work_list()->contains(next)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
        work_list()->push(next);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
void NullCheckEliminator::iterate(BlockBegin* block) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  work_list()->push(block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
  iterate_all();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
void NullCheckEliminator::handle_AccessField(AccessField* x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
  if (x->is_static()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
    if (x->as_LoadField() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
      // If the field is a non-null static final object field (as is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
      // often the case for sun.misc.Unsafe), put this LoadField into
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
      // the non-null map
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
      ciField* field = x->field();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
      if (field->is_constant()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
        ciConstant field_val = field->constant_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
        BasicType field_type = field_val.basic_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
        if (field_type == T_OBJECT || field_type == T_ARRAY) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
          ciObject* obj_val = field_val.as_object();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
          if (!obj_val->is_null_object()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
            if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
              tty->print_cr("AccessField %d proven non-null by static final non-null oop check",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
                            x->id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
            set_put(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
    // Be conservative
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
    clear_last_explicit_null_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  Value obj = x->obj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
  if (set_contains(obj)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
    // Value is non-null => update AccessField
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
    if (last_explicit_null_check_obj() == obj && !x->needs_patching()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
      x->set_explicit_null_check(consume_last_explicit_null_check());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
      x->set_needs_null_check(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
      if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
        tty->print_cr("Folded NullCheck %d into AccessField %d's null check for value %d",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
                      x->explicit_null_check()->id(), x->id(), obj->id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
      x->set_explicit_null_check(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
      x->set_needs_null_check(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
      if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
        tty->print_cr("Eliminated AccessField %d's null check for value %d", x->id(), obj->id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
    set_put(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
    if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
      tty->print_cr("AccessField %d of value %d proves value to be non-null", x->id(), obj->id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
    // Ensure previous passes do not cause wrong state
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
    x->set_needs_null_check(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
    x->set_explicit_null_check(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
  clear_last_explicit_null_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
void NullCheckEliminator::handle_ArrayLength(ArrayLength* x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
  Value array = x->array();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
  if (set_contains(array)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
    // Value is non-null => update AccessArray
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
    if (last_explicit_null_check_obj() == array) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
      x->set_explicit_null_check(consume_last_explicit_null_check());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
      x->set_needs_null_check(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
      if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
        tty->print_cr("Folded NullCheck %d into ArrayLength %d's null check for value %d",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
                      x->explicit_null_check()->id(), x->id(), array->id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
      x->set_explicit_null_check(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
      x->set_needs_null_check(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
      if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
        tty->print_cr("Eliminated ArrayLength %d's null check for value %d", x->id(), array->id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
    set_put(array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
    if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
      tty->print_cr("ArrayLength %d of value %d proves value to be non-null", x->id(), array->id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
    // Ensure previous passes do not cause wrong state
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
    x->set_needs_null_check(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
    x->set_explicit_null_check(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
  clear_last_explicit_null_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
void NullCheckEliminator::handle_LoadIndexed(LoadIndexed* x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
  Value array = x->array();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
  if (set_contains(array)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
    // Value is non-null => update AccessArray
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
    if (last_explicit_null_check_obj() == array) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
      x->set_explicit_null_check(consume_last_explicit_null_check());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
      x->set_needs_null_check(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
      if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
        tty->print_cr("Folded NullCheck %d into LoadIndexed %d's null check for value %d",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
                      x->explicit_null_check()->id(), x->id(), array->id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
      x->set_explicit_null_check(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
      x->set_needs_null_check(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
      if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
        tty->print_cr("Eliminated LoadIndexed %d's null check for value %d", x->id(), array->id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
    set_put(array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
    if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
      tty->print_cr("LoadIndexed %d of value %d proves value to be non-null", x->id(), array->id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
    // Ensure previous passes do not cause wrong state
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
    x->set_needs_null_check(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
    x->set_explicit_null_check(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
  clear_last_explicit_null_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
void NullCheckEliminator::handle_StoreIndexed(StoreIndexed* x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
  Value array = x->array();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
  if (set_contains(array)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
    // Value is non-null => update AccessArray
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
    if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
      tty->print_cr("Eliminated StoreIndexed %d's null check for value %d", x->id(), array->id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
    x->set_needs_null_check(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
    set_put(array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
    if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
      tty->print_cr("StoreIndexed %d of value %d proves value to be non-null", x->id(), array->id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
    // Ensure previous passes do not cause wrong state
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
    x->set_needs_null_check(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
  clear_last_explicit_null_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
void NullCheckEliminator::handle_NullCheck(NullCheck* x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
  Value obj = x->obj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
  if (set_contains(obj)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
    // Already proven to be non-null => this NullCheck is useless
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
    if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
      tty->print_cr("Eliminated NullCheck %d for value %d", x->id(), obj->id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
    // Don't unpin since that may shrink obj's live range and make it unavailable for debug info.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
    // The code generator won't emit LIR for a NullCheck that cannot trap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
    x->set_can_trap(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
    // May be null => add to map and set last explicit NullCheck
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
    x->set_can_trap(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
    // make sure it's pinned if it can trap
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
    x->pin(Instruction::PinExplicitNullCheck);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
    set_put(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
    set_last_explicit_null_check(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
    if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
      tty->print_cr("NullCheck %d of value %d proves value to be non-null", x->id(), obj->id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
void NullCheckEliminator::handle_Invoke(Invoke* x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
  if (!x->has_receiver()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
    // Be conservative
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
    clear_last_explicit_null_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
  Value recv = x->receiver();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
  if (!set_contains(recv)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
    set_put(recv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
    if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
      tty->print_cr("Invoke %d of value %d proves value to be non-null", x->id(), recv->id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
  clear_last_explicit_null_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
void NullCheckEliminator::handle_NewInstance(NewInstance* x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
  set_put(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
  if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
    tty->print_cr("NewInstance %d is non-null", x->id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
void NullCheckEliminator::handle_NewArray(NewArray* x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
  set_put(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
  if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
    tty->print_cr("NewArray %d is non-null", x->id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
void NullCheckEliminator::handle_ExceptionObject(ExceptionObject* x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
  set_put(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
  if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
    tty->print_cr("ExceptionObject %d is non-null", x->id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
void NullCheckEliminator::handle_AccessMonitor(AccessMonitor* x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
  Value obj = x->obj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
  if (set_contains(obj)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
    // Value is non-null => update AccessMonitor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
    if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
      tty->print_cr("Eliminated AccessMonitor %d's null check for value %d", x->id(), obj->id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
    x->set_needs_null_check(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
    set_put(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
    if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
      tty->print_cr("AccessMonitor %d of value %d proves value to be non-null", x->id(), obj->id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
    // Ensure previous passes do not cause wrong state
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
    x->set_needs_null_check(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
  clear_last_explicit_null_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
void NullCheckEliminator::handle_Intrinsic(Intrinsic* x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
  if (!x->has_receiver()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
    // Be conservative
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
    clear_last_explicit_null_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
  Value recv = x->receiver();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
  if (set_contains(recv)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
    // Value is non-null => update Intrinsic
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
    if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
      tty->print_cr("Eliminated Intrinsic %d's null check for value %d", x->id(), recv->id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
    x->set_needs_null_check(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
    set_put(recv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
    if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
      tty->print_cr("Intrinsic %d of value %d proves value to be non-null", x->id(), recv->id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
    // Ensure previous passes do not cause wrong state
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
    x->set_needs_null_check(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
  clear_last_explicit_null_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
void NullCheckEliminator::handle_Phi(Phi* x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
  int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
  bool all_non_null = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
  if (x->is_illegal()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
    all_non_null = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
    for (i = 0; i < x->operand_count(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
      Value input = x->operand_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
      if (!set_contains(input)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
        all_non_null = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
  if (all_non_null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
    // Value is non-null => update Phi
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
    if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
      tty->print_cr("Eliminated Phi %d's null check for phifun because all inputs are non-null", x->id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
    x->set_needs_null_check(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
  } else if (set_contains(x)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
    set_remove(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
void Optimizer::eliminate_null_checks() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
  NullCheckEliminator nce(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
  if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
    tty->print_cr("Starting null check elimination for method %s::%s%s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
                  ir()->method()->holder()->name()->as_utf8(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
                  ir()->method()->name()->as_utf8(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
                  ir()->method()->signature()->as_symbol()->as_utf8());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
  // Apply to graph
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
  nce.iterate(ir()->start());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
  // walk over the graph looking for exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
  // handlers and iterate over them as well
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
  int nblocks = BlockBegin::number_of_blocks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
  BlockList blocks(nblocks);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
  boolArray visited_block(nblocks, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
  blocks.push(ir()->start());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
  visited_block[ir()->start()->block_id()] = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
  for (int i = 0; i < blocks.length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
    BlockBegin* b = blocks[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
    // exception handlers need to be treated as additional roots
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
    for (int e = b->number_of_exception_handlers(); e-- > 0; ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
      BlockBegin* excp = b->exception_handler_at(e);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
      int id = excp->block_id();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
      if (!visited_block[id]) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
        blocks.push(excp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
        visited_block[id] = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
        nce.iterate(excp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
    // traverse successors
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
    BlockEnd *end = b->end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
    for (int s = end->number_of_sux(); s-- > 0; ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
      BlockBegin* next = end->sux_at(s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
      int id = next->block_id();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
      if (!visited_block[id]) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
        blocks.push(next);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
        visited_block[id] = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
  if (PrintNullCheckElimination) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
    tty->print_cr("Done with null check elimination for method %s::%s%s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
                  ir()->method()->holder()->name()->as_utf8(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
                  ir()->method()->name()->as_utf8(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
                  ir()->method()->signature()->as_symbol()->as_utf8());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
}