hotspot/src/share/vm/opto/castnode.cpp
author thartmann
Mon, 18 Jan 2016 08:40:25 +0100
changeset 35574 2b25eb88c8d6
parent 35551 36ef3841fb34
child 36065 4f0e0cb7b016
permissions -rw-r--r--
6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type Summary: Emit CastII to make narrow ConvI2L dependent on the corresponding range check. Reviewed-by: kvn, roland
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
     1
/*
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
     2
 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
     4
 *
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
     7
 * published by the Free Software Foundation.
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
     8
 *
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    13
 * accompanied this code).
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    14
 *
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    18
 *
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    21
 * questions.
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    22
 *
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    23
 */
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    24
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    25
#include "precompiled.hpp"
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    26
#include "opto/addnode.hpp"
35545
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
    27
#include "opto/callnode.hpp"
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    28
#include "opto/castnode.hpp"
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    29
#include "opto/connode.hpp"
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    30
#include "opto/matcher.hpp"
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    31
#include "opto/phaseX.hpp"
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    32
#include "opto/subnode.hpp"
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    33
#include "opto/type.hpp"
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    34
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    35
//=============================================================================
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    36
// If input is already higher or equal to cast type, then this is an identity.
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 35549
diff changeset
    37
Node* ConstraintCastNode::Identity(PhaseGVN* phase) {
35545
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
    38
  Node* dom = dominating_cast(phase);
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
    39
  if (dom != NULL) {
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
    40
    assert(_carry_dependency, "only for casts that carry a dependency");
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
    41
    return dom;
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
    42
  }
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
    43
  if (_carry_dependency) {
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
    44
    return this;
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
    45
  }
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    46
  return phase->type(in(1))->higher_equal_speculative(_type) ? in(1) : this;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    47
}
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    48
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    49
//------------------------------Value------------------------------------------
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    50
// Take 'join' of input and cast-up type
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 35549
diff changeset
    51
const Type* ConstraintCastNode::Value(PhaseGVN* phase) const {
35545
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
    52
  if (in(0) && phase->type(in(0)) == Type::TOP) return Type::TOP;
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    53
  const Type* ft = phase->type(in(1))->filter_speculative(_type);
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    54
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    55
#ifdef ASSERT
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    56
  // Previous versions of this function had some special case logic,
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    57
  // which is no longer necessary.  Make sure of the required effects.
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    58
  switch (Opcode()) {
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    59
    case Op_CastII:
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    60
    {
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    61
      const Type* t1 = phase->type(in(1));
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    62
      if( t1 == Type::TOP )  assert(ft == Type::TOP, "special case #1");
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    63
      const Type* rt = t1->join_speculative(_type);
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    64
      if (rt->empty())       assert(ft == Type::TOP, "special case #2");
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    65
      break;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    66
    }
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    67
    case Op_CastPP:
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    68
    if (phase->type(in(1)) == TypePtr::NULL_PTR &&
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    69
        _type->isa_ptr() && _type->is_ptr()->_ptr == TypePtr::NotNull)
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    70
    assert(ft == Type::TOP, "special case #3");
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    71
    break;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    72
  }
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    73
#endif //ASSERT
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    74
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    75
  return ft;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    76
}
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    77
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    78
//------------------------------Ideal------------------------------------------
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    79
// Return a node which is more "ideal" than the current node.  Strip out
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    80
// control copies
35545
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
    81
Node *ConstraintCastNode::Ideal(PhaseGVN *phase, bool can_reshape) {
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    82
  return (in(0) && remove_dead_region(phase, can_reshape)) ? this : NULL;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    83
}
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
    84
35545
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
    85
uint ConstraintCastNode::cmp(const Node &n) const {
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
    86
  return TypeNode::cmp(n) && ((ConstraintCastNode&)n)._carry_dependency == _carry_dependency;
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
    87
}
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
    88
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
    89
uint ConstraintCastNode::size_of() const {
27708
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
    90
  return sizeof(*this);
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
    91
}
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
    92
35545
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
    93
