diff options
author | Alexis Engelke <engelke@in.tum.de> | 2025-06-25 17:09:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-25 17:09:25 +0200 |
commit | 36819eaed124d6a7339a151b6172cd543fe3579a (patch) | |
tree | 90c8f954d8019ca8ee0406ed8a4b430a364e9336 /llvm/docs/CommandGuide/llvm-objdump.rst | |
parent | 10edc3df99f798f29ae829af2bc9fc6103ceb403 (diff) | |
download | llvm-36819eaed124d6a7339a151b6172cd543fe3579a.zip llvm-36819eaed124d6a7339a151b6172cd543fe3579a.tar.gz llvm-36819eaed124d6a7339a151b6172cd543fe3579a.tar.bz2 |
[llvm-objdump] Support --symbolize-operand on AArch64
Similar to the existing implementations for X86 and PPC, support
symbolizing branch targets for AArch64. Do not omit the address for ADRP
as the target is typically not at an intended location.
Pull Request: https://github.com/llvm/llvm-project/pull/145009
Diffstat (limited to 'llvm/docs/CommandGuide/llvm-objdump.rst')
-rw-r--r-- | llvm/docs/CommandGuide/llvm-objdump.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/CommandGuide/llvm-objdump.rst b/llvm/docs/CommandGuide/llvm-objdump.rst index 5e5eacc..c9f0379 100644 --- a/llvm/docs/CommandGuide/llvm-objdump.rst +++ b/llvm/docs/CommandGuide/llvm-objdump.rst @@ -278,7 +278,7 @@ OPTIONS any analysis with a special representation (i.e. BlockFrequency, BranchProbability, etc) are printed as raw hex values. - Only works with PowerPC objects or X86 linked images. + Only supported for AArch64, BPF, PowerPC, and X86. Example: A non-symbolized branch instruction with a local target and pc-relative memory access like |