2007-08-24 10:22:53 +08:00
|
|
|
//===--- CGExprComplex.cpp - Emit LLVM Code for Complex Exprs -------------===//
|
2007-08-21 13:54:00 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 03:59:25 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-08-21 13:54:00 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This contains code to emit Expr nodes with complex types as LLVM code.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "CodeGenFunction.h"
|
|
|
|
#include "CodeGenModule.h"
|
2008-08-11 13:00:27 +08:00
|
|
|
#include "clang/AST/ASTContext.h"
|
|
|
|
#include "clang/AST/StmtVisitor.h"
|
2007-08-21 13:54:00 +08:00
|
|
|
#include "llvm/Constants.h"
|
|
|
|
#include "llvm/Function.h"
|
2007-08-27 06:47:40 +08:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
2007-08-21 13:54:00 +08:00
|
|
|
#include "llvm/Support/Compiler.h"
|
|
|
|
using namespace clang;
|
|
|
|
using namespace CodeGen;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2007-08-21 13:54:53 +08:00
|
|
|
// Complex Expression Emitter
|
2007-08-21 13:54:00 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2007-08-22 00:57:55 +08:00
|
|
|
typedef CodeGenFunction::ComplexPairTy ComplexPairTy;
|
2007-08-21 13:54:00 +08:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
class VISIBILITY_HIDDEN ComplexExprEmitter
|
|
|
|
: public StmtVisitor<ComplexExprEmitter, ComplexPairTy> {
|
|
|
|
CodeGenFunction &CGF;
|
2008-11-01 09:53:16 +08:00
|
|
|
CGBuilderTy &Builder;
|
2007-08-21 13:54:00 +08:00
|
|
|
public:
|
2007-08-22 01:39:38 +08:00
|
|
|
ComplexExprEmitter(CodeGenFunction &cgf) : CGF(cgf), Builder(CGF.Builder) {
|
2007-08-21 13:54:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Utilities
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
/// EmitLoadOfLValue - Given an expression with complex type that represents a
|
|
|
|
/// value l-value, this method emits the address of the l-value, then loads
|
|
|
|
/// and returns the result.
|
2007-08-22 01:28:34 +08:00
|
|
|
ComplexPairTy EmitLoadOfLValue(const Expr *E) {
|
2007-08-22 02:02:02 +08:00
|
|
|
LValue LV = CGF.EmitLValue(E);
|
|
|
|
// FIXME: Volatile
|
|
|
|
return EmitLoadOfComplex(LV.getAddress(), false);
|
2007-08-22 01:28:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// EmitLoadOfComplex - Given a pointer to a complex value, emit code to load
|
|
|
|
/// the real and imaginary pieces.
|
2007-08-22 02:02:02 +08:00
|
|
|
ComplexPairTy EmitLoadOfComplex(llvm::Value *SrcPtr, bool isVolatile);
|
2007-08-21 13:54:00 +08:00
|
|
|
|
2007-08-22 01:28:34 +08:00
|
|
|
/// EmitStoreOfComplex - Store the specified real/imag parts into the
|
|
|
|
/// specified value pointer.
|
2007-08-22 02:02:02 +08:00
|
|
|
void EmitStoreOfComplex(ComplexPairTy Val, llvm::Value *ResPtr, bool isVol);
|
2007-08-21 13:54:00 +08:00
|
|
|
|
2007-08-27 06:09:01 +08:00
|
|
|
/// EmitComplexToComplexCast - Emit a cast from complex value Val to DestType.
|
|
|
|
ComplexPairTy EmitComplexToComplexCast(ComplexPairTy Val, QualType SrcType,
|
|
|
|
QualType DestType);
|
|
|
|
|
2007-08-21 13:54:00 +08:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Visitor Methods
|
|
|
|
//===--------------------------------------------------------------------===//
|
2007-08-22 02:51:13 +08:00
|
|
|
|
2007-08-21 13:54:00 +08:00
|
|
|
ComplexPairTy VisitStmt(Stmt *S) {
|
2007-12-12 05:27:55 +08:00
|
|
|
S->dump(CGF.getContext().getSourceManager());
|
2007-08-22 02:51:13 +08:00
|
|
|
assert(0 && "Stmt can't have complex result type!");
|
2007-08-21 13:54:00 +08:00
|
|
|
return ComplexPairTy();
|
|
|
|
}
|
2007-08-22 02:51:13 +08:00
|
|
|
ComplexPairTy VisitExpr(Expr *S);
|
2007-08-21 13:54:00 +08:00
|
|
|
ComplexPairTy VisitParenExpr(ParenExpr *PE) { return Visit(PE->getSubExpr());}
|
2007-08-26 13:57:57 +08:00
|
|
|
ComplexPairTy VisitImaginaryLiteral(const ImaginaryLiteral *IL);
|
2007-08-26 11:51:12 +08:00
|
|
|
|
2007-08-21 13:54:00 +08:00
|
|
|
// l-values.
|
2007-08-26 13:57:57 +08:00
|
|
|
ComplexPairTy VisitDeclRefExpr(const Expr *E) { return EmitLoadOfLValue(E); }
|
2007-08-22 02:03:58 +08:00
|
|
|
ComplexPairTy VisitArraySubscriptExpr(Expr *E) { return EmitLoadOfLValue(E); }
|
2007-08-26 13:57:57 +08:00
|
|
|
ComplexPairTy VisitMemberExpr(const Expr *E) { return EmitLoadOfLValue(E); }
|
2007-08-21 13:54:00 +08:00
|
|
|
|
2007-08-22 06:33:41 +08:00
|
|
|
// FIXME: CompoundLiteralExpr
|
2007-08-26 13:57:57 +08:00
|
|
|
|
|
|
|
ComplexPairTy EmitCast(Expr *Op, QualType DestTy);
|
|
|
|
ComplexPairTy VisitImplicitCastExpr(ImplicitCastExpr *E) {
|
|
|
|
// Unlike for scalars, we don't have to worry about function->ptr demotion
|
|
|
|
// here.
|
|
|
|
return EmitCast(E->getSubExpr(), E->getType());
|
|
|
|
}
|
|
|
|
ComplexPairTy VisitCastExpr(CastExpr *E) {
|
|
|
|
return EmitCast(E->getSubExpr(), E->getType());
|
|
|
|
}
|
2007-08-24 05:38:16 +08:00
|
|
|
ComplexPairTy VisitCallExpr(const CallExpr *E);
|
2007-09-01 06:51:38 +08:00
|
|
|
ComplexPairTy VisitStmtExpr(const StmtExpr *E);
|
2008-01-31 04:50:20 +08:00
|
|
|
ComplexPairTy VisitOverloadExpr(const OverloadExpr *OE);
|
2007-09-01 06:51:38 +08:00
|
|
|
|
2007-08-21 13:54:00 +08:00
|
|
|
// Operators.
|
2007-08-22 06:25:29 +08:00
|
|
|
ComplexPairTy VisitPrePostIncDec(const UnaryOperator *E,
|
|
|
|
bool isInc, bool isPre);
|
|
|
|
ComplexPairTy VisitUnaryPostDec(const UnaryOperator *E) {
|
|
|
|
return VisitPrePostIncDec(E, false, false);
|
|
|
|
}
|
|
|
|
ComplexPairTy VisitUnaryPostInc(const UnaryOperator *E) {
|
|
|
|
return VisitPrePostIncDec(E, true, false);
|
|
|
|
}
|
|
|
|
ComplexPairTy VisitUnaryPreDec(const UnaryOperator *E) {
|
|
|
|
return VisitPrePostIncDec(E, false, true);
|
|
|
|
}
|
|
|
|
ComplexPairTy VisitUnaryPreInc(const UnaryOperator *E) {
|
|
|
|
return VisitPrePostIncDec(E, true, true);
|
|
|
|
}
|
|
|
|
ComplexPairTy VisitUnaryDeref(const Expr *E) { return EmitLoadOfLValue(E); }
|
2007-08-22 04:08:23 +08:00
|
|
|
ComplexPairTy VisitUnaryPlus (const UnaryOperator *E) {
|
|
|
|
return Visit(E->getSubExpr());
|
|
|
|
}
|
|
|
|
ComplexPairTy VisitUnaryMinus (const UnaryOperator *E);
|
2007-08-22 04:41:44 +08:00
|
|
|
ComplexPairTy VisitUnaryNot (const UnaryOperator *E);
|
|
|
|
// LNot,SizeOf,AlignOf,Real,Imag never return complex.
|
|
|
|
ComplexPairTy VisitUnaryExtension(const UnaryOperator *E) {
|
|
|
|
return Visit(E->getSubExpr());
|
|
|
|
}
|
2008-04-08 12:40:51 +08:00
|
|
|
ComplexPairTy VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) {
|
|
|
|
return Visit(DAE->getExpr());
|
|
|
|
}
|
2008-08-24 03:35:47 +08:00
|
|
|
ComplexPairTy VisitCXXZeroInitValueExpr(CXXZeroInitValueExpr *E) {
|
|
|
|
assert(E->getType()->isAnyComplexType() && "Expected complex type!");
|
|
|
|
QualType Elem = E->getType()->getAsComplexType()->getElementType();
|
|
|
|
llvm::Constant *Null = llvm::Constant::getNullValue(CGF.ConvertType(Elem));
|
|
|
|
return ComplexPairTy(Null, Null);
|
|
|
|
}
|
2007-08-22 04:41:44 +08:00
|
|
|
|
2007-08-27 06:09:01 +08:00
|
|
|
struct BinOpInfo {
|
|
|
|
ComplexPairTy LHS;
|
|
|
|
ComplexPairTy RHS;
|
|
|
|
QualType Ty; // Computation Type.
|
|
|
|
};
|
|
|
|
|
|
|
|
BinOpInfo EmitBinOps(const BinaryOperator *E);
|
|
|
|
ComplexPairTy EmitCompoundAssign(const CompoundAssignOperator *E,
|
|
|
|
ComplexPairTy (ComplexExprEmitter::*Func)
|
|
|
|
(const BinOpInfo &));
|
|
|
|
|
|
|
|
ComplexPairTy EmitBinAdd(const BinOpInfo &Op);
|
|
|
|
ComplexPairTy EmitBinSub(const BinOpInfo &Op);
|
|
|
|
ComplexPairTy EmitBinMul(const BinOpInfo &Op);
|
|
|
|
ComplexPairTy EmitBinDiv(const BinOpInfo &Op);
|
|
|
|
|
|
|
|
ComplexPairTy VisitBinMul(const BinaryOperator *E) {
|
|
|
|
return EmitBinMul(EmitBinOps(E));
|
|
|
|
}
|
|
|
|
ComplexPairTy VisitBinAdd(const BinaryOperator *E) {
|
|
|
|
return EmitBinAdd(EmitBinOps(E));
|
|
|
|
}
|
|
|
|
ComplexPairTy VisitBinSub(const BinaryOperator *E) {
|
|
|
|
return EmitBinSub(EmitBinOps(E));
|
|
|
|
}
|
|
|
|
ComplexPairTy VisitBinDiv(const BinaryOperator *E) {
|
|
|
|
return EmitBinDiv(EmitBinOps(E));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Compound assignments.
|
|
|
|
ComplexPairTy VisitBinAddAssign(const CompoundAssignOperator *E) {
|
|
|
|
return EmitCompoundAssign(E, &ComplexExprEmitter::EmitBinAdd);
|
|
|
|
}
|
|
|
|
ComplexPairTy VisitBinSubAssign(const CompoundAssignOperator *E) {
|
|
|
|
return EmitCompoundAssign(E, &ComplexExprEmitter::EmitBinSub);
|
|
|
|
}
|
|
|
|
ComplexPairTy VisitBinMulAssign(const CompoundAssignOperator *E) {
|
|
|
|
return EmitCompoundAssign(E, &ComplexExprEmitter::EmitBinMul);
|
|
|
|
}
|
|
|
|
ComplexPairTy VisitBinDivAssign(const CompoundAssignOperator *E) {
|
|
|
|
return EmitCompoundAssign(E, &ComplexExprEmitter::EmitBinDiv);
|
|
|
|
}
|
|
|
|
|
2007-08-27 05:27:07 +08:00
|
|
|
// GCC rejects rem/and/or/xor for integer complex.
|
2007-08-22 01:12:50 +08:00
|
|
|
// Logical and/or always return int, never complex.
|
2007-08-22 00:57:55 +08:00
|
|
|
|
|
|
|
// No comparisons produce a complex result.
|
2007-08-21 13:54:00 +08:00
|
|
|
ComplexPairTy VisitBinAssign (const BinaryOperator *E);
|
2007-08-22 01:15:50 +08:00
|
|
|
ComplexPairTy VisitBinComma (const BinaryOperator *E);
|
|
|
|
|
2007-08-21 13:54:00 +08:00
|
|
|
|
|
|
|
ComplexPairTy VisitConditionalOperator(const ConditionalOperator *CO);
|
2007-08-24 10:18:47 +08:00
|
|
|
ComplexPairTy VisitChooseExpr(ChooseExpr *CE);
|
2008-05-14 07:11:35 +08:00
|
|
|
|
|
|
|
ComplexPairTy VisitInitListExpr(InitListExpr *E);
|
2007-08-21 13:54:00 +08:00
|
|
|
};
|
|
|
|
} // end anonymous namespace.
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Utilities
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2007-08-22 01:28:34 +08:00
|
|
|
/// EmitLoadOfComplex - Given an RValue reference for a complex, emit code to
|
|
|
|
/// load the real and imaginary pieces, returning them as Real/Imag.
|
2007-08-22 02:02:02 +08:00
|
|
|
ComplexPairTy ComplexExprEmitter::EmitLoadOfComplex(llvm::Value *SrcPtr,
|
|
|
|
bool isVolatile) {
|
2007-08-27 06:47:40 +08:00
|
|
|
llvm::SmallString<64> Name(SrcPtr->getNameStart(),
|
|
|
|
SrcPtr->getNameStart()+SrcPtr->getNameLen());
|
|
|
|
|
|
|
|
Name += ".realp";
|
2008-03-19 13:19:41 +08:00
|
|
|
llvm::Value *RealPtr = Builder.CreateStructGEP(SrcPtr, 0, Name.c_str());
|
2007-08-27 06:47:40 +08:00
|
|
|
|
|
|
|
Name.pop_back(); // .realp -> .real
|
|
|
|
llvm::Value *Real = Builder.CreateLoad(RealPtr, isVolatile, Name.c_str());
|
|
|
|
|
|
|
|
Name.resize(Name.size()-4); // .real -> .imagp
|
|
|
|
Name += "imagp";
|
2007-09-05 01:20:08 +08:00
|
|
|
|
2008-03-19 13:19:41 +08:00
|
|
|
llvm::Value *ImagPtr = Builder.CreateStructGEP(SrcPtr, 1, Name.c_str());
|
2007-09-05 01:20:08 +08:00
|
|
|
|
2007-08-27 06:47:40 +08:00
|
|
|
Name.pop_back(); // .imagp -> .imag
|
|
|
|
llvm::Value *Imag = Builder.CreateLoad(ImagPtr, isVolatile, Name.c_str());
|
2007-08-21 13:54:00 +08:00
|
|
|
return ComplexPairTy(Real, Imag);
|
|
|
|
}
|
|
|
|
|
2007-08-22 01:28:34 +08:00
|
|
|
/// EmitStoreOfComplex - Store the specified real/imag parts into the
|
|
|
|
/// specified value pointer.
|
2007-08-22 02:02:02 +08:00
|
|
|
void ComplexExprEmitter::EmitStoreOfComplex(ComplexPairTy Val, llvm::Value *Ptr,
|
|
|
|
bool isVolatile) {
|
2008-03-19 13:19:41 +08:00
|
|
|
llvm::Value *RealPtr = Builder.CreateStructGEP(Ptr, 0, "real");
|
|
|
|
llvm::Value *ImagPtr = Builder.CreateStructGEP(Ptr, 1, "imag");
|
2007-08-22 01:28:34 +08:00
|
|
|
|
2007-08-22 02:02:02 +08:00
|
|
|
Builder.CreateStore(Val.first, RealPtr, isVolatile);
|
|
|
|
Builder.CreateStore(Val.second, ImagPtr, isVolatile);
|
2007-08-22 01:28:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-08-21 13:54:00 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Visitor Methods
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2007-08-22 02:51:13 +08:00
|
|
|
ComplexPairTy ComplexExprEmitter::VisitExpr(Expr *E) {
|
2008-08-16 08:56:44 +08:00
|
|
|
CGF.ErrorUnsupported(E, "complex expression");
|
2007-08-22 02:51:13 +08:00
|
|
|
const llvm::Type *EltTy =
|
|
|
|
CGF.ConvertType(E->getType()->getAsComplexType()->getElementType());
|
|
|
|
llvm::Value *U = llvm::UndefValue::get(EltTy);
|
|
|
|
return ComplexPairTy(U, U);
|
2007-08-21 13:54:00 +08:00
|
|
|
}
|
|
|
|
|
2007-08-26 13:57:57 +08:00
|
|
|
ComplexPairTy ComplexExprEmitter::
|
|
|
|
VisitImaginaryLiteral(const ImaginaryLiteral *IL) {
|
2007-08-26 11:51:12 +08:00
|
|
|
llvm::Value *Imag = CGF.EmitScalarExpr(IL->getSubExpr());
|
|
|
|
return ComplexPairTy(llvm::Constant::getNullValue(Imag->getType()), Imag);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-24 05:38:16 +08:00
|
|
|
ComplexPairTy ComplexExprEmitter::VisitCallExpr(const CallExpr *E) {
|
2007-09-01 06:49:20 +08:00
|
|
|
return CGF.EmitCallExpr(E).getComplexVal();
|
2008-01-31 04:50:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ComplexPairTy ComplexExprEmitter::VisitOverloadExpr(const OverloadExpr *E) {
|
This patch is motivated by numerous strict-aliasing warnings when compiling
clang as a Release build.
The big change is that all AST nodes (subclasses of Stmt) whose children are
Expr* store their children as Stmt* or arrays of Stmt*. This is to remove
strict-aliasing warnings when using StmtIterator. None of the interfaces of any
of the classes have changed (except those with arg_iterators, see below), as the
accessor methods introduce the needed casts (via cast<>). While this extra
casting may seem cumbersome, it actually adds some important sanity checks
throughout the codebase, as clients using StmtIterator can potentially overwrite
children that are expected to be Expr* with Stmt* (that aren't Expr*). The casts
provide extra sanity checks that are operational in debug builds to catch
invariant violations such as these.
For classes that have arg_iterators (e.g., CallExpr), the definition of
arg_iterator has been replaced. Instead of it being Expr**, it is an actual
class (called ExprIterator) that wraps a Stmt**, and provides the necessary
operators for iteration. The nice thing about this class is that it also uses
cast<> to type-checking, which introduces extra sanity checks throughout the
codebase that are useful for debugging.
A few of the CodeGen functions that use arg_iterator (especially from
OverloadExpr) have been modified to take begin and end iterators instead of a
base Expr** and the number of arguments. This matches more with the abstraction
of iteration. This still needs to be cleaned up a little bit, as clients expect
that ExprIterator is a RandomAccessIterator (which we may or may not wish to
allow for efficiency of representation).
This is a fairly large patch. It passes the tests (except CodeGen/bitfield.c,
which was already broken) on both a Debug and Release build, but it should
obviously be reviewed.
llvm-svn: 52378
2008-06-17 10:43:46 +08:00
|
|
|
return CGF.EmitCallExpr(E->getFn(), E->arg_begin(),
|
|
|
|
E->arg_end(CGF.getContext())).getComplexVal();
|
2007-08-24 05:38:16 +08:00
|
|
|
}
|
|
|
|
|
2007-09-01 06:51:38 +08:00
|
|
|
ComplexPairTy ComplexExprEmitter::VisitStmtExpr(const StmtExpr *E) {
|
|
|
|
return CGF.EmitCompoundStmt(*E->getSubStmt(), true).getComplexVal();
|
|
|
|
}
|
|
|
|
|
2007-08-27 06:09:01 +08:00
|
|
|
/// EmitComplexToComplexCast - Emit a cast from complex value Val to DestType.
|
|
|
|
ComplexPairTy ComplexExprEmitter::EmitComplexToComplexCast(ComplexPairTy Val,
|
|
|
|
QualType SrcType,
|
|
|
|
QualType DestType) {
|
|
|
|
// Get the src/dest element type.
|
2008-07-27 06:37:01 +08:00
|
|
|
SrcType = SrcType->getAsComplexType()->getElementType();
|
|
|
|
DestType = DestType->getAsComplexType()->getElementType();
|
2007-08-27 06:09:01 +08:00
|
|
|
|
|
|
|
// C99 6.3.1.6: When a value of complextype is converted to another
|
|
|
|
// complex type, both the real and imaginary parts followthe conversion
|
|
|
|
// rules for the corresponding real types.
|
|
|
|
Val.first = CGF.EmitScalarConversion(Val.first, SrcType, DestType);
|
|
|
|
Val.second = CGF.EmitScalarConversion(Val.second, SrcType, DestType);
|
|
|
|
return Val;
|
|
|
|
}
|
2007-08-26 13:57:57 +08:00
|
|
|
|
2007-08-27 06:09:01 +08:00
|
|
|
ComplexPairTy ComplexExprEmitter::EmitCast(Expr *Op, QualType DestTy) {
|
2007-08-26 13:57:57 +08:00
|
|
|
// Two cases here: cast from (complex to complex) and (scalar to complex).
|
2008-04-05 00:54:41 +08:00
|
|
|
if (Op->getType()->isAnyComplexType())
|
2007-08-27 06:09:01 +08:00
|
|
|
return EmitComplexToComplexCast(Visit(Op), Op->getType(), DestTy);
|
|
|
|
|
2007-08-26 13:57:57 +08:00
|
|
|
// C99 6.3.1.7: When a value of real type is converted to a complex type, the
|
|
|
|
// real part of the complex result value is determined by the rules of
|
|
|
|
// conversion to the corresponding real type and the imaginary part of the
|
|
|
|
// complex result value is a positive zero or an unsigned zero.
|
|
|
|
llvm::Value *Elt = CGF.EmitScalarExpr(Op);
|
|
|
|
|
|
|
|
// Convert the input element to the element type of the complex.
|
2008-07-27 06:37:01 +08:00
|
|
|
DestTy = DestTy->getAsComplexType()->getElementType();
|
2007-08-26 14:48:56 +08:00
|
|
|
Elt = CGF.EmitScalarConversion(Elt, Op->getType(), DestTy);
|
2007-08-26 13:57:57 +08:00
|
|
|
|
|
|
|
// Return (realval, 0).
|
|
|
|
return ComplexPairTy(Elt, llvm::Constant::getNullValue(Elt->getType()));
|
|
|
|
}
|
|
|
|
|
2007-08-22 06:25:29 +08:00
|
|
|
ComplexPairTy ComplexExprEmitter::VisitPrePostIncDec(const UnaryOperator *E,
|
|
|
|
bool isInc, bool isPre) {
|
|
|
|
LValue LV = CGF.EmitLValue(E->getSubExpr());
|
|
|
|
// FIXME: Handle volatile!
|
|
|
|
ComplexPairTy InVal = EmitLoadOfComplex(LV.getAddress(), false);
|
|
|
|
|
2007-09-07 22:34:20 +08:00
|
|
|
uint64_t AmountVal = isInc ? 1 : -1;
|
2007-08-22 06:25:29 +08:00
|
|
|
|
|
|
|
llvm::Value *NextVal;
|
|
|
|
if (isa<llvm::IntegerType>(InVal.first->getType()))
|
|
|
|
NextVal = llvm::ConstantInt::get(InVal.first->getType(), AmountVal);
|
2007-09-13 14:19:18 +08:00
|
|
|
else if (InVal.first->getType() == llvm::Type::FloatTy)
|
|
|
|
// FIXME: Handle long double.
|
2007-10-31 04:59:40 +08:00
|
|
|
NextVal =
|
2008-05-05 02:23:51 +08:00
|
|
|
llvm::ConstantFP::get(llvm::APFloat(static_cast<float>(AmountVal)));
|
2007-09-13 14:19:18 +08:00
|
|
|
else {
|
|
|
|
// FIXME: Handle long double.
|
|
|
|
assert(InVal.first->getType() == llvm::Type::DoubleTy);
|
2007-10-31 04:59:40 +08:00
|
|
|
NextVal =
|
2008-05-05 02:23:51 +08:00
|
|
|
llvm::ConstantFP::get(llvm::APFloat(static_cast<double>(AmountVal)));
|
2007-09-13 14:19:18 +08:00
|
|
|
}
|
2007-08-22 06:25:29 +08:00
|
|
|
|
|
|
|
// Add the inc/dec to the real part.
|
|
|
|
NextVal = Builder.CreateAdd(InVal.first, NextVal, isInc ? "inc" : "dec");
|
|
|
|
|
|
|
|
ComplexPairTy IncVal(NextVal, InVal.second);
|
|
|
|
|
|
|
|
// Store the updated result through the lvalue.
|
|
|
|
EmitStoreOfComplex(IncVal, LV.getAddress(), false); /* FIXME: Volatile */
|
|
|
|
|
|
|
|
// If this is a postinc, return the value read from memory, otherwise use the
|
|
|
|
// updated value.
|
|
|
|
return isPre ? IncVal : InVal;
|
|
|
|
}
|
|
|
|
|
2007-08-22 04:08:23 +08:00
|
|
|
ComplexPairTy ComplexExprEmitter::VisitUnaryMinus(const UnaryOperator *E) {
|
|
|
|
ComplexPairTy Op = Visit(E->getSubExpr());
|
|
|
|
llvm::Value *ResR = Builder.CreateNeg(Op.first, "neg.r");
|
|
|
|
llvm::Value *ResI = Builder.CreateNeg(Op.second, "neg.i");
|
|
|
|
return ComplexPairTy(ResR, ResI);
|
|
|
|
}
|
|
|
|
|
2007-08-22 04:41:44 +08:00
|
|
|
ComplexPairTy ComplexExprEmitter::VisitUnaryNot(const UnaryOperator *E) {
|
|
|
|
// ~(a+ib) = a + i*-b
|
|
|
|
ComplexPairTy Op = Visit(E->getSubExpr());
|
|
|
|
llvm::Value *ResI = Builder.CreateNeg(Op.second, "conj.i");
|
|
|
|
return ComplexPairTy(Op.first, ResI);
|
|
|
|
}
|
2007-08-22 04:08:23 +08:00
|
|
|
|
2007-08-27 06:09:01 +08:00
|
|
|
ComplexPairTy ComplexExprEmitter::EmitBinAdd(const BinOpInfo &Op) {
|
|
|
|
llvm::Value *ResR = Builder.CreateAdd(Op.LHS.first, Op.RHS.first, "add.r");
|
|
|
|
llvm::Value *ResI = Builder.CreateAdd(Op.LHS.second, Op.RHS.second, "add.i");
|
2007-08-21 13:54:00 +08:00
|
|
|
return ComplexPairTy(ResR, ResI);
|
|
|
|
}
|
|
|
|
|
2007-08-27 06:09:01 +08:00
|
|
|
ComplexPairTy ComplexExprEmitter::EmitBinSub(const BinOpInfo &Op) {
|
|
|
|
llvm::Value *ResR = Builder.CreateSub(Op.LHS.first, Op.RHS.first, "sub.r");
|
|
|
|
llvm::Value *ResI = Builder.CreateSub(Op.LHS.second, Op.RHS.second, "sub.i");
|
2007-08-24 07:46:33 +08:00
|
|
|
return ComplexPairTy(ResR, ResI);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-27 06:09:01 +08:00
|
|
|
ComplexPairTy ComplexExprEmitter::EmitBinMul(const BinOpInfo &Op) {
|
|
|
|
llvm::Value *ResRl = Builder.CreateMul(Op.LHS.first, Op.RHS.first, "mul.rl");
|
|
|
|
llvm::Value *ResRr = Builder.CreateMul(Op.LHS.second, Op.RHS.second,"mul.rr");
|
2007-08-22 01:39:38 +08:00
|
|
|
llvm::Value *ResR = Builder.CreateSub(ResRl, ResRr, "mul.r");
|
2007-08-22 00:34:16 +08:00
|
|
|
|
2007-08-27 06:09:01 +08:00
|
|
|
llvm::Value *ResIl = Builder.CreateMul(Op.LHS.second, Op.RHS.first, "mul.il");
|
|
|
|
llvm::Value *ResIr = Builder.CreateMul(Op.LHS.first, Op.RHS.second, "mul.ir");
|
2007-08-22 01:39:38 +08:00
|
|
|
llvm::Value *ResI = Builder.CreateAdd(ResIl, ResIr, "mul.i");
|
2007-08-22 00:34:16 +08:00
|
|
|
return ComplexPairTy(ResR, ResI);
|
|
|
|
}
|
|
|
|
|
2007-08-27 06:09:01 +08:00
|
|
|
ComplexPairTy ComplexExprEmitter::EmitBinDiv(const BinOpInfo &Op) {
|
|
|
|
llvm::Value *LHSr = Op.LHS.first, *LHSi = Op.LHS.second;
|
|
|
|
llvm::Value *RHSr = Op.RHS.first, *RHSi = Op.RHS.second;
|
2007-08-27 05:24:19 +08:00
|
|
|
|
|
|
|
// (a+ib) / (c+id) = ((ac+bd)/(cc+dd)) + i((bc-ad)/(cc+dd))
|
|
|
|
llvm::Value *Tmp1 = Builder.CreateMul(LHSr, RHSr, "tmp"); // a*c
|
|
|
|
llvm::Value *Tmp2 = Builder.CreateMul(LHSi, RHSi, "tmp"); // b*d
|
|
|
|
llvm::Value *Tmp3 = Builder.CreateAdd(Tmp1, Tmp2, "tmp"); // ac+bd
|
|
|
|
|
|
|
|
llvm::Value *Tmp4 = Builder.CreateMul(RHSr, RHSr, "tmp"); // c*c
|
|
|
|
llvm::Value *Tmp5 = Builder.CreateMul(RHSi, RHSi, "tmp"); // d*d
|
|
|
|
llvm::Value *Tmp6 = Builder.CreateAdd(Tmp4, Tmp5, "tmp"); // cc+dd
|
|
|
|
|
|
|
|
llvm::Value *Tmp7 = Builder.CreateMul(LHSi, RHSr, "tmp"); // b*c
|
|
|
|
llvm::Value *Tmp8 = Builder.CreateMul(LHSr, RHSi, "tmp"); // a*d
|
|
|
|
llvm::Value *Tmp9 = Builder.CreateSub(Tmp7, Tmp8, "tmp"); // bc-ad
|
|
|
|
|
|
|
|
llvm::Value *DSTr, *DSTi;
|
|
|
|
if (Tmp3->getType()->isFloatingPoint()) {
|
|
|
|
DSTr = Builder.CreateFDiv(Tmp3, Tmp6, "tmp");
|
|
|
|
DSTi = Builder.CreateFDiv(Tmp9, Tmp6, "tmp");
|
|
|
|
} else {
|
2007-08-27 06:09:01 +08:00
|
|
|
if (Op.Ty->getAsComplexType()->getElementType()->isUnsignedIntegerType()) {
|
2007-08-27 05:24:19 +08:00
|
|
|
DSTr = Builder.CreateUDiv(Tmp3, Tmp6, "tmp");
|
|
|
|
DSTi = Builder.CreateUDiv(Tmp9, Tmp6, "tmp");
|
|
|
|
} else {
|
|
|
|
DSTr = Builder.CreateSDiv(Tmp3, Tmp6, "tmp");
|
|
|
|
DSTi = Builder.CreateSDiv(Tmp9, Tmp6, "tmp");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ComplexPairTy(DSTr, DSTi);
|
|
|
|
}
|
|
|
|
|
2007-08-27 06:09:01 +08:00
|
|
|
ComplexExprEmitter::BinOpInfo
|
|
|
|
ComplexExprEmitter::EmitBinOps(const BinaryOperator *E) {
|
|
|
|
BinOpInfo Ops;
|
|
|
|
Ops.LHS = Visit(E->getLHS());
|
|
|
|
Ops.RHS = Visit(E->getRHS());
|
|
|
|
Ops.Ty = E->getType();
|
|
|
|
return Ops;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Compound assignments.
|
|
|
|
ComplexPairTy ComplexExprEmitter::
|
|
|
|
EmitCompoundAssign(const CompoundAssignOperator *E,
|
|
|
|
ComplexPairTy (ComplexExprEmitter::*Func)(const BinOpInfo&)){
|
|
|
|
QualType LHSTy = E->getLHS()->getType(), RHSTy = E->getRHS()->getType();
|
|
|
|
|
|
|
|
// Load the LHS and RHS operands.
|
|
|
|
LValue LHSLV = CGF.EmitLValue(E->getLHS());
|
|
|
|
|
|
|
|
BinOpInfo OpInfo;
|
|
|
|
OpInfo.Ty = E->getComputationType();
|
|
|
|
|
|
|
|
// We know the LHS is a complex lvalue.
|
|
|
|
OpInfo.LHS = EmitLoadOfComplex(LHSLV.getAddress(), false);// FIXME: Volatile.
|
|
|
|
OpInfo.LHS = EmitComplexToComplexCast(OpInfo.LHS, LHSTy, OpInfo.Ty);
|
|
|
|
|
|
|
|
// It is possible for the RHS to be complex or scalar.
|
|
|
|
OpInfo.RHS = EmitCast(E->getRHS(), OpInfo.Ty);
|
|
|
|
|
|
|
|
// Expand the binary operator.
|
|
|
|
ComplexPairTy Result = (this->*Func)(OpInfo);
|
|
|
|
|
|
|
|
// Truncate the result back to the LHS type.
|
|
|
|
Result = EmitComplexToComplexCast(Result, OpInfo.Ty, LHSTy);
|
|
|
|
|
|
|
|
// Store the result value into the LHS lvalue.
|
|
|
|
EmitStoreOfComplex(Result, LHSLV.getAddress(), false); // FIXME: VOLATILE
|
|
|
|
return Result;
|
|
|
|
}
|
2007-08-27 05:24:19 +08:00
|
|
|
|
2007-08-21 13:54:00 +08:00
|
|
|
ComplexPairTy ComplexExprEmitter::VisitBinAssign(const BinaryOperator *E) {
|
2008-07-27 06:37:01 +08:00
|
|
|
assert(CGF.getContext().getCanonicalType(E->getLHS()->getType()) ==
|
|
|
|
CGF.getContext().getCanonicalType(E->getRHS()->getType()) &&
|
|
|
|
"Invalid assignment");
|
2007-08-21 13:54:00 +08:00
|
|
|
// Emit the RHS.
|
|
|
|
ComplexPairTy Val = Visit(E->getRHS());
|
|
|
|
|
|
|
|
// Compute the address to store into.
|
|
|
|
LValue LHS = CGF.EmitLValue(E->getLHS());
|
|
|
|
|
|
|
|
// Store into it.
|
|
|
|
// FIXME: Volatility!
|
2007-08-22 02:02:02 +08:00
|
|
|
EmitStoreOfComplex(Val, LHS.getAddress(), false);
|
2007-08-21 13:54:00 +08:00
|
|
|
return Val;
|
|
|
|
}
|
|
|
|
|
2007-08-22 01:15:50 +08:00
|
|
|
ComplexPairTy ComplexExprEmitter::VisitBinComma(const BinaryOperator *E) {
|
|
|
|
CGF.EmitStmt(E->getLHS());
|
|
|
|
return Visit(E->getRHS());
|
|
|
|
}
|
2007-08-21 13:54:00 +08:00
|
|
|
|
|
|
|
ComplexPairTy ComplexExprEmitter::
|
|
|
|
VisitConditionalOperator(const ConditionalOperator *E) {
|
2008-11-11 10:29:29 +08:00
|
|
|
llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.?");
|
|
|
|
llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.:");
|
|
|
|
llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.cont");
|
2007-08-21 13:54:00 +08:00
|
|
|
|
|
|
|
llvm::Value *Cond = CGF.EvaluateExprAsBool(E->getCond());
|
2007-08-22 01:39:38 +08:00
|
|
|
Builder.CreateCondBr(Cond, LHSBlock, RHSBlock);
|
2007-08-21 13:54:00 +08:00
|
|
|
|
|
|
|
CGF.EmitBlock(LHSBlock);
|
|
|
|
|
|
|
|
// Handle the GNU extension for missing LHS.
|
2007-08-21 13:54:53 +08:00
|
|
|
assert(E->getLHS() && "Must have LHS for complex value");
|
2007-08-21 13:54:00 +08:00
|
|
|
|
|
|
|
ComplexPairTy LHS = Visit(E->getLHS());
|
2007-08-22 01:39:38 +08:00
|
|
|
LHSBlock = Builder.GetInsertBlock();
|
2008-11-11 17:41:28 +08:00
|
|
|
CGF.EmitBranch(ContBlock);
|
2007-08-21 13:54:00 +08:00
|
|
|
|
|
|
|
CGF.EmitBlock(RHSBlock);
|
|
|
|
|
|
|
|
ComplexPairTy RHS = Visit(E->getRHS());
|
2007-08-22 01:39:38 +08:00
|
|
|
RHSBlock = Builder.GetInsertBlock();
|
2008-11-11 17:41:28 +08:00
|
|
|
CGF.EmitBranch(ContBlock);
|
2007-08-21 13:54:00 +08:00
|
|
|
|
|
|
|
CGF.EmitBlock(ContBlock);
|
|
|
|
|
|
|
|
// Create a PHI node for the real part.
|
2007-08-22 01:39:38 +08:00
|
|
|
llvm::PHINode *RealPN = Builder.CreatePHI(LHS.first->getType(), "cond.r");
|
2007-08-21 13:54:00 +08:00
|
|
|
RealPN->reserveOperandSpace(2);
|
|
|
|
RealPN->addIncoming(LHS.first, LHSBlock);
|
|
|
|
RealPN->addIncoming(RHS.first, RHSBlock);
|
|
|
|
|
|
|
|
// Create a PHI node for the imaginary part.
|
2007-08-22 01:39:38 +08:00
|
|
|
llvm::PHINode *ImagPN = Builder.CreatePHI(LHS.first->getType(), "cond.i");
|
2007-08-21 13:54:00 +08:00
|
|
|
ImagPN->reserveOperandSpace(2);
|
|
|
|
ImagPN->addIncoming(LHS.second, LHSBlock);
|
|
|
|
ImagPN->addIncoming(RHS.second, RHSBlock);
|
|
|
|
|
|
|
|
return ComplexPairTy(RealPN, ImagPN);
|
|
|
|
}
|
|
|
|
|
2007-08-24 10:18:47 +08:00
|
|
|
ComplexPairTy ComplexExprEmitter::VisitChooseExpr(ChooseExpr *E) {
|
|
|
|
// Emit the LHS or RHS as appropriate.
|
2007-10-25 08:29:32 +08:00
|
|
|
return Visit(E->isConditionTrue(CGF.getContext()) ? E->getLHS() :E->getRHS());
|
2007-08-24 10:18:47 +08:00
|
|
|
}
|
|
|
|
|
2008-05-14 07:11:35 +08:00
|
|
|
ComplexPairTy ComplexExprEmitter::VisitInitListExpr(InitListExpr *E) {
|
|
|
|
if (E->getNumInits())
|
|
|
|
return Visit(E->getInit(0));
|
|
|
|
|
|
|
|
// Empty init list intializes to null
|
|
|
|
QualType Ty = E->getType()->getAsComplexType()->getElementType();
|
|
|
|
const llvm::Type* LTy = CGF.ConvertType(Ty);
|
|
|
|
llvm::Value* zeroConstant = llvm::Constant::getNullValue(LTy);
|
|
|
|
return ComplexPairTy(zeroConstant, zeroConstant);
|
|
|
|
}
|
|
|
|
|
2007-08-21 13:54:00 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Entry Point into this File
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
/// EmitComplexExpr - Emit the computation of the specified expression of
|
|
|
|
/// complex type, ignoring the result.
|
2007-08-22 00:57:55 +08:00
|
|
|
ComplexPairTy CodeGenFunction::EmitComplexExpr(const Expr *E) {
|
2008-04-05 00:54:41 +08:00
|
|
|
assert(E && E->getType()->isAnyComplexType() &&
|
2007-08-21 13:54:00 +08:00
|
|
|
"Invalid complex expression to emit");
|
|
|
|
|
2007-08-22 00:57:55 +08:00
|
|
|
return ComplexExprEmitter(*this).Visit(const_cast<Expr*>(E));
|
2007-08-21 13:54:00 +08:00
|
|
|
}
|
|
|
|
|
2007-08-24 07:43:33 +08:00
|
|
|
/// EmitComplexExprIntoAddr - Emit the computation of the specified expression
|
|
|
|
/// of complex type, storing into the specified Value*.
|
|
|
|
void CodeGenFunction::EmitComplexExprIntoAddr(const Expr *E,
|
2007-08-27 00:22:13 +08:00
|
|
|
llvm::Value *DestAddr,
|
|
|
|
bool DestIsVolatile) {
|
2008-04-05 00:54:41 +08:00
|
|
|
assert(E && E->getType()->isAnyComplexType() &&
|
2007-08-24 07:43:33 +08:00
|
|
|
"Invalid complex expression to emit");
|
|
|
|
ComplexExprEmitter Emitter(*this);
|
|
|
|
ComplexPairTy Val = Emitter.Visit(const_cast<Expr*>(E));
|
2007-08-27 00:22:13 +08:00
|
|
|
Emitter.EmitStoreOfComplex(Val, DestAddr, DestIsVolatile);
|
2007-08-24 07:43:33 +08:00
|
|
|
}
|
2007-09-01 06:49:20 +08:00
|
|
|
|
2008-08-30 13:35:15 +08:00
|
|
|
/// StoreComplexToAddr - Store a complex number into the specified address.
|
|
|
|
void CodeGenFunction::StoreComplexToAddr(ComplexPairTy V,
|
|
|
|
llvm::Value *DestAddr,
|
|
|
|
bool DestIsVolatile) {
|
|
|
|
ComplexExprEmitter(*this).EmitStoreOfComplex(V, DestAddr, DestIsVolatile);
|
|
|
|
}
|
|
|
|
|
2007-09-01 06:49:20 +08:00
|
|
|
/// LoadComplexFromAddr - Load a complex number from the specified address.
|
|
|
|
ComplexPairTy CodeGenFunction::LoadComplexFromAddr(llvm::Value *SrcAddr,
|
|
|
|
bool SrcIsVolatile) {
|
|
|
|
return ComplexExprEmitter(*this).EmitLoadOfComplex(SrcAddr, SrcIsVolatile);
|
|
|
|
}
|