[lld] [llvm] [llvm-objdump][ARM] Find ELF file PLT entries for arm, thumb (PR #130764)
Fangrui Song via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 17 19:52:33 PDT 2025
================
@@ -1770,9 +1775,34 @@ disassembleObject(ObjectFile &Obj, const ObjectFile &DbgObj,
if (Obj.isELF() && Obj.sections().empty())
createFakeELFSections(Obj);
+ DisassemblerTarget *PltTarget = DT;
+ auto SectionNames = getSectionNames(Obj);
+ if (SecondaryTarget && isArmElf(Obj)) {
+ auto PltSectionRef = SectionNames.find(".plt");
+ if (PltSectionRef != SectionNames.end()) {
+ bool PltIsThumb = false;
+ for (auto [Addr, SymbolName] : AllMappingSymbols[PltSectionRef->second]) {
+ if (Addr == 0) {
+ if (SymbolName == 't') {
+ PltIsThumb = true;
+ break;
+ }
+ if (SymbolName == 'a') {
----------------
MaskRay wrote:
remove braces when the body is a single-line simple stmt
https://github.com/llvm/llvm-project/pull/130764
More information about the llvm-commits
mailing list