diff options
author | Chris Lattner <sabre@nondot.org> | 2008-11-12 08:26:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-11-12 08:26:50 +0000 |
commit | 20eb09d562b80420a3328be789547af354bf3e36 (patch) | |
tree | 84202e21cfd879f0eacb6932c1f169f3409c6c0f /lib/CodeGen | |
parent | 0912425f79418a215c2fbd2d8fc9511244a4aa46 (diff) |
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
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/CGExprScalar.cpp | 46 |
1 files changed, 22 insertions, 24 deletions
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<llvm::ConstantInt>(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<llvm::ConstantInt>(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()); |