From 96d7256d62689f41a43def297da31bd1841ed7d5 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 21 Aug 2007 16:57:55 +0000 Subject: [PATCH] reimplement support for complex comparisons, add support for integer complex compares. llvm-svn: 41231 --- clang/CodeGen/CGComplexExpr.cpp | 8 +++-- clang/CodeGen/CGExpr.cpp | 55 +++++++++++++++++++-------------- clang/CodeGen/CodeGenFunction.h | 3 +- 3 files changed, 39 insertions(+), 27 deletions(-) diff --git a/clang/CodeGen/CGComplexExpr.cpp b/clang/CodeGen/CGComplexExpr.cpp index 8c93ca3fb5a8..12be4f7c9690 100644 --- a/clang/CodeGen/CGComplexExpr.cpp +++ b/clang/CodeGen/CGComplexExpr.cpp @@ -24,7 +24,7 @@ using namespace CodeGen; // Complex Expression Emitter //===----------------------------------------------------------------------===// -typedef std::pair ComplexPairTy; +typedef CodeGenFunction::ComplexPairTy ComplexPairTy; namespace { class VISIBILITY_HIDDEN ComplexExprEmitter @@ -70,6 +70,8 @@ public: ComplexPairTy VisitBinaryOperator(const BinaryOperator *BO); ComplexPairTy VisitBinMul (const BinaryOperator *E); ComplexPairTy VisitBinAdd (const BinaryOperator *E); + + // No comparisons produce a complex result. ComplexPairTy VisitBinAssign (const BinaryOperator *E); @@ -319,10 +321,10 @@ VisitConditionalOperator(const ConditionalOperator *E) { /// EmitComplexExpr - Emit the computation of the specified expression of /// complex type, ignoring the result. -void CodeGenFunction::EmitComplexExpr(const Expr *E) { +ComplexPairTy CodeGenFunction::EmitComplexExpr(const Expr *E) { assert(E && E->getType()->isComplexType() && "Invalid complex expression to emit"); - ComplexExprEmitter(*this).Visit(const_cast(E)); + return ComplexExprEmitter(*this).Visit(const_cast(E)); } diff --git a/clang/CodeGen/CGExpr.cpp b/clang/CodeGen/CGExpr.cpp index b886c86378cc..d0c241398b69 100644 --- a/clang/CodeGen/CGExpr.cpp +++ b/clang/CodeGen/CGExpr.cpp @@ -1217,15 +1217,16 @@ RValue CodeGenFunction::EmitShr(RValue LHSV, RValue RHSV, QualType ResTy) { RValue CodeGenFunction::EmitBinaryCompare(const BinaryOperator *E, unsigned UICmpOpc, unsigned SICmpOpc, unsigned FCmpOpc) { - RValue LHS = EmitExpr(E->getLHS()); - RValue RHS = EmitExpr(E->getRHS()); - llvm::Value *Result; - if (LHS.isScalar()) { - if (LHS.getVal()->getType()->isFloatingPoint()) { + QualType LHSTy = E->getLHS()->getType(); + if (!LHSTy->isComplexType()) { + RValue LHS = EmitExpr(E->getLHS()); + RValue RHS = EmitExpr(E->getRHS()); + + if (LHSTy->isRealFloatingType()) { Result = Builder.CreateFCmp((llvm::FCmpInst::Predicate)FCmpOpc, LHS.getVal(), RHS.getVal(), "cmp"); - } else if (E->getLHS()->getType()->isUnsignedIntegerType()) { + } else if (LHSTy->isUnsignedIntegerType()) { // FIXME: This check isn't right for "unsigned short < int" where ushort // promotes to int and does a signed compare. Result = Builder.CreateICmp((llvm::ICmpInst::Predicate)UICmpOpc, @@ -1236,26 +1237,34 @@ RValue CodeGenFunction::EmitBinaryCompare(const BinaryOperator *E, LHS.getVal(), RHS.getVal(), "cmp"); } } else { -#if 0 - // Struct/union/complex - llvm::Value *LHSR, *LHSI, *RHSR, *RHSI, *ResultR, *ResultI; - EmitLoadOfComplex(LHS, LHSR, LHSI); - EmitLoadOfComplex(RHS, RHSR, RHSI); + // Complex Comparison: can only be an equality comparison. + ComplexPairTy LHS = EmitComplexExpr(E->getLHS()); + ComplexPairTy RHS = EmitComplexExpr(E->getRHS()); - // FIXME: need to consider _Complex over integers too! - - ResultR = Builder.CreateFCmp((llvm::FCmpInst::Predicate)FCmpOpc, - LHSR, RHSR, "cmp.r"); - ResultI = Builder.CreateFCmp((llvm::FCmpInst::Predicate)FCmpOpc, - LHSI, RHSI, "cmp.i"); - if (BinaryOperator::EQ == E->getOpcode()) { - Result = Builder.CreateAnd(ResultR, ResultI, "and.ri"); - } else if (BinaryOperator::NE == E->getOpcode()) { - Result = Builder.CreateOr(ResultR, ResultI, "or.ri"); + QualType CETy = + cast(LHSTy.getCanonicalType())->getElementType(); + + llvm::Value *ResultR, *ResultI; + if (CETy->isRealFloatingType()) { + ResultR = Builder.CreateFCmp((llvm::FCmpInst::Predicate)FCmpOpc, + LHS.first, RHS.first, "cmp.r"); + ResultI = Builder.CreateFCmp((llvm::FCmpInst::Predicate)FCmpOpc, + LHS.second, RHS.second, "cmp.i"); } else { - assert(0 && "Complex comparison other than == or != ?"); + unsigned Opc = CETy->isUnsignedIntegerType() ? UICmpOpc : SICmpOpc; + ResultR = Builder.CreateICmp((llvm::ICmpInst::Predicate)Opc, + LHS.first, RHS.first, "cmp.r"); + ResultI = Builder.CreateICmp((llvm::ICmpInst::Predicate)Opc, + LHS.second, RHS.second, "cmp.i"); + } + + if (E->getOpcode() == BinaryOperator::EQ) { + Result = Builder.CreateAnd(ResultR, ResultI, "and.ri"); + } else { + assert(E->getOpcode() == BinaryOperator::NE && + "Complex comparison other than == or != ?"); + Result = Builder.CreateOr(ResultR, ResultI, "or.ri"); } -#endif } // ZExt result to int. diff --git a/clang/CodeGen/CodeGenFunction.h b/clang/CodeGen/CodeGenFunction.h index 47bdbacbb8da..5ece5cd41b88 100644 --- a/clang/CodeGen/CodeGenFunction.h +++ b/clang/CodeGen/CodeGenFunction.h @@ -182,6 +182,7 @@ class CodeGenFunction { CodeGenModule &CGM; // Per-module state. TargetInfo &Target; public: + typedef std::pair ComplexPairTy; llvm::LLVMBuilder Builder; private: @@ -416,7 +417,7 @@ public: /// EmitComplexExpr - Emit the computation of the specified expression of /// complex type, ignoring the result. - void EmitComplexExpr(const Expr *E); + ComplexPairTy EmitComplexExpr(const Expr *E); }; } // end namespace CodeGen } // end namespace clang