2011-07-01 08:42:17 +08:00
|
|
|
; RUN: opt -instsimplify -S < %s | FileCheck %s
|
|
|
|
|
|
|
|
define i64 @test0() {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test0(
|
|
|
|
; CHECK: ret i64 undef
|
|
|
|
;
|
2011-07-01 08:42:17 +08:00
|
|
|
%r = mul i64 undef, undef
|
|
|
|
ret i64 %r
|
|
|
|
}
|
|
|
|
|
|
|
|
define i64 @test1() {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test1(
|
|
|
|
; CHECK: ret i64 undef
|
|
|
|
;
|
2011-07-01 08:42:17 +08:00
|
|
|
%r = mul i64 3, undef
|
|
|
|
ret i64 %r
|
|
|
|
}
|
|
|
|
|
|
|
|
define i64 @test2() {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test2(
|
|
|
|
; CHECK: ret i64 undef
|
|
|
|
;
|
2011-07-01 08:42:17 +08:00
|
|
|
%r = mul i64 undef, 3
|
|
|
|
ret i64 %r
|
|
|
|
}
|
|
|
|
|
|
|
|
define i64 @test3() {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test3(
|
|
|
|
; CHECK: ret i64 0
|
|
|
|
;
|
2011-07-01 08:42:17 +08:00
|
|
|
%r = mul i64 undef, 6
|
|
|
|
ret i64 %r
|
|
|
|
}
|
|
|
|
|
|
|
|
define i64 @test4() {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test4(
|
|
|
|
; CHECK: ret i64 0
|
|
|
|
;
|
2011-07-01 08:42:17 +08:00
|
|
|
%r = mul i64 6, undef
|
|
|
|
ret i64 %r
|
|
|
|
}
|
|
|
|
|
|
|
|
define i64 @test5() {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test5(
|
|
|
|
; CHECK: ret i64 undef
|
|
|
|
;
|
2011-07-01 08:42:17 +08:00
|
|
|
%r = and i64 undef, undef
|
|
|
|
ret i64 %r
|
|
|
|
}
|
|
|
|
|
|
|
|
define i64 @test6() {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test6(
|
|
|
|
; CHECK: ret i64 undef
|
|
|
|
;
|
2011-07-01 08:42:17 +08:00
|
|
|
%r = or i64 undef, undef
|
|
|
|
ret i64 %r
|
|
|
|
}
|
|
|
|
|
|
|
|
define i64 @test7() {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test7(
|
|
|
|
; CHECK: ret i64 undef
|
|
|
|
;
|
2011-07-01 08:42:17 +08:00
|
|
|
%r = udiv i64 undef, 1
|
|
|
|
ret i64 %r
|
|
|
|
}
|
|
|
|
|
|
|
|
define i64 @test8() {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test8(
|
|
|
|
; CHECK: ret i64 undef
|
|
|
|
;
|
2011-07-01 08:42:17 +08:00
|
|
|
%r = sdiv i64 undef, 1
|
|
|
|
ret i64 %r
|
|
|
|
}
|
|
|
|
|
|
|
|
define i64 @test9() {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test9(
|
|
|
|
; CHECK: ret i64 0
|
|
|
|
;
|
2011-07-01 08:42:17 +08:00
|
|
|
%r = urem i64 undef, 1
|
|
|
|
ret i64 %r
|
|
|
|
}
|
|
|
|
|
|
|
|
define i64 @test10() {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test10(
|
|
|
|
; CHECK: ret i64 0
|
|
|
|
;
|
2011-07-01 08:42:17 +08:00
|
|
|
%r = srem i64 undef, 1
|
|
|
|
ret i64 %r
|
|
|
|
}
|
|
|
|
|
|
|
|
define i64 @test11() {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test11(
|
|
|
|
; CHECK: ret i64 undef
|
|
|
|
;
|
2011-07-01 08:42:17 +08:00
|
|
|
%r = shl i64 undef, undef
|
|
|
|
ret i64 %r
|
|
|
|
}
|
|
|
|
|
2011-11-05 02:39:16 +08:00
|
|
|
define i64 @test11b(i64 %a) {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test11b(
|
|
|
|
; CHECK: ret i64 undef
|
|
|
|
;
|
2011-11-05 02:39:16 +08:00
|
|
|
%r = shl i64 %a, undef
|
|
|
|
ret i64 %r
|
|
|
|
}
|
|
|
|
|
2011-07-01 08:42:17 +08:00
|
|
|
define i64 @test12() {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test12(
|
|
|
|
; CHECK: ret i64 undef
|
|
|
|
;
|
2011-07-01 08:42:17 +08:00
|
|
|
%r = ashr i64 undef, undef
|
|
|
|
ret i64 %r
|
|
|
|
}
|
|
|
|
|
2011-11-05 02:39:16 +08:00
|
|
|
define i64 @test12b(i64 %a) {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test12b(
|
|
|
|
; CHECK: ret i64 undef
|
|
|
|
;
|
2011-11-05 02:39:16 +08:00
|
|
|
%r = ashr i64 %a, undef
|
|
|
|
ret i64 %r
|
|
|
|
}
|
|
|
|
|
2011-07-01 08:42:17 +08:00
|
|
|
define i64 @test13() {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test13(
|
|
|
|
; CHECK: ret i64 undef
|
|
|
|
;
|
2011-07-01 08:42:17 +08:00
|
|
|
%r = lshr i64 undef, undef
|
|
|
|
ret i64 %r
|
|
|
|
}
|
2011-07-01 09:03:43 +08:00
|
|
|
|
2011-11-05 02:39:16 +08:00
|
|
|
define i64 @test13b(i64 %a) {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test13b(
|
|
|
|
; CHECK: ret i64 undef
|
|
|
|
;
|
2011-11-05 02:39:16 +08:00
|
|
|
%r = lshr i64 %a, undef
|
|
|
|
ret i64 %r
|
|
|
|
}
|
|
|
|
|
2011-07-01 09:03:43 +08:00
|
|
|
define i1 @test14() {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test14(
|
|
|
|
; CHECK: ret i1 undef
|
|
|
|
;
|
2011-07-01 09:03:43 +08:00
|
|
|
%r = icmp slt i64 undef, undef
|
|
|
|
ret i1 %r
|
|
|
|
}
|
|
|
|
|
|
|
|
define i1 @test15() {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test15(
|
|
|
|
; CHECK: ret i1 undef
|
|
|
|
;
|
2011-07-01 09:03:43 +08:00
|
|
|
%r = icmp ult i64 undef, undef
|
|
|
|
ret i1 %r
|
|
|
|
}
|
|
|
|
|
|
|
|
define i64 @test16(i64 %a) {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test16(
|
|
|
|
; CHECK: ret i64 undef
|
|
|
|
;
|
2011-07-01 09:03:43 +08:00
|
|
|
%r = select i1 undef, i64 %a, i64 undef
|
|
|
|
ret i64 %r
|
|
|
|
}
|
|
|
|
|
|
|
|
define i64 @test17(i64 %a) {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test17(
|
|
|
|
; CHECK: ret i64 undef
|
|
|
|
;
|
2011-07-01 09:03:43 +08:00
|
|
|
%r = select i1 undef, i64 undef, i64 %a
|
|
|
|
ret i64 %r
|
|
|
|
}
|
2011-11-05 02:32:42 +08:00
|
|
|
|
|
|
|
define i64 @test18(i64 %a) {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test18(
|
|
|
|
; CHECK: [[R:%.*]] = call i64 undef(i64 %a)
|
|
|
|
; CHECK-NEXT: ret i64 undef
|
|
|
|
;
|
[opaque pointer type] Add textual IR support for explicit type parameter to the call instruction
See r230786 and r230794 for similar changes to gep and load
respectively.
Call is a bit different because it often doesn't have a single explicit
type - usually the type is deduced from the arguments, and just the
return type is explicit. In those cases there's no need to change the
IR.
When that's not the case, the IR usually contains the pointer type of
the first operand - but since typed pointers are going away, that
representation is insufficient so I'm just stripping the "pointerness"
of the explicit type away.
This does make the IR a bit weird - it /sort of/ reads like the type of
the first operand: "call void () %x(" but %x is actually of type "void
()*" and will eventually be just of type "ptr". But this seems not too
bad and I don't think it would benefit from repeating the type
("void (), void () * %x(" and then eventually "void (), ptr %x(") as has
been done with gep and load.
This also has a side benefit: since the explicit type is no longer a
pointer, there's no ambiguity between an explicit type and a function
that returns a function pointer. Previously this case needed an explicit
type (eg: a function returning a void() function was written as
"call void () () * @x(" rather than "call void () * @x(" because of the
ambiguity between a function returning a pointer to a void() function
and a function returning void).
No ambiguity means even function pointer return types can just be
written alone, without writing the whole function's type.
This leaves /only/ the varargs case where the explicit type is required.
Given the special type syntax in call instructions, the regex-fu used
for migration was a bit more involved in its own unique way (as every
one of these is) so here it is. Use it in conjunction with the apply.sh
script and associated find/xargs commands I've provided in rr230786 to
migrate your out of tree tests. Do let me know if any of this doesn't
cover your cases & we can iterate on a more general script/regexes to
help others with out of tree tests.
About 9 test cases couldn't be automatically migrated - half of those
were functions returning function pointers, where I just had to manually
delete the function argument types now that we didn't need an explicit
function type there. The other half were typedefs of function types used
in calls - just had to manually drop the * from those.
import fileinput
import sys
import re
pat = re.compile(r'((?:=|:|^|\s)call\s(?:[^@]*?))(\s*$|\s*(?:(?:\[\[[a-zA-Z0-9_]+\]\]|[@%](?:(")?[\\\?@a-zA-Z0-9_.]*?(?(3)"|)|{{.*}}))(?:\(|$)|undef|inttoptr|bitcast|null|asm).*$)')
addrspace_end = re.compile(r"addrspace\(\d+\)\s*\*$")
func_end = re.compile("(?:void.*|\)\s*)\*$")
def conv(match, line):
if not match or re.search(addrspace_end, match.group(1)) or not re.search(func_end, match.group(1)):
return line
return line[:match.start()] + match.group(1)[:match.group(1).rfind('*')].rstrip() + match.group(2) + line[match.end():]
for line in sys.stdin:
sys.stdout.write(conv(re.search(pat, line), line))
llvm-svn: 235145
2015-04-17 07:24:18 +08:00
|
|
|
%r = call i64 (i64) undef(i64 %a)
|
2011-11-05 02:32:42 +08:00
|
|
|
ret i64 %r
|
|
|
|
}
|
2014-01-25 01:09:53 +08:00
|
|
|
|
|
|
|
define <4 x i8> @test19(<4 x i8> %a) {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test19(
|
|
|
|
; CHECK: ret <4 x i8> undef
|
|
|
|
;
|
2014-01-25 01:09:53 +08:00
|
|
|
%b = shl <4 x i8> %a, <i8 8, i8 9, i8 undef, i8 -1>
|
|
|
|
ret <4 x i8> %b
|
|
|
|
}
|
2014-12-10 15:52:18 +08:00
|
|
|
|
|
|
|
define i32 @test20(i32 %a) {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test20(
|
|
|
|
; CHECK: ret i32 undef
|
|
|
|
;
|
2014-12-10 15:52:18 +08:00
|
|
|
%b = udiv i32 %a, 0
|
|
|
|
ret i32 %b
|
|
|
|
}
|
|
|
|
|
2016-08-31 01:31:34 +08:00
|
|
|
define <2 x i32> @test20vec(<2 x i32> %a) {
|
|
|
|
; CHECK-LABEL: @test20vec(
|
|
|
|
; CHECK-NEXT: ret <2 x i32> undef
|
|
|
|
;
|
|
|
|
%b = udiv <2 x i32> %a, zeroinitializer
|
|
|
|
ret <2 x i32> %b
|
|
|
|
}
|
|
|
|
|
2014-12-10 15:52:18 +08:00
|
|
|
define i32 @test21(i32 %a) {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test21(
|
|
|
|
; CHECK: ret i32 undef
|
|
|
|
;
|
2014-12-10 15:52:18 +08:00
|
|
|
%b = sdiv i32 %a, 0
|
|
|
|
ret i32 %b
|
|
|
|
}
|
2014-12-10 17:14:52 +08:00
|
|
|
|
2016-08-31 01:31:34 +08:00
|
|
|
define <2 x i32> @test21vec(<2 x i32> %a) {
|
|
|
|
; CHECK-LABEL: @test21vec(
|
|
|
|
; CHECK-NEXT: ret <2 x i32> undef
|
|
|
|
;
|
|
|
|
%b = sdiv <2 x i32> %a, zeroinitializer
|
|
|
|
ret <2 x i32> %b
|
|
|
|
}
|
|
|
|
|
2014-12-10 17:14:52 +08:00
|
|
|
define i32 @test22(i32 %a) {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test22(
|
|
|
|
; CHECK: ret i32 undef
|
|
|
|
;
|
2014-12-10 17:14:52 +08:00
|
|
|
%b = ashr exact i32 undef, %a
|
|
|
|
ret i32 %b
|
|
|
|
}
|
|
|
|
|
|
|
|
define i32 @test23(i32 %a) {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test23(
|
|
|
|
; CHECK: ret i32 undef
|
|
|
|
;
|
2014-12-10 17:14:52 +08:00
|
|
|
%b = lshr exact i32 undef, %a
|
|
|
|
ret i32 %b
|
|
|
|
}
|
2014-12-10 17:14:55 +08:00
|
|
|
|
2014-12-11 20:56:17 +08:00
|
|
|
define i32 @test24() {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test24(
|
|
|
|
; CHECK: ret i32 undef
|
|
|
|
;
|
2014-12-10 17:14:55 +08:00
|
|
|
%b = udiv i32 undef, 0
|
|
|
|
ret i32 %b
|
|
|
|
}
|
2014-12-11 05:38:05 +08:00
|
|
|
|
2014-12-11 20:56:17 +08:00
|
|
|
define i32 @test25() {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test25(
|
|
|
|
; CHECK: ret i32 undef
|
|
|
|
;
|
2014-12-11 05:38:05 +08:00
|
|
|
%b = lshr i32 0, undef
|
|
|
|
ret i32 %b
|
|
|
|
}
|
|
|
|
|
2014-12-11 20:56:17 +08:00
|
|
|
define i32 @test26() {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test26(
|
|
|
|
; CHECK: ret i32 undef
|
|
|
|
;
|
2014-12-11 05:38:05 +08:00
|
|
|
%b = ashr i32 0, undef
|
|
|
|
ret i32 %b
|
|
|
|
}
|
|
|
|
|
2014-12-11 20:56:17 +08:00
|
|
|
define i32 @test27() {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test27(
|
|
|
|
; CHECK: ret i32 undef
|
|
|
|
;
|
2014-12-11 05:38:05 +08:00
|
|
|
%b = shl i32 0, undef
|
|
|
|
ret i32 %b
|
|
|
|
}
|
2014-12-17 09:54:33 +08:00
|
|
|
|
|
|
|
define i32 @test28(i32 %a) {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test28(
|
|
|
|
; CHECK: ret i32 undef
|
|
|
|
;
|
2014-12-17 09:54:33 +08:00
|
|
|
%b = shl nsw i32 undef, %a
|
|
|
|
ret i32 %b
|
|
|
|
}
|
|
|
|
|
|
|
|
define i32 @test29(i32 %a) {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test29(
|
|
|
|
; CHECK: ret i32 undef
|
|
|
|
;
|
2014-12-17 09:54:33 +08:00
|
|
|
%b = shl nuw i32 undef, %a
|
|
|
|
ret i32 %b
|
|
|
|
}
|
|
|
|
|
|
|
|
define i32 @test30(i32 %a) {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test30(
|
|
|
|
; CHECK: ret i32 undef
|
|
|
|
;
|
2014-12-17 09:54:33 +08:00
|
|
|
%b = shl nsw nuw i32 undef, %a
|
|
|
|
ret i32 %b
|
|
|
|
}
|
|
|
|
|
|
|
|
define i32 @test31(i32 %a) {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test31(
|
|
|
|
; CHECK: ret i32 0
|
|
|
|
;
|
2014-12-17 09:54:33 +08:00
|
|
|
%b = shl i32 undef, %a
|
|
|
|
ret i32 %b
|
|
|
|
}
|
2014-12-19 07:54:43 +08:00
|
|
|
|
|
|
|
define i32 @test32(i32 %a) {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test32(
|
|
|
|
; CHECK: ret i32 undef
|
|
|
|
;
|
2014-12-19 07:54:43 +08:00
|
|
|
%b = shl i32 undef, 0
|
|
|
|
ret i32 %b
|
|
|
|
}
|
|
|
|
|
|
|
|
define i32 @test33(i32 %a) {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test33(
|
|
|
|
; CHECK: ret i32 undef
|
|
|
|
;
|
2014-12-19 07:54:43 +08:00
|
|
|
%b = ashr i32 undef, 0
|
|
|
|
ret i32 %b
|
|
|
|
}
|
|
|
|
|
|
|
|
define i32 @test34(i32 %a) {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test34(
|
|
|
|
; CHECK: ret i32 undef
|
|
|
|
;
|
2014-12-19 07:54:43 +08:00
|
|
|
%b = lshr i32 undef, 0
|
|
|
|
ret i32 %b
|
|
|
|
}
|
2015-07-13 09:15:53 +08:00
|
|
|
|
|
|
|
define i32 @test35(<4 x i32> %V) {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test35(
|
|
|
|
; CHECK: ret i32 undef
|
|
|
|
;
|
2015-07-13 09:15:53 +08:00
|
|
|
%b = extractelement <4 x i32> %V, i32 4
|
|
|
|
ret i32 %b
|
|
|
|
}
|
|
|
|
|
|
|
|
define i32 @test36(i32 %V) {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test36(
|
|
|
|
; CHECK: ret i32 undef
|
|
|
|
;
|
2015-07-13 09:15:53 +08:00
|
|
|
%b = extractelement <4 x i32> undef, i32 %V
|
|
|
|
ret i32 %b
|
|
|
|
}
|
2016-02-25 09:02:18 +08:00
|
|
|
|
|
|
|
define i32 @test37() {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test37(
|
|
|
|
; CHECK: ret i32 undef
|
|
|
|
;
|
2016-02-25 09:02:18 +08:00
|
|
|
%b = udiv i32 undef, undef
|
|
|
|
ret i32 %b
|
|
|
|
}
|
|
|
|
|
|
|
|
define i32 @test38(i32 %a) {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test38(
|
|
|
|
; CHECK: ret i32 undef
|
|
|
|
;
|
2016-02-25 09:02:18 +08:00
|
|
|
%b = udiv i32 %a, undef
|
|
|
|
ret i32 %b
|
|
|
|
}
|
|
|
|
|
|
|
|
define i32 @test39() {
|
2016-03-26 04:12:25 +08:00
|
|
|
; CHECK-LABEL: @test39(
|
|
|
|
; CHECK: ret i32 undef
|
|
|
|
;
|
2016-02-25 09:02:18 +08:00
|
|
|
%b = udiv i32 0, undef
|
|
|
|
ret i32 %b
|
|
|
|
}
|