Home
last modified time | relevance | path

Searched refs:ExtVectorType (Results 1 – 25 of 25) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DCanonicalType.h481 struct CanProxyAdaptor<ExtVectorType> : public CanProxyBase<ExtVectorType> {
H A DTypeProperties.td201 let Class = ExtVectorType in {
H A DType.h3344 class ExtVectorType : public VectorType {
3347 ExtVectorType(QualType vecType, unsigned nElements, QualType canonType)
6782 return isa<ExtVectorType>(CanonicalType);
H A DRecursiveASTVisitor.h953 DEF_TRAVERSE_TYPE(ExtVectorType, { TRY_TO(TraverseType(T->getElementType())); })
1214 DEF_TRAVERSE_TYPELOC(ExtVectorType, {
H A DTypeLoc.h1802 ExtVectorType> {};
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DTypeNodes.td71 def ExtVectorType : TypeNode<VectorType>;
H A DAttr.td1344 def ExtVectorType : Attr {
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp1983 const ExtVectorType *VectorParam = cast<ExtVectorType>(Param); in DeduceTemplateArgumentsByTypeMatch()
1984 if (const ExtVectorType *VectorArg = dyn_cast<ExtVectorType>(Arg)) { in DeduceTemplateArgumentsByTypeMatch()
2067 if (const ExtVectorType *VectorArg = dyn_cast<ExtVectorType>(Arg)) { in DeduceTemplateArgumentsByTypeMatch()
H A DSemaExprMember.cpp305 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>(); in CheckExtVectorComponent()
H A DSemaExpr.cpp9949 assert(!isa<ExtVectorType>(VT) && in tryGCCVectorConvertAndSplat()
10071 if (isa<ExtVectorType>(LHSVecType)) { in CheckVectorOperands()
10145 if (isa<ExtVectorType>(LHSVecType)) { in CheckVectorOperands()
10156 if (isa<ExtVectorType>(RHSVecType)) { in CheckVectorOperands()
10211 RHSVecType && isa<ExtVectorType>(RHSVecType) && in CheckVectorOperands()
10212 LHSVecType && isa<ExtVectorType>(LHSVecType)) { in CheckVectorOperands()
10222 if ((RHSVecType && !isa<ExtVectorType>(RHSVecType)) || in CheckVectorOperands()
10223 (LHSVecType && !isa<ExtVectorType>(LHSVecType))) { in CheckVectorOperands()
12226 if (isa<ExtVectorType>(VTy)) { in GetSignedVectorType()
12460 !(isa<ExtVectorType>(vType->getAs<VectorType>()))) in CheckVectorLogicalOperands()
[all …]
H A DSemaExprCXX.cpp6070 if (isa<ExtVectorType>(CondVT) != isa<ExtVectorType>(LHSVT)) { in CheckVectorConditionalTypes()
6072 << /*isExtVector*/ isa<ExtVectorType>(CondVT); in CheckVectorConditionalTypes()
H A DSemaChecking.cpp9027 if (const auto *VecTy = From->getAs<ExtVectorType>()) in isArithmeticArgumentPromotion()
9029 if (const auto *VecTy = To->getAs<ExtVectorType>()) in isArithmeticArgumentPromotion()
H A DSemaTemplate.cpp6032 bool UnnamedLocalNoLinkageFinder::VisitExtVectorType(const ExtVectorType* T) { in VisitExtVectorType()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DTypePrinter.cpp753 void TypePrinter::printExtVectorBefore(const ExtVectorType *T, in printExtVectorBefore()
758 void TypePrinter::printExtVectorAfter(const ExtVectorType *T, raw_ostream &OS) { in printExtVectorAfter()
H A DODRHash.cpp1113 void VisitExtVectorType(const ExtVectorType * T) { in VisitExtVectorType()
H A DMicrosoftMangle.cpp3042 if (!isa<ExtVectorType>(T)) { in mangleType()
3075 void MicrosoftCXXNameMangler::mangleType(const ExtVectorType *T, in mangleType()
H A DType.cpp1000 QualType VisitExtVectorType(const ExtVectorType *T) { in VisitExtVectorType()
H A DExpr.cpp4164 Index = ExtVectorType::getAccessorIdx(Comp[i], isNumericAccessor); in getEncodedElementAccess()
H A DItaniumMangle.cpp3699 void CXXNameMangler::mangleType(const ExtVectorType *T) { in mangleType()
H A DASTImporter.cpp364 ExpectedType VisitExtVectorType(const ExtVectorType *T);
1235 ExpectedType ASTNodeImporter::VisitExtVectorType(const ExtVectorType *T) { in VisitExtVectorType()
H A DASTContext.cpp4017 ExtVectorType(vecType, NumElts, Canonical); in getExtVectorType()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.cpp603 const ExtVectorType *HintEltQTy = HintQTy->getAs<ExtVectorType>(); in EmitOpenCLKernelMetadata()
H A DCGExprScalar.cpp1366 assert(DstType->castAs<ExtVectorType>()->getElementType().getTypePtr() == in EmitScalarConversion()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp2913 const clang::ExtVectorType *ext_vector_type = in IsVectorType()
2914 qual_type->getAs<clang::ExtVectorType>(); in IsVectorType()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h131 class ExtVectorType; variable