[llvm] [ARM] Fix MRC cp10 and cp11 warning (PR #126407)
via llvm-commits
llvm-commits at lists.llvm.org
Sat Feb 8 23:33:21 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-backend-arm
Author: None (hstk30-hw)
<details>
<summary>Changes</summary>
The MRC format is
MRC GPRwithAPSR:$Rt, p_imm:$cop, imm0_7:$opc1,
c_imm:$CRn, c_imm:$CRm, 0, pred:$p
The $cop is the second operand.
---
Full diff: https://github.com/llvm/llvm-project/pull/126407.diff
2 Files Affected:
- (modified) llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp (+2-2)
- (modified) llvm/test/MC/ARM/diagnostics.s (+4)
``````````diff
diff --git a/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp b/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
index 01a271327049f19..e1af3150a840317 100644
--- a/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
+++ b/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
@@ -77,8 +77,8 @@ static bool getMCRDeprecationInfo(MCInst &MI, const MCSubtargetInfo &STI,
static bool getMRCDeprecationInfo(MCInst &MI, const MCSubtargetInfo &STI,
std::string &Info) {
if (STI.hasFeature(llvm::ARM::HasV7Ops) &&
- ((MI.getOperand(0).isImm() && MI.getOperand(0).getImm() == 10) ||
- (MI.getOperand(0).isImm() && MI.getOperand(0).getImm() == 11))) {
+ ((MI.getOperand(1).isImm() && MI.getOperand(1).getImm() == 10) ||
+ (MI.getOperand(1).isImm() && MI.getOperand(1).getImm() == 11))) {
Info = "since v7, cp10 and cp11 are reserved for advanced SIMD or floating "
"point instructions";
return true;
diff --git a/llvm/test/MC/ARM/diagnostics.s b/llvm/test/MC/ARM/diagnostics.s
index fa23a7da1e40489..8f91d820bd80fcd 100644
--- a/llvm/test/MC/ARM/diagnostics.s
+++ b/llvm/test/MC/ARM/diagnostics.s
@@ -173,6 +173,10 @@
@ p10 and p11 are reserved for NEON
mcr p10, #2, r5, c1, c1, #4
mcrr p11, #8, r5, r4, c1
+ mrc p10, #7, r5, c1, c1, #0
+ mrc p11, #7, r5, c1, c1, #0
+@ CHECK-WARN: warning: since v7, cp10 and cp11 are reserved for advanced SIMD or floating point instructions
+@ CHECK-WARN: warning: since v7, cp10 and cp11 are reserved for advanced SIMD or floating point instructions
@ CHECK-WARN: warning: since v7, cp10 and cp11 are reserved for advanced SIMD or floating point instructions
@ CHECK-WARN: warning: since v7, cp10 and cp11 are reserved for advanced SIMD or floating point instructions
``````````
</details>
https://github.com/llvm/llvm-project/pull/126407
More information about the llvm-commits
mailing list