Home
last modified time | relevance | path

Searched refs:getDataSize (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h1147 uint64_t getDataSize(const FuncRecordTy *Record) { in getDataSize() function
1173 return {MappingBuf, size_t(getDataSize<FuncRecordTy, Endian>(Record))}; in getCoverageMappingOutOfLine()
1181 return {MappingBuf + getDataSize<FuncRecordTy, Endian>(Record), Record + 1}; in advanceByOneOutOfLine()
1201 template <llvm::endianness Endian> uint64_t getDataSize() const { in getDataSize() function
1202 return accessors::getDataSize<ThisT, Endian>(this); in getDataSize()
1252 template <llvm::endianness Endian> uint64_t getDataSize() const { in getDataSize() function
1253 return accessors::getDataSize<ThisT, Endian>(this); in getDataSize()
1296 template <llvm::endianness Endian> uint64_t getDataSize() const { in getDataSize() function
1297 return accessors::getDataSize<ThisT, Endian>(this); in getDataSize()
1319 return StringRef(&CoverageMapping, getDataSize<Endian>()); in getCoverageMapping()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfCorrelator.h51 std::optional<size_t> getDataSize() const; in getNamesSize()
138 size_t getDataSize() const { return Data.size(); }
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfCorrelator.cpp151 std::optional<size_t> InstrProfCorrelator::getDataSize() const { in getDataSize() function in InstrProfCorrelator
153 return C->getDataSize(); in getDataSize()
155 return C->getDataSize(); in getDataSize()
H A DInstrProfReader.cpp643 DataEnd = Data + Correlator->getDataSize(); in readHeader()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DRecordLayoutBuilder.cpp824 CharUnits getDataSize() const { in getDataSize() function in __anonbcc347f50111::ItaniumRecordLayoutBuilder
1290 Offset = getDataSize().alignTo(AlignTo); in LayoutBase()
1300 if (InferAlignment && Offset < getDataSize().alignTo(AlignTo)) { in LayoutBase()
1312 setSize(std::max(getSize(), getDataSize())); in LayoutBase()
1438 setDataSize(SL.getDataSize()); in Layout()
1439 setSize(getDataSize()); in Layout()
1867 (IsUnion || IsOverlappingEmptyField) ? CharUnits::Zero() : getDataSize(); in LayoutField()
1928 std::max(Layout.getNonVirtualSize(), Layout.getDataSize()); in LayoutField()
2082 getDataSize() != CharUnits::Zero()) in LayoutField()
2083 FieldOffset = getDataSize().alignTo(AlignTo); in LayoutField()
[all …]
H A DASTContext.cpp1786 Info.Width = layout.getDataSize(); in getTypeInfoDataSizeInChars()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DASTStructExtractor.cpp100 struct_layout->getDataSize().getQuantity() - m_function.m_return_offset; in ExtractFromFunctionDecl()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DRecordLayout.h206 CharUnits getDataSize() const { return DataSize; } in getDataSize() function
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGRecordLayoutBuilder.cpp315 isNoUniqueAddress ? Layout.getDataSize() : Layout.getSize(); in lowerUnion()
373 Layout.getDataSize() % StorageAlignment) && in lowerUnion()
376 if (Layout.getDataSize() % StorageAlignment) in lowerUnion()
873 return Layout.getDataSize(); in calculateTailClippingOffset()
H A DCodeGenTBAA.cpp451 Context.getASTRecordLayout(BaseRD).getDataSize().getQuantity(); in getBaseTypeInfoHelper()
H A DCGObjCMac.cpp6429 InstanceSize = RL.getDataSize().getQuantity(); in GetClassSizeInfo()
/freebsd/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp3244 OS << "Found " << Correlator->getDataSize() << " functions\n"; in showDebugInfoCorrelation()