Node* ConstraintCastNode::make_cast(int opcode, Node* c, Node *n, const Type *t, bool carry_dependency) {
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
    94
  switch(opcode) {
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
    95
  case Op_CastII: {
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
    96
    Node* cast = new CastIINode(n, t, carry_dependency);
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
    97
    cast->set_req(0, c);
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
    98
    return cast;
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
    99
  }
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   100
  case Op_CastPP: {
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   101
    Node* cast = new CastPPNode(n, t, carry_dependency);
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   102
    cast->set_req(0, c);
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   103
    return cast;
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   104
  }
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   105
  case Op_CheckCastPP: return new CheckCastPPNode(c, n, t, carry_dependency);
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   106
  default:
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   107
    fatal("Bad opcode %d", opcode);
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   108
  }
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   109
  return NULL;
27708
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   110
}
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   111
35545
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   112
TypeNode* ConstraintCastNode::dominating_cast(PhaseTransform *phase) const {
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   113
  if (!carry_dependency()) {
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   114
    return NULL;
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   115
  }
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   116
  Node* val = in(1);
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   117
  Node* ctl = in(0);
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   118
  int opc = Opcode();
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   119
  if (ctl == NULL) {
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   120
    return NULL;
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   121
  }
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   122
  for (DUIterator_Fast imax, i = val->fast_outs(imax); i < imax; i++) {
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   123
    Node* u = val->fast_out(i);
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   124
    if (u != this &&
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   125
        u->Opcode() == opc &&
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   126
        u->in(0) != NULL &&
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   127
        u->bottom_type()->higher_equal(type())) {
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   128
      if (phase->is_dominator(u->in(0), ctl)) {
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   129
        return u->as_Type();
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   130
      }
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   131
      if (is_CheckCastPP() && u->in(1)->is_Proj() && u->in(1)->in(0)->is_Allocate() &&
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   132
          u->in(0)->is_Proj() && u->in(0)->in(0)->is_Initialize() &&
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   133
          u->in(1)->in(0)->as_Allocate()->initialization() == u->in(0)->in(0)) {
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   134
        // CheckCastPP following an allocation always dominates all
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   135
        // use of the allocation result
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   136
        return u->as_Type();
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   137
      }
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   138
    }
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   139
  }
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   140
  return NULL;
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   141
}
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   142
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   143
#ifndef PRODUCT
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   144
void ConstraintCastNode::dump_spec(outputStream *st) const {
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   145
  TypeNode::dump_spec(st);
27708
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   146
  if (_carry_dependency) {
35545
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   147
    st->print(" carry dependency");
27708
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   148
  }
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   149
}
35545
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   150
#endif
27708
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   151
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 35549
diff changeset
   152
const Type* CastIINode::Value(PhaseGVN* phase) const {
27708
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   153
  const Type *res = ConstraintCastNode::Value(phase);
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   154
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   155
  // Try to improve the type of the CastII if we recognize a CmpI/If
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   156
  // pattern.
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   157
  if (_carry_dependency) {
28041
fed7f90dc4c4 8066775: opto/node.hpp:355, assert(i < _max) failed: oob: i=1, _max=1
roland
parents: 27708
diff changeset
   158
    if (in(0) != NULL && in(0)->in(0) != NULL && in(0)->in(0)->is_If()) {
fed7f90dc4c4 8066775: opto/node.hpp:355, assert(i < _max) failed: oob: i=1, _max=1
roland
parents: 27708
diff changeset
   159
      assert(in(0)->is_IfFalse() || in(0)->is_IfTrue(), "should be If proj");
27708
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   160
      Node* proj = in(0);
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   161
      if (proj->in(0)->in(1)->is_Bool()) {
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   162
        Node* b = proj->in(0)->in(1);
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   163
        if (b->in(1)->Opcode() == Op_CmpI) {
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   164
          Node* cmp = b->in(1);
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   165
          if (cmp->in(1) == in(1) && phase->type(cmp->in(2))->isa_int()) {
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   166
            const TypeInt* in2_t = phase->type(cmp->in(2))->is_int();
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   167
            const Type* t = TypeInt::INT;
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   168
            BoolTest test = b->as_Bool()->_test;
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   169
            if (proj->is_IfFalse()) {
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   170
              test = test.negate();
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   171
            }
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   172
            BoolTest::mask m = test._test;
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   173
            jlong lo_long = min_jint;
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   174
            jlong hi_long = max_jint;
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   175
            if (m == BoolTest::le || m == BoolTest::lt) {
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   176
              hi_long = in2_t->_hi;
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   177
              if (m == BoolTest::lt) {
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   178
                hi_long -= 1;
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   179
              }
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   180
            } else if (m == BoolTest::ge || m == BoolTest::gt) {
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   181
              lo_long = in2_t->_lo;
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   182
              if (m == BoolTest::gt) {
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   183
                lo_long += 1;
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   184
              }
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   185
            } else if (m == BoolTest::eq) {
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   186
              lo_long = in2_t->_lo;
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   187
              hi_long = in2_t->_hi;
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   188
            } else if (m == BoolTest::ne) {
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   189
              // can't do any better
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   190
            } else {
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   191
              stringStream ss;
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   192
              test.dump_on(&ss);
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 30300
diff changeset
   193
              fatal("unexpected comparison %s", ss.as_string());
27708
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   194
            }
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   195
            int lo_int = (int)lo_long;
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   196
            int hi_int = (int)hi_long;
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   197
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   198
            if (lo_long != (jlong)lo_int) {
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   199
              lo_int = min_jint;
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   200
            }
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   201
            if (hi_long != (jlong)hi_int) {
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   202
              hi_int = max_jint;
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   203
            }
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   204
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   205
            t = TypeInt::make(lo_int, hi_int, Type::WidenMax);
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   206
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   207
            res = res->filter_speculative(t);
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   208
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   209
            return res;
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   210
          }
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   211
        }
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   212
      }
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   213
    }
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   214
  }
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   215
  return res;
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   216
}
8a8710cb8fc4 8054478: C2: Incorrectly compiled char[] array access crashes JVM
roland
parents: 24923
diff changeset
   217
