summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Atanasyan <simon@atanasyan.com>2019-10-11 12:33:12 +0000
committerTom Stellard <tstellar@redhat.com>2019-11-07 18:03:48 -0800
commit94970749d6f75921e2bf34a437db9d14121c0596 (patch)
tree81b61138a021e601720a93bed263f72bbac2cb9a
parent7423211163942fde6665f39b0be29170d3c1ee2b (diff)
downloadllvm-94970749d6f75921e2bf34a437db9d14121c0596.tar.gz
Merging r374544 and r374548:
------------------------------------------------------------------------ r374544 | atanasyan | 2019-10-11 05:33:12 -0700 (Fri, 11 Oct 2019) | 12 lines [mips] Fix loading "double" immediate into a GPR and FPR If a "double" (64-bit) value has zero low 32-bits, it's possible to load such value into a GP/FP registers as an instruction immediate. But now assembler loads only high 32-bits of the value. For example, if a target register is GPR the `li.d $4, 1.0` instruction converts into the `lui $4, 16368` one. As a result, we get `0x3FF00000` in the register. While a correct representation of the `1.0` value is `0x3FF0000000000000`. The patch fixes that. Differential Revision: https://reviews.llvm.org/D68776 ------------------------------------------------------------------------ ------------------------------------------------------------------------ r374548 | atanasyan | 2019-10-11 05:58:37 -0700 (Fri, 11 Oct 2019) | 1 line [mips] Follow-up to r374544. Fix test case. ------------------------------------------------------------------------
-rw-r--r--llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp20
-rw-r--r--llvm/test/MC/Mips/macro-li.d.s30
2 files changed, 34 insertions, 16 deletions
diff --git a/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp b/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
index 8927fc7eaf31..56f47dc8b8dd 100644
--- a/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
+++ b/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
@@ -3399,8 +3399,8 @@ bool MipsAsmParser::expandLoadDoubleImmToGPR(MCInst &Inst, SMLoc IDLoc,
if (LoImmOp64 == 0) {
if (isABI_N32() || isABI_N64()) {
- if (loadImmediate(HiImmOp64, FirstReg, Mips::NoRegister, false, true,
- IDLoc, Out, STI))
+ if (loadImmediate(ImmOp64, FirstReg, Mips::NoRegister, false, true, IDLoc,
+ Out, STI))
return true;
} else {
if (loadImmediate(HiImmOp64, FirstReg, Mips::NoRegister, true, true,
@@ -3473,12 +3473,20 @@ bool MipsAsmParser::expandLoadDoubleImmToFPR(MCInst &Inst, bool Is64FPU,
!((HiImmOp64 & 0xffff0000) && (HiImmOp64 & 0x0000ffff))) {
// FIXME: In the case where the constant is zero, we can load the
// register directly from the zero register.
- if (loadImmediate(HiImmOp64, TmpReg, Mips::NoRegister, true, true, IDLoc,
+
+ if (isABI_N32() || isABI_N64()) {
+ if (loadImmediate(ImmOp64, TmpReg, Mips::NoRegister, false, false, IDLoc,
+ Out, STI))
+ return true;
+ TOut.emitRR(Mips::DMTC1, FirstReg, TmpReg, IDLoc, STI);
+ return false;
+ }
+
+ if (loadImmediate(HiImmOp64, TmpReg, Mips::NoRegister, true, false, IDLoc,
Out, STI))
return true;
- if (isABI_N32() || isABI_N64())
- TOut.emitRR(Mips::DMTC1, FirstReg, TmpReg, IDLoc, STI);
- else if (hasMips32r2()) {
+
+ if (hasMips32r2()) {
TOut.emitRR(Mips::MTC1, FirstReg, Mips::ZERO, IDLoc, STI);
TOut.emitRRR(Mips::MTHC1_D32, FirstReg, FirstReg, TmpReg, IDLoc, STI);
} else {
diff --git a/llvm/test/MC/Mips/macro-li.d.s b/llvm/test/MC/Mips/macro-li.d.s
index e54b69ea0862..8af82ec608e0 100644
--- a/llvm/test/MC/Mips/macro-li.d.s
+++ b/llvm/test/MC/Mips/macro-li.d.s
@@ -49,12 +49,16 @@ li.d $4, 1.12345
# N32-N64: ld $4, 0($1) # encoding: [0x00,0x00,0x24,0xdc]
li.d $4, 1
-# ALL: lui $4, 16368 # encoding: [0xf0,0x3f,0x04,0x3c]
-# O32: addiu $5, $zero, 0 # encoding: [0x00,0x00,0x05,0x24]
+# O32: lui $4, 16368 # encoding: [0xf0,0x3f,0x04,0x3c]
+# O32: addiu $5, $zero, 0 # encoding: [0x00,0x00,0x05,0x24]
+# N32-N64: ori $4, $zero, 65472 # encoding: [0xc0,0xff,0x04,0x34]
+# N32-N64: dsll $4, $4, 46 # encoding: [0xbc,0x23,0x04,0x00]
li.d $4, 1.0
-# ALL: lui $4, 16368 # encoding: [0xf0,0x3f,0x04,0x3c]
-# O32: addiu $5, $zero, 0 # encoding: [0x00,0x00,0x05,0x24]
+# O32: lui $4, 16368 # encoding: [0xf0,0x3f,0x04,0x3c]
+# O32: addiu $5, $zero, 0 # encoding: [0x00,0x00,0x05,0x24]
+# N32-N64: ori $4, $zero, 65472 # encoding: [0xc0,0xff,0x04,0x34]
+# N32-N64: dsll $4, $4, 46 # encoding: [0xbc,0x23,0x04,0x00]
li.d $4, 12345678910
# ALL: .section .rodata,"a",@progbits
@@ -153,8 +157,10 @@ li.d $4, 0.4
# N32-N64: ld $4, 0($1) # encoding: [0x00,0x00,0x24,0xdc]
li.d $4, 1.5
-# ALL: lui $4, 16376 # encoding: [0xf8,0x3f,0x04,0x3c]
-# O32: addiu $5, $zero, 0 # encoding: [0x00,0x00,0x05,0x24]
+# O32: lui $4, 16376 # encoding: [0xf8,0x3f,0x04,0x3c]
+# O32: addiu $5, $zero, 0 # encoding: [0x00,0x00,0x05,0x24]
+# N32-N64: ori $4, $zero, 65504 # encoding: [0xe0,0xff,0x04,0x34]
+# N32-N64: dsll $4, $4, 46 # encoding: [0xbc,0x23,0x04,0x00]
li.d $4, 12345678910.12345678910
# ALL: .section .rodata,"a",@progbits
@@ -271,7 +277,8 @@ li.d $f4, 1
# CHECK-MIPS32r2: lui $1, 16368 # encoding: [0xf0,0x3f,0x01,0x3c]
# CHECK-MIPS32r2: mtc1 $zero, $f4 # encoding: [0x00,0x20,0x80,0x44]
# CHECK-MIPS32r2: mthc1 $1, $f4 # encoding: [0x00,0x20,0xe1,0x44]
-# N32-N64: lui $1, 16368 # encoding: [0xf0,0x3f,0x01,0x3c]
+# N32-N64: ori $1, $zero, 65472 # encoding: [0xc0,0xff,0x01,0x34]
+# N32-N64: dsll $1, $1, 46 # encoding: [0xbc,0x0b,0x01,0x00]
# N32-N64: dmtc1 $1, $f4 # encoding: [0x00,0x20,0xa1,0x44]
li.d $f4, 1.0
@@ -281,7 +288,8 @@ li.d $f4, 1.0
# CHECK-MIPS32r2: lui $1, 16368 # encoding: [0xf0,0x3f,0x01,0x3c]
# CHECK-MIPS32r2: mtc1 $zero, $f4 # encoding: [0x00,0x20,0x80,0x44]
# CHECK-MIPS32r2: mthc1 $1, $f4 # encoding: [0x00,0x20,0xe1,0x44]
-# N32-N64: lui $1, 16368 # encoding: [0xf0,0x3f,0x01,0x3c]
+# N32-N64: ori $1, $zero, 65472 # encoding: [0xc0,0xff,0x01,0x34]
+# N32-N64: dsll $1, $1, 46 # encoding: [0xbc,0x0b,0x01,0x00]
# N32-N64: dmtc1 $1, $f4 # encoding: [0x00,0x20,0xa1,0x44]
li.d $f4, 12345678910
@@ -360,7 +368,8 @@ li.d $f4, 1.5
# CHECK-MIPS32r2: lui $1, 16376 # encoding: [0xf8,0x3f,0x01,0x3c]
# CHECK-MIPS32r2: mtc1 $zero, $f4 # encoding: [0x00,0x20,0x80,0x44]
# CHECK-MIPS32r2: mthc1 $1, $f4 # encoding: [0x00,0x20,0xe1,0x44]
-# N32-N64: lui $1, 16376 # encoding: [0xf8,0x3f,0x01,0x3c]
+# N32-N64: ori $1, $zero, 65504 # encoding: [0xe0,0xff,0x01,0x34]
+# N32-N64: dsll $1, $1, 46 # encoding: [0xbc,0x0b,0x01,0x00]
# N32-N64: dmtc1 $1, $f4 # encoding: [0x00,0x20,0xa1,0x44]
li.d $f4, 2.5
@@ -370,7 +379,8 @@ li.d $f4, 2.5
# CHECK-MIPS32r2: lui $1, 16388 # encoding: [0x04,0x40,0x01,0x3c]
# CHECK-MIPS32r2: mtc1 $zero, $f4 # encoding: [0x00,0x20,0x80,0x44]
# CHECK-MIPS32r2: mthc1 $1, $f4 # encoding: [0x00,0x20,0xe1,0x44]
-# N32-N64: lui $1, 16388 # encoding: [0x04,0x40,0x01,0x3c]
+# N32-N64: ori $1, $zero, 32776 # encoding: [0x08,0x80,0x01,0x34]
+# N32-N64: dsll $1, $1, 47 # encoding: [0xfc,0x0b,0x01,0x00]
# N32-N64: dmtc1 $1, $f4 # encoding: [0x00,0x20,0xa1,0x44]
li.d $f4, 2.515625