/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | TypeNodes.td | 73 def MatrixType : TypeNode<Type, 1>; 74 def ConstantMatrixType : TypeNode<MatrixType>; 75 def DependentSizedMatrixType : TypeNode<MatrixType>, AlwaysDependent;
|
H A D | Attr.td | 3394 def MatrixType : TypeAttr {
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/ |
H A D | PDBTypes.h | 279 MatrixType, enumerator
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/ |
H A D | PDBExtras.cpp | 281 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, MatrixType, OS) in operator <<()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | Type.cpp | 322 MatrixType::MatrixType(TypeClass tc, QualType matrixType, QualType canonType, in MatrixType() function in MatrixType 348 : MatrixType(tc, matrixType, canonType), NumRows(nRows), in ConstantMatrixType() 356 : MatrixType(DependentSizedMatrix, ElementType, CanonicalType, RowExpr, in DependentSizedMatrixType() 2239 if (const auto *VT = dyn_cast<MatrixType>(CanonicalType)) in hasUnsignedIntegerRepresentation() 2261 if (const auto *MT = dyn_cast<MatrixType>(CanonicalType)) in hasFloatingRepresentation()
|
H A D | ASTContext.cpp | 4583 assert(MatrixType::isValidElementType(ElementTy) && in getConstantMatrixType()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | Type.h | 4153 class MatrixType : public Type, public llvm::FoldingSetNode { 4160 MatrixType(QualType ElementTy, QualType CanonElementTy); 4162 MatrixType(TypeClass TypeClass, QualType ElementTy, QualType CanonElementTy, 4189 class ConstantMatrixType final : public MatrixType { 4202 ConstantMatrixType(TypeClass typeClass, QualType MatrixType, unsigned NRows, 4248 class DependentSizedMatrixType final : public MatrixType { 8126 return isa<MatrixType>(CanonicalType);
|
H A D | TypeProperties.td | 253 let Class = MatrixType in {
|
H A D | TypeLoc.h | 1915 MatrixType, MatrixTypeLocInfo> {
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaCast.cpp | 3110 if (DestType->getAs<MatrixType>() || SrcType->getAs<MatrixType>()) { in CheckCStyleCast()
|
H A D | SemaTemplateDeduction.cpp | 2240 const auto *MA = A->getAs<MatrixType>(); in DeduceTemplateArgumentsByTypeMatch() 2254 Expr *ParamExpr, const MatrixType *A, in DeduceTemplateArgumentsByTypeMatch()
|
H A D | SemaExpr.cpp | 12848 const MatrixType *LHSMatType = LHSType->getAs<MatrixType>(); in CheckMatrixElementwiseOperands() 12849 const MatrixType *RHSMatType = RHSType->getAs<MatrixType>(); in CheckMatrixElementwiseOperands()
|
H A D | SemaOverload.cpp | 9312 AddCandidate(M1, cast<MatrixType>(M1)->getElementType()); in addMatrixBinaryArithmeticOverloads() 9317 AddCandidate(cast<MatrixType>(M2)->getElementType(), M2); in addMatrixBinaryArithmeticOverloads()
|
H A D | SemaType.cpp | 2433 !MatrixType::isValidElementType(ElementTy)) { in BuildMatrixType()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGCall.cpp | 2216 if (const MatrixType *Matrix = dyn_cast<MatrixType>(QTy)) in DetermineNoUndef()
|
H A D | CGStmt.cpp | 2800 if (isa<MatrixType>(OutExpr->getType().getCanonicalType())) in EmitAsmStmt()
|
H A D | CGExprScalar.cpp | 1403 SrcElementType = SrcType->castAs<MatrixType>()->getElementType(); in EmitScalarCast() 1404 DstElementType = DstType->castAs<MatrixType>()->getElementType(); in EmitScalarCast()
|