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

via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 25 02:10:53 PDT 2025


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-backend-loongarch

Author: WÁNG Xuěruì (xen0n)

<details>
<summary>Changes</summary>

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.

---
Full diff: https://github.com/llvm/llvm-project/pull/132900.diff


2 Files Affected:

- (modified) llvm/lib/Target/LoongArch/MCTargetDesc/LoongArchInstPrinter.cpp (+11-1) 
- (added) llvm/test/MC/LoongArch/Misc/no-aliases.s (+24) 


``````````diff
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

``````````

</details>


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


More information about the llvm-commits mailing list