| /llvm-project-15.0.7/llvm/include/llvm/Transforms/Utils/ |
| H A D | MatrixUtils.h | 33 unsigned NumRows; member 61 TileInfo(unsigned NumRows, unsigned NumColumns, unsigned NumInner, in TileInfo() 63 : NumRows(NumRows), NumColumns(NumColumns), NumInner(NumInner), in TileInfo()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Scalar/ |
| H A D | LowerMatrixIntrinsics.cpp | 351 unsigned NumRows; member 357 : NumRows(NumRows), NumColumns(NumColumns), in ShapeInfo() 365 return NumRows == other.NumRows && NumColumns == other.NumColumns; in operator ==() 373 return NumRows != 0; in operator bool() 378 return NumRows; in getStride() 385 return NumRows; in getNumVectors() 456 SI.NumRows * SI.NumColumns && in getMatrix() 1374 const unsigned R = LShape.NumRows; in isFusionProfitable() 1481 const unsigned R = LShape.NumRows; in emitSIMDTiling() 1557 const unsigned R = LShape.NumRows; in LowerMatrixMultiplyFused() [all …]
|
| H A D | LoopInterchange.cpp | 257 unsigned NumRows = DepMatrix.size(); in isLegalToInterChangeLoops() local 259 for (unsigned Row = 0; Row < NumRows; ++Row) { in isLegalToInterChangeLoops()
|
| /llvm-project-15.0.7/llvm/include/llvm/IR/ |
| H A D | MatrixBuilder.h | 147 Value *ColumnIdx, unsigned NumRows) { in CreateMatrixInsert() argument 151 ColumnIdx->getType(), NumRows)), in CreateMatrixInsert() 244 Value *CreateIndex(Value *RowIdx, Value *ColumnIdx, unsigned NumRows, 251 Value *NumRowsV = B.getIntN(MaxWidth, NumRows);
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Utils/ |
| H A D | MatrixUtils.cpp | 88 CreateLoop(ColBody, ColumnLoop.Latch, B.getInt64(NumRows), in CreateTiledLoops()
|
| /llvm-project-15.0.7/llvm/lib/IR/ |
| H A D | Verifier.cpp | 5468 ConstantInt *NumRows; in visitIntrinsicCall() local 5475 NumRows = cast<ConstantInt>(Call.getArgOperand(2)); in visitIntrinsicCall() 5484 NumRows = cast<ConstantInt>(Call.getArgOperand(1)); in visitIntrinsicCall() 5492 NumRows = cast<ConstantInt>(Call.getArgOperand(3)); in visitIntrinsicCall() 5504 NumRows = cast<ConstantInt>(Call.getArgOperand(4)); in visitIntrinsicCall() 5537 NumRows->getZExtValue() * NumColumns->getZExtValue(), in visitIntrinsicCall() 5541 Check(Stride->getZExtValue() >= NumRows->getZExtValue(), in visitIntrinsicCall()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | Type.h | 3532 unsigned NumRows; 3545 unsigned getNumRows() const { return NumRows; } 3571 unsigned NumRows, unsigned NumColumns, 3574 ID.AddInteger(NumRows);
|
| H A D | ASTContext.h | 1535 QualType getConstantMatrixType(QualType ElementType, unsigned NumRows,
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaType.cpp | 2730 QualType Sema::BuildMatrixType(QualType ElementTy, Expr *NumRows, Expr *NumCols, in BuildMatrixType() argument 2742 if (NumRows->isTypeDependent() || NumCols->isTypeDependent() || in BuildMatrixType() 2743 NumRows->isValueDependent() || NumCols->isValueDependent()) in BuildMatrixType() 2744 return Context.getDependentSizedMatrixType(ElementTy, NumRows, NumCols, in BuildMatrixType() 2747 Optional<llvm::APSInt> ValueRows = NumRows->getIntegerConstantExpr(Context); in BuildMatrixType() 2751 auto const RowRange = NumRows->getSourceRange(); in BuildMatrixType()
|
| H A D | TreeTransform.h | 900 QualType RebuildConstantMatrixType(QualType ElementType, unsigned NumRows, 14650 QualType ElementType, unsigned NumRows, unsigned NumColumns) { in RebuildConstantMatrixType() argument 14651 return SemaRef.Context.getConstantMatrixType(ElementType, NumRows, in RebuildConstantMatrixType()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | ASTContext.cpp | 4151 QualType ASTContext::getConstantMatrixType(QualType ElementTy, unsigned NumRows, in getConstantMatrixType() argument 4154 ConstantMatrixType::Profile(ID, ElementTy, NumRows, NumColumns, in getConstantMatrixType() 4159 assert(ConstantMatrixType::isDimensionValid(NumRows) && in getConstantMatrixType() 4169 getConstantMatrixType(getCanonicalType(ElementTy), NumRows, NumColumns); in getConstantMatrixType() 4177 ConstantMatrixType(ElementTy, NumRows, NumColumns, Canonical); in getConstantMatrixType()
|
| H A D | Type.cpp | 311 : MatrixType(tc, matrixType, canonType), NumRows(nRows), in ConstantMatrixType()
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CGExprScalar.cpp | 1795 unsigned NumRows = MatrixTy->getNumRows(); in VisitMatrixSubscriptExpr() local 1797 Value *Idx = MB.CreateIndex(RowIdx, ColumnIdx, NumRows); in VisitMatrixSubscriptExpr()
|
| H A D | CGExpr.cpp | 3963 llvm::Value *NumRows = Builder.getIntN( in EmitMatrixSubscriptExpr() local 3967 Builder.CreateAdd(Builder.CreateMul(ColIdx, NumRows), RowIdx); in EmitMatrixSubscriptExpr()
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | Attr.td | 2925 let Args = [ExprArgument<"NumRows">, ExprArgument<"NumColumns">];
|
| /llvm-project-15.0.7/clang/include/clang/Sema/ |
| H A D | Sema.h | 2025 QualType BuildMatrixType(QualType T, Expr *NumRows, Expr *NumColumns,
|