hotspot/src/share/vm/opto/vectornode.cpp
changeset 10255 bab46e6f7661
parent 7397 5b173b4ca846
child 13104 657b387034fb
equal deleted inserted replaced
10254:406448a00c51 10255:bab46e6f7661
   424   return NULL;
   424   return NULL;
   425 }
   425 }
   426 
   426 
   427 // Return the vector version of a scalar store node.
   427 // Return the vector version of a scalar store node.
   428 VectorStoreNode* VectorStoreNode::make(Compile* C, int opc, Node* ctl, Node* mem,
   428 VectorStoreNode* VectorStoreNode::make(Compile* C, int opc, Node* ctl, Node* mem,
   429                                        Node* adr, const TypePtr* atyp, VectorNode* val,
   429                                        Node* adr, const TypePtr* atyp, Node* val,
   430                                        uint vlen) {
   430                                        uint vlen) {
   431   int vopc = opcode(opc, vlen);
   431   int vopc = opcode(opc, vlen);
   432 
   432 
   433   switch(vopc) {
   433   switch(vopc) {
   434   case Op_Store16B: return new (C, 4) Store16BNode(ctl, mem, adr, atyp, val);
   434   case Op_Store16B: return new (C, 4) Store16BNode(ctl, mem, adr, atyp, val);