Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp1958 uint64_t SectSize; in getSectionSize() local
1963 SectSize = Sect.size; in getSectionSize()
1968 SectSize = Sect.size; in getSectionSize()
1972 return SectSize; in getSectionSize()
1976 if (FileSize - SectOffset < SectSize) in getSectionSize()
1978 return SectSize; in getSectionSize()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp1728 uint64_t SectSize = Sect->getSize(); in DumpLiteralPointerSection() local
1756 for (uint64_t i = lp - SectAddress; i < SectSize && Contents[i] != '\0'; in DumpLiteralPointerSection()
3497 uint64_t SectSize = ((*(info->Sections))[SectIdx]).getSize(); in get_pointer_64() local
3498 if (SectSize == 0) in get_pointer_64()
3514 if (Address >= SectAddress && Address < SectAddress + SectSize) { in get_pointer_64()
3517 left = SectSize - offset; in get_pointer_64()
7538 uint64_t SectSize = Sections[SectIdx].getSize(); in DisassembleMachO() local
7543 if (Start > SectSize) { in DisassembleMachO()
7567 uint64_t End = containsNextSym ? std::min(NextSym, SectSize) : SectSize; in DisassembleMachO()
7688 uint64_t SectSize = Sections[SectIdx].getSize(); in DisassembleMachO() local
[all …]
H A Dllvm-objdump.cpp1951 uint64_t SectSize = Section.getSize(); in disassembleObject() local
1952 if (!SectSize) in disassembleObject()
2125 uint64_t End = std::min<uint64_t>(SectionAddr + SectSize, StopAddress); in disassembleObject()