Lines Matching defs:VY
13802 const auto *VX = cast<VectorType>(X), *VY = cast<VectorType>(Y);
13803 assert(VX->getNumElements() == VY->getNumElements());
13804 assert(VX->getVectorKind() == VY->getVectorKind());
13805 return Ctx.getVectorType(getCommonElementType(Ctx, VX, VY),
13809 const auto *VX = cast<ExtVectorType>(X), *VY = cast<ExtVectorType>(Y);
13810 assert(VX->getNumElements() == VY->getNumElements());
13811 return Ctx.getExtVectorType(getCommonElementType(Ctx, VX, VY),
13816 *VY = cast<DependentSizedExtVectorType>(Y);
13817 return Ctx.getDependentSizedExtVectorType(getCommonElementType(Ctx, VX, VY),
13818 getCommonSizeExpr(Ctx, VX, VY),
13819 getCommonAttrLoc(VX, VY));
13823 *VY = cast<DependentVectorType>(Y);
13824 assert(VX->getVectorKind() == VY->getVectorKind());
13826 getCommonElementType(Ctx, VX, VY), getCommonSizeExpr(Ctx, VX, VY),
13827 getCommonAttrLoc(VX, VY), VX->getVectorKind());
14148 llvm::APSInt VY = *CEY->getIntegerConstantExpr(Ctx);
14149 if (VX != VY)