35549
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   218
Node *CastIINode::Ideal(PhaseGVN *phase, bool can_reshape) {
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   219
  Node* progress = ConstraintCastNode::Ideal(phase, can_reshape);
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   220
  if (progress != NULL) {
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   221
    return progress;
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   222
  }
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   223
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   224
  // transform:
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   225
  // (CastII (AddI x const)) -> (AddI (CastII x) const)
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   226
  // So the AddI has a chance to be optimized out
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   227
  if (in(1)->Opcode() == Op_AddI) {
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   228
    Node* in2 = in(1)->in(2);
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   229
    const TypeInt* in2_t = phase->type(in2)->isa_int();
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   230
    if (in2_t != NULL && in2_t->singleton()) {
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   231
      int in2_const = in2_t->_lo;
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   232
      const TypeInt* current_type = _type->is_int();
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   233
      jlong new_lo_long = ((jlong)current_type->_lo) - in2_const;
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   234
      jlong new_hi_long = ((jlong)current_type->_hi) - in2_const;
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   235
      int new_lo = (int)new_lo_long;
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   236
      int new_hi = (int)new_hi_long;
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   237
      if (((jlong)new_lo) == new_lo_long && ((jlong)new_hi) == new_hi_long) {
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   238
        Node* in1 = in(1)->in(1);
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   239
        CastIINode* new_cast = (CastIINode*)clone();
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   240
        AddINode* new_add = (AddINode*)in(1)->clone();
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   241
        new_cast->set_type(TypeInt::make(new_lo, new_hi, current_type->_widen));
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   242
        new_cast->set_req(1, in1);
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   243
        new_add->set_req(1, phase->transform(new_cast));
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   244
        return new_add;
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   245
      }
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   246
    }
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   247
  }
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   248
  // Similar to ConvI2LNode::Ideal() for the same reasons
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   249
  if (can_reshape && !phase->C->major_progress()) {
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   250
    const TypeInt* this_type = this->type()->is_int();
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   251
    const TypeInt* in_type = phase->type(in(1))->isa_int();
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   252
    if (in_type != NULL && this_type != NULL &&
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   253
        (in_type->_lo != this_type->_lo ||
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   254
         in_type->_hi != this_type->_hi)) {
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   255
      int lo1 = this_type->_lo;
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   256
      int hi1 = this_type->_hi;
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   257
      int w1  = this_type->_widen;
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   258
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   259
      if (lo1 >= 0) {
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   260
        // Keep a range assertion of >=0.
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   261
        lo1 = 0;        hi1 = max_jint;
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   262
      } else if (hi1 < 0) {
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   263
        // Keep a range assertion of <0.
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   264
        lo1 = min_jint; hi1 = -1;
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   265
      } else {
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   266
        lo1 = min_jint; hi1 = max_jint;
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   267
      }
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   268
      const TypeInt* wtype = TypeInt::make(MAX2(in_type->_lo, lo1),
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   269
                                           MIN2(in_type->_hi, hi1),
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   270
                                           MAX2((int)in_type->_widen, w1));
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   271
      if (wtype != type()) {
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   272
        set_type(wtype);
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   273
        return this;
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   274
      }
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   275
    }
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   276
  }
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   277
  return NULL;
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   278
}
3415401a6b6e 8145322: Code generated from unsafe loops can be slightly improved
roland
parents: 35545
diff changeset
   279
