Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/tools/llvm-profgen/
H A DProfiledBinary.cpp467 uint64_t SectSize = Section.getSize(); in dissassembleSymbol() local
470 (SI + 1 < SE) ? Symbols[SI + 1].Addr : SectionAddress + SectSize; in dissassembleSymbol()
678 uint64_t SectSize = Section.getSize(); in disassemble() local
679 if (!SectSize) in disassemble()
683 TextSections.insert({SectionAddress, SectSize}); in disassemble()
690 << format("0x%" PRIx64, Section.getAddress() + SectSize) in disassemble()
/openbsd-src/gnu/llvm/llvm/tools/sancov/
H A Dsancov.cpp761 uint64_t SectSize = Section.getSize(); in getObjectCoveragePoints() local
762 if (!SectSize) in getObjectCoveragePoints()
/openbsd-src/gnu/llvm/llvm/lib/Object/
H A DMachOObjectFile.cpp1950 uint64_t SectSize; in getSectionSize() local
1955 SectSize = Sect.size; in getSectionSize()
1960 SectSize = Sect.size; in getSectionSize()
1964 return SectSize; in getSectionSize()
1968 if (FileSize - SectOffset < SectSize) in getSectionSize()
1970 return SectSize; in getSectionSize()
/openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/
H A DMachODump.cpp1758 uint64_t SectSize = Sect->getSize(); in DumpLiteralPointerSection() local
1786 for (uint64_t i = lp - SectAddress; i < SectSize && Contents[i] != '\0'; in DumpLiteralPointerSection()
3531 uint64_t SectSize = ((*(info->Sections))[SectIdx]).getSize(); in get_pointer_64() local
3532 if (SectSize == 0) in get_pointer_64()
3548 if (Address >= SectAddress && Address < SectAddress + SectSize) { in get_pointer_64()
3551 left = SectSize - offset; in get_pointer_64()
7825 uint64_t SectSize = Sections[SectIdx].getSize(); in DisassembleMachO() local
7830 if (Start > SectSize) { in DisassembleMachO()
7854 uint64_t End = containsNextSym ? std::min(NextSym, SectSize) : SectSize; in DisassembleMachO()
7974 uint64_t SectSize = Sections[SectIdx].getSize(); in DisassembleMachO() local
[all …]
H A Dllvm-objdump.cpp1461 uint64_t SectSize = Section.getSize(); in disassembleObject() local
1462 if (!SectSize) in disassembleObject()
1636 uint64_t End = std::min<uint64_t>(SectionAddr + SectSize, StopAddress); in disassembleObject()