Home
last modified time | relevance | path

Searched refs:MatrixType (Results 1 – 18 of 18) sorted by relevance

/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DTypeNodes.td72 def MatrixType : TypeNode<Type, 1>;
73 def ConstantMatrixType : TypeNode<MatrixType>;
74 def DependentSizedMatrixType : TypeNode<MatrixType>, AlwaysDependent;
H A DAttr.td2934 def MatrixType : TypeAttr {
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/
H A DPDBTypes.h279 MatrixType, enumerator
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/
H A DPDBExtras.cpp275 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, MatrixType, OS) in operator <<()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DType.h3553 class MatrixType : public Type, public llvm::FoldingSetNode {
3560 MatrixType(QualType ElementTy, QualType CanonElementTy);
3562 MatrixType(TypeClass TypeClass, QualType ElementTy, QualType CanonElementTy,
3589 class ConstantMatrixType final : public MatrixType {
3602 ConstantMatrixType(TypeClass typeClass, QualType MatrixType, unsigned NRows,
3648 class DependentSizedMatrixType final : public MatrixType {
7011 return isa<MatrixType>(CanonicalType);
H A DTypeProperties.td227 let Class = MatrixType in {
H A DTypeLoc.h1868 MatrixType, MatrixTypeLocInfo> {
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DType.cpp285 MatrixType::MatrixType(TypeClass tc, QualType matrixType, QualType canonType, in MatrixType() function in MatrixType
311 : MatrixType(tc, matrixType, canonType), NumRows(nRows), in ConstantMatrixType()
317 : MatrixType(DependentSizedMatrix, ElementType, CanonicalType, RowExpr, in DependentSizedMatrixType()
2135 if (const auto *VT = dyn_cast<MatrixType>(CanonicalType)) in hasUnsignedIntegerRepresentation()
H A DASTContext.cpp4195 assert(MatrixType::isValidElementType(ElementTy) && in getConstantMatrixType()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaCast.cpp3040 if (DestType->getAs<MatrixType>() || SrcType->getAs<MatrixType>()) { in CheckCStyleCast()
H A DSemaTemplateDeduction.cpp2062 const auto *MA = A->getAs<MatrixType>(); in DeduceTemplateArgumentsByTypeMatch()
2075 Expr *ParamExpr, const MatrixType *A, in DeduceTemplateArgumentsByTypeMatch()
H A DSemaExpr.cpp13431 const MatrixType *LHSMatType = LHSType->getAs<MatrixType>(); in CheckMatrixElementwiseOperands()
13432 const MatrixType *RHSMatType = RHSType->getAs<MatrixType>(); in CheckMatrixElementwiseOperands()
H A DSemaOverload.cpp8911 AddCandidate(M1, cast<MatrixType>(M1)->getElementType()); in addMatrixBinaryArithmeticOverloads()
8916 AddCandidate(cast<MatrixType>(M2)->getElementType(), M2); in addMatrixBinaryArithmeticOverloads()
H A DSemaType.cpp2799 !MatrixType::isValidElementType(ElementTy)) { in BuildMatrixType()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGStmt.cpp2489 if (isa<MatrixType>(OutExpr->getType().getCanonicalType())) in EmitAsmStmt()
H A DCGCall.cpp2080 if (const MatrixType *Matrix = dyn_cast<MatrixType>(QTy)) in DetermineNoUndef()
H A DCGExprScalar.cpp1243 SrcElementType = SrcType->castAs<MatrixType>()->getElementType(); in EmitScalarCast()
1244 DstElementType = DstType->castAs<MatrixType>()->getElementType(); in EmitScalarCast()
/openbsd-src/gnu/llvm/clang/tools/libclang/
H A DCIndex.cpp1902 DEFAULT_TYPELOC_IMPL(ConstantMatrix, MatrixType) in DEFAULT_TYPELOC_IMPL()
1903 DEFAULT_TYPELOC_IMPL(DependentSizedMatrix, MatrixType) in DEFAULT_TYPELOC_IMPL()