hotspot/src/share/vm/opto/vectornode.hpp
author enevill
Wed, 30 Sep 2015 04:35:39 -0400
changeset 33088 34fe49ecee13
parent 32723 56534fb3d71a
child 33469 30f4811eded0
permissions -rw-r--r--
8138583: aarch64: add support for vectorizing fabs/fneg Reviewed-by: aph, roland Contributed-by: felix.yang@linaro.org
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
25930
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 22845
diff changeset
     2
 * Copyright (c) 2007, 2014, 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
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    24
#ifndef SHARE_VM_OPTO_VECTORNODE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#define SHARE_VM_OPTO_VECTORNODE_HPP
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
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    47
  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
    48
  uint length() const { return vect_type()->length(); } // Vector length
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
    49
  uint length_in_bytes() const { return vect_type()->length_in_bytes(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    53
  virtual uint ideal_reg() const { return Matcher::vector_ideal_reg(vect_type()->length_in_bytes()); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
25930
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 22845
diff changeset
    55
  static VectorNode* scalar2vector(Node* s, uint vlen, const Type* opd_t);
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 22845
diff changeset
    56
  static VectorNode* shift_count(Node* shift, Node* cnt, uint vlen, BasicType bt);
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 22845
diff changeset
    57
  static VectorNode* make(int opc, Node* n1, Node* n2, uint vlen, BasicType bt);
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    58
13490
d19348851d2e 7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents: 13485
diff changeset
    59
  static int  opcode(int opc, BasicType bt);
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    60
  static bool implemented(int opc, uint vlen, BasicType bt);
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
    61
  static bool is_shift(Node* n);
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
    62
  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
    63
  // [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
    64
  static void vector_operands(Node* n, uint* start, uint* end);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
    67
//===========================Vector=ALU=Operations=============================
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
    69
//------------------------------AddVBNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
// Vector add byte
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
class AddVBNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    73
  AddVBNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
    77
//------------------------------AddVSNode--------------------------------------
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    78
// Vector add char/short
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
class AddVSNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    81
  AddVSNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
    85
//------------------------------AddVINode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
// Vector add int
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
class AddVINode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
    89
  AddVINode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
    93
//------------------------------AddVLNode--------------------------------------
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
    94
// Vector add long
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
    95
class AddVLNode : public VectorNode {
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
    96
public:
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
    97
  AddVLNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1, in2, vt) {}
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
    98
  virtual int Opcode() const;
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
    99
};
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   100
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   101
//------------------------------AddVFNode--------------------------------------
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   102
// Vector add float
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   103
class AddVFNode : public VectorNode {
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   104
public:
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   105
  AddVFNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1, in2, vt) {}
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   106
  virtual int Opcode() const;
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   107
};
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   108
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   109
//------------------------------AddVDNode--------------------------------------
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   110
// Vector add double
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   111
class AddVDNode : public VectorNode {
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   112
public:
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   113
  AddVDNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1, in2, vt) {}
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   114
  virtual int Opcode() const;
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   115
};
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   116
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   117
//------------------------------ReductionNode------------------------------------
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   118
// Perform reduction of a vector
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   119
class ReductionNode : public Node {
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   120
 public:
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   121
  ReductionNode(Node *ctrl, Node* in1, Node* in2) : Node(ctrl, in1, in2) {}
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   122
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   123
  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
   124
  static int  opcode(int opc, BasicType bt);
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   125
  static bool implemented(int opc, uint vlen, BasicType bt);
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   126
};
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   127
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   128
//------------------------------AddReductionVINode--------------------------------------
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   129
// Vector add int as a reduction
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   130
class AddReductionVINode : public ReductionNode {
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
  AddReductionVINode(Node * ctrl, Node* in1, Node* in2) : ReductionNode(ctrl, in1, in2) {}
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   133
  virtual int Opcode() const;
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   134
  virtual const Type* bottom_type() const { return TypeInt::INT; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   135
  virtual uint ideal_reg() const { return Op_RegI; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   136
};
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
//------------------------------AddReductionVLNode--------------------------------------
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   139
// Vector add long as a reduction
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   140
class AddReductionVLNode : public ReductionNode {
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   141
public:
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   142
  AddReductionVLNode(Node *ctrl, Node* in1, Node* in2) : ReductionNode(ctrl, in1, in2) {}
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   143
  virtual int Opcode() const;
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   144
  virtual const Type* bottom_type() const { return TypeLong::LONG; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   145
  virtual uint ideal_reg() const { return Op_RegL; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   146
};
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
//------------------------------AddReductionVFNode--------------------------------------
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   149
// Vector add float as a reduction
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   150
class AddReductionVFNode : public ReductionNode {
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   151
public:
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   152
  AddReductionVFNode(Node *ctrl, Node* in1, Node* in2) : ReductionNode(ctrl, in1, in2) {}
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   153
  virtual int Opcode() const;
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   154
  virtual const Type* bottom_type() const { return Type::FLOAT; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   155
  virtual uint ideal_reg() const { return Op_RegF; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   156
};
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
//------------------------------AddReductionVDNode--------------------------------------
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   159
// Vector add double as a reduction
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   160
class AddReductionVDNode : public ReductionNode {
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   161
public:
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   162
  AddReductionVDNode(Node *ctrl, Node* in1, Node* in2) : ReductionNode(ctrl, in1, in2) {}
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   163
  virtual int Opcode() const;
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   164
  virtual const Type* bottom_type() const { return Type::DOUBLE; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   165
  virtual uint ideal_reg() const { return Op_RegD; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   166
};
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   167
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   168
//------------------------------SubVBNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
// Vector subtract byte
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
class SubVBNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   172
  SubVBNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   176
//------------------------------SubVSNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
// Vector subtract short
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
class SubVSNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   180
  SubVSNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   184
//------------------------------SubVINode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
// Vector subtract int
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
class SubVINode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   188
  SubVINode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   192
//------------------------------SubVLNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
// Vector subtract long
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
class SubVLNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   196
  SubVLNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   200
//------------------------------SubVFNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
// Vector subtract float
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
class SubVFNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   204
  SubVFNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   208
//------------------------------SubVDNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
// Vector subtract double
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
class SubVDNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   212
  SubVDNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   216
//------------------------------MulVSNode--------------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   217
// Vector multiply short
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   218
class MulVSNode : public VectorNode {
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   219
 public:
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   220
  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
   221
  virtual int Opcode() const;
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   222
};
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   223
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   224
//------------------------------MulVINode--------------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   225
// Vector multiply int
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   226
class MulVINode : public VectorNode {
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   227
 public:
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   228
  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
   229
  virtual int Opcode() const;
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   230
};
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   231
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   232
//------------------------------MulVLNode--------------------------------------
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   233
// Vector multiply long
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   234
class MulVLNode : public VectorNode {
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   235
public:
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   236
  MulVLNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1, in2, vt) {}
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   237
  virtual int Opcode() const;
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   238
};
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   239
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   240
//------------------------------MulVFNode--------------------------------------
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   241
// Vector multiply float
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   242
class MulVFNode : public VectorNode {
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   243
public:
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   244
  MulVFNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1, in2, vt) {}
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   245
  virtual int Opcode() const;
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   246
};
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   247
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   248
//------------------------------MulVDNode--------------------------------------
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   249
// Vector multiply double
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   250
class MulVDNode : public VectorNode {
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   251
public:
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   252
  MulVDNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1, in2, vt) {}
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   253
  virtual int Opcode() const;
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   254
};
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   255
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   256
//------------------------------MulReductionVINode--------------------------------------
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   257
// Vector multiply int as a reduction
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   258
class MulReductionVINode : public ReductionNode {
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   259
public:
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   260
  MulReductionVINode(Node *ctrl, Node* in1, Node* in2) : ReductionNode(ctrl, in1, in2) {}
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   261
  virtual int Opcode() const;
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   262
  virtual const Type* bottom_type() const { return TypeInt::INT; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   263
  virtual uint ideal_reg() const { return Op_RegI; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   264
};
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   265
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   266
//------------------------------MulReductionVLNode--------------------------------------
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   267
// Vector multiply int as a reduction
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   268
class MulReductionVLNode : public ReductionNode {
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   269
public:
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   270
  MulReductionVLNode(Node *ctrl, Node* in1, Node* in2) : ReductionNode(ctrl, in1, in2) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  virtual int Opcode() const;
30624
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   272
  virtual const Type* bottom_type() const { return TypeLong::LONG; }
2e1803c8a26d 8076276: Add support for AVX512
kvn
parents: 30211
diff changeset
   273
  virtual uint ideal_reg() const { return Op_RegI; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
30211
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   276
//------------------------------MulReductionVFNode--------------------------------------
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   277
// Vector multiply float as a reduction
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   278
class MulReductionVFNode : public ReductionNode {
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   279
public:
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   280
  MulReductionVFNode(Node *ctrl, Node* in1, Node* in2) : ReductionNode(ctrl, in1, in2) {}
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   281
  virtual int Opcode() const;
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   282
  virtual const Type* bottom_type() const { return Type::FLOAT; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   283
  virtual uint ideal_reg() const { return Op_RegF; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   284
};
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   285
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   286
//------------------------------MulReductionVDNode--------------------------------------
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   287
// Vector multiply double as a reduction
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   288
class MulReductionVDNode : public ReductionNode {
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   289
public:
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   290
  MulReductionVDNode(Node *ctrl, Node* in1, Node* in2) : ReductionNode(ctrl, in1, in2) {}
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   291
  virtual int Opcode() const;
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   292
  virtual const Type* bottom_type() const { return Type::DOUBLE; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   293
  virtual uint ideal_reg() const { return Op_RegD; }
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   294
};
442fbbb31f75 8074981: Integer/FP scalar reduction optimization
kvn
parents: 25930
diff changeset
   295
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   296
//------------------------------DivVFNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
// Vector divide float
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
class DivVFNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   300
  DivVFNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   304
//------------------------------DivVDNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
// Vector Divide double
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
class DivVDNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   308
  DivVDNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
33088
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   312
//------------------------------AbsVFNode--------------------------------------
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   313
// Vector Abs float
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   314
class AbsVFNode : public VectorNode {
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   315
 public:
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   316
  AbsVFNode(Node* in, const TypeVect* vt) : VectorNode(in,vt) {}
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   317
  virtual int Opcode() const;
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   318
};
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   319
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   320
//------------------------------AbsVDNode--------------------------------------
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   321
// Vector Abs double
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   322
class AbsVDNode : public VectorNode {
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   323
 public:
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   324
  AbsVDNode(Node* in, const TypeVect* vt) : VectorNode(in,vt) {}
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   325
  virtual int Opcode() const;
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   326
};
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   327
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   328
//------------------------------NegVFNode--------------------------------------
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   329
// Vector Neg float
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   330
class NegVFNode : public VectorNode {
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   331
 public:
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   332
  NegVFNode(Node* in, const TypeVect* vt) : VectorNode(in,vt) {}
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   333
  virtual int Opcode() const;
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   334
};
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   335
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   336
//------------------------------NegVDNode--------------------------------------
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   337
// Vector Neg double
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   338
class NegVDNode : public VectorNode {
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   339
 public:
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   340
  NegVDNode(Node* in, const TypeVect* vt) : VectorNode(in,vt) {}
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   341
  virtual int Opcode() const;
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   342
};
34fe49ecee13 8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents: 32723
diff changeset
   343
32723
56534fb3d71a 8135028: support for vectorizing double precision sqrt
mcberg
parents: 31035
diff changeset
   344
//------------------------------SqrtVDNode--------------------------------------
56534fb3d71a 8135028: support for vectorizing double precision sqrt
mcberg
parents: 31035
diff changeset
   345
// Vector Sqrt double
56534fb3d71a 8135028: support for vectorizing double precision sqrt
mcberg
parents: 31035
diff changeset
   346
class SqrtVDNode : public VectorNode {
56534fb3d71a 8135028: support for vectorizing double precision sqrt
mcberg
parents: 31035
diff changeset
   347
 public:
56534fb3d71a 8135028: support for vectorizing double precision sqrt
mcberg
parents: 31035
diff changeset
   348
  SqrtVDNode(Node* in, const TypeVect* vt) : VectorNode(in,vt) {}
56534fb3d71a 8135028: support for vectorizing double precision sqrt
mcberg
parents: 31035
diff changeset
   349
  virtual int Opcode() const;
56534fb3d71a 8135028: support for vectorizing double precision sqrt
mcberg
parents: 31035
diff changeset
   350
};
56534fb3d71a 8135028: support for vectorizing double precision sqrt
mcberg
parents: 31035
diff changeset
   351
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   352
//------------------------------LShiftVBNode-----------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   353
// Vector left shift bytes
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
class LShiftVBNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   356
  LShiftVBNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   360
//------------------------------LShiftVSNode-----------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   361
// Vector left shift shorts
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
class LShiftVSNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   364
  LShiftVSNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   368
//------------------------------LShiftVINode-----------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   369
// Vector left shift ints
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
class LShiftVINode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   372
  LShiftVINode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   376
//------------------------------LShiftVLNode-----------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   377
// Vector left shift longs
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   378
class LShiftVLNode : public VectorNode {
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   379
 public:
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   380
  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
   381
  virtual int Opcode() const;
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   382
};
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   383
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   384
//------------------------------RShiftVBNode-----------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   385
// Vector right arithmetic (signed) shift bytes
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   386
class RShiftVBNode : public VectorNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   388
  RShiftVBNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   392
//------------------------------RShiftVSNode-----------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   393
// Vector right arithmetic (signed) shift shorts
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   394
class RShiftVSNode : public VectorNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   396
  RShiftVSNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   400
//------------------------------RShiftVINode-----------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   401
// Vector right arithmetic (signed) shift ints
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   402
class RShiftVINode : public VectorNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   404
  RShiftVINode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   408
//------------------------------RShiftVLNode-----------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   409
// Vector right arithmetic (signed) shift longs
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   410
class RShiftVLNode : public VectorNode {
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   411
 public:
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   412
  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
   413
  virtual int Opcode() const;
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   414
};
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   415
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   416
//------------------------------URShiftVBNode----------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   417
// Vector right logical (unsigned) shift bytes
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   418
class URShiftVBNode : public VectorNode {
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   419
 public:
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   420
  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
   421
  virtual int Opcode() const;
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   422
};
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   423
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   424
//------------------------------URShiftVSNode----------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   425
// Vector right logical (unsigned) shift shorts
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   426
class URShiftVSNode : public VectorNode {
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   427
 public:
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   428
  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
   429
  virtual int Opcode() const;
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   430
};
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   431
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   432
//------------------------------URShiftVINode----------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   433
// Vector right logical (unsigned) shift ints
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   434
class URShiftVINode : public VectorNode {
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   435
 public:
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   436
  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
   437
  virtual int Opcode() const;
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   438
};
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   439
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   440
//------------------------------URShiftVLNode----------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   441
// Vector right logical (unsigned) shift longs
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   442
class URShiftVLNode : public VectorNode {
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   443
 public:
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   444
  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
   445
  virtual int Opcode() const;
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   446
};
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   447
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   448
//------------------------------LShiftCntVNode---------------------------------
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   449
// Vector left shift count
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   450
class LShiftCntVNode : public VectorNode {
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   451
 public:
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   452
  LShiftCntVNode(Node* cnt, const TypeVect* vt) : VectorNode(cnt,vt) {}
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   453
  virtual int Opcode() const;
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   454
  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
   455
};
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   456
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   457
//------------------------------RShiftCntVNode---------------------------------
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   458
// Vector right shift count
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   459
class RShiftCntVNode : public VectorNode {
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   460
 public:
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   461
  RShiftCntVNode(Node* cnt, const TypeVect* vt) : VectorNode(cnt,vt) {}
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   462
  virtual int Opcode() const;
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   463
  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
   464
};
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   465
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   466
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
//------------------------------AndVNode---------------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   468
// Vector and integer
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
class AndVNode : public VectorNode {
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
  AndVNode(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
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
//------------------------------OrVNode---------------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   476
// Vector or integer
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
class OrVNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   479
  OrVNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
//------------------------------XorVNode---------------------------------------
13485
6c7faa516fc6 6340864: Implement vectorization optimizations in hotspot-server
kvn
parents: 13104
diff changeset
   484
// Vector xor integer
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
class XorVNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   487
  XorVNode(Node* in1, Node* in2, const TypeVect* vt) : VectorNode(in1,in2,vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   491
//================================= M E M O R Y ===============================
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   493
//------------------------------LoadVectorNode---------------------------------
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   494
// Load Vector from memory
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   495
class LoadVectorNode : public LoadNode {
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   496
 public:
31035
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30624
diff changeset
   497
  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
   498
    : 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
   499
    init_class_id(Class_LoadVector);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   502
  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
   503
  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
   504
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   507
  virtual uint ideal_reg() const  { return Matcher::vector_ideal_reg(memory_size()); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  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
   509
  virtual int memory_size() const { return vect_type()->length_in_bytes(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   511
  virtual int store_Opcode() const { return Op_StoreVector; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
25930
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 22845
diff changeset
   513
  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
   514
                              Node* adr, const TypePtr* atyp,
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30624
diff changeset
   515
                              uint vlen, BasicType bt,
0f0743952c41 8077504: Unsafe load can loose control dependency and cause crash
roland
parents: 30624
diff changeset
   516
                              ControlDependency control_dependency = LoadNode::DependsOnlyOnTest);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   519
//------------------------------StoreVectorNode--------------------------------
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   520
// Store Vector to memory
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   521
class StoreVectorNode : public StoreNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   523
  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
   524
    : 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
   525
    assert(val->is_Vector() || val->is_LoadVector(), "sanity");
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   526
    init_class_id(Class_StoreVector);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   527
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   529
  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
   530
  uint length() const { return vect_type()->length(); } // Vector length
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   534
  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
   535
  virtual BasicType memory_type() const { return T_VOID; }
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   536
  virtual int memory_size() const { return vect_type()->length_in_bytes(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
25930
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 22845
diff changeset
   538
  static StoreVectorNode* make(int opc, Node* ctl, Node* mem,
10255
bab46e6f7661 7069452: Cleanup NodeFlags
kvn
parents: 9101
diff changeset
   539
                               Node* adr, const TypePtr* atyp, Node* val,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
                               uint vlen);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   543
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   544
//=========================Promote_Scalar_to_Vector============================
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   546
//------------------------------ReplicateBNode---------------------------------
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   547
// Replicate byte scalar to be vector
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   548
class ReplicateBNode : public VectorNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   550
  ReplicateBNode(Node* in1, const TypeVect* vt) : VectorNode(in1, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   554
//------------------------------ReplicateSNode---------------------------------
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   555
// Replicate short scalar to be vector
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   556
class ReplicateSNode : public VectorNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   558
  ReplicateSNode(Node* in1, const TypeVect* vt) : VectorNode(in1, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   562
//------------------------------ReplicateINode---------------------------------
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   563
// Replicate int scalar to be vector
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   564
class ReplicateINode : public VectorNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   566
  ReplicateINode(Node* in1, const TypeVect* vt) : VectorNode(in1, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  virtual int Opcode() const;
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
//------------------------------ReplicateLNode---------------------------------
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   571
// Replicate long scalar to be vector
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   572
class ReplicateLNode : public VectorNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   574
  ReplicateLNode(Node* in1, const TypeVect* vt) : VectorNode(in1, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   578
//------------------------------ReplicateFNode---------------------------------
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   579
// Replicate float scalar to be vector
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   580
class ReplicateFNode : public VectorNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   582
  ReplicateFNode(Node* in1, const TypeVect* vt) : VectorNode(in1, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   586
//------------------------------ReplicateDNode---------------------------------
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   587
// Replicate double scalar to be vector
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   588
class ReplicateDNode : public VectorNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   590
  ReplicateDNode(Node* in1, const TypeVect* vt) : VectorNode(in1, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   594
//========================Pack_Scalars_into_a_Vector===========================
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
//------------------------------PackNode---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
// Pack parent class (not for code generation).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
class PackNode : public VectorNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   600
  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
   601
  PackNode(Node* in1, Node* n2, const TypeVect* vt) : VectorNode(in1, n2, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
13490
d19348851d2e 7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents: 13485
diff changeset
   604
  void add_opd(Node* n) {
d19348851d2e 7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents: 13485
diff changeset
   605
    add_req(n);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  // 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
   609
  PackNode* binary_tree_pack(int lo, int hi);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
25930
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 22845
diff changeset
   611
  static PackNode* make(Node* s, uint vlen, BasicType bt);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   614
//------------------------------PackBNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
// Pack byte scalars into vector
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
class PackBNode : public PackNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   618
  PackBNode(Node* in1, const TypeVect* vt)  : PackNode(in1, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   622
//------------------------------PackSNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
// Pack short scalars into a vector
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
class PackSNode : public PackNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   626
  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
   627
  PackSNode(Node* in1, Node* in2, const TypeVect* vt) : PackNode(in1, in2, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   631
//------------------------------PackINode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
// Pack integer scalars into a vector
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
class PackINode : public PackNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   635
  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
   636
  PackINode(Node* in1, Node* in2, const TypeVect* vt) : PackNode(in1, in2, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   640
//------------------------------PackLNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
// Pack long scalars into a vector
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
class PackLNode : public PackNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   644
  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
   645
  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
   646
  virtual int Opcode() const;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   647
};
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   648
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   649
//------------------------------Pack2LNode-------------------------------------
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   650
// Pack 2 long scalars into a vector
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   651
class Pack2LNode : public PackNode {
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   652
 public:
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   653
  Pack2LNode(Node* in1, Node* in2, const TypeVect* vt) : PackNode(in1, in2, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   657
//------------------------------PackFNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
// Pack float scalars into vector
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
class PackFNode : public PackNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   661
  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
   662
  PackFNode(Node* in1, Node* in2, const TypeVect* vt) : PackNode(in1, in2, 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
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   666
//------------------------------PackDNode--------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
// Pack double scalars into a vector
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
class PackDNode : public PackNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   670
  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
   671
  PackDNode(Node* in1, Node* in2, const TypeVect* vt) : PackNode(in1, in2, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   675
//------------------------------Pack2DNode-------------------------------------
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   676
// Pack 2 double scalars into a vector
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   677
class Pack2DNode : public PackNode {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
 public:
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   679
  Pack2DNode(Node* in1, Node* in2, const TypeVect* vt) : PackNode(in1, in2, vt) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   684
//========================Extract_Scalar_from_Vector===========================
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   686
//------------------------------ExtractNode------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
// Extract a scalar from a vector at position "pos"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
class ExtractNode : public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  ExtractNode(Node* src, ConINode* pos) : Node(NULL, src, (Node*)pos) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
    assert(in(2)->get_int() >= 0, "positive constants");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
  uint  pos() const { return in(2)->get_int(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
25930
eae8b7490d2c 8054033: Remove unused references to Compile*
thartmann
parents: 22845
diff changeset
   696
  static Node* make(Node* v, uint position, BasicType bt);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   699
//------------------------------ExtractBNode-----------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
// Extract a byte from a vector at position "pos"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
class ExtractBNode : public ExtractNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
  ExtractBNode(Node* src, ConINode* pos) : ExtractNode(src, pos) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
  virtual const Type *bottom_type() const { return TypeInt::INT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
  virtual uint ideal_reg() const { return Op_RegI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   709
//------------------------------ExtractUBNode----------------------------------
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   710
// 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
   711
class ExtractUBNode : public ExtractNode {
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   712
 public:
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   713
  ExtractUBNode(Node* src, ConINode* pos) : ExtractNode(src, pos) {}
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   714
  virtual int Opcode() const;
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   715
  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
   716
  virtual uint ideal_reg() const { return Op_RegI; }
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   717
};
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 10255
diff changeset
   718
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   719
//------------------------------ExtractCNode-----------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
// Extract a char from a vector at position "pos"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
class ExtractCNode : public ExtractNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
  ExtractCNode(Node* src, ConINode* pos) : ExtractNode(src, pos) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
  virtual const Type *bottom_type() const { return TypeInt::INT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
  virtual uint ideal_reg() const { return Op_RegI; }
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
//------------------------------ExtractSNode-----------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
// Extract a short from a vector at position "pos"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
class ExtractSNode : public ExtractNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
  ExtractSNode(Node* src, ConINode* pos) : ExtractNode(src, pos) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  virtual const Type *bottom_type() const { return TypeInt::INT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
  virtual uint ideal_reg() const { return Op_RegI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   739
//------------------------------ExtractINode-----------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
// Extract an int from a vector at position "pos"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
class ExtractINode : public ExtractNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
  ExtractINode(Node* src, ConINode* pos) : ExtractNode(src, pos) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
  virtual const Type *bottom_type() const { return TypeInt::INT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
  virtual uint ideal_reg() const { return Op_RegI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   749
//------------------------------ExtractLNode-----------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
// Extract a long from a vector at position "pos"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
class ExtractLNode : public ExtractNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
  ExtractLNode(Node* src, ConINode* pos) : ExtractNode(src, pos) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
  virtual const Type *bottom_type() const { return TypeLong::LONG; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
  virtual uint ideal_reg() const { return Op_RegL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   759
//------------------------------ExtractFNode-----------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
// Extract a float from a vector at position "pos"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
class ExtractFNode : public ExtractNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  ExtractFNode(Node* src, ConINode* pos) : ExtractNode(src, pos) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
  virtual const Type *bottom_type() const { return Type::FLOAT; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  virtual uint ideal_reg() const { return Op_RegF; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
13930
8df570f94294 7201026: add vector for shift count
kvn
parents: 13490
diff changeset
   769
//------------------------------ExtractDNode-----------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
// Extract a double from a vector at position "pos"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
class ExtractDNode : public ExtractNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  ExtractDNode(Node* src, ConINode* pos) : ExtractNode(src, pos) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
  virtual const Type *bottom_type() const { return Type::DOUBLE; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
  virtual uint ideal_reg() const { return Op_RegD; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   778
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   779
#endif // SHARE_VM_OPTO_VECTORNODE_HPP