From 742cf3996ed93fcafadf20bedf0a7789484ff8ef Mon Sep 17 00:00:00 2001 From: Cullen Rhodes Date: Tue, 14 Sep 2021 07:52:05 +0000 Subject: [PATCH] [AArch64] NFC: Use 'asm' in SIMDScalarCPY Fixes a warning identified in D109359. The mnemonic is also mov, not cpy. Reviewed By: dmgreen Differential Revision: https://reviews.llvm.org/D109573 --- llvm/lib/Target/AArch64/AArch64InstrFormats.td | 12 ++++++------ llvm/lib/Target/AArch64/AArch64InstrInfo.td | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/llvm/lib/Target/AArch64/AArch64InstrFormats.td b/llvm/lib/Target/AArch64/AArch64InstrFormats.td index 23b6b43..ed489be 100644 --- a/llvm/lib/Target/AArch64/AArch64InstrFormats.td +++ b/llvm/lib/Target/AArch64/AArch64InstrFormats.td @@ -7658,8 +7658,8 @@ multiclass SIMDTableLookupTied { //---------------------------------------------------------------------------- let mayLoad = 0, mayStore = 0, hasSideEffects = 0 in class BaseSIMDScalarCPY - : I<(outs regtype:$dst), (ins vectype:$src, idxtype:$idx), "mov", + string asm, string kind, Operand idxtype> + : I<(outs regtype:$dst), (ins vectype:$src, idxtype:$idx), asm, "{\t$dst, $src" # kind # "$idx" # "|\t$dst, $src$idx}", "", []>, Sched<[WriteV]> { @@ -7679,22 +7679,22 @@ class SIMDScalarCPYAlias { - def i8 : BaseSIMDScalarCPY { + def i8 : BaseSIMDScalarCPY { bits<4> idx; let Inst{20-17} = idx; let Inst{16} = 1; } - def i16 : BaseSIMDScalarCPY { + def i16 : BaseSIMDScalarCPY { bits<3> idx; let Inst{20-18} = idx; let Inst{17-16} = 0b10; } - def i32 : BaseSIMDScalarCPY { + def i32 : BaseSIMDScalarCPY { bits<2> idx; let Inst{20-19} = idx; let Inst{18-16} = 0b100; } - def i64 : BaseSIMDScalarCPY { + def i64 : BaseSIMDScalarCPY { bits<1> idx; let Inst{20} = idx; let Inst{19-16} = 0b1000; diff --git a/llvm/lib/Target/AArch64/AArch64InstrInfo.td b/llvm/lib/Target/AArch64/AArch64InstrInfo.td index e0d437d..4f09569 100644 --- a/llvm/lib/Target/AArch64/AArch64InstrInfo.td +++ b/llvm/lib/Target/AArch64/AArch64InstrInfo.td @@ -5253,7 +5253,7 @@ def : Pat<(v16i8 (int_aarch64_neon_tbx1 (v16i8 V128:$Rd), // AdvSIMD scalar CPY instruction //---------------------------------------------------------------------------- -defm CPY : SIMDScalarCPY<"cpy">; +defm CPY : SIMDScalarCPY<"mov">; //---------------------------------------------------------------------------- // AdvSIMD scalar pairwise instructions -- 2.7.4