[llvm] [LoongArch][MC] Add support for disassembly option "no-aliases" (PR #132900)

WÁNG Xuěruì via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 25 02:10:20 PDT 2025


https://github.com/xen0n created https://github.com/llvm/llvm-project/pull/132900

This parallels the GNU Binutils feature's usage. A hidden command-line option `--loongarch-no-aliases` is also added, similar to how `--loongarch-numeric-reg` is for the `numeric` option.

>From b5da6b35bc133c5864f19779098f8afe596b24cd Mon Sep 17 00:00:00 2001
From: WANG Xuerui <git at xen0n.name>
Date: Tue, 25 Mar 2025 17:07:55 +0800
Subject: [PATCH] [LoongArch][MC] Add support for disassembly option
 "no-aliases"

This parallels the GNU Binutils feature's usage. A hidden command-line
option `--loongarch-no-aliases` is also added, similar to how
`--loongarch-numeric-reg` is for the `numeric` option.
---
 .../MCTargetDesc/LoongArchInstPrinter.cpp     | 12 +++++++++-
 llvm/test/MC/LoongArch/Misc/no-aliases.s      | 24 +++++++++++++++++++
 2 files changed, 35 insertions(+), 1 deletion(-)
 create mode 100644 llvm/test/MC/LoongArch/Misc/no-aliases.s

diff --git a/llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchInstPrinter.cpp b/llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchInstPrinter.cpp
index 62f276338ddc5..e59cac7726a67 100644
--- a/llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchInstPrinter.cpp
+++ b/llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchInstPrinter.cpp
@@ -25,6 +25,11 @@ using namespace llvm;
 #define PRINT_ALIAS_INSTR
 #include "LoongArchGenAsmWriter.inc"
 
+static cl::opt<bool>
+    NoAliases("loongarch-no-aliases",
+              cl::desc("Disable the emission of assembler pseudo instructions"),
+              cl::init(false), cl::Hidden);
+
 static cl::opt<bool>
     NumericReg("loongarch-numeric-reg",
                cl::desc("Print numeric register names rather than the ABI "
@@ -37,6 +42,11 @@ static cl::opt<bool>
 // be an easier way to allow these options in all these tools, without doing it
 // this way.
 bool LoongArchInstPrinter::applyTargetSpecificCLOption(StringRef Opt) {
+  if (Opt == "no-aliases") {
+    PrintAliases = false;
+    return true;
+  }
+
   if (Opt == "numeric") {
     NumericReg = true;
     return true;
@@ -49,7 +59,7 @@ void LoongArchInstPrinter::printInst(const MCInst *MI, uint64_t Address,
                                      StringRef Annot,
                                      const MCSubtargetInfo &STI,
                                      raw_ostream &O) {
-  if (!printAliasInstr(MI, Address, STI, O))
+  if (!PrintAliases || NoAliases || !printAliasInstr(MI, Address, STI, O))
     printInstruction(MI, Address, STI, O);
   printAnnotation(O, Annot);
 }
diff --git a/llvm/test/MC/LoongArch/Misc/no-aliases.s b/llvm/test/MC/LoongArch/Misc/no-aliases.s
new file mode 100644
index 0000000000000..921e3296f0fda
--- /dev/null
+++ b/llvm/test/MC/LoongArch/Misc/no-aliases.s
@@ -0,0 +1,24 @@
+# RUN: llvm-mc --triple=loongarch32 --loongarch-no-aliases %s \
+# RUN:     | FileCheck %s
+# RUN: llvm-mc --triple=loongarch32 -M no-aliases %s \
+# RUN:     | FileCheck %s
+# RUN: llvm-mc --triple=loongarch32 --filetype=obj %s -o %t.32
+# RUN: llvm-objdump -d -M no-aliases %t.32 | FileCheck %s
+
+# RUN: llvm-mc --triple=loongarch64 --loongarch-no-aliases %s \
+# RUN:     | FileCheck %s
+# RUN: llvm-mc --triple=loongarch64 -M no-aliases %s \
+# RUN:     | FileCheck %s
+# RUN: llvm-mc --triple=loongarch64 --filetype=obj %s -o %t.64
+# RUN: llvm-objdump -d -M no-aliases %t.64 | FileCheck %s
+
+# Also test passing multiple disassembly options at once.
+# RUN: llvm-objdump -d -M no-aliases,numeric %t.64 | FileCheck --check-prefix=CHECK-NUMERIC %s
+
+foo:
+    # CHECK:              or $a0, $r21, $zero
+    # CHECK-NEXT:         jirl $zero, $ra, 0
+    # CHECK-NUMERIC:      or $r4, $r21, $r0
+    # CHECK-NUMERIC-NEXT: jirl $r0, $r1, 0
+    move $a0, $r21
+    ret



More information about the llvm-commits mailing list