/* * Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved. * 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. * * 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. */ #include "precompiled.hpp" #include "memory/allocation.inline.hpp" #include "opto/connode.hpp" #include "opto/vectornode.hpp" //------------------------------VectorNode-------------------------------------- // Return the vector operator for the specified scalar operation // and vector length. Opcodes VectorNode::opcode(Opcodes sopc, BasicType bt) { switch (sopc) { case Opcodes::Op_AddI: switch (bt) { case T_BOOLEAN: case T_BYTE: return Opcodes::Op_AddVB; case T_CHAR: case T_SHORT: return Opcodes::Op_AddVS; case T_INT: return Opcodes::Op_AddVI; } ShouldNotReachHere(); case Opcodes::Op_AddL: assert(bt == T_LONG, "must be"); return Opcodes::Op_AddVL; case Opcodes::Op_AddF: assert(bt == T_FLOAT, "must be"); return Opcodes::Op_AddVF; case Opcodes::Op_AddD: assert(bt == T_DOUBLE, "must be"); return Opcodes::Op_AddVD; case Opcodes::Op_SubI: switch (bt) { case T_BOOLEAN: case T_BYTE: return Opcodes::Op_SubVB; case T_CHAR: case T_SHORT: return Opcodes::Op_SubVS; case T_INT: return Opcodes::Op_SubVI; } ShouldNotReachHere(); case Opcodes::Op_SubL: assert(bt == T_LONG, "must be"); return Opcodes::Op_SubVL; case Opcodes::Op_SubF: assert(bt == T_FLOAT, "must be"); return Opcodes::Op_SubVF; case Opcodes::Op_SubD: assert(bt == T_DOUBLE, "must be"); return Opcodes::Op_SubVD; case Opcodes::Op_MulI: switch (bt) { case T_BOOLEAN: case T_BYTE: return Opcodes::Op_Node; // Unimplemented case T_CHAR: case T_SHORT: return Opcodes::Op_MulVS; case T_INT: return Opcodes::Op_MulVI; } ShouldNotReachHere(); case Opcodes::Op_MulL: assert(bt == T_LONG, "must be"); return Opcodes::Op_MulVL; case Opcodes::Op_MulF: assert(bt == T_FLOAT, "must be"); return Opcodes::Op_MulVF; case Opcodes::Op_MulD: assert(bt == T_DOUBLE, "must be"); return Opcodes::Op_MulVD; case Opcodes::Op_CMoveD: assert(bt == T_DOUBLE, "must be"); return Opcodes::Op_CMoveVD; case Opcodes::Op_DivF: assert(bt == T_FLOAT, "must be"); return Opcodes::Op_DivVF; case Opcodes::Op_DivD: assert(bt == T_DOUBLE, "must be"); return Opcodes::Op_DivVD; case Opcodes::Op_AbsF: assert(bt == T_FLOAT, "must be"); return Opcodes::Op_AbsVF; case Opcodes::Op_AbsD: assert(bt == T_DOUBLE, "must be"); return Opcodes::Op_AbsVD; case Opcodes::Op_NegF: assert(bt == T_FLOAT, "must be"); return Opcodes::Op_NegVF; case Opcodes::Op_NegD: assert(bt == T_DOUBLE, "must be"); return Opcodes::Op_NegVD; case Opcodes::Op_SqrtD: assert(bt == T_DOUBLE, "must be"); return Opcodes::Op_SqrtVD; case Opcodes::Op_LShiftI: switch (bt) { case T_BOOLEAN: case T_BYTE: return Opcodes::Op_LShiftVB; case T_CHAR: case T_SHORT: return Opcodes::Op_LShiftVS; case T_INT: return Opcodes::Op_LShiftVI; } ShouldNotReachHere(); case Opcodes::Op_LShiftL: assert(bt == T_LONG, "must be"); return Opcodes::Op_LShiftVL; case Opcodes::Op_RShiftI: switch (bt) { case T_BOOLEAN:return Opcodes::Op_URShiftVB; // boolean is unsigned value case T_CHAR: return Opcodes::Op_URShiftVS; // char is unsigned value case T_BYTE: return Opcodes::Op_RShiftVB; case T_SHORT: return Opcodes::Op_RShiftVS; case T_INT: return Opcodes::Op_RShiftVI; } ShouldNotReachHere(); case Opcodes::Op_RShiftL: assert(bt == T_LONG, "must be"); return Opcodes::Op_RShiftVL; case Opcodes::Op_URShiftI: switch (bt) { case T_BOOLEAN:return Opcodes::Op_URShiftVB; case T_CHAR: return Opcodes::Op_URShiftVS; case T_BYTE: case T_SHORT: return Opcodes::Op_Node; // Vector logical right shift for signed short // values produces incorrect Java result for // negative data because java code should convert // a short value into int value with sign // extension before a shift. case T_INT: return Opcodes::Op_URShiftVI; } ShouldNotReachHere(); case Opcodes::Op_URShiftL: assert(bt == T_LONG, "must be"); return Opcodes::Op_URShiftVL; case Opcodes::Op_AndI: case Opcodes::Op_AndL: return Opcodes::Op_AndV; case Opcodes::Op_OrI: case Opcodes::Op_OrL: return Opcodes::Op_OrV; case Opcodes::Op_XorI: case Opcodes::Op_XorL: return Opcodes::Op_XorV; case Opcodes::Op_LoadB: case Opcodes::Op_LoadUB: case Opcodes::Op_LoadUS: case Opcodes::Op_LoadS: case Opcodes::Op_LoadI: case Opcodes::Op_LoadL: case Opcodes::Op_LoadF: case Opcodes::Op_LoadD: return Opcodes::Op_LoadVector; case Opcodes::Op_StoreB: case Opcodes::Op_StoreC: case Opcodes::Op_StoreI: case Opcodes::Op_StoreL: case Opcodes::Op_StoreF: case Opcodes::Op_StoreD: return Opcodes::Op_StoreVector; } return Opcodes::Op_Node; // Unimplemented } // Also used to check if the code generator // supports the vector operation. bool VectorNode::implemented(Opcodes opc, uint vlen, BasicType bt) { if (is_java_primitive(bt) && (vlen > 1) && is_power_of_2(vlen) && Matcher::vector_size_supported(bt, vlen)) { Opcodes vopc = VectorNode::opcode(opc, bt); return vopc > Opcodes::Op_Node && Matcher::match_rule_supported_vector(vopc, vlen); } return false; } bool VectorNode::is_shift(Node* n) { switch (n->Opcode()) { case Opcodes::Op_LShiftI: case Opcodes::Op_LShiftL: case Opcodes::Op_RShiftI: case Opcodes::Op_RShiftL: case Opcodes::Op_URShiftI: case Opcodes::Op_URShiftL: return true; } return false; } // Check if input is loop invariant vector. bool VectorNode::is_invariant_vector(Node* n) { // Only Replicate vector nodes are loop invariant for now. switch (n->Opcode()) { case Opcodes::Op_ReplicateB: case Opcodes::Op_ReplicateS: case Opcodes::Op_ReplicateI: case Opcodes::Op_ReplicateL: case Opcodes::Op_ReplicateF: case Opcodes::Op_ReplicateD: return true; } return false; } // [Start, end) half-open range defining which operands are vectors void VectorNode::vector_operands(Node* n, uint* start, uint* end) { switch (n->Opcode()) { case Opcodes::Op_LoadB: case Opcodes::Op_LoadUB: case Opcodes::Op_LoadS: case Opcodes::Op_LoadUS: case Opcodes::Op_LoadI: case Opcodes::Op_LoadL: case Opcodes::Op_LoadF: case Opcodes::Op_LoadD: case Opcodes::Op_LoadP: case Opcodes::Op_LoadN: *start = 0; *end = 0; // no vector operands break; case Opcodes::Op_StoreB: case Opcodes::Op_StoreC: case Opcodes::Op_StoreI: case Opcodes::Op_StoreL: case Opcodes::Op_StoreF: case Opcodes::Op_StoreD: case Opcodes::Op_StoreP: case Opcodes::Op_StoreN: *start = MemNode::ValueIn; *end = MemNode::ValueIn + 1; // 1 vector operand break; case Opcodes::Op_LShiftI: case Opcodes::Op_LShiftL: case Opcodes::Op_RShiftI: case Opcodes::Op_RShiftL: case Opcodes::Op_URShiftI: case Opcodes::Op_URShiftL: *start = 1; *end = 2; // 1 vector operand break; case Opcodes::Op_AddI: case Opcodes::Op_AddL: case Opcodes::Op_AddF: case Opcodes::Op_AddD: case Opcodes::Op_SubI: case Opcodes::Op_SubL: case Opcodes::Op_SubF: case Opcodes::Op_SubD: case Opcodes::Op_MulI: case Opcodes::Op_MulL: case Opcodes::Op_MulF: case Opcodes::Op_MulD: case Opcodes::Op_DivF: case Opcodes::Op_DivD: case Opcodes::Op_AndI: case Opcodes::Op_AndL: case Opcodes::Op_OrI: case Opcodes::Op_OrL: case Opcodes::Op_XorI: case Opcodes::Op_XorL: *start = 1; *end = 3; // 2 vector operands break; case Opcodes::Op_CMoveI: case Opcodes::Op_CMoveL: case Opcodes::Op_CMoveF: case Opcodes::Op_CMoveD: *start = 2; *end = n->req(); break; default: *start = 1; *end = n->req(); // default is all operands } } // Return the vector version of a scalar operation node. VectorNode* VectorNode::make(Opcodes opc, Node* n1, Node* n2, uint vlen, BasicType bt) { const TypeVect* vt = TypeVect::make(bt, vlen); Opcodes vopc = VectorNode::opcode(opc, bt); // This method should not be called for unimplemented vectors. guarantee(vopc > Opcodes::Op_Node, "Vector for '%s' is not implemented", NodeClassNames[static_cast(opc)]); switch (vopc) { case Opcodes::Op_AddVB: return new AddVBNode(n1, n2, vt); case Opcodes::Op_AddVS: return new AddVSNode(n1, n2, vt); case Opcodes::Op_AddVI: return new AddVINode(n1, n2, vt); case Opcodes::Op_AddVL: return new AddVLNode(n1, n2, vt); case Opcodes::Op_AddVF: return new AddVFNode(n1, n2, vt); case Opcodes::Op_AddVD: return new AddVDNode(n1, n2, vt); case Opcodes::Op_SubVB: return new SubVBNode(n1, n2, vt); case Opcodes::Op_SubVS: return new SubVSNode(n1, n2, vt); case Opcodes::Op_SubVI: return new SubVINode(n1, n2, vt); case Opcodes::Op_SubVL: return new SubVLNode(n1, n2, vt); case Opcodes::Op_SubVF: return new SubVFNode(n1, n2, vt); case Opcodes::Op_SubVD: return new SubVDNode(n1, n2, vt); case Opcodes::Op_MulVS: return new MulVSNode(n1, n2, vt); case Opcodes::Op_MulVI: return new MulVINode(n1, n2, vt); case Opcodes::Op_MulVL: return new MulVLNode(n1, n2, vt); case Opcodes::Op_MulVF: return new MulVFNode(n1, n2, vt); case Opcodes::Op_MulVD: return new MulVDNode(n1, n2, vt); case Opcodes::Op_DivVF: return new DivVFNode(n1, n2, vt); case Opcodes::Op_DivVD: return new DivVDNode(n1, n2, vt); case Opcodes::Op_AbsVF: return new AbsVFNode(n1, vt); case Opcodes::Op_AbsVD: return new AbsVDNode(n1, vt); case Opcodes::Op_NegVF: return new NegVFNode(n1, vt); case Opcodes::Op_NegVD: return new NegVDNode(n1, vt); // Currently only supports double precision sqrt case Opcodes::Op_SqrtVD: return new SqrtVDNode(n1, vt); case Opcodes::Op_LShiftVB: return new LShiftVBNode(n1, n2, vt); case Opcodes::Op_LShiftVS: return new LShiftVSNode(n1, n2, vt); case Opcodes::Op_LShiftVI: return new LShiftVINode(n1, n2, vt); case Opcodes::Op_LShiftVL: return new LShiftVLNode(n1, n2, vt); case Opcodes::Op_RShiftVB: return new RShiftVBNode(n1, n2, vt); case Opcodes::Op_RShiftVS: return new RShiftVSNode(n1, n2, vt); case Opcodes::Op_RShiftVI: return new RShiftVINode(n1, n2, vt); case Opcodes::Op_RShiftVL: return new RShiftVLNode(n1, n2, vt); case Opcodes::Op_URShiftVB: return new URShiftVBNode(n1, n2, vt); case Opcodes::Op_URShiftVS: return new URShiftVSNode(n1, n2, vt); case Opcodes::Op_URShiftVI: return new URShiftVINode(n1, n2, vt); case Opcodes::Op_URShiftVL: return new URShiftVLNode(n1, n2, vt); case Opcodes::Op_AndV: return new AndVNode(n1, n2, vt); case Opcodes::Op_OrV: return new OrVNode (n1, n2, vt); case Opcodes::Op_XorV: return new XorVNode(n1, n2, vt); } fatal("Missed vector creation for '%s'", NodeClassNames[static_cast(vopc)]); return NULL; } // Scalar promotion VectorNode* VectorNode::scalar2vector(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: return new ReplicateBNode(s, vt); case T_CHAR: case T_SHORT: return new ReplicateSNode(s, vt); case T_INT: return new ReplicateINode(s, vt); case T_LONG: return new ReplicateLNode(s, vt); case T_FLOAT: return new ReplicateFNode(s, vt); case T_DOUBLE: return new ReplicateDNode(s, vt); } fatal("Type '%s' is not supported for vectors", type2name(bt)); return NULL; } VectorNode* VectorNode::shift_count(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 Opcodes::Op_LShiftI: case Opcodes::Op_LShiftL: return new LShiftCntVNode(cnt, vt); case Opcodes::Op_RShiftI: case Opcodes::Op_RShiftL: case Opcodes::Op_URShiftI: case Opcodes::Op_URShiftL: return new RShiftCntVNode(cnt, vt); } fatal("Missed vector creation for '%s'", NodeClassNames[static_cast(shift->Opcode())]); return NULL; } // Return initial Pack node. Additional operands added with add_opd() calls. PackNode* PackNode::make(Node* s, uint vlen, BasicType bt) { const TypeVect* vt = TypeVect::make(bt, vlen); switch (bt) { case T_BOOLEAN: case T_BYTE: return new PackBNode(s, vt); case T_CHAR: case T_SHORT: return new PackSNode(s, vt); case T_INT: return new PackINode(s, vt); case T_LONG: return new PackLNode(s, vt); case T_FLOAT: return new PackFNode(s, vt); case T_DOUBLE: return new PackDNode(s, vt); } fatal("Type '%s' is not supported for vectors", type2name(bt)); return NULL; } // Create a binary tree form for Packs. [lo, hi) (half-open) range PackNode* PackNode::binary_tree_pack(int lo, int hi) { int ct = hi - lo; assert(is_power_of_2(ct), "power of 2"); if (ct == 2) { PackNode* pk = PackNode::make(in(lo), 2, vect_type()->element_basic_type()); pk->add_opd(in(lo+1)); return pk; } else { int mid = lo + ct/2; PackNode* n1 = binary_tree_pack(lo, mid); PackNode* n2 = binary_tree_pack(mid, hi ); BasicType bt = n1->vect_type()->element_basic_type(); assert(bt == n2->vect_type()->element_basic_type(), "should be the same"); switch (bt) { case T_BOOLEAN: case T_BYTE: return new PackSNode(n1, n2, TypeVect::make(T_SHORT, 2)); case T_CHAR: case T_SHORT: return new PackINode(n1, n2, TypeVect::make(T_INT, 2)); case T_INT: return new PackLNode(n1, n2, TypeVect::make(T_LONG, 2)); case T_LONG: return new Pack2LNode(n1, n2, TypeVect::make(T_LONG, 2)); case T_FLOAT: return new PackDNode(n1, n2, TypeVect::make(T_DOUBLE, 2)); case T_DOUBLE: return new Pack2DNode(n1, n2, TypeVect::make(T_DOUBLE, 2)); } fatal("Type '%s' is not supported for vectors", type2name(bt)); } return NULL; } // Return the vector version of a scalar load node. LoadVectorNode* LoadVectorNode::make(Opcodes opc, Node* ctl, Node* mem, Node* adr, const TypePtr* atyp, uint vlen, BasicType bt, ControlDependency control_dependency) { const TypeVect* vt = TypeVect::make(bt, vlen); return new LoadVectorNode(ctl, mem, adr, atyp, vt, control_dependency); } // Return the vector version of a scalar store node. StoreVectorNode* StoreVectorNode::make(Opcodes opc, Node* ctl, Node* mem, Node* adr, const TypePtr* atyp, Node* val, uint vlen) { return new StoreVectorNode(ctl, mem, adr, atyp, val); } // Extract a scalar element of vector. Node* ExtractNode::make(Node* v, uint position, BasicType bt) { assert((int)position < Matcher::max_vector_size(bt), "pos in range"); ConINode* pos = ConINode::make((int)position); switch (bt) { case T_BOOLEAN: return new ExtractUBNode(v, pos); case T_BYTE: return new ExtractBNode(v, pos); case T_CHAR: return new ExtractCNode(v, pos); case T_SHORT: return new ExtractSNode(v, pos); case T_INT: return new ExtractINode(v, pos); case T_LONG: return new ExtractLNode(v, pos); case T_FLOAT: return new ExtractFNode(v, pos); case T_DOUBLE: return new ExtractDNode(v, pos); } fatal("Type '%s' is not supported for vectors", type2name(bt)); return NULL; } Opcodes ReductionNode::opcode(Opcodes opc, BasicType bt) { Opcodes vopc = opc; switch (opc) { case Opcodes::Op_AddI: assert(bt == T_INT, "must be"); vopc = Opcodes::Op_AddReductionVI; break; case Opcodes::Op_AddL: assert(bt == T_LONG, "must be"); vopc = Opcodes::Op_AddReductionVL; break; case Opcodes::Op_AddF: assert(bt == T_FLOAT, "must be"); vopc = Opcodes::Op_AddReductionVF; break; case Opcodes::Op_AddD: assert(bt == T_DOUBLE, "must be"); vopc = Opcodes::Op_AddReductionVD; break; case Opcodes::Op_MulI: assert(bt == T_INT, "must be"); vopc = Opcodes::Op_MulReductionVI; break; case Opcodes::Op_MulL: assert(bt == T_LONG, "must be"); vopc = Opcodes::Op_MulReductionVL; break; case Opcodes::Op_MulF: assert(bt == T_FLOAT, "must be"); vopc = Opcodes::Op_MulReductionVF; break; case Opcodes::Op_MulD: assert(bt == T_DOUBLE, "must be"); vopc = Opcodes::Op_MulReductionVD; break; // TODO: add MulL for targets that support it default: break; } return vopc; } // Return the appropriate reduction node. ReductionNode* ReductionNode::make(Opcodes opc, Node *ctrl, Node* n1, Node* n2, BasicType bt) { Opcodes vopc = opcode(opc, bt); // This method should not be called for unimplemented vectors. guarantee(vopc != opc, "Vector for '%s' is not implemented", NodeClassNames[static_cast(opc)]); switch (vopc) { case Opcodes::Op_AddReductionVI: return new AddReductionVINode(ctrl, n1, n2); case Opcodes::Op_AddReductionVL: return new AddReductionVLNode(ctrl, n1, n2); case Opcodes::Op_AddReductionVF: return new AddReductionVFNode(ctrl, n1, n2); case Opcodes::Op_AddReductionVD: return new AddReductionVDNode(ctrl, n1, n2); case Opcodes::Op_MulReductionVI: return new MulReductionVINode(ctrl, n1, n2); case Opcodes::Op_MulReductionVL: return new MulReductionVLNode(ctrl, n1, n2); case Opcodes::Op_MulReductionVF: return new MulReductionVFNode(ctrl, n1, n2); case Opcodes::Op_MulReductionVD: return new MulReductionVDNode(ctrl, n1, n2); } fatal("Missed vector creation for '%s'", NodeClassNames[static_cast(vopc)]); return NULL; } bool ReductionNode::implemented(Opcodes opc, uint vlen, BasicType bt) { if (is_java_primitive(bt) && (vlen > 1) && is_power_of_2(vlen) && Matcher::vector_size_supported(bt, vlen)) { Opcodes vopc = ReductionNode::opcode(opc, bt); return vopc != opc && Matcher::match_rule_supported(vopc); } return false; }