hotspot/src/share/vm/c1/c1_Canonicalizer.cpp
author twisti
Tue, 09 Mar 2010 20:16:19 +0100
changeset 5046 27e801a857cb
parent 1 489c9b5090e2
child 5547 f4b087cbb361
permissions -rw-r--r--
6919934: JSR 292 needs to support x86 C1 Summary: This implements JSR 292 support for C1 x86. Reviewed-by: never, jrose, kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5046
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1
diff changeset
     2
 * Copyright 1999-2010 Sun Microsystems, Inc.  All Rights Reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
#include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#include "incls/_c1_Canonicalizer.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
static void do_print_value(Value* vp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
  (*vp)->print_line();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
void Canonicalizer::set_canonical(Value x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  assert(x != NULL, "value must exist");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  // Note: we can not currently substitute root nodes which show up in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  // the instruction stream (because the instruction list is embedded
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  // in the instructions).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  if (canonical() != x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
    if (PrintCanonicalization) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
      canonical()->input_values_do(do_print_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
      canonical()->print_line();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
      tty->print_cr("canonicalized to:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
      x->input_values_do(do_print_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
      x->print_line();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
      tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    assert(_canonical->type()->tag() == x->type()->tag(), "types must match");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    _canonical = x;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
void Canonicalizer::move_const_to_right(Op2* x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  if (x->x()->type()->is_constant() && x->is_commutative()) x->swap_operands();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
void Canonicalizer::do_Op2(Op2* x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  if (x->x() == x->y()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    switch (x->op()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    case Bytecodes::_isub: set_constant(0); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    case Bytecodes::_lsub: set_constant(jlong_cast(0)); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    case Bytecodes::_iand: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    case Bytecodes::_land: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    case Bytecodes::_ior:  // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    case Bytecodes::_lor : set_canonical(x->x()); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    case Bytecodes::_ixor: set_constant(0); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    case Bytecodes::_lxor: set_constant(jlong_cast(0)); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  if (x->x()->type()->is_constant() && x->y()->type()->is_constant()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    // do constant folding for selected operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    switch (x->type()->tag()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
      case intTag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
        { jint a = x->x()->type()->as_IntConstant()->value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
          jint b = x->y()->type()->as_IntConstant()->value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
          switch (x->op()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
            case Bytecodes::_iadd: set_constant(a + b); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
            case Bytecodes::_isub: set_constant(a - b); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
            case Bytecodes::_imul: set_constant(a * b); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
            case Bytecodes::_idiv:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
              if (b != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
                if (a == min_jint && b == -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
                  set_constant(min_jint);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
                } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
                  set_constant(a / b);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
                }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
                return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
              }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
              break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
            case Bytecodes::_irem:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
              if (b != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
                if (a == min_jint && b == -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
                  set_constant(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
                } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
                  set_constant(a % b);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
                }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
                return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
              }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
              break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
            case Bytecodes::_iand: set_constant(a & b); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
            case Bytecodes::_ior : set_constant(a | b); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
            case Bytecodes::_ixor: set_constant(a ^ b); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
      case longTag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
        { jlong a = x->x()->type()->as_LongConstant()->value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
          jlong b = x->y()->type()->as_LongConstant()->value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
          switch (x->op()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
            case Bytecodes::_ladd: set_constant(a + b); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
            case Bytecodes::_lsub: set_constant(a - b); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
            case Bytecodes::_lmul: set_constant(a * b); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
            case Bytecodes::_ldiv:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
              if (b != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
                set_constant(SharedRuntime::ldiv(b, a));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
                return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
              }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
              break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
            case Bytecodes::_lrem:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
              if (b != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
                set_constant(SharedRuntime::lrem(b, a));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
                return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
              }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
              break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
            case Bytecodes::_land: set_constant(a & b); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
            case Bytecodes::_lor : set_constant(a | b); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
            case Bytecodes::_lxor: set_constant(a ^ b); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
      // other cases not implemented (must be extremely careful with floats & doubles!)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  // make sure constant is on the right side, if any
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  move_const_to_right(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  if (x->y()->type()->is_constant()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    // do constant folding for selected operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    switch (x->type()->tag()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
      case intTag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
        if (x->y()->type()->as_IntConstant()->value() == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
          switch (x->op()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
            case Bytecodes::_iadd: set_canonical(x->x()); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
            case Bytecodes::_isub: set_canonical(x->x()); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
            case Bytecodes::_imul: set_constant(0); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
              // Note: for div and rem, make sure that C semantics
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
              //       corresponds to Java semantics!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
            case Bytecodes::_iand: set_constant(0); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
            case Bytecodes::_ior : set_canonical(x->x()); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
      case longTag:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
        if (x->y()->type()->as_LongConstant()->value() == (jlong)0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
          switch (x->op()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
            case Bytecodes::_ladd: set_canonical(x->x()); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
            case Bytecodes::_lsub: set_canonical(x->x()); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
            case Bytecodes::_lmul: set_constant((jlong)0); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
              // Note: for div and rem, make sure that C semantics
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
              //       corresponds to Java semantics!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
            case Bytecodes::_land: set_constant((jlong)0); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
            case Bytecodes::_lor : set_canonical(x->x()); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
void Canonicalizer::do_Phi            (Phi*             x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
void Canonicalizer::do_Constant       (Constant*        x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
void Canonicalizer::do_Local          (Local*           x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
void Canonicalizer::do_LoadField      (LoadField*       x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
// checks if v is in the block that is currently processed by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
// GraphBuilder. This is the only block that has not BlockEnd yet.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
static bool in_current_block(Value v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  int max_distance = 4;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  while (max_distance > 0 && v != NULL && v->as_BlockEnd() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    v = v->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    max_distance--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  return v == NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
void Canonicalizer::do_StoreField     (StoreField*      x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  // If a value is going to be stored into a field or array some of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  // the conversions emitted by javac are unneeded because the fields
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  // are packed to their natural size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  Convert* conv = x->value()->as_Convert();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  if (conv) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    Value value = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    BasicType type = x->field()->type()->basic_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    switch (conv->op()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    case Bytecodes::_i2b: if (type == T_BYTE)  value = conv->value(); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    case Bytecodes::_i2s: if (type == T_SHORT || type == T_BYTE) value = conv->value(); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    case Bytecodes::_i2c: if (type == T_CHAR  || type == T_BYTE)  value = conv->value(); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    // limit this optimization to current block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
    if (value != NULL && in_current_block(conv)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
      set_canonical(new StoreField(x->obj(), x->offset(), x->field(), value, x->is_static(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
                                   x->lock_stack(), x->state_before(), x->is_loaded(), x->is_initialized()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
void Canonicalizer::do_ArrayLength    (ArrayLength*     x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  NewArray* array = x->array()->as_NewArray();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  if (array != NULL && array->length() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    Constant* length = array->length()->as_Constant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    if (length != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
      // do not use the Constant itself, but create a new Constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
      // with same value Otherwise a Constant is live over multiple
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
      // blocks without being registered in a state array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
      assert(length->type()->as_IntConstant() != NULL, "array length must be integer");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
      set_constant(length->type()->as_IntConstant()->value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    LoadField* lf = x->array()->as_LoadField();
5046
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1
diff changeset
   225
    if (lf != NULL) {
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1
diff changeset
   226
      ciField* field = lf->field();
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1
diff changeset
   227
      if (field->is_constant() && field->is_static()) {
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1
diff changeset
   228
        // final static field
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1
diff changeset
   229
        ciObject* c = field->constant_value().as_object();
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1
diff changeset
   230
        if (c->is_array()) {
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1
diff changeset
   231
          ciArray* array = (ciArray*) c;
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1
diff changeset
   232
          set_constant(array->length());
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1
diff changeset
   233
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
void Canonicalizer::do_LoadIndexed    (LoadIndexed*     x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
void Canonicalizer::do_StoreIndexed   (StoreIndexed*    x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  // If a value is going to be stored into a field or array some of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  // the conversions emitted by javac are unneeded because the fields
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  // are packed to their natural size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  Convert* conv = x->value()->as_Convert();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  if (conv) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
    Value value = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    BasicType type = x->elt_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    switch (conv->op()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
    case Bytecodes::_i2b: if (type == T_BYTE)  value = conv->value(); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    case Bytecodes::_i2s: if (type == T_SHORT || type == T_BYTE) value = conv->value(); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    case Bytecodes::_i2c: if (type == T_CHAR  || type == T_BYTE) value = conv->value(); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
    // limit this optimization to current block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    if (value != NULL && in_current_block(conv)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
      set_canonical(new StoreIndexed(x->array(), x->index(), x->length(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
                                     x->elt_type(), value, x->lock_stack()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
void Canonicalizer::do_NegateOp(NegateOp* x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  ValueType* t = x->x()->type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  if (t->is_constant()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
    switch (t->tag()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
      case intTag   : set_constant(-t->as_IntConstant   ()->value()); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
      case longTag  : set_constant(-t->as_LongConstant  ()->value()); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
      case floatTag : set_constant(-t->as_FloatConstant ()->value()); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
      case doubleTag: set_constant(-t->as_DoubleConstant()->value()); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
      default       : ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
void Canonicalizer::do_ArithmeticOp   (ArithmeticOp*    x) { do_Op2(x); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
void Canonicalizer::do_ShiftOp        (ShiftOp*         x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  ValueType* t = x->x()->type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  ValueType* t2 = x->y()->type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  if (t->is_constant()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
    switch (t->tag()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
    case intTag   : if (t->as_IntConstant()->value() == 0)         { set_constant(0); return; } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
    case longTag  : if (t->as_LongConstant()->value() == (jlong)0) { set_constant(jlong_cast(0)); return; } break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    default       : ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
    if (t2->is_constant()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
      if (t->tag() == intTag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
        int value = t->as_IntConstant()->value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
        int shift = t2->as_IntConstant()->value() & 31;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
        jint mask = ~(~0 << (32 - shift));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
        if (shift == 0) mask = ~0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
        switch (x->op()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
          case Bytecodes::_ishl:  set_constant(value << shift); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
          case Bytecodes::_ishr:  set_constant(value >> shift); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
          case Bytecodes::_iushr: set_constant((value >> shift) & mask); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
      } else if (t->tag() == longTag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
        jlong value = t->as_LongConstant()->value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
        int shift = t2->as_IntConstant()->value() & 63;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
        jlong mask = ~(~jlong_cast(0) << (64 - shift));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
        if (shift == 0) mask = ~jlong_cast(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
        switch (x->op()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
          case Bytecodes::_lshl:  set_constant(value << shift); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
          case Bytecodes::_lshr:  set_constant(value >> shift); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
          case Bytecodes::_lushr: set_constant((value >> shift) & mask); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  if (t2->is_constant()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
    switch (t2->tag()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
      case intTag   : if (t2->as_IntConstant()->value() == 0)  set_canonical(x->x()); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
      case longTag  : if (t2->as_IntConstant()->value() == 0)  set_canonical(x->x()); return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
      default       : ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
void Canonicalizer::do_LogicOp        (LogicOp*         x) { do_Op2(x); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
void Canonicalizer::do_CompareOp      (CompareOp*       x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  if (x->x() == x->y()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
    switch (x->x()->type()->tag()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
      case longTag: set_constant(0); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
      case floatTag: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
        FloatConstant* fc = x->x()->type()->as_FloatConstant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
        if (fc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
          if (g_isnan(fc->value())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
            set_constant(x->op() == Bytecodes::_fcmpl ? -1 : 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
          } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
            set_constant(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
      case doubleTag: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
        DoubleConstant* dc = x->x()->type()->as_DoubleConstant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
        if (dc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
          if (g_isnan(dc->value())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
            set_constant(x->op() == Bytecodes::_dcmpl ? -1 : 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
          } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
            set_constant(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  } else if (x->x()->type()->is_constant() && x->y()->type()->is_constant()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
    switch (x->x()->type()->tag()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
      case longTag: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
        jlong vx = x->x()->type()->as_LongConstant()->value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
        jlong vy = x->y()->type()->as_LongConstant()->value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
        if (vx == vy)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
          set_constant(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
        else if (vx < vy)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
          set_constant(-1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
        else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
          set_constant(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
      case floatTag: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
        float vx = x->x()->type()->as_FloatConstant()->value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
        float vy = x->y()->type()->as_FloatConstant()->value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
        if (g_isnan(vx) || g_isnan(vy))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
          set_constant(x->op() == Bytecodes::_fcmpl ? -1 : 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
        else if (vx == vy)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
          set_constant(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
        else if (vx < vy)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
          set_constant(-1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
        else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
          set_constant(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
      case doubleTag: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
        double vx = x->x()->type()->as_DoubleConstant()->value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
        double vy = x->y()->type()->as_DoubleConstant()->value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
        if (g_isnan(vx) || g_isnan(vy))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
          set_constant(x->op() == Bytecodes::_dcmpl ? -1 : 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
        else if (vx == vy)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
          set_constant(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
        else if (vx < vy)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
          set_constant(-1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
        else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
          set_constant(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
void Canonicalizer::do_IfInstanceOf(IfInstanceOf*    x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
void Canonicalizer::do_IfOp(IfOp* x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  // Caution: do not use do_Op2(x) here for now since
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  //          we map the condition to the op for now!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  move_const_to_right(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
void Canonicalizer::do_Intrinsic      (Intrinsic*       x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  switch (x->id()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  case vmIntrinsics::_floatToRawIntBits   : {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    FloatConstant* c = x->argument_at(0)->type()->as_FloatConstant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    if (c != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
      JavaValue v;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
      v.set_jfloat(c->value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
      set_constant(v.get_jint());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  case vmIntrinsics::_intBitsToFloat      : {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
    IntConstant* c = x->argument_at(0)->type()->as_IntConstant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
    if (c != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
      JavaValue v;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
      v.set_jint(c->value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
      set_constant(v.get_jfloat());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  case vmIntrinsics::_doubleToRawLongBits : {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
    DoubleConstant* c = x->argument_at(0)->type()->as_DoubleConstant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
    if (c != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
      JavaValue v;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
      v.set_jdouble(c->value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
      set_constant(v.get_jlong());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  case vmIntrinsics::_longBitsToDouble    : {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
    LongConstant* c = x->argument_at(0)->type()->as_LongConstant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
    if (c != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
      JavaValue v;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
      v.set_jlong(c->value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
      set_constant(v.get_jdouble());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
void Canonicalizer::do_Convert        (Convert*         x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  if (x->value()->type()->is_constant()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
    switch (x->op()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
    case Bytecodes::_i2b:  set_constant((int)((x->value()->type()->as_IntConstant()->value() << 24) >> 24)); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
    case Bytecodes::_i2s:  set_constant((int)((x->value()->type()->as_IntConstant()->value() << 16) >> 16)); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
    case Bytecodes::_i2c:  set_constant((int)(x->value()->type()->as_IntConstant()->value() & ((1<<16)-1))); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
    case Bytecodes::_i2l:  set_constant((jlong)(x->value()->type()->as_IntConstant()->value()));             break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
    case Bytecodes::_i2f:  set_constant((float)(x->value()->type()->as_IntConstant()->value()));             break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
    case Bytecodes::_i2d:  set_constant((double)(x->value()->type()->as_IntConstant()->value()));            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
    case Bytecodes::_l2i:  set_constant((int)(x->value()->type()->as_LongConstant()->value()));              break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    case Bytecodes::_l2f:  set_constant(SharedRuntime::l2f(x->value()->type()->as_LongConstant()->value())); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    case Bytecodes::_l2d:  set_constant(SharedRuntime::l2d(x->value()->type()->as_LongConstant()->value())); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    case Bytecodes::_f2d:  set_constant((double)(x->value()->type()->as_FloatConstant()->value()));          break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
    case Bytecodes::_f2i:  set_constant(SharedRuntime::f2i(x->value()->type()->as_FloatConstant()->value())); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
    case Bytecodes::_f2l:  set_constant(SharedRuntime::f2l(x->value()->type()->as_FloatConstant()->value())); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
    case Bytecodes::_d2f:  set_constant((float)(x->value()->type()->as_DoubleConstant()->value()));          break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    case Bytecodes::_d2i:  set_constant(SharedRuntime::d2i(x->value()->type()->as_DoubleConstant()->value())); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
    case Bytecodes::_d2l:  set_constant(SharedRuntime::d2l(x->value()->type()->as_DoubleConstant()->value())); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
      ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  Value value = x->value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  BasicType type = T_ILLEGAL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  LoadField* lf = value->as_LoadField();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  if (lf) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
    type = lf->field_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
    LoadIndexed* li = value->as_LoadIndexed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
    if (li) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
      type = li->elt_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
      Convert* conv = value->as_Convert();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
      if (conv) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
        switch (conv->op()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
          case Bytecodes::_i2b: type = T_BYTE;  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
          case Bytecodes::_i2s: type = T_SHORT; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
          case Bytecodes::_i2c: type = T_CHAR;  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  if (type != T_ILLEGAL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
    switch (x->op()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
      case Bytecodes::_i2b: if (type == T_BYTE)                    set_canonical(x->value()); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
      case Bytecodes::_i2s: if (type == T_SHORT || type == T_BYTE) set_canonical(x->value()); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
      case Bytecodes::_i2c: if (type == T_CHAR)                    set_canonical(x->value()); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
    Op2* op2 = x->value()->as_Op2();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
    if (op2 && op2->op() == Bytecodes::_iand && op2->y()->type()->is_constant()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
      jint safebits = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
      jint mask = op2->y()->type()->as_IntConstant()->value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
      switch (x->op()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
        case Bytecodes::_i2b: safebits = 0x7f;   break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
        case Bytecodes::_i2s: safebits = 0x7fff; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
        case Bytecodes::_i2c: safebits = 0xffff; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
      // When casting a masked integer to a smaller signed type, if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
      // the mask doesn't include the sign bit the cast isn't needed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
      if (safebits && (mask & ~safebits) == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
        set_canonical(x->value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
void Canonicalizer::do_NullCheck      (NullCheck*       x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  if (x->obj()->as_NewArray() != NULL || x->obj()->as_NewInstance() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
    set_canonical(x->obj());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
    Constant* con = x->obj()->as_Constant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
    if (con) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
      ObjectType* c = con->type()->as_ObjectType();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
      if (c && c->is_loaded()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
        ObjectConstant* oc = c->as_ObjectConstant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
        if (!oc || !oc->value()->is_null_object()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
          set_canonical(con);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
void Canonicalizer::do_Invoke         (Invoke*          x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
void Canonicalizer::do_NewInstance    (NewInstance*     x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
void Canonicalizer::do_NewTypeArray   (NewTypeArray*    x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
void Canonicalizer::do_NewObjectArray (NewObjectArray*  x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
void Canonicalizer::do_NewMultiArray  (NewMultiArray*   x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
void Canonicalizer::do_CheckCast      (CheckCast*       x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  if (x->klass()->is_loaded()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
    Value obj = x->obj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
    ciType* klass = obj->exact_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
    if (klass == NULL) klass = obj->declared_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
    if (klass != NULL && klass->is_loaded() && klass->is_subtype_of(x->klass())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
      set_canonical(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
    // checkcast of null returns null
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
    if (obj->as_Constant() && obj->type()->as_ObjectType()->constant_value()->is_null_object()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
      set_canonical(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
void Canonicalizer::do_InstanceOf     (InstanceOf*      x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  if (x->klass()->is_loaded()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
    Value obj = x->obj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
    ciType* exact = obj->exact_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
    if (exact != NULL && exact->is_loaded() && (obj->as_NewInstance() || obj->as_NewArray())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
      set_constant(exact->is_subtype_of(x->klass()) ? 1 : 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
    // instanceof null returns false
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
    if (obj->as_Constant() && obj->type()->as_ObjectType()->constant_value()->is_null_object()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
      set_constant(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
void Canonicalizer::do_MonitorEnter   (MonitorEnter*    x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
void Canonicalizer::do_MonitorExit    (MonitorExit*     x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
void Canonicalizer::do_BlockBegin     (BlockBegin*      x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
void Canonicalizer::do_Goto           (Goto*            x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
static bool is_true(jlong x, If::Condition cond, jlong y) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  switch (cond) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
    case If::eql: return x == y;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
    case If::neq: return x != y;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
    case If::lss: return x <  y;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
    case If::leq: return x <= y;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
    case If::gtr: return x >  y;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
    case If::geq: return x >= y;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
void Canonicalizer::do_If(If* x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  // move const to right
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  if (x->x()->type()->is_constant()) x->swap_operands();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  // simplify
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  const Value l = x->x(); ValueType* lt = l->type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  const Value r = x->y(); ValueType* rt = r->type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
  if (l == r && !lt->is_float_kind()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
    // pattern: If (a cond a) => simplify to Goto
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
    BlockBegin* sux;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
    switch (x->cond()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
    case If::eql: sux = x->sux_for(true);  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
    case If::neq: sux = x->sux_for(false); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
    case If::lss: sux = x->sux_for(false); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
    case If::leq: sux = x->sux_for(true);  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
    case If::gtr: sux = x->sux_for(false); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
    case If::geq: sux = x->sux_for(true);  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
    // If is a safepoint then the debug information should come from the state_before of the If.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
    set_canonical(new Goto(sux, x->state_before(), x->is_safepoint()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  if (lt->is_constant() && rt->is_constant()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
    if (x->x()->as_Constant() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
      // pattern: If (lc cond rc) => simplify to: Goto
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
      BlockBegin* sux = x->x()->as_Constant()->compare(x->cond(), x->y(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
                                                       x->sux_for(true),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
                                                       x->sux_for(false));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
      if (sux != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
        // If is a safepoint then the debug information should come from the state_before of the If.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
        set_canonical(new Goto(sux, x->state_before(), x->is_safepoint()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
  } else if (rt->as_IntConstant() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
    // pattern: If (l cond rc) => investigate further
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
    const jint rc = rt->as_IntConstant()->value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
    if (l->as_CompareOp() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
      // pattern: If ((a cmp b) cond rc) => simplify to: If (x cond y) or: Goto
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
      CompareOp* cmp = l->as_CompareOp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
      bool unordered_is_less = cmp->op() == Bytecodes::_fcmpl || cmp->op() == Bytecodes::_dcmpl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
      BlockBegin* lss_sux = x->sux_for(is_true(-1, x->cond(), rc)); // successor for a < b
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
      BlockBegin* eql_sux = x->sux_for(is_true( 0, x->cond(), rc)); // successor for a = b
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
      BlockBegin* gtr_sux = x->sux_for(is_true(+1, x->cond(), rc)); // successor for a > b
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
      BlockBegin* nan_sux = unordered_is_less ? lss_sux : gtr_sux ; // successor for unordered
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
      // Note: At this point all successors (lss_sux, eql_sux, gtr_sux, nan_sux) are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
      //       equal to x->tsux() or x->fsux(). Furthermore, nan_sux equals either
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
      //       lss_sux or gtr_sux.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
      if (lss_sux == eql_sux && eql_sux == gtr_sux) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
        // all successors identical => simplify to: Goto
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
        set_canonical(new Goto(lss_sux, x->state_before(), x->is_safepoint()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
        // two successors differ and two successors are the same => simplify to: If (x cmp y)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
        // determine new condition & successors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
        If::Condition cond;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
        BlockBegin* tsux = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
        BlockBegin* fsux = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
             if (lss_sux == eql_sux) { cond = If::leq; tsux = lss_sux; fsux = gtr_sux; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
        else if (lss_sux == gtr_sux) { cond = If::neq; tsux = lss_sux; fsux = eql_sux; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
        else if (eql_sux == gtr_sux) { cond = If::geq; tsux = eql_sux; fsux = lss_sux; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
        else                         { ShouldNotReachHere();                           }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
           If* canon = new If(cmp->x(), cond, nan_sux == tsux, cmp->y(), tsux, fsux, cmp->state_before(), x->is_safepoint());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
        if (cmp->x() == cmp->y()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
          do_If(canon);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
          set_canonical(canon);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
          set_bci(cmp->bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
    } else if (l->as_InstanceOf() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
      // NOTE: Code permanently disabled for now since it leaves the old InstanceOf
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
      //       instruction in the graph (it is pinned). Need to fix this at some point.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
      // pattern: If ((obj instanceof klass) cond rc) => simplify to: IfInstanceOf or: Goto
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
      InstanceOf* inst = l->as_InstanceOf();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
      BlockBegin* is_inst_sux = x->sux_for(is_true(1, x->cond(), rc)); // successor for instanceof == 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
      BlockBegin* no_inst_sux = x->sux_for(is_true(0, x->cond(), rc)); // successor for instanceof == 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
      if (is_inst_sux == no_inst_sux && inst->is_loaded()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
        // both successors identical and klass is loaded => simplify to: Goto
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
        set_canonical(new Goto(is_inst_sux, x->state_before(), x->is_safepoint()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
        // successors differ => simplify to: IfInstanceOf
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
        set_canonical(new IfInstanceOf(inst->klass(), inst->obj(), true, inst->bci(), is_inst_sux, no_inst_sux));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  } else if (rt == objectNull && (l->as_NewInstance() || l->as_NewArray())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
    if (x->cond() == Instruction::eql) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
      set_canonical(new Goto(x->fsux(), x->state_before(), x->is_safepoint()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
      assert(x->cond() == Instruction::neq, "only other valid case");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
      set_canonical(new Goto(x->tsux(), x->state_before(), x->is_safepoint()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
void Canonicalizer::do_TableSwitch(TableSwitch* x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  if (x->tag()->type()->is_constant()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
    int v = x->tag()->type()->as_IntConstant()->value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
    BlockBegin* sux = x->default_sux();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
    if (v >= x->lo_key() && v <= x->hi_key()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
      sux = x->sux_at(v - x->lo_key());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
    set_canonical(new Goto(sux, x->state_before(), x->is_safepoint()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  } else if (x->number_of_sux() == 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
    // NOTE: Code permanently disabled for now since the switch statement's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
    //       tag expression may produce side-effects in which case it must
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
    //       be executed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
    // simplify to Goto
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
    set_canonical(new Goto(x->default_sux(), x->state_before(), x->is_safepoint()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  } else if (x->number_of_sux() == 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
    // NOTE: Code permanently disabled for now since it produces two new nodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
    //       (Constant & If) and the Canonicalizer cannot return them correctly
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
    //       yet. For now we copied the corresponding code directly into the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
    //       GraphBuilder (i.e., we should never reach here).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
    // simplify to If
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
    assert(x->lo_key() == x->hi_key(), "keys must be the same");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
    Constant* key = new Constant(new IntConstant(x->lo_key()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
    set_canonical(new If(x->tag(), If::eql, true, key, x->sux_at(0), x->default_sux(), x->state_before(), x->is_safepoint()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
void Canonicalizer::do_LookupSwitch(LookupSwitch* x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  if (x->tag()->type()->is_constant()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
    int v = x->tag()->type()->as_IntConstant()->value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
    BlockBegin* sux = x->default_sux();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
    for (int i = 0; i < x->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
      if (v == x->key_at(i)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
        sux = x->sux_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
    set_canonical(new Goto(sux, x->state_before(), x->is_safepoint()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
  } else if (x->number_of_sux() == 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
    // NOTE: Code permanently disabled for now since the switch statement's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
    //       tag expression may produce side-effects in which case it must
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
    //       be executed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
    // simplify to Goto
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
    set_canonical(new Goto(x->default_sux(), x->state_before(), x->is_safepoint()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
  } else if (x->number_of_sux() == 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
    // NOTE: Code permanently disabled for now since it produces two new nodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
    //       (Constant & If) and the Canonicalizer cannot return them correctly
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
    //       yet. For now we copied the corresponding code directly into the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
    //       GraphBuilder (i.e., we should never reach here).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
    // simplify to If
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
    assert(x->length() == 1, "length must be the same");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
    Constant* key = new Constant(new IntConstant(x->key_at(0)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
    set_canonical(new If(x->tag(), If::eql, true, key, x->sux_at(0), x->default_sux(), x->state_before(), x->is_safepoint()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
void Canonicalizer::do_Return         (Return*          x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
void Canonicalizer::do_Throw          (Throw*           x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
void Canonicalizer::do_Base           (Base*            x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
void Canonicalizer::do_OsrEntry       (OsrEntry*        x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
void Canonicalizer::do_ExceptionObject(ExceptionObject* x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
static bool match_index_and_scale(Instruction*  instr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
                                  Instruction** index,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
                                  int*          log2_scale,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
                                  Instruction** instr_to_unpin) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
  *instr_to_unpin = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
  // Skip conversion ops
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
  Convert* convert = instr->as_Convert();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
  if (convert != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
    instr = convert->value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
  ShiftOp* shift = instr->as_ShiftOp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  if (shift != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
    if (shift->is_pinned()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
      *instr_to_unpin = shift;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
    // Constant shift value?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
    Constant* con = shift->y()->as_Constant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
    if (con == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
    // Well-known type and value?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
    IntConstant* val = con->type()->as_IntConstant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
    if (val == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
    if (shift->x()->type() != intType) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
    *index = shift->x();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
    int tmp_scale = val->value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
    if (tmp_scale >= 0 && tmp_scale < 4) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
      *log2_scale = tmp_scale;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
  ArithmeticOp* arith = instr->as_ArithmeticOp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
  if (arith != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
    if (arith->is_pinned()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
      *instr_to_unpin = arith;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
    // Check for integer multiply
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
    if (arith->op() == Bytecodes::_imul) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
      // See if either arg is a known constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
      Constant* con = arith->x()->as_Constant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
      if (con != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
        *index = arith->y();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
        con = arith->y()->as_Constant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
        if (con == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
        *index = arith->x();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
      if ((*index)->type() != intType) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
      // Well-known type and value?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
      IntConstant* val = con->type()->as_IntConstant();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
      if (val == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
      switch (val->value()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
      case 1: *log2_scale = 0; return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
      case 2: *log2_scale = 1; return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
      case 4: *log2_scale = 2; return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
      case 8: *log2_scale = 3; return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
      default:            return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
  // Unknown instruction sequence; don't touch it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
static bool match(UnsafeRawOp* x,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
                  Instruction** base,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
                  Instruction** index,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
                  int*          log2_scale) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
  Instruction* instr_to_unpin = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
  ArithmeticOp* root = x->base()->as_ArithmeticOp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
  if (root == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
  // Limit ourselves to addition for now
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
  if (root->op() != Bytecodes::_ladd) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
  // Try to find shift or scale op
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
  if (match_index_and_scale(root->y(), index, log2_scale, &instr_to_unpin)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
    *base = root->x();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
  } else if (match_index_and_scale(root->x(), index, log2_scale, &instr_to_unpin)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
    *base = root->y();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
  } else if (root->y()->as_Convert() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
    Convert* convert = root->y()->as_Convert();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
    if (convert->op() == Bytecodes::_i2l && convert->value()->type() == intType) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
      // pick base and index, setting scale at 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
      *base  = root->x();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
      *index = convert->value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
      *log2_scale = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
    // doesn't match any expected sequences
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
  // If the value is pinned then it will be always be computed so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
  // there's no profit to reshaping the expression.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
  return !root->is_pinned();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
void Canonicalizer::do_UnsafeRawOp(UnsafeRawOp* x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
  Instruction* base = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
  Instruction* index = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
  int          log2_scale;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
  if (match(x, &base, &index, &log2_scale)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
    x->set_base(base);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
    x->set_index(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
    x->set_log2_scale(log2_scale);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
    if (PrintUnsafeOptimization) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
      tty->print_cr("Canonicalizer: UnsafeRawOp id %d: base = id %d, index = id %d, log2_scale = %d",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
                    x->id(), x->base()->id(), x->index()->id(), x->log2_scale());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
void Canonicalizer::do_RoundFP(RoundFP* x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
void Canonicalizer::do_UnsafeGetRaw(UnsafeGetRaw* x) { if (OptimizeUnsafes) do_UnsafeRawOp(x); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
void Canonicalizer::do_UnsafePutRaw(UnsafePutRaw* x) { if (OptimizeUnsafes) do_UnsafeRawOp(x); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
void Canonicalizer::do_UnsafeGetObject(UnsafeGetObject* x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
void Canonicalizer::do_UnsafePutObject(UnsafePutObject* x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
void Canonicalizer::do_UnsafePrefetchRead (UnsafePrefetchRead*  x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
void Canonicalizer::do_UnsafePrefetchWrite(UnsafePrefetchWrite* x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
void Canonicalizer::do_ProfileCall(ProfileCall* x) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
void Canonicalizer::do_ProfileCounter(ProfileCounter* x) {}