Chris Lattner | 2da04b3 | 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 | // |
Chris Lattner | 5b12ab8 | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 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" |
Fariborz Jahanian | 07ca727 | 2009-10-10 20:07:56 +0000 | [diff] [blame] | 15 | #include "CGObjCRuntime.h" |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 16 | #include "CodeGenModule.h" |
Daniel Dunbar | ad319a7 | 2008-08-11 05:00:27 +0000 | [diff] [blame] | 17 | #include "clang/AST/ASTContext.h" |
Daniel Dunbar | 6630e10 | 2008-08-12 05:08:18 +0000 | [diff] [blame] | 18 | #include "clang/AST/DeclObjC.h" |
Anders Carlsson | 15b73de | 2009-07-18 19:43:29 +0000 | [diff] [blame] | 19 | #include "clang/AST/RecordLayout.h" |
Daniel Dunbar | ad319a7 | 2008-08-11 05:00:27 +0000 | [diff] [blame] | 20 | #include "clang/AST/StmtVisitor.h" |
Chris Lattner | ff2367c | 2008-04-20 00:50:39 +0000 | [diff] [blame] | 21 | #include "clang/Basic/TargetInfo.h" |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 22 | #include "llvm/Constants.h" |
| 23 | #include "llvm/Function.h" |
Anders Carlsson | d849982 | 2007-10-29 05:01:08 +0000 | [diff] [blame] | 24 | #include "llvm/GlobalVariable.h" |
Anders Carlsson | 7e13ab8 | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 25 | #include "llvm/Intrinsics.h" |
Mike Stump | 0c61b73 | 2009-04-01 20:28:16 +0000 | [diff] [blame] | 26 | #include "llvm/Module.h" |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 27 | #include "llvm/Support/Compiler.h" |
Chris Lattner | 35710d18 | 2008-11-12 08:38:24 +0000 | [diff] [blame] | 28 | #include "llvm/Support/CFG.h" |
Mike Stump | cb2fbcb | 2009-02-21 20:00:35 +0000 | [diff] [blame] | 29 | #include "llvm/Target/TargetData.h" |
Chris Lattner | 1800c18 | 2008-01-03 07:05:49 +0000 | [diff] [blame] | 30 | #include <cstdarg> |
Ted Kremenek | f182e81 | 2007-12-10 23:44:32 +0000 | [diff] [blame] | 31 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 32 | using namespace clang; |
| 33 | using namespace CodeGen; |
| 34 | using llvm::Value; |
| 35 | |
| 36 | //===----------------------------------------------------------------------===// |
| 37 | // Scalar Expression Emitter |
| 38 | //===----------------------------------------------------------------------===// |
| 39 | |
| 40 | struct BinOpInfo { |
| 41 | Value *LHS; |
| 42 | Value *RHS; |
Chris Lattner | 3d966d6 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 43 | QualType Ty; // Computation Type. |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 44 | const BinaryOperator *E; |
| 45 | }; |
| 46 | |
| 47 | namespace { |
| 48 | class VISIBILITY_HIDDEN ScalarExprEmitter |
| 49 | : public StmtVisitor<ScalarExprEmitter, Value*> { |
| 50 | CodeGenFunction &CGF; |
Daniel Dunbar | cb46385 | 2008-11-01 01:53:16 +0000 | [diff] [blame] | 51 | CGBuilderTy &Builder; |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 52 | bool IgnoreResultAssign; |
Owen Anderson | 170229f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 53 | llvm::LLVMContext &VMContext; |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 54 | public: |
| 55 | |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 56 | ScalarExprEmitter(CodeGenFunction &cgf, bool ira=false) |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 57 | : CGF(cgf), Builder(CGF.Builder), IgnoreResultAssign(ira), |
Owen Anderson | 170229f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 58 | VMContext(cgf.getLLVMContext()) { |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 59 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 60 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 61 | //===--------------------------------------------------------------------===// |
| 62 | // Utilities |
| 63 | //===--------------------------------------------------------------------===// |
| 64 | |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 65 | bool TestAndClearIgnoreResultAssign() { |
Chris Lattner | 2a7deb6 | 2009-07-08 01:08:03 +0000 | [diff] [blame] | 66 | bool I = IgnoreResultAssign; |
| 67 | IgnoreResultAssign = false; |
| 68 | return I; |
| 69 | } |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 70 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 71 | const llvm::Type *ConvertType(QualType T) { return CGF.ConvertType(T); } |
| 72 | LValue EmitLValue(const Expr *E) { return CGF.EmitLValue(E); } |
| 73 | |
| 74 | Value *EmitLoadOfLValue(LValue LV, QualType T) { |
Chris Lattner | 4647a21 | 2007-08-31 22:49:20 +0000 | [diff] [blame] | 75 | return CGF.EmitLoadOfLValue(LV, T).getScalarVal(); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 76 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 77 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 78 | /// EmitLoadOfLValue - Given an expression with complex type that represents a |
| 79 | /// value l-value, this method emits the address of the l-value, then loads |
| 80 | /// and returns the result. |
| 81 | Value *EmitLoadOfLValue(const Expr *E) { |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 82 | return EmitLoadOfLValue(EmitLValue(E), E->getType()); |
| 83 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 84 | |
Chris Lattner | e004438 | 2007-08-26 16:42:57 +0000 | [diff] [blame] | 85 | /// EmitConversionToBool - Convert the specified expression value to a |
Chris Lattner | 2e92888 | 2007-08-26 17:25:57 +0000 | [diff] [blame] | 86 | /// boolean (i1) truth value. This is equivalent to "Val != 0". |
Chris Lattner | e004438 | 2007-08-26 16:42:57 +0000 | [diff] [blame] | 87 | Value *EmitConversionToBool(Value *Src, QualType DstTy); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 88 | |
Chris Lattner | 3474c20 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 89 | /// EmitScalarConversion - Emit a conversion from the specified type to the |
| 90 | /// specified destination type, both of which are LLVM scalar types. |
Chris Lattner | 42e6b81 | 2007-08-26 16:34:22 +0000 | [diff] [blame] | 91 | Value *EmitScalarConversion(Value *Src, QualType SrcTy, QualType DstTy); |
| 92 | |
| 93 | /// EmitComplexToScalarConversion - Emit a conversion from the specified |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 94 | /// complex type to the specified destination type, where the destination type |
| 95 | /// is an LLVM scalar type. |
Chris Lattner | 42e6b81 | 2007-08-26 16:34:22 +0000 | [diff] [blame] | 96 | Value *EmitComplexToScalarConversion(CodeGenFunction::ComplexPairTy Src, |
| 97 | QualType SrcTy, QualType DstTy); |
Mike Stump | ab3afd8 | 2009-02-12 18:29:15 +0000 | [diff] [blame] | 98 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 99 | //===--------------------------------------------------------------------===// |
| 100 | // Visitor Methods |
| 101 | //===--------------------------------------------------------------------===// |
| 102 | |
| 103 | Value *VisitStmt(Stmt *S) { |
Ted Kremenek | d4e5fba | 2007-12-11 21:27:55 +0000 | [diff] [blame] | 104 | S->dump(CGF.getContext().getSourceManager()); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 105 | assert(0 && "Stmt can't have complex result type!"); |
| 106 | return 0; |
| 107 | } |
| 108 | Value *VisitExpr(Expr *S); |
Fariborz Jahanian | 52987dc | 2009-10-21 23:45:42 +0000 | [diff] [blame] | 109 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 110 | Value *VisitParenExpr(ParenExpr *PE) { return Visit(PE->getSubExpr()); } |
| 111 | |
| 112 | // Leaves. |
| 113 | Value *VisitIntegerLiteral(const IntegerLiteral *E) { |
Owen Anderson | b7a2fe6 | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 114 | return llvm::ConstantInt::get(VMContext, E->getValue()); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 115 | } |
| 116 | Value *VisitFloatingLiteral(const FloatingLiteral *E) { |
Owen Anderson | e05f2ed | 2009-07-27 21:00:51 +0000 | [diff] [blame] | 117 | return llvm::ConstantFP::get(VMContext, E->getValue()); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 118 | } |
| 119 | Value *VisitCharacterLiteral(const CharacterLiteral *E) { |
Owen Anderson | b7a2fe6 | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 120 | return llvm::ConstantInt::get(ConvertType(E->getType()), E->getValue()); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 121 | } |
Nate Begeman | 4c18c23 | 2007-11-15 05:40:03 +0000 | [diff] [blame] | 122 | Value *VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E) { |
Owen Anderson | b7a2fe6 | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 123 | return llvm::ConstantInt::get(ConvertType(E->getType()), E->getValue()); |
Nate Begeman | 4c18c23 | 2007-11-15 05:40:03 +0000 | [diff] [blame] | 124 | } |
Argyrios Kyrtzidis | ce4528f | 2008-08-23 19:35:47 +0000 | [diff] [blame] | 125 | Value *VisitCXXZeroInitValueExpr(const CXXZeroInitValueExpr *E) { |
Owen Anderson | 0b75f23 | 2009-07-31 20:28:54 +0000 | [diff] [blame] | 126 | return llvm::Constant::getNullValue(ConvertType(E->getType())); |
Argyrios Kyrtzidis | ce4528f | 2008-08-23 19:35:47 +0000 | [diff] [blame] | 127 | } |
Anders Carlsson | 39def3a | 2008-12-21 22:39:40 +0000 | [diff] [blame] | 128 | Value *VisitGNUNullExpr(const GNUNullExpr *E) { |
Owen Anderson | 0b75f23 | 2009-07-31 20:28:54 +0000 | [diff] [blame] | 129 | return llvm::Constant::getNullValue(ConvertType(E->getType())); |
Anders Carlsson | 39def3a | 2008-12-21 22:39:40 +0000 | [diff] [blame] | 130 | } |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 131 | Value *VisitTypesCompatibleExpr(const TypesCompatibleExpr *E) { |
Owen Anderson | b7a2fe6 | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 132 | return llvm::ConstantInt::get(ConvertType(E->getType()), |
Steve Naroff | 32e44c0 | 2007-10-15 20:41:53 +0000 | [diff] [blame] | 133 | CGF.getContext().typesAreCompatible( |
| 134 | E->getArgType1(), E->getArgType2())); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 135 | } |
Sebastian Redl | 6f28289 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 136 | Value *VisitSizeOfAlignOfExpr(const SizeOfAlignOfExpr *E); |
Daniel Dunbar | 88402ce | 2008-08-04 16:51:22 +0000 | [diff] [blame] | 137 | Value *VisitAddrLabelExpr(const AddrLabelExpr *E) { |
Chris Lattner | 6c4d255 | 2009-10-28 23:59:40 +0000 | [diff] [blame] | 138 | #ifndef USEINDIRECTBRANCH |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 139 | llvm::Value *V = |
Owen Anderson | 41a7502 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 140 | llvm::ConstantInt::get(llvm::Type::getInt32Ty(CGF.getLLVMContext()), |
Daniel Dunbar | 8bc821a | 2008-08-16 01:41:47 +0000 | [diff] [blame] | 141 | CGF.GetIDForAddrOfLabel(E->getLabel())); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 142 | |
Daniel Dunbar | 8bc821a | 2008-08-16 01:41:47 +0000 | [diff] [blame] | 143 | return Builder.CreateIntToPtr(V, ConvertType(E->getType())); |
Chris Lattner | 6c4d255 | 2009-10-28 23:59:40 +0000 | [diff] [blame] | 144 | #else |
| 145 | llvm::Value *V = CGF.GetAddrOfLabel(E->getLabel()); |
| 146 | return Builder.CreateBitCast(V, ConvertType(E->getType())); |
| 147 | #endif |
Daniel Dunbar | 88402ce | 2008-08-04 16:51:22 +0000 | [diff] [blame] | 148 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 149 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 150 | // l-values. |
| 151 | Value *VisitDeclRefExpr(DeclRefExpr *E) { |
| 152 | if (const EnumConstantDecl *EC = dyn_cast<EnumConstantDecl>(E->getDecl())) |
Owen Anderson | b7a2fe6 | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 153 | return llvm::ConstantInt::get(VMContext, EC->getInitVal()); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 154 | return EmitLoadOfLValue(E); |
| 155 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 156 | Value *VisitObjCSelectorExpr(ObjCSelectorExpr *E) { |
| 157 | return CGF.EmitObjCSelectorExpr(E); |
Daniel Dunbar | 55310df | 2008-08-27 06:57:25 +0000 | [diff] [blame] | 158 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 159 | Value *VisitObjCProtocolExpr(ObjCProtocolExpr *E) { |
| 160 | return CGF.EmitObjCProtocolExpr(E); |
Daniel Dunbar | 55310df | 2008-08-27 06:57:25 +0000 | [diff] [blame] | 161 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 162 | Value *VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) { |
Daniel Dunbar | 55310df | 2008-08-27 06:57:25 +0000 | [diff] [blame] | 163 | return EmitLoadOfLValue(E); |
| 164 | } |
Daniel Dunbar | c8317a4 | 2008-08-23 10:51:21 +0000 | [diff] [blame] | 165 | Value *VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) { |
Daniel Dunbar | 9e22c0d | 2008-08-29 08:11:39 +0000 | [diff] [blame] | 166 | return EmitLoadOfLValue(E); |
Daniel Dunbar | 55310df | 2008-08-27 06:57:25 +0000 | [diff] [blame] | 167 | } |
Fariborz Jahanian | 9a84665 | 2009-08-20 17:02:02 +0000 | [diff] [blame] | 168 | Value *VisitObjCImplicitSetterGetterRefExpr( |
| 169 | ObjCImplicitSetterGetterRefExpr *E) { |
Fariborz Jahanian | 9ac5351 | 2008-11-22 22:30:21 +0000 | [diff] [blame] | 170 | return EmitLoadOfLValue(E); |
| 171 | } |
Daniel Dunbar | 55310df | 2008-08-27 06:57:25 +0000 | [diff] [blame] | 172 | Value *VisitObjCMessageExpr(ObjCMessageExpr *E) { |
| 173 | return CGF.EmitObjCMessageExpr(E).getScalarVal(); |
Daniel Dunbar | c8317a4 | 2008-08-23 10:51:21 +0000 | [diff] [blame] | 174 | } |
| 175 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 176 | Value *VisitArraySubscriptExpr(ArraySubscriptExpr *E); |
Eli Friedman | a1b4ed8 | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 177 | Value *VisitShuffleVectorExpr(ShuffleVectorExpr *E); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 178 | Value *VisitMemberExpr(Expr *E) { return EmitLoadOfLValue(E); } |
Nate Begeman | ce4d7fc | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 179 | Value *VisitExtVectorElementExpr(Expr *E) { return EmitLoadOfLValue(E); } |
Chris Lattner | 084bc32 | 2008-10-26 23:53:12 +0000 | [diff] [blame] | 180 | Value *VisitCompoundLiteralExpr(CompoundLiteralExpr *E) { |
| 181 | return EmitLoadOfLValue(E); |
| 182 | } |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 183 | Value *VisitStringLiteral(Expr *E) { return EmitLValue(E).getAddress(); } |
Chris Lattner | d7e7b8e | 2009-02-24 22:18:39 +0000 | [diff] [blame] | 184 | Value *VisitObjCEncodeExpr(const ObjCEncodeExpr *E) { |
| 185 | return EmitLValue(E).getAddress(); |
| 186 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 187 | |
Chris Lattner | 6307f19 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 188 | Value *VisitPredefinedExpr(Expr *E) { return EmitLValue(E).getAddress(); } |
Devang Patel | 43fc86d | 2007-10-24 17:18:43 +0000 | [diff] [blame] | 189 | |
Nate Begeman | 1935163 | 2009-10-18 20:10:40 +0000 | [diff] [blame] | 190 | Value *VisitInitListExpr(InitListExpr *E); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 191 | |
Douglas Gregor | 0202cb4 | 2009-01-29 17:44:32 +0000 | [diff] [blame] | 192 | Value *VisitImplicitValueInitExpr(const ImplicitValueInitExpr *E) { |
Owen Anderson | 0b75f23 | 2009-07-31 20:28:54 +0000 | [diff] [blame] | 193 | return llvm::Constant::getNullValue(ConvertType(E->getType())); |
Douglas Gregor | 0202cb4 | 2009-01-29 17:44:32 +0000 | [diff] [blame] | 194 | } |
Eli Friedman | bc633be | 2009-04-20 03:54:15 +0000 | [diff] [blame] | 195 | Value *VisitCastExpr(const CastExpr *E) { |
| 196 | // Make sure to evaluate VLA bounds now so that we have them for later. |
| 197 | if (E->getType()->isVariablyModifiedType()) |
| 198 | CGF.EmitVLASize(E->getType()); |
| 199 | |
Anders Carlsson | 8c978b4 | 2009-09-22 22:00:46 +0000 | [diff] [blame] | 200 | return EmitCastExpr(E); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 201 | } |
Anders Carlsson | 8c978b4 | 2009-09-22 22:00:46 +0000 | [diff] [blame] | 202 | Value *EmitCastExpr(const CastExpr *E); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 203 | |
| 204 | Value *VisitCallExpr(const CallExpr *E) { |
Anders Carlsson | d8b7ae2 | 2009-05-27 03:37:57 +0000 | [diff] [blame] | 205 | if (E->getCallReturnType()->isReferenceType()) |
| 206 | return EmitLoadOfLValue(E); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 207 | |
Chris Lattner | 4647a21 | 2007-08-31 22:49:20 +0000 | [diff] [blame] | 208 | return CGF.EmitCallExpr(E).getScalarVal(); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 209 | } |
Daniel Dunbar | 97db84c | 2008-08-23 03:46:30 +0000 | [diff] [blame] | 210 | |
Chris Lattner | 04a913b | 2007-08-31 22:09:40 +0000 | [diff] [blame] | 211 | Value *VisitStmtExpr(const StmtExpr *E); |
Mike Stump | cb2fbcb | 2009-02-21 20:00:35 +0000 | [diff] [blame] | 212 | |
Mike Stump | 1db7d04 | 2009-02-28 09:07:16 +0000 | [diff] [blame] | 213 | Value *VisitBlockDeclRefExpr(const BlockDeclRefExpr *E); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 214 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 215 | // Unary Operators. |
| 216 | Value *VisitPrePostIncDec(const UnaryOperator *E, bool isInc, bool isPre); |
| 217 | Value *VisitUnaryPostDec(const UnaryOperator *E) { |
| 218 | return VisitPrePostIncDec(E, false, false); |
| 219 | } |
| 220 | Value *VisitUnaryPostInc(const UnaryOperator *E) { |
| 221 | return VisitPrePostIncDec(E, true, false); |
| 222 | } |
| 223 | Value *VisitUnaryPreDec(const UnaryOperator *E) { |
| 224 | return VisitPrePostIncDec(E, false, true); |
| 225 | } |
| 226 | Value *VisitUnaryPreInc(const UnaryOperator *E) { |
| 227 | return VisitPrePostIncDec(E, true, true); |
| 228 | } |
| 229 | Value *VisitUnaryAddrOf(const UnaryOperator *E) { |
| 230 | return EmitLValue(E->getSubExpr()).getAddress(); |
| 231 | } |
| 232 | Value *VisitUnaryDeref(const Expr *E) { return EmitLoadOfLValue(E); } |
| 233 | Value *VisitUnaryPlus(const UnaryOperator *E) { |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 234 | // This differs from gcc, though, most likely due to a bug in gcc. |
| 235 | TestAndClearIgnoreResultAssign(); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 236 | return Visit(E->getSubExpr()); |
| 237 | } |
| 238 | Value *VisitUnaryMinus (const UnaryOperator *E); |
| 239 | Value *VisitUnaryNot (const UnaryOperator *E); |
| 240 | Value *VisitUnaryLNot (const UnaryOperator *E); |
Chris Lattner | 9f0ad96 | 2007-08-24 21:20:17 +0000 | [diff] [blame] | 241 | Value *VisitUnaryReal (const UnaryOperator *E); |
| 242 | Value *VisitUnaryImag (const UnaryOperator *E); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 243 | Value *VisitUnaryExtension(const UnaryOperator *E) { |
| 244 | return Visit(E->getSubExpr()); |
| 245 | } |
Anders Carlsson | a8dc3e6 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 246 | Value *VisitUnaryOffsetOf(const UnaryOperator *E); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 247 | |
Anders Carlsson | a5d077d | 2009-04-14 16:58:56 +0000 | [diff] [blame] | 248 | // C++ |
Chris Lattner | aa9c7ae | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 249 | Value *VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) { |
| 250 | return Visit(DAE->getExpr()); |
| 251 | } |
Anders Carlsson | a5d077d | 2009-04-14 16:58:56 +0000 | [diff] [blame] | 252 | Value *VisitCXXThisExpr(CXXThisExpr *TE) { |
| 253 | return CGF.LoadCXXThis(); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 254 | } |
| 255 | |
Anders Carlsson | c82b86d | 2009-05-19 04:48:36 +0000 | [diff] [blame] | 256 | Value *VisitCXXExprWithTemporaries(CXXExprWithTemporaries *E) { |
Anders Carlsson | 2262b30 | 2009-05-31 00:09:15 +0000 | [diff] [blame] | 257 | return CGF.EmitCXXExprWithTemporaries(E).getScalarVal(); |
Anders Carlsson | c82b86d | 2009-05-19 04:48:36 +0000 | [diff] [blame] | 258 | } |
Anders Carlsson | 4a7b49b | 2009-05-31 01:40:14 +0000 | [diff] [blame] | 259 | Value *VisitCXXNewExpr(const CXXNewExpr *E) { |
| 260 | return CGF.EmitCXXNewExpr(E); |
| 261 | } |
Anders Carlsson | 81f0df9 | 2009-08-16 21:13:42 +0000 | [diff] [blame] | 262 | Value *VisitCXXDeleteExpr(const CXXDeleteExpr *E) { |
| 263 | CGF.EmitCXXDeleteExpr(E); |
| 264 | return 0; |
| 265 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 266 | |
Douglas Gregor | ad8a336 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 267 | Value *VisitCXXPseudoDestructorExpr(const CXXPseudoDestructorExpr *E) { |
| 268 | // C++ [expr.pseudo]p1: |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 269 | // The result shall only be used as the operand for the function call |
Douglas Gregor | ad8a336 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 270 | // operator (), and the result of such a call has type void. The only |
| 271 | // effect is the evaluation of the postfix-expression before the dot or |
| 272 | // arrow. |
| 273 | CGF.EmitScalarExpr(E->getBase()); |
| 274 | return 0; |
| 275 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 276 | |
Anders Carlsson | 04c3bf4 | 2009-09-15 04:39:46 +0000 | [diff] [blame] | 277 | Value *VisitCXXNullPtrLiteralExpr(const CXXNullPtrLiteralExpr *E) { |
| 278 | return llvm::Constant::getNullValue(ConvertType(E->getType())); |
| 279 | } |
Anders Carlsson | 4b08db7 | 2009-10-30 01:42:31 +0000 | [diff] [blame^] | 280 | |
| 281 | Value *VisitCXXThrowExpr(const CXXThrowExpr *E) { |
| 282 | CGF.EmitCXXThrowExpr(E); |
| 283 | return 0; |
| 284 | } |
| 285 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 286 | // Binary Operators. |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 287 | Value *EmitMul(const BinOpInfo &Ops) { |
Mike Stump | d3e3885 | 2009-04-02 18:15:54 +0000 | [diff] [blame] | 288 | if (CGF.getContext().getLangOptions().OverflowChecking |
| 289 | && Ops.Ty->isSignedIntegerType()) |
Mike Stump | 0c61b73 | 2009-04-01 20:28:16 +0000 | [diff] [blame] | 290 | return EmitOverflowCheckedBinOp(Ops); |
Chris Lattner | 94dfae2 | 2009-06-17 06:36:24 +0000 | [diff] [blame] | 291 | if (Ops.LHS->getType()->isFPOrFPVector()) |
| 292 | return Builder.CreateFMul(Ops.LHS, Ops.RHS, "mul"); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 293 | return Builder.CreateMul(Ops.LHS, Ops.RHS, "mul"); |
| 294 | } |
Mike Stump | 0c61b73 | 2009-04-01 20:28:16 +0000 | [diff] [blame] | 295 | /// Create a binary op that checks for overflow. |
| 296 | /// Currently only supports +, - and *. |
| 297 | Value *EmitOverflowCheckedBinOp(const BinOpInfo &Ops); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 298 | Value *EmitDiv(const BinOpInfo &Ops); |
| 299 | Value *EmitRem(const BinOpInfo &Ops); |
| 300 | Value *EmitAdd(const BinOpInfo &Ops); |
| 301 | Value *EmitSub(const BinOpInfo &Ops); |
| 302 | Value *EmitShl(const BinOpInfo &Ops); |
| 303 | Value *EmitShr(const BinOpInfo &Ops); |
| 304 | Value *EmitAnd(const BinOpInfo &Ops) { |
| 305 | return Builder.CreateAnd(Ops.LHS, Ops.RHS, "and"); |
| 306 | } |
| 307 | Value *EmitXor(const BinOpInfo &Ops) { |
| 308 | return Builder.CreateXor(Ops.LHS, Ops.RHS, "xor"); |
| 309 | } |
| 310 | Value *EmitOr (const BinOpInfo &Ops) { |
| 311 | return Builder.CreateOr(Ops.LHS, Ops.RHS, "or"); |
| 312 | } |
| 313 | |
Chris Lattner | 3d966d6 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 314 | BinOpInfo EmitBinOps(const BinaryOperator *E); |
Chris Lattner | b633469 | 2007-08-26 21:41:21 +0000 | [diff] [blame] | 315 | Value *EmitCompoundAssign(const CompoundAssignOperator *E, |
Chris Lattner | 3d966d6 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 316 | Value *(ScalarExprEmitter::*F)(const BinOpInfo &)); |
| 317 | |
| 318 | // Binary operators and binary compound assignment operators. |
| 319 | #define HANDLEBINOP(OP) \ |
Chris Lattner | b633469 | 2007-08-26 21:41:21 +0000 | [diff] [blame] | 320 | Value *VisitBin ## OP(const BinaryOperator *E) { \ |
| 321 | return Emit ## OP(EmitBinOps(E)); \ |
| 322 | } \ |
| 323 | Value *VisitBin ## OP ## Assign(const CompoundAssignOperator *E) { \ |
| 324 | return EmitCompoundAssign(E, &ScalarExprEmitter::Emit ## OP); \ |
Chris Lattner | 3d966d6 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 325 | } |
| 326 | HANDLEBINOP(Mul); |
| 327 | HANDLEBINOP(Div); |
| 328 | HANDLEBINOP(Rem); |
| 329 | HANDLEBINOP(Add); |
Daniel Dunbar | bfb1cd7 | 2008-08-06 02:00:38 +0000 | [diff] [blame] | 330 | HANDLEBINOP(Sub); |
Chris Lattner | 3d966d6 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 331 | HANDLEBINOP(Shl); |
| 332 | HANDLEBINOP(Shr); |
| 333 | HANDLEBINOP(And); |
| 334 | HANDLEBINOP(Xor); |
| 335 | HANDLEBINOP(Or); |
| 336 | #undef HANDLEBINOP |
Daniel Dunbar | bfb1cd7 | 2008-08-06 02:00:38 +0000 | [diff] [blame] | 337 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 338 | // Comparisons. |
| 339 | Value *EmitCompare(const BinaryOperator *E, unsigned UICmpOpc, |
| 340 | unsigned SICmpOpc, unsigned FCmpOpc); |
| 341 | #define VISITCOMP(CODE, UI, SI, FP) \ |
| 342 | Value *VisitBin##CODE(const BinaryOperator *E) { \ |
| 343 | return EmitCompare(E, llvm::ICmpInst::UI, llvm::ICmpInst::SI, \ |
| 344 | llvm::FCmpInst::FP); } |
| 345 | VISITCOMP(LT, ICMP_ULT, ICMP_SLT, FCMP_OLT); |
| 346 | VISITCOMP(GT, ICMP_UGT, ICMP_SGT, FCMP_OGT); |
| 347 | VISITCOMP(LE, ICMP_ULE, ICMP_SLE, FCMP_OLE); |
| 348 | VISITCOMP(GE, ICMP_UGE, ICMP_SGE, FCMP_OGE); |
| 349 | VISITCOMP(EQ, ICMP_EQ , ICMP_EQ , FCMP_OEQ); |
| 350 | VISITCOMP(NE, ICMP_NE , ICMP_NE , FCMP_UNE); |
| 351 | #undef VISITCOMP |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 352 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 353 | Value *VisitBinAssign (const BinaryOperator *E); |
| 354 | |
| 355 | Value *VisitBinLAnd (const BinaryOperator *E); |
| 356 | Value *VisitBinLOr (const BinaryOperator *E); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 357 | Value *VisitBinComma (const BinaryOperator *E); |
| 358 | |
| 359 | // Other Operators. |
Mike Stump | ab3afd8 | 2009-02-12 18:29:15 +0000 | [diff] [blame] | 360 | Value *VisitBlockExpr(const BlockExpr *BE); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 361 | Value *VisitConditionalOperator(const ConditionalOperator *CO); |
| 362 | Value *VisitChooseExpr(ChooseExpr *CE); |
Anders Carlsson | 7e13ab8 | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 363 | Value *VisitVAArgExpr(VAArgExpr *VE); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 364 | Value *VisitObjCStringLiteral(const ObjCStringLiteral *E) { |
| 365 | return CGF.EmitObjCStringLiteral(E); |
| 366 | } |
| 367 | }; |
| 368 | } // end anonymous namespace. |
| 369 | |
| 370 | //===----------------------------------------------------------------------===// |
| 371 | // Utilities |
| 372 | //===----------------------------------------------------------------------===// |
| 373 | |
Chris Lattner | e004438 | 2007-08-26 16:42:57 +0000 | [diff] [blame] | 374 | /// EmitConversionToBool - Convert the specified expression value to a |
Chris Lattner | 2e92888 | 2007-08-26 17:25:57 +0000 | [diff] [blame] | 375 | /// boolean (i1) truth value. This is equivalent to "Val != 0". |
Chris Lattner | e004438 | 2007-08-26 16:42:57 +0000 | [diff] [blame] | 376 | Value *ScalarExprEmitter::EmitConversionToBool(Value *Src, QualType SrcType) { |
John McCall | b692a09 | 2009-10-22 20:10:53 +0000 | [diff] [blame] | 377 | assert(SrcType.isCanonical() && "EmitScalarConversion strips typedefs"); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 378 | |
Chris Lattner | e004438 | 2007-08-26 16:42:57 +0000 | [diff] [blame] | 379 | if (SrcType->isRealFloatingType()) { |
| 380 | // Compare against 0.0 for fp scalars. |
Owen Anderson | 0b75f23 | 2009-07-31 20:28:54 +0000 | [diff] [blame] | 381 | llvm::Value *Zero = llvm::Constant::getNullValue(Src->getType()); |
Chris Lattner | e004438 | 2007-08-26 16:42:57 +0000 | [diff] [blame] | 382 | return Builder.CreateFCmpUNE(Src, Zero, "tobool"); |
| 383 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 384 | |
Anders Carlsson | f48123b | 2009-08-09 18:26:27 +0000 | [diff] [blame] | 385 | if (SrcType->isMemberPointerType()) { |
| 386 | // FIXME: This is ABI specific. |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 387 | |
Anders Carlsson | f48123b | 2009-08-09 18:26:27 +0000 | [diff] [blame] | 388 | // Compare against -1. |
| 389 | llvm::Value *NegativeOne = llvm::Constant::getAllOnesValue(Src->getType()); |
| 390 | return Builder.CreateICmpNE(Src, NegativeOne, "tobool"); |
| 391 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 392 | |
Daniel Dunbar | ef957f3 | 2008-08-25 10:38:11 +0000 | [diff] [blame] | 393 | assert((SrcType->isIntegerType() || isa<llvm::PointerType>(Src->getType())) && |
Chris Lattner | e004438 | 2007-08-26 16:42:57 +0000 | [diff] [blame] | 394 | "Unknown scalar type to convert"); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 395 | |
Chris Lattner | e004438 | 2007-08-26 16:42:57 +0000 | [diff] [blame] | 396 | // Because of the type rules of C, we often end up computing a logical value, |
| 397 | // then zero extending it to int, then wanting it as a logical value again. |
| 398 | // Optimize this common case. |
| 399 | if (llvm::ZExtInst *ZI = dyn_cast<llvm::ZExtInst>(Src)) { |
Owen Anderson | 41a7502 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 400 | if (ZI->getOperand(0)->getType() == |
| 401 | llvm::Type::getInt1Ty(CGF.getLLVMContext())) { |
Chris Lattner | e004438 | 2007-08-26 16:42:57 +0000 | [diff] [blame] | 402 | Value *Result = ZI->getOperand(0); |
Eli Friedman | 7031d73 | 2008-01-29 18:13:51 +0000 | [diff] [blame] | 403 | // If there aren't any more uses, zap the instruction to save space. |
| 404 | // Note that there can be more uses, for example if this |
| 405 | // is the result of an assignment. |
| 406 | if (ZI->use_empty()) |
| 407 | ZI->eraseFromParent(); |
Chris Lattner | e004438 | 2007-08-26 16:42:57 +0000 | [diff] [blame] | 408 | return Result; |
| 409 | } |
| 410 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 411 | |
Chris Lattner | e004438 | 2007-08-26 16:42:57 +0000 | [diff] [blame] | 412 | // Compare against an integer or pointer null. |
Owen Anderson | 0b75f23 | 2009-07-31 20:28:54 +0000 | [diff] [blame] | 413 | llvm::Value *Zero = llvm::Constant::getNullValue(Src->getType()); |
Chris Lattner | e004438 | 2007-08-26 16:42:57 +0000 | [diff] [blame] | 414 | return Builder.CreateICmpNE(Src, Zero, "tobool"); |
| 415 | } |
| 416 | |
Chris Lattner | 3474c20 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 417 | /// EmitScalarConversion - Emit a conversion from the specified type to the |
| 418 | /// specified destination type, both of which are LLVM scalar types. |
Chris Lattner | 42e6b81 | 2007-08-26 16:34:22 +0000 | [diff] [blame] | 419 | Value *ScalarExprEmitter::EmitScalarConversion(Value *Src, QualType SrcType, |
| 420 | QualType DstType) { |
Chris Lattner | 0f398c4 | 2008-07-26 22:37:01 +0000 | [diff] [blame] | 421 | SrcType = CGF.getContext().getCanonicalType(SrcType); |
| 422 | DstType = CGF.getContext().getCanonicalType(DstType); |
Chris Lattner | 3474c20 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 423 | if (SrcType == DstType) return Src; |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 424 | |
Chris Lattner | 08c611e | 2007-08-26 07:21:11 +0000 | [diff] [blame] | 425 | if (DstType->isVoidType()) return 0; |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 426 | |
Owen Anderson | 41a7502 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 427 | llvm::LLVMContext &VMContext = CGF.getLLVMContext(); |
Chris Lattner | 3474c20 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 428 | |
| 429 | // Handle conversions to bool first, they are special: comparisons against 0. |
Chris Lattner | c141c1b | 2007-08-26 16:52:28 +0000 | [diff] [blame] | 430 | if (DstType->isBooleanType()) |
| 431 | return EmitConversionToBool(Src, SrcType); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 432 | |
Chris Lattner | 3474c20 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 433 | const llvm::Type *DstTy = ConvertType(DstType); |
| 434 | |
| 435 | // Ignore conversions like int -> uint. |
| 436 | if (Src->getType() == DstTy) |
| 437 | return Src; |
| 438 | |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 439 | // Handle pointer conversions next: pointers can only be converted to/from |
| 440 | // other pointers and integers. Check for pointer types in terms of LLVM, as |
| 441 | // some native types (like Obj-C id) may map to a pointer type. |
Daniel Dunbar | 427f873 | 2008-08-25 09:51:32 +0000 | [diff] [blame] | 442 | if (isa<llvm::PointerType>(DstTy)) { |
Chris Lattner | 3474c20 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 443 | // The source value may be an integer, or a pointer. |
Anders Carlsson | 12f5a25 | 2009-09-12 04:57:16 +0000 | [diff] [blame] | 444 | if (isa<llvm::PointerType>(Src->getType())) |
Chris Lattner | 3474c20 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 445 | return Builder.CreateBitCast(Src, DstTy, "conv"); |
Anders Carlsson | 12f5a25 | 2009-09-12 04:57:16 +0000 | [diff] [blame] | 446 | |
Chris Lattner | 3474c20 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 447 | assert(SrcType->isIntegerType() && "Not ptr->ptr or int->ptr conversion?"); |
Eli Friedman | 42d2a3a | 2009-03-04 04:02:35 +0000 | [diff] [blame] | 448 | // First, convert to the correct width so that we control the kind of |
| 449 | // extension. |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 450 | const llvm::Type *MiddleTy = |
Owen Anderson | 41a7502 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 451 | llvm::IntegerType::get(VMContext, CGF.LLVMPointerWidth); |
Eli Friedman | 42d2a3a | 2009-03-04 04:02:35 +0000 | [diff] [blame] | 452 | bool InputSigned = SrcType->isSignedIntegerType(); |
| 453 | llvm::Value* IntResult = |
| 454 | Builder.CreateIntCast(Src, MiddleTy, InputSigned, "conv"); |
| 455 | // Then, cast to pointer. |
| 456 | return Builder.CreateIntToPtr(IntResult, DstTy, "conv"); |
Chris Lattner | 3474c20 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 457 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 458 | |
Daniel Dunbar | 427f873 | 2008-08-25 09:51:32 +0000 | [diff] [blame] | 459 | if (isa<llvm::PointerType>(Src->getType())) { |
Chris Lattner | 3474c20 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 460 | // Must be an ptr to int cast. |
| 461 | assert(isa<llvm::IntegerType>(DstTy) && "not ptr->int?"); |
Anders Carlsson | e89b84a | 2007-10-31 23:18:02 +0000 | [diff] [blame] | 462 | return Builder.CreatePtrToInt(Src, DstTy, "conv"); |
Chris Lattner | 3474c20 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 463 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 464 | |
Nate Begeman | ce4d7fc | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 465 | // A scalar can be splatted to an extended vector of the same element type |
Nate Begeman | 5ec4b31 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 466 | if (DstType->isExtVectorType() && !SrcType->isVectorType()) { |
Nate Begeman | b699c9b | 2009-01-18 06:42:49 +0000 | [diff] [blame] | 467 | // Cast the scalar to element type |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 468 | QualType EltTy = DstType->getAs<ExtVectorType>()->getElementType(); |
Nate Begeman | b699c9b | 2009-01-18 06:42:49 +0000 | [diff] [blame] | 469 | llvm::Value *Elt = EmitScalarConversion(Src, SrcType, EltTy); |
| 470 | |
| 471 | // Insert the element in element zero of an undef vector |
Owen Anderson | 7ec07a5 | 2009-07-30 23:11:26 +0000 | [diff] [blame] | 472 | llvm::Value *UnV = llvm::UndefValue::get(DstTy); |
Owen Anderson | 41a7502 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 473 | llvm::Value *Idx = |
| 474 | llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), 0); |
Nate Begeman | b699c9b | 2009-01-18 06:42:49 +0000 | [diff] [blame] | 475 | UnV = Builder.CreateInsertElement(UnV, Elt, Idx, "tmp"); |
| 476 | |
| 477 | // Splat the element across to all elements |
| 478 | llvm::SmallVector<llvm::Constant*, 16> Args; |
| 479 | unsigned NumElements = cast<llvm::VectorType>(DstTy)->getNumElements(); |
| 480 | for (unsigned i = 0; i < NumElements; i++) |
Owen Anderson | 41a7502 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 481 | Args.push_back(llvm::ConstantInt::get( |
| 482 | llvm::Type::getInt32Ty(VMContext), 0)); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 483 | |
Owen Anderson | 3cc120a | 2009-07-28 21:22:35 +0000 | [diff] [blame] | 484 | llvm::Constant *Mask = llvm::ConstantVector::get(&Args[0], NumElements); |
Nate Begeman | b699c9b | 2009-01-18 06:42:49 +0000 | [diff] [blame] | 485 | llvm::Value *Yay = Builder.CreateShuffleVector(UnV, UnV, Mask, "splat"); |
| 486 | return Yay; |
| 487 | } |
Nate Begeman | 330aaa7 | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 488 | |
Chris Lattner | 6cba8e9 | 2008-02-02 04:51:41 +0000 | [diff] [blame] | 489 | // Allow bitcast from vector to integer/fp of the same size. |
Anders Carlsson | a297e7a | 2007-12-05 07:36:10 +0000 | [diff] [blame] | 490 | if (isa<llvm::VectorType>(Src->getType()) || |
Chris Lattner | 6cba8e9 | 2008-02-02 04:51:41 +0000 | [diff] [blame] | 491 | isa<llvm::VectorType>(DstTy)) |
Anders Carlsson | a297e7a | 2007-12-05 07:36:10 +0000 | [diff] [blame] | 492 | return Builder.CreateBitCast(Src, DstTy, "conv"); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 493 | |
Chris Lattner | 3474c20 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 494 | // Finally, we have the arithmetic types: real int/float. |
| 495 | if (isa<llvm::IntegerType>(Src->getType())) { |
| 496 | bool InputSigned = SrcType->isSignedIntegerType(); |
Anders Carlsson | c9d41e7 | 2007-12-26 18:20:19 +0000 | [diff] [blame] | 497 | if (isa<llvm::IntegerType>(DstTy)) |
| 498 | return Builder.CreateIntCast(Src, DstTy, InputSigned, "conv"); |
| 499 | else if (InputSigned) |
| 500 | return Builder.CreateSIToFP(Src, DstTy, "conv"); |
| 501 | else |
| 502 | return Builder.CreateUIToFP(Src, DstTy, "conv"); |
Chris Lattner | 3474c20 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 503 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 504 | |
Chris Lattner | 3474c20 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 505 | assert(Src->getType()->isFloatingPoint() && "Unknown real conversion"); |
| 506 | if (isa<llvm::IntegerType>(DstTy)) { |
Anders Carlsson | c9d41e7 | 2007-12-26 18:20:19 +0000 | [diff] [blame] | 507 | if (DstType->isSignedIntegerType()) |
| 508 | return Builder.CreateFPToSI(Src, DstTy, "conv"); |
| 509 | else |
| 510 | return Builder.CreateFPToUI(Src, DstTy, "conv"); |
Chris Lattner | 3474c20 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 511 | } |
| 512 | |
| 513 | assert(DstTy->isFloatingPoint() && "Unknown real conversion"); |
Anders Carlsson | c9d41e7 | 2007-12-26 18:20:19 +0000 | [diff] [blame] | 514 | if (DstTy->getTypeID() < Src->getType()->getTypeID()) |
| 515 | return Builder.CreateFPTrunc(Src, DstTy, "conv"); |
| 516 | else |
| 517 | return Builder.CreateFPExt(Src, DstTy, "conv"); |
Chris Lattner | 3474c20 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 518 | } |
| 519 | |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 520 | /// EmitComplexToScalarConversion - Emit a conversion from the specified complex |
| 521 | /// type to the specified destination type, where the destination type is an |
| 522 | /// LLVM scalar type. |
Chris Lattner | 42e6b81 | 2007-08-26 16:34:22 +0000 | [diff] [blame] | 523 | Value *ScalarExprEmitter:: |
| 524 | EmitComplexToScalarConversion(CodeGenFunction::ComplexPairTy Src, |
| 525 | QualType SrcTy, QualType DstTy) { |
Chris Lattner | c141c1b | 2007-08-26 16:52:28 +0000 | [diff] [blame] | 526 | // Get the source element type. |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 527 | SrcTy = SrcTy->getAs<ComplexType>()->getElementType(); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 528 | |
Chris Lattner | c141c1b | 2007-08-26 16:52:28 +0000 | [diff] [blame] | 529 | // Handle conversions to bool first, they are special: comparisons against 0. |
| 530 | if (DstTy->isBooleanType()) { |
| 531 | // Complex != 0 -> (Real != 0) | (Imag != 0) |
| 532 | Src.first = EmitScalarConversion(Src.first, SrcTy, DstTy); |
| 533 | Src.second = EmitScalarConversion(Src.second, SrcTy, DstTy); |
| 534 | return Builder.CreateOr(Src.first, Src.second, "tobool"); |
| 535 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 536 | |
Chris Lattner | 42e6b81 | 2007-08-26 16:34:22 +0000 | [diff] [blame] | 537 | // C99 6.3.1.7p2: "When a value of complex type is converted to a real type, |
| 538 | // the imaginary part of the complex value is discarded and the value of the |
| 539 | // real part is converted according to the conversion rules for the |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 540 | // corresponding real type. |
Chris Lattner | 42e6b81 | 2007-08-26 16:34:22 +0000 | [diff] [blame] | 541 | return EmitScalarConversion(Src.first, SrcTy, DstTy); |
| 542 | } |
| 543 | |
| 544 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 545 | //===----------------------------------------------------------------------===// |
| 546 | // Visitor Methods |
| 547 | //===----------------------------------------------------------------------===// |
| 548 | |
| 549 | Value *ScalarExprEmitter::VisitExpr(Expr *E) { |
Fariborz Jahanian | 52987dc | 2009-10-21 23:45:42 +0000 | [diff] [blame] | 550 | if (const BinaryOperator *BExpr = dyn_cast<BinaryOperator>(E)) |
Fariborz Jahanian | ffba662 | 2009-10-22 22:57:31 +0000 | [diff] [blame] | 551 | if (BExpr->getOpcode() == BinaryOperator::PtrMemD) { |
| 552 | LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(BExpr); |
| 553 | Value *InVal = CGF.EmitLoadOfLValue(LV, E->getType()).getScalarVal(); |
| 554 | return InVal; |
| 555 | } |
Fariborz Jahanian | 52987dc | 2009-10-21 23:45:42 +0000 | [diff] [blame] | 556 | |
Daniel Dunbar | a7c8cf6 | 2008-08-16 00:56:44 +0000 | [diff] [blame] | 557 | CGF.ErrorUnsupported(E, "scalar expression"); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 558 | if (E->getType()->isVoidType()) |
| 559 | return 0; |
Owen Anderson | 7ec07a5 | 2009-07-30 23:11:26 +0000 | [diff] [blame] | 560 | return llvm::UndefValue::get(CGF.ConvertType(E->getType())); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 561 | } |
| 562 | |
Eli Friedman | a1b4ed8 | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 563 | Value *ScalarExprEmitter::VisitShuffleVectorExpr(ShuffleVectorExpr *E) { |
| 564 | llvm::SmallVector<llvm::Constant*, 32> indices; |
| 565 | for (unsigned i = 2; i < E->getNumSubExprs(); i++) { |
| 566 | indices.push_back(cast<llvm::Constant>(CGF.EmitScalarExpr(E->getExpr(i)))); |
| 567 | } |
| 568 | Value* V1 = CGF.EmitScalarExpr(E->getExpr(0)); |
| 569 | Value* V2 = CGF.EmitScalarExpr(E->getExpr(1)); |
Owen Anderson | 3cc120a | 2009-07-28 21:22:35 +0000 | [diff] [blame] | 570 | Value* SV = llvm::ConstantVector::get(indices.begin(), indices.size()); |
Eli Friedman | a1b4ed8 | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 571 | return Builder.CreateShuffleVector(V1, V2, SV, "shuffle"); |
| 572 | } |
| 573 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 574 | Value *ScalarExprEmitter::VisitArraySubscriptExpr(ArraySubscriptExpr *E) { |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 575 | TestAndClearIgnoreResultAssign(); |
| 576 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 577 | // Emit subscript expressions in rvalue context's. For most cases, this just |
| 578 | // loads the lvalue formed by the subscript expr. However, we have to be |
| 579 | // careful, because the base of a vector subscript is occasionally an rvalue, |
| 580 | // so we can't get it as an lvalue. |
| 581 | if (!E->getBase()->getType()->isVectorType()) |
| 582 | return EmitLoadOfLValue(E); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 583 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 584 | // Handle the vector case. The base must be a vector, the index must be an |
| 585 | // integer value. |
| 586 | Value *Base = Visit(E->getBase()); |
| 587 | Value *Idx = Visit(E->getIdx()); |
Eli Friedman | e381f7e | 2009-03-28 02:45:41 +0000 | [diff] [blame] | 588 | bool IdxSigned = E->getIdx()->getType()->isSignedIntegerType(); |
Owen Anderson | 41a7502 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 589 | Idx = Builder.CreateIntCast(Idx, |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 590 | llvm::Type::getInt32Ty(CGF.getLLVMContext()), |
Owen Anderson | 41a7502 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 591 | IdxSigned, |
Eli Friedman | 754d5ac | 2009-03-28 03:27:06 +0000 | [diff] [blame] | 592 | "vecidxcast"); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 593 | return Builder.CreateExtractElement(Base, Idx, "vecext"); |
| 594 | } |
| 595 | |
Nate Begeman | 1935163 | 2009-10-18 20:10:40 +0000 | [diff] [blame] | 596 | static llvm::Constant *getMaskElt(llvm::ShuffleVectorInst *SVI, unsigned Idx, |
| 597 | unsigned Off, const llvm::Type *I32Ty) { |
| 598 | int MV = SVI->getMaskValue(Idx); |
| 599 | if (MV == -1) |
| 600 | return llvm::UndefValue::get(I32Ty); |
| 601 | return llvm::ConstantInt::get(I32Ty, Off+MV); |
| 602 | } |
| 603 | |
| 604 | Value *ScalarExprEmitter::VisitInitListExpr(InitListExpr *E) { |
| 605 | bool Ignore = TestAndClearIgnoreResultAssign(); |
| 606 | (void)Ignore; |
| 607 | assert (Ignore == false && "init list ignored"); |
| 608 | unsigned NumInitElements = E->getNumInits(); |
| 609 | |
| 610 | if (E->hadArrayRangeDesignator()) |
| 611 | CGF.ErrorUnsupported(E, "GNU array range designator extension"); |
| 612 | |
| 613 | const llvm::VectorType *VType = |
| 614 | dyn_cast<llvm::VectorType>(ConvertType(E->getType())); |
| 615 | |
| 616 | // We have a scalar in braces. Just use the first element. |
| 617 | if (!VType) |
| 618 | return Visit(E->getInit(0)); |
| 619 | |
| 620 | unsigned ResElts = VType->getNumElements(); |
| 621 | const llvm::Type *I32Ty = llvm::Type::getInt32Ty(CGF.getLLVMContext()); |
| 622 | |
| 623 | // Loop over initializers collecting the Value for each, and remembering |
| 624 | // whether the source was swizzle (ExtVectorElementExpr). This will allow |
| 625 | // us to fold the shuffle for the swizzle into the shuffle for the vector |
| 626 | // initializer, since LLVM optimizers generally do not want to touch |
| 627 | // shuffles. |
| 628 | unsigned CurIdx = 0; |
| 629 | bool VIsUndefShuffle = false; |
| 630 | llvm::Value *V = llvm::UndefValue::get(VType); |
| 631 | for (unsigned i = 0; i != NumInitElements; ++i) { |
| 632 | Expr *IE = E->getInit(i); |
| 633 | Value *Init = Visit(IE); |
| 634 | llvm::SmallVector<llvm::Constant*, 16> Args; |
| 635 | |
| 636 | const llvm::VectorType *VVT = dyn_cast<llvm::VectorType>(Init->getType()); |
| 637 | |
| 638 | // Handle scalar elements. If the scalar initializer is actually one |
| 639 | // element of a different vector of the same width, use shuffle instead of |
| 640 | // extract+insert. |
| 641 | if (!VVT) { |
| 642 | if (isa<ExtVectorElementExpr>(IE)) { |
| 643 | llvm::ExtractElementInst *EI = cast<llvm::ExtractElementInst>(Init); |
| 644 | |
| 645 | if (EI->getVectorOperandType()->getNumElements() == ResElts) { |
| 646 | llvm::ConstantInt *C = cast<llvm::ConstantInt>(EI->getIndexOperand()); |
| 647 | Value *LHS = 0, *RHS = 0; |
| 648 | if (CurIdx == 0) { |
| 649 | // insert into undef -> shuffle (src, undef) |
| 650 | Args.push_back(C); |
| 651 | for (unsigned j = 1; j != ResElts; ++j) |
| 652 | Args.push_back(llvm::UndefValue::get(I32Ty)); |
| 653 | |
| 654 | LHS = EI->getVectorOperand(); |
| 655 | RHS = V; |
| 656 | VIsUndefShuffle = true; |
| 657 | } else if (VIsUndefShuffle) { |
| 658 | // insert into undefshuffle && size match -> shuffle (v, src) |
| 659 | llvm::ShuffleVectorInst *SVV = cast<llvm::ShuffleVectorInst>(V); |
| 660 | for (unsigned j = 0; j != CurIdx; ++j) |
| 661 | Args.push_back(getMaskElt(SVV, j, 0, I32Ty)); |
| 662 | Args.push_back(llvm::ConstantInt::get(I32Ty, |
| 663 | ResElts + C->getZExtValue())); |
| 664 | for (unsigned j = CurIdx + 1; j != ResElts; ++j) |
| 665 | Args.push_back(llvm::UndefValue::get(I32Ty)); |
| 666 | |
| 667 | LHS = cast<llvm::ShuffleVectorInst>(V)->getOperand(0); |
| 668 | RHS = EI->getVectorOperand(); |
| 669 | VIsUndefShuffle = false; |
| 670 | } |
| 671 | if (!Args.empty()) { |
| 672 | llvm::Constant *Mask = llvm::ConstantVector::get(&Args[0], ResElts); |
| 673 | V = Builder.CreateShuffleVector(LHS, RHS, Mask); |
| 674 | ++CurIdx; |
| 675 | continue; |
| 676 | } |
| 677 | } |
| 678 | } |
| 679 | Value *Idx = llvm::ConstantInt::get(I32Ty, CurIdx); |
| 680 | V = Builder.CreateInsertElement(V, Init, Idx, "vecinit"); |
| 681 | VIsUndefShuffle = false; |
| 682 | ++CurIdx; |
| 683 | continue; |
| 684 | } |
| 685 | |
| 686 | unsigned InitElts = VVT->getNumElements(); |
| 687 | |
| 688 | // If the initializer is an ExtVecEltExpr (a swizzle), and the swizzle's |
| 689 | // input is the same width as the vector being constructed, generate an |
| 690 | // optimized shuffle of the swizzle input into the result. |
Nate Begeman | b8326be | 2009-10-25 02:26:01 +0000 | [diff] [blame] | 691 | unsigned Offset = (CurIdx == 0) ? 0 : ResElts; |
Nate Begeman | 1935163 | 2009-10-18 20:10:40 +0000 | [diff] [blame] | 692 | if (isa<ExtVectorElementExpr>(IE)) { |
| 693 | llvm::ShuffleVectorInst *SVI = cast<llvm::ShuffleVectorInst>(Init); |
| 694 | Value *SVOp = SVI->getOperand(0); |
| 695 | const llvm::VectorType *OpTy = cast<llvm::VectorType>(SVOp->getType()); |
| 696 | |
| 697 | if (OpTy->getNumElements() == ResElts) { |
Nate Begeman | 1935163 | 2009-10-18 20:10:40 +0000 | [diff] [blame] | 698 | for (unsigned j = 0; j != CurIdx; ++j) { |
| 699 | // If the current vector initializer is a shuffle with undef, merge |
| 700 | // this shuffle directly into it. |
| 701 | if (VIsUndefShuffle) { |
| 702 | Args.push_back(getMaskElt(cast<llvm::ShuffleVectorInst>(V), j, 0, |
| 703 | I32Ty)); |
| 704 | } else { |
| 705 | Args.push_back(llvm::ConstantInt::get(I32Ty, j)); |
| 706 | } |
| 707 | } |
| 708 | for (unsigned j = 0, je = InitElts; j != je; ++j) |
| 709 | Args.push_back(getMaskElt(SVI, j, Offset, I32Ty)); |
| 710 | for (unsigned j = CurIdx + InitElts; j != ResElts; ++j) |
| 711 | Args.push_back(llvm::UndefValue::get(I32Ty)); |
| 712 | |
| 713 | if (VIsUndefShuffle) |
| 714 | V = cast<llvm::ShuffleVectorInst>(V)->getOperand(0); |
| 715 | |
| 716 | Init = SVOp; |
| 717 | } |
| 718 | } |
| 719 | |
| 720 | // Extend init to result vector length, and then shuffle its contribution |
| 721 | // to the vector initializer into V. |
| 722 | if (Args.empty()) { |
| 723 | for (unsigned j = 0; j != InitElts; ++j) |
| 724 | Args.push_back(llvm::ConstantInt::get(I32Ty, j)); |
| 725 | for (unsigned j = InitElts; j != ResElts; ++j) |
| 726 | Args.push_back(llvm::UndefValue::get(I32Ty)); |
| 727 | llvm::Constant *Mask = llvm::ConstantVector::get(&Args[0], ResElts); |
| 728 | Init = Builder.CreateShuffleVector(Init, llvm::UndefValue::get(VVT), |
Nate Begeman | b8326be | 2009-10-25 02:26:01 +0000 | [diff] [blame] | 729 | Mask, "vext"); |
Nate Begeman | 1935163 | 2009-10-18 20:10:40 +0000 | [diff] [blame] | 730 | |
| 731 | Args.clear(); |
| 732 | for (unsigned j = 0; j != CurIdx; ++j) |
| 733 | Args.push_back(llvm::ConstantInt::get(I32Ty, j)); |
| 734 | for (unsigned j = 0; j != InitElts; ++j) |
Nate Begeman | b8326be | 2009-10-25 02:26:01 +0000 | [diff] [blame] | 735 | Args.push_back(llvm::ConstantInt::get(I32Ty, j+Offset)); |
Nate Begeman | 1935163 | 2009-10-18 20:10:40 +0000 | [diff] [blame] | 736 | for (unsigned j = CurIdx + InitElts; j != ResElts; ++j) |
| 737 | Args.push_back(llvm::UndefValue::get(I32Ty)); |
| 738 | } |
| 739 | |
| 740 | // If V is undef, make sure it ends up on the RHS of the shuffle to aid |
| 741 | // merging subsequent shuffles into this one. |
| 742 | if (CurIdx == 0) |
| 743 | std::swap(V, Init); |
| 744 | llvm::Constant *Mask = llvm::ConstantVector::get(&Args[0], ResElts); |
| 745 | V = Builder.CreateShuffleVector(V, Init, Mask, "vecinit"); |
| 746 | VIsUndefShuffle = isa<llvm::UndefValue>(Init); |
| 747 | CurIdx += InitElts; |
| 748 | } |
| 749 | |
| 750 | // FIXME: evaluate codegen vs. shuffling against constant null vector. |
| 751 | // Emit remaining default initializers. |
| 752 | const llvm::Type *EltTy = VType->getElementType(); |
| 753 | |
| 754 | // Emit remaining default initializers |
| 755 | for (/* Do not initialize i*/; CurIdx < ResElts; ++CurIdx) { |
| 756 | Value *Idx = llvm::ConstantInt::get(I32Ty, CurIdx); |
| 757 | llvm::Value *Init = llvm::Constant::getNullValue(EltTy); |
| 758 | V = Builder.CreateInsertElement(V, Init, Idx, "vecinit"); |
| 759 | } |
| 760 | return V; |
| 761 | } |
| 762 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 763 | // VisitCastExpr - Emit code for an explicit or implicit cast. Implicit casts |
| 764 | // have to handle a more broad range of conversions than explicit casts, as they |
| 765 | // handle things like function to ptr-to-function decay etc. |
Anders Carlsson | 8c978b4 | 2009-09-22 22:00:46 +0000 | [diff] [blame] | 766 | Value *ScalarExprEmitter::EmitCastExpr(const CastExpr *CE) { |
| 767 | const Expr *E = CE->getSubExpr(); |
| 768 | QualType DestTy = CE->getType(); |
| 769 | CastExpr::CastKind Kind = CE->getCastKind(); |
| 770 | |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 771 | if (!DestTy->isVoidType()) |
| 772 | TestAndClearIgnoreResultAssign(); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 773 | |
Anders Carlsson | 3df53bc | 2009-08-24 18:26:39 +0000 | [diff] [blame] | 774 | switch (Kind) { |
| 775 | default: |
Anders Carlsson | 7cd39e0 | 2009-09-15 04:48:33 +0000 | [diff] [blame] | 776 | // FIXME: Assert here. |
| 777 | // assert(0 && "Unhandled cast kind!"); |
| 778 | break; |
| 779 | case CastExpr::CK_Unknown: |
| 780 | // FIXME: We should really assert here - Unknown casts should never get |
| 781 | // as far as to codegen. |
Anders Carlsson | 3df53bc | 2009-08-24 18:26:39 +0000 | [diff] [blame] | 782 | break; |
Anders Carlsson | f1ae6d4 | 2009-09-01 20:52:42 +0000 | [diff] [blame] | 783 | case CastExpr::CK_BitCast: { |
| 784 | Value *Src = Visit(const_cast<Expr*>(E)); |
| 785 | return Builder.CreateBitCast(Src, ConvertType(DestTy)); |
| 786 | } |
Anders Carlsson | c327709 | 2009-08-24 18:37:17 +0000 | [diff] [blame] | 787 | case CastExpr::CK_ArrayToPointerDecay: { |
| 788 | assert(E->getType()->isArrayType() && |
| 789 | "Array to pointer decay must have array source type!"); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 790 | |
Anders Carlsson | c327709 | 2009-08-24 18:37:17 +0000 | [diff] [blame] | 791 | Value *V = EmitLValue(E).getAddress(); // Bitfields can't be arrays. |
| 792 | |
| 793 | // Note that VLA pointers are always decayed, so we don't need to do |
| 794 | // anything here. |
| 795 | if (!E->getType()->isVariableArrayType()) { |
| 796 | assert(isa<llvm::PointerType>(V->getType()) && "Expected pointer"); |
| 797 | assert(isa<llvm::ArrayType>(cast<llvm::PointerType>(V->getType()) |
| 798 | ->getElementType()) && |
| 799 | "Expected pointer to array"); |
| 800 | V = Builder.CreateStructGEP(V, 0, "arraydecay"); |
| 801 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 802 | |
Anders Carlsson | c327709 | 2009-08-24 18:37:17 +0000 | [diff] [blame] | 803 | // The resultant pointer type can be implicitly casted to other pointer |
| 804 | // types as well (e.g. void*) and can be implicitly converted to integer. |
| 805 | const llvm::Type *DestLTy = ConvertType(DestTy); |
| 806 | if (V->getType() != DestLTy) { |
| 807 | if (isa<llvm::PointerType>(DestLTy)) |
| 808 | V = Builder.CreateBitCast(V, DestLTy, "ptrconv"); |
| 809 | else { |
| 810 | assert(isa<llvm::IntegerType>(DestLTy) && "Unknown array decay"); |
| 811 | V = Builder.CreatePtrToInt(V, DestLTy, "ptrconv"); |
| 812 | } |
| 813 | } |
| 814 | return V; |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 815 | } |
Anders Carlsson | 3df53bc | 2009-08-24 18:26:39 +0000 | [diff] [blame] | 816 | case CastExpr::CK_NullToMemberPointer: |
| 817 | return CGF.CGM.EmitNullConstant(DestTy); |
Anders Carlsson | 12f5a25 | 2009-09-12 04:57:16 +0000 | [diff] [blame] | 818 | |
| 819 | case CastExpr::CK_DerivedToBase: { |
| 820 | const RecordType *DerivedClassTy = |
| 821 | E->getType()->getAs<PointerType>()->getPointeeType()->getAs<RecordType>(); |
| 822 | CXXRecordDecl *DerivedClassDecl = |
| 823 | cast<CXXRecordDecl>(DerivedClassTy->getDecl()); |
| 824 | |
| 825 | const RecordType *BaseClassTy = |
| 826 | DestTy->getAs<PointerType>()->getPointeeType()->getAs<RecordType>(); |
| 827 | CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseClassTy->getDecl()); |
| 828 | |
| 829 | Value *Src = Visit(const_cast<Expr*>(E)); |
Anders Carlsson | 360e7d0 | 2009-09-12 06:04:24 +0000 | [diff] [blame] | 830 | |
Anders Carlsson | 8c978b4 | 2009-09-22 22:00:46 +0000 | [diff] [blame] | 831 | bool NullCheckValue = true; |
Anders Carlsson | 360e7d0 | 2009-09-12 06:04:24 +0000 | [diff] [blame] | 832 | |
Anders Carlsson | 8c978b4 | 2009-09-22 22:00:46 +0000 | [diff] [blame] | 833 | if (isa<CXXThisExpr>(E)) { |
| 834 | // We always assume that 'this' is never null. |
Anders Carlsson | 360e7d0 | 2009-09-12 06:04:24 +0000 | [diff] [blame] | 835 | NullCheckValue = false; |
Anders Carlsson | 8c978b4 | 2009-09-22 22:00:46 +0000 | [diff] [blame] | 836 | } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(CE)) { |
| 837 | // And that lvalue casts are never null. |
| 838 | if (ICE->isLvalueCast()) |
| 839 | NullCheckValue = false; |
| 840 | } |
Anders Carlsson | 12f5a25 | 2009-09-12 04:57:16 +0000 | [diff] [blame] | 841 | return CGF.GetAddressCXXOfBaseClass(Src, DerivedClassDecl, BaseClassDecl, |
Anders Carlsson | 360e7d0 | 2009-09-12 06:04:24 +0000 | [diff] [blame] | 842 | NullCheckValue); |
Anders Carlsson | 12f5a25 | 2009-09-12 04:57:16 +0000 | [diff] [blame] | 843 | } |
| 844 | |
Anders Carlsson | 7cd39e0 | 2009-09-15 04:48:33 +0000 | [diff] [blame] | 845 | case CastExpr::CK_IntegralToPointer: { |
| 846 | Value *Src = Visit(const_cast<Expr*>(E)); |
Anders Carlsson | 094c459 | 2009-10-18 18:12:03 +0000 | [diff] [blame] | 847 | |
| 848 | // First, convert to the correct width so that we control the kind of |
| 849 | // extension. |
| 850 | const llvm::Type *MiddleTy = |
| 851 | llvm::IntegerType::get(VMContext, CGF.LLVMPointerWidth); |
| 852 | bool InputSigned = E->getType()->isSignedIntegerType(); |
| 853 | llvm::Value* IntResult = |
| 854 | Builder.CreateIntCast(Src, MiddleTy, InputSigned, "conv"); |
| 855 | |
| 856 | return Builder.CreateIntToPtr(IntResult, ConvertType(DestTy)); |
Anders Carlsson | 7cd39e0 | 2009-09-15 04:48:33 +0000 | [diff] [blame] | 857 | } |
| 858 | |
| 859 | case CastExpr::CK_PointerToIntegral: { |
| 860 | Value *Src = Visit(const_cast<Expr*>(E)); |
| 861 | return Builder.CreatePtrToInt(Src, ConvertType(DestTy)); |
| 862 | } |
| 863 | |
Anders Carlsson | 3df53bc | 2009-08-24 18:26:39 +0000 | [diff] [blame] | 864 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 865 | |
Chris Lattner | 5de3b17 | 2007-08-26 07:26:12 +0000 | [diff] [blame] | 866 | // Handle cases where the source is an non-complex type. |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 867 | |
Chris Lattner | df53e20 | 2008-02-16 23:55:16 +0000 | [diff] [blame] | 868 | if (!CGF.hasAggregateLLVMType(E->getType())) { |
Chris Lattner | 3474c20 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 869 | Value *Src = Visit(const_cast<Expr*>(E)); |
| 870 | |
Chris Lattner | 3474c20 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 871 | // Use EmitScalarConversion to perform the conversion. |
| 872 | return EmitScalarConversion(Src, E->getType(), DestTy); |
| 873 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 874 | |
Chris Lattner | f3bc75a | 2008-04-04 16:54:41 +0000 | [diff] [blame] | 875 | if (E->getType()->isAnyComplexType()) { |
Chris Lattner | df53e20 | 2008-02-16 23:55:16 +0000 | [diff] [blame] | 876 | // Handle cases where the source is a complex type. |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 877 | bool IgnoreImag = true; |
| 878 | bool IgnoreImagAssign = true; |
| 879 | bool IgnoreReal = IgnoreResultAssign; |
| 880 | bool IgnoreRealAssign = IgnoreResultAssign; |
| 881 | if (DestTy->isBooleanType()) |
| 882 | IgnoreImagAssign = IgnoreImag = false; |
| 883 | else if (DestTy->isVoidType()) { |
| 884 | IgnoreReal = IgnoreImag = false; |
| 885 | IgnoreRealAssign = IgnoreImagAssign = true; |
| 886 | } |
| 887 | CodeGenFunction::ComplexPairTy V |
| 888 | = CGF.EmitComplexExpr(E, IgnoreReal, IgnoreImag, IgnoreRealAssign, |
| 889 | IgnoreImagAssign); |
| 890 | return EmitComplexToScalarConversion(V, E->getType(), DestTy); |
Chris Lattner | df53e20 | 2008-02-16 23:55:16 +0000 | [diff] [blame] | 891 | } |
Chris Lattner | 46c7161 | 2007-08-26 07:16:41 +0000 | [diff] [blame] | 892 | |
Chris Lattner | df53e20 | 2008-02-16 23:55:16 +0000 | [diff] [blame] | 893 | // Okay, this is a cast from an aggregate. It must be a cast to void. Just |
| 894 | // evaluate the result and return. |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 895 | CGF.EmitAggExpr(E, 0, false, true); |
Chris Lattner | df53e20 | 2008-02-16 23:55:16 +0000 | [diff] [blame] | 896 | return 0; |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 897 | } |
| 898 | |
Chris Lattner | 04a913b | 2007-08-31 22:09:40 +0000 | [diff] [blame] | 899 | Value *ScalarExprEmitter::VisitStmtExpr(const StmtExpr *E) { |
Chris Lattner | 7e80097 | 2008-07-26 20:23:23 +0000 | [diff] [blame] | 900 | return CGF.EmitCompoundStmt(*E->getSubStmt(), |
| 901 | !E->getType()->isVoidType()).getScalarVal(); |
Chris Lattner | 04a913b | 2007-08-31 22:09:40 +0000 | [diff] [blame] | 902 | } |
| 903 | |
Mike Stump | 1db7d04 | 2009-02-28 09:07:16 +0000 | [diff] [blame] | 904 | Value *ScalarExprEmitter::VisitBlockDeclRefExpr(const BlockDeclRefExpr *E) { |
Fariborz Jahanian | 07ca727 | 2009-10-10 20:07:56 +0000 | [diff] [blame] | 905 | llvm::Value *V = CGF.GetAddrOfBlockDecl(E); |
| 906 | if (E->getType().isObjCGCWeak()) |
| 907 | return CGF.CGM.getObjCRuntime().EmitObjCWeakRead(CGF, V); |
| 908 | return Builder.CreateLoad(V, false, "tmp"); |
Mike Stump | cb2fbcb | 2009-02-21 20:00:35 +0000 | [diff] [blame] | 909 | } |
Chris Lattner | 04a913b | 2007-08-31 22:09:40 +0000 | [diff] [blame] | 910 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 911 | //===----------------------------------------------------------------------===// |
| 912 | // Unary Operators |
| 913 | //===----------------------------------------------------------------------===// |
| 914 | |
| 915 | Value *ScalarExprEmitter::VisitPrePostIncDec(const UnaryOperator *E, |
Chris Lattner | 100198f | 2007-08-24 16:24:49 +0000 | [diff] [blame] | 916 | bool isInc, bool isPre) { |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 917 | LValue LV = EmitLValue(E->getSubExpr()); |
Eli Friedman | 7b47167 | 2009-03-23 03:00:06 +0000 | [diff] [blame] | 918 | QualType ValTy = E->getSubExpr()->getType(); |
| 919 | Value *InVal = CGF.EmitLoadOfLValue(LV, ValTy).getScalarVal(); |
Owen Anderson | 41a7502 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 920 | |
| 921 | llvm::LLVMContext &VMContext = CGF.getLLVMContext(); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 922 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 923 | int AmountVal = isInc ? 1 : -1; |
Eli Friedman | e381f7e | 2009-03-28 02:45:41 +0000 | [diff] [blame] | 924 | |
| 925 | if (ValTy->isPointerType() && |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 926 | ValTy->getAs<PointerType>()->isVariableArrayType()) { |
Eli Friedman | e381f7e | 2009-03-28 02:45:41 +0000 | [diff] [blame] | 927 | // The amount of the addition/subtraction needs to account for the VLA size |
| 928 | CGF.ErrorUnsupported(E, "VLA pointer inc/dec"); |
| 929 | } |
| 930 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 931 | Value *NextVal; |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 932 | if (const llvm::PointerType *PT = |
Chris Lattner | c2a0b97 | 2009-03-18 04:25:13 +0000 | [diff] [blame] | 933 | dyn_cast<llvm::PointerType>(InVal->getType())) { |
Owen Anderson | 170229f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 934 | llvm::Constant *Inc = |
Owen Anderson | 41a7502 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 935 | llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), AmountVal); |
Chris Lattner | c2a0b97 | 2009-03-18 04:25:13 +0000 | [diff] [blame] | 936 | if (!isa<llvm::FunctionType>(PT->getElementType())) { |
Fariborz Jahanian | c3443a3 | 2009-07-16 22:04:59 +0000 | [diff] [blame] | 937 | QualType PTEE = ValTy->getPointeeType(); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 938 | if (const ObjCInterfaceType *OIT = |
Fariborz Jahanian | c3443a3 | 2009-07-16 22:04:59 +0000 | [diff] [blame] | 939 | dyn_cast<ObjCInterfaceType>(PTEE)) { |
| 940 | // Handle interface types, which are not represented with a concrete type. |
| 941 | int size = CGF.getContext().getTypeSize(OIT) / 8; |
| 942 | if (!isInc) |
| 943 | size = -size; |
Owen Anderson | b7a2fe6 | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 944 | Inc = llvm::ConstantInt::get(Inc->getType(), size); |
Benjamin Kramer | abd5b90 | 2009-10-13 10:07:13 +0000 | [diff] [blame] | 945 | const llvm::Type *i8Ty = llvm::Type::getInt8PtrTy(VMContext); |
Fariborz Jahanian | c3443a3 | 2009-07-16 22:04:59 +0000 | [diff] [blame] | 946 | InVal = Builder.CreateBitCast(InVal, i8Ty); |
| 947 | NextVal = Builder.CreateGEP(InVal, Inc, "add.ptr"); |
| 948 | llvm::Value *lhs = LV.getAddress(); |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 949 | lhs = Builder.CreateBitCast(lhs, llvm::PointerType::getUnqual(i8Ty)); |
John McCall | 8ccfcb5 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 950 | LV = LValue::MakeAddr(lhs, CGF.MakeQualifiers(ValTy)); |
Mike Stump | 658fe02 | 2009-07-30 22:28:39 +0000 | [diff] [blame] | 951 | } else |
Dan Gohman | 43b4484 | 2009-08-12 00:33:55 +0000 | [diff] [blame] | 952 | NextVal = Builder.CreateInBoundsGEP(InVal, Inc, "ptrincdec"); |
Chris Lattner | c2a0b97 | 2009-03-18 04:25:13 +0000 | [diff] [blame] | 953 | } else { |
Benjamin Kramer | abd5b90 | 2009-10-13 10:07:13 +0000 | [diff] [blame] | 954 | const llvm::Type *i8Ty = llvm::Type::getInt8PtrTy(VMContext); |
Chris Lattner | c2a0b97 | 2009-03-18 04:25:13 +0000 | [diff] [blame] | 955 | NextVal = Builder.CreateBitCast(InVal, i8Ty, "tmp"); |
| 956 | NextVal = Builder.CreateGEP(NextVal, Inc, "ptrincdec"); |
| 957 | NextVal = Builder.CreateBitCast(NextVal, InVal->getType()); |
| 958 | } |
Owen Anderson | 41a7502 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 959 | } else if (InVal->getType() == llvm::Type::getInt1Ty(VMContext) && isInc) { |
Chris Lattner | 746b213 | 2009-02-11 07:40:06 +0000 | [diff] [blame] | 960 | // Bool++ is an interesting case, due to promotion rules, we get: |
| 961 | // Bool++ -> Bool = Bool+1 -> Bool = (int)Bool+1 -> |
| 962 | // Bool = ((int)Bool+1) != 0 |
| 963 | // An interesting aspect of this is that increment is always true. |
| 964 | // Decrement does not have this property. |
Owen Anderson | fe4e347 | 2009-07-31 17:39:36 +0000 | [diff] [blame] | 965 | NextVal = llvm::ConstantInt::getTrue(VMContext); |
Chris Lattner | 94dfae2 | 2009-06-17 06:36:24 +0000 | [diff] [blame] | 966 | } else if (isa<llvm::IntegerType>(InVal->getType())) { |
Owen Anderson | b7a2fe6 | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 967 | NextVal = llvm::ConstantInt::get(InVal->getType(), AmountVal); |
Dan Gohman | b321039 | 2009-08-12 01:16:29 +0000 | [diff] [blame] | 968 | |
| 969 | // Signed integer overflow is undefined behavior. |
| 970 | if (ValTy->isSignedIntegerType()) |
| 971 | NextVal = Builder.CreateNSWAdd(InVal, NextVal, isInc ? "inc" : "dec"); |
| 972 | else |
| 973 | NextVal = Builder.CreateAdd(InVal, NextVal, isInc ? "inc" : "dec"); |
Chris Lattner | a01d898 | 2007-08-26 05:10:16 +0000 | [diff] [blame] | 974 | } else { |
| 975 | // Add the inc/dec to the real part. |
Benjamin Kramer | dde0fee | 2009-10-05 13:47:21 +0000 | [diff] [blame] | 976 | if (InVal->getType()->isFloatTy()) |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 977 | NextVal = |
| 978 | llvm::ConstantFP::get(VMContext, |
Owen Anderson | e05f2ed | 2009-07-27 21:00:51 +0000 | [diff] [blame] | 979 | llvm::APFloat(static_cast<float>(AmountVal))); |
Benjamin Kramer | dde0fee | 2009-10-05 13:47:21 +0000 | [diff] [blame] | 980 | else if (InVal->getType()->isDoubleTy()) |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 981 | NextVal = |
Owen Anderson | e05f2ed | 2009-07-27 21:00:51 +0000 | [diff] [blame] | 982 | llvm::ConstantFP::get(VMContext, |
| 983 | llvm::APFloat(static_cast<double>(AmountVal))); |
Chris Lattner | ff2367c | 2008-04-20 00:50:39 +0000 | [diff] [blame] | 984 | else { |
| 985 | llvm::APFloat F(static_cast<float>(AmountVal)); |
Dale Johannesen | c48814b | 2008-10-09 23:02:32 +0000 | [diff] [blame] | 986 | bool ignored; |
| 987 | F.convert(CGF.Target.getLongDoubleFormat(), llvm::APFloat::rmTowardZero, |
| 988 | &ignored); |
Owen Anderson | e05f2ed | 2009-07-27 21:00:51 +0000 | [diff] [blame] | 989 | NextVal = llvm::ConstantFP::get(VMContext, F); |
Chris Lattner | d3d8aca | 2007-09-13 06:19:18 +0000 | [diff] [blame] | 990 | } |
Chris Lattner | 94dfae2 | 2009-06-17 06:36:24 +0000 | [diff] [blame] | 991 | NextVal = Builder.CreateFAdd(InVal, NextVal, isInc ? "inc" : "dec"); |
Chris Lattner | a01d898 | 2007-08-26 05:10:16 +0000 | [diff] [blame] | 992 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 993 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 994 | // Store the updated result through the lvalue. |
Eli Friedman | 7b47167 | 2009-03-23 03:00:06 +0000 | [diff] [blame] | 995 | if (LV.isBitfield()) |
| 996 | CGF.EmitStoreThroughBitfieldLValue(RValue::get(NextVal), LV, ValTy, |
| 997 | &NextVal); |
| 998 | else |
| 999 | CGF.EmitStoreThroughLValue(RValue::get(NextVal), LV, ValTy); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1000 | |
| 1001 | // If this is a postinc, return the value read from memory, otherwise use the |
| 1002 | // updated value. |
| 1003 | return isPre ? NextVal : InVal; |
| 1004 | } |
| 1005 | |
| 1006 | |
| 1007 | Value *ScalarExprEmitter::VisitUnaryMinus(const UnaryOperator *E) { |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 1008 | TestAndClearIgnoreResultAssign(); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1009 | Value *Op = Visit(E->getSubExpr()); |
Chris Lattner | 94dfae2 | 2009-06-17 06:36:24 +0000 | [diff] [blame] | 1010 | if (Op->getType()->isFPOrFPVector()) |
| 1011 | return Builder.CreateFNeg(Op, "neg"); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1012 | return Builder.CreateNeg(Op, "neg"); |
| 1013 | } |
| 1014 | |
| 1015 | Value *ScalarExprEmitter::VisitUnaryNot(const UnaryOperator *E) { |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 1016 | TestAndClearIgnoreResultAssign(); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1017 | Value *Op = Visit(E->getSubExpr()); |
| 1018 | return Builder.CreateNot(Op, "neg"); |
| 1019 | } |
| 1020 | |
| 1021 | Value *ScalarExprEmitter::VisitUnaryLNot(const UnaryOperator *E) { |
| 1022 | // Compare operand to zero. |
| 1023 | Value *BoolVal = CGF.EvaluateExprAsBool(E->getSubExpr()); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1024 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1025 | // Invert value. |
| 1026 | // TODO: Could dynamically modify easy computations here. For example, if |
| 1027 | // the operand is an icmp ne, turn into icmp eq. |
| 1028 | BoolVal = Builder.CreateNot(BoolVal, "lnot"); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1029 | |
Anders Carlsson | 775640d | 2009-05-19 18:44:53 +0000 | [diff] [blame] | 1030 | // ZExt result to the expr type. |
| 1031 | return Builder.CreateZExt(BoolVal, ConvertType(E->getType()), "lnot.ext"); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1032 | } |
| 1033 | |
Sebastian Redl | 6f28289 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1034 | /// VisitSizeOfAlignOfExpr - Return the size or alignment of the type of |
| 1035 | /// argument of the sizeof expression as an integer. |
| 1036 | Value * |
| 1037 | ScalarExprEmitter::VisitSizeOfAlignOfExpr(const SizeOfAlignOfExpr *E) { |
Sebastian Redl | 6f28289 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1038 | QualType TypeToSize = E->getTypeOfArgument(); |
Eli Friedman | 2aa38fe | 2009-01-24 22:19:05 +0000 | [diff] [blame] | 1039 | if (E->isSizeOf()) { |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1040 | if (const VariableArrayType *VAT = |
Eli Friedman | 2aa38fe | 2009-01-24 22:19:05 +0000 | [diff] [blame] | 1041 | CGF.getContext().getAsVariableArrayType(TypeToSize)) { |
| 1042 | if (E->isArgumentType()) { |
| 1043 | // sizeof(type) - make sure to emit the VLA size. |
| 1044 | CGF.EmitVLASize(TypeToSize); |
Eli Friedman | 3253e18 | 2009-04-20 03:21:44 +0000 | [diff] [blame] | 1045 | } else { |
| 1046 | // C99 6.5.3.4p2: If the argument is an expression of type |
| 1047 | // VLA, it is evaluated. |
| 1048 | CGF.EmitAnyExpr(E->getArgumentExpr()); |
Eli Friedman | 2aa38fe | 2009-01-24 22:19:05 +0000 | [diff] [blame] | 1049 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1050 | |
Anders Carlsson | 31f8649 | 2009-02-05 19:43:10 +0000 | [diff] [blame] | 1051 | return CGF.GetVLASize(VAT); |
Anders Carlsson | 76dbc04 | 2008-12-21 03:33:21 +0000 | [diff] [blame] | 1052 | } |
Anders Carlsson | 3003288 | 2008-12-12 07:38:43 +0000 | [diff] [blame] | 1053 | } |
Eli Friedman | 2aa38fe | 2009-01-24 22:19:05 +0000 | [diff] [blame] | 1054 | |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1055 | // If this isn't sizeof(vla), the result must be constant; use the constant |
| 1056 | // folding logic so we don't have to duplicate it here. |
Eli Friedman | 2aa38fe | 2009-01-24 22:19:05 +0000 | [diff] [blame] | 1057 | Expr::EvalResult Result; |
| 1058 | E->Evaluate(Result, CGF.getContext()); |
Owen Anderson | b7a2fe6 | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 1059 | return llvm::ConstantInt::get(VMContext, Result.Val.getInt()); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1060 | } |
| 1061 | |
Chris Lattner | 9f0ad96 | 2007-08-24 21:20:17 +0000 | [diff] [blame] | 1062 | Value *ScalarExprEmitter::VisitUnaryReal(const UnaryOperator *E) { |
| 1063 | Expr *Op = E->getSubExpr(); |
Chris Lattner | f3bc75a | 2008-04-04 16:54:41 +0000 | [diff] [blame] | 1064 | if (Op->getType()->isAnyComplexType()) |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 1065 | return CGF.EmitComplexExpr(Op, false, true, false, true).first; |
Chris Lattner | 9f0ad96 | 2007-08-24 21:20:17 +0000 | [diff] [blame] | 1066 | return Visit(Op); |
| 1067 | } |
| 1068 | Value *ScalarExprEmitter::VisitUnaryImag(const UnaryOperator *E) { |
| 1069 | Expr *Op = E->getSubExpr(); |
Chris Lattner | f3bc75a | 2008-04-04 16:54:41 +0000 | [diff] [blame] | 1070 | if (Op->getType()->isAnyComplexType()) |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 1071 | return CGF.EmitComplexExpr(Op, true, false, true, false).second; |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1072 | |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 1073 | // __imag on a scalar returns zero. Emit the subexpr to ensure side |
| 1074 | // effects are evaluated, but not the actual value. |
| 1075 | if (E->isLvalue(CGF.getContext()) == Expr::LV_Valid) |
| 1076 | CGF.EmitLValue(Op); |
| 1077 | else |
| 1078 | CGF.EmitScalarExpr(Op, true); |
Owen Anderson | 0b75f23 | 2009-07-31 20:28:54 +0000 | [diff] [blame] | 1079 | return llvm::Constant::getNullValue(ConvertType(E->getType())); |
Chris Lattner | 9f0ad96 | 2007-08-24 21:20:17 +0000 | [diff] [blame] | 1080 | } |
| 1081 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1082 | Value *ScalarExprEmitter::VisitUnaryOffsetOf(const UnaryOperator *E) { |
Eli Friedman | 988a16b | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 1083 | Value* ResultAsPtr = EmitLValue(E->getSubExpr()).getAddress(); |
Eli Friedman | 8549e5d | 2009-01-24 22:38:55 +0000 | [diff] [blame] | 1084 | const llvm::Type* ResultType = ConvertType(E->getType()); |
Eli Friedman | 988a16b | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 1085 | return Builder.CreatePtrToInt(ResultAsPtr, ResultType, "offsetof"); |
Anders Carlsson | a8dc3e6 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1086 | } |
Chris Lattner | 9f0ad96 | 2007-08-24 21:20:17 +0000 | [diff] [blame] | 1087 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1088 | //===----------------------------------------------------------------------===// |
| 1089 | // Binary Operators |
| 1090 | //===----------------------------------------------------------------------===// |
| 1091 | |
| 1092 | BinOpInfo ScalarExprEmitter::EmitBinOps(const BinaryOperator *E) { |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 1093 | TestAndClearIgnoreResultAssign(); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1094 | BinOpInfo Result; |
| 1095 | Result.LHS = Visit(E->getLHS()); |
| 1096 | Result.RHS = Visit(E->getRHS()); |
Chris Lattner | 3d966d6 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 1097 | Result.Ty = E->getType(); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1098 | Result.E = E; |
| 1099 | return Result; |
| 1100 | } |
| 1101 | |
Chris Lattner | b633469 | 2007-08-26 21:41:21 +0000 | [diff] [blame] | 1102 | Value *ScalarExprEmitter::EmitCompoundAssign(const CompoundAssignOperator *E, |
Chris Lattner | 3d966d6 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 1103 | Value *(ScalarExprEmitter::*Func)(const BinOpInfo &)) { |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 1104 | bool Ignore = TestAndClearIgnoreResultAssign(); |
Chris Lattner | 3d966d6 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 1105 | QualType LHSTy = E->getLHS()->getType(), RHSTy = E->getRHS()->getType(); |
| 1106 | |
| 1107 | BinOpInfo OpInfo; |
| 1108 | |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 1109 | if (E->getComputationResultType()->isAnyComplexType()) { |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1110 | // This needs to go through the complex expression emitter, but it's a tad |
| 1111 | // complicated to do that... I'm leaving it out for now. (Note that we do |
| 1112 | // actually need the imaginary part of the RHS for multiplication and |
| 1113 | // division.) |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 1114 | CGF.ErrorUnsupported(E, "complex compound assignment"); |
Owen Anderson | 7ec07a5 | 2009-07-30 23:11:26 +0000 | [diff] [blame] | 1115 | return llvm::UndefValue::get(CGF.ConvertType(E->getType())); |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 1116 | } |
| 1117 | |
Mike Stump | c63428b | 2009-05-22 19:07:20 +0000 | [diff] [blame] | 1118 | // Emit the RHS first. __block variables need to have the rhs evaluated |
| 1119 | // first, plus this should improve codegen a little. |
| 1120 | OpInfo.RHS = Visit(E->getRHS()); |
| 1121 | OpInfo.Ty = E->getComputationResultType(); |
| 1122 | OpInfo.E = E; |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 1123 | // Load/convert the LHS. |
Chris Lattner | 3d966d6 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 1124 | LValue LHSLV = EmitLValue(E->getLHS()); |
| 1125 | OpInfo.LHS = EmitLoadOfLValue(LHSLV, LHSTy); |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 1126 | OpInfo.LHS = EmitScalarConversion(OpInfo.LHS, LHSTy, |
| 1127 | E->getComputationLHSType()); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1128 | |
Chris Lattner | 3d966d6 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 1129 | // Expand the binary operator. |
| 1130 | Value *Result = (this->*Func)(OpInfo); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1131 | |
Daniel Dunbar | bfb1cd7 | 2008-08-06 02:00:38 +0000 | [diff] [blame] | 1132 | // Convert the result back to the LHS type. |
Eli Friedman | 8b7b1b1 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 1133 | Result = EmitScalarConversion(Result, E->getComputationResultType(), LHSTy); |
| 1134 | |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1135 | // Store the result value into the LHS lvalue. Bit-fields are handled |
| 1136 | // specially because the result is altered by the store, i.e., [C99 6.5.16p1] |
| 1137 | // 'An assignment expression has the value of the left operand after the |
| 1138 | // assignment...'. |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 1139 | if (LHSLV.isBitfield()) { |
| 1140 | if (!LHSLV.isVolatileQualified()) { |
| 1141 | CGF.EmitStoreThroughBitfieldLValue(RValue::get(Result), LHSLV, LHSTy, |
| 1142 | &Result); |
| 1143 | return Result; |
| 1144 | } else |
| 1145 | CGF.EmitStoreThroughBitfieldLValue(RValue::get(Result), LHSLV, LHSTy); |
| 1146 | } else |
Daniel Dunbar | 9b1335e | 2008-11-19 09:36:46 +0000 | [diff] [blame] | 1147 | CGF.EmitStoreThroughLValue(RValue::get(Result), LHSLV, LHSTy); |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 1148 | if (Ignore) |
| 1149 | return 0; |
| 1150 | return EmitLoadOfLValue(LHSLV, E->getType()); |
Chris Lattner | 3d966d6 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 1151 | } |
| 1152 | |
| 1153 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1154 | Value *ScalarExprEmitter::EmitDiv(const BinOpInfo &Ops) { |
Nate Begeman | 628028b | 2007-12-30 01:28:16 +0000 | [diff] [blame] | 1155 | if (Ops.LHS->getType()->isFPOrFPVector()) |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1156 | return Builder.CreateFDiv(Ops.LHS, Ops.RHS, "div"); |
Chris Lattner | 3d966d6 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 1157 | else if (Ops.Ty->isUnsignedIntegerType()) |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1158 | return Builder.CreateUDiv(Ops.LHS, Ops.RHS, "div"); |
| 1159 | else |
| 1160 | return Builder.CreateSDiv(Ops.LHS, Ops.RHS, "div"); |
| 1161 | } |
| 1162 | |
| 1163 | Value *ScalarExprEmitter::EmitRem(const BinOpInfo &Ops) { |
| 1164 | // Rem in C can't be a floating point type: C99 6.5.5p2. |
Chris Lattner | 3d966d6 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 1165 | if (Ops.Ty->isUnsignedIntegerType()) |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1166 | return Builder.CreateURem(Ops.LHS, Ops.RHS, "rem"); |
| 1167 | else |
| 1168 | return Builder.CreateSRem(Ops.LHS, Ops.RHS, "rem"); |
| 1169 | } |
| 1170 | |
Mike Stump | 0c61b73 | 2009-04-01 20:28:16 +0000 | [diff] [blame] | 1171 | Value *ScalarExprEmitter::EmitOverflowCheckedBinOp(const BinOpInfo &Ops) { |
| 1172 | unsigned IID; |
| 1173 | unsigned OpID = 0; |
Mike Stump | 4096859 | 2009-04-02 01:03:55 +0000 | [diff] [blame] | 1174 | |
Mike Stump | d3e3885 | 2009-04-02 18:15:54 +0000 | [diff] [blame] | 1175 | switch (Ops.E->getOpcode()) { |
| 1176 | case BinaryOperator::Add: |
| 1177 | case BinaryOperator::AddAssign: |
| 1178 | OpID = 1; |
| 1179 | IID = llvm::Intrinsic::sadd_with_overflow; |
| 1180 | break; |
| 1181 | case BinaryOperator::Sub: |
| 1182 | case BinaryOperator::SubAssign: |
| 1183 | OpID = 2; |
| 1184 | IID = llvm::Intrinsic::ssub_with_overflow; |
| 1185 | break; |
| 1186 | case BinaryOperator::Mul: |
| 1187 | case BinaryOperator::MulAssign: |
| 1188 | OpID = 3; |
| 1189 | IID = llvm::Intrinsic::smul_with_overflow; |
| 1190 | break; |
| 1191 | default: |
| 1192 | assert(false && "Unsupported operation for overflow detection"); |
Daniel Dunbar | d92123f | 2009-04-08 16:23:09 +0000 | [diff] [blame] | 1193 | IID = 0; |
Mike Stump | 0c61b73 | 2009-04-01 20:28:16 +0000 | [diff] [blame] | 1194 | } |
Mike Stump | d3e3885 | 2009-04-02 18:15:54 +0000 | [diff] [blame] | 1195 | OpID <<= 1; |
| 1196 | OpID |= 1; |
| 1197 | |
Mike Stump | 0c61b73 | 2009-04-01 20:28:16 +0000 | [diff] [blame] | 1198 | const llvm::Type *opTy = CGF.CGM.getTypes().ConvertType(Ops.Ty); |
| 1199 | |
| 1200 | llvm::Function *intrinsic = CGF.CGM.getIntrinsic(IID, &opTy, 1); |
| 1201 | |
| 1202 | Value *resultAndOverflow = Builder.CreateCall2(intrinsic, Ops.LHS, Ops.RHS); |
| 1203 | Value *result = Builder.CreateExtractValue(resultAndOverflow, 0); |
| 1204 | Value *overflow = Builder.CreateExtractValue(resultAndOverflow, 1); |
| 1205 | |
| 1206 | // Branch in case of overflow. |
| 1207 | llvm::BasicBlock *initialBB = Builder.GetInsertBlock(); |
| 1208 | llvm::BasicBlock *overflowBB = |
| 1209 | CGF.createBasicBlock("overflow", CGF.CurFn); |
| 1210 | llvm::BasicBlock *continueBB = |
| 1211 | CGF.createBasicBlock("overflow.continue", CGF.CurFn); |
| 1212 | |
| 1213 | Builder.CreateCondBr(overflow, overflowBB, continueBB); |
| 1214 | |
| 1215 | // Handle overflow |
| 1216 | |
| 1217 | Builder.SetInsertPoint(overflowBB); |
| 1218 | |
| 1219 | // Handler is: |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1220 | // long long *__overflow_handler)(long long a, long long b, char op, |
Mike Stump | 0c61b73 | 2009-04-01 20:28:16 +0000 | [diff] [blame] | 1221 | // char width) |
| 1222 | std::vector<const llvm::Type*> handerArgTypes; |
Owen Anderson | 41a7502 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 1223 | handerArgTypes.push_back(llvm::Type::getInt64Ty(VMContext)); |
| 1224 | handerArgTypes.push_back(llvm::Type::getInt64Ty(VMContext)); |
| 1225 | handerArgTypes.push_back(llvm::Type::getInt8Ty(VMContext)); |
| 1226 | handerArgTypes.push_back(llvm::Type::getInt8Ty(VMContext)); |
| 1227 | llvm::FunctionType *handlerTy = llvm::FunctionType::get( |
| 1228 | llvm::Type::getInt64Ty(VMContext), handerArgTypes, false); |
Mike Stump | 0c61b73 | 2009-04-01 20:28:16 +0000 | [diff] [blame] | 1229 | llvm::Value *handlerFunction = |
| 1230 | CGF.CGM.getModule().getOrInsertGlobal("__overflow_handler", |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 1231 | llvm::PointerType::getUnqual(handlerTy)); |
Mike Stump | 0c61b73 | 2009-04-01 20:28:16 +0000 | [diff] [blame] | 1232 | handlerFunction = Builder.CreateLoad(handlerFunction); |
| 1233 | |
| 1234 | llvm::Value *handlerResult = Builder.CreateCall4(handlerFunction, |
Owen Anderson | 41a7502 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 1235 | Builder.CreateSExt(Ops.LHS, llvm::Type::getInt64Ty(VMContext)), |
| 1236 | Builder.CreateSExt(Ops.RHS, llvm::Type::getInt64Ty(VMContext)), |
| 1237 | llvm::ConstantInt::get(llvm::Type::getInt8Ty(VMContext), OpID), |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1238 | llvm::ConstantInt::get(llvm::Type::getInt8Ty(VMContext), |
Mike Stump | 0c61b73 | 2009-04-01 20:28:16 +0000 | [diff] [blame] | 1239 | cast<llvm::IntegerType>(opTy)->getBitWidth())); |
| 1240 | |
| 1241 | handlerResult = Builder.CreateTrunc(handlerResult, opTy); |
| 1242 | |
| 1243 | Builder.CreateBr(continueBB); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1244 | |
Mike Stump | 0c61b73 | 2009-04-01 20:28:16 +0000 | [diff] [blame] | 1245 | // Set up the continuation |
| 1246 | Builder.SetInsertPoint(continueBB); |
| 1247 | // Get the correct result |
| 1248 | llvm::PHINode *phi = Builder.CreatePHI(opTy); |
| 1249 | phi->reserveOperandSpace(2); |
| 1250 | phi->addIncoming(result, initialBB); |
| 1251 | phi->addIncoming(handlerResult, overflowBB); |
| 1252 | |
| 1253 | return phi; |
| 1254 | } |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1255 | |
| 1256 | Value *ScalarExprEmitter::EmitAdd(const BinOpInfo &Ops) { |
Steve Naroff | 6b712a7 | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 1257 | if (!Ops.Ty->isAnyPointerType()) { |
Chris Lattner | 94dfae2 | 2009-06-17 06:36:24 +0000 | [diff] [blame] | 1258 | if (CGF.getContext().getLangOptions().OverflowChecking && |
| 1259 | Ops.Ty->isSignedIntegerType()) |
Mike Stump | 0c61b73 | 2009-04-01 20:28:16 +0000 | [diff] [blame] | 1260 | return EmitOverflowCheckedBinOp(Ops); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1261 | |
Chris Lattner | 94dfae2 | 2009-06-17 06:36:24 +0000 | [diff] [blame] | 1262 | if (Ops.LHS->getType()->isFPOrFPVector()) |
| 1263 | return Builder.CreateFAdd(Ops.LHS, Ops.RHS, "add"); |
Dan Gohman | b321039 | 2009-08-12 01:16:29 +0000 | [diff] [blame] | 1264 | |
| 1265 | // Signed integer overflow is undefined behavior. |
| 1266 | if (Ops.Ty->isSignedIntegerType()) |
| 1267 | return Builder.CreateNSWAdd(Ops.LHS, Ops.RHS, "add"); |
| 1268 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1269 | return Builder.CreateAdd(Ops.LHS, Ops.RHS, "add"); |
Mike Stump | 0c61b73 | 2009-04-01 20:28:16 +0000 | [diff] [blame] | 1270 | } |
Eli Friedman | e381f7e | 2009-03-28 02:45:41 +0000 | [diff] [blame] | 1271 | |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1272 | if (Ops.Ty->isPointerType() && |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1273 | Ops.Ty->getAs<PointerType>()->isVariableArrayType()) { |
Eli Friedman | e381f7e | 2009-03-28 02:45:41 +0000 | [diff] [blame] | 1274 | // The amount of the addition needs to account for the VLA size |
| 1275 | CGF.ErrorUnsupported(Ops.E, "VLA pointer addition"); |
| 1276 | } |
Chris Lattner | 20455f2 | 2008-01-03 06:36:51 +0000 | [diff] [blame] | 1277 | Value *Ptr, *Idx; |
| 1278 | Expr *IdxExp; |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1279 | const PointerType *PT = Ops.E->getLHS()->getType()->getAs<PointerType>(); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1280 | const ObjCObjectPointerType *OPT = |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1281 | Ops.E->getLHS()->getType()->getAs<ObjCObjectPointerType>(); |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1282 | if (PT || OPT) { |
Chris Lattner | 20455f2 | 2008-01-03 06:36:51 +0000 | [diff] [blame] | 1283 | Ptr = Ops.LHS; |
| 1284 | Idx = Ops.RHS; |
| 1285 | IdxExp = Ops.E->getRHS(); |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1286 | } else { // int + pointer |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1287 | PT = Ops.E->getRHS()->getType()->getAs<PointerType>(); |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1288 | OPT = Ops.E->getRHS()->getType()->getAs<ObjCObjectPointerType>(); |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1289 | assert((PT || OPT) && "Invalid add expr"); |
Chris Lattner | 20455f2 | 2008-01-03 06:36:51 +0000 | [diff] [blame] | 1290 | Ptr = Ops.RHS; |
| 1291 | Idx = Ops.LHS; |
| 1292 | IdxExp = Ops.E->getLHS(); |
| 1293 | } |
| 1294 | |
| 1295 | unsigned Width = cast<llvm::IntegerType>(Idx->getType())->getBitWidth(); |
Sanjiv Gupta | 4742515 | 2009-04-24 02:40:57 +0000 | [diff] [blame] | 1296 | if (Width < CGF.LLVMPointerWidth) { |
Chris Lattner | 20455f2 | 2008-01-03 06:36:51 +0000 | [diff] [blame] | 1297 | // Zero or sign extend the pointer value based on whether the index is |
| 1298 | // signed or not. |
Owen Anderson | 41a7502 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 1299 | const llvm::Type *IdxType = |
| 1300 | llvm::IntegerType::get(VMContext, CGF.LLVMPointerWidth); |
Chris Lattner | 0f398c4 | 2008-07-26 22:37:01 +0000 | [diff] [blame] | 1301 | if (IdxExp->getType()->isSignedIntegerType()) |
Chris Lattner | 20455f2 | 2008-01-03 06:36:51 +0000 | [diff] [blame] | 1302 | Idx = Builder.CreateSExt(Idx, IdxType, "idx.ext"); |
| 1303 | else |
| 1304 | Idx = Builder.CreateZExt(Idx, IdxType, "idx.ext"); |
| 1305 | } |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1306 | const QualType ElementType = PT ? PT->getPointeeType() : OPT->getPointeeType(); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1307 | // Handle interface types, which are not represented with a concrete type. |
Daniel Dunbar | ef2ffbc | 2009-04-25 05:08:32 +0000 | [diff] [blame] | 1308 | if (const ObjCInterfaceType *OIT = dyn_cast<ObjCInterfaceType>(ElementType)) { |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1309 | llvm::Value *InterfaceSize = |
Owen Anderson | b7a2fe6 | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 1310 | llvm::ConstantInt::get(Idx->getType(), |
Daniel Dunbar | ef2ffbc | 2009-04-25 05:08:32 +0000 | [diff] [blame] | 1311 | CGF.getContext().getTypeSize(OIT) / 8); |
| 1312 | Idx = Builder.CreateMul(Idx, InterfaceSize); |
Benjamin Kramer | abd5b90 | 2009-10-13 10:07:13 +0000 | [diff] [blame] | 1313 | const llvm::Type *i8Ty = llvm::Type::getInt8PtrTy(VMContext); |
Daniel Dunbar | ef2ffbc | 2009-04-25 05:08:32 +0000 | [diff] [blame] | 1314 | Value *Casted = Builder.CreateBitCast(Ptr, i8Ty); |
| 1315 | Value *Res = Builder.CreateGEP(Casted, Idx, "add.ptr"); |
| 1316 | return Builder.CreateBitCast(Res, Ptr->getType()); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1317 | } |
Daniel Dunbar | ef2ffbc | 2009-04-25 05:08:32 +0000 | [diff] [blame] | 1318 | |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1319 | // Explicitly handle GNU void* and function pointer arithmetic extensions. The |
| 1320 | // GNU void* casts amount to no-ops since our void* type is i8*, but this is |
| 1321 | // future proof. |
Daniel Dunbar | 42a8cd3 | 2009-01-23 18:51:09 +0000 | [diff] [blame] | 1322 | if (ElementType->isVoidType() || ElementType->isFunctionType()) { |
Benjamin Kramer | abd5b90 | 2009-10-13 10:07:13 +0000 | [diff] [blame] | 1323 | const llvm::Type *i8Ty = llvm::Type::getInt8PtrTy(VMContext); |
Daniel Dunbar | 42a8cd3 | 2009-01-23 18:51:09 +0000 | [diff] [blame] | 1324 | Value *Casted = Builder.CreateBitCast(Ptr, i8Ty); |
Daniel Dunbar | ef2ffbc | 2009-04-25 05:08:32 +0000 | [diff] [blame] | 1325 | Value *Res = Builder.CreateGEP(Casted, Idx, "add.ptr"); |
Daniel Dunbar | 42a8cd3 | 2009-01-23 18:51:09 +0000 | [diff] [blame] | 1326 | return Builder.CreateBitCast(Res, Ptr->getType()); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1327 | } |
| 1328 | |
Dan Gohman | 43b4484 | 2009-08-12 00:33:55 +0000 | [diff] [blame] | 1329 | return Builder.CreateInBoundsGEP(Ptr, Idx, "add.ptr"); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1330 | } |
| 1331 | |
| 1332 | Value *ScalarExprEmitter::EmitSub(const BinOpInfo &Ops) { |
Mike Stump | 0c61b73 | 2009-04-01 20:28:16 +0000 | [diff] [blame] | 1333 | if (!isa<llvm::PointerType>(Ops.LHS->getType())) { |
Mike Stump | d3e3885 | 2009-04-02 18:15:54 +0000 | [diff] [blame] | 1334 | if (CGF.getContext().getLangOptions().OverflowChecking |
| 1335 | && Ops.Ty->isSignedIntegerType()) |
Mike Stump | 0c61b73 | 2009-04-01 20:28:16 +0000 | [diff] [blame] | 1336 | return EmitOverflowCheckedBinOp(Ops); |
Chris Lattner | 94dfae2 | 2009-06-17 06:36:24 +0000 | [diff] [blame] | 1337 | |
| 1338 | if (Ops.LHS->getType()->isFPOrFPVector()) |
| 1339 | return Builder.CreateFSub(Ops.LHS, Ops.RHS, "sub"); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1340 | return Builder.CreateSub(Ops.LHS, Ops.RHS, "sub"); |
Mike Stump | 0c61b73 | 2009-04-01 20:28:16 +0000 | [diff] [blame] | 1341 | } |
Chris Lattner | 3d966d6 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 1342 | |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1343 | if (Ops.E->getLHS()->getType()->isPointerType() && |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1344 | Ops.E->getLHS()->getType()->getAs<PointerType>()->isVariableArrayType()) { |
Eli Friedman | e381f7e | 2009-03-28 02:45:41 +0000 | [diff] [blame] | 1345 | // The amount of the addition needs to account for the VLA size for |
| 1346 | // ptr-int |
| 1347 | // The amount of the division needs to account for the VLA size for |
| 1348 | // ptr-ptr. |
| 1349 | CGF.ErrorUnsupported(Ops.E, "VLA pointer subtraction"); |
| 1350 | } |
| 1351 | |
Daniel Dunbar | 42a8cd3 | 2009-01-23 18:51:09 +0000 | [diff] [blame] | 1352 | const QualType LHSType = Ops.E->getLHS()->getType(); |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1353 | const QualType LHSElementType = LHSType->getPointeeType(); |
Daniel Dunbar | bfb1cd7 | 2008-08-06 02:00:38 +0000 | [diff] [blame] | 1354 | if (!isa<llvm::PointerType>(Ops.RHS->getType())) { |
| 1355 | // pointer - int |
| 1356 | Value *Idx = Ops.RHS; |
| 1357 | unsigned Width = cast<llvm::IntegerType>(Idx->getType())->getBitWidth(); |
Sanjiv Gupta | 4742515 | 2009-04-24 02:40:57 +0000 | [diff] [blame] | 1358 | if (Width < CGF.LLVMPointerWidth) { |
Daniel Dunbar | bfb1cd7 | 2008-08-06 02:00:38 +0000 | [diff] [blame] | 1359 | // Zero or sign extend the pointer value based on whether the index is |
| 1360 | // signed or not. |
Owen Anderson | 41a7502 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 1361 | const llvm::Type *IdxType = |
| 1362 | llvm::IntegerType::get(VMContext, CGF.LLVMPointerWidth); |
Daniel Dunbar | bfb1cd7 | 2008-08-06 02:00:38 +0000 | [diff] [blame] | 1363 | if (Ops.E->getRHS()->getType()->isSignedIntegerType()) |
| 1364 | Idx = Builder.CreateSExt(Idx, IdxType, "idx.ext"); |
| 1365 | else |
| 1366 | Idx = Builder.CreateZExt(Idx, IdxType, "idx.ext"); |
| 1367 | } |
| 1368 | Idx = Builder.CreateNeg(Idx, "sub.ptr.neg"); |
Daniel Dunbar | 42a8cd3 | 2009-01-23 18:51:09 +0000 | [diff] [blame] | 1369 | |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1370 | // Handle interface types, which are not represented with a concrete type. |
| 1371 | if (const ObjCInterfaceType *OIT = |
Daniel Dunbar | ef2ffbc | 2009-04-25 05:08:32 +0000 | [diff] [blame] | 1372 | dyn_cast<ObjCInterfaceType>(LHSElementType)) { |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1373 | llvm::Value *InterfaceSize = |
Owen Anderson | b7a2fe6 | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 1374 | llvm::ConstantInt::get(Idx->getType(), |
Daniel Dunbar | ef2ffbc | 2009-04-25 05:08:32 +0000 | [diff] [blame] | 1375 | CGF.getContext().getTypeSize(OIT) / 8); |
| 1376 | Idx = Builder.CreateMul(Idx, InterfaceSize); |
Benjamin Kramer | abd5b90 | 2009-10-13 10:07:13 +0000 | [diff] [blame] | 1377 | const llvm::Type *i8Ty = llvm::Type::getInt8PtrTy(VMContext); |
Daniel Dunbar | ef2ffbc | 2009-04-25 05:08:32 +0000 | [diff] [blame] | 1378 | Value *LHSCasted = Builder.CreateBitCast(Ops.LHS, i8Ty); |
| 1379 | Value *Res = Builder.CreateGEP(LHSCasted, Idx, "add.ptr"); |
| 1380 | return Builder.CreateBitCast(Res, Ops.LHS->getType()); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1381 | } |
Daniel Dunbar | ef2ffbc | 2009-04-25 05:08:32 +0000 | [diff] [blame] | 1382 | |
Daniel Dunbar | 42a8cd3 | 2009-01-23 18:51:09 +0000 | [diff] [blame] | 1383 | // Explicitly handle GNU void* and function pointer arithmetic |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1384 | // extensions. The GNU void* casts amount to no-ops since our void* type is |
| 1385 | // i8*, but this is future proof. |
Daniel Dunbar | 42a8cd3 | 2009-01-23 18:51:09 +0000 | [diff] [blame] | 1386 | if (LHSElementType->isVoidType() || LHSElementType->isFunctionType()) { |
Benjamin Kramer | abd5b90 | 2009-10-13 10:07:13 +0000 | [diff] [blame] | 1387 | const llvm::Type *i8Ty = llvm::Type::getInt8PtrTy(VMContext); |
Daniel Dunbar | 42a8cd3 | 2009-01-23 18:51:09 +0000 | [diff] [blame] | 1388 | Value *LHSCasted = Builder.CreateBitCast(Ops.LHS, i8Ty); |
| 1389 | Value *Res = Builder.CreateGEP(LHSCasted, Idx, "sub.ptr"); |
| 1390 | return Builder.CreateBitCast(Res, Ops.LHS->getType()); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1391 | } |
| 1392 | |
Dan Gohman | 43b4484 | 2009-08-12 00:33:55 +0000 | [diff] [blame] | 1393 | return Builder.CreateInBoundsGEP(Ops.LHS, Idx, "sub.ptr"); |
Daniel Dunbar | 5aa55d5 | 2008-08-05 00:47:03 +0000 | [diff] [blame] | 1394 | } else { |
Daniel Dunbar | bfb1cd7 | 2008-08-06 02:00:38 +0000 | [diff] [blame] | 1395 | // pointer - pointer |
| 1396 | Value *LHS = Ops.LHS; |
| 1397 | Value *RHS = Ops.RHS; |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1398 | |
Daniel Dunbar | bfb1cd7 | 2008-08-06 02:00:38 +0000 | [diff] [blame] | 1399 | uint64_t ElementSize; |
Daniel Dunbar | 5aa55d5 | 2008-08-05 00:47:03 +0000 | [diff] [blame] | 1400 | |
Chris Lattner | 60dcdc7 | 2009-02-11 07:21:43 +0000 | [diff] [blame] | 1401 | // Handle GCC extension for pointer arithmetic on void* and function pointer |
| 1402 | // types. |
| 1403 | if (LHSElementType->isVoidType() || LHSElementType->isFunctionType()) { |
Daniel Dunbar | bfb1cd7 | 2008-08-06 02:00:38 +0000 | [diff] [blame] | 1404 | ElementSize = 1; |
| 1405 | } else { |
| 1406 | ElementSize = CGF.getContext().getTypeSize(LHSElementType) / 8; |
| 1407 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1408 | |
Daniel Dunbar | bfb1cd7 | 2008-08-06 02:00:38 +0000 | [diff] [blame] | 1409 | const llvm::Type *ResultType = ConvertType(Ops.Ty); |
| 1410 | LHS = Builder.CreatePtrToInt(LHS, ResultType, "sub.ptr.lhs.cast"); |
| 1411 | RHS = Builder.CreatePtrToInt(RHS, ResultType, "sub.ptr.rhs.cast"); |
| 1412 | Value *BytesBetween = Builder.CreateSub(LHS, RHS, "sub.ptr.sub"); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1413 | |
Chris Lattner | 60dcdc7 | 2009-02-11 07:21:43 +0000 | [diff] [blame] | 1414 | // Optimize out the shift for element size of 1. |
| 1415 | if (ElementSize == 1) |
| 1416 | return BytesBetween; |
Dan Gohman | 1cebe56 | 2009-08-11 22:40:09 +0000 | [diff] [blame] | 1417 | |
| 1418 | // Otherwise, do a full sdiv. This uses the "exact" form of sdiv, since |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1419 | // pointer difference in C is only defined in the case where both operands |
| 1420 | // are pointing to elements of an array. |
Owen Anderson | b7a2fe6 | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 1421 | Value *BytesPerElt = llvm::ConstantInt::get(ResultType, ElementSize); |
Dan Gohman | 1cebe56 | 2009-08-11 22:40:09 +0000 | [diff] [blame] | 1422 | return Builder.CreateExactSDiv(BytesBetween, BytesPerElt, "sub.ptr.div"); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1423 | } |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1424 | } |
| 1425 | |
| 1426 | Value *ScalarExprEmitter::EmitShl(const BinOpInfo &Ops) { |
| 1427 | // LLVM requires the LHS and RHS to be the same type: promote or truncate the |
| 1428 | // RHS to the same size as the LHS. |
| 1429 | Value *RHS = Ops.RHS; |
| 1430 | if (Ops.LHS->getType() != RHS->getType()) |
| 1431 | RHS = Builder.CreateIntCast(RHS, Ops.LHS->getType(), false, "sh_prom"); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1432 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1433 | return Builder.CreateShl(Ops.LHS, RHS, "shl"); |
| 1434 | } |
| 1435 | |
| 1436 | Value *ScalarExprEmitter::EmitShr(const BinOpInfo &Ops) { |
| 1437 | // LLVM requires the LHS and RHS to be the same type: promote or truncate the |
| 1438 | // RHS to the same size as the LHS. |
| 1439 | Value *RHS = Ops.RHS; |
| 1440 | if (Ops.LHS->getType() != RHS->getType()) |
| 1441 | RHS = Builder.CreateIntCast(RHS, Ops.LHS->getType(), false, "sh_prom"); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1442 | |
Chris Lattner | 3d966d6 | 2007-08-24 21:00:35 +0000 | [diff] [blame] | 1443 | if (Ops.Ty->isUnsignedIntegerType()) |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1444 | return Builder.CreateLShr(Ops.LHS, RHS, "shr"); |
| 1445 | return Builder.CreateAShr(Ops.LHS, RHS, "shr"); |
| 1446 | } |
| 1447 | |
| 1448 | Value *ScalarExprEmitter::EmitCompare(const BinaryOperator *E,unsigned UICmpOpc, |
| 1449 | unsigned SICmpOpc, unsigned FCmpOpc) { |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 1450 | TestAndClearIgnoreResultAssign(); |
Chris Lattner | 42e6b81 | 2007-08-26 16:34:22 +0000 | [diff] [blame] | 1451 | Value *Result; |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1452 | QualType LHSTy = E->getLHS()->getType(); |
Chris Lattner | 2a7deb6 | 2009-07-08 01:08:03 +0000 | [diff] [blame] | 1453 | if (!LHSTy->isAnyComplexType()) { |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1454 | Value *LHS = Visit(E->getLHS()); |
| 1455 | Value *RHS = Visit(E->getRHS()); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1456 | |
Eli Friedman | 5ac6905 | 2009-07-22 06:07:16 +0000 | [diff] [blame] | 1457 | if (LHS->getType()->isFPOrFPVector()) { |
Nate Begeman | fe79ca2 | 2008-07-25 20:16:05 +0000 | [diff] [blame] | 1458 | Result = Builder.CreateFCmp((llvm::CmpInst::Predicate)FCmpOpc, |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1459 | LHS, RHS, "cmp"); |
Eli Friedman | 3c28524 | 2008-05-29 15:09:15 +0000 | [diff] [blame] | 1460 | } else if (LHSTy->isSignedIntegerType()) { |
| 1461 | Result = Builder.CreateICmp((llvm::ICmpInst::Predicate)SICmpOpc, |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1462 | LHS, RHS, "cmp"); |
| 1463 | } else { |
Eli Friedman | 3c28524 | 2008-05-29 15:09:15 +0000 | [diff] [blame] | 1464 | // Unsigned integers and pointers. |
| 1465 | Result = Builder.CreateICmp((llvm::ICmpInst::Predicate)UICmpOpc, |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1466 | LHS, RHS, "cmp"); |
| 1467 | } |
Chris Lattner | 2a7deb6 | 2009-07-08 01:08:03 +0000 | [diff] [blame] | 1468 | |
| 1469 | // If this is a vector comparison, sign extend the result to the appropriate |
| 1470 | // vector integer type and return it (don't convert to bool). |
| 1471 | if (LHSTy->isVectorType()) |
| 1472 | return Builder.CreateSExt(Result, ConvertType(E->getType()), "sext"); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1473 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1474 | } else { |
| 1475 | // Complex Comparison: can only be an equality comparison. |
| 1476 | CodeGenFunction::ComplexPairTy LHS = CGF.EmitComplexExpr(E->getLHS()); |
| 1477 | CodeGenFunction::ComplexPairTy RHS = CGF.EmitComplexExpr(E->getRHS()); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1478 | |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1479 | QualType CETy = LHSTy->getAs<ComplexType>()->getElementType(); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1480 | |
Chris Lattner | 42e6b81 | 2007-08-26 16:34:22 +0000 | [diff] [blame] | 1481 | Value *ResultR, *ResultI; |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1482 | if (CETy->isRealFloatingType()) { |
| 1483 | ResultR = Builder.CreateFCmp((llvm::FCmpInst::Predicate)FCmpOpc, |
| 1484 | LHS.first, RHS.first, "cmp.r"); |
| 1485 | ResultI = Builder.CreateFCmp((llvm::FCmpInst::Predicate)FCmpOpc, |
| 1486 | LHS.second, RHS.second, "cmp.i"); |
| 1487 | } else { |
| 1488 | // Complex comparisons can only be equality comparisons. As such, signed |
| 1489 | // and unsigned opcodes are the same. |
| 1490 | ResultR = Builder.CreateICmp((llvm::ICmpInst::Predicate)UICmpOpc, |
| 1491 | LHS.first, RHS.first, "cmp.r"); |
| 1492 | ResultI = Builder.CreateICmp((llvm::ICmpInst::Predicate)UICmpOpc, |
| 1493 | LHS.second, RHS.second, "cmp.i"); |
| 1494 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1495 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1496 | if (E->getOpcode() == BinaryOperator::EQ) { |
| 1497 | Result = Builder.CreateAnd(ResultR, ResultI, "and.ri"); |
| 1498 | } else { |
| 1499 | assert(E->getOpcode() == BinaryOperator::NE && |
| 1500 | "Complex comparison other than == or != ?"); |
| 1501 | Result = Builder.CreateOr(ResultR, ResultI, "or.ri"); |
| 1502 | } |
| 1503 | } |
Nuno Lopes | a0abe62 | 2009-01-11 23:22:37 +0000 | [diff] [blame] | 1504 | |
| 1505 | return EmitScalarConversion(Result, CGF.getContext().BoolTy, E->getType()); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1506 | } |
| 1507 | |
| 1508 | Value *ScalarExprEmitter::VisitBinAssign(const BinaryOperator *E) { |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 1509 | bool Ignore = TestAndClearIgnoreResultAssign(); |
| 1510 | |
| 1511 | // __block variables need to have the rhs evaluated first, plus this should |
| 1512 | // improve codegen just a little. |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1513 | Value *RHS = Visit(E->getRHS()); |
Mike Stump | aed08f9 | 2009-05-21 21:05:15 +0000 | [diff] [blame] | 1514 | LValue LHS = EmitLValue(E->getLHS()); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1515 | |
Daniel Dunbar | 9b1335e | 2008-11-19 09:36:46 +0000 | [diff] [blame] | 1516 | // Store the value into the LHS. Bit-fields are handled specially |
Daniel Dunbar | 7689f6b | 2008-11-19 11:54:05 +0000 | [diff] [blame] | 1517 | // because the result is altered by the store, i.e., [C99 6.5.16p1] |
| 1518 | // 'An assignment expression has the value of the left operand after |
Eli Friedman | e381f7e | 2009-03-28 02:45:41 +0000 | [diff] [blame] | 1519 | // the assignment...'. |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 1520 | if (LHS.isBitfield()) { |
| 1521 | if (!LHS.isVolatileQualified()) { |
| 1522 | CGF.EmitStoreThroughBitfieldLValue(RValue::get(RHS), LHS, E->getType(), |
| 1523 | &RHS); |
| 1524 | return RHS; |
| 1525 | } else |
| 1526 | CGF.EmitStoreThroughBitfieldLValue(RValue::get(RHS), LHS, E->getType()); |
| 1527 | } else |
Daniel Dunbar | 9b1335e | 2008-11-19 09:36:46 +0000 | [diff] [blame] | 1528 | CGF.EmitStoreThroughLValue(RValue::get(RHS), LHS, E->getType()); |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 1529 | if (Ignore) |
| 1530 | return 0; |
| 1531 | return EmitLoadOfLValue(LHS, E->getType()); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1532 | } |
| 1533 | |
| 1534 | Value *ScalarExprEmitter::VisitBinLAnd(const BinaryOperator *E) { |
Chris Lattner | 671fec8 | 2009-10-17 04:24:20 +0000 | [diff] [blame] | 1535 | const llvm::Type *ResTy = ConvertType(E->getType()); |
| 1536 | |
Chris Lattner | 8b08458 | 2008-11-12 08:26:50 +0000 | [diff] [blame] | 1537 | // If we have 0 && RHS, see if we can elide RHS, if so, just return 0. |
| 1538 | // If we have 1 && X, just emit X without inserting the control flow. |
| 1539 | if (int Cond = CGF.ConstantFoldsToSimpleInteger(E->getLHS())) { |
| 1540 | if (Cond == 1) { // If we have 1 && X, just emit X. |
Chris Lattner | 5b1964b | 2008-11-11 07:41:27 +0000 | [diff] [blame] | 1541 | Value *RHSCond = CGF.EvaluateExprAsBool(E->getRHS()); |
Chris Lattner | 671fec8 | 2009-10-17 04:24:20 +0000 | [diff] [blame] | 1542 | // ZExt result to int or bool. |
| 1543 | return Builder.CreateZExtOrBitCast(RHSCond, ResTy, "land.ext"); |
Chris Lattner | 5b1964b | 2008-11-11 07:41:27 +0000 | [diff] [blame] | 1544 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1545 | |
Chris Lattner | 671fec8 | 2009-10-17 04:24:20 +0000 | [diff] [blame] | 1546 | // 0 && RHS: If it is safe, just elide the RHS, and return 0/false. |
Chris Lattner | 8b08458 | 2008-11-12 08:26:50 +0000 | [diff] [blame] | 1547 | if (!CGF.ContainsLabel(E->getRHS())) |
Chris Lattner | 671fec8 | 2009-10-17 04:24:20 +0000 | [diff] [blame] | 1548 | return llvm::Constant::getNullValue(ResTy); |
Chris Lattner | 5b1964b | 2008-11-11 07:41:27 +0000 | [diff] [blame] | 1549 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1550 | |
Daniel Dunbar | a612e79 | 2008-11-13 01:38:36 +0000 | [diff] [blame] | 1551 | llvm::BasicBlock *ContBlock = CGF.createBasicBlock("land.end"); |
| 1552 | llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("land.rhs"); |
Chris Lattner | 8b08458 | 2008-11-12 08:26:50 +0000 | [diff] [blame] | 1553 | |
Chris Lattner | 35710d18 | 2008-11-12 08:38:24 +0000 | [diff] [blame] | 1554 | // Branch on the LHS first. If it is false, go to the failure (cont) block. |
| 1555 | CGF.EmitBranchOnBoolExpr(E->getLHS(), RHSBlock, ContBlock); |
| 1556 | |
| 1557 | // Any edges into the ContBlock are now from an (indeterminate number of) |
| 1558 | // edges from this first condition. All of these values will be false. Start |
| 1559 | // setting up the PHI node in the Cont Block for this. |
Owen Anderson | 41a7502 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 1560 | llvm::PHINode *PN = llvm::PHINode::Create(llvm::Type::getInt1Ty(VMContext), |
| 1561 | "", ContBlock); |
Chris Lattner | 35710d18 | 2008-11-12 08:38:24 +0000 | [diff] [blame] | 1562 | PN->reserveOperandSpace(2); // Normal case, two inputs. |
| 1563 | for (llvm::pred_iterator PI = pred_begin(ContBlock), PE = pred_end(ContBlock); |
| 1564 | PI != PE; ++PI) |
Owen Anderson | fe4e347 | 2009-07-31 17:39:36 +0000 | [diff] [blame] | 1565 | PN->addIncoming(llvm::ConstantInt::getFalse(VMContext), *PI); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1566 | |
Anders Carlsson | f47a3de | 2009-06-04 02:53:13 +0000 | [diff] [blame] | 1567 | CGF.PushConditionalTempDestruction(); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1568 | CGF.EmitBlock(RHSBlock); |
| 1569 | Value *RHSCond = CGF.EvaluateExprAsBool(E->getRHS()); |
Anders Carlsson | f47a3de | 2009-06-04 02:53:13 +0000 | [diff] [blame] | 1570 | CGF.PopConditionalTempDestruction(); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1571 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1572 | // Reaquire the RHS block, as there may be subblocks inserted. |
| 1573 | RHSBlock = Builder.GetInsertBlock(); |
Chris Lattner | 35710d18 | 2008-11-12 08:38:24 +0000 | [diff] [blame] | 1574 | |
| 1575 | // Emit an unconditional branch from this block to ContBlock. Insert an entry |
| 1576 | // into the phi node for the edge with the value of RHSCond. |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1577 | CGF.EmitBlock(ContBlock); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1578 | PN->addIncoming(RHSCond, RHSBlock); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1579 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1580 | // ZExt result to int. |
Chris Lattner | 671fec8 | 2009-10-17 04:24:20 +0000 | [diff] [blame] | 1581 | return Builder.CreateZExtOrBitCast(PN, ResTy, "land.ext"); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1582 | } |
| 1583 | |
| 1584 | Value *ScalarExprEmitter::VisitBinLOr(const BinaryOperator *E) { |
Chris Lattner | 671fec8 | 2009-10-17 04:24:20 +0000 | [diff] [blame] | 1585 | const llvm::Type *ResTy = ConvertType(E->getType()); |
| 1586 | |
Chris Lattner | 8b08458 | 2008-11-12 08:26:50 +0000 | [diff] [blame] | 1587 | // If we have 1 || RHS, see if we can elide RHS, if so, just return 1. |
| 1588 | // If we have 0 || X, just emit X without inserting the control flow. |
| 1589 | if (int Cond = CGF.ConstantFoldsToSimpleInteger(E->getLHS())) { |
| 1590 | if (Cond == -1) { // If we have 0 || X, just emit X. |
Chris Lattner | 5b1964b | 2008-11-11 07:41:27 +0000 | [diff] [blame] | 1591 | Value *RHSCond = CGF.EvaluateExprAsBool(E->getRHS()); |
Chris Lattner | 671fec8 | 2009-10-17 04:24:20 +0000 | [diff] [blame] | 1592 | // ZExt result to int or bool. |
| 1593 | return Builder.CreateZExtOrBitCast(RHSCond, ResTy, "lor.ext"); |
Chris Lattner | 5b1964b | 2008-11-11 07:41:27 +0000 | [diff] [blame] | 1594 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1595 | |
Chris Lattner | 671fec8 | 2009-10-17 04:24:20 +0000 | [diff] [blame] | 1596 | // 1 || RHS: If it is safe, just elide the RHS, and return 1/true. |
Chris Lattner | 8b08458 | 2008-11-12 08:26:50 +0000 | [diff] [blame] | 1597 | if (!CGF.ContainsLabel(E->getRHS())) |
Chris Lattner | 671fec8 | 2009-10-17 04:24:20 +0000 | [diff] [blame] | 1598 | return llvm::ConstantInt::get(ResTy, 1); |
Chris Lattner | 5b1964b | 2008-11-11 07:41:27 +0000 | [diff] [blame] | 1599 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1600 | |
Daniel Dunbar | a612e79 | 2008-11-13 01:38:36 +0000 | [diff] [blame] | 1601 | llvm::BasicBlock *ContBlock = CGF.createBasicBlock("lor.end"); |
| 1602 | llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("lor.rhs"); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1603 | |
Chris Lattner | 35710d18 | 2008-11-12 08:38:24 +0000 | [diff] [blame] | 1604 | // Branch on the LHS first. If it is true, go to the success (cont) block. |
| 1605 | CGF.EmitBranchOnBoolExpr(E->getLHS(), ContBlock, RHSBlock); |
| 1606 | |
| 1607 | // Any edges into the ContBlock are now from an (indeterminate number of) |
| 1608 | // edges from this first condition. All of these values will be true. Start |
| 1609 | // setting up the PHI node in the Cont Block for this. |
Owen Anderson | 41a7502 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 1610 | llvm::PHINode *PN = llvm::PHINode::Create(llvm::Type::getInt1Ty(VMContext), |
| 1611 | "", ContBlock); |
Chris Lattner | 35710d18 | 2008-11-12 08:38:24 +0000 | [diff] [blame] | 1612 | PN->reserveOperandSpace(2); // Normal case, two inputs. |
| 1613 | for (llvm::pred_iterator PI = pred_begin(ContBlock), PE = pred_end(ContBlock); |
| 1614 | PI != PE; ++PI) |
Owen Anderson | fe4e347 | 2009-07-31 17:39:36 +0000 | [diff] [blame] | 1615 | PN->addIncoming(llvm::ConstantInt::getTrue(VMContext), *PI); |
Chris Lattner | 35710d18 | 2008-11-12 08:38:24 +0000 | [diff] [blame] | 1616 | |
Anders Carlsson | f47a3de | 2009-06-04 02:53:13 +0000 | [diff] [blame] | 1617 | CGF.PushConditionalTempDestruction(); |
| 1618 | |
Chris Lattner | 35710d18 | 2008-11-12 08:38:24 +0000 | [diff] [blame] | 1619 | // Emit the RHS condition as a bool value. |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1620 | CGF.EmitBlock(RHSBlock); |
| 1621 | Value *RHSCond = CGF.EvaluateExprAsBool(E->getRHS()); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1622 | |
Anders Carlsson | f47a3de | 2009-06-04 02:53:13 +0000 | [diff] [blame] | 1623 | CGF.PopConditionalTempDestruction(); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1624 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1625 | // Reaquire the RHS block, as there may be subblocks inserted. |
| 1626 | RHSBlock = Builder.GetInsertBlock(); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1627 | |
Chris Lattner | 35710d18 | 2008-11-12 08:38:24 +0000 | [diff] [blame] | 1628 | // Emit an unconditional branch from this block to ContBlock. Insert an entry |
| 1629 | // into the phi node for the edge with the value of RHSCond. |
| 1630 | CGF.EmitBlock(ContBlock); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1631 | PN->addIncoming(RHSCond, RHSBlock); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1632 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1633 | // ZExt result to int. |
Chris Lattner | 671fec8 | 2009-10-17 04:24:20 +0000 | [diff] [blame] | 1634 | return Builder.CreateZExtOrBitCast(PN, ResTy, "lor.ext"); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1635 | } |
| 1636 | |
| 1637 | Value *ScalarExprEmitter::VisitBinComma(const BinaryOperator *E) { |
| 1638 | CGF.EmitStmt(E->getLHS()); |
Daniel Dunbar | 5c7e393 | 2008-11-11 23:11:34 +0000 | [diff] [blame] | 1639 | CGF.EnsureInsertPoint(); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1640 | return Visit(E->getRHS()); |
| 1641 | } |
| 1642 | |
| 1643 | //===----------------------------------------------------------------------===// |
| 1644 | // Other Operators |
| 1645 | //===----------------------------------------------------------------------===// |
| 1646 | |
Chris Lattner | 3fd91f83 | 2008-11-12 08:55:54 +0000 | [diff] [blame] | 1647 | /// isCheapEnoughToEvaluateUnconditionally - Return true if the specified |
| 1648 | /// expression is cheap enough and side-effect-free enough to evaluate |
| 1649 | /// unconditionally instead of conditionally. This is used to convert control |
| 1650 | /// flow into selects in some cases. |
| 1651 | static bool isCheapEnoughToEvaluateUnconditionally(const Expr *E) { |
| 1652 | if (const ParenExpr *PE = dyn_cast<ParenExpr>(E)) |
| 1653 | return isCheapEnoughToEvaluateUnconditionally(PE->getSubExpr()); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1654 | |
Chris Lattner | 3fd91f83 | 2008-11-12 08:55:54 +0000 | [diff] [blame] | 1655 | // TODO: Allow anything we can constant fold to an integer or fp constant. |
| 1656 | if (isa<IntegerLiteral>(E) || isa<CharacterLiteral>(E) || |
| 1657 | isa<FloatingLiteral>(E)) |
| 1658 | return true; |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1659 | |
Chris Lattner | 3fd91f83 | 2008-11-12 08:55:54 +0000 | [diff] [blame] | 1660 | // Non-volatile automatic variables too, to get "cond ? X : Y" where |
| 1661 | // X and Y are local variables. |
| 1662 | if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) |
| 1663 | if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl())) |
| 1664 | if (VD->hasLocalStorage() && !VD->getType().isVolatileQualified()) |
| 1665 | return true; |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1666 | |
Chris Lattner | 3fd91f83 | 2008-11-12 08:55:54 +0000 | [diff] [blame] | 1667 | return false; |
| 1668 | } |
| 1669 | |
| 1670 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1671 | Value *ScalarExprEmitter:: |
| 1672 | VisitConditionalOperator(const ConditionalOperator *E) { |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 1673 | TestAndClearIgnoreResultAssign(); |
Chris Lattner | cd43929 | 2008-11-12 08:04:58 +0000 | [diff] [blame] | 1674 | // If the condition constant folds and can be elided, try to avoid emitting |
| 1675 | // the condition and the dead arm. |
| 1676 | if (int Cond = CGF.ConstantFoldsToSimpleInteger(E->getCond())){ |
Chris Lattner | d53e233 | 2008-11-11 18:56:45 +0000 | [diff] [blame] | 1677 | Expr *Live = E->getLHS(), *Dead = E->getRHS(); |
Chris Lattner | cd43929 | 2008-11-12 08:04:58 +0000 | [diff] [blame] | 1678 | if (Cond == -1) |
Chris Lattner | d53e233 | 2008-11-11 18:56:45 +0000 | [diff] [blame] | 1679 | std::swap(Live, Dead); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1680 | |
Chris Lattner | cd43929 | 2008-11-12 08:04:58 +0000 | [diff] [blame] | 1681 | // If the dead side doesn't have labels we need, and if the Live side isn't |
| 1682 | // the gnu missing ?: extension (which we could handle, but don't bother |
| 1683 | // to), just emit the Live part. |
| 1684 | if ((!Dead || !CGF.ContainsLabel(Dead)) && // No labels in dead part |
| 1685 | Live) // Live part isn't missing. |
| 1686 | return Visit(Live); |
Chris Lattner | d53e233 | 2008-11-11 18:56:45 +0000 | [diff] [blame] | 1687 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1688 | |
| 1689 | |
Chris Lattner | 3fd91f83 | 2008-11-12 08:55:54 +0000 | [diff] [blame] | 1690 | // If this is a really simple expression (like x ? 4 : 5), emit this as a |
| 1691 | // select instead of as control flow. We can only do this if it is cheap and |
Chris Lattner | 9ce8a53 | 2008-11-16 06:16:27 +0000 | [diff] [blame] | 1692 | // safe to evaluate the LHS and RHS unconditionally. |
Chris Lattner | 3fd91f83 | 2008-11-12 08:55:54 +0000 | [diff] [blame] | 1693 | if (E->getLHS() && isCheapEnoughToEvaluateUnconditionally(E->getLHS()) && |
| 1694 | isCheapEnoughToEvaluateUnconditionally(E->getRHS())) { |
| 1695 | llvm::Value *CondV = CGF.EvaluateExprAsBool(E->getCond()); |
| 1696 | llvm::Value *LHS = Visit(E->getLHS()); |
| 1697 | llvm::Value *RHS = Visit(E->getRHS()); |
| 1698 | return Builder.CreateSelect(CondV, LHS, RHS, "cond"); |
| 1699 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1700 | |
| 1701 | |
Daniel Dunbar | d2a53a7 | 2008-11-12 10:13:37 +0000 | [diff] [blame] | 1702 | llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true"); |
| 1703 | llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false"); |
Daniel Dunbar | a612e79 | 2008-11-13 01:38:36 +0000 | [diff] [blame] | 1704 | llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end"); |
Chris Lattner | 51e7118 | 2008-11-12 08:08:13 +0000 | [diff] [blame] | 1705 | Value *CondVal = 0; |
Chris Lattner | cd43929 | 2008-11-12 08:04:58 +0000 | [diff] [blame] | 1706 | |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1707 | // If we don't have the GNU missing condition extension, emit a branch on bool |
| 1708 | // the normal way. |
Chris Lattner | cd7bc14 | 2009-02-13 23:35:32 +0000 | [diff] [blame] | 1709 | if (E->getLHS()) { |
| 1710 | // Otherwise, just use EmitBranchOnBoolExpr to get small and simple code for |
| 1711 | // the branch on bool. |
| 1712 | CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock); |
| 1713 | } else { |
| 1714 | // Otherwise, for the ?: extension, evaluate the conditional and then |
| 1715 | // convert it to bool the hard way. We do this explicitly because we need |
| 1716 | // the unconverted value for the missing middle value of the ?:. |
Chris Lattner | 51e7118 | 2008-11-12 08:08:13 +0000 | [diff] [blame] | 1717 | CondVal = CGF.EmitScalarExpr(E->getCond()); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1718 | |
Chris Lattner | cd7bc14 | 2009-02-13 23:35:32 +0000 | [diff] [blame] | 1719 | // In some cases, EmitScalarConversion will delete the "CondVal" expression |
| 1720 | // if there are no extra uses (an optimization). Inhibit this by making an |
| 1721 | // extra dead use, because we're going to add a use of CondVal later. We |
| 1722 | // don't use the builder for this, because we don't want it to get optimized |
| 1723 | // away. This leaves dead code, but the ?: extension isn't common. |
| 1724 | new llvm::BitCastInst(CondVal, CondVal->getType(), "dummy?:holder", |
| 1725 | Builder.GetInsertBlock()); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1726 | |
Chris Lattner | 51e7118 | 2008-11-12 08:08:13 +0000 | [diff] [blame] | 1727 | Value *CondBoolVal = |
| 1728 | CGF.EmitScalarConversion(CondVal, E->getCond()->getType(), |
| 1729 | CGF.getContext().BoolTy); |
| 1730 | Builder.CreateCondBr(CondBoolVal, LHSBlock, RHSBlock); |
Chris Lattner | 51e7118 | 2008-11-12 08:08:13 +0000 | [diff] [blame] | 1731 | } |
Anders Carlsson | 43c52cd | 2009-06-04 03:00:32 +0000 | [diff] [blame] | 1732 | |
| 1733 | CGF.PushConditionalTempDestruction(); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1734 | CGF.EmitBlock(LHSBlock); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1735 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1736 | // Handle the GNU extension for missing LHS. |
Chris Lattner | 2ab40a6 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 1737 | Value *LHS; |
| 1738 | if (E->getLHS()) |
Eli Friedman | d5a4838 | 2008-05-16 20:38:39 +0000 | [diff] [blame] | 1739 | LHS = Visit(E->getLHS()); |
Chris Lattner | 2ab40a6 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 1740 | else // Perform promotions, to handle cases like "short ?: int" |
| 1741 | LHS = EmitScalarConversion(CondVal, E->getCond()->getType(), E->getType()); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1742 | |
Anders Carlsson | 43c52cd | 2009-06-04 03:00:32 +0000 | [diff] [blame] | 1743 | CGF.PopConditionalTempDestruction(); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1744 | LHSBlock = Builder.GetInsertBlock(); |
Daniel Dunbar | c56e676 | 2008-11-11 09:41:28 +0000 | [diff] [blame] | 1745 | CGF.EmitBranch(ContBlock); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1746 | |
Anders Carlsson | 43c52cd | 2009-06-04 03:00:32 +0000 | [diff] [blame] | 1747 | CGF.PushConditionalTempDestruction(); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1748 | CGF.EmitBlock(RHSBlock); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1749 | |
Eli Friedman | d5a4838 | 2008-05-16 20:38:39 +0000 | [diff] [blame] | 1750 | Value *RHS = Visit(E->getRHS()); |
Anders Carlsson | 43c52cd | 2009-06-04 03:00:32 +0000 | [diff] [blame] | 1751 | CGF.PopConditionalTempDestruction(); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1752 | RHSBlock = Builder.GetInsertBlock(); |
Daniel Dunbar | c56e676 | 2008-11-11 09:41:28 +0000 | [diff] [blame] | 1753 | CGF.EmitBranch(ContBlock); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1754 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1755 | CGF.EmitBlock(ContBlock); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1756 | |
Nuno Lopes | 7bd6e58 | 2008-06-04 19:15:45 +0000 | [diff] [blame] | 1757 | if (!LHS || !RHS) { |
Chris Lattner | b6a7b58 | 2007-11-30 17:56:23 +0000 | [diff] [blame] | 1758 | assert(E->getType()->isVoidType() && "Non-void value should have a value"); |
| 1759 | return 0; |
| 1760 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1761 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1762 | // Create a PHI node for the real part. |
| 1763 | llvm::PHINode *PN = Builder.CreatePHI(LHS->getType(), "cond"); |
| 1764 | PN->reserveOperandSpace(2); |
| 1765 | PN->addIncoming(LHS, LHSBlock); |
| 1766 | PN->addIncoming(RHS, RHSBlock); |
| 1767 | return PN; |
| 1768 | } |
| 1769 | |
| 1770 | Value *ScalarExprEmitter::VisitChooseExpr(ChooseExpr *E) { |
Eli Friedman | e0a5b8b | 2009-03-04 05:52:32 +0000 | [diff] [blame] | 1771 | return Visit(E->getChosenSubExpr(CGF.getContext())); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1772 | } |
| 1773 | |
Chris Lattner | b6a7b58 | 2007-11-30 17:56:23 +0000 | [diff] [blame] | 1774 | Value *ScalarExprEmitter::VisitVAArgExpr(VAArgExpr *VE) { |
Eli Friedman | ddea0ad | 2009-01-20 17:46:04 +0000 | [diff] [blame] | 1775 | llvm::Value *ArgValue = CGF.EmitVAListRef(VE->getSubExpr()); |
Anders Carlsson | 13abd7e | 2008-11-04 05:30:00 +0000 | [diff] [blame] | 1776 | llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType()); |
| 1777 | |
| 1778 | // If EmitVAArg fails, we fall back to the LLVM instruction. |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1779 | if (!ArgPtr) |
Anders Carlsson | 13abd7e | 2008-11-04 05:30:00 +0000 | [diff] [blame] | 1780 | return Builder.CreateVAArg(ArgValue, ConvertType(VE->getType())); |
| 1781 | |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 1782 | // FIXME Volatility. |
Anders Carlsson | 13abd7e | 2008-11-04 05:30:00 +0000 | [diff] [blame] | 1783 | return Builder.CreateLoad(ArgPtr); |
Anders Carlsson | 7e13ab8 | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 1784 | } |
| 1785 | |
Mike Stump | ab3afd8 | 2009-02-12 18:29:15 +0000 | [diff] [blame] | 1786 | Value *ScalarExprEmitter::VisitBlockExpr(const BlockExpr *BE) { |
Mike Stump | aeb0ffd | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 1787 | return CGF.BuildBlockLiteralTmp(BE); |
Mike Stump | ab3afd8 | 2009-02-12 18:29:15 +0000 | [diff] [blame] | 1788 | } |
| 1789 | |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1790 | //===----------------------------------------------------------------------===// |
| 1791 | // Entry Point into this File |
| 1792 | //===----------------------------------------------------------------------===// |
| 1793 | |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1794 | /// EmitScalarExpr - Emit the computation of the specified expression of scalar |
| 1795 | /// type, ignoring the result. |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 1796 | Value *CodeGenFunction::EmitScalarExpr(const Expr *E, bool IgnoreResultAssign) { |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1797 | assert(E && !hasAggregateLLVMType(E->getType()) && |
| 1798 | "Invalid scalar expression to emit"); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1799 | |
Mike Stump | df0fe27 | 2009-05-29 15:46:01 +0000 | [diff] [blame] | 1800 | return ScalarExprEmitter(*this, IgnoreResultAssign) |
| 1801 | .Visit(const_cast<Expr*>(E)); |
Chris Lattner | 2da04b3 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 1802 | } |
Chris Lattner | 3474c20 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 1803 | |
| 1804 | /// EmitScalarConversion - Emit a conversion from the specified type to the |
| 1805 | /// specified destination type, both of which are LLVM scalar types. |
Chris Lattner | 42e6b81 | 2007-08-26 16:34:22 +0000 | [diff] [blame] | 1806 | Value *CodeGenFunction::EmitScalarConversion(Value *Src, QualType SrcTy, |
| 1807 | QualType DstTy) { |
Chris Lattner | 3474c20 | 2007-08-26 06:48:56 +0000 | [diff] [blame] | 1808 | assert(!hasAggregateLLVMType(SrcTy) && !hasAggregateLLVMType(DstTy) && |
| 1809 | "Invalid scalar expression to emit"); |
| 1810 | return ScalarExprEmitter(*this).EmitScalarConversion(Src, SrcTy, DstTy); |
| 1811 | } |
Chris Lattner | 42e6b81 | 2007-08-26 16:34:22 +0000 | [diff] [blame] | 1812 | |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1813 | /// EmitComplexToScalarConversion - Emit a conversion from the specified complex |
| 1814 | /// type to the specified destination type, where the destination type is an |
| 1815 | /// LLVM scalar type. |
Chris Lattner | 42e6b81 | 2007-08-26 16:34:22 +0000 | [diff] [blame] | 1816 | Value *CodeGenFunction::EmitComplexToScalarConversion(ComplexPairTy Src, |
| 1817 | QualType SrcTy, |
| 1818 | QualType DstTy) { |
Chris Lattner | f3bc75a | 2008-04-04 16:54:41 +0000 | [diff] [blame] | 1819 | assert(SrcTy->isAnyComplexType() && !hasAggregateLLVMType(DstTy) && |
Chris Lattner | 42e6b81 | 2007-08-26 16:34:22 +0000 | [diff] [blame] | 1820 | "Invalid complex -> scalar conversion"); |
| 1821 | return ScalarExprEmitter(*this).EmitComplexToScalarConversion(Src, SrcTy, |
| 1822 | DstTy); |
| 1823 | } |
Anders Carlsson | b9eb82c | 2007-12-10 19:35:18 +0000 | [diff] [blame] | 1824 | |
| 1825 | Value *CodeGenFunction::EmitShuffleVector(Value* V1, Value *V2, ...) { |
| 1826 | assert(V1->getType() == V2->getType() && |
| 1827 | "Vector operands must be of the same type"); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1828 | unsigned NumElements = |
Anders Carlsson | b9eb82c | 2007-12-10 19:35:18 +0000 | [diff] [blame] | 1829 | cast<llvm::VectorType>(V1->getType())->getNumElements(); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1830 | |
Anders Carlsson | b9eb82c | 2007-12-10 19:35:18 +0000 | [diff] [blame] | 1831 | va_list va; |
| 1832 | va_start(va, V2); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1833 | |
Anders Carlsson | b9eb82c | 2007-12-10 19:35:18 +0000 | [diff] [blame] | 1834 | llvm::SmallVector<llvm::Constant*, 16> Args; |
Anders Carlsson | b9eb82c | 2007-12-10 19:35:18 +0000 | [diff] [blame] | 1835 | for (unsigned i = 0; i < NumElements; i++) { |
| 1836 | int n = va_arg(va, int); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1837 | assert(n >= 0 && n < (int)NumElements * 2 && |
Anders Carlsson | b9eb82c | 2007-12-10 19:35:18 +0000 | [diff] [blame] | 1838 | "Vector shuffle index out of bounds!"); |
Owen Anderson | 41a7502 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 1839 | Args.push_back(llvm::ConstantInt::get( |
| 1840 | llvm::Type::getInt32Ty(VMContext), n)); |
Anders Carlsson | b9eb82c | 2007-12-10 19:35:18 +0000 | [diff] [blame] | 1841 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1842 | |
Anders Carlsson | b9eb82c | 2007-12-10 19:35:18 +0000 | [diff] [blame] | 1843 | const char *Name = va_arg(va, const char *); |
| 1844 | va_end(va); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1845 | |
Owen Anderson | 3cc120a | 2009-07-28 21:22:35 +0000 | [diff] [blame] | 1846 | llvm::Constant *Mask = llvm::ConstantVector::get(&Args[0], NumElements); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1847 | |
Anders Carlsson | b9eb82c | 2007-12-10 19:35:18 +0000 | [diff] [blame] | 1848 | return Builder.CreateShuffleVector(V1, V2, Mask, Name); |
| 1849 | } |
| 1850 | |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1851 | llvm::Value *CodeGenFunction::EmitVector(llvm::Value * const *Vals, |
Chris Lattner | 6284378 | 2008-07-26 20:15:14 +0000 | [diff] [blame] | 1852 | unsigned NumVals, bool isSplat) { |
Anders Carlsson | f5f6544 | 2007-12-15 21:23:30 +0000 | [diff] [blame] | 1853 | llvm::Value *Vec |
Owen Anderson | 7ec07a5 | 2009-07-30 23:11:26 +0000 | [diff] [blame] | 1854 | = llvm::UndefValue::get(llvm::VectorType::get(Vals[0]->getType(), NumVals)); |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1855 | |
Chris Lattner | 6284378 | 2008-07-26 20:15:14 +0000 | [diff] [blame] | 1856 | for (unsigned i = 0, e = NumVals; i != e; ++i) { |
Nate Begeman | 330aaa7 | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 1857 | llvm::Value *Val = isSplat ? Vals[0] : Vals[i]; |
Owen Anderson | 41a7502 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 1858 | llvm::Value *Idx = llvm::ConstantInt::get( |
| 1859 | llvm::Type::getInt32Ty(VMContext), i); |
Nate Begeman | 330aaa7 | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 1860 | Vec = Builder.CreateInsertElement(Vec, Val, Idx, "tmp"); |
Anders Carlsson | f5f6544 | 2007-12-15 21:23:30 +0000 | [diff] [blame] | 1861 | } |
Mike Stump | 4a3999f | 2009-09-09 13:00:44 +0000 | [diff] [blame] | 1862 | |
| 1863 | return Vec; |
Anders Carlsson | f5f6544 | 2007-12-15 21:23:30 +0000 | [diff] [blame] | 1864 | } |