From: Chris Lattner Date: Wed, 12 Nov 2008 08:26:50 +0000 (+0000) Subject: use ConstantFoldsToSimpleInteger instead of code emission to do X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=20eb09d562b80420a3328be789547af354bf3e36;p=clang use ConstantFoldsToSimpleInteger instead of code emission to do constant folding. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59121 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGExprScalar.cpp b/lib/CodeGen/CGExprScalar.cpp index 8097e58614..c8e1aa58a5 100644 --- a/lib/CodeGen/CGExprScalar.cpp +++ b/lib/CodeGen/CGExprScalar.cpp @@ -1018,27 +1018,26 @@ Value *ScalarExprEmitter::VisitBinAssign(const BinaryOperator *E) { } Value *ScalarExprEmitter::VisitBinLAnd(const BinaryOperator *E) { - Value *LHSCond = CGF.EvaluateExprAsBool(E->getLHS()); - - if (llvm::ConstantInt *LHSCst = dyn_cast(LHSCond)) { - // If we have 0 && RHS, see if we can elide RHS, if so, just return LHSCond. - if (LHSCst->isZero()) { - if (!CGF.ContainsLabel(E->getRHS())) - // Elide RHS, return 0 - return llvm::Constant::getNullValue(CGF.LLVMIntTy); - } else { - // If we have 1 && X, just emit X without inserting the control flow. + // If we have 0 && RHS, see if we can elide RHS, if so, just return 0. + // If we have 1 && X, just emit X without inserting the control flow. + if (int Cond = CGF.ConstantFoldsToSimpleInteger(E->getLHS())) { + if (Cond == 1) { // If we have 1 && X, just emit X. Value *RHSCond = CGF.EvaluateExprAsBool(E->getRHS()); // ZExt result to int. return Builder.CreateZExt(RHSCond, CGF.LLVMIntTy, "land.ext"); } + + // 0 && RHS: If it is safe, just elide the RHS, and return 0. + if (!CGF.ContainsLabel(E->getRHS())) + return llvm::Constant::getNullValue(CGF.LLVMIntTy); } llvm::BasicBlock *ContBlock = CGF.createBasicBlock("land_cont"); - llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("land_rhs"); - - llvm::BasicBlock *OrigBlock = Builder.GetInsertBlock(); + llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("land_rhs"); + + Value *LHSCond = CGF.EvaluateExprAsBool(E->getLHS()); Builder.CreateCondBr(LHSCond, RHSBlock, ContBlock); + llvm::BasicBlock *OrigBlock = Builder.GetInsertBlock(); CGF.EmitBlock(RHSBlock); Value *RHSCond = CGF.EvaluateExprAsBool(E->getRHS()); @@ -1059,27 +1058,26 @@ Value *ScalarExprEmitter::VisitBinLAnd(const BinaryOperator *E) { } Value *ScalarExprEmitter::VisitBinLOr(const BinaryOperator *E) { - Value *LHSCond = CGF.EvaluateExprAsBool(E->getLHS()); - - if (llvm::ConstantInt *LHSCst = dyn_cast(LHSCond)) { - // If we have 1 || RHS, see if we can elide RHS, if so, just return LHSCond. - if (!LHSCst->isZero()) { - if (!CGF.ContainsLabel(E->getRHS())) - // Elide RHS, return 1 - return llvm::ConstantInt::get(CGF.LLVMIntTy, 1); - } else { - // If we have 0 || X, just emit X without inserting the control flow. + // If we have 1 || RHS, see if we can elide RHS, if so, just return 1. + // If we have 0 || X, just emit X without inserting the control flow. + if (int Cond = CGF.ConstantFoldsToSimpleInteger(E->getLHS())) { + if (Cond == -1) { // If we have 0 || X, just emit X. Value *RHSCond = CGF.EvaluateExprAsBool(E->getRHS()); // ZExt result to int. return Builder.CreateZExt(RHSCond, CGF.LLVMIntTy, "lor.ext"); } + + // 1 || RHS: If it is safe, just elide the RHS, and return 0. + if (!CGF.ContainsLabel(E->getRHS())) + return llvm::Constant::getNullValue(CGF.LLVMIntTy); } llvm::BasicBlock *ContBlock = CGF.createBasicBlock("lor_cont"); llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("lor_rhs"); - llvm::BasicBlock *OrigBlock = Builder.GetInsertBlock(); + Value *LHSCond = CGF.EvaluateExprAsBool(E->getLHS()); Builder.CreateCondBr(LHSCond, ContBlock, RHSBlock); + llvm::BasicBlock *OrigBlock = Builder.GetInsertBlock(); CGF.EmitBlock(RHSBlock); Value *RHSCond = CGF.EvaluateExprAsBool(E->getRHS());