Searched refs:VCI (Results 1 – 5 of 5) sorted by relevance
307 void loadVectorConstant(const SystemZVectorConstantInfo &VCI,1178 const SystemZVectorConstantInfo &VCI, SDNode *Node) { in loadVectorConstant() argument1179 assert((VCI.Opcode == SystemZISD::BYTE_MASK || in loadVectorConstant()1180 VCI.Opcode == SystemZISD::REPLICATE || in loadVectorConstant()1181 VCI.Opcode == SystemZISD::ROTATE_MASK) && in loadVectorConstant()1183 assert(VCI.VecVT.getSizeInBits() == 128 && "Expected a vector type"); in loadVectorConstant()1187 for (unsigned OpVal : VCI.OpVals) in loadVectorConstant()1189 SDValue Op = CurDAG->getNode(VCI.Opcode, DL, VCI.VecVT, Ops); in loadVectorConstant()1191 if (VCI.VecVT == VT.getSimpleVT()) in loadVectorConstant()1681 SystemZVectorConstantInfo VCI(Val); in Select() local[all …]
7147 SystemZVectorConstantInfo VCI(APInt(TotBytes * 8, C->getZExtValue())); in combineSTORE() local7148 if (VCI.isVectorConstantLegal(Subtarget) && in combineSTORE()7149 VCI.Opcode == SystemZISD::REPLICATE) { in combineSTORE()7150 Word = DAG.getConstant(VCI.OpVals[0], SDLoc(SN), MVT::i32); in combineSTORE()7151 WordVT = VCI.VecVT.getScalarType(); in combineSTORE()7171 SystemZVectorConstantInfo VCI( in combineSTORE() local7173 if (VCI.isVectorConstantLegal(Subtarget) && in combineSTORE()7174 VCI.Opcode == SystemZISD::REPLICATE && VCI.OpVals[0] == 1 && in combineSTORE()7175 WordVT == VCI.VecVT.getScalarType()) in combineSTORE()
411 %token VPI VCI893 | VCI { $$.atmfieldtype = A_VCI; }
380 vci return VCI;
2031 if (const auto *VCI = dyn_cast<llvm::ConstantInt>(ArgValue)) { in EmitOverflowCheckedAbs() local2032 if (!VCI->isMinSignedValue()) in EmitOverflowCheckedAbs()