| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
| H A D | MatrixUtils.h | 33 unsigned NumRows; member 66 TileInfo(unsigned NumRows, unsigned NumColumns, unsigned NumInner, in TileInfo() 68 : NumRows(NumRows), NumColumns(NumColumns), NumInner(NumInner), in TileInfo()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LowerMatrixIntrinsics.cpp | 350 unsigned NumRows; member 356 : NumRows(NumRows), NumColumns(NumColumns), in ShapeInfo() 364 return NumRows == other.NumRows && NumColumns == other.NumColumns; in operator ==() 372 return NumRows != 0; in operator bool() 377 return NumRows; in getStride() 384 return NumRows; in getNumVectors() 455 SI.NumRows * SI.NumColumns && in getMatrix() 1369 const unsigned R = LShape.NumRows; in isFusionProfitable() 1473 const unsigned R = LShape.NumRows; in emitSIMDTiling() 1549 const unsigned R = LShape.NumRows; in LowerMatrixMultiplyFused() [all …]
|
| H A D | LoopInterchange.cpp | 260 unsigned NumRows = DepMatrix.size(); in isLegalToInterChangeLoops() local 262 for (unsigned Row = 0; Row < NumRows; ++Row) { in isLegalToInterChangeLoops()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | MatrixBuilder.h | 151 Value *ColumnIdx, unsigned NumRows) { in CreateMatrixInsert() argument 155 ColumnIdx->getType(), NumRows)), in CreateMatrixInsert() 236 unsigned NumRows, Twine const &Name = "") { 243 Value *NumRowsV = B.getIntN(MaxWidth, NumRows);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | MatrixUtils.cpp | 88 CreateLoop(ColBody, ColLatch, B.getInt64(NumRows), B.getInt64(TileSize), in CreateTiledLoops()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Verifier.cpp | 5156 ConstantInt *NumRows; in visitIntrinsicCall() local 5163 NumRows = cast<ConstantInt>(Call.getArgOperand(2)); in visitIntrinsicCall() 5172 NumRows = cast<ConstantInt>(Call.getArgOperand(1)); in visitIntrinsicCall() 5180 NumRows = cast<ConstantInt>(Call.getArgOperand(3)); in visitIntrinsicCall() 5188 NumRows = cast<ConstantInt>(Call.getArgOperand(4)); in visitIntrinsicCall() 5214 NumRows->getZExtValue() * NumColumns->getZExtValue(), in visitIntrinsicCall() 5218 Assert(Stride->getZExtValue() >= NumRows->getZExtValue(), in visitIntrinsicCall()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Type.h | 3458 unsigned NumRows; 3471 unsigned getNumRows() const { return NumRows; } 3497 unsigned NumRows, unsigned NumColumns, 3500 ID.AddInteger(NumRows);
|
| H A D | ASTContext.h | 1466 QualType getConstantMatrixType(QualType ElementType, unsigned NumRows,
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaType.cpp | 2675 QualType Sema::BuildMatrixType(QualType ElementTy, Expr *NumRows, Expr *NumCols, in BuildMatrixType() argument 2687 if (NumRows->isTypeDependent() || NumCols->isTypeDependent() || in BuildMatrixType() 2688 NumRows->isValueDependent() || NumCols->isValueDependent()) in BuildMatrixType() 2689 return Context.getDependentSizedMatrixType(ElementTy, NumRows, NumCols, in BuildMatrixType() 2692 Optional<llvm::APSInt> ValueRows = NumRows->getIntegerConstantExpr(Context); in BuildMatrixType() 2696 auto const RowRange = NumRows->getSourceRange(); in BuildMatrixType()
|
| H A D | TreeTransform.h | 900 QualType RebuildConstantMatrixType(QualType ElementType, unsigned NumRows, 14355 QualType ElementType, unsigned NumRows, unsigned NumColumns) { in RebuildConstantMatrixType() argument 14356 return SemaRef.Context.getConstantMatrixType(ElementType, NumRows, in RebuildConstantMatrixType()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTContext.cpp | 4065 QualType ASTContext::getConstantMatrixType(QualType ElementTy, unsigned NumRows, in getConstantMatrixType() argument 4068 ConstantMatrixType::Profile(ID, ElementTy, NumRows, NumColumns, in getConstantMatrixType() 4073 assert(ConstantMatrixType::isDimensionValid(NumRows) && in getConstantMatrixType() 4083 getConstantMatrixType(getCanonicalType(ElementTy), NumRows, NumColumns); in getConstantMatrixType() 4091 ConstantMatrixType(ElementTy, NumRows, NumColumns, Canonical); in getConstantMatrixType()
|
| H A D | Type.cpp | 311 : MatrixType(tc, matrixType, canonType), NumRows(nRows), in ConstantMatrixType()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGExpr.cpp | 3873 llvm::Value *NumRows = Builder.getIntN( in EmitMatrixSubscriptExpr() local 3877 Builder.CreateAdd(Builder.CreateMul(ColIdx, NumRows), RowIdx); in EmitMatrixSubscriptExpr()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | Attr.td | 2791 let Args = [ExprArgument<"NumRows">, ExprArgument<"NumColumns">];
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 1953 QualType BuildMatrixType(QualType T, Expr *NumRows, Expr *NumColumns,
|