Explicitly request physreg coalesing for a bunch of Thumb2 unit tests.
These tests all follow the same pattern:
mov r2, r0
movs r0, #0
$CMP r2, r1
it eq
moveq r0, #1
bx lr
The first 'mov' can be eliminated by rematerializing 'movs r0, #0' below the
test instruction:
$CMP r0, r1
mov.w r0, #0
it eq
moveq r0, #1
bx lr
So far, only physreg coalescing can do that. The register allocators won't yet
split live ranges just to eliminate copies. They can learn, but this particular
problem is not likely to show up in real code. It only appears because r0 is
used for both the function argument and return value.
llvm-svn: 130858
2011-05-04 21:02:07 +02:00
|
|
|
; RUN: llc < %s -march=thumb -mattr=+thumb2 -join-physregs | FileCheck %s
|
|
|
|
|
|
|
|
; These tests implicitly depend on 'movs r0, #0' being rematerialized below the
|
|
|
|
; test as 'mov.w r0, #0'. So far, that requires physreg joining.
|
2009-06-26 20:10:30 +02:00
|
|
|
|
|
|
|
; 0x000000bb = 187
|
|
|
|
define i1 @f1(i32 %a) {
|
2009-08-11 01:56:04 +02:00
|
|
|
; CHECK: f1:
|
|
|
|
; CHECK: cmp r0, #187
|
2009-06-26 20:10:30 +02:00
|
|
|
%tmp = icmp ne i32 %a, 187
|
|
|
|
ret i1 %tmp
|
|
|
|
}
|
|
|
|
|
|
|
|
; 0x00aa00aa = 11141290
|
|
|
|
define i1 @f2(i32 %a) {
|
2009-08-11 01:56:04 +02:00
|
|
|
; CHECK: f2:
|
|
|
|
; CHECK: cmp.w r0, #11141290
|
2009-06-26 20:10:30 +02:00
|
|
|
%tmp = icmp eq i32 %a, 11141290
|
|
|
|
ret i1 %tmp
|
|
|
|
}
|
|
|
|
|
|
|
|
; 0xcc00cc00 = 3422604288
|
|
|
|
define i1 @f3(i32 %a) {
|
2009-08-11 01:56:04 +02:00
|
|
|
; CHECK: f3:
|
2009-09-09 08:05:16 +02:00
|
|
|
; CHECK: cmp.w r0, #-872363008
|
2009-06-26 20:10:30 +02:00
|
|
|
%tmp = icmp ne i32 %a, 3422604288
|
|
|
|
ret i1 %tmp
|
|
|
|
}
|
|
|
|
|
|
|
|
; 0xdddddddd = 3722304989
|
|
|
|
define i1 @f4(i32 %a) {
|
2009-08-11 01:56:04 +02:00
|
|
|
; CHECK: f4:
|
2009-09-09 08:05:16 +02:00
|
|
|
; CHECK: cmp.w r0, #-572662307
|
2009-06-26 20:10:30 +02:00
|
|
|
%tmp = icmp ne i32 %a, 3722304989
|
|
|
|
ret i1 %tmp
|
|
|
|
}
|
|
|
|
|
|
|
|
; 0x00110000 = 1114112
|
|
|
|
define i1 @f5(i32 %a) {
|
2009-08-11 01:56:04 +02:00
|
|
|
; CHECK: f5:
|
|
|
|
; CHECK: cmp.w r0, #1114112
|
2009-06-26 20:10:30 +02:00
|
|
|
%tmp = icmp eq i32 %a, 1114112
|
|
|
|
ret i1 %tmp
|
|
|
|
}
|
2010-08-25 18:58:05 +02:00
|
|
|
|
|
|
|
; Check that we don't do an invalid (a > b) --> !(a < b + 1) transform.
|
|
|
|
;
|
|
|
|
; CHECK: f6:
|
|
|
|
; CHECK-NOT: cmp.w r0, #-2147483648
|
|
|
|
; CHECK: bx lr
|
|
|
|
define i32 @f6(i32 %a) {
|
|
|
|
%tmp = icmp sgt i32 %a, 2147483647
|
|
|
|
br i1 %tmp, label %true, label %false
|
|
|
|
true:
|
|
|
|
ret i32 2
|
|
|
|
false:
|
|
|
|
ret i32 0
|
|
|
|
}
|