[llvm-commits] [llvm] r149730 - in /llvm/trunk: lib/CodeGen/SelectionDAG/FastISel.cpp test/CodeGen/ARM/fast-isel-br-phi.ll
Chad Rosier
mcrosier at apple.com
Fri Feb 3 16:39:19 PST 2012
Author: mcrosier
Date: Fri Feb 3 18:39:19 2012
New Revision: 149730
URL: http://llvm.org/viewvc/llvm-project?rev=149730&view=rev
Log:
[fast-isel] HandlePHINodesInSuccessorBlocks() can promite i8 and i16 types too.
Added:
llvm/trunk/test/CodeGen/ARM/fast-isel-br-phi.ll
Modified:
llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp
Modified: llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp?rev=149730&r1=149729&r2=149730&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp Fri Feb 3 18:39:19 2012
@@ -1365,8 +1365,8 @@
// exactly one register for each non-void instruction.
EVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true);
if (VT == MVT::Other || !TLI.isTypeLegal(VT)) {
- // Promote MVT::i1.
- if (VT == MVT::i1)
+ // Handle integer promotions, though, because they're common and easy.
+ if (VT == MVT::i1 || VT == MVT::i8 || VT == MVT::i16)
VT = TLI.getTypeToTransformTo(LLVMBB->getContext(), VT);
else {
FuncInfo.PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
Added: llvm/trunk/test/CodeGen/ARM/fast-isel-br-phi.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/ARM/fast-isel-br-phi.ll?rev=149730&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/ARM/fast-isel-br-phi.ll (added)
+++ llvm/trunk/test/CodeGen/ARM/fast-isel-br-phi.ll Fri Feb 3 18:39:19 2012
@@ -0,0 +1,44 @@
+; RUN: llc < %s -O0 -fast-isel-abort -relocation-model=dynamic-no-pic -mtriple=thumbv7-apple-ios
+
+; This test ensures HandlePHINodesInSuccessorBlocks() is able to promote basic
+; non-legal integer types (i.e., i1, i8, i16).
+
+declare void @fooi8(i8)
+declare void @fooi16(i16)
+
+define void @foo(i1 %cmp) nounwind ssp {
+entry:
+ br i1 %cmp, label %cond.true, label %cond.false
+
+cond.true: ; preds = %entry
+ br label %cond.end
+
+cond.false: ; preds = %entry
+ br label %cond.end
+
+cond.end: ; preds = %cond.false, %cond.true
+ %cond = phi i1 [ 0, %cond.true ], [ 1, %cond.false ]
+ br i1 %cond, label %cond.true8, label %cond.false8
+
+cond.true8: ; preds = %cond.end
+ br label %cond.end8
+
+cond.false8: ; preds = %cond.end
+ br label %cond.end8
+
+cond.end8: ; preds = %cond.false8, %cond.true8
+ %cond8 = phi i8 [ 0, %cond.true8 ], [ 1, %cond.false8 ]
+ call void @fooi8(i8 %cond8)
+ br i1 0, label %cond.true16, label %cond.false16
+
+cond.true16: ; preds = %cond.end8
+ br label %cond.end16
+
+cond.false16: ; preds = %cond.end8
+ br label %cond.end16
+
+cond.end16: ; preds = %cond.false16, %cond.true16
+ %cond16 = phi i16 [ 0, %cond.true16 ], [ 1, %cond.false16 ]
+ call void @fooi16(i16 %cond16)
+ ret void
+}
More information about the llvm-commits
mailing list