| /llvm-project-15.0.7/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFUnitIndex.cpp | 109 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 D | MatrixUtils.h | 36 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 D | LowerMatrixIntrinsics.cpp | 352 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 D | DWARFUnitIndex.h | 102 uint32_t NumColumns; member 167 return makeArrayRef(ColumnKinds.get(), Header.NumColumns); in getColumnKinds()
|
| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | SourceMgr.cpp | 536 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 D | MatrixUtils.cpp | 84 CreateLoop(Start, End, B.getInt64(NumColumns), B.getInt64(TileSize), in CreateTiledLoops()
|
| /llvm-project-15.0.7/llvm/lib/IR/ |
| H A D | Verifier.cpp | 5469 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 D | Type.h | 3533 unsigned NumColumns; 3548 unsigned getNumColumns() const { return NumColumns; } 3571 unsigned NumRows, unsigned NumColumns, 3575 ID.AddInteger(NumColumns);
|
| H A D | ASTContext.h | 1536 unsigned NumColumns) const;
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | ASTContext.cpp | 4152 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 D | Type.cpp | 312 NumColumns(nColumns) {} in ConstantMatrixType()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | TreeTransform.h | 901 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 D | Attr.td | 2925 let Args = [ExprArgument<"NumRows">, ExprArgument<"NumColumns">];
|
| /llvm-project-15.0.7/clang/include/clang/Sema/ |
| H A D | Sema.h | 2025 QualType BuildMatrixType(QualType T, Expr *NumRows, Expr *NumColumns,
|