35574
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35551
diff changeset
   280
uint CastIINode::cmp(const Node &n) const {
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35551
diff changeset
   281
  return ConstraintCastNode::cmp(n) && ((CastIINode&)n)._range_check_dependency == _range_check_dependency;
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35551
diff changeset
   282
}
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35551
diff changeset
   283
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35551
diff changeset
   284
uint CastIINode::size_of() const {
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35551
diff changeset
   285
  return sizeof(*this);
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35551
diff changeset
   286
}
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35551
diff changeset
   287
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35551
diff changeset
   288
#ifndef PRODUCT
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35551
diff changeset
   289
void CastIINode::dump_spec(outputStream* st) const {
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35551
diff changeset
   290
  ConstraintCastNode::dump_spec(st);
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35551
diff changeset
   291
  if (_range_check_dependency) {
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35551
diff changeset
   292
    st->print(" range check dependency");
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35551
diff changeset
   293
  }
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35551
diff changeset
   294
}
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35551
diff changeset
   295
#endif
2b25eb88c8d6 6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents: 35551
diff changeset
   296
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   297
//=============================================================================
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   298
//------------------------------Identity---------------------------------------
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   299
// If input is already higher or equal to cast type, then this is an identity.
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 35549
diff changeset
   300
Node* CheckCastPPNode::Identity(PhaseGVN* phase) {
35545
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   301
  Node* dom = dominating_cast(phase);
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   302
  if (dom != NULL) {
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   303
    assert(_carry_dependency, "only for casts that carry a dependency");
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   304
    return dom;
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   305
  }
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   306
  if (_carry_dependency) {
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   307
    return this;
a8f29dfd62b2 8139771: Eliminating CastPP nodes at Phis when they all come from a unique input may cause crash
roland
parents: 33105
diff changeset
   308
  }
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   309
  // Toned down to rescue meeting at a Phi 3 different oops all implementing
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   310
  // the same interface.  CompileTheWorld starting at 502, kd12rc1.zip.
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   311
  return (phase->type(in(1)) == phase->type(this)) ? in(1) : this;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   312
}
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   313
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   314
//------------------------------Value------------------------------------------
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   315
// Take 'join' of input and cast-up type, unless working with an Interface
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 35549
diff changeset
   316
