Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DLowerMatrixIntrinsics.cpp265 MatrixTy(unsigned NumRows, unsigned NumColumns, Type *EltTy) in MatrixTy() argument
268 unsigned D = isColumnMajor() ? NumColumns : NumRows; in MatrixTy()
271 EltTy, isColumnMajor() ? NumRows : NumColumns))); in MatrixTy()
389 unsigned NumRows; member
394 ShapeInfo(unsigned NumRows = 0, unsigned NumColumns = 0) in ShapeInfo()
395 : NumRows(NumRows), NumColumns(NumColumns), in ShapeInfo()
398 ShapeInfo(Value *NumRows, Value *NumColumns) in ShapeInfo()
399 : ShapeInfo(cast<ConstantInt>(NumRows)->getZExtValue(), in ShapeInfo()
403 return NumRows == other.NumRows && NumColumns == other.NumColumns; in operator ==()
410 assert(NumRows == 0 || NumColumns != 0); in operator bool()
[all …]
H A DLoopInterchange.cpp204 unsigned NumRows = DepMatrix.size(); in isLegalToInterChangeLoops() local
207 for (unsigned Row = 0; Row < NumRows; ++Row) { in isLegalToInterChangeLoops()
/openbsd-src/gnu/llvm/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);
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DMatrixUtils.cpp88 CreateLoop(ColBody, ColumnLoop.Latch, B.getInt64(NumRows), in CreateTiledLoops()
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DVerifier.cpp5591 ConstantInt *NumRows; in visitIntrinsicCall() local
5598 NumRows = cast<ConstantInt>(Call.getArgOperand(2)); in visitIntrinsicCall()
5607 NumRows = cast<ConstantInt>(Call.getArgOperand(1)); in visitIntrinsicCall()
5615 NumRows = cast<ConstantInt>(Call.getArgOperand(3)); in visitIntrinsicCall()
5627 NumRows = cast<ConstantInt>(Call.getArgOperand(4)); in visitIntrinsicCall()
5660 NumRows->getZExtValue() * NumColumns->getZExtValue(), in visitIntrinsicCall()
5664 Check(Stride->getZExtValue() >= NumRows->getZExtValue(), in visitIntrinsicCall()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DType.h3594 unsigned NumRows;
3607 unsigned getNumRows() const { return NumRows; }
3633 unsigned NumRows, unsigned NumColumns,
3636 ID.AddInteger(NumRows);
H A DASTContext.h1509 QualType getConstantMatrixType(QualType ElementType, unsigned NumRows,
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaType.cpp2792 QualType Sema::BuildMatrixType(QualType ElementTy, Expr *NumRows, Expr *NumCols, in BuildMatrixType() argument
2804 if (NumRows->isTypeDependent() || NumCols->isTypeDependent() || in BuildMatrixType()
2805 NumRows->isValueDependent() || NumCols->isValueDependent()) in BuildMatrixType()
2806 return Context.getDependentSizedMatrixType(ElementTy, NumRows, NumCols, in BuildMatrixType()
2810 NumRows->getIntegerConstantExpr(Context); in BuildMatrixType()
2814 auto const RowRange = NumRows->getSourceRange(); in BuildMatrixType()
H A DTreeTransform.h944 QualType RebuildConstantMatrixType(QualType ElementType, unsigned NumRows,
14837 QualType ElementType, unsigned NumRows, unsigned NumColumns) { in RebuildConstantMatrixType() argument
14838 return SemaRef.Context.getConstantMatrixType(ElementType, NumRows, in RebuildConstantMatrixType()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DASTContext.cpp4189 QualType ASTContext::getConstantMatrixType(QualType ElementTy, unsigned NumRows, in getConstantMatrixType() argument
4192 ConstantMatrixType::Profile(ID, ElementTy, NumRows, NumColumns, in getConstantMatrixType()
4197 assert(ConstantMatrixType::isDimensionValid(NumRows) && in getConstantMatrixType()
4207 getConstantMatrixType(getCanonicalType(ElementTy), NumRows, NumColumns); in getConstantMatrixType()
4215 ConstantMatrixType(ElementTy, NumRows, NumColumns, Canonical); in getConstantMatrixType()
H A DType.cpp311 : MatrixType(tc, matrixType, canonType), NumRows(nRows), in ConstantMatrixType()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGExprScalar.cpp1817 unsigned NumRows = MatrixTy->getNumRows(); in VisitMatrixSubscriptExpr() local
1819 Value *Idx = MB.CreateIndex(RowIdx, ColumnIdx, NumRows); in VisitMatrixSubscriptExpr()
H A DCGExpr.cpp3938 llvm::Value *NumRows = Builder.getIntN( in EmitMatrixSubscriptExpr() local
3942 Builder.CreateAdd(Builder.CreateMul(ColIdx, NumRows), RowIdx); in EmitMatrixSubscriptExpr()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DAttr.td2937 let Args = [ExprArgument<"NumRows">, ExprArgument<"NumColumns">];
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h2057 QualType BuildMatrixType(QualType T, Expr *NumRows, Expr *NumColumns,