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