Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
230 for (unsigned i = 0; i != Header.NumColumns; ++i) in dump()
237 for (unsigned i = 0; i != Header.NumColumns; ++i) { in dump()
[all …]
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DLowerMatrixIntrinsics.cpp352 unsigned NumColumns; member
357 : NumRows(NumRows), NumColumns(NumColumns), in ShapeInfo()
365 return NumRows == other.NumRows && NumColumns == other.NumColumns; in operator ==()
379 return NumColumns; in getStride()
384 return NumColumns; in getNumVectors()
1375 const unsigned C = RShape.NumColumns; in isFusionProfitable()
1376 const unsigned M = LShape.NumColumns; in isFusionProfitable()
1416 TileInfo TI(LShape.NumRows, RShape.NumColumns, LShape.NumColumns, TileSize); in createTiledLoops()
1482 const unsigned C = RShape.NumColumns; in emitSIMDTiling()
1483 const unsigned M = LShape.NumColumns; in emitSIMDTiling()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFUnitIndex.h102 uint32_t NumColumns; member
167 return makeArrayRef(ColumnKinds.get(), Header.NumColumns); in getColumnKinds()
/llvm-project-15.0.7/llvm/lib/Support/
H A DSourceMgr.cpp536 size_t NumColumns = LineContents.size(); in print() local
539 std::string CaretLine(NumColumns + 1, ' '); in print()
554 if (unsigned(ColumnNo) <= NumColumns) in print()
557 CaretLine[NumColumns] = '^'; in print()
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DMatrixUtils.cpp84 CreateLoop(Start, End, B.getInt64(NumColumns), B.getInt64(TileSize), in CreateTiledLoops()
/llvm-project-15.0.7/llvm/lib/IR/
H A DVerifier.cpp5469 ConstantInt *NumColumns; in visitIntrinsicCall() local
5476 NumColumns = cast<ConstantInt>(Call.getArgOperand(4)); in visitIntrinsicCall()
5485 NumColumns = cast<ConstantInt>(Call.getArgOperand(2)); in visitIntrinsicCall()
5493 NumColumns = cast<ConstantInt>(Call.getArgOperand(4)); in visitIntrinsicCall()
5505 NumColumns = cast<ConstantInt>(Call.getArgOperand(5)); in visitIntrinsicCall()
5537 NumRows->getZExtValue() * NumColumns->getZExtValue(), in visitIntrinsicCall()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DType.h3533 unsigned NumColumns;
3548 unsigned getNumColumns() const { return NumColumns; }
3571 unsigned NumRows, unsigned NumColumns,
3575 ID.AddInteger(NumColumns);
H A DASTContext.h1536 unsigned NumColumns) const;
/llvm-project-15.0.7/clang/lib/AST/
H A DASTContext.cpp4152 unsigned NumColumns) const { in getConstantMatrixType()
4154 ConstantMatrixType::Profile(ID, ElementTy, NumRows, NumColumns, in getConstantMatrixType()
4160 ConstantMatrixType::isDimensionValid(NumColumns) && in getConstantMatrixType()
4169 getConstantMatrixType(getCanonicalType(ElementTy), NumRows, NumColumns); in getConstantMatrixType()
4177 ConstantMatrixType(ElementTy, NumRows, NumColumns, Canonical); in getConstantMatrixType()
H A DType.cpp312 NumColumns(nColumns) {} in ConstantMatrixType()
/llvm-project-15.0.7/clang/lib/Sema/
H A DTreeTransform.h901 unsigned NumColumns);
14650 QualType ElementType, unsigned NumRows, unsigned NumColumns) { in RebuildConstantMatrixType() argument
14652 NumColumns); in RebuildConstantMatrixType()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DAttr.td2925 let Args = [ExprArgument<"NumRows">, ExprArgument<"NumColumns">];
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSema.h2025 QualType BuildMatrixType(QualType T, Expr *NumRows, Expr *NumColumns,