2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2012-06-15 01:25:19 -07:00
|
|
|
* Copyright (c) 2007, 2012, Oracle and/or its affiliates. All rights reserved.
|
2007-12-01 00:00:00 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
|
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
|
|
* accompanied this code).
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License version
|
|
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
2010-05-27 19:08:38 -07:00
|
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
|
|
* questions.
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
2010-11-23 13:22:55 -08:00
|
|
|
#include "precompiled.hpp"
|
|
|
|
#include "memory/allocation.inline.hpp"
|
|
|
|
#include "opto/connode.hpp"
|
|
|
|
#include "opto/vectornode.hpp"
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
//------------------------------VectorNode--------------------------------------
|
|
|
|
|
|
|
|
// Return the vector operator for the specified scalar operation
|
2012-06-15 01:25:19 -07:00
|
|
|
// and vector length. Also used to check if the code generator
|
2007-12-01 00:00:00 +00:00
|
|
|
// supports the vector operation.
|
2012-08-22 11:55:40 -07:00
|
|
|
int VectorNode::opcode(int sopc, BasicType bt) {
|
2007-12-01 00:00:00 +00:00
|
|
|
switch (sopc) {
|
|
|
|
case Op_AddI:
|
|
|
|
switch (bt) {
|
|
|
|
case T_BOOLEAN:
|
|
|
|
case T_BYTE: return Op_AddVB;
|
2012-06-15 01:25:19 -07:00
|
|
|
case T_CHAR:
|
2007-12-01 00:00:00 +00:00
|
|
|
case T_SHORT: return Op_AddVS;
|
|
|
|
case T_INT: return Op_AddVI;
|
|
|
|
}
|
|
|
|
ShouldNotReachHere();
|
|
|
|
case Op_AddL:
|
|
|
|
assert(bt == T_LONG, "must be");
|
|
|
|
return Op_AddVL;
|
|
|
|
case Op_AddF:
|
|
|
|
assert(bt == T_FLOAT, "must be");
|
|
|
|
return Op_AddVF;
|
|
|
|
case Op_AddD:
|
|
|
|
assert(bt == T_DOUBLE, "must be");
|
|
|
|
return Op_AddVD;
|
|
|
|
case Op_SubI:
|
|
|
|
switch (bt) {
|
|
|
|
case T_BOOLEAN:
|
|
|
|
case T_BYTE: return Op_SubVB;
|
2012-06-15 01:25:19 -07:00
|
|
|
case T_CHAR:
|
2007-12-01 00:00:00 +00:00
|
|
|
case T_SHORT: return Op_SubVS;
|
|
|
|
case T_INT: return Op_SubVI;
|
|
|
|
}
|
|
|
|
ShouldNotReachHere();
|
|
|
|
case Op_SubL:
|
|
|
|
assert(bt == T_LONG, "must be");
|
|
|
|
return Op_SubVL;
|
|
|
|
case Op_SubF:
|
|
|
|
assert(bt == T_FLOAT, "must be");
|
|
|
|
return Op_SubVF;
|
|
|
|
case Op_SubD:
|
|
|
|
assert(bt == T_DOUBLE, "must be");
|
|
|
|
return Op_SubVD;
|
2012-08-20 09:07:21 -07:00
|
|
|
case Op_MulI:
|
|
|
|
switch (bt) {
|
|
|
|
case T_BOOLEAN:
|
|
|
|
case T_BYTE: return 0; // Unimplemented
|
|
|
|
case T_CHAR:
|
|
|
|
case T_SHORT: return Op_MulVS;
|
|
|
|
case T_INT: return Matcher::match_rule_supported(Op_MulVI) ? Op_MulVI : 0; // SSE4_1
|
|
|
|
}
|
|
|
|
ShouldNotReachHere();
|
2007-12-01 00:00:00 +00:00
|
|
|
case Op_MulF:
|
|
|
|
assert(bt == T_FLOAT, "must be");
|
|
|
|
return Op_MulVF;
|
|
|
|
case Op_MulD:
|
|
|
|
assert(bt == T_DOUBLE, "must be");
|
|
|
|
return Op_MulVD;
|
|
|
|
case Op_DivF:
|
|
|
|
assert(bt == T_FLOAT, "must be");
|
|
|
|
return Op_DivVF;
|
|
|
|
case Op_DivD:
|
|
|
|
assert(bt == T_DOUBLE, "must be");
|
|
|
|
return Op_DivVD;
|
|
|
|
case Op_LShiftI:
|
|
|
|
switch (bt) {
|
|
|
|
case T_BOOLEAN:
|
|
|
|
case T_BYTE: return Op_LShiftVB;
|
2012-06-15 01:25:19 -07:00
|
|
|
case T_CHAR:
|
2007-12-01 00:00:00 +00:00
|
|
|
case T_SHORT: return Op_LShiftVS;
|
|
|
|
case T_INT: return Op_LShiftVI;
|
|
|
|
}
|
|
|
|
ShouldNotReachHere();
|
2012-08-20 09:07:21 -07:00
|
|
|
case Op_LShiftL:
|
|
|
|
assert(bt == T_LONG, "must be");
|
|
|
|
return Op_LShiftVL;
|
2012-06-15 01:25:19 -07:00
|
|
|
case Op_RShiftI:
|
2007-12-01 00:00:00 +00:00
|
|
|
switch (bt) {
|
|
|
|
case T_BOOLEAN:
|
2012-06-15 01:25:19 -07:00
|
|
|
case T_BYTE: return Op_RShiftVB;
|
|
|
|
case T_CHAR:
|
|
|
|
case T_SHORT: return Op_RShiftVS;
|
|
|
|
case T_INT: return Op_RShiftVI;
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
ShouldNotReachHere();
|
2012-08-20 09:07:21 -07:00
|
|
|
case Op_RShiftL:
|
|
|
|
assert(bt == T_LONG, "must be");
|
|
|
|
return Op_RShiftVL;
|
|
|
|
case Op_URShiftI:
|
|
|
|
switch (bt) {
|
|
|
|
case T_BOOLEAN:
|
|
|
|
case T_BYTE: return Op_URShiftVB;
|
|
|
|
case T_CHAR:
|
|
|
|
case T_SHORT: return Op_URShiftVS;
|
|
|
|
case T_INT: return Op_URShiftVI;
|
|
|
|
}
|
|
|
|
ShouldNotReachHere();
|
|
|
|
case Op_URShiftL:
|
|
|
|
assert(bt == T_LONG, "must be");
|
|
|
|
return Op_URShiftVL;
|
2007-12-01 00:00:00 +00:00
|
|
|
case Op_AndI:
|
|
|
|
case Op_AndL:
|
|
|
|
return Op_AndV;
|
|
|
|
case Op_OrI:
|
|
|
|
case Op_OrL:
|
|
|
|
return Op_OrV;
|
|
|
|
case Op_XorI:
|
|
|
|
case Op_XorL:
|
|
|
|
return Op_XorV;
|
|
|
|
|
|
|
|
case Op_LoadB:
|
2012-06-15 01:25:19 -07:00
|
|
|
case Op_LoadUB:
|
2009-01-26 16:22:12 +01:00
|
|
|
case Op_LoadUS:
|
2007-12-01 00:00:00 +00:00
|
|
|
case Op_LoadS:
|
|
|
|
case Op_LoadI:
|
|
|
|
case Op_LoadL:
|
|
|
|
case Op_LoadF:
|
|
|
|
case Op_LoadD:
|
2012-06-15 01:25:19 -07:00
|
|
|
return Op_LoadVector;
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
case Op_StoreB:
|
|
|
|
case Op_StoreC:
|
|
|
|
case Op_StoreI:
|
|
|
|
case Op_StoreL:
|
|
|
|
case Op_StoreF:
|
|
|
|
case Op_StoreD:
|
2012-06-15 01:25:19 -07:00
|
|
|
return Op_StoreVector;
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
return 0; // Unimplemented
|
|
|
|
}
|
|
|
|
|
2012-06-15 01:25:19 -07:00
|
|
|
bool VectorNode::implemented(int opc, uint vlen, BasicType bt) {
|
|
|
|
if (is_java_primitive(bt) &&
|
|
|
|
(vlen > 1) && is_power_of_2(vlen) &&
|
|
|
|
Matcher::vector_size_supported(bt, vlen)) {
|
2012-08-22 11:55:40 -07:00
|
|
|
int vopc = VectorNode::opcode(opc, bt);
|
2012-06-15 01:25:19 -07:00
|
|
|
return vopc > 0 && Matcher::has_match_rule(vopc);
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
2012-06-15 01:25:19 -07:00
|
|
|
return false;
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
2012-08-20 09:07:21 -07:00
|
|
|
bool VectorNode::is_shift(Node* n) {
|
|
|
|
switch (n->Opcode()) {
|
|
|
|
case Op_LShiftI:
|
|
|
|
case Op_LShiftL:
|
|
|
|
case Op_RShiftI:
|
|
|
|
case Op_RShiftL:
|
|
|
|
case Op_URShiftI:
|
|
|
|
case Op_URShiftL:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-08-21 14:50:02 -07:00
|
|
|
// Check if input is loop invariant vector.
|
2012-08-20 09:07:21 -07:00
|
|
|
bool VectorNode::is_invariant_vector(Node* n) {
|
2012-08-21 14:50:02 -07:00
|
|
|
// Only Replicate vector nodes are loop invariant for now.
|
2012-08-20 09:07:21 -07:00
|
|
|
switch (n->Opcode()) {
|
|
|
|
case Op_ReplicateB:
|
|
|
|
case Op_ReplicateS:
|
|
|
|
case Op_ReplicateI:
|
|
|
|
case Op_ReplicateL:
|
|
|
|
case Op_ReplicateF:
|
|
|
|
case Op_ReplicateD:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-08-22 11:55:40 -07:00
|
|
|
// [Start, end) half-open range defining which operands are vectors
|
|
|
|
void VectorNode::vector_operands(Node* n, uint* start, uint* end) {
|
|
|
|
switch (n->Opcode()) {
|
|
|
|
case Op_LoadB: case Op_LoadUB:
|
|
|
|
case Op_LoadS: case Op_LoadUS:
|
|
|
|
case Op_LoadI: case Op_LoadL:
|
|
|
|
case Op_LoadF: case Op_LoadD:
|
|
|
|
case Op_LoadP: case Op_LoadN:
|
|
|
|
*start = 0;
|
|
|
|
*end = 0; // no vector operands
|
|
|
|
break;
|
|
|
|
case Op_StoreB: case Op_StoreC:
|
|
|
|
case Op_StoreI: case Op_StoreL:
|
|
|
|
case Op_StoreF: case Op_StoreD:
|
|
|
|
case Op_StoreP: case Op_StoreN:
|
|
|
|
*start = MemNode::ValueIn;
|
|
|
|
*end = MemNode::ValueIn + 1; // 1 vector operand
|
|
|
|
break;
|
|
|
|
case Op_LShiftI: case Op_LShiftL:
|
|
|
|
case Op_RShiftI: case Op_RShiftL:
|
|
|
|
case Op_URShiftI: case Op_URShiftL:
|
|
|
|
*start = 1;
|
|
|
|
*end = 2; // 1 vector operand
|
|
|
|
break;
|
|
|
|
case Op_AddI: case Op_AddL: case Op_AddF: case Op_AddD:
|
|
|
|
case Op_SubI: case Op_SubL: case Op_SubF: case Op_SubD:
|
|
|
|
case Op_MulI: case Op_MulL: case Op_MulF: case Op_MulD:
|
|
|
|
case Op_DivF: case Op_DivD:
|
|
|
|
case Op_AndI: case Op_AndL:
|
|
|
|
case Op_OrI: case Op_OrL:
|
|
|
|
case Op_XorI: case Op_XorL:
|
|
|
|
*start = 1;
|
|
|
|
*end = 3; // 2 vector operands
|
|
|
|
break;
|
|
|
|
case Op_CMoveI: case Op_CMoveL: case Op_CMoveF: case Op_CMoveD:
|
|
|
|
*start = 2;
|
|
|
|
*end = n->req();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
*start = 1;
|
|
|
|
*end = n->req(); // default is all operands
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
// Return the vector version of a scalar operation node.
|
2012-06-15 01:25:19 -07:00
|
|
|
VectorNode* VectorNode::make(Compile* C, int opc, Node* n1, Node* n2, uint vlen, BasicType bt) {
|
|
|
|
const TypeVect* vt = TypeVect::make(bt, vlen);
|
2012-08-22 11:55:40 -07:00
|
|
|
int vopc = VectorNode::opcode(opc, bt);
|
2012-10-02 12:25:13 -07:00
|
|
|
// This method should not be called for unimplemented vectors.
|
|
|
|
guarantee(vopc > 0, err_msg_res("Vector for '%s' is not implemented", NodeClassNames[opc]));
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
switch (vopc) {
|
2012-09-27 09:38:42 -07:00
|
|
|
case Op_AddVB: return new (C) AddVBNode(n1, n2, vt);
|
|
|
|
case Op_AddVS: return new (C) AddVSNode(n1, n2, vt);
|
|
|
|
case Op_AddVI: return new (C) AddVINode(n1, n2, vt);
|
|
|
|
case Op_AddVL: return new (C) AddVLNode(n1, n2, vt);
|
|
|
|
case Op_AddVF: return new (C) AddVFNode(n1, n2, vt);
|
|
|
|
case Op_AddVD: return new (C) AddVDNode(n1, n2, vt);
|
2012-06-15 01:25:19 -07:00
|
|
|
|
2012-09-27 09:38:42 -07:00
|
|
|
case Op_SubVB: return new (C) SubVBNode(n1, n2, vt);
|
|
|
|
case Op_SubVS: return new (C) SubVSNode(n1, n2, vt);
|
|
|
|
case Op_SubVI: return new (C) SubVINode(n1, n2, vt);
|
|
|
|
case Op_SubVL: return new (C) SubVLNode(n1, n2, vt);
|
|
|
|
case Op_SubVF: return new (C) SubVFNode(n1, n2, vt);
|
|
|
|
case Op_SubVD: return new (C) SubVDNode(n1, n2, vt);
|
2012-06-15 01:25:19 -07:00
|
|
|
|
2012-09-27 09:38:42 -07:00
|
|
|
case Op_MulVS: return new (C) MulVSNode(n1, n2, vt);
|
|
|
|
case Op_MulVI: return new (C) MulVINode(n1, n2, vt);
|
|
|
|
case Op_MulVF: return new (C) MulVFNode(n1, n2, vt);
|
|
|
|
case Op_MulVD: return new (C) MulVDNode(n1, n2, vt);
|
2012-06-15 01:25:19 -07:00
|
|
|
|
2012-09-27 09:38:42 -07:00
|
|
|
case Op_DivVF: return new (C) DivVFNode(n1, n2, vt);
|
|
|
|
case Op_DivVD: return new (C) DivVDNode(n1, n2, vt);
|
2012-06-15 01:25:19 -07:00
|
|
|
|
2012-09-27 09:38:42 -07:00
|
|
|
case Op_LShiftVB: return new (C) LShiftVBNode(n1, n2, vt);
|
|
|
|
case Op_LShiftVS: return new (C) LShiftVSNode(n1, n2, vt);
|
|
|
|
case Op_LShiftVI: return new (C) LShiftVINode(n1, n2, vt);
|
|
|
|
case Op_LShiftVL: return new (C) LShiftVLNode(n1, n2, vt);
|
2012-06-15 01:25:19 -07:00
|
|
|
|
2012-09-27 09:38:42 -07:00
|
|
|
case Op_RShiftVB: return new (C) RShiftVBNode(n1, n2, vt);
|
|
|
|
case Op_RShiftVS: return new (C) RShiftVSNode(n1, n2, vt);
|
|
|
|
case Op_RShiftVI: return new (C) RShiftVINode(n1, n2, vt);
|
|
|
|
case Op_RShiftVL: return new (C) RShiftVLNode(n1, n2, vt);
|
2012-08-20 09:07:21 -07:00
|
|
|
|
2012-09-27 09:38:42 -07:00
|
|
|
case Op_URShiftVB: return new (C) URShiftVBNode(n1, n2, vt);
|
|
|
|
case Op_URShiftVS: return new (C) URShiftVSNode(n1, n2, vt);
|
|
|
|
case Op_URShiftVI: return new (C) URShiftVINode(n1, n2, vt);
|
|
|
|
case Op_URShiftVL: return new (C) URShiftVLNode(n1, n2, vt);
|
2012-06-15 01:25:19 -07:00
|
|
|
|
2012-09-27 09:38:42 -07:00
|
|
|
case Op_AndV: return new (C) AndVNode(n1, n2, vt);
|
|
|
|
case Op_OrV: return new (C) OrVNode (n1, n2, vt);
|
|
|
|
case Op_XorV: return new (C) XorVNode(n1, n2, vt);
|
2012-06-15 01:25:19 -07:00
|
|
|
}
|
2012-10-02 12:25:13 -07:00
|
|
|
fatal(err_msg_res("Missed vector creation for '%s'", NodeClassNames[vopc]));
|
2012-06-15 01:25:19 -07:00
|
|
|
return NULL;
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2012-06-15 01:25:19 -07:00
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2012-06-15 01:25:19 -07:00
|
|
|
// Scalar promotion
|
|
|
|
VectorNode* VectorNode::scalar2vector(Compile* C, Node* s, uint vlen, const Type* opd_t) {
|
|
|
|
BasicType bt = opd_t->array_element_basic_type();
|
|
|
|
const TypeVect* vt = opd_t->singleton() ? TypeVect::make(opd_t, vlen)
|
|
|
|
: TypeVect::make(bt, vlen);
|
|
|
|
switch (bt) {
|
|
|
|
case T_BOOLEAN:
|
|
|
|
case T_BYTE:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) ReplicateBNode(s, vt);
|
2012-06-15 01:25:19 -07:00
|
|
|
case T_CHAR:
|
|
|
|
case T_SHORT:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) ReplicateSNode(s, vt);
|
2012-06-15 01:25:19 -07:00
|
|
|
case T_INT:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) ReplicateINode(s, vt);
|
2012-06-15 01:25:19 -07:00
|
|
|
case T_LONG:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) ReplicateLNode(s, vt);
|
2012-06-15 01:25:19 -07:00
|
|
|
case T_FLOAT:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) ReplicateFNode(s, vt);
|
2012-06-15 01:25:19 -07:00
|
|
|
case T_DOUBLE:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) ReplicateDNode(s, vt);
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
2012-10-02 12:25:13 -07:00
|
|
|
fatal(err_msg_res("Type '%s' is not supported for vectors", type2name(bt)));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
VectorNode* VectorNode::shift_count(Compile* C, Node* shift, Node* cnt, uint vlen, BasicType bt) {
|
|
|
|
assert(VectorNode::is_shift(shift) && !cnt->is_Con(), "only variable shift count");
|
|
|
|
// Match shift count type with shift vector type.
|
|
|
|
const TypeVect* vt = TypeVect::make(bt, vlen);
|
|
|
|
switch (shift->Opcode()) {
|
|
|
|
case Op_LShiftI:
|
|
|
|
case Op_LShiftL:
|
|
|
|
return new (C) LShiftCntVNode(cnt, vt);
|
|
|
|
case Op_RShiftI:
|
|
|
|
case Op_RShiftL:
|
|
|
|
case Op_URShiftI:
|
|
|
|
case Op_URShiftL:
|
|
|
|
return new (C) RShiftCntVNode(cnt, vt);
|
|
|
|
}
|
|
|
|
fatal(err_msg_res("Missed vector creation for '%s'", NodeClassNames[shift->Opcode()]));
|
2007-12-01 00:00:00 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-06-15 01:25:19 -07:00
|
|
|
// Return initial Pack node. Additional operands added with add_opd() calls.
|
|
|
|
PackNode* PackNode::make(Compile* C, Node* s, uint vlen, BasicType bt) {
|
|
|
|
const TypeVect* vt = TypeVect::make(bt, vlen);
|
|
|
|
switch (bt) {
|
|
|
|
case T_BOOLEAN:
|
|
|
|
case T_BYTE:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) PackBNode(s, vt);
|
2012-06-15 01:25:19 -07:00
|
|
|
case T_CHAR:
|
|
|
|
case T_SHORT:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) PackSNode(s, vt);
|
2012-06-15 01:25:19 -07:00
|
|
|
case T_INT:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) PackINode(s, vt);
|
2012-06-15 01:25:19 -07:00
|
|
|
case T_LONG:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) PackLNode(s, vt);
|
2012-06-15 01:25:19 -07:00
|
|
|
case T_FLOAT:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) PackFNode(s, vt);
|
2012-06-15 01:25:19 -07:00
|
|
|
case T_DOUBLE:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) PackDNode(s, vt);
|
2012-06-15 01:25:19 -07:00
|
|
|
}
|
2012-10-02 12:25:13 -07:00
|
|
|
fatal(err_msg_res("Type '%s' is not supported for vectors", type2name(bt)));
|
2012-06-15 01:25:19 -07:00
|
|
|
return NULL;
|
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2012-06-15 01:25:19 -07:00
|
|
|
// Create a binary tree form for Packs. [lo, hi) (half-open) range
|
2012-08-22 11:55:40 -07:00
|
|
|
PackNode* PackNode::binary_tree_pack(Compile* C, int lo, int hi) {
|
2012-06-15 01:25:19 -07:00
|
|
|
int ct = hi - lo;
|
|
|
|
assert(is_power_of_2(ct), "power of 2");
|
|
|
|
if (ct == 2) {
|
|
|
|
PackNode* pk = PackNode::make(C, in(lo), 2, vect_type()->element_basic_type());
|
2012-08-22 11:55:40 -07:00
|
|
|
pk->add_opd(in(lo+1));
|
2012-06-15 01:25:19 -07:00
|
|
|
return pk;
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2012-06-15 01:25:19 -07:00
|
|
|
} else {
|
|
|
|
int mid = lo + ct/2;
|
2012-08-22 11:55:40 -07:00
|
|
|
PackNode* n1 = binary_tree_pack(C, lo, mid);
|
|
|
|
PackNode* n2 = binary_tree_pack(C, mid, hi );
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2012-08-22 11:55:40 -07:00
|
|
|
BasicType bt = n1->vect_type()->element_basic_type();
|
|
|
|
assert(bt == n2->vect_type()->element_basic_type(), "should be the same");
|
2012-06-15 01:25:19 -07:00
|
|
|
switch (bt) {
|
|
|
|
case T_BOOLEAN:
|
|
|
|
case T_BYTE:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) PackSNode(n1, n2, TypeVect::make(T_SHORT, 2));
|
2012-06-15 01:25:19 -07:00
|
|
|
case T_CHAR:
|
|
|
|
case T_SHORT:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) PackINode(n1, n2, TypeVect::make(T_INT, 2));
|
2012-06-15 01:25:19 -07:00
|
|
|
case T_INT:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) PackLNode(n1, n2, TypeVect::make(T_LONG, 2));
|
2012-06-15 01:25:19 -07:00
|
|
|
case T_LONG:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) Pack2LNode(n1, n2, TypeVect::make(T_LONG, 2));
|
2012-06-15 01:25:19 -07:00
|
|
|
case T_FLOAT:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) PackDNode(n1, n2, TypeVect::make(T_DOUBLE, 2));
|
2012-06-15 01:25:19 -07:00
|
|
|
case T_DOUBLE:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) Pack2DNode(n1, n2, TypeVect::make(T_DOUBLE, 2));
|
2012-06-15 01:25:19 -07:00
|
|
|
}
|
2012-10-02 12:25:13 -07:00
|
|
|
fatal(err_msg_res("Type '%s' is not supported for vectors", type2name(bt)));
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
2012-06-15 01:25:19 -07:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return the vector version of a scalar load node.
|
|
|
|
LoadVectorNode* LoadVectorNode::make(Compile* C, int opc, Node* ctl, Node* mem,
|
|
|
|
Node* adr, const TypePtr* atyp, uint vlen, BasicType bt) {
|
|
|
|
const TypeVect* vt = TypeVect::make(bt, vlen);
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) LoadVectorNode(ctl, mem, adr, atyp, vt);
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Return the vector version of a scalar store node.
|
2012-06-15 01:25:19 -07:00
|
|
|
StoreVectorNode* StoreVectorNode::make(Compile* C, int opc, Node* ctl, Node* mem,
|
2011-07-27 17:28:36 -07:00
|
|
|
Node* adr, const TypePtr* atyp, Node* val,
|
2007-12-01 00:00:00 +00:00
|
|
|
uint vlen) {
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) StoreVectorNode(ctl, mem, adr, atyp, val);
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Extract a scalar element of vector.
|
2012-06-15 01:25:19 -07:00
|
|
|
Node* ExtractNode::make(Compile* C, Node* v, uint position, BasicType bt) {
|
|
|
|
assert((int)position < Matcher::max_vector_size(bt), "pos in range");
|
2007-12-01 00:00:00 +00:00
|
|
|
ConINode* pos = ConINode::make(C, (int)position);
|
|
|
|
switch (bt) {
|
|
|
|
case T_BOOLEAN:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) ExtractUBNode(v, pos);
|
2007-12-01 00:00:00 +00:00
|
|
|
case T_BYTE:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) ExtractBNode(v, pos);
|
2007-12-01 00:00:00 +00:00
|
|
|
case T_CHAR:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) ExtractCNode(v, pos);
|
2007-12-01 00:00:00 +00:00
|
|
|
case T_SHORT:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) ExtractSNode(v, pos);
|
2007-12-01 00:00:00 +00:00
|
|
|
case T_INT:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) ExtractINode(v, pos);
|
2007-12-01 00:00:00 +00:00
|
|
|
case T_LONG:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) ExtractLNode(v, pos);
|
2007-12-01 00:00:00 +00:00
|
|
|
case T_FLOAT:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) ExtractFNode(v, pos);
|
2007-12-01 00:00:00 +00:00
|
|
|
case T_DOUBLE:
|
2012-09-27 09:38:42 -07:00
|
|
|
return new (C) ExtractDNode(v, pos);
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
2012-10-02 12:25:13 -07:00
|
|
|
fatal(err_msg_res("Type '%s' is not supported for vectors", type2name(bt)));
|
2007-12-01 00:00:00 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2012-06-15 01:25:19 -07:00
|
|
|
|