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()
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()
245 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.cpp388 unsigned NumColumns; member
393 : NumRows(NumRows), NumColumns(NumColumns), in ShapeInfo()
401 return NumRows == other.NumRows && NumColumns == other.NumColumns; in operator ==()
415 return NumColumns; in getStride()
420 return NumColumns; in getNumVectors()
537 SIter->second.NumColumns != Shape.NumColumns)) { in setShapeInfo()
1406 (LShape.NumColumns - 1) + in lowerDotProduct()
1408 (LShape.NumColumns); in lowerDotProduct()
1653 const unsigned C = RShape.NumColumns; in isFusionProfitable()
1654 const unsigned M = LShape.NumColumns; in isFusionProfitable()
[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.cpp5787 ConstantInt *NumColumns; in visitIntrinsicCall() local
5795 NumColumns = cast<ConstantInt>(Call.getArgOperand(4)); in visitIntrinsicCall()
5803 N->getZExtValue() * NumColumns->getZExtValue(), in visitIntrinsicCall()
5816 NumColumns = cast<ConstantInt>(Call.getArgOperand(2)); in visitIntrinsicCall()
5824 NumColumns = cast<ConstantInt>(Call.getArgOperand(4)); in visitIntrinsicCall()
5831 NumColumns = cast<ConstantInt>(Call.getArgOperand(5)); in visitIntrinsicCall()
5858 NumRows->getZExtValue() * NumColumns->getZExtValue(), in visitIntrinsicCall()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h3712 unsigned NumColumns;
3727 unsigned getNumColumns() const { return NumColumns; }
3750 unsigned NumRows, unsigned NumColumns,
3754 ID.AddInteger(NumColumns);
H A DASTContext.h1529 unsigned NumColumns) const;
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp4167 unsigned NumColumns) const { in getConstantMatrixType()
4169 ConstantMatrixType::Profile(ID, ElementTy, NumRows, NumColumns, in getConstantMatrixType()
4175 ConstantMatrixType::isDimensionValid(NumColumns) && in getConstantMatrixType()
4184 getConstantMatrixType(getCanonicalType(ElementTy), NumRows, NumColumns); in getConstantMatrixType()
4192 ConstantMatrixType(ElementTy, NumRows, NumColumns, Canonical); in getConstantMatrixType()
H A DType.cpp333 NumColumns(nColumns) {} in ConstantMatrixType()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h966 unsigned NumColumns);
15108 QualType ElementType, unsigned NumRows, unsigned NumColumns) { in RebuildConstantMatrixType() argument
15110 NumColumns); in RebuildConstantMatrixType()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td3203 let Args = [ExprArgument<"NumRows">, ExprArgument<"NumColumns">];
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h2100 QualType BuildMatrixType(QualType T, Expr *NumRows, Expr *NumColumns,