Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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.h955 DEF_TRAVERSE_TYPE(ExtVectorType, { TRY_TO(TraverseType(T->getElementType())); })
1216 DEF_TRAVERSE_TYPELOC(ExtVectorType, {
H A DTypeLoc.h1802 ExtVectorType> {};
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DTypeNodes.td71 def ExtVectorType : TypeNode<VectorType>;
H A DAttr.td1338 def ExtVectorType : Attr {
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCXType.cpp815 ET = cast<ExtVectorType>(TP)->getElementType(); in clang_getElementType()
841 result = cast<ExtVectorType>(TP)->getNumElements(); in clang_getNumElements()
/netbsd-src/external/apache2/llvm/dist/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.cpp9885 assert(!isa<ExtVectorType>(VT) && in tryGCCVectorConvertAndSplat()
10007 if (isa<ExtVectorType>(LHSVecType)) { in CheckVectorOperands()
10081 if (isa<ExtVectorType>(LHSVecType)) { in CheckVectorOperands()
10092 if (isa<ExtVectorType>(RHSVecType)) { in CheckVectorOperands()
10147 RHSVecType && isa<ExtVectorType>(RHSVecType) && in CheckVectorOperands()
10148 LHSVecType && isa<ExtVectorType>(LHSVecType)) { in CheckVectorOperands()
10158 if ((RHSVecType && !isa<ExtVectorType>(RHSVecType)) || in CheckVectorOperands()
10159 (LHSVecType && !isa<ExtVectorType>(LHSVecType))) { in CheckVectorOperands()
12128 if (isa<ExtVectorType>(VTy)) { in GetSignedVectorType()
12339 !(isa<ExtVectorType>(vType->getAs<VectorType>()))) in CheckVectorLogicalOperands()
[all …]
H A DSemaExprCXX.cpp6021 if (isa<ExtVectorType>(CondVT) != isa<ExtVectorType>(LHSVT)) { in CheckVectorConditionalTypes()
6023 << /*isExtVector*/ isa<ExtVectorType>(CondVT); in CheckVectorConditionalTypes()
H A DSemaChecking.cpp8755 if (const auto *VecTy = From->getAs<ExtVectorType>()) in isArithmeticArgumentPromotion()
8757 if (const auto *VecTy = To->getAs<ExtVectorType>()) in isArithmeticArgumentPromotion()
H A DSemaTemplate.cpp6032 bool UnnamedLocalNoLinkageFinder::VisitExtVectorType(const ExtVectorType* T) { in VisitExtVectorType()
/netbsd-src/external/apache2/llvm/dist/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.cpp3039 if (!isa<ExtVectorType>(T)) { in mangleType()
3072 void MicrosoftCXXNameMangler::mangleType(const ExtVectorType *T, in mangleType()
H A DType.cpp1000 QualType VisitExtVectorType(const ExtVectorType *T) { in VisitExtVectorType()
H A DItaniumMangle.cpp3689 void CXXNameMangler::mangleType(const ExtVectorType *T) { in mangleType()
H A DExpr.cpp4093 Index = ExtVectorType::getAccessorIdx(Comp[i], isNumericAccessor); in getEncodedElementAccess()
H A DASTImporter.cpp349 ExpectedType VisitExtVectorType(const ExtVectorType *T);
1217 ExpectedType ASTNodeImporter::VisitExtVectorType(const ExtVectorType *T) { in VisitExtVectorType()
H A DASTContext.cpp4002 ExtVectorType(vecType, NumElts, Canonical); in getExtVectorType()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCodeGenFunction.cpp603 const ExtVectorType *HintEltQTy = HintQTy->getAs<ExtVectorType>(); in EmitOpenCLKernelMetadata()
H A DCGExprScalar.cpp1364 assert(DstType->castAs<ExtVectorType>()->getElementType().getTypePtr() == in EmitScalarConversion()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h128 class ExtVectorType; variable