Home
last modified time | relevance | path

Searched refs:NumColumns (Results 1 – 14 of 14) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnitIndex.cpp109 NumColumns = IndexData.getU32(OffsetPtr); in parse()
142 (2 * Header.NumUnits + 1) * 4 * Header.NumColumns)) in parseImpl()
148 ColumnKinds = std::make_unique<DWARFSectionKind[]>(Header.NumColumns); in parseImpl()
149 RawSectionIds = std::make_unique<uint32_t[]>(Header.NumColumns); in parseImpl()
162 std::make_unique<Entry::SectionContribution[]>(Header.NumColumns); in parseImpl()
167 for (unsigned i = 0; i != Header.NumColumns; ++i) { in parseImpl()
183 for (unsigned i = 0; i != Header.NumColumns; ++i) in parseImpl()
190 for (unsigned i = 0; i != Header.NumColumns; ++i) in parseImpl()
221 for (unsigned i = 0; i != Header.NumColumns; ++i) { in dump()
232 for (unsigned i = 0; i != Header.NumColumns; ++i) { in dump()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DMatrixUtils.h36 unsigned NumColumns; 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.cpp195 unsigned NumColumns; 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()
205 cast<ConstantInt>(NumColumns)->getZExtValue()) {} in ShapeInfo()
208 return NumRows == other.NumRows && NumColumns == other.NumColumns; in operator ==()
215 assert(NumRows == 0 || NumColumns != 0); in operator bool()
222 return NumColumns; in getStride()
227 return NumColumns; in getNumVectors()
232 ShapeInfo t() const { return ShapeInfo(NumColumns, NumRows); } in t()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFUnitIndex.h105 uint32_t NumColumns; member
186 return ArrayRef(ColumnKinds.get(), Header.NumColumns); in getColumnKinds()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DSourceMgr.cpp540 size_t NumColumns = LineContents.size(); in print() local
543 std::string CaretLine(NumColumns + 1, ' '); in print()
557 if (unsigned(ColumnNo) <= NumColumns) in print()
560 CaretLine[NumColumns] = '^'; in print()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DMatrixUtils.cpp84 CreateLoop(Start, End, B.getInt64(NumColumns), B.getInt64(TileSize), in CreateTiledLoops()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp6260 ConstantInt *NumColumns; in visitIntrinsicCall() local
6268 NumColumns = cast<ConstantInt>(Call.getArgOperand(4)); in visitIntrinsicCall()
6276 N->getZExtValue() * NumColumns->getZExtValue(), in visitIntrinsicCall()
6289 NumColumns = cast<ConstantInt>(Call.getArgOperand(2)); in visitIntrinsicCall()
6297 NumColumns = cast<ConstantInt>(Call.getArgOperand(4)); in visitIntrinsicCall()
6304 NumColumns = cast<ConstantInt>(Call.getArgOperand(5)); in visitIntrinsicCall()
6331 NumRows->getZExtValue() * NumColumns->getZExtValue(), in visitIntrinsicCall()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h4305 unsigned NumColumns;
4320 unsigned getNumColumns() const { return NumColumns; }
4343 unsigned NumRows, unsigned NumColumns,
4347 ID.AddInteger(NumColumns);
H A DASTContext.h1710 unsigned NumColumns) const;
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp4804 unsigned NumColumns) const { in getConstantMatrixType()
4806 ConstantMatrixType::Profile(ID, ElementTy, NumRows, NumColumns, in getConstantMatrixType()
4812 ConstantMatrixType::isDimensionValid(NumColumns) && in getConstantMatrixType()
4821 getConstantMatrixType(getCanonicalType(ElementTy), NumRows, NumColumns); in getConstantMatrixType()
4829 ConstantMatrixType(ElementTy, NumRows, NumColumns, Canonical); in getConstantMatrixType()
H A DType.cpp387 NumColumns(nColumns) {} in ConstantMatrixType()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h986 unsigned NumColumns);
17279 QualType ElementType, unsigned NumRows, unsigned NumColumns) { in RebuildConstantMatrixType() argument
17281 NumColumns); in RebuildConstantMatrixType()
/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,