const Type* CheckCastPPNode::Value(PhaseGVN* phase) const {
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   317
  if( in(0) && phase->type(in(0)) == Type::TOP ) return Type::TOP;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   318
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   319
  const Type *inn = phase->type(in(1));
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   320
  if( inn == Type::TOP ) return Type::TOP;  // No information yet
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   321
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   322
  const TypePtr *in_type   = inn->isa_ptr();
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   323
  const TypePtr *my_type   = _type->isa_ptr();
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   324
  const Type *result = _type;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   325
  if( in_type != NULL && my_type != NULL ) {
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   326
    TypePtr::PTR   in_ptr    = in_type->ptr();
30213
79c4cfb7f7cf 8076094: CheckCastPPNode::Value() has outdated logic for constants
roland
parents: 28041
diff changeset
   327
    if (in_ptr == TypePtr::Null) {
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   328
      result = in_type;
30213
79c4cfb7f7cf 8076094: CheckCastPPNode::Value() has outdated logic for constants
roland
parents: 28041
diff changeset
   329
    } else if (in_ptr == TypePtr::Constant) {
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   330
      const TypeOopPtr *jptr = my_type->isa_oopptr();
30213
79c4cfb7f7cf 8076094: CheckCastPPNode::Value() has outdated logic for constants
roland
parents: 28041
diff changeset
   331
      assert(jptr, "");
79c4cfb7f7cf 8076094: CheckCastPPNode::Value() has outdated logic for constants
roland
parents: 28041
diff changeset
   332
      result = !in_type->higher_equal(_type)
79c4cfb7f7cf 8076094: CheckCastPPNode::Value() has outdated logic for constants
roland
parents: 28041
diff changeset
   333
      ? my_type->cast_to_ptr_type(TypePtr::NotNull)
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   334
      : in_type;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   335
    } else {
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   336
      result =  my_type->cast_to_ptr_type( my_type->join_ptr(in_ptr) );
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   337
    }
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   338
  }
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   339
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   340
  // This is the code from TypePtr::xmeet() that prevents us from
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   341
  // having 2 ways to represent the same type. We have to replicate it
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   342
  // here because we don't go through meet/join.
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   343
  if (result->remove_speculative() == result->speculative()) {
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   344
    result = result->remove_speculative();
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   345
  }
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   346
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   347
  // Same as above: because we don't go through meet/join, remove the
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   348
  // speculative type if we know we won't use it.
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   349
  return result->cleanup_speculative();
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   350
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   351
  // JOIN NOT DONE HERE BECAUSE OF INTERFACE ISSUES.
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   352
  // FIX THIS (DO THE JOIN) WHEN UNION TYPES APPEAR!
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   353
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   354
  //
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   355
  // Remove this code after overnight run indicates no performance
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   356
  // loss from not performing JOIN at CheckCastPPNode
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   357
  //
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   358
  // const TypeInstPtr *in_oop = in->isa_instptr();
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   359
  // const TypeInstPtr *my_oop = _type->isa_instptr();
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   360
  // // If either input is an 'interface', return destination type
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   361
  // assert (in_oop == NULL || in_oop->klass() != NULL, "");
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   362
  // assert (my_oop == NULL || my_oop->klass() != NULL, "");
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   363
  // if( (in_oop && in_oop->klass()->is_interface())
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   364
  //   ||(my_oop && my_oop->klass()->is_interface()) ) {
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   365
  //   TypePtr::PTR  in_ptr = in->isa_ptr() ? in->is_ptr()->_ptr : TypePtr::BotPTR;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   366
  //   // Preserve cast away nullness for interfaces
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   367
  //   if( in_ptr == TypePtr::NotNull && my_oop && my_oop->_ptr == TypePtr::BotPTR ) {
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   368
  //     return my_oop->cast_to_ptr_type(TypePtr::NotNull);
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   369
  //   }
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   370
  //   return _type;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   371
  // }
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   372
  //
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   373
  // // Neither the input nor the destination type is an interface,
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   374
  //
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   375
  // // history: JOIN used to cause weird corner case bugs
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   376
  // //          return (in == TypeOopPtr::NULL_PTR) ? in : _type;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   377
  // // JOIN picks up NotNull in common instance-of/check-cast idioms, both oops.
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   378
  // // JOIN does not preserve NotNull in other cases, e.g. RawPtr vs InstPtr
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   379
  // const Type *join = in->join(_type);
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   380
  // // Check if join preserved NotNull'ness for pointers
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   381
  // if( join->isa_ptr() && _type->isa_ptr() ) {
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   382
  //   TypePtr::PTR join_ptr = join->is_ptr()->_ptr;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   383
  //   TypePtr::PTR type_ptr = _type->is_ptr()->_ptr;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   384
  //   // If there isn't any NotNull'ness to preserve
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   385
  //   // OR if join preserved NotNull'ness then return it
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   386
  //   if( type_ptr == TypePtr::BotPTR  || type_ptr == TypePtr::Null ||
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   387
  //       join_ptr == TypePtr::NotNull || join_ptr == TypePtr::Constant ) {
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   388
  //     return join;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   389
  //   }
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   390
  //   // ELSE return same old type as before
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   391
  //   return _type;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   392
  // }
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   393
  // // Not joining two pointers
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   394
  // return join;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   395
}
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   396
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   397
//=============================================================================
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   398
//------------------------------Value------------------------------------------
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 35549
diff changeset
   399
