Searched refs:VectorSize (Results 1 – 6 of 6) sorted by relevance
1609 int64_t VectorSize = cast<IntInit>(Expr->getArg(0))->getValue(); in emitDagShuffle() local1610 VectorSize /= ElementSize; in emitDagShuffle()1613 for (unsigned VI = 0; VI < Elts2.size(); VI += VectorSize) { in emitDagShuffle()1614 for (int LI = VectorSize - 1; LI >= 0; --LI) { in emitDagShuffle()
3368 llvm::APInt VectorSize(64, 0); in handleModeAttr() local3377 !Str.substr(1, VectorStringLength).getAsInteger(10, VectorSize) && in handleModeAttr()3378 VectorSize.isPowerOf2()) { in handleModeAttr()3383 VectorSize = 0; in handleModeAttr()3387 if (!VectorSize) in handleModeAttr()3447 if (VectorSize.getBoolValue()) { in handleModeAttr()3448 NewTy = S.Context.getVectorType(NewTy, VectorSize.getZExtValue(), in handleModeAttr()
11254 IntegerLiteral *VectorSize in RebuildExtVectorType() local11257 return SemaRef.BuildExtVectorType(ElementType, VectorSize, AttributeLoc); in RebuildExtVectorType()
2827 int VectorSize = 0; in LookupNeonLLVMIntrinsic() local2829 VectorSize = 64; in LookupNeonLLVMIntrinsic()2831 VectorSize = 128; in LookupNeonLLVMIntrinsic()2839 Ty, VectorSize ? VectorSize / Ty->getPrimitiveSizeInBits() : 1); in LookupNeonLLVMIntrinsic()2846 int Elts = VectorSize ? VectorSize / ArgType->getPrimitiveSizeInBits() : 1; in LookupNeonLLVMIntrinsic()
1466 def VectorSize : TypeAttr {
620 func (t Type) VectorSize() int { return int(C.LLVMGetVectorSize(t.C)) } func