2019-07-09 17:48:05 +02:00
|
|
|
; RUN: llc -march=mips -mattr=+msa,+fp64,+mips32r2 < %s | FileCheck %s
|
|
|
|
; RUN: llc -march=mipsel -mattr=+msa,+fp64,+mips32r2 < %s | FileCheck %s
|
2013-09-24 12:46:19 +02:00
|
|
|
|
|
|
|
declare <4 x float> @llvm.mips.fmax.w(<4 x float>, <4 x float>) nounwind
|
|
|
|
declare <2 x double> @llvm.mips.fmax.d(<2 x double>, <2 x double>) nounwind
|
|
|
|
declare <4 x float> @llvm.mips.fmin.w(<4 x float>, <4 x float>) nounwind
|
|
|
|
declare <2 x double> @llvm.mips.fmin.d(<2 x double>, <2 x double>) nounwind
|
|
|
|
|
|
|
|
define void @false_v4f32(<4 x i32>* %c, <4 x float>* %a, <4 x float>* %b) nounwind {
|
|
|
|
; CHECK: false_v4f32:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <4 x float>, <4 x float>* %a
|
|
|
|
%2 = load <4 x float>, <4 x float>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
%3 = fcmp false <4 x float> %1, %2
|
|
|
|
%4 = sext <4 x i1> %3 to <4 x i32>
|
|
|
|
store <4 x i32> %4, <4 x i32>* %c
|
|
|
|
ret void
|
|
|
|
|
|
|
|
; (setcc $a, $b, SETFALSE) is always folded, so we won't get fcaf:
|
|
|
|
; CHECK-DAG: ldi.b [[R1:\$w[0-9]+]], 0
|
2013-09-24 15:33:07 +02:00
|
|
|
; CHECK-DAG: st.w [[R1]], 0($4)
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK: .size false_v4f32
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @false_v2f64(<2 x i64>* %c, <2 x double>* %a, <2 x double>* %b) nounwind {
|
|
|
|
; CHECK: false_v2f64:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <2 x double>, <2 x double>* %a
|
|
|
|
%2 = load <2 x double>, <2 x double>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
%3 = fcmp false <2 x double> %1, %2
|
|
|
|
%4 = sext <2 x i1> %3 to <2 x i64>
|
|
|
|
store <2 x i64> %4, <2 x i64>* %c
|
|
|
|
ret void
|
|
|
|
|
2014-01-27 19:45:30 +01:00
|
|
|
; (setcc $a, $b, SETFALSE) is always folded
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ldi.b [[R1:\$w[0-9]+]], 0
|
2014-01-27 19:45:30 +01:00
|
|
|
; CHECK-DAG: st.w [[R1]], 0($4)
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK: .size false_v2f64
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @oeq_v4f32(<4 x i32>* %c, <4 x float>* %a, <4 x float>* %b) nounwind {
|
|
|
|
; CHECK: oeq_v4f32:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <4 x float>, <4 x float>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <4 x float>, <4 x float>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp oeq <4 x float> %1, %2
|
|
|
|
%4 = sext <4 x i1> %3 to <4 x i32>
|
|
|
|
; CHECK-DAG: fceq.w [[R3:\$w[0-9]+]], [[R1]], [[R2]]
|
|
|
|
store <4 x i32> %4, <4 x i32>* %c
|
|
|
|
; CHECK-DAG: st.w [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size oeq_v4f32
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @oeq_v2f64(<2 x i64>* %c, <2 x double>* %a, <2 x double>* %b) nounwind {
|
|
|
|
; CHECK: oeq_v2f64:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <2 x double>, <2 x double>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <2 x double>, <2 x double>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp oeq <2 x double> %1, %2
|
|
|
|
%4 = sext <2 x i1> %3 to <2 x i64>
|
|
|
|
; CHECK-DAG: fceq.d [[R3:\$w[0-9]+]], [[R1]], [[R2]]
|
|
|
|
store <2 x i64> %4, <2 x i64>* %c
|
|
|
|
; CHECK-DAG: st.d [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size oeq_v2f64
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @oge_v4f32(<4 x i32>* %c, <4 x float>* %a, <4 x float>* %b) nounwind {
|
|
|
|
; CHECK: oge_v4f32:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <4 x float>, <4 x float>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <4 x float>, <4 x float>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp oge <4 x float> %1, %2
|
|
|
|
%4 = sext <4 x i1> %3 to <4 x i32>
|
|
|
|
; CHECK-DAG: fcle.w [[R3:\$w[0-9]+]], [[R2]], [[R1]]
|
|
|
|
store <4 x i32> %4, <4 x i32>* %c
|
|
|
|
; CHECK-DAG: st.w [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size oge_v4f32
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @oge_v2f64(<2 x i64>* %c, <2 x double>* %a, <2 x double>* %b) nounwind {
|
|
|
|
; CHECK: oge_v2f64:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <2 x double>, <2 x double>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <2 x double>, <2 x double>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp oge <2 x double> %1, %2
|
|
|
|
%4 = sext <2 x i1> %3 to <2 x i64>
|
|
|
|
; CHECK-DAG: fcle.d [[R3:\$w[0-9]+]], [[R2]], [[R1]]
|
|
|
|
store <2 x i64> %4, <2 x i64>* %c
|
|
|
|
; CHECK-DAG: st.d [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size oge_v2f64
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @ogt_v4f32(<4 x i32>* %c, <4 x float>* %a, <4 x float>* %b) nounwind {
|
|
|
|
; CHECK: ogt_v4f32:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <4 x float>, <4 x float>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <4 x float>, <4 x float>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp ogt <4 x float> %1, %2
|
|
|
|
%4 = sext <4 x i1> %3 to <4 x i32>
|
|
|
|
; CHECK-DAG: fclt.w [[R3:\$w[0-9]+]], [[R2]], [[R1]]
|
|
|
|
store <4 x i32> %4, <4 x i32>* %c
|
|
|
|
; CHECK-DAG: st.w [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size ogt_v4f32
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @ogt_v2f64(<2 x i64>* %c, <2 x double>* %a, <2 x double>* %b) nounwind {
|
|
|
|
; CHECK: ogt_v2f64:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <2 x double>, <2 x double>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <2 x double>, <2 x double>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp ogt <2 x double> %1, %2
|
|
|
|
%4 = sext <2 x i1> %3 to <2 x i64>
|
|
|
|
; CHECK-DAG: fclt.d [[R3:\$w[0-9]+]], [[R2]], [[R1]]
|
|
|
|
store <2 x i64> %4, <2 x i64>* %c
|
|
|
|
; CHECK-DAG: st.d [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size ogt_v2f64
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @ole_v4f32(<4 x i32>* %c, <4 x float>* %a, <4 x float>* %b) nounwind {
|
|
|
|
; CHECK: ole_v4f32:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <4 x float>, <4 x float>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <4 x float>, <4 x float>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp ole <4 x float> %1, %2
|
|
|
|
%4 = sext <4 x i1> %3 to <4 x i32>
|
|
|
|
; CHECK-DAG: fcle.w [[R3:\$w[0-9]+]], [[R1]], [[R2]]
|
|
|
|
store <4 x i32> %4, <4 x i32>* %c
|
|
|
|
; CHECK-DAG: st.w [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size ole_v4f32
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @ole_v2f64(<2 x i64>* %c, <2 x double>* %a, <2 x double>* %b) nounwind {
|
|
|
|
; CHECK: ole_v2f64:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <2 x double>, <2 x double>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <2 x double>, <2 x double>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp ole <2 x double> %1, %2
|
|
|
|
%4 = sext <2 x i1> %3 to <2 x i64>
|
|
|
|
; CHECK-DAG: fcle.d [[R3:\$w[0-9]+]], [[R1]], [[R2]]
|
|
|
|
store <2 x i64> %4, <2 x i64>* %c
|
|
|
|
; CHECK-DAG: st.d [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size ole_v2f64
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @olt_v4f32(<4 x i32>* %c, <4 x float>* %a, <4 x float>* %b) nounwind {
|
|
|
|
; CHECK: olt_v4f32:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <4 x float>, <4 x float>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <4 x float>, <4 x float>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp olt <4 x float> %1, %2
|
|
|
|
%4 = sext <4 x i1> %3 to <4 x i32>
|
|
|
|
; CHECK-DAG: fclt.w [[R3:\$w[0-9]+]], [[R1]], [[R2]]
|
|
|
|
store <4 x i32> %4, <4 x i32>* %c
|
|
|
|
; CHECK-DAG: st.w [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size olt_v4f32
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @olt_v2f64(<2 x i64>* %c, <2 x double>* %a, <2 x double>* %b) nounwind {
|
|
|
|
; CHECK: olt_v2f64:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <2 x double>, <2 x double>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <2 x double>, <2 x double>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp olt <2 x double> %1, %2
|
|
|
|
%4 = sext <2 x i1> %3 to <2 x i64>
|
|
|
|
; CHECK-DAG: fclt.d [[R3:\$w[0-9]+]], [[R1]], [[R2]]
|
|
|
|
store <2 x i64> %4, <2 x i64>* %c
|
|
|
|
; CHECK-DAG: st.d [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size olt_v2f64
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @one_v4f32(<4 x i32>* %c, <4 x float>* %a, <4 x float>* %b) nounwind {
|
|
|
|
; CHECK: one_v4f32:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <4 x float>, <4 x float>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <4 x float>, <4 x float>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp one <4 x float> %1, %2
|
|
|
|
%4 = sext <4 x i1> %3 to <4 x i32>
|
|
|
|
; CHECK-DAG: fcne.w [[R3:\$w[0-9]+]], [[R1]], [[R2]]
|
|
|
|
store <4 x i32> %4, <4 x i32>* %c
|
|
|
|
; CHECK-DAG: st.w [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size one_v4f32
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @one_v2f64(<2 x i64>* %c, <2 x double>* %a, <2 x double>* %b) nounwind {
|
|
|
|
; CHECK: one_v2f64:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <2 x double>, <2 x double>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <2 x double>, <2 x double>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp one <2 x double> %1, %2
|
|
|
|
%4 = sext <2 x i1> %3 to <2 x i64>
|
|
|
|
; CHECK-DAG: fcne.d [[R3:\$w[0-9]+]], [[R1]], [[R2]]
|
|
|
|
store <2 x i64> %4, <2 x i64>* %c
|
|
|
|
; CHECK-DAG: st.d [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size one_v2f64
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @ord_v4f32(<4 x i32>* %c, <4 x float>* %a, <4 x float>* %b) nounwind {
|
|
|
|
; CHECK: ord_v4f32:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <4 x float>, <4 x float>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <4 x float>, <4 x float>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp ord <4 x float> %1, %2
|
|
|
|
%4 = sext <4 x i1> %3 to <4 x i32>
|
|
|
|
; CHECK-DAG: fcor.w [[R3:\$w[0-9]+]], [[R1]], [[R2]]
|
|
|
|
store <4 x i32> %4, <4 x i32>* %c
|
|
|
|
; CHECK-DAG: st.w [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size ord_v4f32
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @ord_v2f64(<2 x i64>* %c, <2 x double>* %a, <2 x double>* %b) nounwind {
|
|
|
|
; CHECK: ord_v2f64:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <2 x double>, <2 x double>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <2 x double>, <2 x double>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp ord <2 x double> %1, %2
|
|
|
|
%4 = sext <2 x i1> %3 to <2 x i64>
|
|
|
|
; CHECK-DAG: fcor.d [[R3:\$w[0-9]+]], [[R1]], [[R2]]
|
|
|
|
store <2 x i64> %4, <2 x i64>* %c
|
|
|
|
; CHECK-DAG: st.d [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size ord_v2f64
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @ueq_v4f32(<4 x i32>* %c, <4 x float>* %a, <4 x float>* %b) nounwind {
|
|
|
|
; CHECK: ueq_v4f32:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <4 x float>, <4 x float>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <4 x float>, <4 x float>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp ueq <4 x float> %1, %2
|
|
|
|
%4 = sext <4 x i1> %3 to <4 x i32>
|
|
|
|
; CHECK-DAG: fcueq.w [[R3:\$w[0-9]+]], [[R1]], [[R2]]
|
|
|
|
store <4 x i32> %4, <4 x i32>* %c
|
|
|
|
; CHECK-DAG: st.w [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size ueq_v4f32
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @ueq_v2f64(<2 x i64>* %c, <2 x double>* %a, <2 x double>* %b) nounwind {
|
|
|
|
; CHECK: ueq_v2f64:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <2 x double>, <2 x double>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <2 x double>, <2 x double>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp ueq <2 x double> %1, %2
|
|
|
|
%4 = sext <2 x i1> %3 to <2 x i64>
|
|
|
|
; CHECK-DAG: fcueq.d [[R3:\$w[0-9]+]], [[R1]], [[R2]]
|
|
|
|
store <2 x i64> %4, <2 x i64>* %c
|
|
|
|
; CHECK-DAG: st.d [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size ueq_v2f64
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @uge_v4f32(<4 x i32>* %c, <4 x float>* %a, <4 x float>* %b) nounwind {
|
|
|
|
; CHECK: uge_v4f32:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <4 x float>, <4 x float>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <4 x float>, <4 x float>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp uge <4 x float> %1, %2
|
|
|
|
%4 = sext <4 x i1> %3 to <4 x i32>
|
|
|
|
; CHECK-DAG: fcule.w [[R3:\$w[0-9]+]], [[R2]], [[R1]]
|
|
|
|
store <4 x i32> %4, <4 x i32>* %c
|
|
|
|
; CHECK-DAG: st.w [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size uge_v4f32
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @uge_v2f64(<2 x i64>* %c, <2 x double>* %a, <2 x double>* %b) nounwind {
|
|
|
|
; CHECK: uge_v2f64:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <2 x double>, <2 x double>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <2 x double>, <2 x double>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp uge <2 x double> %1, %2
|
|
|
|
%4 = sext <2 x i1> %3 to <2 x i64>
|
|
|
|
; CHECK-DAG: fcule.d [[R3:\$w[0-9]+]], [[R2]], [[R1]]
|
|
|
|
store <2 x i64> %4, <2 x i64>* %c
|
|
|
|
; CHECK-DAG: st.d [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size uge_v2f64
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @ugt_v4f32(<4 x i32>* %c, <4 x float>* %a, <4 x float>* %b) nounwind {
|
|
|
|
; CHECK: ugt_v4f32:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <4 x float>, <4 x float>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <4 x float>, <4 x float>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp ugt <4 x float> %1, %2
|
|
|
|
%4 = sext <4 x i1> %3 to <4 x i32>
|
|
|
|
; CHECK-DAG: fcult.w [[R3:\$w[0-9]+]], [[R2]], [[R1]]
|
|
|
|
store <4 x i32> %4, <4 x i32>* %c
|
|
|
|
; CHECK-DAG: st.w [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size ugt_v4f32
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @ugt_v2f64(<2 x i64>* %c, <2 x double>* %a, <2 x double>* %b) nounwind {
|
|
|
|
; CHECK: ugt_v2f64:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <2 x double>, <2 x double>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <2 x double>, <2 x double>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp ugt <2 x double> %1, %2
|
|
|
|
%4 = sext <2 x i1> %3 to <2 x i64>
|
|
|
|
; CHECK-DAG: fcult.d [[R3:\$w[0-9]+]], [[R2]], [[R1]]
|
|
|
|
store <2 x i64> %4, <2 x i64>* %c
|
|
|
|
; CHECK-DAG: st.d [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size ugt_v2f64
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @ule_v4f32(<4 x i32>* %c, <4 x float>* %a, <4 x float>* %b) nounwind {
|
|
|
|
; CHECK: ule_v4f32:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <4 x float>, <4 x float>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <4 x float>, <4 x float>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp ule <4 x float> %1, %2
|
|
|
|
%4 = sext <4 x i1> %3 to <4 x i32>
|
|
|
|
; CHECK-DAG: fcule.w [[R3:\$w[0-9]+]], [[R1]], [[R2]]
|
|
|
|
store <4 x i32> %4, <4 x i32>* %c
|
|
|
|
; CHECK-DAG: st.w [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size ule_v4f32
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @ule_v2f64(<2 x i64>* %c, <2 x double>* %a, <2 x double>* %b) nounwind {
|
|
|
|
; CHECK: ule_v2f64:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <2 x double>, <2 x double>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <2 x double>, <2 x double>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp ule <2 x double> %1, %2
|
|
|
|
%4 = sext <2 x i1> %3 to <2 x i64>
|
|
|
|
; CHECK-DAG: fcule.d [[R3:\$w[0-9]+]], [[R1]], [[R2]]
|
|
|
|
store <2 x i64> %4, <2 x i64>* %c
|
|
|
|
; CHECK-DAG: st.d [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size ule_v2f64
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @ult_v4f32(<4 x i32>* %c, <4 x float>* %a, <4 x float>* %b) nounwind {
|
|
|
|
; CHECK: ult_v4f32:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <4 x float>, <4 x float>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <4 x float>, <4 x float>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp ult <4 x float> %1, %2
|
|
|
|
%4 = sext <4 x i1> %3 to <4 x i32>
|
|
|
|
; CHECK-DAG: fcult.w [[R3:\$w[0-9]+]], [[R1]], [[R2]]
|
|
|
|
store <4 x i32> %4, <4 x i32>* %c
|
|
|
|
; CHECK-DAG: st.w [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size ult_v4f32
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @ult_v2f64(<2 x i64>* %c, <2 x double>* %a, <2 x double>* %b) nounwind {
|
|
|
|
; CHECK: ult_v2f64:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <2 x double>, <2 x double>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <2 x double>, <2 x double>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp ult <2 x double> %1, %2
|
|
|
|
%4 = sext <2 x i1> %3 to <2 x i64>
|
|
|
|
; CHECK-DAG: fcult.d [[R3:\$w[0-9]+]], [[R1]], [[R2]]
|
|
|
|
store <2 x i64> %4, <2 x i64>* %c
|
|
|
|
; CHECK-DAG: st.d [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size ult_v2f64
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @uno_v4f32(<4 x i32>* %c, <4 x float>* %a, <4 x float>* %b) nounwind {
|
|
|
|
; CHECK: uno_v4f32:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <4 x float>, <4 x float>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <4 x float>, <4 x float>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.w [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp uno <4 x float> %1, %2
|
|
|
|
%4 = sext <4 x i1> %3 to <4 x i32>
|
|
|
|
; CHECK-DAG: fcun.w [[R3:\$w[0-9]+]], [[R1]], [[R2]]
|
|
|
|
store <4 x i32> %4, <4 x i32>* %c
|
|
|
|
; CHECK-DAG: st.w [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size uno_v4f32
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @uno_v2f64(<2 x i64>* %c, <2 x double>* %a, <2 x double>* %b) nounwind {
|
|
|
|
; CHECK: uno_v2f64:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <2 x double>, <2 x double>* %a
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <2 x double>, <2 x double>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK-DAG: ld.d [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp uno <2 x double> %1, %2
|
|
|
|
%4 = sext <2 x i1> %3 to <2 x i64>
|
|
|
|
; CHECK-DAG: fcun.d [[R3:\$w[0-9]+]], [[R1]], [[R2]]
|
|
|
|
store <2 x i64> %4, <2 x i64>* %c
|
|
|
|
; CHECK-DAG: st.d [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size uno_v2f64
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @true_v4f32(<4 x i32>* %c, <4 x float>* %a, <4 x float>* %b) nounwind {
|
|
|
|
; CHECK: true_v4f32:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <4 x float>, <4 x float>* %a
|
|
|
|
%2 = load <4 x float>, <4 x float>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
%3 = fcmp true <4 x float> %1, %2
|
|
|
|
%4 = sext <4 x i1> %3 to <4 x i32>
|
|
|
|
store <4 x i32> %4, <4 x i32>* %c
|
|
|
|
ret void
|
|
|
|
|
|
|
|
; (setcc $a, $b, SETTRUE) is always folded, so we won't get fcaf:
|
|
|
|
; CHECK-DAG: ldi.b [[R1:\$w[0-9]+]], -1
|
2013-09-24 15:33:07 +02:00
|
|
|
; CHECK-DAG: st.w [[R1]], 0($4)
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK: .size true_v4f32
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @true_v2f64(<2 x i64>* %c, <2 x double>* %a, <2 x double>* %b) nounwind {
|
|
|
|
; CHECK: true_v2f64:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <2 x double>, <2 x double>* %a
|
|
|
|
%2 = load <2 x double>, <2 x double>* %b
|
2013-09-24 12:46:19 +02:00
|
|
|
%3 = fcmp true <2 x double> %1, %2
|
|
|
|
%4 = sext <2 x i1> %3 to <2 x i64>
|
|
|
|
store <2 x i64> %4, <2 x i64>* %c
|
|
|
|
ret void
|
|
|
|
|
2014-01-27 19:45:30 +01:00
|
|
|
; (setcc $a, $b, SETTRUE) is always folded.
|
|
|
|
; CHECK-DAG: ldi.b [[R1:\$w[0-9]+]], -1
|
|
|
|
; CHECK-DAG: st.w [[R1]], 0($4)
|
2013-09-24 12:46:19 +02:00
|
|
|
; CHECK: .size true_v2f64
|
|
|
|
}
|
2013-09-24 14:04:44 +02:00
|
|
|
|
|
|
|
define void @bsel_v4f32(<4 x float>* %d, <4 x float>* %a, <4 x float>* %b,
|
|
|
|
<4 x float>* %c) nounwind {
|
|
|
|
; CHECK: bsel_v4f32:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <4 x float>, <4 x float>* %a
|
2013-09-24 14:04:44 +02:00
|
|
|
; CHECK-DAG: ld.w [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <4 x float>, <4 x float>* %b
|
2013-09-24 14:04:44 +02:00
|
|
|
; CHECK-DAG: ld.w [[R2:\$w[0-9]+]], 0($6)
|
2015-02-27 22:17:42 +01:00
|
|
|
%3 = load <4 x float>, <4 x float>* %c
|
2013-09-24 14:04:44 +02:00
|
|
|
; CHECK-DAG: ld.w [[R3:\$w[0-9]+]], 0($7)
|
|
|
|
%4 = fcmp ogt <4 x float> %1, %2
|
|
|
|
; CHECK-DAG: fclt.w [[R4:\$w[0-9]+]], [[R2]], [[R1]]
|
|
|
|
%5 = select <4 x i1> %4, <4 x float> %1, <4 x float> %3
|
[mips] BSEL's and BINS[RL] operands are reversed compared to the vselect node used in the pattern.
Summary:
Correct the match patterns and the lowerings that made the CodeGen tests pass despite the mistakes.
The original testcase that discovered the problem was SingleSource/UnitTests/SignlessType/factor.c in test-suite.
During review, we also found that some of the existing CodeGen tests were incorrect and fixed them:
* bitwise.ll: In bsel_v16i8 the IfSet/IfClear were reversed because bsel and bmnz have different operand orders and the test didn't correctly account for this. bmnz goes 'IfClear, IfSet, CondMask', while bsel goes 'CondMask, IfClear, IfSet'.
* vec.ll: In the cases where a bsel is emitted as a bmnz (they are the same operation with a different input tied to the result) the operands were in the wrong order.
* compare.ll and compare_float.ll: The bsel operand order was correct for a greater-than comparison, but a greater-than comparison instruction doesn't exist. Lowering this operation inverts the condition so the IfSet/IfClear need to be swapped to match.
The differences between BSEL, BMNZ, and BMZ and how they map to/from vselect are rather confusing. I've therefore added a note to MSA.txt to explain this in a single place in addition to the comments that explain each case.
Reviewers: matheusalmeida, jacksprat
Reviewed By: matheusalmeida
Differential Revision: http://llvm-reviews.chandlerc.com/D3028
llvm-svn: 203657
2014-03-12 12:54:00 +01:00
|
|
|
; Note that IfSet and IfClr are swapped since the condition is inverted
|
|
|
|
; CHECK-DAG: bsel.v [[R4]], [[R3]], [[R1]]
|
2013-09-24 14:04:44 +02:00
|
|
|
store <4 x float> %5, <4 x float>* %d
|
|
|
|
; CHECK-DAG: st.w [[R4]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size bsel_v4f32
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @bsel_v2f64(<2 x double>* %d, <2 x double>* %a, <2 x double>* %b,
|
|
|
|
<2 x double>* %c) nounwind {
|
|
|
|
; CHECK: bsel_v2f64:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <2 x double>, <2 x double>* %a
|
2013-09-24 14:04:44 +02:00
|
|
|
; CHECK-DAG: ld.d [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <2 x double>, <2 x double>* %b
|
2013-09-24 14:04:44 +02:00
|
|
|
; CHECK-DAG: ld.d [[R2:\$w[0-9]+]], 0($6)
|
2015-02-27 22:17:42 +01:00
|
|
|
%3 = load <2 x double>, <2 x double>* %c
|
2013-09-24 14:04:44 +02:00
|
|
|
; CHECK-DAG: ld.d [[R3:\$w[0-9]+]], 0($7)
|
|
|
|
%4 = fcmp ogt <2 x double> %1, %2
|
|
|
|
; CHECK-DAG: fclt.d [[R4:\$w[0-9]+]], [[R2]], [[R1]]
|
|
|
|
%5 = select <2 x i1> %4, <2 x double> %1, <2 x double> %3
|
[mips] BSEL's and BINS[RL] operands are reversed compared to the vselect node used in the pattern.
Summary:
Correct the match patterns and the lowerings that made the CodeGen tests pass despite the mistakes.
The original testcase that discovered the problem was SingleSource/UnitTests/SignlessType/factor.c in test-suite.
During review, we also found that some of the existing CodeGen tests were incorrect and fixed them:
* bitwise.ll: In bsel_v16i8 the IfSet/IfClear were reversed because bsel and bmnz have different operand orders and the test didn't correctly account for this. bmnz goes 'IfClear, IfSet, CondMask', while bsel goes 'CondMask, IfClear, IfSet'.
* vec.ll: In the cases where a bsel is emitted as a bmnz (they are the same operation with a different input tied to the result) the operands were in the wrong order.
* compare.ll and compare_float.ll: The bsel operand order was correct for a greater-than comparison, but a greater-than comparison instruction doesn't exist. Lowering this operation inverts the condition so the IfSet/IfClear need to be swapped to match.
The differences between BSEL, BMNZ, and BMZ and how they map to/from vselect are rather confusing. I've therefore added a note to MSA.txt to explain this in a single place in addition to the comments that explain each case.
Reviewers: matheusalmeida, jacksprat
Reviewed By: matheusalmeida
Differential Revision: http://llvm-reviews.chandlerc.com/D3028
llvm-svn: 203657
2014-03-12 12:54:00 +01:00
|
|
|
; Note that IfSet and IfClr are swapped since the condition is inverted
|
|
|
|
; CHECK-DAG: bsel.v [[R4]], [[R3]], [[R1]]
|
2013-09-24 14:04:44 +02:00
|
|
|
store <2 x double> %5, <2 x double>* %d
|
|
|
|
; CHECK-DAG: st.d [[R4]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size bsel_v2f64
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @bseli_v4f32(<4 x float>* %d, <4 x float>* %a, <4 x float>* %b,
|
|
|
|
<4 x float>* %c) nounwind {
|
|
|
|
; CHECK: bseli_v4f32:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <4 x float>, <4 x float>* %a
|
2013-09-24 14:04:44 +02:00
|
|
|
; CHECK-DAG: ld.w [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <4 x float>, <4 x float>* %b
|
2013-09-24 14:04:44 +02:00
|
|
|
; CHECK-DAG: ld.w [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp ogt <4 x float> %1, %2
|
|
|
|
; CHECK-DAG: fclt.w [[R4:\$w[0-9]+]], [[R2]], [[R1]]
|
|
|
|
%4 = select <4 x i1> %3, <4 x float> %1, <4 x float> zeroinitializer
|
[mips] BSEL's and BINS[RL] operands are reversed compared to the vselect node used in the pattern.
Summary:
Correct the match patterns and the lowerings that made the CodeGen tests pass despite the mistakes.
The original testcase that discovered the problem was SingleSource/UnitTests/SignlessType/factor.c in test-suite.
During review, we also found that some of the existing CodeGen tests were incorrect and fixed them:
* bitwise.ll: In bsel_v16i8 the IfSet/IfClear were reversed because bsel and bmnz have different operand orders and the test didn't correctly account for this. bmnz goes 'IfClear, IfSet, CondMask', while bsel goes 'CondMask, IfClear, IfSet'.
* vec.ll: In the cases where a bsel is emitted as a bmnz (they are the same operation with a different input tied to the result) the operands were in the wrong order.
* compare.ll and compare_float.ll: The bsel operand order was correct for a greater-than comparison, but a greater-than comparison instruction doesn't exist. Lowering this operation inverts the condition so the IfSet/IfClear need to be swapped to match.
The differences between BSEL, BMNZ, and BMZ and how they map to/from vselect are rather confusing. I've therefore added a note to MSA.txt to explain this in a single place in addition to the comments that explain each case.
Reviewers: matheusalmeida, jacksprat
Reviewed By: matheusalmeida
Differential Revision: http://llvm-reviews.chandlerc.com/D3028
llvm-svn: 203657
2014-03-12 12:54:00 +01:00
|
|
|
; Note that IfSet and IfClr are swapped since the condition is inverted
|
|
|
|
; CHECK-DAG: bsel.v [[R4]], [[R3:\$w[0-9]+]], [[R1]]
|
2013-09-24 14:04:44 +02:00
|
|
|
store <4 x float> %4, <4 x float>* %d
|
|
|
|
; CHECK-DAG: st.w [[R4]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size bseli_v4f32
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @bseli_v2f64(<2 x double>* %d, <2 x double>* %a, <2 x double>* %b,
|
|
|
|
<2 x double>* %c) nounwind {
|
|
|
|
; CHECK: bseli_v2f64:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <2 x double>, <2 x double>* %a
|
2013-09-24 14:04:44 +02:00
|
|
|
; CHECK-DAG: ld.d [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <2 x double>, <2 x double>* %b
|
2013-09-24 14:04:44 +02:00
|
|
|
; CHECK-DAG: ld.d [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = fcmp ogt <2 x double> %1, %2
|
|
|
|
; CHECK-DAG: fclt.d [[R4:\$w[0-9]+]], [[R2]], [[R1]]
|
|
|
|
%4 = select <2 x i1> %3, <2 x double> %1, <2 x double> zeroinitializer
|
[mips] BSEL's and BINS[RL] operands are reversed compared to the vselect node used in the pattern.
Summary:
Correct the match patterns and the lowerings that made the CodeGen tests pass despite the mistakes.
The original testcase that discovered the problem was SingleSource/UnitTests/SignlessType/factor.c in test-suite.
During review, we also found that some of the existing CodeGen tests were incorrect and fixed them:
* bitwise.ll: In bsel_v16i8 the IfSet/IfClear were reversed because bsel and bmnz have different operand orders and the test didn't correctly account for this. bmnz goes 'IfClear, IfSet, CondMask', while bsel goes 'CondMask, IfClear, IfSet'.
* vec.ll: In the cases where a bsel is emitted as a bmnz (they are the same operation with a different input tied to the result) the operands were in the wrong order.
* compare.ll and compare_float.ll: The bsel operand order was correct for a greater-than comparison, but a greater-than comparison instruction doesn't exist. Lowering this operation inverts the condition so the IfSet/IfClear need to be swapped to match.
The differences between BSEL, BMNZ, and BMZ and how they map to/from vselect are rather confusing. I've therefore added a note to MSA.txt to explain this in a single place in addition to the comments that explain each case.
Reviewers: matheusalmeida, jacksprat
Reviewed By: matheusalmeida
Differential Revision: http://llvm-reviews.chandlerc.com/D3028
llvm-svn: 203657
2014-03-12 12:54:00 +01:00
|
|
|
; Note that IfSet and IfClr are swapped since the condition is inverted
|
|
|
|
; CHECK-DAG: bsel.v [[R4]], [[R3:\$w[0-9]+]], [[R1]]
|
2013-09-24 14:04:44 +02:00
|
|
|
store <2 x double> %4, <2 x double>* %d
|
|
|
|
; CHECK-DAG: st.d [[R4]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size bseli_v2f64
|
|
|
|
}
|
2013-09-24 14:18:31 +02:00
|
|
|
|
|
|
|
define void @max_v4f32(<4 x float>* %c, <4 x float>* %a, <4 x float>* %b) nounwind {
|
|
|
|
; CHECK: max_v4f32:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <4 x float>, <4 x float>* %a
|
2013-09-24 14:18:31 +02:00
|
|
|
; CHECK-DAG: ld.w [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <4 x float>, <4 x float>* %b
|
2013-09-24 14:18:31 +02:00
|
|
|
; CHECK-DAG: ld.w [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = tail call <4 x float> @llvm.mips.fmax.w(<4 x float> %1, <4 x float> %2)
|
|
|
|
; CHECK-DAG: fmax.w [[R3:\$w[0-9]+]], [[R1]], [[R2]]
|
|
|
|
store <4 x float> %3, <4 x float>* %c
|
|
|
|
; CHECK-DAG: st.w [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size max_v4f32
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @max_v2f64(<2 x double>* %c, <2 x double>* %a, <2 x double>* %b) nounwind {
|
|
|
|
; CHECK: max_v2f64:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <2 x double>, <2 x double>* %a
|
2013-09-24 14:18:31 +02:00
|
|
|
; CHECK-DAG: ld.d [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <2 x double>, <2 x double>* %b
|
2013-09-24 14:18:31 +02:00
|
|
|
; CHECK-DAG: ld.d [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = tail call <2 x double> @llvm.mips.fmax.d(<2 x double> %1, <2 x double> %2)
|
|
|
|
; CHECK-DAG: fmax.d [[R3:\$w[0-9]+]], [[R1]], [[R2]]
|
|
|
|
store <2 x double> %3, <2 x double>* %c
|
|
|
|
; CHECK-DAG: st.d [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size max_v2f64
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @min_v4f32(<4 x float>* %c, <4 x float>* %a, <4 x float>* %b) nounwind {
|
|
|
|
; CHECK: min_v4f32:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <4 x float>, <4 x float>* %a
|
2013-09-24 14:18:31 +02:00
|
|
|
; CHECK-DAG: ld.w [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <4 x float>, <4 x float>* %b
|
2013-09-24 14:18:31 +02:00
|
|
|
; CHECK-DAG: ld.w [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = tail call <4 x float> @llvm.mips.fmin.w(<4 x float> %1, <4 x float> %2)
|
|
|
|
; CHECK-DAG: fmin.w [[R3:\$w[0-9]+]], [[R1]], [[R2]]
|
|
|
|
store <4 x float> %3, <4 x float>* %c
|
|
|
|
; CHECK-DAG: st.w [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size min_v4f32
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @min_v2f64(<2 x double>* %c, <2 x double>* %a, <2 x double>* %b) nounwind {
|
|
|
|
; CHECK: min_v2f64:
|
|
|
|
|
2015-02-27 22:17:42 +01:00
|
|
|
%1 = load <2 x double>, <2 x double>* %a
|
2013-09-24 14:18:31 +02:00
|
|
|
; CHECK-DAG: ld.d [[R1:\$w[0-9]+]], 0($5)
|
2015-02-27 22:17:42 +01:00
|
|
|
%2 = load <2 x double>, <2 x double>* %b
|
2013-09-24 14:18:31 +02:00
|
|
|
; CHECK-DAG: ld.d [[R2:\$w[0-9]+]], 0($6)
|
|
|
|
%3 = tail call <2 x double> @llvm.mips.fmin.d(<2 x double> %1, <2 x double> %2)
|
|
|
|
; CHECK-DAG: fmin.d [[R3:\$w[0-9]+]], [[R1]], [[R2]]
|
|
|
|
store <2 x double> %3, <2 x double>* %c
|
|
|
|
; CHECK-DAG: st.d [[R3]], 0($4)
|
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: .size min_v2f64
|
|
|
|
}
|