src/hotspot/share/opto/vectornode.hpp
author coleenp
Thu, 10 Jan 2019 15:13:51 -0500
changeset 53244 9807daeb47c4
parent 52992 4bb6e0871bf7
child 54066 1dbe0c210134
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) 2007, 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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52992
diff changeset
    24
#ifndef SHARE_OPTO_VECTORNODE_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52992
diff changeset
    25
#define SHARE_OPTO_VECTORNODE_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "opto/matcher.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "opto/memnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "opto/node.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "opto/opcodes.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
    32
//------------------------------VectorNode-------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// Vector Operation
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    34
class VectorNode : public TypeNode {
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    35
 public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    37
  VectorNode(Node* n1, const TypeVect* vt) : TypeNode(vt, 2) {
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    38
    init_class_id(Class_Vector);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    39
    init_req(1, n1);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    40
  }
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    41
  VectorNode(Node* n1, Node* n2, const TypeVect* vt) : TypeNode(vt, 3) {
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    42
    init_class_id(Class_Vector);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    43
    init_req(1, n1);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    44
    init_req(2, n2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
33469
30f4811eded0 8139340: SuperWord enhancement to support vector conditional move (CMovVD) on Intel AVX cpu
iveresov
parents: 33088
diff changeset
    47
  VectorNode(Node* n1, Node* n2, Node* n3, const TypeVect* vt) : TypeNode(vt, 4) {
30f4811eded0 8139340: SuperWord enhancement to support vector conditional move (CMovVD) on Intel AVX cpu
iveresov
parents: 33088
diff changeset
    48
    init_class_id(Class_Vector);
30f4811eded0 8139340: SuperWord enhancement to support vector conditional move (CMovVD) on Intel AVX cpu
iveresov
parents: 33088
diff changeset
    49
    init_req(1, n1);
30f4811eded0 8139340: SuperWord enhancement to support vector conditional move (CMovVD) on Intel AVX cpu
iveresov
parents: 33088
diff changeset
    50
    init_req(2, n2);
30f4811eded0 8139340: SuperWord enhancement to support vector conditional move (CMovVD) on Intel AVX cpu
iveresov
parents: 33088
diff changeset
    51
    init_req(3, n3);
30f4811eded0 8139340: SuperWord enhancement to support vector conditional move (CMovVD) on Intel AVX cpu
iveresov
parents: 33088
diff changeset
    52
  }
30f4811eded0 8139340: SuperWord enhancement to support vector conditional move (CMovVD) on Intel AVX cpu
iveresov
parents: 33088
diff changeset
    53
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    54
  const TypeVect* vect_type() const { return type()->is_vect(); }
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    55
  uint length() const { return vect_type()->length(); } // Vector length
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
    56
  uint length_in_bytes() const { return vect_type()->length_in_bytes(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    60
  virtual uint ideal_reg() const { return Matcher::vector_ideal_reg(vect_type()->length_in_bytes()); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
25930
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 22845
diff changeset
    62
  static VectorNode* scalar2vector(Node* s, uint vlen, const Type* opd_t);
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 22845
diff changeset
    63
  static VectorNode* shift_count(Node* shift, Node* cnt, uint vlen, BasicType bt);
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 22845
diff changeset
    64
  static VectorNode* make(int opc, Node* n1, Node* n2, uint vlen, BasicType bt);
46528
cf0da758e7b5 8181616: FMA Vectorization on x86
vdeshpande
parents: 38049
diff changeset
    65
  static VectorNode* make(int opc, Node* n1, Node* n2, Node* n3, uint vlen, BasicType bt);
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    66
13490
d19348851d2e 7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents: 13485
diff changeset
    67
  static int  opcode(int opc, BasicType bt);
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    68
  static bool implemented(int opc, uint vlen, BasicType bt);
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
    69
  static bool is_shift(Node* n);
52992
4bb6e0871bf7 8214751: X86: Support for VNNI Instructions
vdeshpande
parents: 52779
diff changeset
    70
  static bool is_type_transition_short_to_int(Node* n);
4bb6e0871bf7 8214751: X86: Support for VNNI Instructions
vdeshpande
parents: 52779
diff changeset
    71
  static bool is_type_transition_to_int(Node* n);
4bb6e0871bf7 8214751: X86: Support for VNNI Instructions
vdeshpande
parents: 52779
diff changeset
    72
  static bool is_muladds2i(Node* n);
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
    73
  static bool is_invariant_vector(Node* n);
13490
d19348851d2e 7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents: 13485
diff changeset
    74
  // [Start, end) half-open range defining which operands are vectors
d19348851d2e 7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents: 13485
diff changeset
    75
  static void vector_operands(Node* n, uint* start, uint* end);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
    78
//===========================Vector=ALU=Operations=============================
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
    80
//------------------------------AddVBNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
// Vector add byte
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
class AddVBNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    84
  AddVBNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
    88
//------------------------------AddVSNode--------------------------------------
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    89
// Vector add char/short
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
class AddVSNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    92
  AddVSNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
    96
//------------------------------AddVINode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
// Vector add int
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
class AddVINode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   100
  AddVINode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   104
//------------------------------AddVLNode--------------------------------------
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   105
// Vector add long
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   106
class AddVLNode : public VectorNode {
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   107
public:
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   108
  AddVLNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1, in2, vt) {}
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   109
  virtual int Opcode() const;
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   110
};
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   111
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   112
//------------------------------AddVFNode--------------------------------------
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   113
// Vector add float
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   114
class AddVFNode : public VectorNode {
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   115
public:
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   116
  AddVFNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1, in2, vt) {}
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   117
  virtual int Opcode() const;
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   118
};
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   119
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   120
//------------------------------AddVDNode--------------------------------------
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   121
// Vector add double
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   122
class AddVDNode : public VectorNode {
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   123
public:
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   124
  AddVDNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1, in2, vt) {}
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   125
  virtual int Opcode() const;
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   126
};
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   127
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   128
//------------------------------ReductionNode------------------------------------
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   129
// Perform reduction of a vector
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   130
class ReductionNode : public Node {
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   131
 public:
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   132
  ReductionNode(Node *ctrl, Node* in1, Node* in2) : Node(ctrl, in1, in2) {}
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   133
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   134
  static ReductionNode* make(int opc, Node *ctrl, Node* in1, Node* in2, BasicType bt);
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   135
  static int  opcode(int opc, BasicType bt);
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   136
  static bool implemented(int opc, uint vlen, BasicType bt);
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   137
};
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   138
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   139
//------------------------------AddReductionVINode--------------------------------------
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   140
// Vector add int as a reduction
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   141
class AddReductionVINode : public ReductionNode {
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   142
public:
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   143
  AddReductionVINode(Node * ctrl, Node* in1, Node* in2) : ReductionNode(ctrl, in1, in2) {}
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   144
  virtual int Opcode() const;
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   145
  virtual const Type* bottom_type() const { return TypeInt::INT; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   146
  virtual uint ideal_reg() const { return Op_RegI; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   147
};
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   148
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   149
//------------------------------AddReductionVLNode--------------------------------------
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   150
// Vector add long as a reduction
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   151
class AddReductionVLNode : public ReductionNode {
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   152
public:
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   153
  AddReductionVLNode(Node *ctrl, Node* in1, Node* in2) : ReductionNode(ctrl, in1, in2) {}
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   154
  virtual int Opcode() const;
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   155
  virtual const Type* bottom_type() const { return TypeLong::LONG; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   156
  virtual uint ideal_reg() const { return Op_RegL; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   157
};
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   158
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   159
//------------------------------AddReductionVFNode--------------------------------------
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   160
// Vector add float as a reduction
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   161
class AddReductionVFNode : public ReductionNode {
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   162
public:
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   163
  AddReductionVFNode(Node *ctrl, Node* in1, Node* in2) : ReductionNode(ctrl, in1, in2) {}
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   164
  virtual int Opcode() const;
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   165
  virtual const Type* bottom_type() const { return Type::FLOAT; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   166
  virtual uint ideal_reg() const { return Op_RegF; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   167
};
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   168
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   169
//------------------------------AddReductionVDNode--------------------------------------
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   170
// Vector add double as a reduction
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   171
class AddReductionVDNode : public ReductionNode {
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   172
public:
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   173
  AddReductionVDNode(Node *ctrl, Node* in1, Node* in2) : ReductionNode(ctrl, in1, in2) {}
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   174
  virtual int Opcode() const;
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   175
  virtual const Type* bottom_type() const { return Type::DOUBLE; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   176
  virtual uint ideal_reg() const { return Op_RegD; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   177
};
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   178
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   179
//------------------------------SubVBNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
// Vector subtract byte
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
class SubVBNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   183
  SubVBNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   187
//------------------------------SubVSNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
// Vector subtract short
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
class SubVSNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   191
  SubVSNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   195
//------------------------------SubVINode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
// Vector subtract int
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
class SubVINode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   199
  SubVINode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   203
//------------------------------SubVLNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
// Vector subtract long
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
class SubVLNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   207
  SubVLNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   211
//------------------------------SubVFNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
// Vector subtract float
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
class SubVFNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   215
  SubVFNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   219
//------------------------------SubVDNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
// Vector subtract double
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
class SubVDNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   223
  SubVDNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   227
//------------------------------MulVSNode--------------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   228
// Vector multiply short
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   229
class MulVSNode : public VectorNode {
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   230
 public:
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   231
  MulVSNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   232
  virtual int Opcode() const;
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   233
};
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   234
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   235
//------------------------------MulVINode--------------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   236
// Vector multiply int
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   237
class MulVINode : public VectorNode {
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   238
 public:
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   239
  MulVINode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   240
  virtual int Opcode() const;
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   241
};
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   242
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   243
//------------------------------MulVLNode--------------------------------------
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   244
// Vector multiply long
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   245
class MulVLNode : public VectorNode {
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   246
public:
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   247
  MulVLNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1, in2, vt) {}
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   248
  virtual int Opcode() const;
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   249
};
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   250
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   251
//------------------------------MulVFNode--------------------------------------
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   252
// Vector multiply float
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   253
class MulVFNode : public VectorNode {
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   254
public:
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   255
  MulVFNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1, in2, vt) {}
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   256
  virtual int Opcode() const;
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   257
};
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   258
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   259
//------------------------------MulVDNode--------------------------------------
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   260
// Vector multiply double
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   261
class MulVDNode : public VectorNode {
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   262
public:
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   263
  MulVDNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1, in2, vt) {}
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   264
  virtual int Opcode() const;
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   265
};
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   266
52992
4bb6e0871bf7 8214751: X86: Support for VNNI Instructions
vdeshpande
parents: 52779
diff changeset
   267
//------------------------------MulAddVS2VINode--------------------------------
4bb6e0871bf7 8214751: X86: Support for VNNI Instructions
vdeshpande
parents: 52779
diff changeset
   268
// Vector multiply shorts to int and add adjacent ints.
4bb6e0871bf7 8214751: X86: Support for VNNI Instructions
vdeshpande
parents: 52779
diff changeset
   269
class MulAddVS2VINode : public VectorNode {
4bb6e0871bf7 8214751: X86: Support for VNNI Instructions
vdeshpande
parents: 52779
diff changeset
   270
  public:
4bb6e0871bf7 8214751: X86: Support for VNNI Instructions
vdeshpande
parents: 52779
diff changeset
   271
    MulAddVS2VINode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1, in2, vt) {}
4bb6e0871bf7 8214751: X86: Support for VNNI Instructions
vdeshpande
parents: 52779
diff changeset
   272
    virtual int Opcode() const;
4bb6e0871bf7 8214751: X86: Support for VNNI Instructions
vdeshpande
parents: 52779
diff changeset
   273
};
4bb6e0871bf7 8214751: X86: Support for VNNI Instructions
vdeshpande
parents: 52779
diff changeset
   274
46528
cf0da758e7b5 8181616: FMA Vectorization on x86
vdeshpande
parents: 38049
diff changeset
   275
//------------------------------FmaVDNode--------------------------------------
cf0da758e7b5 8181616: FMA Vectorization on x86
vdeshpande
parents: 38049
diff changeset
   276
// Vector multiply double
cf0da758e7b5 8181616: FMA Vectorization on x86
vdeshpande
parents: 38049
diff changeset
   277
class FmaVDNode : public VectorNode {
cf0da758e7b5 8181616: FMA Vectorization on x86
vdeshpande
parents: 38049
diff changeset
   278
public:
cf0da758e7b5 8181616: FMA Vectorization on x86
vdeshpande
parents: 38049
diff changeset
   279
  FmaVDNode(Node* in1, Node* in2, Node* in3, const TypeVect* vt) : VectorNode(in1, in2, in3, vt) {}
cf0da758e7b5 8181616: FMA Vectorization on x86
vdeshpande
parents: 38049
diff changeset
   280
  virtual int Opcode() const;
cf0da758e7b5 8181616: FMA Vectorization on x86
vdeshpande
parents: 38049
diff changeset
   281
};
cf0da758e7b5 8181616: FMA Vectorization on x86
vdeshpande
parents: 38049
diff changeset
   282
cf0da758e7b5 8181616: FMA Vectorization on x86
vdeshpande
parents: 38049
diff changeset
   283
//------------------------------FmaVFNode--------------------------------------
cf0da758e7b5 8181616: FMA Vectorization on x86
vdeshpande
parents: 38049
diff changeset
   284
// Vector multiply float
cf0da758e7b5 8181616: FMA Vectorization on x86
vdeshpande
parents: 38049
diff changeset
   285
class FmaVFNode : public VectorNode {
cf0da758e7b5 8181616: FMA Vectorization on x86
vdeshpande
parents: 38049
diff changeset
   286
public:
cf0da758e7b5 8181616: FMA Vectorization on x86
vdeshpande
parents: 38049
diff changeset
   287
  FmaVFNode(Node* in1, Node* in2, Node* in3, const TypeVect* vt) : VectorNode(in1, in2, in3, vt) {}
cf0da758e7b5 8181616: FMA Vectorization on x86
vdeshpande
parents: 38049
diff changeset
   288
  virtual int Opcode() const;
cf0da758e7b5 8181616: FMA Vectorization on x86
vdeshpande
parents: 38049
diff changeset
   289
};
cf0da758e7b5 8181616: FMA Vectorization on x86
vdeshpande
parents: 38049
diff changeset
   290
48309
1a0499fd252e 8192846: Support cmov vectorization for float
kvn
parents: 48089
diff changeset
   291
//------------------------------CMoveVFNode--------------------------------------
1a0499fd252e 8192846: Support cmov vectorization for float
kvn
parents: 48089
diff changeset
   292
// Vector float conditional move
1a0499fd252e 8192846: Support cmov vectorization for float
kvn
parents: 48089
diff changeset
   293
class CMoveVFNode : public VectorNode {
1a0499fd252e 8192846: Support cmov vectorization for float
kvn
parents: 48089
diff changeset
   294
public:
1a0499fd252e 8192846: Support cmov vectorization for float
kvn
parents: 48089
diff changeset
   295
  CMoveVFNode(Node* in1, Node* in2, Node* in3, const TypeVect* vt) : VectorNode(in1, in2, in3, vt) {}
1a0499fd252e 8192846: Support cmov vectorization for float
kvn
parents: 48089
diff changeset
   296
  virtual int Opcode() const;
1a0499fd252e 8192846: Support cmov vectorization for float
kvn
parents: 48089
diff changeset
   297
};
1a0499fd252e 8192846: Support cmov vectorization for float
kvn
parents: 48089
diff changeset
   298
33469
30f4811eded0 8139340: SuperWord enhancement to support vector conditional move (CMovVD) on Intel AVX cpu
iveresov
parents: 33088
diff changeset
   299
//------------------------------CMoveVDNode--------------------------------------
48309
1a0499fd252e 8192846: Support cmov vectorization for float
kvn
parents: 48089
diff changeset
   300
// Vector double conditional move
33469
30f4811eded0 8139340: SuperWord enhancement to support vector conditional move (CMovVD) on Intel AVX cpu
iveresov
parents: 33088
diff changeset
   301
class CMoveVDNode : public VectorNode {
30f4811eded0 8139340: SuperWord enhancement to support vector conditional move (CMovVD) on Intel AVX cpu
iveresov
parents: 33088
diff changeset
   302
public:
30f4811eded0 8139340: SuperWord enhancement to support vector conditional move (CMovVD) on Intel AVX cpu
iveresov
parents: 33088
diff changeset
   303
  CMoveVDNode(Node* in1, Node* in2, Node* in3, const TypeVect* vt) : VectorNode(in1, in2, in3, vt) {}
30f4811eded0 8139340: SuperWord enhancement to support vector conditional move (CMovVD) on Intel AVX cpu
iveresov
parents: 33088
diff changeset
   304
  virtual int Opcode() const;
30f4811eded0 8139340: SuperWord enhancement to support vector conditional move (CMovVD) on Intel AVX cpu
iveresov
parents: 33088
diff changeset
   305
};
30f4811eded0 8139340: SuperWord enhancement to support vector conditional move (CMovVD) on Intel AVX cpu
iveresov
parents: 33088
diff changeset
   306
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   307
//------------------------------MulReductionVINode--------------------------------------
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   308
// Vector multiply int as a reduction
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   309
class MulReductionVINode : public ReductionNode {
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   310
public:
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   311
  MulReductionVINode(Node *ctrl, Node* in1, Node* in2) : ReductionNode(ctrl, in1, in2) {}
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   312
  virtual int Opcode() const;
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   313
  virtual const Type* bottom_type() const { return TypeInt::INT; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   314
  virtual uint ideal_reg() const { return Op_RegI; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   315
};
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   316
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   317
//------------------------------MulReductionVLNode--------------------------------------
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   318
// Vector multiply int as a reduction
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   319
class MulReductionVLNode : public ReductionNode {
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   320
public:
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   321
  MulReductionVLNode(Node *ctrl, Node* in1, Node* in2) : ReductionNode(ctrl, in1, in2) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  virtual int Opcode() const;
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   323
  virtual const Type* bottom_type() const { return TypeLong::LONG; }
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   324
  virtual uint ideal_reg() const { return Op_RegI; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   327
//------------------------------MulReductionVFNode--------------------------------------
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   328
// Vector multiply float as a reduction
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   329
class MulReductionVFNode : public ReductionNode {
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   330
public:
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   331
  MulReductionVFNode(Node *ctrl, Node* in1, Node* in2) : ReductionNode(ctrl, in1, in2) {}
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   332
  virtual int Opcode() const;
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   333
  virtual const Type* bottom_type() const { return Type::FLOAT; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   334
  virtual uint ideal_reg() const { return Op_RegF; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   335
};
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   336
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   337
//------------------------------MulReductionVDNode--------------------------------------
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   338
// Vector multiply double as a reduction
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   339
class MulReductionVDNode : public ReductionNode {
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   340
public:
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   341
  MulReductionVDNode(Node *ctrl, Node* in1, Node* in2) : ReductionNode(ctrl, in1, in2) {}
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   342
  virtual int Opcode() const;
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   343
  virtual const Type* bottom_type() const { return Type::DOUBLE; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   344
  virtual uint ideal_reg() const { return Op_RegD; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   345
};
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   346
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   347
//------------------------------DivVFNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
// Vector divide float
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
class DivVFNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   351
  DivVFNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   355
//------------------------------DivVDNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
// Vector Divide double
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
class DivVDNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   359
  DivVDNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
33088
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   363
//------------------------------AbsVFNode--------------------------------------
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   364
// Vector Abs float
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   365
class AbsVFNode : public VectorNode {
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   366
 public:
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   367
  AbsVFNode(Node* in, const TypeVect* vt) : VectorNode(in,vt) {}
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   368
  virtual int Opcode() const;
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   369
};
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   370
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   371
//------------------------------AbsVDNode--------------------------------------
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   372
// Vector Abs double
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   373
class AbsVDNode : public VectorNode {
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   374
 public:
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   375
  AbsVDNode(Node* in, const TypeVect* vt) : VectorNode(in,vt) {}
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   376
  virtual int Opcode() const;
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   377
};
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   378
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   379
//------------------------------NegVFNode--------------------------------------
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   380
// Vector Neg float
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   381
class NegVFNode : public VectorNode {
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   382
 public:
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   383
  NegVFNode(Node* in, const TypeVect* vt) : VectorNode(in,vt) {}
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   384
  virtual int Opcode() const;
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   385
};
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   386
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   387
//------------------------------NegVDNode--------------------------------------
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   388
// Vector Neg double
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   389
class NegVDNode : public VectorNode {
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   390
 public:
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   391
  NegVDNode(Node* in, const TypeVect* vt) : VectorNode(in,vt) {}
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   392
  virtual int Opcode() const;
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   393
};
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   394
49384
b242a1e3f9cf 8199421: Add support for vector popcount
rlupusoru
parents: 48309
diff changeset
   395
//------------------------------PopCountVINode---------------------------------
b242a1e3f9cf 8199421: Add support for vector popcount
rlupusoru
parents: 48309
diff changeset
   396
// Vector popcount integer bits
b242a1e3f9cf 8199421: Add support for vector popcount
rlupusoru
parents: 48309
diff changeset
   397
class PopCountVINode : public VectorNode {
b242a1e3f9cf 8199421: Add support for vector popcount
rlupusoru
parents: 48309
diff changeset
   398
 public:
b242a1e3f9cf 8199421: Add support for vector popcount
rlupusoru
parents: 48309
diff changeset
   399
  PopCountVINode(Node* in, const TypeVect* vt) : VectorNode(in,vt) {}
b242a1e3f9cf 8199421: Add support for vector popcount
rlupusoru
parents: 48309
diff changeset
   400
  virtual int Opcode() const;
b242a1e3f9cf 8199421: Add support for vector popcount
rlupusoru
parents: 48309
diff changeset
   401
};
b242a1e3f9cf 8199421: Add support for vector popcount
rlupusoru
parents: 48309
diff changeset
   402
48089
22c9856fc2c2 8190800: Support vectorization of Math.sqrt() on floats
rlupusoru
parents: 47216
diff changeset
   403
//------------------------------SqrtVFNode--------------------------------------
22c9856fc2c2 8190800: Support vectorization of Math.sqrt() on floats
rlupusoru
parents: 47216
diff changeset
   404
// Vector Sqrt float
22c9856fc2c2 8190800: Support vectorization of Math.sqrt() on floats
rlupusoru
parents: 47216
diff changeset
   405
class SqrtVFNode : public VectorNode {
22c9856fc2c2 8190800: Support vectorization of Math.sqrt() on floats
rlupusoru
parents: 47216
diff changeset
   406
 public:
22c9856fc2c2 8190800: Support vectorization of Math.sqrt() on floats
rlupusoru
parents: 47216
diff changeset
   407
  SqrtVFNode(Node* in, const TypeVect* vt) : VectorNode(in,vt) {}
22c9856fc2c2 8190800: Support vectorization of Math.sqrt() on floats
rlupusoru
parents: 47216
diff changeset
   408
  virtual int Opcode() const;
22c9856fc2c2 8190800: Support vectorization of Math.sqrt() on floats
rlupusoru
parents: 47216
diff changeset
   409
};
22c9856fc2c2 8190800: Support vectorization of Math.sqrt() on floats
rlupusoru
parents: 47216
diff changeset
   410
32723
56534fb3d71a 8135028: support for vectorizing double precision sqrt
mcberg
parents: 31035
diff changeset
   411
//------------------------------SqrtVDNode--------------------------------------
56534fb3d71a 8135028: support for vectorizing double precision sqrt
mcberg
parents: 31035
diff changeset
   412
// Vector Sqrt double
56534fb3d71a 8135028: support for vectorizing double precision sqrt
mcberg
parents: 31035
diff changeset
   413
class SqrtVDNode : public VectorNode {
56534fb3d71a 8135028: support for vectorizing double precision sqrt
mcberg
parents: 31035
diff changeset
   414
 public:
56534fb3d71a 8135028: support for vectorizing double precision sqrt
mcberg
parents: 31035
diff changeset
   415
  SqrtVDNode(Node* in, const TypeVect* vt) : VectorNode(in,vt) {}
56534fb3d71a 8135028: support for vectorizing double precision sqrt
mcberg
parents: 31035
diff changeset
   416
  virtual int Opcode() const;
56534fb3d71a 8135028: support for vectorizing double precision sqrt
mcberg
parents: 31035
diff changeset
   417
};
56534fb3d71a 8135028: support for vectorizing double precision sqrt
mcberg
parents: 31035
diff changeset
   418
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   419
//------------------------------LShiftVBNode-----------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   420
// Vector left shift bytes
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
class LShiftVBNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   423
  LShiftVBNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   427
//------------------------------LShiftVSNode-----------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   428
// Vector left shift shorts
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
class LShiftVSNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   431
  LShiftVSNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   435
//------------------------------LShiftVINode-----------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   436
// Vector left shift ints
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
class LShiftVINode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   439
  LShiftVINode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   443
//------------------------------LShiftVLNode-----------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   444
// Vector left shift longs
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   445
class LShiftVLNode : public VectorNode {
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   446
 public:
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   447
  LShiftVLNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   448
  virtual int Opcode() const;
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   449
};
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   450
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   451
//------------------------------RShiftVBNode-----------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   452
// Vector right arithmetic (signed) shift bytes
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   453
class RShiftVBNode : public VectorNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   455
  RShiftVBNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   459
//------------------------------RShiftVSNode-----------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   460
// Vector right arithmetic (signed) shift shorts
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   461
class RShiftVSNode : public VectorNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   463
  RShiftVSNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   467
//------------------------------RShiftVINode-----------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   468
// Vector right arithmetic (signed) shift ints
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   469
class RShiftVINode : public VectorNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   471
  RShiftVINode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   475
//------------------------------RShiftVLNode-----------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   476
// Vector right arithmetic (signed) shift longs
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   477
class RShiftVLNode : public VectorNode {
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   478
 public:
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   479
  RShiftVLNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   480
  virtual int Opcode() const;
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   481
};
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   482
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   483
//------------------------------URShiftVBNode----------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   484
// Vector right logical (unsigned) shift bytes
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   485
class URShiftVBNode : public VectorNode {
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   486
 public:
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   487
  URShiftVBNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   488
  virtual int Opcode() const;
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   489
};
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   490
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   491
//------------------------------URShiftVSNode----------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   492
// Vector right logical (unsigned) shift shorts
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   493
class URShiftVSNode : public VectorNode {
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   494
 public:
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   495
  URShiftVSNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   496
  virtual int Opcode() const;
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   497
};
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   498
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   499
//------------------------------URShiftVINode----------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   500
// Vector right logical (unsigned) shift ints
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   501
class URShiftVINode : public VectorNode {
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   502
 public:
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   503
  URShiftVINode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   504
  virtual int Opcode() const;
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   505
};
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   506
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   507
//------------------------------URShiftVLNode----------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   508
// Vector right logical (unsigned) shift longs
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   509
class URShiftVLNode : public VectorNode {
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   510
 public:
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   511
  URShiftVLNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   512
  virtual int Opcode() const;
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   513
};
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   514
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   515
//------------------------------LShiftCntVNode---------------------------------
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   516
// Vector left shift count
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   517
class LShiftCntVNode : public VectorNode {
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   518
 public:
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   519
  LShiftCntVNode(Node* cnt, const TypeVect* vt) : VectorNode(cnt,vt) {}
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   520
  virtual int Opcode() const;
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   521
  virtual uint ideal_reg() const { return Matcher::vector_shift_count_ideal_reg(vect_type()->length_in_bytes()); }
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   522
};
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   523
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   524
//------------------------------RShiftCntVNode---------------------------------
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   525
// Vector right shift count
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   526
class RShiftCntVNode : public VectorNode {
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   527
 public:
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   528
  RShiftCntVNode(Node* cnt, const TypeVect* vt) : VectorNode(cnt,vt) {}
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   529
  virtual int Opcode() const;
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   530
  virtual uint ideal_reg() const { return Matcher::vector_shift_count_ideal_reg(vect_type()->length_in_bytes()); }
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   531
};
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   532
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   533
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
//------------------------------AndVNode---------------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   535
// Vector and integer
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
class AndVNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   538
  AndVNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
//------------------------------OrVNode---------------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   543
// Vector or integer
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
class OrVNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   546
  OrVNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
//------------------------------XorVNode---------------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   551
// Vector xor integer
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
class XorVNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   554
  XorVNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   558
//================================= M E M O R Y ===============================
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   560
//------------------------------LoadVectorNode---------------------------------
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   561
// Load Vector from memory
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   562
class LoadVectorNode : public LoadNode {
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   563
 public:
31035
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30624
diff changeset
   564
  LoadVectorNode(Node* c, Node* mem, Node* adr, const TypePtr* at, const TypeVect* vt, ControlDependency control_dependency = LoadNode::DependsOnlyOnTest)
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30624
diff changeset
   565
    : LoadNode(c, mem, adr, at, vt, MemNode::unordered, control_dependency) {
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   566
    init_class_id(Class_LoadVector);
52779
a432469d2ed5 8214344: C2: assert(con.basic_type() != T_ILLEGAL) failed: elembt=byte; loadbt=void; unsigned=0
roland
parents: 49384
diff changeset
   567
    set_mismatched_access();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   570
  const TypeVect* vect_type() const { return type()->is_vect(); }
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   571
  uint length() const { return vect_type()->length(); } // Vector length
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   572
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   575
  virtual uint ideal_reg() const  { return Matcher::vector_ideal_reg(memory_size()); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  virtual BasicType memory_type() const { return T_VOID; }
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   577
  virtual int memory_size() const { return vect_type()->length_in_bytes(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   579
  virtual int store_Opcode() const { return Op_StoreVector; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
25930
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 22845
diff changeset
   581
  static LoadVectorNode* make(int opc, Node* ctl, Node* mem,
31035
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30624
diff changeset
   582
                              Node* adr, const TypePtr* atyp,
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30624
diff changeset
   583
                              uint vlen, BasicType bt,
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30624
diff changeset
   584
                              ControlDependency control_dependency = LoadNode::DependsOnlyOnTest);
38049
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 33469
diff changeset
   585
  uint element_size(void) { return type2aelembytes(vect_type()->element_basic_type()); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   588
//------------------------------StoreVectorNode--------------------------------
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   589
// Store Vector to memory
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   590
class StoreVectorNode : public StoreNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   592
  StoreVectorNode(Node* c, Node* mem, Node* adr, const TypePtr* at, Node* val)
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 13930
diff changeset
   593
    : StoreNode(c, mem, adr, at, val, MemNode::unordered) {
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   594
    assert(val->is_Vector() || val->is_LoadVector(), "sanity");
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   595
    init_class_id(Class_StoreVector);
52779
a432469d2ed5 8214344: C2: assert(con.basic_type() != T_ILLEGAL) failed: elembt=byte; loadbt=void; unsigned=0
roland
parents: 49384
diff changeset
   596
    set_mismatched_access();
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   597
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   599
  const TypeVect* vect_type() const { return in(MemNode::ValueIn)->bottom_type()->is_vect(); }
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   600
  uint length() const { return vect_type()->length(); } // Vector length
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   604
  virtual uint ideal_reg() const  { return Matcher::vector_ideal_reg(memory_size()); }
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   605
  virtual BasicType memory_type() const { return T_VOID; }
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   606
  virtual int memory_size() const { return vect_type()->length_in_bytes(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
25930
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 22845
diff changeset
   608
  static StoreVectorNode* make(int opc, Node* ctl, Node* mem,
10255
bab46e6f7661 7069452: Cleanup NodeFlags
kvn
parents: 9101
diff changeset
   609
                               Node* adr, const TypePtr* atyp, Node* val,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
                               uint vlen);
38049
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 33469
diff changeset
   611
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 33469
diff changeset
   612
  uint element_size(void) { return type2aelembytes(vect_type()->element_basic_type()); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   615
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   616
//=========================Promote_Scalar_to_Vector============================
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   618
//------------------------------ReplicateBNode---------------------------------
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   619
// Replicate byte scalar to be vector
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   620
class ReplicateBNode : public VectorNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   622
  ReplicateBNode(Node* in1, const TypeVect* vt) : VectorNode(in1, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   626
//------------------------------ReplicateSNode---------------------------------
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   627
// Replicate short scalar to be vector
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   628
class ReplicateSNode : public VectorNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   630
  ReplicateSNode(Node* in1, const TypeVect* vt) : VectorNode(in1, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   634
//------------------------------ReplicateINode---------------------------------
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   635
// Replicate int scalar to be vector
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   636
class ReplicateINode : public VectorNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   638
  ReplicateINode(Node* in1, const TypeVect* vt) : VectorNode(in1, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   642
//------------------------------ReplicateLNode---------------------------------
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   643
// Replicate long scalar to be vector
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   644
class ReplicateLNode : public VectorNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   646
  ReplicateLNode(Node* in1, const TypeVect* vt) : VectorNode(in1, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   650
//------------------------------ReplicateFNode---------------------------------
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   651
// Replicate float scalar to be vector
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   652
class ReplicateFNode : public VectorNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   654
  ReplicateFNode(Node* in1, const TypeVect* vt) : VectorNode(in1, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   658
//------------------------------ReplicateDNode---------------------------------
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   659
// Replicate double scalar to be vector
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   660
class ReplicateDNode : public VectorNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   662
  ReplicateDNode(Node* in1, const TypeVect* vt) : VectorNode(in1, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   666
//========================Pack_Scalars_into_a_Vector===========================
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
//------------------------------PackNode---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
// Pack parent class (not for code generation).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
class PackNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   672
  PackNode(Node* in1, const TypeVect* vt) : VectorNode(in1, vt) {}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   673
  PackNode(Node* in1, Node* n2, const TypeVect* vt) : VectorNode(in1, n2, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
13490
d19348851d2e 7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents: 13485
diff changeset
   676
  void add_opd(Node* n) {
d19348851d2e 7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents: 13485
diff changeset
   677
    add_req(n);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  // Create a binary tree form for Packs. [lo, hi) (half-open) range
25930
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 22845
diff changeset
   681
  PackNode* binary_tree_pack(int lo, int hi);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
25930
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 22845
diff changeset
   683
  static PackNode* make(Node* s, uint vlen, BasicType bt);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   686
//------------------------------PackBNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
// Pack byte scalars into vector
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
class PackBNode : public PackNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   690
  PackBNode(Node* in1, const TypeVect* vt)  : PackNode(in1, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   694
//------------------------------PackSNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
// Pack short scalars into a vector
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
class PackSNode : public PackNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   698
  PackSNode(Node* in1, const TypeVect* vt)  : PackNode(in1, vt) {}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   699
  PackSNode(Node* in1, Node* in2, const TypeVect* vt) : PackNode(in1, in2, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   703
//------------------------------PackINode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
// Pack integer scalars into a vector
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
class PackINode : public PackNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   707
  PackINode(Node* in1, const TypeVect* vt)  : PackNode(in1, vt) {}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   708
  PackINode(Node* in1, Node* in2, const TypeVect* vt) : PackNode(in1, in2, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   712
//------------------------------PackLNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
// Pack long scalars into a vector
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
class PackLNode : public PackNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   716
  PackLNode(Node* in1, const TypeVect* vt)  : PackNode(in1, vt) {}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   717
  PackLNode(Node* in1, Node* in2, const TypeVect* vt) : PackNode(in1, in2, vt) {}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   718
  virtual int Opcode() const;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   719
};
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   720
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   721
//------------------------------Pack2LNode-------------------------------------
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   722
// Pack 2 long scalars into a vector
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   723
class Pack2LNode : public PackNode {
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   724
 public:
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   725
  Pack2LNode(Node* in1, Node* in2, const TypeVect* vt) : PackNode(in1, in2, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   729
//------------------------------PackFNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
// Pack float scalars into vector
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
class PackFNode : public PackNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   733
  PackFNode(Node* in1, const TypeVect* vt)  : PackNode(in1, vt) {}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   734
  PackFNode(Node* in1, Node* in2, const TypeVect* vt) : PackNode(in1, in2, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   738
//------------------------------PackDNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
// Pack double scalars into a vector
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
class PackDNode : public PackNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   742
  PackDNode(Node* in1, const TypeVect* vt) : PackNode(in1, vt) {}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   743
  PackDNode(Node* in1, Node* in2, const TypeVect* vt) : PackNode(in1, in2, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   747
//------------------------------Pack2DNode-------------------------------------
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   748
// Pack 2 double scalars into a vector
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   749
class Pack2DNode : public PackNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   751
  Pack2DNode(Node* in1, Node* in2, const TypeVect* vt) : PackNode(in1, in2, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   756
//========================Extract_Scalar_from_Vector===========================
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   758
//------------------------------ExtractNode------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
// Extract a scalar from a vector at position "pos"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
class ExtractNode : public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
  ExtractNode(Node* src, ConINode* pos) : Node(NULL, src, (Node*)pos) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
    assert(in(2)->get_int() >= 0, "positive constants");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  uint  pos() const { return in(2)->get_int(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
25930
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 22845
diff changeset
   768
  static Node* make(Node* v, uint position, BasicType bt);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   771
//------------------------------ExtractBNode-----------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
// Extract a byte from a vector at position "pos"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
class ExtractBNode : public ExtractNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
  ExtractBNode(Node* src, ConINode* pos) : ExtractNode(src, pos) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
  virtual const Type *bottom_type() const { return TypeInt::INT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
  virtual uint ideal_reg() const { return Op_RegI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   781
//------------------------------ExtractUBNode----------------------------------
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   782
// Extract a boolean from a vector at position "pos"
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   783
class ExtractUBNode : public ExtractNode {
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   784
 public:
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   785
  ExtractUBNode(Node* src, ConINode* pos) : ExtractNode(src, pos) {}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   786
  virtual int Opcode() const;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   787
  virtual const Type *bottom_type() const { return TypeInt::INT; }
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   788
  virtual uint ideal_reg() const { return Op_RegI; }
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   789
};
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   790
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   791
//------------------------------ExtractCNode-----------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
// Extract a char from a vector at position "pos"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
class ExtractCNode : public ExtractNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
  ExtractCNode(Node* src, ConINode* pos) : ExtractNode(src, pos) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
  virtual const Type *bottom_type() const { return TypeInt::INT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
  virtual uint ideal_reg() const { return Op_RegI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   801
//------------------------------ExtractSNode-----------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
// Extract a short from a vector at position "pos"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
class ExtractSNode : public ExtractNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
  ExtractSNode(Node* src, ConINode* pos) : ExtractNode(src, pos) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
  virtual const Type *bottom_type() const { return TypeInt::INT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
  virtual uint ideal_reg() const { return Op_RegI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   811
//------------------------------ExtractINode-----------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
// Extract an int from a vector at position "pos"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
class ExtractINode : public ExtractNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
  ExtractINode(Node* src, ConINode* pos) : ExtractNode(src, pos) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
  virtual const Type *bottom_type() const { return TypeInt::INT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
  virtual uint ideal_reg() const { return Op_RegI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   821
//------------------------------ExtractLNode-----------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
// Extract a long from a vector at position "pos"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
class ExtractLNode : public ExtractNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
  ExtractLNode(Node* src, ConINode* pos) : ExtractNode(src, pos) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
  virtual const Type *bottom_type() const { return TypeLong::LONG; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
  virtual uint ideal_reg() const { return Op_RegL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   831
//------------------------------ExtractFNode-----------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
// Extract a float from a vector at position "pos"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
class ExtractFNode : public ExtractNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
  ExtractFNode(Node* src, ConINode* pos) : ExtractNode(src, pos) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
  virtual const Type *bottom_type() const { return Type::FLOAT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
  virtual uint ideal_reg() const { return Op_RegF; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   841
//------------------------------ExtractDNode-----------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
// Extract a double from a vector at position "pos"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
class ExtractDNode : public ExtractNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
  ExtractDNode(Node* src, ConINode* pos) : ExtractNode(src, pos) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
  virtual const Type *bottom_type() const { return Type::DOUBLE; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
  virtual uint ideal_reg() const { return Op_RegD; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   850
38049
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 33469
diff changeset
   851
//------------------------------SetVectMaskINode-------------------------------
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 33469
diff changeset
   852
// Provide a mask for a vector predicate machine
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 33469
diff changeset
   853
class SetVectMaskINode : public Node {
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 33469
diff changeset
   854
public:
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 33469
diff changeset
   855
  SetVectMaskINode(Node *c, Node *in1) : Node(c, in1) {}
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 33469
diff changeset
   856
  virtual int Opcode() const;
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 33469
diff changeset
   857
  const Type *bottom_type() const { return TypeInt::INT; }
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 33469
diff changeset
   858
  virtual uint ideal_reg() const { return Op_RegI; }
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 33469
diff changeset
   859
  virtual const Type *Value(PhaseGVN *phase) const { return TypeInt::INT; }
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 33469
diff changeset
   860
};
e8541793960f 8153998: Masked vector post loops
mcberg
parents: 33469
diff changeset
   861
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52992
diff changeset
   862
#endif // SHARE_OPTO_VECTORNODE_HPP