Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1 | //===--- CGExpr.cpp - Emit LLVM Code from Expressions ---------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 959e5be | 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 | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This contains code to emit Expr nodes as LLVM code. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "CodeGenFunction.h" |
| 15 | #include "CodeGenModule.h" |
Daniel Dunbar | a8f0205 | 2008-09-08 21:33:45 +0000 | [diff] [blame] | 16 | #include "CGCall.h" |
Daniel Dunbar | 84bb85f | 2008-08-13 00:59:25 +0000 | [diff] [blame] | 17 | #include "CGObjCRuntime.h" |
Daniel Dunbar | eee5cd1 | 2008-08-11 05:00:27 +0000 | [diff] [blame] | 18 | #include "clang/AST/ASTContext.h" |
Daniel Dunbar | 64789f8 | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 19 | #include "clang/AST/DeclObjC.h" |
Eli Friedman | a04e70d | 2008-05-17 20:03:47 +0000 | [diff] [blame] | 20 | #include "llvm/Target/TargetData.h" |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 21 | using namespace clang; |
| 22 | using namespace CodeGen; |
| 23 | |
| 24 | //===--------------------------------------------------------------------===// |
| 25 | // Miscellaneous Helper Methods |
| 26 | //===--------------------------------------------------------------------===// |
| 27 | |
| 28 | /// CreateTempAlloca - This creates a alloca and inserts it into the entry |
| 29 | /// block. |
| 30 | llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(const llvm::Type *Ty, |
| 31 | const char *Name) { |
| 32 | return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt); |
| 33 | } |
| 34 | |
| 35 | /// EvaluateExprAsBool - Perform the usual unary conversions on the specified |
| 36 | /// expression and compare the result against zero, returning an Int1Ty value. |
| 37 | llvm::Value *CodeGenFunction::EvaluateExprAsBool(const Expr *E) { |
Chris Lattner | cc50a51 | 2007-08-26 16:46:58 +0000 | [diff] [blame] | 38 | QualType BoolTy = getContext().BoolTy; |
Chris Lattner | de0908b | 2008-04-04 16:54:41 +0000 | [diff] [blame] | 39 | if (!E->getType()->isAnyComplexType()) |
Chris Lattner | cc50a51 | 2007-08-26 16:46:58 +0000 | [diff] [blame] | 40 | return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 41 | |
Chris Lattner | cc50a51 | 2007-08-26 16:46:58 +0000 | [diff] [blame] | 42 | return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 43 | } |
| 44 | |
Chris Lattner | e24c4cf | 2007-08-31 22:49:20 +0000 | [diff] [blame] | 45 | /// EmitAnyExpr - Emit code to compute the specified expression which can have |
| 46 | /// any type. The result is returned as an RValue struct. If this is an |
| 47 | /// aggregate expression, the aggloc/agglocvolatile arguments indicate where |
| 48 | /// the result should be returned. |
| 49 | RValue CodeGenFunction::EmitAnyExpr(const Expr *E, llvm::Value *AggLoc, |
| 50 | bool isAggLocVolatile) { |
| 51 | if (!hasAggregateLLVMType(E->getType())) |
| 52 | return RValue::get(EmitScalarExpr(E)); |
Chris Lattner | de0908b | 2008-04-04 16:54:41 +0000 | [diff] [blame] | 53 | else if (E->getType()->isAnyComplexType()) |
Chris Lattner | e24c4cf | 2007-08-31 22:49:20 +0000 | [diff] [blame] | 54 | return RValue::getComplex(EmitComplexExpr(E)); |
| 55 | |
| 56 | EmitAggExpr(E, AggLoc, isAggLocVolatile); |
| 57 | return RValue::getAggregate(AggLoc); |
| 58 | } |
| 59 | |
Daniel Dunbar | 0a2da0f | 2008-09-09 01:06:48 +0000 | [diff] [blame] | 60 | /// EmitAnyExprToTemp - Similary to EmitAnyExpr(), however, the result |
| 61 | /// will always be accessible even if no aggregate location is |
| 62 | /// provided. |
| 63 | RValue CodeGenFunction::EmitAnyExprToTemp(const Expr *E, llvm::Value *AggLoc, |
| 64 | bool isAggLocVolatile) { |
| 65 | if (!AggLoc && hasAggregateLLVMType(E->getType()) && |
| 66 | !E->getType()->isAnyComplexType()) |
| 67 | AggLoc = CreateTempAlloca(ConvertType(E->getType()), "agg.tmp"); |
| 68 | return EmitAnyExpr(E, AggLoc, isAggLocVolatile); |
| 69 | } |
| 70 | |
Dan Gohman | 4751a3a | 2008-05-22 00:50:06 +0000 | [diff] [blame] | 71 | /// getAccessedFieldNo - Given an encoded value and a result number, return |
| 72 | /// the input field number being accessed. |
| 73 | unsigned CodeGenFunction::getAccessedFieldNo(unsigned Idx, |
| 74 | const llvm::Constant *Elts) { |
| 75 | if (isa<llvm::ConstantAggregateZero>(Elts)) |
| 76 | return 0; |
| 77 | |
| 78 | return cast<llvm::ConstantInt>(Elts->getOperand(Idx))->getZExtValue(); |
| 79 | } |
| 80 | |
Chris Lattner | e24c4cf | 2007-08-31 22:49:20 +0000 | [diff] [blame] | 81 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 82 | //===----------------------------------------------------------------------===// |
| 83 | // LValue Expression Emission |
| 84 | //===----------------------------------------------------------------------===// |
| 85 | |
Daniel Dunbar | de1bd94 | 2008-08-25 20:45:57 +0000 | [diff] [blame] | 86 | LValue CodeGenFunction::EmitUnsupportedLValue(const Expr *E, |
| 87 | const char *Name) { |
| 88 | ErrorUnsupported(E, Name); |
| 89 | llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType())); |
| 90 | return LValue::MakeAddr(llvm::UndefValue::get(Ty), |
| 91 | E->getType().getCVRQualifiers()); |
| 92 | } |
| 93 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 94 | /// EmitLValue - Emit code to compute a designator that specifies the location |
| 95 | /// of the expression. |
| 96 | /// |
| 97 | /// This can return one of two things: a simple address or a bitfield |
| 98 | /// reference. In either case, the LLVM Value* in the LValue structure is |
| 99 | /// guaranteed to be an LLVM pointer type. |
| 100 | /// |
| 101 | /// If this returns a bitfield reference, nothing about the pointee type of |
| 102 | /// the LLVM value is known: For example, it may not be a pointer to an |
| 103 | /// integer. |
| 104 | /// |
| 105 | /// If this returns a normal address, and if the lvalue's C type is fixed |
| 106 | /// size, this method guarantees that the returned pointer type will point to |
| 107 | /// an LLVM type of the same size of the lvalue's type. If the lvalue has a |
| 108 | /// variable length type, this is not possible. |
| 109 | /// |
| 110 | LValue CodeGenFunction::EmitLValue(const Expr *E) { |
| 111 | switch (E->getStmtClass()) { |
Daniel Dunbar | de1bd94 | 2008-08-25 20:45:57 +0000 | [diff] [blame] | 112 | default: return EmitUnsupportedLValue(E, "l-value expression"); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 113 | |
Daniel Dunbar | ef0d4c7 | 2008-09-04 03:20:13 +0000 | [diff] [blame] | 114 | case Expr::BinaryOperatorClass: |
| 115 | return EmitBinaryOperatorLValue(cast<BinaryOperator>(E)); |
Douglas Gregor | 65fedaf | 2008-11-14 16:09:21 +0000 | [diff] [blame] | 116 | case Expr::CallExprClass: |
| 117 | case Expr::CXXOperatorCallExprClass: |
| 118 | return EmitCallExprLValue(cast<CallExpr>(E)); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 119 | case Expr::DeclRefExprClass: return EmitDeclRefLValue(cast<DeclRefExpr>(E)); |
| 120 | case Expr::ParenExprClass:return EmitLValue(cast<ParenExpr>(E)->getSubExpr()); |
Chris Lattner | 6990929 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 121 | case Expr::PredefinedExprClass: |
| 122 | return EmitPredefinedLValue(cast<PredefinedExpr>(E)); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 123 | case Expr::StringLiteralClass: |
| 124 | return EmitStringLiteralLValue(cast<StringLiteral>(E)); |
Chris Lattner | b326b17 | 2008-03-30 23:03:07 +0000 | [diff] [blame] | 125 | |
Argiris Kirtzidis | bf615b0 | 2008-09-10 02:36:38 +0000 | [diff] [blame] | 126 | case Expr::CXXConditionDeclExprClass: |
| 127 | return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E)); |
| 128 | |
Daniel Dunbar | 5e10589 | 2008-08-23 10:51:21 +0000 | [diff] [blame] | 129 | case Expr::ObjCMessageExprClass: |
| 130 | return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E)); |
Chris Lattner | b326b17 | 2008-03-30 23:03:07 +0000 | [diff] [blame] | 131 | case Expr::ObjCIvarRefExprClass: |
| 132 | return EmitObjCIvarRefLValue(cast<ObjCIvarRefExpr>(E)); |
Daniel Dunbar | de1bd94 | 2008-08-25 20:45:57 +0000 | [diff] [blame] | 133 | case Expr::ObjCPropertyRefExprClass: |
Daniel Dunbar | e6c3175 | 2008-08-29 08:11:39 +0000 | [diff] [blame] | 134 | return EmitObjCPropertyRefLValue(cast<ObjCPropertyRefExpr>(E)); |
Fariborz Jahanian | b0973da | 2008-11-22 22:30:21 +0000 | [diff] [blame] | 135 | case Expr::ObjCKVCRefExprClass: |
| 136 | return EmitObjCKVCRefLValue(cast<ObjCKVCRefExpr>(E)); |
Douglas Gregor | d860663 | 2008-11-04 14:56:14 +0000 | [diff] [blame] | 137 | case Expr::ObjCSuperExprClass: |
| 138 | return EmitObjCSuperExpr(cast<ObjCSuperExpr>(E)); |
| 139 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 140 | case Expr::UnaryOperatorClass: |
| 141 | return EmitUnaryOpLValue(cast<UnaryOperator>(E)); |
| 142 | case Expr::ArraySubscriptExprClass: |
| 143 | return EmitArraySubscriptExpr(cast<ArraySubscriptExpr>(E)); |
Nate Begeman | af6ed50 | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 144 | case Expr::ExtVectorElementExprClass: |
| 145 | return EmitExtVectorElementExpr(cast<ExtVectorElementExpr>(E)); |
Devang Patel | 41b6625 | 2007-10-23 20:28:39 +0000 | [diff] [blame] | 146 | case Expr::MemberExprClass: return EmitMemberExpr(cast<MemberExpr>(E)); |
Eli Friedman | f3c2cb4 | 2008-05-13 23:18:27 +0000 | [diff] [blame] | 147 | case Expr::CompoundLiteralExprClass: |
| 148 | return EmitCompoundLiteralLValue(cast<CompoundLiteralExpr>(E)); |
Chris Lattner | a5f779dc | 2008-12-12 05:35:08 +0000 | [diff] [blame] | 149 | case Expr::ChooseExprClass: |
| 150 | // __builtin_choose_expr is the lvalue of the selected operand. |
| 151 | if (cast<ChooseExpr>(E)->isConditionTrue(getContext())) |
| 152 | return EmitLValue(cast<ChooseExpr>(E)->getLHS()); |
| 153 | else |
| 154 | return EmitLValue(cast<ChooseExpr>(E)->getRHS()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 155 | } |
| 156 | } |
| 157 | |
| 158 | /// EmitLoadOfLValue - Given an expression that represents a value lvalue, |
| 159 | /// this method emits the address of the lvalue, then loads the result as an |
| 160 | /// rvalue, returning the rvalue. |
| 161 | RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, QualType ExprType) { |
Fariborz Jahanian | d2f661a | 2008-11-19 17:34:06 +0000 | [diff] [blame] | 162 | if (LV.isObjCWeak()) { |
Fariborz Jahanian | 3305ad3 | 2008-11-18 21:45:40 +0000 | [diff] [blame] | 163 | // load of a __weak object. |
| 164 | llvm::Value *AddrWeakObj = LV.getAddress(); |
Fariborz Jahanian | 252d87f | 2008-11-18 22:37:34 +0000 | [diff] [blame] | 165 | llvm::Value *read_weak = CGM.getObjCRuntime().EmitObjCWeakRead(*this, |
Fariborz Jahanian | 3305ad3 | 2008-11-18 21:45:40 +0000 | [diff] [blame] | 166 | AddrWeakObj); |
| 167 | return RValue::get(read_weak); |
| 168 | } |
| 169 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 170 | if (LV.isSimple()) { |
| 171 | llvm::Value *Ptr = LV.getAddress(); |
| 172 | const llvm::Type *EltTy = |
| 173 | cast<llvm::PointerType>(Ptr->getType())->getElementType(); |
| 174 | |
| 175 | // Simple scalar l-value. |
Dan Gohman | 377ba9f | 2008-05-22 22:12:56 +0000 | [diff] [blame] | 176 | if (EltTy->isSingleValueType()) { |
Eli Friedman | 2e63054 | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 177 | llvm::Value *V = Builder.CreateLoad(Ptr, LV.isVolatileQualified(),"tmp"); |
Chris Lattner | 6b79f4e | 2008-01-30 07:01:17 +0000 | [diff] [blame] | 178 | |
| 179 | // Bool can have different representation in memory than in registers. |
| 180 | if (ExprType->isBooleanType()) { |
| 181 | if (V->getType() != llvm::Type::Int1Ty) |
| 182 | V = Builder.CreateTrunc(V, llvm::Type::Int1Ty, "tobool"); |
| 183 | } |
| 184 | |
| 185 | return RValue::get(V); |
| 186 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 187 | |
Chris Lattner | bdb8ffb | 2007-08-11 00:04:45 +0000 | [diff] [blame] | 188 | assert(ExprType->isFunctionType() && "Unknown scalar value"); |
| 189 | return RValue::get(Ptr); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | if (LV.isVectorElt()) { |
Eli Friedman | 2e63054 | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 193 | llvm::Value *Vec = Builder.CreateLoad(LV.getVectorAddr(), |
| 194 | LV.isVolatileQualified(), "tmp"); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 195 | return RValue::get(Builder.CreateExtractElement(Vec, LV.getVectorIdx(), |
| 196 | "vecext")); |
| 197 | } |
Chris Lattner | a735fac | 2007-08-03 00:16:29 +0000 | [diff] [blame] | 198 | |
| 199 | // If this is a reference to a subset of the elements of a vector, either |
| 200 | // shuffle the input or extract/insert them as appropriate. |
Nate Begeman | af6ed50 | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 201 | if (LV.isExtVectorElt()) |
| 202 | return EmitLoadOfExtVectorElementLValue(LV, ExprType); |
Lauro Ramos Venancio | b40307c | 2008-01-22 20:17:04 +0000 | [diff] [blame] | 203 | |
| 204 | if (LV.isBitfield()) |
| 205 | return EmitLoadOfBitfieldLValue(LV, ExprType); |
| 206 | |
Daniel Dunbar | e6c3175 | 2008-08-29 08:11:39 +0000 | [diff] [blame] | 207 | if (LV.isPropertyRef()) |
| 208 | return EmitLoadOfPropertyRefLValue(LV, ExprType); |
| 209 | |
Fariborz Jahanian | b0973da | 2008-11-22 22:30:21 +0000 | [diff] [blame] | 210 | if (LV.isKVCRef()) |
| 211 | return EmitLoadOfKVCRefLValue(LV, ExprType); |
| 212 | |
Lauro Ramos Venancio | b40307c | 2008-01-22 20:17:04 +0000 | [diff] [blame] | 213 | assert(0 && "Unknown LValue type!"); |
Chris Lattner | 1d2b461 | 2007-09-16 19:23:47 +0000 | [diff] [blame] | 214 | //an invalid RValue, but the assert will |
| 215 | //ensure that this point is never reached |
| 216 | return RValue(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 217 | } |
| 218 | |
Lauro Ramos Venancio | b40307c | 2008-01-22 20:17:04 +0000 | [diff] [blame] | 219 | RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV, |
| 220 | QualType ExprType) { |
Daniel Dunbar | 833b03b | 2008-08-06 05:08:45 +0000 | [diff] [blame] | 221 | unsigned StartBit = LV.getBitfieldStartBit(); |
| 222 | unsigned BitfieldSize = LV.getBitfieldSize(); |
Lauro Ramos Venancio | b40307c | 2008-01-22 20:17:04 +0000 | [diff] [blame] | 223 | llvm::Value *Ptr = LV.getBitfieldAddr(); |
Daniel Dunbar | 833b03b | 2008-08-06 05:08:45 +0000 | [diff] [blame] | 224 | |
| 225 | const llvm::Type *EltTy = |
Lauro Ramos Venancio | b40307c | 2008-01-22 20:17:04 +0000 | [diff] [blame] | 226 | cast<llvm::PointerType>(Ptr->getType())->getElementType(); |
Daniel Dunbar | 833b03b | 2008-08-06 05:08:45 +0000 | [diff] [blame] | 227 | unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy); |
Lauro Ramos Venancio | b40307c | 2008-01-22 20:17:04 +0000 | [diff] [blame] | 228 | |
Daniel Dunbar | 833b03b | 2008-08-06 05:08:45 +0000 | [diff] [blame] | 229 | // In some cases the bitfield may straddle two memory locations. |
| 230 | // Currently we load the entire bitfield, then do the magic to |
| 231 | // sign-extend it if necessary. This results in somewhat more code |
| 232 | // than necessary for the common case (one load), since two shifts |
| 233 | // accomplish both the masking and sign extension. |
| 234 | unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit); |
| 235 | llvm::Value *Val = Builder.CreateLoad(Ptr, LV.isVolatileQualified(), "tmp"); |
| 236 | |
| 237 | // Shift to proper location. |
Daniel Dunbar | 198edd5 | 2008-11-13 02:20:34 +0000 | [diff] [blame] | 238 | if (StartBit) |
| 239 | Val = Builder.CreateLShr(Val, llvm::ConstantInt::get(EltTy, StartBit), |
| 240 | "bf.lo"); |
Daniel Dunbar | 833b03b | 2008-08-06 05:08:45 +0000 | [diff] [blame] | 241 | |
| 242 | // Mask off unused bits. |
| 243 | llvm::Constant *LowMask = |
| 244 | llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, LowBits)); |
| 245 | Val = Builder.CreateAnd(Val, LowMask, "bf.lo.cleared"); |
| 246 | |
| 247 | // Fetch the high bits if necessary. |
| 248 | if (LowBits < BitfieldSize) { |
| 249 | unsigned HighBits = BitfieldSize - LowBits; |
| 250 | llvm::Value *HighPtr = |
| 251 | Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1), |
| 252 | "bf.ptr.hi"); |
| 253 | llvm::Value *HighVal = Builder.CreateLoad(HighPtr, |
| 254 | LV.isVolatileQualified(), |
| 255 | "tmp"); |
| 256 | |
| 257 | // Mask off unused bits. |
| 258 | llvm::Constant *HighMask = |
| 259 | llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, HighBits)); |
| 260 | HighVal = Builder.CreateAnd(HighVal, HighMask, "bf.lo.cleared"); |
Lauro Ramos Venancio | b40307c | 2008-01-22 20:17:04 +0000 | [diff] [blame] | 261 | |
Daniel Dunbar | 833b03b | 2008-08-06 05:08:45 +0000 | [diff] [blame] | 262 | // Shift to proper location and or in to bitfield value. |
| 263 | HighVal = Builder.CreateShl(HighVal, |
| 264 | llvm::ConstantInt::get(EltTy, LowBits)); |
| 265 | Val = Builder.CreateOr(Val, HighVal, "bf.val"); |
| 266 | } |
Lauro Ramos Venancio | b40307c | 2008-01-22 20:17:04 +0000 | [diff] [blame] | 267 | |
Daniel Dunbar | 833b03b | 2008-08-06 05:08:45 +0000 | [diff] [blame] | 268 | // Sign extend if necessary. |
| 269 | if (LV.isBitfieldSigned()) { |
| 270 | llvm::Value *ExtraBits = llvm::ConstantInt::get(EltTy, |
| 271 | EltTySize - BitfieldSize); |
| 272 | Val = Builder.CreateAShr(Builder.CreateShl(Val, ExtraBits), |
| 273 | ExtraBits, "bf.val.sext"); |
| 274 | } |
Eli Friedman | a04e70d | 2008-05-17 20:03:47 +0000 | [diff] [blame] | 275 | |
| 276 | // The bitfield type and the normal type differ when the storage sizes |
| 277 | // differ (currently just _Bool). |
Daniel Dunbar | 833b03b | 2008-08-06 05:08:45 +0000 | [diff] [blame] | 278 | Val = Builder.CreateIntCast(Val, ConvertType(ExprType), false, "tmp"); |
Eli Friedman | a04e70d | 2008-05-17 20:03:47 +0000 | [diff] [blame] | 279 | |
Daniel Dunbar | 833b03b | 2008-08-06 05:08:45 +0000 | [diff] [blame] | 280 | return RValue::get(Val); |
Lauro Ramos Venancio | b40307c | 2008-01-22 20:17:04 +0000 | [diff] [blame] | 281 | } |
| 282 | |
Daniel Dunbar | e6c3175 | 2008-08-29 08:11:39 +0000 | [diff] [blame] | 283 | RValue CodeGenFunction::EmitLoadOfPropertyRefLValue(LValue LV, |
| 284 | QualType ExprType) { |
| 285 | return EmitObjCPropertyGet(LV.getPropertyRefExpr()); |
| 286 | } |
| 287 | |
Fariborz Jahanian | b0973da | 2008-11-22 22:30:21 +0000 | [diff] [blame] | 288 | RValue CodeGenFunction::EmitLoadOfKVCRefLValue(LValue LV, |
| 289 | QualType ExprType) { |
| 290 | return EmitObjCPropertyGet(LV.getKVCRefExpr()); |
| 291 | } |
| 292 | |
Chris Lattner | 944f796 | 2007-08-03 16:18:34 +0000 | [diff] [blame] | 293 | // If this is a reference to a subset of the elements of a vector, either |
| 294 | // shuffle the input or extract/insert them as appropriate. |
Nate Begeman | af6ed50 | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 295 | RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV, |
| 296 | QualType ExprType) { |
Eli Friedman | 2e63054 | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 297 | llvm::Value *Vec = Builder.CreateLoad(LV.getExtVectorAddr(), |
| 298 | LV.isVolatileQualified(), "tmp"); |
Chris Lattner | 944f796 | 2007-08-03 16:18:34 +0000 | [diff] [blame] | 299 | |
Nate Begeman | c8e51f8 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 300 | const llvm::Constant *Elts = LV.getExtVectorElts(); |
Chris Lattner | 944f796 | 2007-08-03 16:18:34 +0000 | [diff] [blame] | 301 | |
| 302 | // If the result of the expression is a non-vector type, we must be |
| 303 | // extracting a single element. Just codegen as an extractelement. |
Chris Lattner | 4b49296 | 2007-08-10 17:10:08 +0000 | [diff] [blame] | 304 | const VectorType *ExprVT = ExprType->getAsVectorType(); |
| 305 | if (!ExprVT) { |
Dan Gohman | 4751a3a | 2008-05-22 00:50:06 +0000 | [diff] [blame] | 306 | unsigned InIdx = getAccessedFieldNo(0, Elts); |
Chris Lattner | 944f796 | 2007-08-03 16:18:34 +0000 | [diff] [blame] | 307 | llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx); |
| 308 | return RValue::get(Builder.CreateExtractElement(Vec, Elt, "tmp")); |
| 309 | } |
| 310 | |
| 311 | // If the source and destination have the same number of elements, use a |
| 312 | // vector shuffle instead of insert/extracts. |
Chris Lattner | 4b49296 | 2007-08-10 17:10:08 +0000 | [diff] [blame] | 313 | unsigned NumResultElts = ExprVT->getNumElements(); |
Chris Lattner | 944f796 | 2007-08-03 16:18:34 +0000 | [diff] [blame] | 314 | unsigned NumSourceElts = |
| 315 | cast<llvm::VectorType>(Vec->getType())->getNumElements(); |
| 316 | |
| 317 | if (NumResultElts == NumSourceElts) { |
| 318 | llvm::SmallVector<llvm::Constant*, 4> Mask; |
| 319 | for (unsigned i = 0; i != NumResultElts; ++i) { |
Dan Gohman | 4751a3a | 2008-05-22 00:50:06 +0000 | [diff] [blame] | 320 | unsigned InIdx = getAccessedFieldNo(i, Elts); |
Chris Lattner | 944f796 | 2007-08-03 16:18:34 +0000 | [diff] [blame] | 321 | Mask.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx)); |
| 322 | } |
| 323 | |
| 324 | llvm::Value *MaskV = llvm::ConstantVector::get(&Mask[0], Mask.size()); |
| 325 | Vec = Builder.CreateShuffleVector(Vec, |
| 326 | llvm::UndefValue::get(Vec->getType()), |
| 327 | MaskV, "tmp"); |
| 328 | return RValue::get(Vec); |
| 329 | } |
| 330 | |
| 331 | // Start out with an undef of the result type. |
| 332 | llvm::Value *Result = llvm::UndefValue::get(ConvertType(ExprType)); |
| 333 | |
| 334 | // Extract/Insert each element of the result. |
| 335 | for (unsigned i = 0; i != NumResultElts; ++i) { |
Dan Gohman | 4751a3a | 2008-05-22 00:50:06 +0000 | [diff] [blame] | 336 | unsigned InIdx = getAccessedFieldNo(i, Elts); |
Chris Lattner | 944f796 | 2007-08-03 16:18:34 +0000 | [diff] [blame] | 337 | llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx); |
| 338 | Elt = Builder.CreateExtractElement(Vec, Elt, "tmp"); |
| 339 | |
| 340 | llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, i); |
| 341 | Result = Builder.CreateInsertElement(Result, Elt, OutIdx, "tmp"); |
| 342 | } |
| 343 | |
| 344 | return RValue::get(Result); |
| 345 | } |
| 346 | |
| 347 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 348 | |
| 349 | /// EmitStoreThroughLValue - Store the specified rvalue into the specified |
| 350 | /// lvalue, where both are guaranteed to the have the same type, and that type |
| 351 | /// is 'Ty'. |
| 352 | void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst, |
| 353 | QualType Ty) { |
Chris Lattner | 5bfdd23 | 2007-08-03 16:28:33 +0000 | [diff] [blame] | 354 | if (!Dst.isSimple()) { |
| 355 | if (Dst.isVectorElt()) { |
| 356 | // Read/modify/write the vector, inserting the new element. |
Eli Friedman | 2e63054 | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 357 | llvm::Value *Vec = Builder.CreateLoad(Dst.getVectorAddr(), |
| 358 | Dst.isVolatileQualified(), "tmp"); |
Chris Lattner | e24c4cf | 2007-08-31 22:49:20 +0000 | [diff] [blame] | 359 | Vec = Builder.CreateInsertElement(Vec, Src.getScalarVal(), |
Chris Lattner | 5bfdd23 | 2007-08-03 16:28:33 +0000 | [diff] [blame] | 360 | Dst.getVectorIdx(), "vecins"); |
Eli Friedman | 2e63054 | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 361 | Builder.CreateStore(Vec, Dst.getVectorAddr(),Dst.isVolatileQualified()); |
Chris Lattner | 5bfdd23 | 2007-08-03 16:28:33 +0000 | [diff] [blame] | 362 | return; |
| 363 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 364 | |
Nate Begeman | af6ed50 | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 365 | // If this is an update of extended vector elements, insert them as |
| 366 | // appropriate. |
| 367 | if (Dst.isExtVectorElt()) |
| 368 | return EmitStoreThroughExtVectorComponentLValue(Src, Dst, Ty); |
Lauro Ramos Venancio | 2d7a34c | 2008-01-22 22:36:45 +0000 | [diff] [blame] | 369 | |
| 370 | if (Dst.isBitfield()) |
| 371 | return EmitStoreThroughBitfieldLValue(Src, Dst, Ty); |
| 372 | |
Daniel Dunbar | e6c3175 | 2008-08-29 08:11:39 +0000 | [diff] [blame] | 373 | if (Dst.isPropertyRef()) |
| 374 | return EmitStoreThroughPropertyRefLValue(Src, Dst, Ty); |
| 375 | |
Fariborz Jahanian | b0973da | 2008-11-22 22:30:21 +0000 | [diff] [blame] | 376 | if (Dst.isKVCRef()) |
| 377 | return EmitStoreThroughKVCRefLValue(Src, Dst, Ty); |
| 378 | |
Lauro Ramos Venancio | 14d3984 | 2008-01-22 22:38:35 +0000 | [diff] [blame] | 379 | assert(0 && "Unknown LValue type"); |
Chris Lattner | 5bfdd23 | 2007-08-03 16:28:33 +0000 | [diff] [blame] | 380 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 381 | |
Fariborz Jahanian | d2f661a | 2008-11-19 17:34:06 +0000 | [diff] [blame] | 382 | if (Dst.isObjCWeak()) { |
| 383 | // load of a __weak object. |
| 384 | llvm::Value *LvalueDst = Dst.getAddress(); |
| 385 | llvm::Value *src = Src.getScalarVal(); |
| 386 | CGM.getObjCRuntime().EmitObjCWeakAssign(*this, src, LvalueDst); |
| 387 | return; |
| 388 | } |
| 389 | |
| 390 | if (Dst.isObjCStrong()) { |
| 391 | // load of a __strong object. |
| 392 | llvm::Value *LvalueDst = Dst.getAddress(); |
| 393 | llvm::Value *src = Src.getScalarVal(); |
Fariborz Jahanian | 7052266 | 2008-11-20 20:53:20 +0000 | [diff] [blame] | 394 | if (Dst.isObjCIvar()) |
| 395 | CGM.getObjCRuntime().EmitObjCIvarAssign(*this, src, LvalueDst); |
| 396 | else |
| 397 | CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst); |
Fariborz Jahanian | d2f661a | 2008-11-19 17:34:06 +0000 | [diff] [blame] | 398 | return; |
| 399 | } |
| 400 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 401 | llvm::Value *DstAddr = Dst.getAddress(); |
Chris Lattner | bdb8ffb | 2007-08-11 00:04:45 +0000 | [diff] [blame] | 402 | assert(Src.isScalar() && "Can't emit an agg store with this method"); |
| 403 | // FIXME: Handle volatility etc. |
Chris Lattner | e24c4cf | 2007-08-31 22:49:20 +0000 | [diff] [blame] | 404 | const llvm::Type *SrcTy = Src.getScalarVal()->getType(); |
Christopher Lamb | 4fe5e70 | 2007-12-17 01:11:20 +0000 | [diff] [blame] | 405 | const llvm::PointerType *DstPtr = cast<llvm::PointerType>(DstAddr->getType()); |
| 406 | const llvm::Type *AddrTy = DstPtr->getElementType(); |
| 407 | unsigned AS = DstPtr->getAddressSpace(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 408 | |
Chris Lattner | bdb8ffb | 2007-08-11 00:04:45 +0000 | [diff] [blame] | 409 | if (AddrTy != SrcTy) |
Christopher Lamb | 4fe5e70 | 2007-12-17 01:11:20 +0000 | [diff] [blame] | 410 | DstAddr = Builder.CreateBitCast(DstAddr, |
| 411 | llvm::PointerType::get(SrcTy, AS), |
Chris Lattner | bdb8ffb | 2007-08-11 00:04:45 +0000 | [diff] [blame] | 412 | "storetmp"); |
Eli Friedman | 2e63054 | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 413 | Builder.CreateStore(Src.getScalarVal(), DstAddr, Dst.isVolatileQualified()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 414 | } |
| 415 | |
Lauro Ramos Venancio | 2d7a34c | 2008-01-22 22:36:45 +0000 | [diff] [blame] | 416 | void CodeGenFunction::EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst, |
Daniel Dunbar | 2668dd1 | 2008-11-19 09:36:46 +0000 | [diff] [blame] | 417 | QualType Ty, |
| 418 | llvm::Value **Result) { |
Daniel Dunbar | 833b03b | 2008-08-06 05:08:45 +0000 | [diff] [blame] | 419 | unsigned StartBit = Dst.getBitfieldStartBit(); |
| 420 | unsigned BitfieldSize = Dst.getBitfieldSize(); |
Lauro Ramos Venancio | 2d7a34c | 2008-01-22 22:36:45 +0000 | [diff] [blame] | 421 | llvm::Value *Ptr = Dst.getBitfieldAddr(); |
Lauro Ramos Venancio | 2d7a34c | 2008-01-22 22:36:45 +0000 | [diff] [blame] | 422 | |
Daniel Dunbar | 833b03b | 2008-08-06 05:08:45 +0000 | [diff] [blame] | 423 | const llvm::Type *EltTy = |
| 424 | cast<llvm::PointerType>(Ptr->getType())->getElementType(); |
| 425 | unsigned EltTySize = CGM.getTargetData().getTypeSizeInBits(EltTy); |
| 426 | |
| 427 | // Get the new value, cast to the appropriate type and masked to |
| 428 | // exactly the size of the bit-field. |
Daniel Dunbar | 2668dd1 | 2008-11-19 09:36:46 +0000 | [diff] [blame] | 429 | llvm::Value *SrcVal = Src.getScalarVal(); |
| 430 | llvm::Value *NewVal = Builder.CreateIntCast(SrcVal, EltTy, false, "tmp"); |
Daniel Dunbar | 833b03b | 2008-08-06 05:08:45 +0000 | [diff] [blame] | 431 | llvm::Constant *Mask = |
| 432 | llvm::ConstantInt::get(llvm::APInt::getLowBitsSet(EltTySize, BitfieldSize)); |
| 433 | NewVal = Builder.CreateAnd(NewVal, Mask, "bf.value"); |
Lauro Ramos Venancio | 2d7a34c | 2008-01-22 22:36:45 +0000 | [diff] [blame] | 434 | |
Daniel Dunbar | 2668dd1 | 2008-11-19 09:36:46 +0000 | [diff] [blame] | 435 | // Return the new value of the bit-field, if requested. |
| 436 | if (Result) { |
| 437 | // Cast back to the proper type for result. |
| 438 | const llvm::Type *SrcTy = SrcVal->getType(); |
| 439 | llvm::Value *SrcTrunc = Builder.CreateIntCast(NewVal, SrcTy, false, |
| 440 | "bf.reload.val"); |
| 441 | |
| 442 | // Sign extend if necessary. |
| 443 | if (Dst.isBitfieldSigned()) { |
| 444 | unsigned SrcTySize = CGM.getTargetData().getTypeSizeInBits(SrcTy); |
| 445 | llvm::Value *ExtraBits = llvm::ConstantInt::get(SrcTy, |
| 446 | SrcTySize - BitfieldSize); |
| 447 | SrcTrunc = Builder.CreateAShr(Builder.CreateShl(SrcTrunc, ExtraBits), |
| 448 | ExtraBits, "bf.reload.sext"); |
| 449 | } |
| 450 | |
| 451 | *Result = SrcTrunc; |
| 452 | } |
| 453 | |
Daniel Dunbar | 833b03b | 2008-08-06 05:08:45 +0000 | [diff] [blame] | 454 | // In some cases the bitfield may straddle two memory locations. |
| 455 | // Emit the low part first and check to see if the high needs to be |
| 456 | // done. |
| 457 | unsigned LowBits = std::min(BitfieldSize, EltTySize - StartBit); |
| 458 | llvm::Value *LowVal = Builder.CreateLoad(Ptr, Dst.isVolatileQualified(), |
| 459 | "bf.prev.low"); |
Eli Friedman | a04e70d | 2008-05-17 20:03:47 +0000 | [diff] [blame] | 460 | |
Daniel Dunbar | 833b03b | 2008-08-06 05:08:45 +0000 | [diff] [blame] | 461 | // Compute the mask for zero-ing the low part of this bitfield. |
| 462 | llvm::Constant *InvMask = |
| 463 | llvm::ConstantInt::get(~llvm::APInt::getBitsSet(EltTySize, StartBit, |
| 464 | StartBit + LowBits)); |
| 465 | |
| 466 | // Compute the new low part as |
| 467 | // LowVal = (LowVal & InvMask) | (NewVal << StartBit), |
| 468 | // with the shift of NewVal implicitly stripping the high bits. |
| 469 | llvm::Value *NewLowVal = |
| 470 | Builder.CreateShl(NewVal, llvm::ConstantInt::get(EltTy, StartBit), |
| 471 | "bf.value.lo"); |
| 472 | LowVal = Builder.CreateAnd(LowVal, InvMask, "bf.prev.lo.cleared"); |
| 473 | LowVal = Builder.CreateOr(LowVal, NewLowVal, "bf.new.lo"); |
| 474 | |
| 475 | // Write back. |
| 476 | Builder.CreateStore(LowVal, Ptr, Dst.isVolatileQualified()); |
Eli Friedman | a04e70d | 2008-05-17 20:03:47 +0000 | [diff] [blame] | 477 | |
Daniel Dunbar | 833b03b | 2008-08-06 05:08:45 +0000 | [diff] [blame] | 478 | // If the low part doesn't cover the bitfield emit a high part. |
| 479 | if (LowBits < BitfieldSize) { |
| 480 | unsigned HighBits = BitfieldSize - LowBits; |
| 481 | llvm::Value *HighPtr = |
| 482 | Builder.CreateGEP(Ptr, llvm::ConstantInt::get(llvm::Type::Int32Ty, 1), |
| 483 | "bf.ptr.hi"); |
| 484 | llvm::Value *HighVal = Builder.CreateLoad(HighPtr, |
| 485 | Dst.isVolatileQualified(), |
| 486 | "bf.prev.hi"); |
| 487 | |
| 488 | // Compute the mask for zero-ing the high part of this bitfield. |
| 489 | llvm::Constant *InvMask = |
| 490 | llvm::ConstantInt::get(~llvm::APInt::getLowBitsSet(EltTySize, HighBits)); |
| 491 | |
| 492 | // Compute the new high part as |
| 493 | // HighVal = (HighVal & InvMask) | (NewVal lshr LowBits), |
| 494 | // where the high bits of NewVal have already been cleared and the |
| 495 | // shift stripping the low bits. |
| 496 | llvm::Value *NewHighVal = |
| 497 | Builder.CreateLShr(NewVal, llvm::ConstantInt::get(EltTy, LowBits), |
| 498 | "bf.value.high"); |
| 499 | HighVal = Builder.CreateAnd(HighVal, InvMask, "bf.prev.hi.cleared"); |
| 500 | HighVal = Builder.CreateOr(HighVal, NewHighVal, "bf.new.hi"); |
| 501 | |
| 502 | // Write back. |
| 503 | Builder.CreateStore(HighVal, HighPtr, Dst.isVolatileQualified()); |
| 504 | } |
Lauro Ramos Venancio | 2d7a34c | 2008-01-22 22:36:45 +0000 | [diff] [blame] | 505 | } |
| 506 | |
Daniel Dunbar | e6c3175 | 2008-08-29 08:11:39 +0000 | [diff] [blame] | 507 | void CodeGenFunction::EmitStoreThroughPropertyRefLValue(RValue Src, |
| 508 | LValue Dst, |
| 509 | QualType Ty) { |
| 510 | EmitObjCPropertySet(Dst.getPropertyRefExpr(), Src); |
| 511 | } |
| 512 | |
Fariborz Jahanian | b0973da | 2008-11-22 22:30:21 +0000 | [diff] [blame] | 513 | void CodeGenFunction::EmitStoreThroughKVCRefLValue(RValue Src, |
| 514 | LValue Dst, |
| 515 | QualType Ty) { |
| 516 | EmitObjCPropertySet(Dst.getKVCRefExpr(), Src); |
| 517 | } |
| 518 | |
Nate Begeman | af6ed50 | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 519 | void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue(RValue Src, |
| 520 | LValue Dst, |
| 521 | QualType Ty) { |
Chris Lattner | 5bfdd23 | 2007-08-03 16:28:33 +0000 | [diff] [blame] | 522 | // This access turns into a read/modify/write of the vector. Load the input |
| 523 | // value now. |
Eli Friedman | 2e63054 | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 524 | llvm::Value *Vec = Builder.CreateLoad(Dst.getExtVectorAddr(), |
| 525 | Dst.isVolatileQualified(), "tmp"); |
Nate Begeman | c8e51f8 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 526 | const llvm::Constant *Elts = Dst.getExtVectorElts(); |
Chris Lattner | 5bfdd23 | 2007-08-03 16:28:33 +0000 | [diff] [blame] | 527 | |
Chris Lattner | e24c4cf | 2007-08-31 22:49:20 +0000 | [diff] [blame] | 528 | llvm::Value *SrcVal = Src.getScalarVal(); |
Chris Lattner | 5bfdd23 | 2007-08-03 16:28:33 +0000 | [diff] [blame] | 529 | |
Chris Lattner | 940966d | 2007-08-03 16:37:04 +0000 | [diff] [blame] | 530 | if (const VectorType *VTy = Ty->getAsVectorType()) { |
| 531 | unsigned NumSrcElts = VTy->getNumElements(); |
| 532 | |
| 533 | // Extract/Insert each element. |
| 534 | for (unsigned i = 0; i != NumSrcElts; ++i) { |
| 535 | llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, i); |
| 536 | Elt = Builder.CreateExtractElement(SrcVal, Elt, "tmp"); |
| 537 | |
Dan Gohman | 4751a3a | 2008-05-22 00:50:06 +0000 | [diff] [blame] | 538 | unsigned Idx = getAccessedFieldNo(i, Elts); |
Chris Lattner | 940966d | 2007-08-03 16:37:04 +0000 | [diff] [blame] | 539 | llvm::Value *OutIdx = llvm::ConstantInt::get(llvm::Type::Int32Ty, Idx); |
| 540 | Vec = Builder.CreateInsertElement(Vec, Elt, OutIdx, "tmp"); |
| 541 | } |
| 542 | } else { |
| 543 | // If the Src is a scalar (not a vector) it must be updating one element. |
Dan Gohman | 4751a3a | 2008-05-22 00:50:06 +0000 | [diff] [blame] | 544 | unsigned InIdx = getAccessedFieldNo(0, Elts); |
Chris Lattner | 5bfdd23 | 2007-08-03 16:28:33 +0000 | [diff] [blame] | 545 | llvm::Value *Elt = llvm::ConstantInt::get(llvm::Type::Int32Ty, InIdx); |
| 546 | Vec = Builder.CreateInsertElement(Vec, SrcVal, Elt, "tmp"); |
Chris Lattner | 5bfdd23 | 2007-08-03 16:28:33 +0000 | [diff] [blame] | 547 | } |
| 548 | |
Eli Friedman | 2e63054 | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 549 | Builder.CreateStore(Vec, Dst.getExtVectorAddr(), Dst.isVolatileQualified()); |
Chris Lattner | 5bfdd23 | 2007-08-03 16:28:33 +0000 | [diff] [blame] | 550 | } |
| 551 | |
Fariborz Jahanian | f0ca65f | 2008-11-20 00:15:42 +0000 | [diff] [blame] | 552 | /// SetVarDeclObjCAttribute - Set __weak/__strong attributes into the LValue |
| 553 | /// object. |
Fariborz Jahanian | 7052266 | 2008-11-20 20:53:20 +0000 | [diff] [blame] | 554 | static void SetVarDeclObjCAttribute(ASTContext &Ctx, const Decl *VD, |
Fariborz Jahanian | 6f19a0a | 2008-11-20 18:10:58 +0000 | [diff] [blame] | 555 | const QualType &Ty, LValue &LV) |
Fariborz Jahanian | f0ca65f | 2008-11-20 00:15:42 +0000 | [diff] [blame] | 556 | { |
| 557 | if (const ObjCGCAttr *A = VD->getAttr<ObjCGCAttr>()) { |
| 558 | ObjCGCAttr::GCAttrTypes attrType = A->getType(); |
| 559 | LValue::SetObjCType(attrType == ObjCGCAttr::Weak, |
| 560 | attrType == ObjCGCAttr::Strong, LV); |
| 561 | } |
Fariborz Jahanian | 6f19a0a | 2008-11-20 18:10:58 +0000 | [diff] [blame] | 562 | else if (Ctx.getLangOptions().ObjC1 && |
| 563 | Ctx.getLangOptions().getGCMode() != LangOptions::NonGC) { |
| 564 | // Default behavious under objective-c's gc is for objective-c pointers |
| 565 | // be treated as though they were declared as __strong. |
| 566 | if (Ctx.isObjCObjectPointerType(Ty)) |
Fariborz Jahanian | f0ca65f | 2008-11-20 00:15:42 +0000 | [diff] [blame] | 567 | LValue::SetObjCType(false, true, LV); |
| 568 | } |
| 569 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 570 | |
| 571 | LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) { |
Steve Naroff | 72a6ebc | 2008-04-15 22:42:06 +0000 | [diff] [blame] | 572 | const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl()); |
| 573 | |
Chris Lattner | 8c7c6a1 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 574 | if (VD && (VD->isBlockVarDecl() || isa<ParmVarDecl>(VD) || |
| 575 | isa<ImplicitParamDecl>(VD))) { |
Fariborz Jahanian | f0ca65f | 2008-11-20 00:15:42 +0000 | [diff] [blame] | 576 | LValue LV; |
| 577 | if (VD->getStorageClass() == VarDecl::Extern) { |
| 578 | LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD), |
| 579 | E->getType().getCVRQualifiers()); |
| 580 | } |
Lauro Ramos Venancio | 2348d97 | 2008-02-16 22:30:38 +0000 | [diff] [blame] | 581 | else { |
Steve Naroff | 72a6ebc | 2008-04-15 22:42:06 +0000 | [diff] [blame] | 582 | llvm::Value *V = LocalDeclMap[VD]; |
Lauro Ramos Venancio | 2348d97 | 2008-02-16 22:30:38 +0000 | [diff] [blame] | 583 | assert(V && "BlockVarDecl not entered in LocalDeclMap?"); |
Fariborz Jahanian | f0ca65f | 2008-11-20 00:15:42 +0000 | [diff] [blame] | 584 | LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers()); |
Lauro Ramos Venancio | 2348d97 | 2008-02-16 22:30:38 +0000 | [diff] [blame] | 585 | } |
Fariborz Jahanian | f0ca65f | 2008-11-20 00:15:42 +0000 | [diff] [blame] | 586 | if (VD->isBlockVarDecl() && |
| 587 | (VD->getStorageClass() == VarDecl::Static || |
| 588 | VD->getStorageClass() == VarDecl::Extern)) |
Fariborz Jahanian | 6f19a0a | 2008-11-20 18:10:58 +0000 | [diff] [blame] | 589 | SetVarDeclObjCAttribute(getContext(), VD, E->getType(), LV); |
Fariborz Jahanian | f0ca65f | 2008-11-20 00:15:42 +0000 | [diff] [blame] | 590 | return LV; |
Steve Naroff | 72a6ebc | 2008-04-15 22:42:06 +0000 | [diff] [blame] | 591 | } else if (VD && VD->isFileVarDecl()) { |
Fariborz Jahanian | c192d4d | 2008-11-18 20:18:11 +0000 | [diff] [blame] | 592 | LValue LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD), |
| 593 | E->getType().getCVRQualifiers()); |
Fariborz Jahanian | 6f19a0a | 2008-11-20 18:10:58 +0000 | [diff] [blame] | 594 | SetVarDeclObjCAttribute(getContext(), VD, E->getType(), LV); |
Fariborz Jahanian | c192d4d | 2008-11-18 20:18:11 +0000 | [diff] [blame] | 595 | return LV; |
Steve Naroff | 72a6ebc | 2008-04-15 22:42:06 +0000 | [diff] [blame] | 596 | } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) { |
Daniel Dunbar | 7bf5b3d | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 597 | return LValue::MakeAddr(CGM.GetAddrOfFunction(FD), |
Eli Friedman | 2e63054 | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 598 | E->getType().getCVRQualifiers()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 599 | } |
Chris Lattner | 8c7c6a1 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 600 | else if (const ImplicitParamDecl *IPD = |
| 601 | dyn_cast<ImplicitParamDecl>(E->getDecl())) { |
| 602 | llvm::Value *V = LocalDeclMap[IPD]; |
| 603 | assert(V && "BlockVarDecl not entered in LocalDeclMap?"); |
| 604 | return LValue::MakeAddr(V, E->getType().getCVRQualifiers()); |
| 605 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 606 | assert(0 && "Unimp declref"); |
Chris Lattner | 1d2b461 | 2007-09-16 19:23:47 +0000 | [diff] [blame] | 607 | //an invalid LValue, but the assert will |
| 608 | //ensure that this point is never reached. |
| 609 | return LValue(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 610 | } |
| 611 | |
| 612 | LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) { |
| 613 | // __extension__ doesn't affect lvalue-ness. |
| 614 | if (E->getOpcode() == UnaryOperator::Extension) |
| 615 | return EmitLValue(E->getSubExpr()); |
| 616 | |
Chris Lattner | c154ac1 | 2008-07-26 22:37:01 +0000 | [diff] [blame] | 617 | QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType()); |
Chris Lattner | 5bf7202 | 2007-10-30 22:53:42 +0000 | [diff] [blame] | 618 | switch (E->getOpcode()) { |
| 619 | default: assert(0 && "Unknown unary operator lvalue!"); |
| 620 | case UnaryOperator::Deref: |
Eli Friedman | 2e63054 | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 621 | return LValue::MakeAddr(EmitScalarExpr(E->getSubExpr()), |
Chris Lattner | d5a56aa | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 622 | ExprTy->getAsPointerType()->getPointeeType() |
| 623 | .getCVRQualifiers()); |
Chris Lattner | 5bf7202 | 2007-10-30 22:53:42 +0000 | [diff] [blame] | 624 | case UnaryOperator::Real: |
| 625 | case UnaryOperator::Imag: |
| 626 | LValue LV = EmitLValue(E->getSubExpr()); |
Chris Lattner | 0730756 | 2008-03-19 05:19:41 +0000 | [diff] [blame] | 627 | unsigned Idx = E->getOpcode() == UnaryOperator::Imag; |
| 628 | return LValue::MakeAddr(Builder.CreateStructGEP(LV.getAddress(), |
Chris Lattner | d5a56aa | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 629 | Idx, "idx"), |
| 630 | ExprTy.getCVRQualifiers()); |
Chris Lattner | 5bf7202 | 2007-10-30 22:53:42 +0000 | [diff] [blame] | 631 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 632 | } |
| 633 | |
| 634 | LValue CodeGenFunction::EmitStringLiteralLValue(const StringLiteral *E) { |
Daniel Dunbar | 31fe9c3 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 635 | return LValue::MakeAddr(CGM.GetAddrOfConstantStringFromLiteral(E), 0); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 636 | } |
| 637 | |
Daniel Dunbar | a9f0be2 | 2008-10-17 21:58:32 +0000 | [diff] [blame] | 638 | LValue CodeGenFunction::EmitPredefinedFunctionName(unsigned Type) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 639 | std::string GlobalVarName; |
Daniel Dunbar | a9f0be2 | 2008-10-17 21:58:32 +0000 | [diff] [blame] | 640 | |
| 641 | switch (Type) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 642 | default: |
Daniel Dunbar | a9f0be2 | 2008-10-17 21:58:32 +0000 | [diff] [blame] | 643 | assert(0 && "Invalid type"); |
Chris Lattner | 6990929 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 644 | case PredefinedExpr::Func: |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 645 | GlobalVarName = "__func__."; |
| 646 | break; |
Chris Lattner | 6990929 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 647 | case PredefinedExpr::Function: |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 648 | GlobalVarName = "__FUNCTION__."; |
| 649 | break; |
Chris Lattner | 6990929 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 650 | case PredefinedExpr::PrettyFunction: |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 651 | // FIXME:: Demangle C++ method names |
| 652 | GlobalVarName = "__PRETTY_FUNCTION__."; |
| 653 | break; |
| 654 | } |
Daniel Dunbar | a9f0be2 | 2008-10-17 21:58:32 +0000 | [diff] [blame] | 655 | |
| 656 | std::string FunctionName; |
| 657 | if(const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurFuncDecl)) { |
Chris Lattner | 271d4c2 | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 658 | FunctionName = FD->getNameAsString(); |
Daniel Dunbar | a9f0be2 | 2008-10-17 21:58:32 +0000 | [diff] [blame] | 659 | } else { |
| 660 | // Just get the mangled name. |
| 661 | FunctionName = CurFn->getName(); |
| 662 | } |
| 663 | |
Chris Lattner | 6e6a597 | 2008-04-04 04:07:35 +0000 | [diff] [blame] | 664 | GlobalVarName += FunctionName; |
Daniel Dunbar | a9f0be2 | 2008-10-17 21:58:32 +0000 | [diff] [blame] | 665 | llvm::Constant *C = |
| 666 | CGM.GetAddrOfConstantCString(FunctionName, GlobalVarName.c_str()); |
| 667 | return LValue::MakeAddr(C, 0); |
| 668 | } |
| 669 | |
| 670 | LValue CodeGenFunction::EmitPredefinedLValue(const PredefinedExpr *E) { |
| 671 | switch (E->getIdentType()) { |
| 672 | default: |
| 673 | return EmitUnsupportedLValue(E, "predefined expression"); |
| 674 | case PredefinedExpr::Func: |
| 675 | case PredefinedExpr::Function: |
| 676 | case PredefinedExpr::PrettyFunction: |
| 677 | return EmitPredefinedFunctionName(E->getIdentType()); |
| 678 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 679 | } |
| 680 | |
| 681 | LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) { |
Ted Kremenek | 1c1700f | 2007-08-20 16:18:38 +0000 | [diff] [blame] | 682 | // The index must always be an integer, which is not an aggregate. Emit it. |
Chris Lattner | 9fba49a | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 683 | llvm::Value *Idx = EmitScalarExpr(E->getIdx()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 684 | |
| 685 | // If the base is a vector type, then we are forming a vector element lvalue |
| 686 | // with this subscript. |
Eli Friedman | 2e63054 | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 687 | if (E->getBase()->getType()->isVectorType()) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 688 | // Emit the vector as an lvalue to get its address. |
Eli Friedman | 2e63054 | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 689 | LValue LHS = EmitLValue(E->getBase()); |
Ted Kremenek | 1c1700f | 2007-08-20 16:18:38 +0000 | [diff] [blame] | 690 | assert(LHS.isSimple() && "Can only subscript lvalue vectors here!"); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 691 | // FIXME: This should properly sign/zero/extend or truncate Idx to i32. |
Eli Friedman | 2e63054 | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 692 | return LValue::MakeVectorElt(LHS.getAddress(), Idx, |
| 693 | E->getBase()->getType().getCVRQualifiers()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 694 | } |
| 695 | |
Ted Kremenek | 1c1700f | 2007-08-20 16:18:38 +0000 | [diff] [blame] | 696 | // The base must be a pointer, which is not an aggregate. Emit it. |
Chris Lattner | 9fba49a | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 697 | llvm::Value *Base = EmitScalarExpr(E->getBase()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 698 | |
Ted Kremenek | 1c1700f | 2007-08-20 16:18:38 +0000 | [diff] [blame] | 699 | // Extend or truncate the index type to 32 or 64-bits. |
Chris Lattner | 2af72ac | 2007-08-08 17:43:05 +0000 | [diff] [blame] | 700 | QualType IdxTy = E->getIdx()->getType(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 701 | bool IdxSigned = IdxTy->isSignedIntegerType(); |
| 702 | unsigned IdxBitwidth = cast<llvm::IntegerType>(Idx->getType())->getBitWidth(); |
| 703 | if (IdxBitwidth != LLVMPointerWidth) |
| 704 | Idx = Builder.CreateIntCast(Idx, llvm::IntegerType::get(LLVMPointerWidth), |
| 705 | IdxSigned, "idxprom"); |
| 706 | |
| 707 | // We know that the pointer points to a type of the correct size, unless the |
| 708 | // size is a VLA. |
Anders Carlsson | 3bb57e8 | 2008-12-21 00:11:23 +0000 | [diff] [blame] | 709 | if (const VariableArrayType *VAT = |
| 710 | getContext().getAsVariableArrayType(E->getType())) { |
| 711 | llvm::Value *VLASize = VLASizeMap[VAT]; |
| 712 | |
| 713 | Idx = Builder.CreateMul(Idx, VLASize); |
| 714 | |
Anders Carlsson | 76d19c8 | 2008-12-21 03:44:36 +0000 | [diff] [blame] | 715 | QualType BaseType = getContext().getBaseElementType(VAT); |
Anders Carlsson | 3bb57e8 | 2008-12-21 00:11:23 +0000 | [diff] [blame] | 716 | |
| 717 | uint64_t BaseTypeSize = getContext().getTypeSize(BaseType) / 8; |
| 718 | Idx = Builder.CreateUDiv(Idx, |
| 719 | llvm::ConstantInt::get(Idx->getType(), |
| 720 | BaseTypeSize)); |
| 721 | } |
| 722 | |
Chris Lattner | c154ac1 | 2008-07-26 22:37:01 +0000 | [diff] [blame] | 723 | QualType ExprTy = getContext().getCanonicalType(E->getBase()->getType()); |
Chris Lattner | d5a56aa | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 724 | |
Eli Friedman | 2e63054 | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 725 | return LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"), |
Chris Lattner | d5a56aa | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 726 | ExprTy->getAsPointerType()->getPointeeType() |
| 727 | .getCVRQualifiers()); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 728 | } |
| 729 | |
Nate Begeman | a1ae744 | 2008-05-13 21:03:02 +0000 | [diff] [blame] | 730 | static |
| 731 | llvm::Constant *GenerateConstantVector(llvm::SmallVector<unsigned, 4> &Elts) { |
| 732 | llvm::SmallVector<llvm::Constant *, 4> CElts; |
| 733 | |
| 734 | for (unsigned i = 0, e = Elts.size(); i != e; ++i) |
| 735 | CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, Elts[i])); |
| 736 | |
| 737 | return llvm::ConstantVector::get(&CElts[0], CElts.size()); |
| 738 | } |
| 739 | |
Chris Lattner | 6552019 | 2007-08-02 23:37:31 +0000 | [diff] [blame] | 740 | LValue CodeGenFunction:: |
Nate Begeman | af6ed50 | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 741 | EmitExtVectorElementExpr(const ExtVectorElementExpr *E) { |
Chris Lattner | 6552019 | 2007-08-02 23:37:31 +0000 | [diff] [blame] | 742 | // Emit the base vector as an l-value. |
| 743 | LValue Base = EmitLValue(E->getBase()); |
Chris Lattner | 6552019 | 2007-08-02 23:37:31 +0000 | [diff] [blame] | 744 | |
Nate Begeman | a1ae744 | 2008-05-13 21:03:02 +0000 | [diff] [blame] | 745 | // Encode the element access list into a vector of unsigned indices. |
| 746 | llvm::SmallVector<unsigned, 4> Indices; |
| 747 | E->getEncodedElementAccess(Indices); |
| 748 | |
| 749 | if (Base.isSimple()) { |
| 750 | llvm::Constant *CV = GenerateConstantVector(Indices); |
Eli Friedman | 2e63054 | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 751 | return LValue::MakeExtVectorElt(Base.getAddress(), CV, |
| 752 | E->getBase()->getType().getCVRQualifiers()); |
Nate Begeman | a1ae744 | 2008-05-13 21:03:02 +0000 | [diff] [blame] | 753 | } |
| 754 | assert(Base.isExtVectorElt() && "Can only subscript lvalue vec elts here!"); |
| 755 | |
| 756 | llvm::Constant *BaseElts = Base.getExtVectorElts(); |
| 757 | llvm::SmallVector<llvm::Constant *, 4> CElts; |
| 758 | |
| 759 | for (unsigned i = 0, e = Indices.size(); i != e; ++i) { |
| 760 | if (isa<llvm::ConstantAggregateZero>(BaseElts)) |
| 761 | CElts.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0)); |
| 762 | else |
| 763 | CElts.push_back(BaseElts->getOperand(Indices[i])); |
| 764 | } |
| 765 | llvm::Constant *CV = llvm::ConstantVector::get(&CElts[0], CElts.size()); |
Eli Friedman | 2e63054 | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 766 | return LValue::MakeExtVectorElt(Base.getExtVectorAddr(), CV, |
| 767 | E->getBase()->getType().getCVRQualifiers()); |
Chris Lattner | 6552019 | 2007-08-02 23:37:31 +0000 | [diff] [blame] | 768 | } |
| 769 | |
Devang Patel | 41b6625 | 2007-10-23 20:28:39 +0000 | [diff] [blame] | 770 | LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) { |
Devang Patel | e1f79db | 2007-12-11 21:33:16 +0000 | [diff] [blame] | 771 | bool isUnion = false; |
Fariborz Jahanian | 08c06f4 | 2008-11-21 18:14:01 +0000 | [diff] [blame] | 772 | bool isIvar = false; |
Devang Patel | 9dd3e2b | 2007-10-24 22:26:28 +0000 | [diff] [blame] | 773 | Expr *BaseExpr = E->getBase(); |
Devang Patel | 9dd3e2b | 2007-10-24 22:26:28 +0000 | [diff] [blame] | 774 | llvm::Value *BaseValue = NULL; |
Eli Friedman | 2e63054 | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 775 | unsigned CVRQualifiers=0; |
| 776 | |
Chris Lattner | 659079e | 2007-12-02 18:52:07 +0000 | [diff] [blame] | 777 | // If this is s.x, emit s as an lvalue. If it is s->x, emit s as a scalar. |
Devang Patel | e1f79db | 2007-12-11 21:33:16 +0000 | [diff] [blame] | 778 | if (E->isArrow()) { |
Devang Patel | 2b24fd9 | 2007-10-26 18:15:21 +0000 | [diff] [blame] | 779 | BaseValue = EmitScalarExpr(BaseExpr); |
Devang Patel | e1f79db | 2007-12-11 21:33:16 +0000 | [diff] [blame] | 780 | const PointerType *PTy = |
Chris Lattner | c154ac1 | 2008-07-26 22:37:01 +0000 | [diff] [blame] | 781 | cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType())); |
Devang Patel | e1f79db | 2007-12-11 21:33:16 +0000 | [diff] [blame] | 782 | if (PTy->getPointeeType()->isUnionType()) |
| 783 | isUnion = true; |
Eli Friedman | 2e63054 | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 784 | CVRQualifiers = PTy->getPointeeType().getCVRQualifiers(); |
Devang Patel | e1f79db | 2007-12-11 21:33:16 +0000 | [diff] [blame] | 785 | } |
Chris Lattner | 659079e | 2007-12-02 18:52:07 +0000 | [diff] [blame] | 786 | else { |
| 787 | LValue BaseLV = EmitLValue(BaseExpr); |
Fariborz Jahanian | 08c06f4 | 2008-11-21 18:14:01 +0000 | [diff] [blame] | 788 | if (BaseLV.isObjCIvar()) |
| 789 | isIvar = true; |
Chris Lattner | 659079e | 2007-12-02 18:52:07 +0000 | [diff] [blame] | 790 | // FIXME: this isn't right for bitfields. |
| 791 | BaseValue = BaseLV.getAddress(); |
Devang Patel | e1f79db | 2007-12-11 21:33:16 +0000 | [diff] [blame] | 792 | if (BaseExpr->getType()->isUnionType()) |
| 793 | isUnion = true; |
Eli Friedman | 2e63054 | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 794 | CVRQualifiers = BaseExpr->getType().getCVRQualifiers(); |
Chris Lattner | 659079e | 2007-12-02 18:52:07 +0000 | [diff] [blame] | 795 | } |
Devang Patel | 41b6625 | 2007-10-23 20:28:39 +0000 | [diff] [blame] | 796 | |
Douglas Gregor | 82d4477 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 797 | FieldDecl *Field = dyn_cast<FieldDecl>(E->getMemberDecl()); |
| 798 | // FIXME: Handle non-field member expressions |
| 799 | assert(Field && "No code generation for non-field member references"); |
Fariborz Jahanian | 08c06f4 | 2008-11-21 18:14:01 +0000 | [diff] [blame] | 800 | LValue MemExpLV = EmitLValueForField(BaseValue, Field, isUnion, CVRQualifiers); |
| 801 | LValue::SetObjCIvar(MemExpLV, isIvar); |
| 802 | return MemExpLV; |
Eli Friedman | d355011 | 2008-02-09 08:50:58 +0000 | [diff] [blame] | 803 | } |
Devang Patel | 41b6625 | 2007-10-23 20:28:39 +0000 | [diff] [blame] | 804 | |
Fariborz Jahanian | 86008c0 | 2008-12-15 20:35:07 +0000 | [diff] [blame] | 805 | LValue CodeGenFunction::EmitLValueForBitfield(llvm::Value* BaseValue, |
| 806 | FieldDecl* Field, |
| 807 | unsigned CVRQualifiers, |
| 808 | unsigned idx) { |
| 809 | // FIXME: CodeGenTypes should expose a method to get the appropriate |
| 810 | // type for FieldTy (the appropriate type is ABI-dependent). |
| 811 | const llvm::Type *FieldTy = CGM.getTypes().ConvertTypeForMem(Field->getType()); |
| 812 | const llvm::PointerType *BaseTy = |
| 813 | cast<llvm::PointerType>(BaseValue->getType()); |
| 814 | unsigned AS = BaseTy->getAddressSpace(); |
| 815 | BaseValue = Builder.CreateBitCast(BaseValue, |
| 816 | llvm::PointerType::get(FieldTy, AS), |
| 817 | "tmp"); |
| 818 | llvm::Value *V = Builder.CreateGEP(BaseValue, |
| 819 | llvm::ConstantInt::get(llvm::Type::Int32Ty, idx), |
| 820 | "tmp"); |
| 821 | |
| 822 | CodeGenTypes::BitFieldInfo bitFieldInfo = |
| 823 | CGM.getTypes().getBitFieldInfo(Field); |
| 824 | return LValue::MakeBitfield(V, bitFieldInfo.Begin, bitFieldInfo.Size, |
| 825 | Field->getType()->isSignedIntegerType(), |
| 826 | Field->getType().getCVRQualifiers()|CVRQualifiers); |
| 827 | } |
| 828 | |
Eli Friedman | d355011 | 2008-02-09 08:50:58 +0000 | [diff] [blame] | 829 | LValue CodeGenFunction::EmitLValueForField(llvm::Value* BaseValue, |
| 830 | FieldDecl* Field, |
Eli Friedman | 2e63054 | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 831 | bool isUnion, |
| 832 | unsigned CVRQualifiers) |
Eli Friedman | d355011 | 2008-02-09 08:50:58 +0000 | [diff] [blame] | 833 | { |
Eli Friedman | d355011 | 2008-02-09 08:50:58 +0000 | [diff] [blame] | 834 | unsigned idx = CGM.getTypes().getLLVMFieldNo(Field); |
Lauro Ramos Venancio | 63fc38f | 2008-02-07 19:29:53 +0000 | [diff] [blame] | 835 | |
Fariborz Jahanian | 86008c0 | 2008-12-15 20:35:07 +0000 | [diff] [blame] | 836 | if (Field->isBitField()) |
| 837 | return EmitLValueForBitfield(BaseValue, Field, CVRQualifiers, idx); |
Fariborz Jahanian | f0ca65f | 2008-11-20 00:15:42 +0000 | [diff] [blame] | 838 | |
Fariborz Jahanian | 86008c0 | 2008-12-15 20:35:07 +0000 | [diff] [blame] | 839 | llvm::Value *V = Builder.CreateStructGEP(BaseValue, idx, "tmp"); |
Eli Friedman | 6681374 | 2008-05-29 11:33:25 +0000 | [diff] [blame] | 840 | |
Devang Patel | 9b1ca9e | 2007-10-26 19:42:18 +0000 | [diff] [blame] | 841 | // Match union field type. |
Lauro Ramos Venancio | 63fc38f | 2008-02-07 19:29:53 +0000 | [diff] [blame] | 842 | if (isUnion) { |
Eli Friedman | 2e63054 | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 843 | const llvm::Type *FieldTy = |
| 844 | CGM.getTypes().ConvertTypeForMem(Field->getType()); |
Devang Patel | 0f2a8fb | 2007-10-30 20:59:40 +0000 | [diff] [blame] | 845 | const llvm::PointerType * BaseTy = |
| 846 | cast<llvm::PointerType>(BaseValue->getType()); |
Eli Friedman | cecdc6b | 2008-05-21 13:24:44 +0000 | [diff] [blame] | 847 | unsigned AS = BaseTy->getAddressSpace(); |
| 848 | V = Builder.CreateBitCast(V, |
| 849 | llvm::PointerType::get(FieldTy, AS), |
| 850 | "tmp"); |
Devang Patel | 9b1ca9e | 2007-10-26 19:42:18 +0000 | [diff] [blame] | 851 | } |
Lauro Ramos Venancio | b40307c | 2008-01-22 20:17:04 +0000 | [diff] [blame] | 852 | |
Fariborz Jahanian | f0ca65f | 2008-11-20 00:15:42 +0000 | [diff] [blame] | 853 | LValue LV = |
| 854 | LValue::MakeAddr(V, |
| 855 | Field->getType().getCVRQualifiers()|CVRQualifiers); |
| 856 | if (const ObjCGCAttr *A = Field->getAttr<ObjCGCAttr>()) { |
| 857 | ObjCGCAttr::GCAttrTypes attrType = A->getType(); |
| 858 | // __weak attribute on a field is ignored. |
| 859 | LValue::SetObjCType(false, attrType == ObjCGCAttr::Strong, LV); |
| 860 | } |
| 861 | else if (CGM.getLangOptions().ObjC1 && |
| 862 | CGM.getLangOptions().getGCMode() != LangOptions::NonGC) { |
| 863 | QualType ExprTy = Field->getType(); |
| 864 | if (getContext().isObjCObjectPointerType(ExprTy)) |
| 865 | LValue::SetObjCType(false, true, LV); |
| 866 | } |
| 867 | return LV; |
Devang Patel | 41b6625 | 2007-10-23 20:28:39 +0000 | [diff] [blame] | 868 | } |
| 869 | |
Eli Friedman | 2e63054 | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 870 | LValue CodeGenFunction::EmitCompoundLiteralLValue(const CompoundLiteralExpr* E) |
| 871 | { |
Eli Friedman | f3c2cb4 | 2008-05-13 23:18:27 +0000 | [diff] [blame] | 872 | const llvm::Type *LTy = ConvertType(E->getType()); |
| 873 | llvm::Value *DeclPtr = CreateTempAlloca(LTy, ".compoundliteral"); |
| 874 | |
| 875 | const Expr* InitExpr = E->getInitializer(); |
Eli Friedman | 2e63054 | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 876 | LValue Result = LValue::MakeAddr(DeclPtr, E->getType().getCVRQualifiers()); |
Eli Friedman | f3c2cb4 | 2008-05-13 23:18:27 +0000 | [diff] [blame] | 877 | |
| 878 | if (E->getType()->isComplexType()) { |
| 879 | EmitComplexExprIntoAddr(InitExpr, DeclPtr, false); |
| 880 | } else if (hasAggregateLLVMType(E->getType())) { |
| 881 | EmitAnyExpr(InitExpr, DeclPtr, false); |
| 882 | } else { |
| 883 | EmitStoreThroughLValue(EmitAnyExpr(InitExpr), Result, E->getType()); |
| 884 | } |
| 885 | |
| 886 | return Result; |
| 887 | } |
| 888 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 889 | //===--------------------------------------------------------------------===// |
| 890 | // Expression Emission |
| 891 | //===--------------------------------------------------------------------===// |
| 892 | |
Chris Lattner | b2cb9cb | 2007-08-20 22:37:10 +0000 | [diff] [blame] | 893 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 894 | RValue CodeGenFunction::EmitCallExpr(const CallExpr *E) { |
Anders Carlsson | 4986530 | 2007-08-20 18:05:56 +0000 | [diff] [blame] | 895 | if (const ImplicitCastExpr *IcExpr = |
| 896 | dyn_cast<const ImplicitCastExpr>(E->getCallee())) |
| 897 | if (const DeclRefExpr *DRExpr = |
| 898 | dyn_cast<const DeclRefExpr>(IcExpr->getSubExpr())) |
| 899 | if (const FunctionDecl *FDecl = |
| 900 | dyn_cast<const FunctionDecl>(DRExpr->getDecl())) |
| 901 | if (unsigned builtinID = FDecl->getIdentifier()->getBuiltinID()) |
| 902 | return EmitBuiltinExpr(builtinID, E); |
Daniel Dunbar | ef0d4c7 | 2008-09-04 03:20:13 +0000 | [diff] [blame] | 903 | |
Chris Lattner | 9fba49a | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 904 | llvm::Value *Callee = EmitScalarExpr(E->getCallee()); |
Eli Friedman | 261f4ad | 2008-01-30 01:32:06 +0000 | [diff] [blame] | 905 | return EmitCallExpr(Callee, E->getCallee()->getType(), |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 906 | E->arg_begin(), E->arg_end()); |
Nate Begeman | 9f3bfb7 | 2008-01-17 17:46:27 +0000 | [diff] [blame] | 907 | } |
| 908 | |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 909 | RValue CodeGenFunction::EmitCallExpr(Expr *FnExpr, |
| 910 | CallExpr::const_arg_iterator ArgBeg, |
| 911 | CallExpr::const_arg_iterator ArgEnd) { |
| 912 | |
Nate Begeman | 9f3bfb7 | 2008-01-17 17:46:27 +0000 | [diff] [blame] | 913 | llvm::Value *Callee = EmitScalarExpr(FnExpr); |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 914 | return EmitCallExpr(Callee, FnExpr->getType(), ArgBeg, ArgEnd); |
Chris Lattner | 02c60f5 | 2007-08-31 04:44:06 +0000 | [diff] [blame] | 915 | } |
| 916 | |
Daniel Dunbar | ef0d4c7 | 2008-09-04 03:20:13 +0000 | [diff] [blame] | 917 | LValue CodeGenFunction::EmitBinaryOperatorLValue(const BinaryOperator *E) { |
| 918 | // Can only get l-value for binary operator expressions which are a |
| 919 | // simple assignment of aggregate type. |
| 920 | if (E->getOpcode() != BinaryOperator::Assign) |
| 921 | return EmitUnsupportedLValue(E, "binary l-value expression"); |
| 922 | |
| 923 | llvm::Value *Temp = CreateTempAlloca(ConvertType(E->getType())); |
| 924 | EmitAggExpr(E, Temp, false); |
| 925 | // FIXME: Are these qualifiers correct? |
| 926 | return LValue::MakeAddr(Temp, E->getType().getCVRQualifiers()); |
| 927 | } |
| 928 | |
Christopher Lamb | ad327ba | 2007-12-29 05:02:41 +0000 | [diff] [blame] | 929 | LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) { |
| 930 | // Can only get l-value for call expression returning aggregate type |
| 931 | RValue RV = EmitCallExpr(E); |
Eli Friedman | 2e63054 | 2008-06-13 23:01:12 +0000 | [diff] [blame] | 932 | // FIXME: can this be volatile? |
| 933 | return LValue::MakeAddr(RV.getAggregateAddr(), |
| 934 | E->getType().getCVRQualifiers()); |
Christopher Lamb | ad327ba | 2007-12-29 05:02:41 +0000 | [diff] [blame] | 935 | } |
| 936 | |
Argiris Kirtzidis | bf615b0 | 2008-09-10 02:36:38 +0000 | [diff] [blame] | 937 | LValue |
| 938 | CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) { |
| 939 | EmitLocalBlockVarDecl(*E->getVarDecl()); |
| 940 | return EmitDeclRefLValue(E); |
| 941 | } |
| 942 | |
Daniel Dunbar | 5e10589 | 2008-08-23 10:51:21 +0000 | [diff] [blame] | 943 | LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) { |
| 944 | // Can only get l-value for message expression returning aggregate type |
| 945 | RValue RV = EmitObjCMessageExpr(E); |
| 946 | // FIXME: can this be volatile? |
| 947 | return LValue::MakeAddr(RV.getAggregateAddr(), |
| 948 | E->getType().getCVRQualifiers()); |
| 949 | } |
| 950 | |
Daniel Dunbar | e856ac2 | 2008-09-24 04:00:38 +0000 | [diff] [blame] | 951 | llvm::Value *CodeGenFunction::EmitIvarOffset(ObjCInterfaceDecl *Interface, |
| 952 | const ObjCIvarDecl *Ivar) { |
Chris Lattner | b326b17 | 2008-03-30 23:03:07 +0000 | [diff] [blame] | 953 | // Objective-C objects are traditionally C structures with their layout |
| 954 | // defined at compile-time. In some implementations, their layout is not |
| 955 | // defined until run time in order to allow instance variables to be added to |
| 956 | // a class without recompiling all of the subclasses. If this is the case |
| 957 | // then the CGObjCRuntime subclass must return true to LateBoundIvars and |
| 958 | // implement the lookup itself. |
Daniel Dunbar | e856ac2 | 2008-09-24 04:00:38 +0000 | [diff] [blame] | 959 | if (CGM.getObjCRuntime().LateBoundIVars()) |
| 960 | assert(0 && "late-bound ivars are unsupported"); |
Chris Lattner | 6e6a597 | 2008-04-04 04:07:35 +0000 | [diff] [blame] | 961 | |
Daniel Dunbar | e856ac2 | 2008-09-24 04:00:38 +0000 | [diff] [blame] | 962 | const llvm::Type *InterfaceLTy = |
| 963 | CGM.getTypes().ConvertType(getContext().getObjCInterfaceType(Interface)); |
| 964 | const llvm::StructLayout *Layout = |
| 965 | CGM.getTargetData().getStructLayout(cast<llvm::StructType>(InterfaceLTy)); |
Fariborz Jahanian | 86008c0 | 2008-12-15 20:35:07 +0000 | [diff] [blame] | 966 | FieldDecl *Field = Interface->lookupFieldDeclForIvar(getContext(), Ivar); |
Daniel Dunbar | e856ac2 | 2008-09-24 04:00:38 +0000 | [diff] [blame] | 967 | uint64_t Offset = |
Fariborz Jahanian | 86008c0 | 2008-12-15 20:35:07 +0000 | [diff] [blame] | 968 | Layout->getElementOffset(CGM.getTypes().getLLVMFieldNo(Field)); |
Daniel Dunbar | e856ac2 | 2008-09-24 04:00:38 +0000 | [diff] [blame] | 969 | |
| 970 | return llvm::ConstantInt::get(CGM.getTypes().ConvertType(getContext().LongTy), |
| 971 | Offset); |
| 972 | } |
| 973 | |
| 974 | LValue CodeGenFunction::EmitLValueForIvar(llvm::Value *BaseValue, |
| 975 | const ObjCIvarDecl *Ivar, |
Fariborz Jahanian | 86008c0 | 2008-12-15 20:35:07 +0000 | [diff] [blame] | 976 | const FieldDecl *Field, |
Daniel Dunbar | e856ac2 | 2008-09-24 04:00:38 +0000 | [diff] [blame] | 977 | unsigned CVRQualifiers) { |
| 978 | // See comment in EmitIvarOffset. |
| 979 | if (CGM.getObjCRuntime().LateBoundIVars()) |
| 980 | assert(0 && "late-bound ivars are unsupported"); |
Daniel Dunbar | e856ac2 | 2008-09-24 04:00:38 +0000 | [diff] [blame] | 981 | // TODO: Add a special case for isa (index 0) |
Fariborz Jahanian | 86008c0 | 2008-12-15 20:35:07 +0000 | [diff] [blame] | 982 | unsigned Index = CGM.getTypes().getLLVMFieldNo(Field); |
Daniel Dunbar | e856ac2 | 2008-09-24 04:00:38 +0000 | [diff] [blame] | 983 | |
Fariborz Jahanian | 86008c0 | 2008-12-15 20:35:07 +0000 | [diff] [blame] | 984 | if (Ivar->isBitField()) { |
| 985 | return EmitLValueForBitfield(BaseValue, const_cast<FieldDecl *>(Field), |
| 986 | CVRQualifiers, Index); |
| 987 | } |
Daniel Dunbar | e856ac2 | 2008-09-24 04:00:38 +0000 | [diff] [blame] | 988 | llvm::Value *V = Builder.CreateStructGEP(BaseValue, Index, "tmp"); |
Fariborz Jahanian | 7052266 | 2008-11-20 20:53:20 +0000 | [diff] [blame] | 989 | LValue LV = LValue::MakeAddr(V, Ivar->getType().getCVRQualifiers()|CVRQualifiers); |
| 990 | SetVarDeclObjCAttribute(getContext(), Ivar, Ivar->getType(), LV); |
Fariborz Jahanian | 08c06f4 | 2008-11-21 18:14:01 +0000 | [diff] [blame] | 991 | LValue::SetObjCIvar(LV, true); |
Fariborz Jahanian | 7052266 | 2008-11-20 20:53:20 +0000 | [diff] [blame] | 992 | return LV; |
Daniel Dunbar | e856ac2 | 2008-09-24 04:00:38 +0000 | [diff] [blame] | 993 | } |
| 994 | |
| 995 | LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) { |
Anders Carlsson | ae61b00 | 2008-08-25 01:53:23 +0000 | [diff] [blame] | 996 | // FIXME: A lot of the code below could be shared with EmitMemberExpr. |
| 997 | llvm::Value *BaseValue = 0; |
| 998 | const Expr *BaseExpr = E->getBase(); |
| 999 | unsigned CVRQualifiers = 0; |
| 1000 | if (E->isArrow()) { |
| 1001 | BaseValue = EmitScalarExpr(BaseExpr); |
| 1002 | const PointerType *PTy = |
| 1003 | cast<PointerType>(getContext().getCanonicalType(BaseExpr->getType())); |
| 1004 | CVRQualifiers = PTy->getPointeeType().getCVRQualifiers(); |
| 1005 | } else { |
| 1006 | LValue BaseLV = EmitLValue(BaseExpr); |
| 1007 | // FIXME: this isn't right for bitfields. |
| 1008 | BaseValue = BaseLV.getAddress(); |
| 1009 | CVRQualifiers = BaseExpr->getType().getCVRQualifiers(); |
| 1010 | } |
Daniel Dunbar | e856ac2 | 2008-09-24 04:00:38 +0000 | [diff] [blame] | 1011 | |
Fariborz Jahanian | ea94484 | 2008-12-18 17:29:46 +0000 | [diff] [blame] | 1012 | return EmitLValueForIvar(BaseValue, E->getDecl(), |
| 1013 | getContext().getFieldDecl(E), CVRQualifiers); |
Chris Lattner | b326b17 | 2008-03-30 23:03:07 +0000 | [diff] [blame] | 1014 | } |
| 1015 | |
Daniel Dunbar | e6c3175 | 2008-08-29 08:11:39 +0000 | [diff] [blame] | 1016 | LValue |
| 1017 | CodeGenFunction::EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E) { |
| 1018 | // This is a special l-value that just issues sends when we load or |
| 1019 | // store through it. |
| 1020 | return LValue::MakePropertyRef(E, E->getType().getCVRQualifiers()); |
| 1021 | } |
| 1022 | |
Fariborz Jahanian | b0973da | 2008-11-22 22:30:21 +0000 | [diff] [blame] | 1023 | LValue |
| 1024 | CodeGenFunction::EmitObjCKVCRefLValue(const ObjCKVCRefExpr *E) { |
| 1025 | // This is a special l-value that just issues sends when we load or |
| 1026 | // store through it. |
| 1027 | return LValue::MakeKVCRef(E, E->getType().getCVRQualifiers()); |
| 1028 | } |
| 1029 | |
Douglas Gregor | d860663 | 2008-11-04 14:56:14 +0000 | [diff] [blame] | 1030 | LValue |
| 1031 | CodeGenFunction::EmitObjCSuperExpr(const ObjCSuperExpr *E) { |
| 1032 | return EmitUnsupportedLValue(E, "use of super"); |
| 1033 | } |
| 1034 | |
Nate Begeman | 9f3bfb7 | 2008-01-17 17:46:27 +0000 | [diff] [blame] | 1035 | RValue CodeGenFunction::EmitCallExpr(llvm::Value *Callee, QualType FnType, |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1036 | CallExpr::const_arg_iterator ArgBeg, |
| 1037 | CallExpr::const_arg_iterator ArgEnd) { |
| 1038 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1039 | // The callee type will always be a pointer to function type, get the function |
| 1040 | // type. |
Chris Lattner | c154ac1 | 2008-07-26 22:37:01 +0000 | [diff] [blame] | 1041 | FnType = FnType->getAsPointerType()->getPointeeType(); |
Chris Lattner | 69cc2f9 | 2008-07-31 04:58:58 +0000 | [diff] [blame] | 1042 | QualType ResultType = FnType->getAsFunctionType()->getResultType(); |
Daniel Dunbar | 0ed60b0 | 2008-08-30 03:02:31 +0000 | [diff] [blame] | 1043 | |
| 1044 | CallArgList Args; |
| 1045 | for (CallExpr::const_arg_iterator I = ArgBeg; I != ArgEnd; ++I) |
Daniel Dunbar | 0a2da0f | 2008-09-09 01:06:48 +0000 | [diff] [blame] | 1046 | Args.push_back(std::make_pair(EmitAnyExprToTemp(*I), |
| 1047 | I->getType())); |
Daniel Dunbar | 0ed60b0 | 2008-08-30 03:02:31 +0000 | [diff] [blame] | 1048 | |
| 1049 | return EmitCall(Callee, ResultType, Args); |
Daniel Dunbar | a04840b | 2008-08-23 03:46:30 +0000 | [diff] [blame] | 1050 | } |