[llvm] [BOLT][AArch64] Support for pointer authentication (v2) (PR #120064)

Paschalis Mpeis via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 17 08:00:04 PDT 2025


================
@@ -0,0 +1,42 @@
+# RUN: llvm-mc -filetype=obj -triple aarch64-unknown-unknown %s -o %t.o
+# RUN: %clang %cflags  %t.o -o %t.exe -Wl,-q
+
+# RUN: llvm-objdump %t.exe -d > %t.exe.dump
+# RUN: llvm-objdump --dwarf=frames %t.exe -D > %t.exe.dump-dwarf
----------------
paschalis-mpeis wrote:

Do we need `-disassemble-all` here, or would `-d` be enough?
Or better yet, since python processes a single function, can use:
`--disassemble-symbols=foo`

Note: I noticed your bolted `.dump-dwarf` doesn't include any `.text`.
Still, you could use a single file that contains just the `.text` of foo.
What do you think?

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


More information about the llvm-commits mailing list