src/hotspot/share/opto/mulnode.hpp
author coleenp
Thu, 10 Jan 2019 15:13:51 -0500
changeset 53244 9807daeb47c4
parent 52992 4bb6e0871bf7
child 53338 5afdd1100a20
permissions -rw-r--r--
8216167: Update include guards to reflect correct directories Summary: Use script and some manual fixup to fix directores names in include guards. Reviewed-by: lfoltan, eosterlund, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52992
diff changeset
     2
 * Copyright (c) 1997, 2019, Oracle and/or its affiliates. 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
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 670
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 670
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 670
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52992
diff changeset
    25
#ifndef SHARE_OPTO_MULNODE_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52992
diff changeset
    26
#define SHARE_OPTO_MULNODE_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "opto/node.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "opto/opcodes.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "opto/type.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// Portions of code courtesy of Clifford Click
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
class PhaseTransform;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
//------------------------------MulNode----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// Classic MULTIPLY functionality.  This covers all the usual 'multiply'
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// behaviors for an algebraic ring.  Multiply-integer, multiply-float,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// multiply-double, and binary-and are all inherited from this class.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// various identity values are supplied by virtual functions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
class MulNode : public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  virtual uint hash() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    44
  MulNode( Node *in1, Node *in2 ): Node(0,in1,in2) {
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    45
    init_class_id(Class_Mul);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    46
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  // Handle algebraic identities here.  If we have an identity, return the Node
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  // we are equivalent to.  We look for "add of zero" as an identity.
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 13104
diff changeset
    50
  virtual Node* Identity(PhaseGVN* phase);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  // We also canonicalize the Node, moving constants to the right input,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  // and flatten expressions (so that 1+x+2 becomes x+3).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  // Compute a new Type for this node.  Basically we just do the pre-check,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // then call the virtual add() to set the type.
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 13104
diff changeset
    58
  virtual const Type* Value(PhaseGVN* phase) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  // Supplied function returns the product of the inputs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // This also type-checks the inputs for sanity.  Guaranteed never to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  // be passed a TOP or BOTTOM type, these are filtered out by a pre-check.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // This call recognizes the multiplicative zero type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  virtual const Type *mul_ring( const Type *, const Type * ) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // Supplied function to return the multiplicative identity type
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  virtual const Type *mul_id() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // Supplied function to return the additive identity type
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  virtual const Type *add_id() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  // Supplied function to return the additive opcode
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  virtual int add_opcode() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  // Supplied function to return the multiplicative opcode
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  virtual int mul_opcode() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
//------------------------------MulINode---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
// Multiply 2 integers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
class MulINode : public MulNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  MulINode( Node *in1, Node *in2 ) : MulNode(in1,in2) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  virtual const Type *mul_ring( const Type *, const Type * ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  const Type *mul_id() const { return TypeInt::ONE; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  const Type *add_id() const { return TypeInt::ZERO; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  int add_opcode() const { return Op_AddI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  int mul_opcode() const { return Op_MulI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  const Type *bottom_type() const { return TypeInt::INT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  virtual uint ideal_reg() const { return Op_RegI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
//------------------------------MulLNode---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
// Multiply 2 longs
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
class MulLNode : public MulNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  MulLNode( Node *in1, Node *in2 ) : MulNode(in1,in2) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  virtual const Type *mul_ring( const Type *, const Type * ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  const Type *mul_id() const { return TypeLong::ONE; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  const Type *add_id() const { return TypeLong::ZERO; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  int add_opcode() const { return Op_AddL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  int mul_opcode() const { return Op_MulL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  const Type *bottom_type() const { return TypeLong::LONG; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  virtual uint ideal_reg() const { return Op_RegL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
//------------------------------MulFNode---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
// Multiply 2 floats
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
class MulFNode : public MulNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  MulFNode( Node *in1, Node *in2 ) : MulNode(in1,in2) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  virtual const Type *mul_ring( const Type *, const Type * ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  const Type *mul_id() const { return TypeF::ONE; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  const Type *add_id() const { return TypeF::ZERO; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  int add_opcode() const { return Op_AddF; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  int mul_opcode() const { return Op_MulF; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  const Type *bottom_type() const { return Type::FLOAT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  virtual uint ideal_reg() const { return Op_RegF; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
//------------------------------MulDNode---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
// Multiply 2 doubles
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
class MulDNode : public MulNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  MulDNode( Node *in1, Node *in2 ) : MulNode(in1,in2) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  virtual const Type *mul_ring( const Type *, const Type * ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  const Type *mul_id() const { return TypeD::ONE; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  const Type *add_id() const { return TypeD::ZERO; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  int add_opcode() const { return Op_AddD; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  int mul_opcode() const { return Op_MulD; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  const Type *bottom_type() const { return Type::DOUBLE; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  virtual uint ideal_reg() const { return Op_RegD; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
392
0b3167e2f2de 6603011: RFE: Optimize long division
rasbold
parents: 1
diff changeset
   143
//-------------------------------MulHiLNode------------------------------------
0b3167e2f2de 6603011: RFE: Optimize long division
rasbold
parents: 1
diff changeset
   144
// Upper 64 bits of a 64 bit by 64 bit multiply
0b3167e2f2de 6603011: RFE: Optimize long division
rasbold
parents: 1
diff changeset
   145
class MulHiLNode : public Node {
0b3167e2f2de 6603011: RFE: Optimize long division
rasbold
parents: 1
diff changeset
   146
public:
0b3167e2f2de 6603011: RFE: Optimize long division
rasbold
parents: 1
diff changeset
   147
  MulHiLNode( Node *in1, Node *in2 ) : Node(0,in1,in2) {}
0b3167e2f2de 6603011: RFE: Optimize long division
rasbold
parents: 1
diff changeset
   148
  virtual int Opcode() const;
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 13104
diff changeset
   149
  virtual const Type* Value(PhaseGVN* phase) const;
392
0b3167e2f2de 6603011: RFE: Optimize long division
rasbold
parents: 1
diff changeset
   150
  const Type *bottom_type() const { return TypeLong::LONG; }
0b3167e2f2de 6603011: RFE: Optimize long division
rasbold
parents: 1
diff changeset
   151
  virtual uint ideal_reg() const { return Op_RegL; }
0b3167e2f2de 6603011: RFE: Optimize long division
rasbold
parents: 1
diff changeset
   152
};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
//------------------------------AndINode---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
// Logically AND 2 integers.  Included with the MUL nodes because it inherits
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
// all the behavior of multiplication on a ring.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
class AndINode : public MulINode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  AndINode( Node *in1, Node *in2 ) : MulINode(in1,in2) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 13104
diff changeset
   162
  virtual Node* Identity(PhaseGVN* phase);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  virtual const Type *mul_ring( const Type *, const Type * ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  const Type *mul_id() const { return TypeInt::MINUS_1; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  const Type *add_id() const { return TypeInt::ZERO; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  int add_opcode() const { return Op_OrI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  int mul_opcode() const { return Op_AndI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  virtual uint ideal_reg() const { return Op_RegI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
//------------------------------AndINode---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
// Logically AND 2 longs.  Included with the MUL nodes because it inherits
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
// all the behavior of multiplication on a ring.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
class AndLNode : public MulLNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  AndLNode( Node *in1, Node *in2 ) : MulLNode(in1,in2) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 13104
diff changeset
   179
  virtual Node* Identity(PhaseGVN* phase);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  virtual const Type *mul_ring( const Type *, const Type * ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  const Type *mul_id() const { return TypeLong::MINUS_1; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  const Type *add_id() const { return TypeLong::ZERO; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  int add_opcode() const { return Op_OrL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  int mul_opcode() const { return Op_AndL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  virtual uint ideal_reg() const { return Op_RegL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
//------------------------------LShiftINode------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
// Logical shift left
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
class LShiftINode : public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  LShiftINode( Node *in1, Node *in2 ) : Node(0,in1,in2) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  virtual int Opcode() const;
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 13104
diff changeset
   194
  virtual Node* Identity(PhaseGVN* phase);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 13104
diff changeset
   196
  virtual const Type* Value(PhaseGVN* phase) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  const Type *bottom_type() const { return TypeInt::INT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  virtual uint ideal_reg() const { return Op_RegI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
//------------------------------LShiftLNode------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
// Logical shift left
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
class LShiftLNode : public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  LShiftLNode( Node *in1, Node *in2 ) : Node(0,in1,in2) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  virtual int Opcode() const;
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 13104
diff changeset
   207
  virtual Node* Identity(PhaseGVN* phase);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 13104
diff changeset
   209
  virtual const Type* Value(PhaseGVN* phase) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  const Type *bottom_type() const { return TypeLong::LONG; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  virtual uint ideal_reg() const { return Op_RegL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
//------------------------------RShiftINode------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
// Signed shift right
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
class RShiftINode : public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  RShiftINode( Node *in1, Node *in2 ) : Node(0,in1,in2) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  virtual int Opcode() const;
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 13104
diff changeset
   220
  virtual Node* Identity(PhaseGVN* phase);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 13104
diff changeset
   222
  virtual const Type* Value(PhaseGVN* phase) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  const Type *bottom_type() const { return TypeInt::INT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  virtual uint ideal_reg() const { return Op_RegI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
//------------------------------RShiftLNode------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
// Signed shift right
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
class RShiftLNode : public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  RShiftLNode( Node *in1, Node *in2 ) : Node(0,in1,in2) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  virtual int Opcode() const;
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 13104
diff changeset
   233
  virtual Node* Identity(PhaseGVN* phase);
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 13104
diff changeset
   234
  virtual const Type* Value(PhaseGVN* phase) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  const Type *bottom_type() const { return TypeLong::LONG; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  virtual uint ideal_reg() const { return Op_RegL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
//------------------------------URShiftINode-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
// Logical shift right
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
class URShiftINode : public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  URShiftINode( Node *in1, Node *in2 ) : Node(0,in1,in2) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  virtual int Opcode() const;
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 13104
diff changeset
   246
  virtual Node* Identity(PhaseGVN* phase);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 13104
diff changeset
   248
  virtual const Type* Value(PhaseGVN* phase) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  const Type *bottom_type() const { return TypeInt::INT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  virtual uint ideal_reg() const { return Op_RegI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
//------------------------------URShiftLNode-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
// Logical shift right
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
class URShiftLNode : public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  URShiftLNode( Node *in1, Node *in2 ) : Node(0,in1,in2) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  virtual int Opcode() const;
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 13104
diff changeset
   259
  virtual Node* Identity(PhaseGVN* phase);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 13104
diff changeset
   261
  virtual const Type* Value(PhaseGVN* phase) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  const Type *bottom_type() const { return TypeLong::LONG; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  virtual uint ideal_reg() const { return Op_RegL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   265
41323
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 35551
diff changeset
   266
//------------------------------FmaDNode--------------------------------------
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 35551
diff changeset
   267
// fused-multiply-add double
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 35551
diff changeset
   268
class FmaDNode : public Node {
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 35551
diff changeset
   269
public:
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 35551
diff changeset
   270
  FmaDNode(Node *c, Node *in1, Node *in2, Node *in3) : Node(c, in1, in2, in3) {}
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 35551
diff changeset
   271
  virtual int Opcode() const;
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 35551
diff changeset
   272
  const Type *bottom_type() const { return Type::DOUBLE; }
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 35551
diff changeset
   273
  virtual uint ideal_reg() const { return Op_RegD; }
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 35551
diff changeset
   274
  virtual const Type* Value(PhaseGVN* phase) const;
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 35551
diff changeset
   275
};
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 35551
diff changeset
   276
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 35551
diff changeset
   277
//------------------------------FmaFNode--------------------------------------
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 35551
diff changeset
   278
// fused-multiply-add float
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 35551
diff changeset
   279
class FmaFNode : public Node {
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 35551
diff changeset
   280
public:
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 35551
diff changeset
   281
  FmaFNode(Node *c, Node *in1, Node *in2, Node *in3) : Node(c, in1, in2, in3) {}
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 35551
diff changeset
   282
  virtual int Opcode() const;
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 35551
diff changeset
   283
  const Type *bottom_type() const { return Type::FLOAT; }
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 35551
diff changeset
   284
  virtual uint ideal_reg() const { return Op_RegF; }
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 35551
diff changeset
   285
  virtual const Type* Value(PhaseGVN* phase) const;
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 35551
diff changeset
   286
};
ddd5600d4762 8154122: Intrinsify fused mac operations
vdeshpande
parents: 35551
diff changeset
   287
52992
4bb6e0871bf7 8214751: X86: Support for VNNI Instructions
vdeshpande
parents: 47216
diff changeset
   288
//------------------------------MulAddS2INode----------------------------------
4bb6e0871bf7 8214751: X86: Support for VNNI Instructions
vdeshpande
parents: 47216
diff changeset
   289
// Multiply shorts into integers and add them.
4bb6e0871bf7 8214751: X86: Support for VNNI Instructions
vdeshpande
parents: 47216
diff changeset
   290
// Semantics: I_OUT = S1 * S2 + S3 * S4
4bb6e0871bf7 8214751: X86: Support for VNNI Instructions
vdeshpande
parents: 47216
diff changeset
   291
class MulAddS2INode : public Node {
4bb6e0871bf7 8214751: X86: Support for VNNI Instructions
vdeshpande
parents: 47216
diff changeset
   292
public:
4bb6e0871bf7 8214751: X86: Support for VNNI Instructions
vdeshpande
parents: 47216
diff changeset
   293
  MulAddS2INode(Node* in1, Node *in2, Node *in3, Node* in4) : Node(0, in1, in2, in3, in4) {}
4bb6e0871bf7 8214751: X86: Support for VNNI Instructions
vdeshpande
parents: 47216
diff changeset
   294
  virtual int Opcode() const;
4bb6e0871bf7 8214751: X86: Support for VNNI Instructions
vdeshpande
parents: 47216
diff changeset
   295
  const Type *bottom_type() const { return TypeInt::INT; }
4bb6e0871bf7 8214751: X86: Support for VNNI Instructions
vdeshpande
parents: 47216
diff changeset
   296
  virtual uint ideal_reg() const { return Op_RegI; }
4bb6e0871bf7 8214751: X86: Support for VNNI Instructions
vdeshpande
parents: 47216
diff changeset
   297
};
4bb6e0871bf7 8214751: X86: Support for VNNI Instructions
vdeshpande
parents: 47216
diff changeset
   298
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52992
diff changeset
   299
#endif // SHARE_OPTO_MULNODE_HPP