const Type* CastX2PNode::Value(PhaseGVN* phase) const {
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   400
  const Type* t = phase->type(in(1));
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   401
  if (t == Type::TOP) return Type::TOP;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   402
  if (t->base() == Type_X && t->singleton()) {
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   403
    uintptr_t bits = (uintptr_t) t->is_intptr_t()->get_con();
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   404
    if (bits == 0)   return TypePtr::NULL_PTR;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   405
    return TypeRawPtr::make((address) bits);
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   406
  }
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   407
  return CastX2PNode::bottom_type();
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   408
}
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   409
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   410
//------------------------------Idealize---------------------------------------
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   411
static inline bool fits_in_int(const Type* t, bool but_not_min_int = false) {
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   412
  if (t == Type::TOP)  return false;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   413
  const TypeX* tl = t->is_intptr_t();
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   414
  jint lo = min_jint;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   415
  jint hi = max_jint;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   416
  if (but_not_min_int)  ++lo;  // caller wants to negate the value w/o overflow
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   417
  return (tl->_lo >= lo) && (tl->_hi <= hi);
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   418
}
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   419
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   420
static inline Node* addP_of_X2P(PhaseGVN *phase,
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   421
                                Node* base,
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   422
                                Node* dispX,
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   423
                                bool negate = false) {
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   424
  if (negate) {
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
   425
    dispX = new SubXNode(phase->MakeConX(0), phase->transform(dispX));
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   426
  }
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
   427
  return new AddPNode(phase->C->top(),
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
   428
                      phase->transform(new CastX2PNode(base)),
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
   429
                      phase->transform(dispX));
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   430
}
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   431
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   432
Node *CastX2PNode::Ideal(PhaseGVN *phase, bool can_reshape) {
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   433
  // convert CastX2P(AddX(x, y)) to AddP(CastX2P(x), y) if y fits in an int
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   434
  int op = in(1)->Opcode();
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   435
  Node* x;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   436
  Node* y;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   437
  switch (op) {
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   438
    case Op_SubX:
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   439
    x = in(1)->in(1);
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   440
    // Avoid ideal transformations ping-pong between this and AddP for raw pointers.
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   441
    if (phase->find_intptr_t_con(x, -1) == 0)
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   442
    break;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   443
    y = in(1)->in(2);
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   444
    if (fits_in_int(phase->type(y), true)) {
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   445
      return addP_of_X2P(phase, x, y, true);
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   446
    }
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   447
    break;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   448
    case Op_AddX:
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   449
    x = in(1)->in(1);
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   450
    y = in(1)->in(2);
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   451
    if (fits_in_int(phase->type(y))) {
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   452
      return addP_of_X2P(phase, x, y);
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   453
    }
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   454
    if (fits_in_int(phase->type(x))) {
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   455
      return addP_of_X2P(phase, y, x);
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   456
    }
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   457
    break;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   458
  }
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   459
  return NULL;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   460
}
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   461
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   462
//------------------------------Identity---------------------------------------
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 35549
diff changeset
   463
Node* CastX2PNode::Identity(PhaseGVN* phase) {
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   464
  if (in(1)->Opcode() == Op_CastP2X)  return in(1)->in(1);
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   465
  return this;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   466
}
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   467
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   468
//=============================================================================
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   469
//------------------------------Value------------------------------------------
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 35549
diff changeset
   470
const Type* CastP2XNode::Value(PhaseGVN* phase) const {
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   471
  const Type* t = phase->type(in(1));
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   472
  if (t == Type::TOP) return Type::TOP;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   473
  if (t->base() == Type::RawPtr && t->singleton()) {
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   474
    uintptr_t bits = (uintptr_t) t->is_rawptr()->get_con();
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   475
    return TypeX::make(bits);
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   476
  }
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   477
  return CastP2XNode::bottom_type();
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   478
}
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   479
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   480
Node *CastP2XNode::Ideal(PhaseGVN *phase, bool can_reshape) {
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   481
  return (in(0) && remove_dead_region(phase, can_reshape)) ? this : NULL;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   482
}
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   483
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   484
//------------------------------Identity---------------------------------------
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 35549
diff changeset
   485
Node* CastP2XNode::Identity(PhaseGVN* phase) {
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   486
  if (in(1)->Opcode() == Op_CastX2P)  return in(1)->in(1);
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   487
  return this;
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents:
diff changeset
   488
}