Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTypeNodes.td73 def MatrixType : TypeNode<Type, 1>;
74 def ConstantMatrixType : TypeNode<MatrixType>;
75 def DependentSizedMatrixType : TypeNode<MatrixType>, AlwaysDependent;
H A DAttr.td3762 def MatrixType : TypeAttr {
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBTypes.h279 MatrixType, enumerator
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBExtras.cpp281 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, MatrixType, OS) in operator <<()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DType.cpp360 MatrixType::MatrixType(TypeClass tc, QualType matrixType, QualType canonType, in MatrixType() function in MatrixType
386 : MatrixType(tc, matrixType, canonType), NumRows(nRows), in ConstantMatrixType()
394 : MatrixType(DependentSizedMatrix, ElementType, CanonicalType, RowExpr, in DependentSizedMatrixType()
2295 if (const auto *VT = dyn_cast<MatrixType>(CanonicalType)) in hasUnsignedIntegerRepresentation()
2316 if (const auto *MT = dyn_cast<MatrixType>(CanonicalType)) in hasFloatingRepresentation()
H A DASTContext.cpp4809 assert(MatrixType::isValidElementType(ElementTy) && in getConstantMatrixType()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h4263 class MatrixType : public Type, public llvm::FoldingSetNode {
4270 MatrixType(QualType ElementTy, QualType CanonElementTy);
4272 MatrixType(TypeClass TypeClass, QualType ElementTy, QualType CanonElementTy,
4299 class ConstantMatrixType final : public MatrixType {
4312 ConstantMatrixType(TypeClass typeClass, QualType MatrixType, unsigned NRows,
4358 class DependentSizedMatrixType final : public MatrixType {
8515 return isa<MatrixType>(CanonicalType);
H A DTypeProperties.td238 let Class = MatrixType in {
H A DTypeLoc.h1971 MatrixType, MatrixTypeLocInfo> {
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCast.cpp3207 if (DestType->getAs<MatrixType>() || SrcType->getAs<MatrixType>()) { in CheckCStyleCast()
H A DSemaHLSL.cpp3136 assert(!isa<MatrixType>(T) && "Matrix types not yet supported in HLSL"); in BuildFlattenedTypeList()
3901 assert(!isa<MatrixType>(Ty) && "Matrix types not yet supported in HLSL"); in generateInitListsImpl()
H A DSemaTemplateDeduction.cpp2311 const auto *MA = A->getAs<MatrixType>(); in DeduceTemplateArgumentsByTypeMatch()
2326 Expr *ParamExpr, const MatrixType *A, in DeduceTemplateArgumentsByTypeMatch()
H A DSemaExpr.cpp13214 const MatrixType *LHSMatType = LHSType->getAs<MatrixType>(); in CheckMatrixElementwiseOperands()
13215 const MatrixType *RHSMatType = RHSType->getAs<MatrixType>(); in CheckMatrixElementwiseOperands()
H A DSemaOverload.cpp9770 AddCandidate(M1, cast<MatrixType>(M1)->getElementType()); in addMatrixBinaryArithmeticOverloads()
9775 AddCandidate(cast<MatrixType>(M2)->getElementType(), M2); in addMatrixBinaryArithmeticOverloads()
H A DSemaType.cpp2458 !MatrixType::isValidElementType(ElementTy)) { in BuildMatrixType()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp2978 if (isa<MatrixType>(OutExpr->getType().getCanonicalType())) in EmitAsmStmt()
H A DCGCall.cpp2320 if (const MatrixType *Matrix = dyn_cast<MatrixType>(QTy)) in DetermineNoUndef()
H A DCGExprScalar.cpp1478 SrcElementType = SrcType->castAs<MatrixType>()->getElementType(); in EmitScalarCast()
1479 DstElementType = DstType->castAs<MatrixType>()->getElementType(); in EmitScalarCast()
H A DCGExpr.cpp6701 assert(!isa<MatrixType>(T) && "Matrix types not yet supported in HLSL"); in FlattenAccessAndType()