/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
H A D | CanonicalType.h | 481 struct CanProxyAdaptor<ExtVectorType> : public CanProxyBase<ExtVectorType> {
|
H A D | TypeProperties.td | 201 let Class = ExtVectorType in {
|
H A D | Type.h | 3344 class ExtVectorType : public VectorType { 3347 ExtVectorType(QualType vecType, unsigned nElements, QualType canonType) 6782 return isa<ExtVectorType>(CanonicalType);
|
H A D | RecursiveASTVisitor.h | 955 DEF_TRAVERSE_TYPE(ExtVectorType, { TRY_TO(TraverseType(T->getElementType())); }) 1216 DEF_TRAVERSE_TYPELOC(ExtVectorType, {
|
H A D | TypeLoc.h | 1802 ExtVectorType> {};
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
H A D | TypeNodes.td | 71 def ExtVectorType : TypeNode<VectorType>;
|
H A D | Attr.td | 1338 def ExtVectorType : Attr {
|
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/ |
H A D | CXType.cpp | 815 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 D | SemaTemplateDeduction.cpp | 1983 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 D | SemaExprMember.cpp | 305 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>(); in CheckExtVectorComponent()
|
H A D | SemaExpr.cpp | 9885 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 D | SemaExprCXX.cpp | 6021 if (isa<ExtVectorType>(CondVT) != isa<ExtVectorType>(LHSVT)) { in CheckVectorConditionalTypes() 6023 << /*isExtVector*/ isa<ExtVectorType>(CondVT); in CheckVectorConditionalTypes()
|
H A D | SemaChecking.cpp | 8755 if (const auto *VecTy = From->getAs<ExtVectorType>()) in isArithmeticArgumentPromotion() 8757 if (const auto *VecTy = To->getAs<ExtVectorType>()) in isArithmeticArgumentPromotion()
|
H A D | SemaTemplate.cpp | 6032 bool UnnamedLocalNoLinkageFinder::VisitExtVectorType(const ExtVectorType* T) { in VisitExtVectorType()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
H A D | TypePrinter.cpp | 753 void TypePrinter::printExtVectorBefore(const ExtVectorType *T, in printExtVectorBefore() 758 void TypePrinter::printExtVectorAfter(const ExtVectorType *T, raw_ostream &OS) { in printExtVectorAfter()
|
H A D | ODRHash.cpp | 1113 void VisitExtVectorType(const ExtVectorType * T) { in VisitExtVectorType()
|
H A D | MicrosoftMangle.cpp | 3039 if (!isa<ExtVectorType>(T)) { in mangleType() 3072 void MicrosoftCXXNameMangler::mangleType(const ExtVectorType *T, in mangleType()
|
H A D | Type.cpp | 1000 QualType VisitExtVectorType(const ExtVectorType *T) { in VisitExtVectorType()
|
H A D | ItaniumMangle.cpp | 3689 void CXXNameMangler::mangleType(const ExtVectorType *T) { in mangleType()
|
H A D | Expr.cpp | 4093 Index = ExtVectorType::getAccessorIdx(Comp[i], isNumericAccessor); in getEncodedElementAccess()
|
H A D | ASTImporter.cpp | 349 ExpectedType VisitExtVectorType(const ExtVectorType *T); 1217 ExpectedType ASTNodeImporter::VisitExtVectorType(const ExtVectorType *T) { in VisitExtVectorType()
|
H A D | ASTContext.cpp | 4002 ExtVectorType(vecType, NumElts, Canonical); in getExtVectorType()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
H A D | CodeGenFunction.cpp | 603 const ExtVectorType *HintEltQTy = HintQTy->getAs<ExtVectorType>(); in EmitOpenCLKernelMetadata()
|
H A D | CGExprScalar.cpp | 1364 assert(DstType->castAs<ExtVectorType>()->getElementType().getTypePtr() == in EmitScalarConversion()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
H A D | Sema.h | 128 class ExtVectorType; variable
|