[lld] [llvm] [llvm-objdump][ARM] Find ELF file PLT entries for arm, thumb (PR #130764)

Peter Smith via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 13 07:48:39 PDT 2025


================
@@ -431,6 +443,129 @@ class ARMMCInstrAnalysis : public MCInstrAnalysis {
   std::optional<uint64_t>
   evaluateMemoryOperandAddress(const MCInst &Inst, const MCSubtargetInfo *STI,
                                uint64_t Addr, uint64_t Size) const override;
+
+  std::vector<std::pair<uint64_t, uint64_t>>
+  findPltEntries(uint64_t PltSectionVA, ArrayRef<uint8_t> PltContents,
+                 const MCSubtargetInfo &STI) const override {
+    llvm::endianness DataEndianness = STI.getTargetTriple().isLittleEndian()
+                                          ? endianness::little
+                                          : endianness::big;
+    llvm::endianness InstrEndianness =
+        STI.checkFeatures("+big-endian-instructions") ? endianness::big
+                                                      : endianness::little;
+
+    // Do a lightweight parsing of PLT entries.
+    std::vector<std::pair<uint64_t, uint64_t>> Result;
+    if (STI.checkFeatures("+thumb-mode")) {
+      for (uint64_t Byte = 0, End = PltContents.size(); Byte + 12 < End;
+           Byte += 16) {
+        // Expected instruction sequence:
+        //
+        // movw ip, #lower16
+        // movt ip, #upper16
+        // add ip, pc
+        // ldr.w pc, [ip]
+        // b . -4
+
+        // Check for movw.
+        uint32_t MovwPart1 =
+            support::endian::read16(PltContents.data() + Byte, InstrEndianness);
+        if ((MovwPart1 & 0xffb0) != 0xf200)
+          continue;
+
+        uint32_t MovwPart2 = support::endian::read16(
+            PltContents.data() + Byte + 2, InstrEndianness);
+        if ((MovwPart2 & 0x8f00) != 0xc00)
+          continue;
+
+        uint64_t OffsetLower =
+            (MovwPart2 & 0xff) + ((MovwPart2 & 0x7000) >> 4) +
+            ((MovwPart1 & 0x400) << 1) + ((MovwPart1 & 0xf) << 12);
+
+        // Check for movt.
+        uint32_t MovtPart1 = support::endian::read16(
+            PltContents.data() + Byte + 4, InstrEndianness);
+        if ((MovtPart1 & 0xfbf0) != 0xf2c0)
+          continue;
+
+        uint32_t MovtPart2 = support::endian::read16(
+            PltContents.data() + Byte + 6, InstrEndianness);
+        if ((MovtPart2 & 0x8f00) != 0xc00)
+          continue;
+
+        uint64_t OffsetHigher =
+            ((MovtPart2 & 0xff) << 16) + ((MovtPart2 & 0x7000) << 12) +
+            ((MovtPart1 & 0x400) << 17) + ((MovtPart1 & 0xf) << 28);
+
+        const uint16_t Insns[] = {
+            0x44fc,         // add ip, pc
+            0xf8dc, 0xf000, // ldr.w pc, [ip]
+            0xe7fc,         // b . -4
+        };
+
+        if (instructionsAreMatching(Insns, PltContents.data() + Byte + 8,
+                                    InstrEndianness)) {
+          uint64_t Offset =
----------------
smithp35 wrote:

Could we add a comment
```
// add ip, pc at Byte + 8 +thumb-pc-bias = 12
```

https://github.com/llvm/llvm-project/pull/130764


More information about the llvm-commits mailing list