2017-12-18 23:56:40 +08:00
|
|
|
; RUN: llc < %s -verify-machineinstrs -march=mips64el -mcpu=mips4 \
|
|
|
|
; RUN: -target-abi=n64 | FileCheck %s -check-prefixes=ALL,64
|
|
|
|
; RUN: llc < %s -verify-machineinstrs -march=mips64el -mcpu=mips64 \
|
|
|
|
; RUN: -target-abi=n64 | FileCheck %s -check-prefixes=ALL,64
|
|
|
|
; RUN: llc < %s -verify-machineinstrs -march=mips64el -mcpu=mips64r2 \
|
|
|
|
; RUN: -target-abi=n64 | FileCheck %s -check-prefixes=ALL,64R2
|
2012-04-12 06:13:04 +08:00
|
|
|
|
|
|
|
declare double @copysign(double, double) nounwind readnone
|
|
|
|
|
|
|
|
declare float @copysignf(float, float) nounwind readnone
|
|
|
|
|
|
|
|
define float @func2(float %d, double %f) nounwind readnone {
|
|
|
|
entry:
|
2016-02-29 23:58:12 +08:00
|
|
|
; ALL-LABEL: func2:
|
|
|
|
|
2013-07-13 07:33:22 +08:00
|
|
|
; 64-DAG: lui $[[T0:[0-9]+]], 32767
|
|
|
|
; 64-DAG: ori $[[MSK0:[0-9]+]], $[[T0]], 65535
|
|
|
|
; 64-DAG: and $[[AND0:[0-9]+]], ${{[0-9]+}}, $[[MSK0]]
|
|
|
|
; 64-DAG: dsrl $[[DSRL:[0-9]+]], ${{[0-9]+}}, 63
|
|
|
|
; 64-DAG: sll $[[SLL0:[0-9]+]], $[[DSRL]], 0
|
|
|
|
; 64-DAG: sll $[[SLL1:[0-9]+]], $[[SLL0]], 31
|
|
|
|
; 64: or $[[OR:[0-9]+]], $[[AND0]], $[[SLL1]]
|
|
|
|
; 64: mtc1 $[[OR]], $f0
|
2012-04-12 06:13:04 +08:00
|
|
|
|
2016-02-29 23:26:54 +08:00
|
|
|
; 64R2: dextu ${{[0-9]+}}, ${{[0-9]+}}, 63, 1
|
2012-04-12 06:13:04 +08:00
|
|
|
; 64R2: ins $[[INS:[0-9]+]], ${{[0-9]+}}, 31, 1
|
|
|
|
; 64R2: mtc1 $[[INS]], $f0
|
|
|
|
|
|
|
|
%add = fadd float %d, 1.000000e+00
|
|
|
|
%conv = fptrunc double %f to float
|
|
|
|
%call = tail call float @copysignf(float %add, float %conv) nounwind readnone
|
|
|
|
ret float %call
|
|
|
|
}
|
|
|
|
|
|
|
|
define double @func3(double %d, float %f) nounwind readnone {
|
|
|
|
entry:
|
2016-02-29 23:58:12 +08:00
|
|
|
; ALL-LABEL: func3:
|
|
|
|
|
2017-01-27 19:36:52 +08:00
|
|
|
; 64: mfc1 $[[MFC:[0-9]+]], $f13
|
2017-01-26 18:46:07 +08:00
|
|
|
; 64: daddiu $[[R1:[0-9]+]], $zero, 1
|
2017-01-27 19:36:52 +08:00
|
|
|
; 64: dmfc1 $[[R0:[0-9]+]], ${{.*}}
|
2016-09-01 22:53:53 +08:00
|
|
|
; 64: dsll $[[R2:[0-9]+]], $[[R1]], 63
|
|
|
|
; 64: daddiu $[[R3:[0-9]+]], $[[R2]], -1
|
2016-02-29 23:58:12 +08:00
|
|
|
; 64: and $[[AND0:[0-9]+]], $[[R0]], $[[R3]]
|
2016-09-01 22:53:53 +08:00
|
|
|
; 64: srl $[[SRL:[0-9]+]], $[[MFC:[0-9]+]], 31
|
|
|
|
; 64: dsll $[[DSLL:[0-9]+]], $[[SRL]], 63
|
2016-02-29 23:58:12 +08:00
|
|
|
; 64: or $[[OR:[0-9]+]], $[[AND0]], $[[DSLL]]
|
|
|
|
; 64: dmtc1 $[[OR]], $f0
|
2012-04-12 06:13:04 +08:00
|
|
|
|
|
|
|
; 64R2: ext ${{[0-9]+}}, ${{[0-9]+}}, 31, 1
|
[mips] Pick the right variant of DINS upfront and enable target instruction verification
This patch complements D16810 "[mips] Make isel select the correct DEXT variant
up front.". Now ISel picks the right variant of DINS, so now there is no need
to replace DINS with the appropriate variant during
MipsMCCodeEmitter::encodeInstruction().
This patch also enables target specific instruction verification for ins, dins,
dinsm, dinsu, ext, dext, dextm, dextu. These instructions have constraints that
are checked when generating MipsISD::Ins and MipsISD::Ext nodes, but these
constraints are not checked during instruction selection. Adding machine
verification should catch outstanding cases.
Finally, correct a bug that instruction verification uncovered, where the
position operand of a DINSU generated during lowering was being silently
and accidently corrected to the correct value.
Reviewers: slthakur
Differential Revision: https://reviews.llvm.org/D34809
llvm-svn: 313254
2017-09-14 18:58:00 +08:00
|
|
|
; 64R2: dinsu $[[INS:[0-9]+]], ${{[0-9]+}}, 63, 1
|
2012-04-12 06:13:04 +08:00
|
|
|
; 64R2: dmtc1 $[[INS]], $f0
|
|
|
|
|
|
|
|
%add = fadd double %d, 1.000000e+00
|
|
|
|
%conv = fpext float %f to double
|
|
|
|
%call = tail call double @copysign(double %add, double %conv) nounwind readnone
|
|
|
|
ret double %call
|
|
|
|
}
|