diff options
author | JF Bastien <jfb@google.com> | 2013-06-07 20:10:37 +0000 |
---|---|---|
committer | JF Bastien <jfb@google.com> | 2013-06-07 20:10:37 +0000 |
commit | 06ce03d14137123d2702eb92ff76b7b9f61ce64e (patch) | |
tree | 717f6a355845d8e76a6f91767d25500d6ca52389 /llvm/test/CodeGen/ARM/fast-isel-call.ll | |
parent | 5ed79566d603c3070055153b4f52630f33558b88 (diff) | |
download | bcm5719-llvm-06ce03d14137123d2702eb92ff76b7b9f61ce64e.tar.gz bcm5719-llvm-06ce03d14137123d2702eb92ff76b7b9f61ce64e.zip |
ARM FastISel integer sext/zext improvements
My recent ARM FastISel patch exposed this bug:
http://llvm.org/bugs/show_bug.cgi?id=16178
The root cause is that it can't select integer sext/zext pre-ARMv6 and
asserts out.
The current integer sext/zext code doesn't handle other cases gracefully
either, so this patch makes it handle all sext and zext from i1/i8/i16
to i8/i16/i32, with and without ARMv6, both in Thumb and ARM mode. This
should fix the bug as well as make FastISel faster because it bails to
SelectionDAG less often. See fastisel-ext.patch for this.
fastisel-ext-tests.patch changes current tests to always use reg-imm AND
for 8-bit zext instead of UXTB. This simplifies code since it is
supported on ARMv4t and later, and at least on A15 both should perform
exactly the same (both have exec 1 uop 1, type I).
2013-05-31-char-shift-crash.ll is a bitcode version of the above bug
16178 repro.
fast-isel-ext.ll tests all sext/zext combinations that ARM FastISel
should now handle.
Note that my ARM FastISel enabling patch was reverted due to a separate
failure when dealing with MCJIT, I'll fix this second failure and then
turn FastISel on again for non-iOS ARM targets.
I've tested "make check-all" on my x86 box, and "lnt test-suite" on A15
hardware.
llvm-svn: 183551
Diffstat (limited to 'llvm/test/CodeGen/ARM/fast-isel-call.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/fast-isel-call.ll | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/llvm/test/CodeGen/ARM/fast-isel-call.ll b/llvm/test/CodeGen/ARM/fast-isel-call.ll index 6ee2c349abc..f4a5d99c156 100644 --- a/llvm/test/CodeGen/ARM/fast-isel-call.ll +++ b/llvm/test/CodeGen/ARM/fast-isel-call.ll @@ -48,9 +48,9 @@ define void @foo(i8 %a, i16 %b) nounwind { ; THUMB: sxtb r2, r1 ; THUMB: mov r0, r2 %2 = call i32 @t1(i8 signext %a) -; ARM: uxtb r2, r1 +; ARM: and r2, r1, #255 ; ARM: mov r0, r2 -; THUMB: uxtb r2, r1 +; THUMB: and r2, r1, #255 ; THUMB: mov r0, r2 %3 = call i32 @t2(i8 zeroext %a) ; ARM: sxth r2, r1 @@ -98,13 +98,13 @@ entry: ; ARM: movw [[R3:l?r[0-9]*]], #28 ; ARM: movw [[R4:l?r[0-9]*]], #40 ; ARM: movw [[R5:l?r[0-9]*]], #186 -; ARM: uxtb [[R0]], [[R0]] -; ARM: uxtb [[R1]], [[R1]] -; ARM: uxtb [[R2]], [[R2]] -; ARM: uxtb [[R3]], [[R3]] -; ARM: uxtb [[R4]], [[R4]] +; ARM: and [[R0]], [[R0]], #255 +; ARM: and [[R1]], [[R1]], #255 +; ARM: and [[R2]], [[R2]], #255 +; ARM: and [[R3]], [[R3]], #255 +; ARM: and [[R4]], [[R4]], #255 ; ARM: str [[R4]], [sp] -; ARM: uxtb [[R4]], [[R5]] +; ARM: and [[R4]], [[R5]], #255 ; ARM: str [[R4]], [sp, #4] ; ARM: bl {{_?}}bar ; ARM-LONG: @t10 @@ -125,13 +125,13 @@ entry: ; THUMB: movt [[R4]], #0 ; THUMB: movw [[R5:l?r[0-9]*]], #186 ; THUMB: movt [[R5]], #0 -; THUMB: uxtb [[R0]], [[R0]] -; THUMB: uxtb [[R1]], [[R1]] -; THUMB: uxtb [[R2]], [[R2]] -; THUMB: uxtb [[R3]], [[R3]] -; THUMB: uxtb.w [[R4]], [[R4]] +; THUMB: and [[R0]], [[R0]], #255 +; THUMB: and [[R1]], [[R1]], #255 +; THUMB: and [[R2]], [[R2]], #255 +; THUMB: and [[R3]], [[R3]], #255 +; THUMB: and [[R4]], [[R4]], #255 ; THUMB: str.w [[R4]], [sp] -; THUMB: uxtb.w [[R4]], [[R5]] +; THUMB: and [[R4]], [[R5]], #255 ; THUMB: str.w [[R4]], [sp, #4] ; THUMB: bl {{_?}}bar ; THUMB-LONG: @t10 |