Searched refs:Sizes (Results 1 - 20 of 20) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A DSectionSizes.cpp17 static size_t getNameColumnWidth(const SectionSizes &Sizes, argument
21 for (const auto &DebugSec : Sizes.DebugSectionSizes) {
28 static size_t getSizeColumnWidth(const SectionSizes &Sizes, argument
32 for (const auto &DebugSec : Sizes.DebugSectionSizes) {
40 const SectionSizes &Sizes,
45 size_t NameColWidth = getNameColumnWidth(Sizes, SectionNameTitle);
46 size_t SizeColWidth = getSizeColumnWidth(Sizes, SectionSizeTitle);
62 for (const auto &DebugSec : Sizes.DebugSectionSizes) {
68 static_cast<double>(Sizes.TotalObjectSize) * 100)
73 OS << " Total Size: " << Sizes
39 prettyPrintSectionSizes(const ObjectFile &Obj, const SectionSizes &Sizes, raw_ostream &OS) argument
81 calculateSectionSizes(const ObjectFile &Obj, SectionSizes &Sizes, const Twine &Filename) argument
110 SectionSizes Sizes; local
[all...]
H A Dllvm-dwarfdump.h32 void calculateSectionSizes(const object::ObjectFile &Obj, SectionSizes &Sizes,
H A DStatistics.cpp509 static void printSectionSizes(raw_ostream &OS, const SectionSizes &Sizes) { argument
510 for (const auto &DebugSec : Sizes.DebugSectionSizes)
537 SectionSizes Sizes; local
538 calculateSectionSizes(Obj, Sizes, Filename);
662 printSectionSizes(OS, Sizes);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DDelinearization.cpp100 SmallVector<const SCEV *, 3> Subscripts, Sizes; local
101 SE->delinearize(AccessFn, Subscripts, Sizes, SE->getElementSize(Inst));
102 if (Subscripts.size() == 0 || Sizes.size() == 0 ||
103 Subscripts.size() != Sizes.size()) {
112 O << "[" << *Sizes[i] << "]"; local
113 O << " with elements of " << *Sizes[Size - 1] << " bytes.\n"; local
H A DLoopCacheAnalysis.cpp127 OS << ", Sizes: ";
128 for (const SCEV *Size : R.Sizes)
278 const SCEV *ElemSize = Sizes.back();
289 const SCEV *ElemSize = Sizes.back();
321 assert(Sizes.empty() && "Sizes should be empty");
345 SE.delinearize(AccessFn, Subscripts, Sizes,
348 if (Subscripts.empty() || Sizes.empty() ||
349 Subscripts.size() != Sizes.size()) {
356 Sizes
[all...]
H A DStackSafetyAnalysis.cpp283 ConstantRange Sizes = SE.getSignedRange(Expr); local
284 if (Sizes.getUpper().isNegative() || isUnsafe(Sizes))
286 Sizes = Sizes.sextOrTrunc(PointerSize);
288 Sizes.getUpper() - 1);
H A DScalarEvolution.cpp10923 SmallVectorImpl<const SCEV *> &Sizes) {
10938 Sizes.push_back(Step);
10960 if (!findArrayDimensionsRec(SE, Terms, Sizes))
10963 Sizes.push_back(Step);
11017 SmallVectorImpl<const SCEV *> &Sizes,
11064 if (NewTerms.empty() || !findArrayDimensionsRec(*this, NewTerms, Sizes)) {
11065 Sizes.clear();
11069 // The last element to be pushed into Sizes is the size of an element.
11070 Sizes.push_back(ElementSize);
11073 dbgs() << "Sizes
[all...]
H A DDependenceAnalysis.cpp3414 SmallVector<const SCEV *, 4> Sizes; local
3415 SE->findArrayDimensions(Terms, Sizes, ElementSize);
3418 SE->computeAccessFunctions(SrcAR, SrcSubscripts, Sizes);
3419 SE->computeAccessFunctions(DstAR, DstSubscripts, Sizes);
3439 if (!isKnownLessThan(SrcSubscripts[I], Sizes[I - 1]))
3445 if (!isKnownLessThan(DstSubscripts[I], Sizes[I - 1]))
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp1050 OMPMappableExprListSizeTy Sizes;
1051 Sizes.NumVars = Vars.size();
1052 Sizes.NumUniqueDeclarations = getUniqueDeclarationsTotalNumber(Declarations);
1053 Sizes.NumComponentLists = ComponentLists.size();
1054 Sizes.NumComponents = getComponentsTotalNumber(ComponentLists);
1069 2 * Sizes.NumVars, Sizes.NumUniqueDeclarations,
1070 Sizes.NumUniqueDeclarations + Sizes.NumComponentLists,
1071 Sizes
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPrintfRuntimeBinding.cpp204 raw_string_ostream Sizes(AStreamHolder);
206 Sizes << CI->getNumArgOperands() - 1;
207 Sizes << ':';
281 Sizes << ArgSize << ':';
291 Sizes << "\\a";
294 Sizes << "\\b";
297 Sizes << "\\f";
300 Sizes << "\\n";
303 Sizes << "\\r";
306 Sizes << "\\
[all...]
H A DAMDGPURegisterBankInfo.cpp306 unsigned Sizes[NumOps]; local
309 Sizes[I] = getSizeInBits(Reg, MRI, *TRI);
322 Operands[OpIdx] = AMDGPU::getValueMapping(Entry.RegBanks[I], Sizes[I]);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
H A DMSFBuilder.cpp294 ulittle32_t *Sizes = Allocator.Allocate<ulittle32_t>(StreamData.size()); local
295 L.StreamSizes = ArrayRef<ulittle32_t>(Sizes, StreamData.size());
298 Sizes[I] = StreamData[I].first;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h4838 /// \param Sizes All required sizes to build a mappable clause. It includes 1)
4848 const OMPMappableExprListSizeTy &Sizes,
4852 Sizes.NumVars),
4853 NumUniqueDeclarations(Sizes.NumUniqueDeclarations),
4854 NumComponentLists(Sizes.NumComponentLists),
4855 NumComponents(Sizes.NumComponents) {
5389 /// \param Sizes All required sizes to build a mappable clause. It includes 1)
5400 const OMPMappableExprListSizeTy &Sizes)
5401 : OMPMappableExprListClause(llvm::omp::OMPC_map, Locs, Sizes,
5416 /// \param Sizes Al
4846 OMPMappableExprListClause( OpenMPClauseKind K, const OMPVarListLocTy &Locs, const OMPMappableExprListSizeTy &Sizes, NestedNameSpecifierLoc *MapperQualifierLocPtr = nullptr, DeclarationNameInfo *MapperIdInfoPtr = nullptr) argument
5394 OMPMapClause(ArrayRef<OpenMPMapModifierKind> MapModifiers, ArrayRef<SourceLocation> MapModifiersLoc, NestedNameSpecifierLoc MapperQualifierLoc, DeclarationNameInfo MapperIdInfo, OpenMPMapClauseKind MapType, bool MapTypeIsImplicit, SourceLocation MapLoc, const OMPVarListLocTy &Locs, const OMPMappableExprListSizeTy &Sizes) argument
5421 OMPMapClause(const OMPMappableExprListSizeTy &Sizes) argument
6305 OMPToClause(NestedNameSpecifierLoc MapperQualifierLoc, DeclarationNameInfo MapperIdInfo, const OMPVarListLocTy &Locs, const OMPMappableExprListSizeTy &Sizes) argument
6319 OMPToClause(const OMPMappableExprListSizeTy &Sizes) argument
6424 OMPFromClause(NestedNameSpecifierLoc MapperQualifierLoc, DeclarationNameInfo MapperIdInfo, const OMPVarListLocTy &Locs, const OMPMappableExprListSizeTy &Sizes) argument
6438 OMPFromClause(const OMPMappableExprListSizeTy &Sizes) argument
6540 OMPUseDevicePtrClause(const OMPVarListLocTy &Locs, const OMPMappableExprListSizeTy &Sizes) argument
6552 OMPUseDevicePtrClause(const OMPMappableExprListSizeTy &Sizes) argument
6704 OMPUseDeviceAddrClause(const OMPVarListLocTy &Locs, const OMPMappableExprListSizeTy &Sizes) argument
6716 OMPUseDeviceAddrClause(const OMPMappableExprListSizeTy &Sizes) argument
6808 OMPIsDevicePtrClause(const OMPVarListLocTy &Locs, const OMPMappableExprListSizeTy &Sizes) argument
6819 OMPIsDevicePtrClause(const OMPMappableExprListSizeTy &Sizes) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLoopCacheAnalysis.h43 /// Sizes -> [m][o][4]
137 SmallVector<const SCEV *, 3> Sizes;
H A DScalarEvolution.h979 /// Compute the array dimensions Sizes from the set of Terms extracted from
983 SmallVectorImpl<const SCEV *> &Sizes,
996 /// Return in Subscripts the access functions for each dimension in Sizes
1000 SmallVectorImpl<const SCEV *> &Sizes);
1007 /// the size of the individual array dimensions in \p Sizes. Both lists have
1013 SmallVectorImpl<int> &Sizes);
1080 SmallVectorImpl<const SCEV *> &Sizes,
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp786 Sizes.reserve(Shareds.size());
820 Sizes.emplace_back(
842 Sizes.emplace_back(SizeInChars, Size);
857 assert(!Size && !Sizes[N].second &&
4592 SmallVector<llvm::Value *, 4> Sizes; local
4640 Sizes.push_back(Size);
4642 return Sizes;
4734 SmallVector<llvm::Value *, 4> Sizes = local
4736 for (llvm::Value *Size : Sizes) {
6072 auto Sizes local
7223 generateInfoForComponentList( OpenMPMapClauseKind MapType, ArrayRef<OpenMPMapModifierKind> MapModifiers, OMPClauseMappableExprCommon::MappableExprComponentListRef Components, MapBaseValuesArrayTy &BasePointers, MapValuesArrayTy &Pointers, MapValuesArrayTy &Sizes, MapFlagsArrayTy &Types, StructRangeInfoTy &PartialStruct, bool IsFirstComponentList, bool IsImplicit, bool ForDeviceAddr = false, ArrayRef<OMPClauseMappableExprCommon::MappableExprComponentListRef> OverlappedElements = llvm::None) const argument
7844 emitCombinedEntry(MapBaseValuesArrayTy &BasePointers, MapValuesArrayTy &Pointers, MapValuesArrayTy &Sizes, MapFlagsArrayTy &Types, MapFlagsArrayTy &CurTypes, const StructRangeInfoTy &PartialStruct) const argument
7880 generateAllInfo(MapBaseValuesArrayTy &BasePointers, MapValuesArrayTy &Pointers, MapValuesArrayTy &Sizes, MapFlagsArrayTy &Types) const argument
8162 generateAllInfoForMapper(MapBaseValuesArrayTy &BasePointers, MapValuesArrayTy &Pointers, MapValuesArrayTy &Sizes, MapFlagsArrayTy &Types) const argument
8233 generateInfoForLambdaCaptures( const ValueDecl *VD, llvm::Value *Arg, MapBaseValuesArrayTy &BasePointers, MapValuesArrayTy &Pointers, MapValuesArrayTy &Sizes, MapFlagsArrayTy &Types, llvm::DenseMap<llvm::Value *, llvm::Value *> &LambdaPointers) const argument
8327 generateInfoForCapture(const CapturedStmt::Capture *Cap, llvm::Value *Arg, MapBaseValuesArrayTy &BasePointers, MapValuesArrayTy &Pointers, MapValuesArrayTy &Sizes, MapFlagsArrayTy &Types, StructRangeInfoTy &PartialStruct) const argument
8505 generateInfoForDeclareTargetLink(MapBaseValuesArrayTy &BasePointers, MapValuesArrayTy &Pointers, MapValuesArrayTy &Sizes, MapFlagsArrayTy &Types) const argument
8627 emitOffloadingArrays(CodeGenFunction &CGF, MappableExprsHandler::MapBaseValuesArrayTy &BasePointers, MappableExprsHandler::MapValuesArrayTy &Pointers, MappableExprsHandler::MapValuesArrayTy &Sizes, MappableExprsHandler::MapFlagsArrayTy &MapTypes, CGOpenMPRuntime::TargetDataInfo &Info) argument
9016 MappableExprsHandler::MapValuesArrayTy Sizes; local
10591 llvm::SmallVector<unsigned, 8> Sizes; local
[all...]
H A DCGOpenMPRuntime.h153 /// Sizes of the reduction items in chars.
154 SmallVector<std::pair<llvm::Value *, llvm::Value *>, 4> Sizes; member in class:clang::CodeGen::ReductionCodeGen
214 return Sizes[N];
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeIndexDiscovery.cpp46 constexpr uint32_t Sizes[] = { local
60 return 2 + Sizes[N - LF_NUMERIC];
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp11882 OMPMappableExprListSizeTy Sizes;
11883 Sizes.NumVars = Record.readInt();
11884 Sizes.NumUniqueDeclarations = Record.readInt();
11885 Sizes.NumComponentLists = Record.readInt();
11886 Sizes.NumComponents = Record.readInt();
11887 C = OMPMapClause::CreateEmpty(Context, Sizes);
11915 OMPMappableExprListSizeTy Sizes;
11916 Sizes.NumVars = Record.readInt();
11917 Sizes.NumUniqueDeclarations = Record.readInt();
11918 Sizes
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp731 auto NoSize = [](const SmallSet<unsigned,2> &Sizes, MVT T) -> bool {
732 return !Sizes.count(T.getSizeInBits());

Completed in 371 milliseconds