diff options
| author | Hal Finkel <hfinkel@anl.gov> | 2015-01-10 08:21:59 +0000 |
|---|---|---|
| committer | Hal Finkel <hfinkel@anl.gov> | 2015-01-10 08:21:59 +0000 |
| commit | 5d5d1539ccd8e960260fb0bad1d2733a51e71b27 (patch) | |
| tree | e9640ec55f1a348f342a57c93c5cae32a08877dc /llvm/test | |
| parent | 17744c1e0d710e318550c30afddcf30186125b8f (diff) | |
| download | bcm5719-llvm-5d5d1539ccd8e960260fb0bad1d2733a51e71b27.tar.gz bcm5719-llvm-5d5d1539ccd8e960260fb0bad1d2733a51e71b27.zip | |
[PowerPC] Mark zext of a small scalar load as free
This initial implementation of PPCTargetLowering::isZExtFree marks as free
zexts of small scalar loads (that are not sign-extending). This callback is
used by SelectionDAGBuilder's RegsForValue::getCopyToRegs, and thus to
determine whether a zext or an anyext is used to lower illegally-typed PHIs.
Because later truncates of zero-extended values are nops, this allows for the
elimination of later unnecessary truncations.
Fixes the initial complaint associated with PR22120.
llvm-svn: 225584
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/CodeGen/PowerPC/zext-free.ll | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/PowerPC/zext-free.ll b/llvm/test/CodeGen/PowerPC/zext-free.ll new file mode 100644 index 00000000000..080dbaa58da --- /dev/null +++ b/llvm/test/CodeGen/PowerPC/zext-free.ll @@ -0,0 +1,37 @@ +; RUN: llc -mcpu=ppc64 < %s | FileCheck %s +target datalayout = "E-m:e-i64:64-n32:64" +target triple = "powerpc64-unknown-linux-gnu" + +; Function Attrs: noreturn nounwind +define signext i32 @_Z1fRPc(i8** nocapture dereferenceable(8) %p) #0 { +entry: + %.pre = load i8** %p, align 8 + br label %loop + +loop: ; preds = %loop.backedge, %entry + %0 = phi i8* [ %.pre, %entry ], [ %.be, %loop.backedge ] + %1 = load i8* %0, align 1 + %tobool = icmp eq i8 %1, 0 + %incdec.ptr = getelementptr inbounds i8* %0, i64 1 + store i8* %incdec.ptr, i8** %p, align 8 + %2 = load i8* %incdec.ptr, align 1 + %tobool2 = icmp ne i8 %2, 0 + %or.cond = and i1 %tobool, %tobool2 + br i1 %or.cond, label %if.then3, label %loop.backedge + +if.then3: ; preds = %loop + %incdec.ptr4 = getelementptr inbounds i8* %0, i64 2 + store i8* %incdec.ptr4, i8** %p, align 8 + br label %loop.backedge + +loop.backedge: ; preds = %if.then3, %loop + %.be = phi i8* [ %incdec.ptr4, %if.then3 ], [ %incdec.ptr, %loop ] + br label %loop + +; CHECK-LABEL: @_Z1fRPc +; CHECK-NOT: rlwinm {{[0-9]+}}, {{[0-9]+}}, 0, 24, 31 +; CHECK-NOT: clrlwi {{[0-9]+}}, {{[0-9]+}}, 24 +} + +attributes #0 = { noreturn nounwind } + |

