Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1 | //===--- CGExprScalar.cpp - Emit LLVM Code for Scalar Exprs ---------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by Chris Lattner and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This contains code to emit Expr nodes with scalar LLVM types as LLVM code. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "CodeGenFunction.h" |
| 15 | #include "CodeGenModule.h" |
| 16 | #include "clang/AST/AST.h" |
| 17 | #include "llvm/Constants.h" |
| 18 | #include "llvm/Function.h" |
| 19 | #include "llvm/Support/Compiler.h" |
| 20 | using namespace clang; |
| 21 | using namespace CodeGen; |
| 22 | using llvm::Value; |
| 23 | |
| 24 | //===----------------------------------------------------------------------===// |
| 25 | // Scalar Expression Emitter |
| 26 | //===----------------------------------------------------------------------===// |
| 27 | |
| 28 | struct BinOpInfo { |
| 29 | Value *LHS; |
| 30 | Value *RHS; |
Chris Lattner | 1f1ded9 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 31 | QualType Ty; // Computation Type. |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 32 | const BinaryOperator *E; |
| 33 | }; |
| 34 | |
| 35 | namespace { |
| 36 | class VISIBILITY_HIDDEN ScalarExprEmitter |
| 37 | : public StmtVisitor<ScalarExprEmitter, Value*> { |
| 38 | CodeGenFunction &CGF; |
| 39 | llvm::LLVMBuilder &Builder; |
| 40 | public: |
| 41 | |
| 42 | ScalarExprEmitter(CodeGenFunction &cgf) : CGF(cgf), Builder(CGF.Builder) { |
| 43 | } |
| 44 | |
| 45 | |
| 46 | //===--------------------------------------------------------------------===// |
| 47 | // Utilities |
| 48 | //===--------------------------------------------------------------------===// |
| 49 | |
| 50 | const llvm::Type *ConvertType(QualType T) { return CGF.ConvertType(T); } |
| 51 | LValue EmitLValue(const Expr *E) { return CGF.EmitLValue(E); } |
| 52 | |
| 53 | Value *EmitLoadOfLValue(LValue LV, QualType T) { |
Chris Lattner | 9b65551 | 2007-08-31 22:49:20 +0000 | [diff] [blame] | 54 | return CGF.EmitLoadOfLValue(LV, T).getScalarVal(); |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | /// EmitLoadOfLValue - Given an expression with complex type that represents a |
| 58 | /// value l-value, this method emits the address of the l-value, then loads |
| 59 | /// and returns the result. |
| 60 | Value *EmitLoadOfLValue(const Expr *E) { |
| 61 | // FIXME: Volatile |
| 62 | return EmitLoadOfLValue(EmitLValue(E), E->getType()); |
| 63 | } |
| 64 | |
Chris Lattner | 9abc84e | 2007-08-26 16:42:57 +0000 | [diff] [blame] | 65 | /// EmitConversionToBool - Convert the specified expression value to a |
Chris Lattner | 3420d0d | 2007-08-26 17:25:57 +0000 | [diff] [blame] | 66 | /// boolean (i1) truth value. This is equivalent to "Val != 0". |
Chris Lattner | 9abc84e | 2007-08-26 16:42:57 +0000 | [diff] [blame] | 67 | Value *EmitConversionToBool(Value *Src, QualType DstTy); |
| 68 | |
Chris Lattner | 3707b25 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 69 | /// EmitScalarConversion - Emit a conversion from the specified type to the |
| 70 | /// specified destination type, both of which are LLVM scalar types. |
Chris Lattner | 4f1a7b3 | 2007-08-26 16:34:22 +0000 | [diff] [blame] | 71 | Value *EmitScalarConversion(Value *Src, QualType SrcTy, QualType DstTy); |
| 72 | |
| 73 | /// EmitComplexToScalarConversion - Emit a conversion from the specified |
| 74 | /// complex type to the specified destination type, where the destination |
| 75 | /// type is an LLVM scalar type. |
| 76 | Value *EmitComplexToScalarConversion(CodeGenFunction::ComplexPairTy Src, |
| 77 | QualType SrcTy, QualType DstTy); |
Chris Lattner | 3707b25 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 78 | |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 79 | //===--------------------------------------------------------------------===// |
| 80 | // Visitor Methods |
| 81 | //===--------------------------------------------------------------------===// |
| 82 | |
| 83 | Value *VisitStmt(Stmt *S) { |
| 84 | S->dump(); |
| 85 | assert(0 && "Stmt can't have complex result type!"); |
| 86 | return 0; |
| 87 | } |
| 88 | Value *VisitExpr(Expr *S); |
| 89 | Value *VisitParenExpr(ParenExpr *PE) { return Visit(PE->getSubExpr()); } |
| 90 | |
| 91 | // Leaves. |
| 92 | Value *VisitIntegerLiteral(const IntegerLiteral *E) { |
| 93 | return llvm::ConstantInt::get(E->getValue()); |
| 94 | } |
| 95 | Value *VisitFloatingLiteral(const FloatingLiteral *E) { |
| 96 | return llvm::ConstantFP::get(ConvertType(E->getType()), E->getValue()); |
| 97 | } |
| 98 | Value *VisitCharacterLiteral(const CharacterLiteral *E) { |
| 99 | return llvm::ConstantInt::get(ConvertType(E->getType()), E->getValue()); |
| 100 | } |
| 101 | Value *VisitTypesCompatibleExpr(const TypesCompatibleExpr *E) { |
| 102 | return llvm::ConstantInt::get(ConvertType(E->getType()), |
| 103 | E->typesAreCompatible()); |
| 104 | } |
| 105 | Value *VisitSizeOfAlignOfTypeExpr(const SizeOfAlignOfTypeExpr *E) { |
| 106 | return EmitSizeAlignOf(E->getArgumentType(), E->getType(), E->isSizeOf()); |
| 107 | } |
| 108 | |
| 109 | // l-values. |
| 110 | Value *VisitDeclRefExpr(DeclRefExpr *E) { |
| 111 | if (const EnumConstantDecl *EC = dyn_cast<EnumConstantDecl>(E->getDecl())) |
| 112 | return llvm::ConstantInt::get(EC->getInitVal()); |
| 113 | return EmitLoadOfLValue(E); |
| 114 | } |
| 115 | Value *VisitArraySubscriptExpr(ArraySubscriptExpr *E); |
| 116 | Value *VisitMemberExpr(Expr *E) { return EmitLoadOfLValue(E); } |
| 117 | Value *VisitOCUVectorElementExpr(Expr *E) { return EmitLoadOfLValue(E); } |
| 118 | Value *VisitStringLiteral(Expr *E) { return EmitLValue(E).getAddress(); } |
| 119 | Value *VisitPreDefinedExpr(Expr *E) { return EmitLValue(E).getAddress(); } |
| 120 | |
| 121 | // FIXME: CompoundLiteralExpr |
| 122 | Value *VisitImplicitCastExpr(const ImplicitCastExpr *E); |
| 123 | Value *VisitCastExpr(const CastExpr *E) { |
| 124 | return EmitCastExpr(E->getSubExpr(), E->getType()); |
| 125 | } |
| 126 | Value *EmitCastExpr(const Expr *E, QualType T); |
| 127 | |
| 128 | Value *VisitCallExpr(const CallExpr *E) { |
Chris Lattner | 9b65551 | 2007-08-31 22:49:20 +0000 | [diff] [blame] | 129 | return CGF.EmitCallExpr(E).getScalarVal(); |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 130 | } |
| 131 | |
Chris Lattner | 3379320 | 2007-08-31 22:09:40 +0000 | [diff] [blame] | 132 | Value *VisitStmtExpr(const StmtExpr *E); |
| 133 | |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 134 | // Unary Operators. |
| 135 | Value *VisitPrePostIncDec(const UnaryOperator *E, bool isInc, bool isPre); |
| 136 | Value *VisitUnaryPostDec(const UnaryOperator *E) { |
| 137 | return VisitPrePostIncDec(E, false, false); |
| 138 | } |
| 139 | Value *VisitUnaryPostInc(const UnaryOperator *E) { |
| 140 | return VisitPrePostIncDec(E, true, false); |
| 141 | } |
| 142 | Value *VisitUnaryPreDec(const UnaryOperator *E) { |
| 143 | return VisitPrePostIncDec(E, false, true); |
| 144 | } |
| 145 | Value *VisitUnaryPreInc(const UnaryOperator *E) { |
| 146 | return VisitPrePostIncDec(E, true, true); |
| 147 | } |
| 148 | Value *VisitUnaryAddrOf(const UnaryOperator *E) { |
| 149 | return EmitLValue(E->getSubExpr()).getAddress(); |
| 150 | } |
| 151 | Value *VisitUnaryDeref(const Expr *E) { return EmitLoadOfLValue(E); } |
| 152 | Value *VisitUnaryPlus(const UnaryOperator *E) { |
| 153 | return Visit(E->getSubExpr()); |
| 154 | } |
| 155 | Value *VisitUnaryMinus (const UnaryOperator *E); |
| 156 | Value *VisitUnaryNot (const UnaryOperator *E); |
| 157 | Value *VisitUnaryLNot (const UnaryOperator *E); |
| 158 | Value *VisitUnarySizeOf (const UnaryOperator *E) { |
| 159 | return EmitSizeAlignOf(E->getSubExpr()->getType(), E->getType(), true); |
| 160 | } |
| 161 | Value *VisitUnaryAlignOf (const UnaryOperator *E) { |
| 162 | return EmitSizeAlignOf(E->getSubExpr()->getType(), E->getType(), false); |
| 163 | } |
| 164 | Value *EmitSizeAlignOf(QualType TypeToSize, QualType RetType, |
| 165 | bool isSizeOf); |
Chris Lattner | 46f93d0 | 2007-08-24 21:20:17 +0000 | [diff] [blame] | 166 | Value *VisitUnaryReal (const UnaryOperator *E); |
| 167 | Value *VisitUnaryImag (const UnaryOperator *E); |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 168 | Value *VisitUnaryExtension(const UnaryOperator *E) { |
| 169 | return Visit(E->getSubExpr()); |
| 170 | } |
| 171 | |
| 172 | // Binary Operators. |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 173 | Value *EmitMul(const BinOpInfo &Ops) { |
| 174 | return Builder.CreateMul(Ops.LHS, Ops.RHS, "mul"); |
| 175 | } |
| 176 | Value *EmitDiv(const BinOpInfo &Ops); |
| 177 | Value *EmitRem(const BinOpInfo &Ops); |
| 178 | Value *EmitAdd(const BinOpInfo &Ops); |
| 179 | Value *EmitSub(const BinOpInfo &Ops); |
| 180 | Value *EmitShl(const BinOpInfo &Ops); |
| 181 | Value *EmitShr(const BinOpInfo &Ops); |
| 182 | Value *EmitAnd(const BinOpInfo &Ops) { |
| 183 | return Builder.CreateAnd(Ops.LHS, Ops.RHS, "and"); |
| 184 | } |
| 185 | Value *EmitXor(const BinOpInfo &Ops) { |
| 186 | return Builder.CreateXor(Ops.LHS, Ops.RHS, "xor"); |
| 187 | } |
| 188 | Value *EmitOr (const BinOpInfo &Ops) { |
| 189 | return Builder.CreateOr(Ops.LHS, Ops.RHS, "or"); |
| 190 | } |
| 191 | |
Chris Lattner | 1f1ded9 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 192 | BinOpInfo EmitBinOps(const BinaryOperator *E); |
Chris Lattner | 3ccf774 | 2007-08-26 21:41:21 +0000 | [diff] [blame] | 193 | Value *EmitCompoundAssign(const CompoundAssignOperator *E, |
Chris Lattner | 1f1ded9 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 194 | Value *(ScalarExprEmitter::*F)(const BinOpInfo &)); |
| 195 | |
| 196 | // Binary operators and binary compound assignment operators. |
| 197 | #define HANDLEBINOP(OP) \ |
Chris Lattner | 3ccf774 | 2007-08-26 21:41:21 +0000 | [diff] [blame] | 198 | Value *VisitBin ## OP(const BinaryOperator *E) { \ |
| 199 | return Emit ## OP(EmitBinOps(E)); \ |
| 200 | } \ |
| 201 | Value *VisitBin ## OP ## Assign(const CompoundAssignOperator *E) { \ |
| 202 | return EmitCompoundAssign(E, &ScalarExprEmitter::Emit ## OP); \ |
Chris Lattner | 1f1ded9 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 203 | } |
| 204 | HANDLEBINOP(Mul); |
| 205 | HANDLEBINOP(Div); |
| 206 | HANDLEBINOP(Rem); |
| 207 | HANDLEBINOP(Add); |
| 208 | // (Sub) - Sub is handled specially below for ptr-ptr subtract. |
| 209 | HANDLEBINOP(Shl); |
| 210 | HANDLEBINOP(Shr); |
| 211 | HANDLEBINOP(And); |
| 212 | HANDLEBINOP(Xor); |
| 213 | HANDLEBINOP(Or); |
| 214 | #undef HANDLEBINOP |
| 215 | Value *VisitBinSub(const BinaryOperator *E); |
Chris Lattner | 3ccf774 | 2007-08-26 21:41:21 +0000 | [diff] [blame] | 216 | Value *VisitBinSubAssign(const CompoundAssignOperator *E) { |
Chris Lattner | 1f1ded9 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 217 | return EmitCompoundAssign(E, &ScalarExprEmitter::EmitSub); |
| 218 | } |
| 219 | |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 220 | // Comparisons. |
| 221 | Value *EmitCompare(const BinaryOperator *E, unsigned UICmpOpc, |
| 222 | unsigned SICmpOpc, unsigned FCmpOpc); |
| 223 | #define VISITCOMP(CODE, UI, SI, FP) \ |
| 224 | Value *VisitBin##CODE(const BinaryOperator *E) { \ |
| 225 | return EmitCompare(E, llvm::ICmpInst::UI, llvm::ICmpInst::SI, \ |
| 226 | llvm::FCmpInst::FP); } |
| 227 | VISITCOMP(LT, ICMP_ULT, ICMP_SLT, FCMP_OLT); |
| 228 | VISITCOMP(GT, ICMP_UGT, ICMP_SGT, FCMP_OGT); |
| 229 | VISITCOMP(LE, ICMP_ULE, ICMP_SLE, FCMP_OLE); |
| 230 | VISITCOMP(GE, ICMP_UGE, ICMP_SGE, FCMP_OGE); |
| 231 | VISITCOMP(EQ, ICMP_EQ , ICMP_EQ , FCMP_OEQ); |
| 232 | VISITCOMP(NE, ICMP_NE , ICMP_NE , FCMP_UNE); |
| 233 | #undef VISITCOMP |
| 234 | |
| 235 | Value *VisitBinAssign (const BinaryOperator *E); |
| 236 | |
| 237 | Value *VisitBinLAnd (const BinaryOperator *E); |
| 238 | Value *VisitBinLOr (const BinaryOperator *E); |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 239 | Value *VisitBinComma (const BinaryOperator *E); |
| 240 | |
| 241 | // Other Operators. |
| 242 | Value *VisitConditionalOperator(const ConditionalOperator *CO); |
| 243 | Value *VisitChooseExpr(ChooseExpr *CE); |
| 244 | Value *VisitObjCStringLiteral(const ObjCStringLiteral *E) { |
| 245 | return CGF.EmitObjCStringLiteral(E); |
| 246 | } |
| 247 | }; |
| 248 | } // end anonymous namespace. |
| 249 | |
| 250 | //===----------------------------------------------------------------------===// |
| 251 | // Utilities |
| 252 | //===----------------------------------------------------------------------===// |
| 253 | |
Chris Lattner | 9abc84e | 2007-08-26 16:42:57 +0000 | [diff] [blame] | 254 | /// EmitConversionToBool - Convert the specified expression value to a |
Chris Lattner | 3420d0d | 2007-08-26 17:25:57 +0000 | [diff] [blame] | 255 | /// boolean (i1) truth value. This is equivalent to "Val != 0". |
Chris Lattner | 9abc84e | 2007-08-26 16:42:57 +0000 | [diff] [blame] | 256 | Value *ScalarExprEmitter::EmitConversionToBool(Value *Src, QualType SrcType) { |
| 257 | assert(SrcType->isCanonical() && "EmitScalarConversion strips typedefs"); |
| 258 | |
| 259 | if (SrcType->isRealFloatingType()) { |
| 260 | // Compare against 0.0 for fp scalars. |
| 261 | llvm::Value *Zero = llvm::Constant::getNullValue(Src->getType()); |
Chris Lattner | 9abc84e | 2007-08-26 16:42:57 +0000 | [diff] [blame] | 262 | return Builder.CreateFCmpUNE(Src, Zero, "tobool"); |
| 263 | } |
| 264 | |
| 265 | assert((SrcType->isIntegerType() || SrcType->isPointerType()) && |
| 266 | "Unknown scalar type to convert"); |
| 267 | |
| 268 | // Because of the type rules of C, we often end up computing a logical value, |
| 269 | // then zero extending it to int, then wanting it as a logical value again. |
| 270 | // Optimize this common case. |
| 271 | if (llvm::ZExtInst *ZI = dyn_cast<llvm::ZExtInst>(Src)) { |
| 272 | if (ZI->getOperand(0)->getType() == llvm::Type::Int1Ty) { |
| 273 | Value *Result = ZI->getOperand(0); |
| 274 | ZI->eraseFromParent(); |
| 275 | return Result; |
| 276 | } |
| 277 | } |
| 278 | |
| 279 | // Compare against an integer or pointer null. |
| 280 | llvm::Value *Zero = llvm::Constant::getNullValue(Src->getType()); |
| 281 | return Builder.CreateICmpNE(Src, Zero, "tobool"); |
| 282 | } |
| 283 | |
Chris Lattner | 3707b25 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 284 | /// EmitScalarConversion - Emit a conversion from the specified type to the |
| 285 | /// specified destination type, both of which are LLVM scalar types. |
Chris Lattner | 4f1a7b3 | 2007-08-26 16:34:22 +0000 | [diff] [blame] | 286 | Value *ScalarExprEmitter::EmitScalarConversion(Value *Src, QualType SrcType, |
| 287 | QualType DstType) { |
Chris Lattner | 3707b25 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 288 | SrcType = SrcType.getCanonicalType(); |
| 289 | DstType = DstType.getCanonicalType(); |
| 290 | if (SrcType == DstType) return Src; |
Chris Lattner | cf28908 | 2007-08-26 07:21:11 +0000 | [diff] [blame] | 291 | |
| 292 | if (DstType->isVoidType()) return 0; |
Chris Lattner | 3707b25 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 293 | |
| 294 | // Handle conversions to bool first, they are special: comparisons against 0. |
Chris Lattner | ed70f0a | 2007-08-26 16:52:28 +0000 | [diff] [blame] | 295 | if (DstType->isBooleanType()) |
| 296 | return EmitConversionToBool(Src, SrcType); |
Chris Lattner | 3707b25 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 297 | |
| 298 | const llvm::Type *DstTy = ConvertType(DstType); |
| 299 | |
| 300 | // Ignore conversions like int -> uint. |
| 301 | if (Src->getType() == DstTy) |
| 302 | return Src; |
| 303 | |
| 304 | // Handle pointer conversions next: pointers can only be converted to/from |
| 305 | // other pointers and integers. |
| 306 | if (isa<PointerType>(DstType)) { |
| 307 | // The source value may be an integer, or a pointer. |
| 308 | if (isa<llvm::PointerType>(Src->getType())) |
| 309 | return Builder.CreateBitCast(Src, DstTy, "conv"); |
| 310 | assert(SrcType->isIntegerType() && "Not ptr->ptr or int->ptr conversion?"); |
| 311 | return Builder.CreateIntToPtr(Src, DstTy, "conv"); |
| 312 | } |
| 313 | |
| 314 | if (isa<PointerType>(SrcType)) { |
| 315 | // Must be an ptr to int cast. |
| 316 | assert(isa<llvm::IntegerType>(DstTy) && "not ptr->int?"); |
| 317 | return Builder.CreateIntToPtr(Src, DstTy, "conv"); |
| 318 | } |
| 319 | |
| 320 | // Finally, we have the arithmetic types: real int/float. |
| 321 | if (isa<llvm::IntegerType>(Src->getType())) { |
| 322 | bool InputSigned = SrcType->isSignedIntegerType(); |
| 323 | if (isa<llvm::IntegerType>(DstTy)) |
| 324 | return Builder.CreateIntCast(Src, DstTy, InputSigned, "conv"); |
| 325 | else if (InputSigned) |
| 326 | return Builder.CreateSIToFP(Src, DstTy, "conv"); |
| 327 | else |
| 328 | return Builder.CreateUIToFP(Src, DstTy, "conv"); |
| 329 | } |
| 330 | |
| 331 | assert(Src->getType()->isFloatingPoint() && "Unknown real conversion"); |
| 332 | if (isa<llvm::IntegerType>(DstTy)) { |
| 333 | if (DstType->isSignedIntegerType()) |
| 334 | return Builder.CreateFPToSI(Src, DstTy, "conv"); |
| 335 | else |
| 336 | return Builder.CreateFPToUI(Src, DstTy, "conv"); |
| 337 | } |
| 338 | |
| 339 | assert(DstTy->isFloatingPoint() && "Unknown real conversion"); |
| 340 | if (DstTy->getTypeID() < Src->getType()->getTypeID()) |
| 341 | return Builder.CreateFPTrunc(Src, DstTy, "conv"); |
| 342 | else |
| 343 | return Builder.CreateFPExt(Src, DstTy, "conv"); |
| 344 | } |
| 345 | |
Chris Lattner | 4f1a7b3 | 2007-08-26 16:34:22 +0000 | [diff] [blame] | 346 | /// EmitComplexToScalarConversion - Emit a conversion from the specified |
| 347 | /// complex type to the specified destination type, where the destination |
| 348 | /// type is an LLVM scalar type. |
| 349 | Value *ScalarExprEmitter:: |
| 350 | EmitComplexToScalarConversion(CodeGenFunction::ComplexPairTy Src, |
| 351 | QualType SrcTy, QualType DstTy) { |
Chris Lattner | ed70f0a | 2007-08-26 16:52:28 +0000 | [diff] [blame] | 352 | // Get the source element type. |
| 353 | SrcTy = cast<ComplexType>(SrcTy.getCanonicalType())->getElementType(); |
| 354 | |
| 355 | // Handle conversions to bool first, they are special: comparisons against 0. |
| 356 | if (DstTy->isBooleanType()) { |
| 357 | // Complex != 0 -> (Real != 0) | (Imag != 0) |
| 358 | Src.first = EmitScalarConversion(Src.first, SrcTy, DstTy); |
| 359 | Src.second = EmitScalarConversion(Src.second, SrcTy, DstTy); |
| 360 | return Builder.CreateOr(Src.first, Src.second, "tobool"); |
| 361 | } |
| 362 | |
Chris Lattner | 4f1a7b3 | 2007-08-26 16:34:22 +0000 | [diff] [blame] | 363 | // C99 6.3.1.7p2: "When a value of complex type is converted to a real type, |
| 364 | // the imaginary part of the complex value is discarded and the value of the |
| 365 | // real part is converted according to the conversion rules for the |
| 366 | // corresponding real type. |
Chris Lattner | 4f1a7b3 | 2007-08-26 16:34:22 +0000 | [diff] [blame] | 367 | return EmitScalarConversion(Src.first, SrcTy, DstTy); |
| 368 | } |
| 369 | |
| 370 | |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 371 | //===----------------------------------------------------------------------===// |
| 372 | // Visitor Methods |
| 373 | //===----------------------------------------------------------------------===// |
| 374 | |
| 375 | Value *ScalarExprEmitter::VisitExpr(Expr *E) { |
| 376 | fprintf(stderr, "Unimplemented scalar expr!\n"); |
| 377 | E->dump(); |
| 378 | if (E->getType()->isVoidType()) |
| 379 | return 0; |
| 380 | return llvm::UndefValue::get(CGF.ConvertType(E->getType())); |
| 381 | } |
| 382 | |
| 383 | Value *ScalarExprEmitter::VisitArraySubscriptExpr(ArraySubscriptExpr *E) { |
| 384 | // Emit subscript expressions in rvalue context's. For most cases, this just |
| 385 | // loads the lvalue formed by the subscript expr. However, we have to be |
| 386 | // careful, because the base of a vector subscript is occasionally an rvalue, |
| 387 | // so we can't get it as an lvalue. |
| 388 | if (!E->getBase()->getType()->isVectorType()) |
| 389 | return EmitLoadOfLValue(E); |
| 390 | |
| 391 | // Handle the vector case. The base must be a vector, the index must be an |
| 392 | // integer value. |
| 393 | Value *Base = Visit(E->getBase()); |
| 394 | Value *Idx = Visit(E->getIdx()); |
| 395 | |
| 396 | // FIXME: Convert Idx to i32 type. |
| 397 | return Builder.CreateExtractElement(Base, Idx, "vecext"); |
| 398 | } |
| 399 | |
| 400 | /// VisitImplicitCastExpr - Implicit casts are the same as normal casts, but |
| 401 | /// also handle things like function to pointer-to-function decay, and array to |
| 402 | /// pointer decay. |
| 403 | Value *ScalarExprEmitter::VisitImplicitCastExpr(const ImplicitCastExpr *E) { |
| 404 | const Expr *Op = E->getSubExpr(); |
| 405 | |
| 406 | // If this is due to array->pointer conversion, emit the array expression as |
| 407 | // an l-value. |
| 408 | if (Op->getType()->isArrayType()) { |
| 409 | // FIXME: For now we assume that all source arrays map to LLVM arrays. This |
| 410 | // will not true when we add support for VLAs. |
Chris Lattner | 4f1a7b3 | 2007-08-26 16:34:22 +0000 | [diff] [blame] | 411 | Value *V = EmitLValue(Op).getAddress(); // Bitfields can't be arrays. |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 412 | |
| 413 | assert(isa<llvm::PointerType>(V->getType()) && |
| 414 | isa<llvm::ArrayType>(cast<llvm::PointerType>(V->getType()) |
| 415 | ->getElementType()) && |
| 416 | "Doesn't support VLAs yet!"); |
| 417 | llvm::Constant *Idx0 = llvm::ConstantInt::get(llvm::Type::Int32Ty, 0); |
Ted Kremenek | d627889 | 2007-09-04 17:20:08 +0000 | [diff] [blame^] | 418 | |
| 419 | llvm::Value *Ops[] = {Idx0, Idx0}; |
| 420 | return Builder.CreateGEP(V, Ops, Ops+2, "arraydecay"); |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 421 | } |
| 422 | |
| 423 | return EmitCastExpr(Op, E->getType()); |
| 424 | } |
| 425 | |
| 426 | |
| 427 | // VisitCastExpr - Emit code for an explicit or implicit cast. Implicit casts |
| 428 | // have to handle a more broad range of conversions than explicit casts, as they |
| 429 | // handle things like function to ptr-to-function decay etc. |
| 430 | Value *ScalarExprEmitter::EmitCastExpr(const Expr *E, QualType DestTy) { |
Chris Lattner | 58a2e94 | 2007-08-26 07:26:12 +0000 | [diff] [blame] | 431 | // Handle cases where the source is an non-complex type. |
Chris Lattner | 4f1a7b3 | 2007-08-26 16:34:22 +0000 | [diff] [blame] | 432 | if (!E->getType()->isComplexType()) { |
Chris Lattner | 3707b25 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 433 | Value *Src = Visit(const_cast<Expr*>(E)); |
| 434 | |
Chris Lattner | 3707b25 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 435 | // Use EmitScalarConversion to perform the conversion. |
| 436 | return EmitScalarConversion(Src, E->getType(), DestTy); |
| 437 | } |
Chris Lattner | 10b00cf | 2007-08-26 07:16:41 +0000 | [diff] [blame] | 438 | |
Chris Lattner | 58a2e94 | 2007-08-26 07:26:12 +0000 | [diff] [blame] | 439 | // Handle cases where the source is a complex type. |
Chris Lattner | 4f1a7b3 | 2007-08-26 16:34:22 +0000 | [diff] [blame] | 440 | return EmitComplexToScalarConversion(CGF.EmitComplexExpr(E), E->getType(), |
| 441 | DestTy); |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 442 | } |
| 443 | |
Chris Lattner | 3379320 | 2007-08-31 22:09:40 +0000 | [diff] [blame] | 444 | Value *ScalarExprEmitter::VisitStmtExpr(const StmtExpr *E) { |
Chris Lattner | 9b65551 | 2007-08-31 22:49:20 +0000 | [diff] [blame] | 445 | return CGF.EmitCompoundStmt(*E->getSubStmt(), true).getScalarVal(); |
Chris Lattner | 3379320 | 2007-08-31 22:09:40 +0000 | [diff] [blame] | 446 | } |
| 447 | |
| 448 | |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 449 | //===----------------------------------------------------------------------===// |
| 450 | // Unary Operators |
| 451 | //===----------------------------------------------------------------------===// |
| 452 | |
| 453 | Value *ScalarExprEmitter::VisitPrePostIncDec(const UnaryOperator *E, |
Chris Lattner | dfce2a5 | 2007-08-24 16:24:49 +0000 | [diff] [blame] | 454 | bool isInc, bool isPre) { |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 455 | LValue LV = EmitLValue(E->getSubExpr()); |
| 456 | // FIXME: Handle volatile! |
Chris Lattner | e936cc8 | 2007-08-26 05:10:16 +0000 | [diff] [blame] | 457 | Value *InVal = CGF.EmitLoadOfLValue(LV, // false |
Chris Lattner | 9b65551 | 2007-08-31 22:49:20 +0000 | [diff] [blame] | 458 | E->getSubExpr()->getType()).getScalarVal(); |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 459 | |
| 460 | int AmountVal = isInc ? 1 : -1; |
| 461 | |
| 462 | Value *NextVal; |
Chris Lattner | e936cc8 | 2007-08-26 05:10:16 +0000 | [diff] [blame] | 463 | if (isa<llvm::PointerType>(InVal->getType())) { |
| 464 | // FIXME: This isn't right for VLAs. |
| 465 | NextVal = llvm::ConstantInt::get(llvm::Type::Int32Ty, AmountVal); |
| 466 | NextVal = Builder.CreateGEP(InVal, NextVal); |
| 467 | } else { |
| 468 | // Add the inc/dec to the real part. |
| 469 | if (isa<llvm::IntegerType>(InVal->getType())) |
| 470 | NextVal = llvm::ConstantInt::get(InVal->getType(), AmountVal); |
| 471 | else |
| 472 | NextVal = llvm::ConstantFP::get(InVal->getType(), AmountVal); |
| 473 | NextVal = Builder.CreateAdd(InVal, NextVal, isInc ? "inc" : "dec"); |
| 474 | } |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 475 | |
| 476 | // Store the updated result through the lvalue. |
| 477 | CGF.EmitStoreThroughLValue(RValue::get(NextVal), LV, |
| 478 | E->getSubExpr()->getType()); |
| 479 | |
| 480 | // If this is a postinc, return the value read from memory, otherwise use the |
| 481 | // updated value. |
| 482 | return isPre ? NextVal : InVal; |
| 483 | } |
| 484 | |
| 485 | |
| 486 | Value *ScalarExprEmitter::VisitUnaryMinus(const UnaryOperator *E) { |
| 487 | Value *Op = Visit(E->getSubExpr()); |
| 488 | return Builder.CreateNeg(Op, "neg"); |
| 489 | } |
| 490 | |
| 491 | Value *ScalarExprEmitter::VisitUnaryNot(const UnaryOperator *E) { |
| 492 | Value *Op = Visit(E->getSubExpr()); |
| 493 | return Builder.CreateNot(Op, "neg"); |
| 494 | } |
| 495 | |
| 496 | Value *ScalarExprEmitter::VisitUnaryLNot(const UnaryOperator *E) { |
| 497 | // Compare operand to zero. |
| 498 | Value *BoolVal = CGF.EvaluateExprAsBool(E->getSubExpr()); |
| 499 | |
| 500 | // Invert value. |
| 501 | // TODO: Could dynamically modify easy computations here. For example, if |
| 502 | // the operand is an icmp ne, turn into icmp eq. |
| 503 | BoolVal = Builder.CreateNot(BoolVal, "lnot"); |
| 504 | |
| 505 | // ZExt result to int. |
| 506 | return Builder.CreateZExt(BoolVal, CGF.LLVMIntTy, "lnot.ext"); |
| 507 | } |
| 508 | |
| 509 | /// EmitSizeAlignOf - Return the size or alignment of the 'TypeToSize' type as |
| 510 | /// an integer (RetType). |
| 511 | Value *ScalarExprEmitter::EmitSizeAlignOf(QualType TypeToSize, |
Chris Lattner | 46f93d0 | 2007-08-24 21:20:17 +0000 | [diff] [blame] | 512 | QualType RetType,bool isSizeOf){ |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 513 | /// FIXME: This doesn't handle VLAs yet! |
| 514 | std::pair<uint64_t, unsigned> Info = |
| 515 | CGF.getContext().getTypeInfo(TypeToSize, SourceLocation()); |
| 516 | |
| 517 | uint64_t Val = isSizeOf ? Info.first : Info.second; |
| 518 | Val /= 8; // Return size in bytes, not bits. |
| 519 | |
| 520 | assert(RetType->isIntegerType() && "Result type must be an integer!"); |
| 521 | |
Chris Lattner | 47f7dbf | 2007-09-04 02:34:27 +0000 | [diff] [blame] | 522 | unsigned ResultWidth = static_cast<unsigned>(CGF.getContext().getTypeSize(RetType,SourceLocation())); |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 523 | return llvm::ConstantInt::get(llvm::APInt(ResultWidth, Val)); |
| 524 | } |
| 525 | |
Chris Lattner | 46f93d0 | 2007-08-24 21:20:17 +0000 | [diff] [blame] | 526 | Value *ScalarExprEmitter::VisitUnaryReal(const UnaryOperator *E) { |
| 527 | Expr *Op = E->getSubExpr(); |
| 528 | if (Op->getType()->isComplexType()) |
| 529 | return CGF.EmitComplexExpr(Op).first; |
| 530 | return Visit(Op); |
| 531 | } |
| 532 | Value *ScalarExprEmitter::VisitUnaryImag(const UnaryOperator *E) { |
| 533 | Expr *Op = E->getSubExpr(); |
| 534 | if (Op->getType()->isComplexType()) |
| 535 | return CGF.EmitComplexExpr(Op).second; |
Chris Lattner | 36f8406 | 2007-08-26 05:29:21 +0000 | [diff] [blame] | 536 | |
| 537 | // __imag on a scalar returns zero. Emit it the subexpr to ensure side |
| 538 | // effects are evaluated. |
| 539 | CGF.EmitScalarExpr(Op); |
| 540 | return llvm::Constant::getNullValue(ConvertType(E->getType())); |
Chris Lattner | 46f93d0 | 2007-08-24 21:20:17 +0000 | [diff] [blame] | 541 | } |
| 542 | |
| 543 | |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 544 | //===----------------------------------------------------------------------===// |
| 545 | // Binary Operators |
| 546 | //===----------------------------------------------------------------------===// |
| 547 | |
| 548 | BinOpInfo ScalarExprEmitter::EmitBinOps(const BinaryOperator *E) { |
| 549 | BinOpInfo Result; |
| 550 | Result.LHS = Visit(E->getLHS()); |
| 551 | Result.RHS = Visit(E->getRHS()); |
Chris Lattner | 1f1ded9 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 552 | Result.Ty = E->getType(); |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 553 | Result.E = E; |
| 554 | return Result; |
| 555 | } |
| 556 | |
Chris Lattner | 3ccf774 | 2007-08-26 21:41:21 +0000 | [diff] [blame] | 557 | Value *ScalarExprEmitter::EmitCompoundAssign(const CompoundAssignOperator *E, |
Chris Lattner | 1f1ded9 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 558 | Value *(ScalarExprEmitter::*Func)(const BinOpInfo &)) { |
| 559 | QualType LHSTy = E->getLHS()->getType(), RHSTy = E->getRHS()->getType(); |
| 560 | |
| 561 | BinOpInfo OpInfo; |
| 562 | |
| 563 | // Load the LHS and RHS operands. |
| 564 | LValue LHSLV = EmitLValue(E->getLHS()); |
| 565 | OpInfo.LHS = EmitLoadOfLValue(LHSLV, LHSTy); |
Chris Lattner | 04dc764 | 2007-08-26 22:37:40 +0000 | [diff] [blame] | 566 | |
| 567 | // Determine the computation type. If the RHS is complex, then this is one of |
| 568 | // the add/sub/mul/div operators. All of these operators can be computed in |
| 569 | // with just their real component even though the computation domain really is |
| 570 | // complex. |
Chris Lattner | 3ccf774 | 2007-08-26 21:41:21 +0000 | [diff] [blame] | 571 | QualType ComputeType = E->getComputationType(); |
Chris Lattner | 1f1ded9 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 572 | |
Chris Lattner | 04dc764 | 2007-08-26 22:37:40 +0000 | [diff] [blame] | 573 | // If the computation type is complex, then the RHS is complex. Emit the RHS. |
| 574 | if (const ComplexType *CT = ComputeType->getAsComplexType()) { |
| 575 | ComputeType = CT->getElementType(); |
| 576 | |
| 577 | // Emit the RHS, only keeping the real component. |
| 578 | OpInfo.RHS = CGF.EmitComplexExpr(E->getRHS()).first; |
| 579 | RHSTy = RHSTy->getAsComplexType()->getElementType(); |
| 580 | } else { |
| 581 | // Otherwise the RHS is a simple scalar value. |
| 582 | OpInfo.RHS = Visit(E->getRHS()); |
| 583 | } |
| 584 | |
| 585 | // Convert the LHS/RHS values to the computation type. |
Chris Lattner | e937712 | 2007-08-26 07:08:39 +0000 | [diff] [blame] | 586 | OpInfo.LHS = EmitScalarConversion(OpInfo.LHS, LHSTy, ComputeType); |
Chris Lattner | 1f1ded9 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 587 | |
| 588 | // Do not merge types for -= where the LHS is a pointer. |
Chris Lattner | 3b44b57 | 2007-08-25 21:56:20 +0000 | [diff] [blame] | 589 | if (E->getOpcode() != BinaryOperator::SubAssign || |
| 590 | !E->getLHS()->getType()->isPointerType()) { |
Chris Lattner | e937712 | 2007-08-26 07:08:39 +0000 | [diff] [blame] | 591 | OpInfo.RHS = EmitScalarConversion(OpInfo.RHS, RHSTy, ComputeType); |
Chris Lattner | 1f1ded9 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 592 | } |
| 593 | OpInfo.Ty = ComputeType; |
| 594 | OpInfo.E = E; |
| 595 | |
| 596 | // Expand the binary operator. |
| 597 | Value *Result = (this->*Func)(OpInfo); |
| 598 | |
| 599 | // Truncate the result back to the LHS type. |
Chris Lattner | e937712 | 2007-08-26 07:08:39 +0000 | [diff] [blame] | 600 | Result = EmitScalarConversion(Result, ComputeType, LHSTy); |
Chris Lattner | 1f1ded9 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 601 | |
| 602 | // Store the result value into the LHS lvalue. |
| 603 | CGF.EmitStoreThroughLValue(RValue::get(Result), LHSLV, E->getType()); |
| 604 | |
| 605 | return Result; |
| 606 | } |
| 607 | |
| 608 | |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 609 | Value *ScalarExprEmitter::EmitDiv(const BinOpInfo &Ops) { |
| 610 | if (Ops.LHS->getType()->isFloatingPoint()) |
| 611 | return Builder.CreateFDiv(Ops.LHS, Ops.RHS, "div"); |
Chris Lattner | 1f1ded9 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 612 | else if (Ops.Ty->isUnsignedIntegerType()) |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 613 | return Builder.CreateUDiv(Ops.LHS, Ops.RHS, "div"); |
| 614 | else |
| 615 | return Builder.CreateSDiv(Ops.LHS, Ops.RHS, "div"); |
| 616 | } |
| 617 | |
| 618 | Value *ScalarExprEmitter::EmitRem(const BinOpInfo &Ops) { |
| 619 | // Rem in C can't be a floating point type: C99 6.5.5p2. |
Chris Lattner | 1f1ded9 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 620 | if (Ops.Ty->isUnsignedIntegerType()) |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 621 | return Builder.CreateURem(Ops.LHS, Ops.RHS, "rem"); |
| 622 | else |
| 623 | return Builder.CreateSRem(Ops.LHS, Ops.RHS, "rem"); |
| 624 | } |
| 625 | |
| 626 | |
| 627 | Value *ScalarExprEmitter::EmitAdd(const BinOpInfo &Ops) { |
Chris Lattner | 1f1ded9 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 628 | if (!Ops.Ty->isPointerType()) |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 629 | return Builder.CreateAdd(Ops.LHS, Ops.RHS, "add"); |
Chris Lattner | 1f1ded9 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 630 | |
| 631 | // FIXME: What about a pointer to a VLA? |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 632 | if (isa<llvm::PointerType>(Ops.LHS->getType())) // pointer + int |
| 633 | return Builder.CreateGEP(Ops.LHS, Ops.RHS, "add.ptr"); |
| 634 | // int + pointer |
| 635 | return Builder.CreateGEP(Ops.RHS, Ops.LHS, "add.ptr"); |
| 636 | } |
| 637 | |
| 638 | Value *ScalarExprEmitter::EmitSub(const BinOpInfo &Ops) { |
| 639 | if (!isa<llvm::PointerType>(Ops.LHS->getType())) |
| 640 | return Builder.CreateSub(Ops.LHS, Ops.RHS, "sub"); |
| 641 | |
Chris Lattner | 1f1ded9 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 642 | // pointer - int |
| 643 | assert(!isa<llvm::PointerType>(Ops.RHS->getType()) && |
| 644 | "ptr-ptr shouldn't get here"); |
| 645 | // FIXME: The pointer could point to a VLA. |
| 646 | Value *NegatedRHS = Builder.CreateNeg(Ops.RHS, "sub.ptr.neg"); |
| 647 | return Builder.CreateGEP(Ops.LHS, NegatedRHS, "sub.ptr"); |
| 648 | } |
| 649 | |
| 650 | Value *ScalarExprEmitter::VisitBinSub(const BinaryOperator *E) { |
| 651 | // "X - Y" is different from "X -= Y" in one case: when Y is a pointer. In |
| 652 | // the compound assignment case it is invalid, so just handle it here. |
| 653 | if (!E->getRHS()->getType()->isPointerType()) |
| 654 | return EmitSub(EmitBinOps(E)); |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 655 | |
| 656 | // pointer - pointer |
Chris Lattner | 1f1ded9 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 657 | Value *LHS = Visit(E->getLHS()); |
| 658 | Value *RHS = Visit(E->getRHS()); |
| 659 | |
| 660 | const PointerType *LHSPtrType = E->getLHS()->getType()->getAsPointerType(); |
| 661 | assert(LHSPtrType == E->getRHS()->getType()->getAsPointerType() && |
| 662 | "Can't subtract different pointer types"); |
| 663 | |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 664 | QualType LHSElementType = LHSPtrType->getPointeeType(); |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 665 | uint64_t ElementSize = CGF.getContext().getTypeSize(LHSElementType, |
| 666 | SourceLocation()) / 8; |
Chris Lattner | 1f1ded9 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 667 | |
| 668 | const llvm::Type *ResultType = ConvertType(E->getType()); |
| 669 | LHS = Builder.CreatePtrToInt(LHS, ResultType, "sub.ptr.lhs.cast"); |
| 670 | RHS = Builder.CreatePtrToInt(RHS, ResultType, "sub.ptr.rhs.cast"); |
| 671 | Value *BytesBetween = Builder.CreateSub(LHS, RHS, "sub.ptr.sub"); |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 672 | |
| 673 | // HACK: LLVM doesn't have an divide instruction that 'knows' there is no |
| 674 | // remainder. As such, we handle common power-of-two cases here to generate |
| 675 | // better code. |
| 676 | if (llvm::isPowerOf2_64(ElementSize)) { |
| 677 | Value *ShAmt = |
| 678 | llvm::ConstantInt::get(ResultType, llvm::Log2_64(ElementSize)); |
| 679 | return Builder.CreateAShr(BytesBetween, ShAmt, "sub.ptr.shr"); |
| 680 | } |
Chris Lattner | 1f1ded9 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 681 | |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 682 | // Otherwise, do a full sdiv. |
| 683 | Value *BytesPerElt = llvm::ConstantInt::get(ResultType, ElementSize); |
| 684 | return Builder.CreateSDiv(BytesBetween, BytesPerElt, "sub.ptr.div"); |
| 685 | } |
| 686 | |
Chris Lattner | 1f1ded9 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 687 | |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 688 | Value *ScalarExprEmitter::EmitShl(const BinOpInfo &Ops) { |
| 689 | // LLVM requires the LHS and RHS to be the same type: promote or truncate the |
| 690 | // RHS to the same size as the LHS. |
| 691 | Value *RHS = Ops.RHS; |
| 692 | if (Ops.LHS->getType() != RHS->getType()) |
| 693 | RHS = Builder.CreateIntCast(RHS, Ops.LHS->getType(), false, "sh_prom"); |
| 694 | |
| 695 | return Builder.CreateShl(Ops.LHS, RHS, "shl"); |
| 696 | } |
| 697 | |
| 698 | Value *ScalarExprEmitter::EmitShr(const BinOpInfo &Ops) { |
| 699 | // LLVM requires the LHS and RHS to be the same type: promote or truncate the |
| 700 | // RHS to the same size as the LHS. |
| 701 | Value *RHS = Ops.RHS; |
| 702 | if (Ops.LHS->getType() != RHS->getType()) |
| 703 | RHS = Builder.CreateIntCast(RHS, Ops.LHS->getType(), false, "sh_prom"); |
| 704 | |
Chris Lattner | 1f1ded9 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 705 | if (Ops.Ty->isUnsignedIntegerType()) |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 706 | return Builder.CreateLShr(Ops.LHS, RHS, "shr"); |
| 707 | return Builder.CreateAShr(Ops.LHS, RHS, "shr"); |
| 708 | } |
| 709 | |
| 710 | Value *ScalarExprEmitter::EmitCompare(const BinaryOperator *E,unsigned UICmpOpc, |
| 711 | unsigned SICmpOpc, unsigned FCmpOpc) { |
Chris Lattner | 4f1a7b3 | 2007-08-26 16:34:22 +0000 | [diff] [blame] | 712 | Value *Result; |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 713 | QualType LHSTy = E->getLHS()->getType(); |
| 714 | if (!LHSTy->isComplexType()) { |
| 715 | Value *LHS = Visit(E->getLHS()); |
| 716 | Value *RHS = Visit(E->getRHS()); |
| 717 | |
| 718 | if (LHS->getType()->isFloatingPoint()) { |
| 719 | Result = Builder.CreateFCmp((llvm::FCmpInst::Predicate)FCmpOpc, |
| 720 | LHS, RHS, "cmp"); |
| 721 | } else if (LHSTy->isUnsignedIntegerType()) { |
| 722 | Result = Builder.CreateICmp((llvm::ICmpInst::Predicate)UICmpOpc, |
| 723 | LHS, RHS, "cmp"); |
| 724 | } else { |
| 725 | // Signed integers and pointers. |
| 726 | Result = Builder.CreateICmp((llvm::ICmpInst::Predicate)SICmpOpc, |
| 727 | LHS, RHS, "cmp"); |
| 728 | } |
| 729 | } else { |
| 730 | // Complex Comparison: can only be an equality comparison. |
| 731 | CodeGenFunction::ComplexPairTy LHS = CGF.EmitComplexExpr(E->getLHS()); |
| 732 | CodeGenFunction::ComplexPairTy RHS = CGF.EmitComplexExpr(E->getRHS()); |
| 733 | |
| 734 | QualType CETy = |
| 735 | cast<ComplexType>(LHSTy.getCanonicalType())->getElementType(); |
| 736 | |
Chris Lattner | 4f1a7b3 | 2007-08-26 16:34:22 +0000 | [diff] [blame] | 737 | Value *ResultR, *ResultI; |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 738 | if (CETy->isRealFloatingType()) { |
| 739 | ResultR = Builder.CreateFCmp((llvm::FCmpInst::Predicate)FCmpOpc, |
| 740 | LHS.first, RHS.first, "cmp.r"); |
| 741 | ResultI = Builder.CreateFCmp((llvm::FCmpInst::Predicate)FCmpOpc, |
| 742 | LHS.second, RHS.second, "cmp.i"); |
| 743 | } else { |
| 744 | // Complex comparisons can only be equality comparisons. As such, signed |
| 745 | // and unsigned opcodes are the same. |
| 746 | ResultR = Builder.CreateICmp((llvm::ICmpInst::Predicate)UICmpOpc, |
| 747 | LHS.first, RHS.first, "cmp.r"); |
| 748 | ResultI = Builder.CreateICmp((llvm::ICmpInst::Predicate)UICmpOpc, |
| 749 | LHS.second, RHS.second, "cmp.i"); |
| 750 | } |
| 751 | |
| 752 | if (E->getOpcode() == BinaryOperator::EQ) { |
| 753 | Result = Builder.CreateAnd(ResultR, ResultI, "and.ri"); |
| 754 | } else { |
| 755 | assert(E->getOpcode() == BinaryOperator::NE && |
| 756 | "Complex comparison other than == or != ?"); |
| 757 | Result = Builder.CreateOr(ResultR, ResultI, "or.ri"); |
| 758 | } |
| 759 | } |
| 760 | |
| 761 | // ZExt result to int. |
| 762 | return Builder.CreateZExt(Result, CGF.LLVMIntTy, "cmp.ext"); |
| 763 | } |
| 764 | |
| 765 | Value *ScalarExprEmitter::VisitBinAssign(const BinaryOperator *E) { |
| 766 | LValue LHS = EmitLValue(E->getLHS()); |
| 767 | Value *RHS = Visit(E->getRHS()); |
| 768 | |
| 769 | // Store the value into the LHS. |
| 770 | // FIXME: Volatility! |
| 771 | CGF.EmitStoreThroughLValue(RValue::get(RHS), LHS, E->getType()); |
| 772 | |
| 773 | // Return the RHS. |
| 774 | return RHS; |
| 775 | } |
| 776 | |
| 777 | Value *ScalarExprEmitter::VisitBinLAnd(const BinaryOperator *E) { |
| 778 | Value *LHSCond = CGF.EvaluateExprAsBool(E->getLHS()); |
| 779 | |
| 780 | llvm::BasicBlock *ContBlock = new llvm::BasicBlock("land_cont"); |
| 781 | llvm::BasicBlock *RHSBlock = new llvm::BasicBlock("land_rhs"); |
| 782 | |
| 783 | llvm::BasicBlock *OrigBlock = Builder.GetInsertBlock(); |
| 784 | Builder.CreateCondBr(LHSCond, RHSBlock, ContBlock); |
| 785 | |
| 786 | CGF.EmitBlock(RHSBlock); |
| 787 | Value *RHSCond = CGF.EvaluateExprAsBool(E->getRHS()); |
| 788 | |
| 789 | // Reaquire the RHS block, as there may be subblocks inserted. |
| 790 | RHSBlock = Builder.GetInsertBlock(); |
| 791 | CGF.EmitBlock(ContBlock); |
| 792 | |
| 793 | // Create a PHI node. If we just evaluted the LHS condition, the result is |
| 794 | // false. If we evaluated both, the result is the RHS condition. |
| 795 | llvm::PHINode *PN = Builder.CreatePHI(llvm::Type::Int1Ty, "land"); |
| 796 | PN->reserveOperandSpace(2); |
| 797 | PN->addIncoming(llvm::ConstantInt::getFalse(), OrigBlock); |
| 798 | PN->addIncoming(RHSCond, RHSBlock); |
| 799 | |
| 800 | // ZExt result to int. |
| 801 | return Builder.CreateZExt(PN, CGF.LLVMIntTy, "land.ext"); |
| 802 | } |
| 803 | |
| 804 | Value *ScalarExprEmitter::VisitBinLOr(const BinaryOperator *E) { |
| 805 | Value *LHSCond = CGF.EvaluateExprAsBool(E->getLHS()); |
| 806 | |
| 807 | llvm::BasicBlock *ContBlock = new llvm::BasicBlock("lor_cont"); |
| 808 | llvm::BasicBlock *RHSBlock = new llvm::BasicBlock("lor_rhs"); |
| 809 | |
| 810 | llvm::BasicBlock *OrigBlock = Builder.GetInsertBlock(); |
| 811 | Builder.CreateCondBr(LHSCond, ContBlock, RHSBlock); |
| 812 | |
| 813 | CGF.EmitBlock(RHSBlock); |
| 814 | Value *RHSCond = CGF.EvaluateExprAsBool(E->getRHS()); |
| 815 | |
| 816 | // Reaquire the RHS block, as there may be subblocks inserted. |
| 817 | RHSBlock = Builder.GetInsertBlock(); |
| 818 | CGF.EmitBlock(ContBlock); |
| 819 | |
| 820 | // Create a PHI node. If we just evaluted the LHS condition, the result is |
| 821 | // true. If we evaluated both, the result is the RHS condition. |
| 822 | llvm::PHINode *PN = Builder.CreatePHI(llvm::Type::Int1Ty, "lor"); |
| 823 | PN->reserveOperandSpace(2); |
| 824 | PN->addIncoming(llvm::ConstantInt::getTrue(), OrigBlock); |
| 825 | PN->addIncoming(RHSCond, RHSBlock); |
| 826 | |
| 827 | // ZExt result to int. |
| 828 | return Builder.CreateZExt(PN, CGF.LLVMIntTy, "lor.ext"); |
| 829 | } |
| 830 | |
| 831 | Value *ScalarExprEmitter::VisitBinComma(const BinaryOperator *E) { |
| 832 | CGF.EmitStmt(E->getLHS()); |
| 833 | return Visit(E->getRHS()); |
| 834 | } |
| 835 | |
| 836 | //===----------------------------------------------------------------------===// |
| 837 | // Other Operators |
| 838 | //===----------------------------------------------------------------------===// |
| 839 | |
| 840 | Value *ScalarExprEmitter:: |
| 841 | VisitConditionalOperator(const ConditionalOperator *E) { |
| 842 | llvm::BasicBlock *LHSBlock = new llvm::BasicBlock("cond.?"); |
| 843 | llvm::BasicBlock *RHSBlock = new llvm::BasicBlock("cond.:"); |
| 844 | llvm::BasicBlock *ContBlock = new llvm::BasicBlock("cond.cont"); |
| 845 | |
| 846 | Value *Cond = CGF.EvaluateExprAsBool(E->getCond()); |
| 847 | Builder.CreateCondBr(Cond, LHSBlock, RHSBlock); |
| 848 | |
| 849 | CGF.EmitBlock(LHSBlock); |
| 850 | |
| 851 | // Handle the GNU extension for missing LHS. |
| 852 | Value *LHS = E->getLHS() ? Visit(E->getLHS()) : Cond; |
| 853 | Builder.CreateBr(ContBlock); |
| 854 | LHSBlock = Builder.GetInsertBlock(); |
| 855 | |
| 856 | CGF.EmitBlock(RHSBlock); |
| 857 | |
| 858 | Value *RHS = Visit(E->getRHS()); |
| 859 | Builder.CreateBr(ContBlock); |
| 860 | RHSBlock = Builder.GetInsertBlock(); |
| 861 | |
| 862 | CGF.EmitBlock(ContBlock); |
| 863 | |
| 864 | // Create a PHI node for the real part. |
| 865 | llvm::PHINode *PN = Builder.CreatePHI(LHS->getType(), "cond"); |
| 866 | PN->reserveOperandSpace(2); |
| 867 | PN->addIncoming(LHS, LHSBlock); |
| 868 | PN->addIncoming(RHS, RHSBlock); |
| 869 | return PN; |
| 870 | } |
| 871 | |
| 872 | Value *ScalarExprEmitter::VisitChooseExpr(ChooseExpr *E) { |
| 873 | llvm::APSInt CondVal(32); |
| 874 | bool IsConst = E->getCond()->isIntegerConstantExpr(CondVal, CGF.getContext()); |
| 875 | assert(IsConst && "Condition of choose expr must be i-c-e"); IsConst=IsConst; |
| 876 | |
| 877 | // Emit the LHS or RHS as appropriate. |
| 878 | return Visit(CondVal != 0 ? E->getLHS() : E->getRHS()); |
| 879 | } |
| 880 | |
| 881 | //===----------------------------------------------------------------------===// |
| 882 | // Entry Point into this File |
| 883 | //===----------------------------------------------------------------------===// |
| 884 | |
| 885 | /// EmitComplexExpr - Emit the computation of the specified expression of |
| 886 | /// complex type, ignoring the result. |
| 887 | Value *CodeGenFunction::EmitScalarExpr(const Expr *E) { |
| 888 | assert(E && !hasAggregateLLVMType(E->getType()) && |
| 889 | "Invalid scalar expression to emit"); |
| 890 | |
| 891 | return ScalarExprEmitter(*this).Visit(const_cast<Expr*>(E)); |
| 892 | } |
Chris Lattner | 3707b25 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 893 | |
| 894 | /// EmitScalarConversion - Emit a conversion from the specified type to the |
| 895 | /// specified destination type, both of which are LLVM scalar types. |
Chris Lattner | 4f1a7b3 | 2007-08-26 16:34:22 +0000 | [diff] [blame] | 896 | Value *CodeGenFunction::EmitScalarConversion(Value *Src, QualType SrcTy, |
| 897 | QualType DstTy) { |
Chris Lattner | 3707b25 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 898 | assert(!hasAggregateLLVMType(SrcTy) && !hasAggregateLLVMType(DstTy) && |
| 899 | "Invalid scalar expression to emit"); |
| 900 | return ScalarExprEmitter(*this).EmitScalarConversion(Src, SrcTy, DstTy); |
| 901 | } |
Chris Lattner | 4f1a7b3 | 2007-08-26 16:34:22 +0000 | [diff] [blame] | 902 | |
| 903 | /// EmitComplexToScalarConversion - Emit a conversion from the specified |
| 904 | /// complex type to the specified destination type, where the destination |
| 905 | /// type is an LLVM scalar type. |
| 906 | Value *CodeGenFunction::EmitComplexToScalarConversion(ComplexPairTy Src, |
| 907 | QualType SrcTy, |
| 908 | QualType DstTy) { |
| 909 | assert(SrcTy->isComplexType() && !hasAggregateLLVMType(DstTy) && |
| 910 | "Invalid complex -> scalar conversion"); |
| 911 | return ScalarExprEmitter(*this).EmitComplexToScalarConversion(Src, SrcTy, |
| 912 | DstTy); |
| 913 | } |