Home
last modified time | relevance | path

Searched refs:SectSize (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/llvm/tools/llvm-profgen/
H A DProfiledBinary.cpp425 uint64_t SectSize = Section.getSize(); in dissassembleSymbol() local
429 : SectionOffset + SectSize; in dissassembleSymbol()
603 uint64_t SectSize = Section.getSize(); in disassemble() local
604 if (!SectSize) in disassemble()
608 TextSections.insert({SectionOffset, SectSize}); in disassemble()
615 << format("0x%" PRIx64, Section.getAddress() + SectSize) in disassemble()
/llvm-project-15.0.7/llvm/tools/sancov/
H A Dsancov.cpp775 uint64_t SectSize = Section.getSize(); in getObjectCoveragePoints() local
776 if (!SectSize) in getObjectCoveragePoints()
/llvm-project-15.0.7/llvm/lib/Object/
H A DMachOObjectFile.cpp1941 uint64_t SectSize; in getSectionSize() local
1946 SectSize = Sect.size; in getSectionSize()
1951 SectSize = Sect.size; in getSectionSize()
1955 return SectSize; in getSectionSize()
1959 if (FileSize - SectOffset < SectSize) in getSectionSize()
1961 return SectSize; in getSectionSize()
/llvm-project-15.0.7/llvm/tools/llvm-objdump/
H A DMachODump.cpp1527 uint64_t SectSize = Sect->getSize(); in DumpLiteralPointerSection() local
1555 for (uint64_t i = lp - SectAddress; i < SectSize && Contents[i] != '\0'; in DumpLiteralPointerSection()
3297 uint64_t SectSize = ((*(info->Sections))[SectIdx]).getSize(); in get_pointer_64() local
3298 if (SectSize == 0) in get_pointer_64()
3314 if (Address >= SectAddress && Address < SectAddress + SectSize) { in get_pointer_64()
3317 left = SectSize - offset; in get_pointer_64()
7564 uint64_t SectSize = Sections[SectIdx].getSize(); in DisassembleMachO() local
7569 if (Start > SectSize) { in DisassembleMachO()
7593 uint64_t End = containsNextSym ? std::min(NextSym, SectSize) : SectSize; in DisassembleMachO()
7713 uint64_t SectSize = Sections[SectIdx].getSize(); in DisassembleMachO() local
[all …]
H A Dllvm-objdump.cpp1411 uint64_t SectSize = Section.getSize(); in disassembleObject() local
1412 if (!SectSize) in disassembleObject()
1496 uint64_t End = std::min<uint64_t>(SectionAddr + SectSize, StopAddress); in disassembleObject()