/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFUnitIndex.cpp | 22 NumColumns = IndexData.getU32(OffsetPtr); in parse() 51 (2 * Header.NumUnits + 1) * 4 * Header.NumColumns)) in parseImpl() 57 ColumnKinds = llvm::make_unique<DWARFSectionKind[]>(Header.NumColumns); in parseImpl() 70 llvm::make_unique<Entry::SectionContribution[]>(Header.NumColumns); in parseImpl() 75 for (unsigned i = 0; i != Header.NumColumns; ++i) { in parseImpl() 90 for (unsigned i = 0; i != Header.NumColumns; ++i) in parseImpl() 97 for (unsigned i = 0; i != Header.NumColumns; ++i) in parseImpl() 127 for (unsigned i = 0; i != Header.NumColumns; ++i) in dump() 130 for (unsigned i = 0; i != Header.NumColumns; ++i) in dump() 137 for (unsigned i = 0; i != Header.NumColumns; ++i) { in dump() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFUnitIndex.cpp | 25 NumColumns = IndexData.getU32(OffsetPtr); in parse() 54 (2 * Header.NumUnits + 1) * 4 * Header.NumColumns)) in parseImpl() 60 ColumnKinds = std::make_unique<DWARFSectionKind[]>(Header.NumColumns); in parseImpl() 73 std::make_unique<Entry::SectionContribution[]>(Header.NumColumns); in parseImpl() 78 for (unsigned i = 0; i != Header.NumColumns; ++i) { in parseImpl() 93 for (unsigned i = 0; i != Header.NumColumns; ++i) in parseImpl() 100 for (unsigned i = 0; i != Header.NumColumns; ++i) in parseImpl() 130 for (unsigned i = 0; i != Header.NumColumns; ++i) in dump() 133 for (unsigned i = 0; i != Header.NumColumns; ++i) in dump() 140 for (unsigned i = 0; i != Header.NumColumns; ++i) { in dump() [all …]
|
/external/llvm-project/llvm/lib/DebugInfo/DWARF/ |
D | DWARFUnitIndex.cpp | 108 NumColumns = IndexData.getU32(OffsetPtr); in parse() 141 (2 * Header.NumUnits + 1) * 4 * Header.NumColumns)) in parseImpl() 147 ColumnKinds = std::make_unique<DWARFSectionKind[]>(Header.NumColumns); in parseImpl() 148 RawSectionIds = std::make_unique<uint32_t[]>(Header.NumColumns); in parseImpl() 161 std::make_unique<Entry::SectionContribution[]>(Header.NumColumns); in parseImpl() 166 for (unsigned i = 0; i != Header.NumColumns; ++i) { in parseImpl() 182 for (unsigned i = 0; i != Header.NumColumns; ++i) in parseImpl() 189 for (unsigned i = 0; i != Header.NumColumns; ++i) in parseImpl() 220 for (unsigned i = 0; i != Header.NumColumns; ++i) { in dump() 229 for (unsigned i = 0; i != Header.NumColumns; ++i) in dump() [all …]
|
/external/llvm-project/llvm/include/llvm/Transforms/Utils/ |
D | MatrixUtils.h | 36 unsigned NumColumns; member 66 TileInfo(unsigned NumRows, unsigned NumColumns, unsigned NumInner, in TileInfo() 68 : NumRows(NumRows), NumColumns(NumColumns), NumInner(NumInner), in TileInfo()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | LowerMatrixIntrinsics.cpp | 178 unsigned NumColumns; member 180 ShapeInfo(unsigned NumRows = 0, unsigned NumColumns = 0) in ShapeInfo() 181 : NumRows(NumRows), NumColumns(NumColumns) {} in ShapeInfo() 183 ShapeInfo(Value *NumRows, Value *NumColumns) in ShapeInfo() 185 NumColumns(cast<ConstantInt>(NumColumns)->getZExtValue()) {} in ShapeInfo() 188 return NumRows == other.NumRows && NumColumns == other.NumColumns; in operator ==() 195 assert(NumRows == 0 || NumColumns != 0); in operator bool() 229 assert(VType->getNumElements() == SI.NumRows * SI.NumColumns && in getMatrix() 241 if (SI.NumRows == M.getNumRows() && SI.NumColumns == M.getNumColumns()) in getMatrix() 271 << SIter->second.NumColumns << " for " << *V << "\n"); in setShapeInfo() [all …]
|
/external/llvm-project/llvm/lib/Transforms/Scalar/ |
D | LowerMatrixIntrinsics.cpp | 228 MatrixTy(unsigned NumRows, unsigned NumColumns, Type *EltTy) in MatrixTy() argument 231 unsigned D = isColumnMajor() ? NumColumns : NumRows; in MatrixTy() 234 EltTy, isColumnMajor() ? NumRows : NumColumns))); in MatrixTy() 346 unsigned NumColumns; member 350 ShapeInfo(unsigned NumRows = 0, unsigned NumColumns = 0) in ShapeInfo() 351 : NumRows(NumRows), NumColumns(NumColumns), in ShapeInfo() 354 ShapeInfo(Value *NumRows, Value *NumColumns) in ShapeInfo() 356 cast<ConstantInt>(NumColumns)->getZExtValue()) {} in ShapeInfo() 359 return NumRows == other.NumRows && NumColumns == other.NumColumns; in operator ==() 366 assert(NumRows == 0 || NumColumns != 0); in operator bool() [all …]
|
/external/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFUnitIndex.h | 35 uint32_t NumColumns; member 84 return makeArrayRef(ColumnKinds.get(), Header.NumColumns); in getColumnKinds()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFUnitIndex.h | 36 uint32_t NumColumns; member 95 return makeArrayRef(ColumnKinds.get(), Header.NumColumns); in getColumnKinds()
|
/external/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFUnitIndex.h | 83 uint32_t NumColumns; member 148 return makeArrayRef(ColumnKinds.get(), Header.NumColumns); in getColumnKinds()
|
/external/llvm/lib/Support/ |
D | SourceMgr.cpp | 403 size_t NumColumns = LineContents.size(); in print() local 406 std::string CaretLine(NumColumns+1, ' '); in print() 424 if (unsigned(ColumnNo) <= NumColumns) in print() 427 CaretLine[NumColumns] = '^'; in print()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | SourceMgr.cpp | 423 size_t NumColumns = LineContents.size(); in print() local 426 std::string CaretLine(NumColumns+1, ' '); in print() 444 if (unsigned(ColumnNo) <= NumColumns) in print() 447 CaretLine[NumColumns] = '^'; in print()
|
/external/llvm-project/llvm/lib/Support/ |
D | SourceMgr.cpp | 531 size_t NumColumns = LineContents.size(); in print() local 534 std::string CaretLine(NumColumns + 1, ' '); in print() 551 if (unsigned(ColumnNo) <= NumColumns) in print() 554 CaretLine[NumColumns] = '^'; in print()
|
/external/llvm-project/llvm/lib/Transforms/Utils/ |
D | MatrixUtils.cpp | 84 CreateLoop(Start, End, B.getInt64(NumColumns), B.getInt64(TileSize), in CreateTiledLoops()
|
/external/llvm-project/llvm/lib/IR/ |
D | Verifier.cpp | 5075 ConstantInt *NumColumns; in visitIntrinsicCall() local 5082 NumColumns = cast<ConstantInt>(Call.getArgOperand(4)); in visitIntrinsicCall() 5091 NumColumns = cast<ConstantInt>(Call.getArgOperand(2)); in visitIntrinsicCall() 5099 NumColumns = cast<ConstantInt>(Call.getArgOperand(4)); in visitIntrinsicCall() 5107 NumColumns = cast<ConstantInt>(Call.getArgOperand(5)); in visitIntrinsicCall() 5132 NumRows->getZExtValue() * NumColumns->getZExtValue(), in visitIntrinsicCall()
|
/external/llvm-project/clang/include/clang/AST/ |
D | Type.h | 3448 unsigned NumColumns; 3463 unsigned getNumColumns() const { return NumColumns; } 3486 unsigned NumRows, unsigned NumColumns, 3490 ID.AddInteger(NumColumns);
|
D | ASTContext.h | 1379 unsigned NumColumns) const;
|
/external/llvm-project/clang/lib/AST/ |
D | ASTContext.cpp | 3981 unsigned NumColumns) const { in getConstantMatrixType() 3983 ConstantMatrixType::Profile(ID, ElementTy, NumRows, NumColumns, in getConstantMatrixType() 3989 ConstantMatrixType::isDimensionValid(NumColumns) && in getConstantMatrixType() 3998 getConstantMatrixType(getCanonicalType(ElementTy), NumRows, NumColumns); in getConstantMatrixType() 4006 ConstantMatrixType(ElementTy, NumRows, NumColumns, Canonical); in getConstantMatrixType()
|
D | Type.cpp | 312 NumColumns(nColumns) {} in ConstantMatrixType()
|
/external/llvm-project/clang/lib/Sema/ |
D | TreeTransform.h | 900 unsigned NumColumns); 14043 QualType ElementType, unsigned NumRows, unsigned NumColumns) { in RebuildConstantMatrixType() argument 14045 NumColumns); in RebuildConstantMatrixType()
|
/external/llvm-project/clang/include/clang/Basic/ |
D | Attr.td | 2623 let Args = [ExprArgument<"NumRows">, ExprArgument<"NumColumns">];
|
/external/llvm-project/clang/include/clang/Sema/ |
D | Sema.h | 1801 QualType BuildMatrixType(QualType T, Expr *NumRows, Expr *NumColumns,
|