From 7a627676be806bd749fb4ad78458520af389ea20 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 13 Sep 2006 03:22:10 +0000 Subject: [PATCH] Compile X > -1 -> text X,X; js dest This implements CodeGen/X86/jump_sign.ll. llvm-svn: 30283 --- llvm/lib/Target/X86/README.txt | 12 -------- llvm/lib/Target/X86/X86ISelLowering.cpp | 39 +++++++++++++++---------- 2 files changed, 23 insertions(+), 28 deletions(-) diff --git a/llvm/lib/Target/X86/README.txt b/llvm/lib/Target/X86/README.txt index 110f399484bf..8994569ea9c4 100644 --- a/llvm/lib/Target/X86/README.txt +++ b/llvm/lib/Target/X86/README.txt @@ -630,15 +630,3 @@ This saves a movzbl, and saves a truncate if it doesn't get coallesced right. This is a simple DAGCombine to propagate the zext through the and. //===---------------------------------------------------------------------===// - -Instead of: - - cmpl $4294967295, %edx - jg LBB1_8 #cond_false49 - -emit: - - testl %edx, %edx - js LBB1_8 - -This saves a byte of code space. diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp index 5da23f934470..43742784349b 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.cpp +++ b/llvm/lib/Target/X86/X86ISelLowering.cpp @@ -1866,13 +1866,23 @@ static unsigned getCondBrOpcodeForX86CC(unsigned X86CC) { /// translateX86CC - do a one to one translation of a ISD::CondCode to the X86 /// specific condition code. It returns a false if it cannot do a direct -/// translation. X86CC is the translated CondCode. Flip is set to true if the -/// the order of comparison operands should be flipped. +/// translation. X86CC is the translated CondCode. LHS/RHS are modified as +/// needed. static bool translateX86CC(ISD::CondCode SetCCOpcode, bool isFP, - unsigned &X86CC, bool &Flip) { - Flip = false; + unsigned &X86CC, SDOperand &LHS, SDOperand &RHS, + SelectionDAG &DAG) { X86CC = X86ISD::COND_INVALID; if (!isFP) { + if (SetCCOpcode == ISD::SETGT) { + if (ConstantSDNode *RHSC = dyn_cast(RHS)) + if (RHSC->isAllOnesValue()) { + // X > -1 -> X == 0, jump on sign. + RHS = DAG.getConstant(0, RHS.getValueType()); + X86CC = X86ISD::COND_S; + return true; + } + } + switch (SetCCOpcode) { default: break; case ISD::SETEQ: X86CC = X86ISD::COND_E; break; @@ -1893,6 +1903,7 @@ static bool translateX86CC(ISD::CondCode SetCCOpcode, bool isFP, // 0 | 0 | 1 | X < Y // 1 | 0 | 0 | X == Y // 1 | 1 | 1 | unordered + bool Flip = false; switch (SetCCOpcode) { default: break; case ISD::SETUEQ: @@ -1914,16 +1925,13 @@ static bool translateX86CC(ISD::CondCode SetCCOpcode, bool isFP, case ISD::SETUO: X86CC = X86ISD::COND_P; break; case ISD::SETO: X86CC = X86ISD::COND_NP; break; } + if (Flip) + std::swap(LHS, RHS); } return X86CC != X86ISD::COND_INVALID; } -static bool translateX86CC(SDOperand CC, bool isFP, unsigned &X86CC, - bool &Flip) { - return translateX86CC(cast(CC)->get(), isFP, X86CC, Flip); -} - /// hasFPCMov - is there a floating point cmov for the specific X86 condition /// code. Current x86 isa includes the following FP cmov instructions: /// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu. @@ -3620,12 +3628,11 @@ SDOperand X86TargetLowering::LowerSETCC(SDOperand Op, SelectionDAG &DAG, ISD::CondCode SetCCOpcode = cast(CC)->get(); const MVT::ValueType *VTs = DAG.getNodeValueTypes(MVT::Other, MVT::Flag); bool isFP = MVT::isFloatingPoint(Op.getOperand(1).getValueType()); - bool Flip; unsigned X86CC; VTs = DAG.getNodeValueTypes(MVT::i8, MVT::Flag); - if (translateX86CC(CC, isFP, X86CC, Flip)) { - if (Flip) std::swap(Op0, Op1); + if (translateX86CC(cast(CC)->get(), isFP, X86CC, + Op0, Op1, DAG)) { SDOperand Ops1[] = { Chain, Op0, Op1 }; Cond = DAG.getNode(X86ISD::CMP, VTs, 2, Ops1, 3).getValue(1); SDOperand Ops2[] = { DAG.getConstant(X86CC, MVT::i8), Cond }; @@ -4356,13 +4363,13 @@ X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDOperand Op, SelectionDAG &DAG) { break; } - bool Flip; unsigned X86CC; - translateX86CC(CC, true, X86CC, Flip); + SDOperand LHS = Op.getOperand(1); + SDOperand RHS = Op.getOperand(2); + translateX86CC(CC, true, X86CC, LHS, RHS, DAG); const MVT::ValueType *VTs = DAG.getNodeValueTypes(MVT::Other, MVT::Flag); - SDOperand Ops1[] = { DAG.getEntryNode(), Op.getOperand(Flip?2:1), - Op.getOperand(Flip?1:2) }; + SDOperand Ops1[] = { DAG.getEntryNode(), LHS, RHS }; SDOperand Cond = DAG.getNode(Opc, VTs, 2, Ops1, 3); VTs = DAG.getNodeValueTypes(MVT::i8, MVT::Flag); SDOperand Ops2[] = { DAG.getConstant(X86CC, MVT::i8), Cond };