From: Nick Lewycky Date: Sat, 31 May 2008 19:01:33 +0000 (+0000) Subject: Peer through sext/zext when looking for not(cmp). X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=517e1f5cd752e06e1587804f4e1d64ef52a21a08;p=oota-llvm.git Peer through sext/zext when looking for not(cmp). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51819 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/README.txt b/lib/Target/README.txt index c9f11b935cd..23572cd6bc5 100644 --- a/lib/Target/README.txt +++ b/lib/Target/README.txt @@ -775,32 +775,6 @@ be done safely if "b" isn't modified between the strlen and memcpy of course. //===---------------------------------------------------------------------===// -define i32 @test2(float %X, float %Y) { -entry: - %tmp3 = fcmp uno float %X, %Y ; [#uses=1] - %tmp34 = zext i1 %tmp3 to i8 ; [#uses=1] - %tmp = xor i8 %tmp34, 1 ; [#uses=1] - %toBoolnot5 = zext i8 %tmp to i32 ; [#uses=1] - ret i32 %toBoolnot5 -} - -could be optimized further. Instcombine should use its bitwise analysis to -collapse the zext/xor/zext structure to an xor/zext and then remove the -xor by reversing the fcmp. - -Desired output: - -define i32 @test2(float %X, float %Y) { -entry: - %tmp3 = fcmp ord float %X, %Y ; [#uses=1] - %tmp34 = zext i1 %tmp3 to i32 ; [#uses=1] - ret i32 %tmp34 -} - -To fix this, we need to make CanEvaluateInDifferentType smarter. - -//===---------------------------------------------------------------------===// - We should be able to evaluate this loop: int test(int x_offs) { diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index 6222d2ae49b..89c49c1a6e4 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -5013,6 +5013,25 @@ Instruction *InstCombiner::visitXor(BinaryOperator &I) { FCI->getOperand(0), FCI->getOperand(1)); } + // fold (xor(zext(cmp)), 1) and (xor(sext(cmp)), -1) to ext(!cmp). + if (CastInst *Op0C = dyn_cast(Op0)) { + if (CmpInst *CI = dyn_cast(Op0C->getOperand(0))) { + if (CI->hasOneUse() && Op0C->hasOneUse()) { + Instruction::CastOps Opcode = Op0C->getOpcode(); + if (Opcode == Instruction::ZExt || Opcode == Instruction::SExt) { + if (RHS == ConstantExpr::getCast(Opcode, ConstantInt::getTrue(), + Op0C->getDestTy())) { + Instruction *NewCI = InsertNewInstBefore(CmpInst::Create( + CI->getOpcode(), CI->getInversePredicate(), + CI->getOperand(0), CI->getOperand(1)), I); + NewCI->takeName(CI); + return CastInst::Create(Opcode, NewCI, Op0C->getType()); + } + } + } + } + } + if (BinaryOperator *Op0I = dyn_cast(Op0)) { // ~(c-X) == X-c-1 == X+(-c-1) if (Op0I->getOpcode() == Instruction::Sub && RHS->isAllOnesValue()) @@ -5206,6 +5225,7 @@ Instruction *InstCombiner::visitXor(BinaryOperator &I) { } } } + return Changed ? &I : 0; } diff --git a/test/Transforms/InstCombine/zext-fold.ll b/test/Transforms/InstCombine/zext-fold.ll index 690a2275e06..27ea46061b0 100644 --- a/test/Transforms/InstCombine/zext-fold.ll +++ b/test/Transforms/InstCombine/zext-fold.ll @@ -1,6 +1,5 @@ ; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep {zext } | count 1 ; PR1570 -; XFAIL: * define i32 @test2(float %X, float %Y) { entry: