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.cpp199 unsigned NumColumns; 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()
209 cast<ConstantInt>(NumColumns)->getZExtValue()) {} in ShapeInfo()
212 return NumRows == other.NumRows && NumColumns == other.NumColumns; in operator ==()
219 assert(NumRows == 0 || NumColumns != 0); in operator bool()
226 return NumColumns; in getStride()
231 return NumColumns; in getNumVectors()
236 ShapeInfo t() const { return ShapeInfo(NumColumns, NumRows); } in t()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFUnitIndex.h102 uint32_t NumColumns; member
182 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.cpp5999 ConstantInt *NumColumns; in visitIntrinsicCall() local
6007 NumColumns = cast<ConstantInt>(Call.getArgOperand(4)); in visitIntrinsicCall()
6015 N->getZExtValue() * NumColumns->getZExtValue(), in visitIntrinsicCall()
6028 NumColumns = cast<ConstantInt>(Call.getArgOperand(2)); in visitIntrinsicCall()
6036 NumColumns = cast<ConstantInt>(Call.getArgOperand(4)); in visitIntrinsicCall()
6043 NumColumns = cast<ConstantInt>(Call.getArgOperand(5)); in visitIntrinsicCall()
6070 NumRows->getZExtValue() * NumColumns->getZExtValue(), in visitIntrinsicCall()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h4195 unsigned NumColumns;
4210 unsigned getNumColumns() const { return NumColumns; }
4233 unsigned NumRows, unsigned NumColumns,
4237 ID.AddInteger(NumColumns);
H A DASTContext.h1591 unsigned NumColumns) const;
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp4578 unsigned NumColumns) const { in getConstantMatrixType()
4580 ConstantMatrixType::Profile(ID, ElementTy, NumRows, NumColumns, in getConstantMatrixType()
4586 ConstantMatrixType::isDimensionValid(NumColumns) && in getConstantMatrixType()
4595 getConstantMatrixType(getCanonicalType(ElementTy), NumRows, NumColumns); in getConstantMatrixType()
4603 ConstantMatrixType(ElementTy, NumRows, NumColumns, Canonical); in getConstantMatrixType()
H A DType.cpp349 NumColumns(nColumns) {} in ConstantMatrixType()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h981 unsigned NumColumns);
16141 QualType ElementType, unsigned NumRows, unsigned NumColumns) { in RebuildConstantMatrixType() argument
16143 NumColumns); in RebuildConstantMatrixType()
/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,