Searched refs:VecKind (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaType.cpp | 1418 VectorKind VecKind = VectorKind::AltiVecVector; in ConvertDeclSpecToType() local 1420 VecKind = VectorKind::AltiVecPixel; in ConvertDeclSpecToType() 1422 VecKind = VectorKind::AltiVecBool; in ConvertDeclSpecToType() 1423 Result = Context.getVectorType(Result, 128/typeSize, VecKind); in ConvertDeclSpecToType() 8081 static bool isPermittedNeonBaseType(QualType &Ty, VectorKind VecKind, Sema &S) { in isPermittedNeonBaseType() argument 8093 if (VecKind == VectorKind::NeonPoly) { in isPermittedNeonBaseType() 8153 Sema &S, VectorKind VecKind) { in HandleNeonVectorTypeAttr() argument 8164 VecKind == VectorKind::Neon && in HandleNeonVectorTypeAttr() 8172 VecKind == VectorKind::NeonPoly && in HandleNeonVectorTypeAttr() 8193 if (!isPermittedNeonBaseType(CurType, VecKind, S) && in HandleNeonVectorTypeAttr() [all …]
|
H A D | TreeTransform.h | 952 VectorKind VecKind); 16107 VectorKind VecKind) { in RebuildVectorType() argument 16109 return SemaRef.Context.getVectorType(ElementType, NumElements, VecKind); in RebuildVectorType() 16115 VectorKind VecKind) { in RebuildDependentVectorType() argument
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | Type.cpp | 265 SourceLocation Loc, VectorKind VecKind) in DependentVectorType() argument 272 VectorTypeBits.VecKind = llvm::to_underlying(VecKind); in DependentVectorType() 278 VectorKind VecKind) { in Profile() argument 280 ID.AddInteger(llvm::to_underlying(VecKind)); in Profile() 376 VectorTypeBits.VecKind = llvm::to_underlying(vecKind); in VectorType()
|
H A D | ASTContext.cpp | 4431 VectorKind VecKind) const { in getVectorType() 4440 VectorType::Profile(ID, vecType, NumElts, Type::Vector, VecKind); in getVectorType() 4450 Canonical = getVectorType(getCanonicalType(vecType), NumElts, VecKind); in getVectorType() 4457 VectorType(vecType, NumElts, Canonical, VecKind); in getVectorType() 4465 VectorKind VecKind) const { in getDependentVectorType() 4468 VecKind); in getDependentVectorType() 4476 VecType, QualType(Canon, 0), SizeExpr, AttrLoc, VecKind); in getDependentVectorType() 4481 DependentVectorType(VecType, QualType(), SizeExpr, AttrLoc, VecKind); in getDependentVectorType() 4491 SourceLocation(), VecKind); in getDependentVectorType() 4493 DependentVectorType(VecType, CanonTy, SizeExpr, AttrLoc, VecKind); in getDependentVectorType()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | Type.h | 2069 unsigned VecKind : 4; 4012 return VectorKind(VectorTypeBits.VecKind); 4022 VectorKind VecKind) { 4026 ID.AddInteger(llvm::to_underlying(VecKind)); 4058 return VectorKind(VectorTypeBits.VecKind); 4074 VectorKind VecKind);
|
H A D | ASTContext.h | 1563 VectorKind VecKind) const; 1568 VectorKind VecKind) const;
|