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.cpp194 unsigned NumRows; member
199 ShapeInfo(unsigned NumRows = 0, unsigned NumColumns = 0) in ShapeInfo()
200 : NumRows(NumRows), NumColumns(NumColumns), in ShapeInfo()
203 ShapeInfo(Value *NumRows, Value *NumColumns) in ShapeInfo()
204 : ShapeInfo(cast<ConstantInt>(NumRows)->getZExtValue(), in ShapeInfo()
208 return NumRows == other.NumRows && NumColumns == other.NumColumns; in operator ==()
215 assert(NumRows == 0 || NumColumns != 0); in operator bool()
216 return NumRows != 0; in operator bool()
221 return NumRows; in getStride()
228 return NumRows; in getNumVectors()
[all …]
H A DLoopInterchange.cpp262 unsigned NumRows = DepMatrix.size(); in isLegalToInterChangeLoops() local
265 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.cpp6259 ConstantInt *NumRows; in visitIntrinsicCall() local
6266 NumRows = cast<ConstantInt>(Call.getArgOperand(2)); in visitIntrinsicCall()
6271 NumRows->getZExtValue() * N->getZExtValue(), in visitIntrinsicCall()
6288 NumRows = cast<ConstantInt>(Call.getArgOperand(1)); in visitIntrinsicCall()
6296 NumRows = cast<ConstantInt>(Call.getArgOperand(3)); in visitIntrinsicCall()
6303 NumRows = cast<ConstantInt>(Call.getArgOperand(4)); in visitIntrinsicCall()
6331 NumRows->getZExtValue() * NumColumns->getZExtValue(), in visitIntrinsicCall()
6335 Check(Stride->getZExtValue() >= NumRows->getZExtValue(), in visitIntrinsicCall()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp2451 QualType Sema::BuildMatrixType(QualType ElementTy, Expr *NumRows, Expr *NumCols, in BuildMatrixType() argument
2468 if (NumRows->isTypeDependent() || NumCols->isTypeDependent() || in BuildMatrixType()
2469 NumRows->isValueDependent() || NumCols->isValueDependent()) in BuildMatrixType()
2470 return Context.getDependentSizedMatrixType(ElementTy, NumRows, NumCols, in BuildMatrixType()
2474 NumRows->getIntegerConstantExpr(Context); in BuildMatrixType()
2478 auto const RowRange = NumRows->getSourceRange(); in BuildMatrixType()
H A DTreeTransform.h985 QualType RebuildConstantMatrixType(QualType ElementType, unsigned NumRows,
17279 QualType ElementType, unsigned NumRows, unsigned NumColumns) { in RebuildConstantMatrixType() argument
17280 return SemaRef.Context.getConstantMatrixType(ElementType, NumRows, in RebuildConstantMatrixType()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h4304 unsigned NumRows;
4317 unsigned getNumRows() const { return NumRows; }
4343 unsigned NumRows, unsigned NumColumns,
4346 ID.AddInteger(NumRows);
H A DASTContext.h1709 QualType getConstantMatrixType(QualType ElementType, unsigned NumRows,
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp4803 QualType ASTContext::getConstantMatrixType(QualType ElementTy, unsigned NumRows, in getConstantMatrixType() argument
4806 ConstantMatrixType::Profile(ID, ElementTy, NumRows, NumColumns, in getConstantMatrixType()
4811 assert(ConstantMatrixType::isDimensionValid(NumRows) && in getConstantMatrixType()
4821 getConstantMatrixType(getCanonicalType(ElementTy), NumRows, NumColumns); in getConstantMatrixType()
4829 ConstantMatrixType(ElementTy, NumRows, NumColumns, Canonical); in getConstantMatrixType()
H A DType.cpp386 : MatrixType(tc, matrixType, canonType), NumRows(nRows), in ConstantMatrixType()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprScalar.cpp2088 unsigned NumRows = MatrixTy->getNumRows(); in VisitMatrixSubscriptExpr() local
2090 Value *Idx = MB.CreateIndex(RowIdx, ColumnIdx, NumRows); in VisitMatrixSubscriptExpr()
H A DCGExpr.cpp4675 llvm::Value *NumRows = Builder.getIntN( in EmitMatrixSubscriptExpr() local
4679 Builder.CreateAdd(Builder.CreateMul(ColIdx, NumRows), RowIdx); in EmitMatrixSubscriptExpr()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td3765 let Args = [ExprArgument<"NumRows">, ExprArgument<"NumColumns">];
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h14939 QualType BuildMatrixType(QualType T, Expr *NumRows, Expr *NumColumns,