Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
H A DMatrixUtils.h33 unsigned NumRows; member
66 TileInfo(unsigned NumRows, unsigned NumColumns, unsigned NumInner, in TileInfo()
68 : NumRows(NumRows), NumColumns(NumColumns), NumInner(NumInner), in TileInfo()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DLowerMatrixIntrinsics.cpp223 MatrixTy(unsigned NumRows, unsigned NumColumns, Type *EltTy) in MatrixTy() argument
226 unsigned D = isColumnMajor() ? NumColumns : NumRows; in MatrixTy()
229 EltTy, isColumnMajor() ? NumRows : NumColumns))); in MatrixTy()
339 unsigned NumRows; member
344 ShapeInfo(unsigned NumRows = 0, unsigned NumColumns = 0) in ShapeInfo()
345 : NumRows(NumRows), NumColumns(NumColumns), in ShapeInfo()
348 ShapeInfo(Value *NumRows, Value *NumColumns) in ShapeInfo()
349 : ShapeInfo(cast<ConstantInt>(NumRows)->getZExtValue(), in ShapeInfo()
353 return NumRows == other.NumRows && NumColumns == other.NumColumns; in operator ==()
360 assert(NumRows == 0 || NumColumns != 0); in operator bool()
[all …]
H A DLoopInterchange.cpp260 unsigned NumRows = DepMatrix.size(); in isLegalToInterChangeLoops() local
262 for (unsigned Row = 0; Row < NumRows; ++Row) { in isLegalToInterChangeLoops()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DMatrixBuilder.h151 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);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DMatrixUtils.cpp88 CreateLoop(ColBody, ColLatch, B.getInt64(NumRows), B.getInt64(TileSize), in CreateTiledLoops()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DVerifier.cpp5195 ConstantInt *NumRows; in visitIntrinsicCall() local
5202 NumRows = cast<ConstantInt>(Call.getArgOperand(2)); in visitIntrinsicCall()
5211 NumRows = cast<ConstantInt>(Call.getArgOperand(1)); in visitIntrinsicCall()
5219 NumRows = cast<ConstantInt>(Call.getArgOperand(3)); in visitIntrinsicCall()
5227 NumRows = cast<ConstantInt>(Call.getArgOperand(4)); in visitIntrinsicCall()
5253 NumRows->getZExtValue() * NumColumns->getZExtValue(), in visitIntrinsicCall()
5257 Assert(Stride->getZExtValue() >= NumRows->getZExtValue(), in visitIntrinsicCall()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DType.h3458 unsigned NumRows;
3471 unsigned getNumRows() const { return NumRows; }
3497 unsigned NumRows, unsigned NumColumns,
3500 ID.AddInteger(NumRows);
H A DASTContext.h1421 QualType getConstantMatrixType(QualType ElementType, unsigned NumRows,
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaType.cpp2651 QualType Sema::BuildMatrixType(QualType ElementTy, Expr *NumRows, Expr *NumCols, in BuildMatrixType() argument
2663 if (NumRows->isTypeDependent() || NumCols->isTypeDependent() || in BuildMatrixType()
2664 NumRows->isValueDependent() || NumCols->isValueDependent()) in BuildMatrixType()
2665 return Context.getDependentSizedMatrixType(ElementTy, NumRows, NumCols, in BuildMatrixType()
2668 Optional<llvm::APSInt> ValueRows = NumRows->getIntegerConstantExpr(Context); in BuildMatrixType()
2672 auto const RowRange = NumRows->getSourceRange(); in BuildMatrixType()
H A DTreeTransform.h900 QualType RebuildConstantMatrixType(QualType ElementType, unsigned NumRows,
14290 QualType ElementType, unsigned NumRows, unsigned NumColumns) { in RebuildConstantMatrixType() argument
14291 return SemaRef.Context.getConstantMatrixType(ElementType, NumRows, in RebuildConstantMatrixType()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DASTContext.cpp4050 QualType ASTContext::getConstantMatrixType(QualType ElementTy, unsigned NumRows, in getConstantMatrixType() argument
4053 ConstantMatrixType::Profile(ID, ElementTy, NumRows, NumColumns, in getConstantMatrixType()
4058 assert(ConstantMatrixType::isDimensionValid(NumRows) && in getConstantMatrixType()
4068 getConstantMatrixType(getCanonicalType(ElementTy), NumRows, NumColumns); in getConstantMatrixType()
4076 ConstantMatrixType(ElementTy, NumRows, NumColumns, Canonical); in getConstantMatrixType()
H A DType.cpp311 : MatrixType(tc, matrixType, canonType), NumRows(nRows), in ConstantMatrixType()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGExpr.cpp3873 llvm::Value *NumRows = Builder.getIntN( in EmitMatrixSubscriptExpr() local
3877 Builder.CreateAdd(Builder.CreateMul(ColIdx, NumRows), RowIdx); in EmitMatrixSubscriptExpr()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DAttr.td2768 let Args = [ExprArgument<"NumRows">, ExprArgument<"NumColumns">];
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h1917 QualType BuildMatrixType(QualType T, Expr *NumRows, Expr *NumColumns,