Home
last modified time | relevance | path

Searched refs:NumRows (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DMatrixUtils.h33 unsigned NumRows; member
61 TileInfo(unsigned NumRows, unsigned NumColumns, unsigned NumInner, in TileInfo()
63 : NumRows(NumRows), NumColumns(NumColumns), NumInner(NumInner), in TileInfo()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLowerMatrixIntrinsics.cpp198 unsigned NumRows; member
203 ShapeInfo(unsigned NumRows = 0, unsigned NumColumns = 0) in ShapeInfo()
204 : NumRows(NumRows), NumColumns(NumColumns), in ShapeInfo()
207 ShapeInfo(Value *NumRows, Value *NumColumns) in ShapeInfo()
208 : ShapeInfo(cast<ConstantInt>(NumRows)->getZExtValue(), in ShapeInfo()
212 return NumRows == other.NumRows && NumColumns == other.NumColumns; in operator ==()
219 assert(NumRows == 0 || NumColumns != 0); in operator bool()
220 return NumRows != 0; in operator bool()
225 return NumRows; in getStride()
232 return NumRows; in getNumVectors()
[all …]
H A DLoopInterchange.cpp199 unsigned NumRows = DepMatrix.size(); in isLegalToInterChangeLoops() local
202 for (unsigned Row = 0; Row < NumRows; ++Row) { in isLegalToInterChangeLoops()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DMatrixBuilder.h147 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);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DMatrixUtils.cpp88 CreateLoop(ColBody, ColumnLoop.Latch, B.getInt64(NumRows), in CreateTiledLoops()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp5998 ConstantInt *NumRows; in visitIntrinsicCall() local
6005 NumRows = cast<ConstantInt>(Call.getArgOperand(2)); in visitIntrinsicCall()
6010 NumRows->getZExtValue() * N->getZExtValue(), in visitIntrinsicCall()
6027 NumRows = cast<ConstantInt>(Call.getArgOperand(1)); in visitIntrinsicCall()
6035 NumRows = cast<ConstantInt>(Call.getArgOperand(3)); in visitIntrinsicCall()
6042 NumRows = cast<ConstantInt>(Call.getArgOperand(4)); in visitIntrinsicCall()
6070 NumRows->getZExtValue() * NumColumns->getZExtValue(), in visitIntrinsicCall()
6074 Check(Stride->getZExtValue() >= NumRows->getZExtValue(), in visitIntrinsicCall()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h4194 unsigned NumRows;
4207 unsigned getNumRows() const { return NumRows; }
4233 unsigned NumRows, unsigned NumColumns,
4236 ID.AddInteger(NumRows);
H A DASTContext.h1590 QualType getConstantMatrixType(QualType ElementType, unsigned NumRows,
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp2426 QualType Sema::BuildMatrixType(QualType ElementTy, Expr *NumRows, Expr *NumCols, in BuildMatrixType() argument
2438 if (NumRows->isTypeDependent() || NumCols->isTypeDependent() || in BuildMatrixType()
2439 NumRows->isValueDependent() || NumCols->isValueDependent()) in BuildMatrixType()
2440 return Context.getDependentSizedMatrixType(ElementTy, NumRows, NumCols, in BuildMatrixType()
2444 NumRows->getIntegerConstantExpr(Context); in BuildMatrixType()
2448 auto const RowRange = NumRows->getSourceRange(); in BuildMatrixType()
H A DTreeTransform.h980 QualType RebuildConstantMatrixType(QualType ElementType, unsigned NumRows,
16141 QualType ElementType, unsigned NumRows, unsigned NumColumns) { in RebuildConstantMatrixType() argument
16142 return SemaRef.Context.getConstantMatrixType(ElementType, NumRows, in RebuildConstantMatrixType()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp4577 QualType ASTContext::getConstantMatrixType(QualType ElementTy, unsigned NumRows, in getConstantMatrixType() argument
4580 ConstantMatrixType::Profile(ID, ElementTy, NumRows, NumColumns, in getConstantMatrixType()
4585 assert(ConstantMatrixType::isDimensionValid(NumRows) && in getConstantMatrixType()
4595 getConstantMatrixType(getCanonicalType(ElementTy), NumRows, NumColumns); in getConstantMatrixType()
4603 ConstantMatrixType(ElementTy, NumRows, NumColumns, Canonical); in getConstantMatrixType()
H A DType.cpp348 : MatrixType(tc, matrixType, canonType), NumRows(nRows), in ConstantMatrixType()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprScalar.cpp2002 unsigned NumRows = MatrixTy->getNumRows(); in VisitMatrixSubscriptExpr() local
2004 Value *Idx = MB.CreateIndex(RowIdx, ColumnIdx, NumRows); in VisitMatrixSubscriptExpr()
H A DCGExpr.cpp4365 llvm::Value *NumRows = Builder.getIntN( in EmitMatrixSubscriptExpr() local
4369 Builder.CreateAdd(Builder.CreateMul(ColIdx, NumRows), RowIdx); in EmitMatrixSubscriptExpr()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td3397 let Args = [ExprArgument<"NumRows">, ExprArgument<"NumColumns">];
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h14626 QualType BuildMatrixType(QualType T, Expr *NumRows, Expr *NumColumns,