blob: d72d56f1d6908a2538705fcb00d89cf17d0fb97a [file] [log] [blame]
Chris Lattner4b009652007-07-25 00:24:17 +00001//===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner959e5be2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner4b009652007-07-25 00:24:17 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for expressions.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
15#include "clang/AST/ASTContext.h"
Daniel Dunbar64789f82008-08-11 05:35:13 +000016#include "clang/AST/DeclObjC.h"
Chris Lattner3e254fb2008-04-08 04:40:51 +000017#include "clang/AST/ExprCXX.h"
Steve Naroff9ed3e772008-05-29 21:12:08 +000018#include "clang/AST/ExprObjC.h"
Douglas Gregor279272e2009-02-04 19:02:06 +000019#include "clang/AST/DeclTemplate.h"
Chris Lattner4b009652007-07-25 00:24:17 +000020#include "clang/Lex/Preprocessor.h"
21#include "clang/Lex/LiteralSupport.h"
22#include "clang/Basic/SourceManager.h"
Chris Lattner4b009652007-07-25 00:24:17 +000023#include "clang/Basic/TargetInfo.h"
Steve Naroff52a81c02008-09-03 18:15:37 +000024#include "clang/Parse/DeclSpec.h"
Chris Lattner71ca8c82008-10-26 23:43:26 +000025#include "clang/Parse/Designator.h"
Steve Naroff52a81c02008-09-03 18:15:37 +000026#include "clang/Parse/Scope.h"
Chris Lattner4b009652007-07-25 00:24:17 +000027using namespace clang;
28
Douglas Gregoraa57e862009-02-18 21:56:37 +000029/// \brief Determine whether the use of this declaration is valid, and
30/// emit any corresponding diagnostics.
31///
32/// This routine diagnoses various problems with referencing
33/// declarations that can occur when using a declaration. For example,
34/// it might warn if a deprecated or unavailable declaration is being
35/// used, or produce an error (and return true) if a C++0x deleted
36/// function is being used.
37///
38/// \returns true if there was an error (this declaration cannot be
39/// referenced), false otherwise.
40bool Sema::DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc) {
Chris Lattner2cb744b2009-02-15 22:43:40 +000041 // See if the decl is deprecated.
42 if (D->getAttr<DeprecatedAttr>()) {
Douglas Gregoraa57e862009-02-18 21:56:37 +000043 // Implementing deprecated stuff requires referencing deprecated
44 // stuff. Don't warn if we are implementing a deprecated
45 // construct.
Chris Lattnerfb1bb822009-02-16 19:35:30 +000046 bool isSilenced = false;
47
48 if (NamedDecl *ND = getCurFunctionOrMethodDecl()) {
49 // If this reference happens *in* a deprecated function or method, don't
50 // warn.
51 isSilenced = ND->getAttr<DeprecatedAttr>();
52
53 // If this is an Objective-C method implementation, check to see if the
54 // method was deprecated on the declaration, not the definition.
55 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(ND)) {
56 // The semantic decl context of a ObjCMethodDecl is the
57 // ObjCImplementationDecl.
58 if (ObjCImplementationDecl *Impl
59 = dyn_cast<ObjCImplementationDecl>(MD->getParent())) {
60
Douglas Gregorc55b0b02009-04-09 21:40:53 +000061 MD = Impl->getClassInterface()->getMethod(Context,
62 MD->getSelector(),
Chris Lattnerfb1bb822009-02-16 19:35:30 +000063 MD->isInstanceMethod());
64 isSilenced |= MD && MD->getAttr<DeprecatedAttr>();
65 }
66 }
67 }
68
69 if (!isSilenced)
Chris Lattner2cb744b2009-02-15 22:43:40 +000070 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
71 }
72
Douglas Gregoraa57e862009-02-18 21:56:37 +000073 // See if this is a deleted function.
Douglas Gregor6f8c3682009-02-24 04:26:15 +000074 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Douglas Gregoraa57e862009-02-18 21:56:37 +000075 if (FD->isDeleted()) {
76 Diag(Loc, diag::err_deleted_function_use);
77 Diag(D->getLocation(), diag::note_unavailable_here) << true;
78 return true;
79 }
Douglas Gregor6f8c3682009-02-24 04:26:15 +000080 }
Douglas Gregoraa57e862009-02-18 21:56:37 +000081
82 // See if the decl is unavailable
83 if (D->getAttr<UnavailableAttr>()) {
Chris Lattner2cb744b2009-02-15 22:43:40 +000084 Diag(Loc, diag::warn_unavailable) << D->getDeclName();
Douglas Gregoraa57e862009-02-18 21:56:37 +000085 Diag(D->getLocation(), diag::note_unavailable_here) << 0;
86 }
87
Douglas Gregoraa57e862009-02-18 21:56:37 +000088 return false;
Chris Lattner2cb744b2009-02-15 22:43:40 +000089}
90
Fariborz Jahanian180f3412009-05-13 18:09:35 +000091/// DiagnoseSentinelCalls - This routine checks on method dispatch calls
92/// (and other functions in future), which have been declared with sentinel
93/// attribute. It warns if call does not have the sentinel argument.
94///
95void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc,
96 Expr **Args, unsigned NumArgs)
97{
Fariborz Jahanian79d29e72009-05-13 23:20:50 +000098 const SentinelAttr *attr = D->getAttr<SentinelAttr>();
99 if (!attr)
100 return;
Fariborz Jahanian79d29e72009-05-13 23:20:50 +0000101 int sentinelPos = attr->getSentinel();
102 int nullPos = attr->getNullPos();
Fariborz Jahanian09f2e3f2009-05-14 18:00:00 +0000103
Mike Stumpe127ae32009-05-16 07:39:55 +0000104 // FIXME. ObjCMethodDecl and FunctionDecl need be derived from the same common
105 // base class. Then we won't be needing two versions of the same code.
Fariborz Jahanian79d29e72009-05-13 23:20:50 +0000106 unsigned int i = 0;
Fariborz Jahanian09f2e3f2009-05-14 18:00:00 +0000107 bool warnNotEnoughArgs = false;
108 int isMethod = 0;
109 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
110 // skip over named parameters.
111 ObjCMethodDecl::param_iterator P, E = MD->param_end();
112 for (P = MD->param_begin(); (P != E && i < NumArgs); ++P) {
113 if (nullPos)
114 --nullPos;
115 else
116 ++i;
117 }
118 warnNotEnoughArgs = (P != E || i >= NumArgs);
119 isMethod = 1;
Fariborz Jahanian79d29e72009-05-13 23:20:50 +0000120 }
Fariborz Jahanian09f2e3f2009-05-14 18:00:00 +0000121 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
122 // skip over named parameters.
123 ObjCMethodDecl::param_iterator P, E = FD->param_end();
124 for (P = FD->param_begin(); (P != E && i < NumArgs); ++P) {
125 if (nullPos)
126 --nullPos;
127 else
128 ++i;
129 }
130 warnNotEnoughArgs = (P != E || i >= NumArgs);
131 }
Fariborz Jahanianc10357d2009-05-15 20:33:25 +0000132 else if (VarDecl *V = dyn_cast<VarDecl>(D)) {
133 // block or function pointer call.
134 QualType Ty = V->getType();
135 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
136 const FunctionType *FT = Ty->isFunctionPointerType()
137 ? Ty->getAsPointerType()->getPointeeType()->getAsFunctionType()
138 : Ty->getAsBlockPointerType()->getPointeeType()->getAsFunctionType();
139 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) {
140 unsigned NumArgsInProto = Proto->getNumArgs();
141 unsigned k;
142 for (k = 0; (k != NumArgsInProto && i < NumArgs); k++) {
143 if (nullPos)
144 --nullPos;
145 else
146 ++i;
147 }
148 warnNotEnoughArgs = (k != NumArgsInProto || i >= NumArgs);
149 }
150 if (Ty->isBlockPointerType())
151 isMethod = 2;
152 }
153 else
154 return;
155 }
Fariborz Jahanian09f2e3f2009-05-14 18:00:00 +0000156 else
157 return;
158
159 if (warnNotEnoughArgs) {
Fariborz Jahanian79d29e72009-05-13 23:20:50 +0000160 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName();
Fariborz Jahanian09f2e3f2009-05-14 18:00:00 +0000161 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian79d29e72009-05-13 23:20:50 +0000162 return;
163 }
164 int sentinel = i;
165 while (sentinelPos > 0 && i < NumArgs-1) {
166 --sentinelPos;
167 ++i;
168 }
169 if (sentinelPos > 0) {
170 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName();
Fariborz Jahanian09f2e3f2009-05-14 18:00:00 +0000171 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian79d29e72009-05-13 23:20:50 +0000172 return;
173 }
174 while (i < NumArgs-1) {
175 ++i;
176 ++sentinel;
177 }
178 Expr *sentinelExpr = Args[sentinel];
179 if (sentinelExpr && (!sentinelExpr->getType()->isPointerType() ||
180 !sentinelExpr->isNullPointerConstant(Context))) {
Fariborz Jahanianc10357d2009-05-15 20:33:25 +0000181 Diag(Loc, diag::warn_missing_sentinel) << isMethod;
Fariborz Jahanian09f2e3f2009-05-14 18:00:00 +0000182 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian79d29e72009-05-13 23:20:50 +0000183 }
184 return;
Fariborz Jahanian180f3412009-05-13 18:09:35 +0000185}
186
Douglas Gregor3bb30002009-02-26 21:00:50 +0000187SourceRange Sema::getExprRange(ExprTy *E) const {
188 Expr *Ex = (Expr *)E;
189 return Ex? Ex->getSourceRange() : SourceRange();
190}
191
Chris Lattner299b8842008-07-25 21:10:04 +0000192//===----------------------------------------------------------------------===//
193// Standard Promotions and Conversions
194//===----------------------------------------------------------------------===//
195
Chris Lattner299b8842008-07-25 21:10:04 +0000196/// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4).
197void Sema::DefaultFunctionArrayConversion(Expr *&E) {
198 QualType Ty = E->getType();
199 assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type");
200
Chris Lattner299b8842008-07-25 21:10:04 +0000201 if (Ty->isFunctionType())
202 ImpCastExprToType(E, Context.getPointerType(Ty));
Chris Lattner2aa68822008-07-25 21:33:13 +0000203 else if (Ty->isArrayType()) {
204 // In C90 mode, arrays only promote to pointers if the array expression is
205 // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has
206 // type 'array of type' is converted to an expression that has type 'pointer
207 // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression
208 // that has type 'array of type' ...". The relevant change is "an lvalue"
209 // (C90) to "an expression" (C99).
Argiris Kirtzidisf580b4d2008-09-11 04:25:59 +0000210 //
211 // C++ 4.2p1:
212 // An lvalue or rvalue of type "array of N T" or "array of unknown bound of
213 // T" can be converted to an rvalue of type "pointer to T".
214 //
215 if (getLangOptions().C99 || getLangOptions().CPlusPlus ||
216 E->isLvalue(Context) == Expr::LV_Valid)
Chris Lattner2aa68822008-07-25 21:33:13 +0000217 ImpCastExprToType(E, Context.getArrayDecayedType(Ty));
218 }
Chris Lattner299b8842008-07-25 21:10:04 +0000219}
220
Douglas Gregor70b307e2009-05-01 20:41:21 +0000221/// \brief Whether this is a promotable bitfield reference according
222/// to C99 6.3.1.1p2, bullet 2.
223///
224/// \returns the type this bit-field will promote to, or NULL if no
225/// promotion occurs.
226static QualType isPromotableBitField(Expr *E, ASTContext &Context) {
Douglas Gregor531434b2009-05-02 02:18:30 +0000227 FieldDecl *Field = E->getBitField();
228 if (!Field)
Douglas Gregor70b307e2009-05-01 20:41:21 +0000229 return QualType();
230
231 const BuiltinType *BT = Field->getType()->getAsBuiltinType();
232 if (!BT)
233 return QualType();
234
235 if (BT->getKind() != BuiltinType::Bool &&
236 BT->getKind() != BuiltinType::Int &&
237 BT->getKind() != BuiltinType::UInt)
238 return QualType();
239
240 llvm::APSInt BitWidthAP;
241 if (!Field->getBitWidth()->isIntegerConstantExpr(BitWidthAP, Context))
242 return QualType();
243
244 uint64_t BitWidth = BitWidthAP.getZExtValue();
245 uint64_t IntSize = Context.getTypeSize(Context.IntTy);
246 if (BitWidth < IntSize ||
247 (Field->getType()->isSignedIntegerType() && BitWidth == IntSize))
248 return Context.IntTy;
249
250 if (BitWidth == IntSize && Field->getType()->isUnsignedIntegerType())
251 return Context.UnsignedIntTy;
252
253 return QualType();
254}
255
Chris Lattner299b8842008-07-25 21:10:04 +0000256/// UsualUnaryConversions - Performs various conversions that are common to most
257/// operators (C99 6.3). The conversions of array and function types are
258/// sometimes surpressed. For example, the array->pointer conversion doesn't
259/// apply if the array is an argument to the sizeof or address (&) operators.
260/// In these instances, this routine should *not* be called.
261Expr *Sema::UsualUnaryConversions(Expr *&Expr) {
262 QualType Ty = Expr->getType();
263 assert(!Ty.isNull() && "UsualUnaryConversions - missing type");
264
Douglas Gregor70b307e2009-05-01 20:41:21 +0000265 // C99 6.3.1.1p2:
266 //
267 // The following may be used in an expression wherever an int or
268 // unsigned int may be used:
269 // - an object or expression with an integer type whose integer
270 // conversion rank is less than or equal to the rank of int
271 // and unsigned int.
272 // - A bit-field of type _Bool, int, signed int, or unsigned int.
273 //
274 // If an int can represent all values of the original type, the
275 // value is converted to an int; otherwise, it is converted to an
276 // unsigned int. These are called the integer promotions. All
277 // other types are unchanged by the integer promotions.
278 if (Ty->isPromotableIntegerType()) {
Chris Lattner299b8842008-07-25 21:10:04 +0000279 ImpCastExprToType(Expr, Context.IntTy);
Douglas Gregor70b307e2009-05-01 20:41:21 +0000280 return Expr;
281 } else {
282 QualType T = isPromotableBitField(Expr, Context);
283 if (!T.isNull()) {
284 ImpCastExprToType(Expr, T);
285 return Expr;
286 }
287 }
288
289 DefaultFunctionArrayConversion(Expr);
Chris Lattner299b8842008-07-25 21:10:04 +0000290 return Expr;
291}
292
Chris Lattner9305c3d2008-07-25 22:25:12 +0000293/// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that
294/// do not have a prototype. Arguments that have type float are promoted to
295/// double. All other argument types are converted by UsualUnaryConversions().
296void Sema::DefaultArgumentPromotion(Expr *&Expr) {
297 QualType Ty = Expr->getType();
298 assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type");
299
300 // If this is a 'float' (CVR qualified or typedef) promote to double.
301 if (const BuiltinType *BT = Ty->getAsBuiltinType())
302 if (BT->getKind() == BuiltinType::Float)
303 return ImpCastExprToType(Expr, Context.DoubleTy);
304
305 UsualUnaryConversions(Expr);
306}
307
Chris Lattner81f00ed2009-04-12 08:11:20 +0000308/// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but
309/// will warn if the resulting type is not a POD type, and rejects ObjC
310/// interfaces passed by value. This returns true if the argument type is
311/// completely illegal.
312bool Sema::DefaultVariadicArgumentPromotion(Expr *&Expr, VariadicCallType CT) {
Anders Carlsson4b8e38c2009-01-16 16:48:51 +0000313 DefaultArgumentPromotion(Expr);
314
Chris Lattner81f00ed2009-04-12 08:11:20 +0000315 if (Expr->getType()->isObjCInterfaceType()) {
316 Diag(Expr->getLocStart(),
317 diag::err_cannot_pass_objc_interface_to_vararg)
318 << Expr->getType() << CT;
319 return true;
Anders Carlsson4b8e38c2009-01-16 16:48:51 +0000320 }
Chris Lattner81f00ed2009-04-12 08:11:20 +0000321
322 if (!Expr->getType()->isPODType())
323 Diag(Expr->getLocStart(), diag::warn_cannot_pass_non_pod_arg_to_vararg)
324 << Expr->getType() << CT;
325
326 return false;
Anders Carlsson4b8e38c2009-01-16 16:48:51 +0000327}
328
329
Chris Lattner299b8842008-07-25 21:10:04 +0000330/// UsualArithmeticConversions - Performs various conversions that are common to
331/// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this
332/// routine returns the first non-arithmetic type found. The client is
333/// responsible for emitting appropriate error diagnostics.
334/// FIXME: verify the conversion rules for "complex int" are consistent with
335/// GCC.
336QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr,
337 bool isCompAssign) {
Eli Friedman3cd92882009-03-28 01:22:36 +0000338 if (!isCompAssign)
Chris Lattner299b8842008-07-25 21:10:04 +0000339 UsualUnaryConversions(lhsExpr);
Eli Friedman3cd92882009-03-28 01:22:36 +0000340
341 UsualUnaryConversions(rhsExpr);
Douglas Gregor70d26122008-11-12 17:17:38 +0000342
Chris Lattner299b8842008-07-25 21:10:04 +0000343 // For conversion purposes, we ignore any qualifiers.
344 // For example, "const float" and "float" are equivalent.
Chris Lattnerd5a56aa2008-07-26 22:17:49 +0000345 QualType lhs =
346 Context.getCanonicalType(lhsExpr->getType()).getUnqualifiedType();
347 QualType rhs =
348 Context.getCanonicalType(rhsExpr->getType()).getUnqualifiedType();
Douglas Gregor70d26122008-11-12 17:17:38 +0000349
350 // If both types are identical, no conversion is needed.
351 if (lhs == rhs)
352 return lhs;
353
354 // If either side is a non-arithmetic type (e.g. a pointer), we are done.
355 // The caller can deal with this (e.g. pointer + int).
356 if (!lhs->isArithmeticType() || !rhs->isArithmeticType())
357 return lhs;
358
Douglas Gregor6fcf2ca2009-05-02 00:36:19 +0000359 // Perform bitfield promotions.
360 QualType LHSBitfieldPromoteTy = isPromotableBitField(lhsExpr, Context);
361 if (!LHSBitfieldPromoteTy.isNull())
362 lhs = LHSBitfieldPromoteTy;
363 QualType RHSBitfieldPromoteTy = isPromotableBitField(rhsExpr, Context);
364 if (!RHSBitfieldPromoteTy.isNull())
365 rhs = RHSBitfieldPromoteTy;
366
Douglas Gregor70d26122008-11-12 17:17:38 +0000367 QualType destType = UsualArithmeticConversionsType(lhs, rhs);
Eli Friedman3cd92882009-03-28 01:22:36 +0000368 if (!isCompAssign)
Douglas Gregor70d26122008-11-12 17:17:38 +0000369 ImpCastExprToType(lhsExpr, destType);
Eli Friedman3cd92882009-03-28 01:22:36 +0000370 ImpCastExprToType(rhsExpr, destType);
Douglas Gregor70d26122008-11-12 17:17:38 +0000371 return destType;
372}
373
374QualType Sema::UsualArithmeticConversionsType(QualType lhs, QualType rhs) {
375 // Perform the usual unary conversions. We do this early so that
376 // integral promotions to "int" can allow us to exit early, in the
377 // lhs == rhs check. Also, for conversion purposes, we ignore any
378 // qualifiers. For example, "const float" and "float" are
379 // equivalent.
Chris Lattner2cb744b2009-02-15 22:43:40 +0000380 if (lhs->isPromotableIntegerType())
381 lhs = Context.IntTy;
382 else
383 lhs = lhs.getUnqualifiedType();
384 if (rhs->isPromotableIntegerType())
385 rhs = Context.IntTy;
386 else
387 rhs = rhs.getUnqualifiedType();
Douglas Gregor70d26122008-11-12 17:17:38 +0000388
Chris Lattner299b8842008-07-25 21:10:04 +0000389 // If both types are identical, no conversion is needed.
390 if (lhs == rhs)
391 return lhs;
392
393 // If either side is a non-arithmetic type (e.g. a pointer), we are done.
394 // The caller can deal with this (e.g. pointer + int).
395 if (!lhs->isArithmeticType() || !rhs->isArithmeticType())
396 return lhs;
397
398 // At this point, we have two different arithmetic types.
399
400 // Handle complex types first (C99 6.3.1.8p1).
401 if (lhs->isComplexType() || rhs->isComplexType()) {
402 // if we have an integer operand, the result is the complex type.
403 if (rhs->isIntegerType() || rhs->isComplexIntegerType()) {
404 // convert the rhs to the lhs complex type.
Chris Lattner299b8842008-07-25 21:10:04 +0000405 return lhs;
406 }
407 if (lhs->isIntegerType() || lhs->isComplexIntegerType()) {
408 // convert the lhs to the rhs complex type.
Chris Lattner299b8842008-07-25 21:10:04 +0000409 return rhs;
410 }
411 // This handles complex/complex, complex/float, or float/complex.
412 // When both operands are complex, the shorter operand is converted to the
413 // type of the longer, and that is the type of the result. This corresponds
414 // to what is done when combining two real floating-point operands.
415 // The fun begins when size promotion occur across type domains.
416 // From H&S 6.3.4: When one operand is complex and the other is a real
417 // floating-point type, the less precise type is converted, within it's
418 // real or complex domain, to the precision of the other type. For example,
419 // when combining a "long double" with a "double _Complex", the
420 // "double _Complex" is promoted to "long double _Complex".
421 int result = Context.getFloatingTypeOrder(lhs, rhs);
422
423 if (result > 0) { // The left side is bigger, convert rhs.
424 rhs = Context.getFloatingTypeOfSizeWithinDomain(lhs, rhs);
Chris Lattner299b8842008-07-25 21:10:04 +0000425 } else if (result < 0) { // The right side is bigger, convert lhs.
426 lhs = Context.getFloatingTypeOfSizeWithinDomain(rhs, lhs);
Chris Lattner299b8842008-07-25 21:10:04 +0000427 }
428 // At this point, lhs and rhs have the same rank/size. Now, make sure the
429 // domains match. This is a requirement for our implementation, C99
430 // does not require this promotion.
431 if (lhs != rhs) { // Domains don't match, we have complex/float mix.
432 if (lhs->isRealFloatingType()) { // handle "double, _Complex double".
Chris Lattner299b8842008-07-25 21:10:04 +0000433 return rhs;
434 } else { // handle "_Complex double, double".
Chris Lattner299b8842008-07-25 21:10:04 +0000435 return lhs;
436 }
437 }
438 return lhs; // The domain/size match exactly.
439 }
440 // Now handle "real" floating types (i.e. float, double, long double).
441 if (lhs->isRealFloatingType() || rhs->isRealFloatingType()) {
442 // if we have an integer operand, the result is the real floating type.
Anders Carlsson488a0792008-12-10 23:30:05 +0000443 if (rhs->isIntegerType()) {
Chris Lattner299b8842008-07-25 21:10:04 +0000444 // convert rhs to the lhs floating point type.
Chris Lattner299b8842008-07-25 21:10:04 +0000445 return lhs;
446 }
Anders Carlsson488a0792008-12-10 23:30:05 +0000447 if (rhs->isComplexIntegerType()) {
448 // convert rhs to the complex floating point type.
449 return Context.getComplexType(lhs);
450 }
451 if (lhs->isIntegerType()) {
Chris Lattner299b8842008-07-25 21:10:04 +0000452 // convert lhs to the rhs floating point type.
Chris Lattner299b8842008-07-25 21:10:04 +0000453 return rhs;
454 }
Anders Carlsson488a0792008-12-10 23:30:05 +0000455 if (lhs->isComplexIntegerType()) {
456 // convert lhs to the complex floating point type.
457 return Context.getComplexType(rhs);
458 }
Chris Lattner299b8842008-07-25 21:10:04 +0000459 // We have two real floating types, float/complex combos were handled above.
460 // Convert the smaller operand to the bigger result.
461 int result = Context.getFloatingTypeOrder(lhs, rhs);
Chris Lattner2cb744b2009-02-15 22:43:40 +0000462 if (result > 0) // convert the rhs
Chris Lattner299b8842008-07-25 21:10:04 +0000463 return lhs;
Chris Lattner2cb744b2009-02-15 22:43:40 +0000464 assert(result < 0 && "illegal float comparison");
465 return rhs; // convert the lhs
Chris Lattner299b8842008-07-25 21:10:04 +0000466 }
467 if (lhs->isComplexIntegerType() || rhs->isComplexIntegerType()) {
468 // Handle GCC complex int extension.
469 const ComplexType *lhsComplexInt = lhs->getAsComplexIntegerType();
470 const ComplexType *rhsComplexInt = rhs->getAsComplexIntegerType();
471
472 if (lhsComplexInt && rhsComplexInt) {
473 if (Context.getIntegerTypeOrder(lhsComplexInt->getElementType(),
Chris Lattner2cb744b2009-02-15 22:43:40 +0000474 rhsComplexInt->getElementType()) >= 0)
475 return lhs; // convert the rhs
Chris Lattner299b8842008-07-25 21:10:04 +0000476 return rhs;
477 } else if (lhsComplexInt && rhs->isIntegerType()) {
478 // convert the rhs to the lhs complex type.
Chris Lattner299b8842008-07-25 21:10:04 +0000479 return lhs;
480 } else if (rhsComplexInt && lhs->isIntegerType()) {
481 // convert the lhs to the rhs complex type.
Chris Lattner299b8842008-07-25 21:10:04 +0000482 return rhs;
483 }
484 }
485 // Finally, we have two differing integer types.
486 // The rules for this case are in C99 6.3.1.8
487 int compare = Context.getIntegerTypeOrder(lhs, rhs);
488 bool lhsSigned = lhs->isSignedIntegerType(),
489 rhsSigned = rhs->isSignedIntegerType();
490 QualType destType;
491 if (lhsSigned == rhsSigned) {
492 // Same signedness; use the higher-ranked type
493 destType = compare >= 0 ? lhs : rhs;
494 } else if (compare != (lhsSigned ? 1 : -1)) {
495 // The unsigned type has greater than or equal rank to the
496 // signed type, so use the unsigned type
497 destType = lhsSigned ? rhs : lhs;
498 } else if (Context.getIntWidth(lhs) != Context.getIntWidth(rhs)) {
499 // The two types are different widths; if we are here, that
500 // means the signed type is larger than the unsigned type, so
501 // use the signed type.
502 destType = lhsSigned ? lhs : rhs;
503 } else {
504 // The signed type is higher-ranked than the unsigned type,
505 // but isn't actually any bigger (like unsigned int and long
506 // on most 32-bit systems). Use the unsigned type corresponding
507 // to the signed type.
508 destType = Context.getCorrespondingUnsignedType(lhsSigned ? lhs : rhs);
509 }
Chris Lattner299b8842008-07-25 21:10:04 +0000510 return destType;
511}
512
513//===----------------------------------------------------------------------===//
514// Semantic Analysis for various Expression Types
515//===----------------------------------------------------------------------===//
516
517
Steve Naroff87d58b42007-09-16 03:34:24 +0000518/// ActOnStringLiteral - The specified tokens were lexed as pasted string
Chris Lattner4b009652007-07-25 00:24:17 +0000519/// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string
520/// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from
521/// multiple tokens. However, the common case is that StringToks points to one
522/// string.
Sebastian Redlcd883f72009-01-18 18:53:16 +0000523///
524Action::OwningExprResult
Steve Naroff87d58b42007-09-16 03:34:24 +0000525Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) {
Chris Lattner4b009652007-07-25 00:24:17 +0000526 assert(NumStringToks && "Must have at least one string!");
527
Chris Lattner9eaf2b72009-01-16 18:51:42 +0000528 StringLiteralParser Literal(StringToks, NumStringToks, PP);
Chris Lattner4b009652007-07-25 00:24:17 +0000529 if (Literal.hadError)
Sebastian Redlcd883f72009-01-18 18:53:16 +0000530 return ExprError();
Chris Lattner4b009652007-07-25 00:24:17 +0000531
532 llvm::SmallVector<SourceLocation, 4> StringTokLocs;
533 for (unsigned i = 0; i != NumStringToks; ++i)
534 StringTokLocs.push_back(StringToks[i].getLocation());
Chris Lattnera6dcce32008-02-11 00:02:17 +0000535
Chris Lattnera6dcce32008-02-11 00:02:17 +0000536 QualType StrTy = Context.CharTy;
Argiris Kirtzidis2a4e1162008-08-09 17:20:01 +0000537 if (Literal.AnyWide) StrTy = Context.getWCharType();
Chris Lattnera6dcce32008-02-11 00:02:17 +0000538 if (Literal.Pascal) StrTy = Context.UnsignedCharTy;
Douglas Gregor1815b3b2008-09-12 00:47:35 +0000539
540 // A C++ string literal has a const-qualified element type (C++ 2.13.4p1).
541 if (getLangOptions().CPlusPlus)
542 StrTy.addConst();
Sebastian Redlcd883f72009-01-18 18:53:16 +0000543
Chris Lattnera6dcce32008-02-11 00:02:17 +0000544 // Get an array type for the string, according to C99 6.4.5. This includes
545 // the nul terminator character as well as the string length for pascal
546 // strings.
547 StrTy = Context.getConstantArrayType(StrTy,
Chris Lattner14032222009-02-26 23:01:51 +0000548 llvm::APInt(32, Literal.GetNumStringChars()+1),
Chris Lattnera6dcce32008-02-11 00:02:17 +0000549 ArrayType::Normal, 0);
Chris Lattnerc3144742009-02-18 05:49:11 +0000550
Chris Lattner4b009652007-07-25 00:24:17 +0000551 // Pass &StringTokLocs[0], StringTokLocs.size() to factory!
Chris Lattneraa491192009-02-18 06:40:38 +0000552 return Owned(StringLiteral::Create(Context, Literal.GetString(),
553 Literal.GetStringLength(),
554 Literal.AnyWide, StrTy,
555 &StringTokLocs[0],
556 StringTokLocs.size()));
Chris Lattner4b009652007-07-25 00:24:17 +0000557}
558
Chris Lattnerb2ebd482008-10-20 05:16:36 +0000559/// ShouldSnapshotBlockValueReference - Return true if a reference inside of
560/// CurBlock to VD should cause it to be snapshotted (as we do for auto
561/// variables defined outside the block) or false if this is not needed (e.g.
562/// for values inside the block or for globals).
563///
Chris Lattner0b464252009-04-21 22:26:47 +0000564/// This also keeps the 'hasBlockDeclRefExprs' in the BlockSemaInfo records
565/// up-to-date.
566///
Chris Lattnerb2ebd482008-10-20 05:16:36 +0000567static bool ShouldSnapshotBlockValueReference(BlockSemaInfo *CurBlock,
568 ValueDecl *VD) {
569 // If the value is defined inside the block, we couldn't snapshot it even if
570 // we wanted to.
571 if (CurBlock->TheDecl == VD->getDeclContext())
572 return false;
573
574 // If this is an enum constant or function, it is constant, don't snapshot.
575 if (isa<EnumConstantDecl>(VD) || isa<FunctionDecl>(VD))
576 return false;
577
578 // If this is a reference to an extern, static, or global variable, no need to
579 // snapshot it.
580 // FIXME: What about 'const' variables in C++?
581 if (const VarDecl *Var = dyn_cast<VarDecl>(VD))
Chris Lattner0b464252009-04-21 22:26:47 +0000582 if (!Var->hasLocalStorage())
583 return false;
584
585 // Blocks that have these can't be constant.
586 CurBlock->hasBlockDeclRefExprs = true;
587
588 // If we have nested blocks, the decl may be declared in an outer block (in
589 // which case that outer block doesn't get "hasBlockDeclRefExprs") or it may
590 // be defined outside all of the current blocks (in which case the blocks do
591 // all get the bit). Walk the nesting chain.
592 for (BlockSemaInfo *NextBlock = CurBlock->PrevBlockInfo; NextBlock;
593 NextBlock = NextBlock->PrevBlockInfo) {
594 // If we found the defining block for the variable, don't mark the block as
595 // having a reference outside it.
596 if (NextBlock->TheDecl == VD->getDeclContext())
597 break;
598
599 // Otherwise, the DeclRef from the inner block causes the outer one to need
600 // a snapshot as well.
601 NextBlock->hasBlockDeclRefExprs = true;
602 }
Chris Lattnerb2ebd482008-10-20 05:16:36 +0000603
604 return true;
605}
606
607
608
Steve Naroff0acc9c92007-09-15 18:49:24 +0000609/// ActOnIdentifierExpr - The parser read an identifier in expression context,
Chris Lattner4b009652007-07-25 00:24:17 +0000610/// validate it per-C99 6.5.1. HasTrailingLParen indicates whether this
Steve Naroffe50e14c2008-03-19 23:46:26 +0000611/// identifier is used in a function call context.
Sebastian Redlcd883f72009-01-18 18:53:16 +0000612/// SS is only used for a C++ qualified-id (foo::bar) to indicate the
Argiris Kirtzidis054a2632008-11-08 17:17:31 +0000613/// class or namespace that the identifier must be a member of.
Sebastian Redlcd883f72009-01-18 18:53:16 +0000614Sema::OwningExprResult Sema::ActOnIdentifierExpr(Scope *S, SourceLocation Loc,
615 IdentifierInfo &II,
616 bool HasTrailingLParen,
Sebastian Redl0c9da212009-02-03 20:19:35 +0000617 const CXXScopeSpec *SS,
618 bool isAddressOfOperand) {
619 return ActOnDeclarationNameExpr(S, Loc, &II, HasTrailingLParen, SS,
Douglas Gregor4646f9c2009-02-04 15:01:18 +0000620 isAddressOfOperand);
Douglas Gregoraee3bf82008-11-18 15:03:34 +0000621}
622
Douglas Gregor566782a2009-01-06 05:10:23 +0000623/// BuildDeclRefExpr - Build either a DeclRefExpr or a
624/// QualifiedDeclRefExpr based on whether or not SS is a
625/// nested-name-specifier.
Sebastian Redl0c9da212009-02-03 20:19:35 +0000626DeclRefExpr *
627Sema::BuildDeclRefExpr(NamedDecl *D, QualType Ty, SourceLocation Loc,
628 bool TypeDependent, bool ValueDependent,
629 const CXXScopeSpec *SS) {
Douglas Gregor7e508262009-03-19 03:51:16 +0000630 if (SS && !SS->isEmpty()) {
Douglas Gregor1e589cc2009-03-26 23:50:42 +0000631 return new (Context) QualifiedDeclRefExpr(D, Ty, Loc, TypeDependent,
632 ValueDependent, SS->getRange(),
Douglas Gregor041e9292009-03-26 23:56:24 +0000633 static_cast<NestedNameSpecifier *>(SS->getScopeRep()));
Douglas Gregor7e508262009-03-19 03:51:16 +0000634 } else
Steve Naroff774e4152009-01-21 00:14:39 +0000635 return new (Context) DeclRefExpr(D, Ty, Loc, TypeDependent, ValueDependent);
Douglas Gregor566782a2009-01-06 05:10:23 +0000636}
637
Douglas Gregor723d3332009-01-07 00:43:41 +0000638/// getObjectForAnonymousRecordDecl - Retrieve the (unnamed) field or
639/// variable corresponding to the anonymous union or struct whose type
640/// is Record.
Douglas Gregorc55b0b02009-04-09 21:40:53 +0000641static Decl *getObjectForAnonymousRecordDecl(ASTContext &Context,
642 RecordDecl *Record) {
Douglas Gregor723d3332009-01-07 00:43:41 +0000643 assert(Record->isAnonymousStructOrUnion() &&
644 "Record must be an anonymous struct or union!");
645
Mike Stumpe127ae32009-05-16 07:39:55 +0000646 // FIXME: Once Decls are directly linked together, this will be an O(1)
647 // operation rather than a slow walk through DeclContext's vector (which
648 // itself will be eliminated). DeclGroups might make this even better.
Douglas Gregor723d3332009-01-07 00:43:41 +0000649 DeclContext *Ctx = Record->getDeclContext();
Douglas Gregorc55b0b02009-04-09 21:40:53 +0000650 for (DeclContext::decl_iterator D = Ctx->decls_begin(Context),
651 DEnd = Ctx->decls_end(Context);
Douglas Gregor723d3332009-01-07 00:43:41 +0000652 D != DEnd; ++D) {
653 if (*D == Record) {
654 // The object for the anonymous struct/union directly
655 // follows its type in the list of declarations.
656 ++D;
657 assert(D != DEnd && "Missing object for anonymous record");
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000658 assert(!cast<NamedDecl>(*D)->getDeclName() && "Decl should be unnamed");
Douglas Gregor723d3332009-01-07 00:43:41 +0000659 return *D;
660 }
661 }
662
663 assert(false && "Missing object for anonymous record");
664 return 0;
665}
666
Douglas Gregorcc94ab72009-04-15 06:41:24 +0000667/// \brief Given a field that represents a member of an anonymous
668/// struct/union, build the path from that field's context to the
669/// actual member.
670///
671/// Construct the sequence of field member references we'll have to
672/// perform to get to the field in the anonymous union/struct. The
673/// list of members is built from the field outward, so traverse it
674/// backwards to go from an object in the current context to the field
675/// we found.
676///
677/// \returns The variable from which the field access should begin,
678/// for an anonymous struct/union that is not a member of another
679/// class. Otherwise, returns NULL.
680VarDecl *Sema::BuildAnonymousStructUnionMemberPath(FieldDecl *Field,
681 llvm::SmallVectorImpl<FieldDecl *> &Path) {
Douglas Gregor723d3332009-01-07 00:43:41 +0000682 assert(Field->getDeclContext()->isRecord() &&
683 cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion()
684 && "Field must be stored inside an anonymous struct or union");
685
Douglas Gregorcc94ab72009-04-15 06:41:24 +0000686 Path.push_back(Field);
Douglas Gregor723d3332009-01-07 00:43:41 +0000687 VarDecl *BaseObject = 0;
688 DeclContext *Ctx = Field->getDeclContext();
689 do {
690 RecordDecl *Record = cast<RecordDecl>(Ctx);
Douglas Gregorc55b0b02009-04-09 21:40:53 +0000691 Decl *AnonObject = getObjectForAnonymousRecordDecl(Context, Record);
Douglas Gregor723d3332009-01-07 00:43:41 +0000692 if (FieldDecl *AnonField = dyn_cast<FieldDecl>(AnonObject))
Douglas Gregorcc94ab72009-04-15 06:41:24 +0000693 Path.push_back(AnonField);
Douglas Gregor723d3332009-01-07 00:43:41 +0000694 else {
695 BaseObject = cast<VarDecl>(AnonObject);
696 break;
697 }
698 Ctx = Ctx->getParent();
699 } while (Ctx->isRecord() &&
700 cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion());
Douglas Gregorcc94ab72009-04-15 06:41:24 +0000701
702 return BaseObject;
703}
704
705Sema::OwningExprResult
706Sema::BuildAnonymousStructUnionMemberReference(SourceLocation Loc,
707 FieldDecl *Field,
708 Expr *BaseObjectExpr,
709 SourceLocation OpLoc) {
710 llvm::SmallVector<FieldDecl *, 4> AnonFields;
711 VarDecl *BaseObject = BuildAnonymousStructUnionMemberPath(Field,
712 AnonFields);
713
Douglas Gregor723d3332009-01-07 00:43:41 +0000714 // Build the expression that refers to the base object, from
715 // which we will build a sequence of member references to each
716 // of the anonymous union objects and, eventually, the field we
717 // found via name lookup.
718 bool BaseObjectIsPointer = false;
719 unsigned ExtraQuals = 0;
720 if (BaseObject) {
721 // BaseObject is an anonymous struct/union variable (and is,
722 // therefore, not part of another non-anonymous record).
Ted Kremenek0c97e042009-02-07 01:47:29 +0000723 if (BaseObjectExpr) BaseObjectExpr->Destroy(Context);
Steve Naroff774e4152009-01-21 00:14:39 +0000724 BaseObjectExpr = new (Context) DeclRefExpr(BaseObject,BaseObject->getType(),
Mike Stump9afab102009-02-19 03:04:26 +0000725 SourceLocation());
Douglas Gregor723d3332009-01-07 00:43:41 +0000726 ExtraQuals
727 = Context.getCanonicalType(BaseObject->getType()).getCVRQualifiers();
728 } else if (BaseObjectExpr) {
729 // The caller provided the base object expression. Determine
730 // whether its a pointer and whether it adds any qualifiers to the
731 // anonymous struct/union fields we're looking into.
732 QualType ObjectType = BaseObjectExpr->getType();
733 if (const PointerType *ObjectPtr = ObjectType->getAsPointerType()) {
734 BaseObjectIsPointer = true;
735 ObjectType = ObjectPtr->getPointeeType();
736 }
737 ExtraQuals = Context.getCanonicalType(ObjectType).getCVRQualifiers();
738 } else {
739 // We've found a member of an anonymous struct/union that is
740 // inside a non-anonymous struct/union, so in a well-formed
741 // program our base object expression is "this".
742 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
743 if (!MD->isStatic()) {
744 QualType AnonFieldType
745 = Context.getTagDeclType(
746 cast<RecordDecl>(AnonFields.back()->getDeclContext()));
747 QualType ThisType = Context.getTagDeclType(MD->getParent());
748 if ((Context.getCanonicalType(AnonFieldType)
749 == Context.getCanonicalType(ThisType)) ||
750 IsDerivedFrom(ThisType, AnonFieldType)) {
751 // Our base object expression is "this".
Steve Naroff774e4152009-01-21 00:14:39 +0000752 BaseObjectExpr = new (Context) CXXThisExpr(SourceLocation(),
Mike Stump9afab102009-02-19 03:04:26 +0000753 MD->getThisType(Context));
Douglas Gregor723d3332009-01-07 00:43:41 +0000754 BaseObjectIsPointer = true;
755 }
756 } else {
Sebastian Redlcd883f72009-01-18 18:53:16 +0000757 return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method)
758 << Field->getDeclName());
Douglas Gregor723d3332009-01-07 00:43:41 +0000759 }
760 ExtraQuals = MD->getTypeQualifiers();
761 }
762
763 if (!BaseObjectExpr)
Sebastian Redlcd883f72009-01-18 18:53:16 +0000764 return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use)
765 << Field->getDeclName());
Douglas Gregor723d3332009-01-07 00:43:41 +0000766 }
767
768 // Build the implicit member references to the field of the
769 // anonymous struct/union.
770 Expr *Result = BaseObjectExpr;
771 for (llvm::SmallVector<FieldDecl *, 4>::reverse_iterator
772 FI = AnonFields.rbegin(), FIEnd = AnonFields.rend();
773 FI != FIEnd; ++FI) {
774 QualType MemberType = (*FI)->getType();
775 if (!(*FI)->isMutable()) {
776 unsigned combinedQualifiers
777 = MemberType.getCVRQualifiers() | ExtraQuals;
778 MemberType = MemberType.getQualifiedType(combinedQualifiers);
779 }
Steve Naroff774e4152009-01-21 00:14:39 +0000780 Result = new (Context) MemberExpr(Result, BaseObjectIsPointer, *FI,
781 OpLoc, MemberType);
Douglas Gregor723d3332009-01-07 00:43:41 +0000782 BaseObjectIsPointer = false;
783 ExtraQuals = Context.getCanonicalType(MemberType).getCVRQualifiers();
Douglas Gregor723d3332009-01-07 00:43:41 +0000784 }
785
Sebastian Redlcd883f72009-01-18 18:53:16 +0000786 return Owned(Result);
Douglas Gregor723d3332009-01-07 00:43:41 +0000787}
788
Douglas Gregoraee3bf82008-11-18 15:03:34 +0000789/// ActOnDeclarationNameExpr - The parser has read some kind of name
790/// (e.g., a C++ id-expression (C++ [expr.prim]p1)). This routine
791/// performs lookup on that name and returns an expression that refers
792/// to that name. This routine isn't directly called from the parser,
793/// because the parser doesn't know about DeclarationName. Rather,
794/// this routine is called by ActOnIdentifierExpr,
795/// ActOnOperatorFunctionIdExpr, and ActOnConversionFunctionExpr,
796/// which form the DeclarationName from the corresponding syntactic
797/// forms.
798///
799/// HasTrailingLParen indicates whether this identifier is used in a
800/// function call context. LookupCtx is only used for a C++
801/// qualified-id (foo::bar) to indicate the class or namespace that
802/// the identifier must be a member of.
Douglas Gregora133e262008-12-06 00:22:45 +0000803///
Sebastian Redl0c9da212009-02-03 20:19:35 +0000804/// isAddressOfOperand means that this expression is the direct operand
805/// of an address-of operator. This matters because this is the only
806/// situation where a qualified name referencing a non-static member may
807/// appear outside a member function of this class.
Sebastian Redlcd883f72009-01-18 18:53:16 +0000808Sema::OwningExprResult
809Sema::ActOnDeclarationNameExpr(Scope *S, SourceLocation Loc,
810 DeclarationName Name, bool HasTrailingLParen,
Douglas Gregor4646f9c2009-02-04 15:01:18 +0000811 const CXXScopeSpec *SS,
Sebastian Redl0c9da212009-02-03 20:19:35 +0000812 bool isAddressOfOperand) {
Chris Lattnerc72d22d2008-03-31 00:36:02 +0000813 // Could be enum-constant, value decl, instance variable, etc.
Douglas Gregor52ae30c2009-01-30 01:04:22 +0000814 if (SS && SS->isInvalid())
815 return ExprError();
Douglas Gregor47bde7c2009-03-19 17:26:29 +0000816
817 // C++ [temp.dep.expr]p3:
818 // An id-expression is type-dependent if it contains:
819 // -- a nested-name-specifier that contains a class-name that
820 // names a dependent type.
821 if (SS && isDependentScopeSpecifier(*SS)) {
Douglas Gregor1e589cc2009-03-26 23:50:42 +0000822 return Owned(new (Context) UnresolvedDeclRefExpr(Name, Context.DependentTy,
823 Loc, SS->getRange(),
Douglas Gregor041e9292009-03-26 23:56:24 +0000824 static_cast<NestedNameSpecifier *>(SS->getScopeRep())));
Douglas Gregor47bde7c2009-03-19 17:26:29 +0000825 }
826
Douglas Gregor411889e2009-02-13 23:20:09 +0000827 LookupResult Lookup = LookupParsedName(S, SS, Name, LookupOrdinaryName,
828 false, true, Loc);
Douglas Gregor29dfa2f2009-01-15 00:26:24 +0000829
Sebastian Redlcd883f72009-01-18 18:53:16 +0000830 if (Lookup.isAmbiguous()) {
831 DiagnoseAmbiguousLookup(Lookup, Name, Loc,
832 SS && SS->isSet() ? SS->getRange()
833 : SourceRange());
834 return ExprError();
Chris Lattnerf3ce8572009-04-24 22:30:50 +0000835 }
836
837 NamedDecl *D = Lookup.getAsDecl();
Douglas Gregora133e262008-12-06 00:22:45 +0000838
Chris Lattnerc72d22d2008-03-31 00:36:02 +0000839 // If this reference is in an Objective-C method, then ivar lookup happens as
840 // well.
Douglas Gregoraee3bf82008-11-18 15:03:34 +0000841 IdentifierInfo *II = Name.getAsIdentifierInfo();
842 if (II && getCurMethodDecl()) {
Chris Lattnerc72d22d2008-03-31 00:36:02 +0000843 // There are two cases to handle here. 1) scoped lookup could have failed,
844 // in which case we should look for an ivar. 2) scoped lookup could have
Fariborz Jahanian67502db2009-03-02 21:55:29 +0000845 // found a decl, but that decl is outside the current instance method (i.e.
846 // a global variable). In these two cases, we do a lookup for an ivar with
847 // this name, if the lookup sucedes, we replace it our current decl.
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000848 if (D == 0 || D->isDefinedOutsideFunctionOrMethod()) {
Argiris Kirtzidis95256e62008-06-28 06:07:14 +0000849 ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface();
Fariborz Jahaniandd71e752009-03-03 01:21:12 +0000850 ObjCInterfaceDecl *ClassDeclared;
Douglas Gregorc55b0b02009-04-09 21:40:53 +0000851 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(Context, II,
852 ClassDeclared)) {
Chris Lattner2a3bef92009-02-16 17:19:12 +0000853 // Check if referencing a field with __attribute__((deprecated)).
Douglas Gregoraa57e862009-02-18 21:56:37 +0000854 if (DiagnoseUseOfDecl(IV, Loc))
855 return ExprError();
Chris Lattnerf3ce8572009-04-24 22:30:50 +0000856
857 // If we're referencing an invalid decl, just return this as a silent
858 // error node. The error diagnostic was already emitted on the decl.
859 if (IV->isInvalidDecl())
860 return ExprError();
861
Fariborz Jahanian67502db2009-03-02 21:55:29 +0000862 bool IsClsMethod = getCurMethodDecl()->isClassMethod();
863 // If a class method attemps to use a free standing ivar, this is
864 // an error.
865 if (IsClsMethod && D && !D->isDefinedOutsideFunctionOrMethod())
866 return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method)
867 << IV->getDeclName());
868 // If a class method uses a global variable, even if an ivar with
869 // same name exists, use the global.
870 if (!IsClsMethod) {
Fariborz Jahaniandd71e752009-03-03 01:21:12 +0000871 if (IV->getAccessControl() == ObjCIvarDecl::Private &&
872 ClassDeclared != IFace)
873 Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName();
Mike Stumpe127ae32009-05-16 07:39:55 +0000874 // FIXME: This should use a new expr for a direct reference, don't
875 // turn this into Self->ivar, just return a BareIVarExpr or something.
Fariborz Jahanian67502db2009-03-02 21:55:29 +0000876 IdentifierInfo &II = Context.Idents.get("self");
877 OwningExprResult SelfExpr = ActOnIdentifierExpr(S, Loc, II, false);
Daniel Dunbarf5254bd2009-04-21 01:19:28 +0000878 return Owned(new (Context)
879 ObjCIvarRefExpr(IV, IV->getType(), Loc,
Anders Carlsson39ecdcf2009-05-01 19:49:17 +0000880 SelfExpr.takeAs<Expr>(), true, true));
Fariborz Jahanian67502db2009-03-02 21:55:29 +0000881 }
Chris Lattnerc72d22d2008-03-31 00:36:02 +0000882 }
883 }
Fariborz Jahanian67502db2009-03-02 21:55:29 +0000884 else if (getCurMethodDecl()->isInstanceMethod()) {
885 // We should warn if a local variable hides an ivar.
886 ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface();
Fariborz Jahaniandd71e752009-03-03 01:21:12 +0000887 ObjCInterfaceDecl *ClassDeclared;
Douglas Gregorc55b0b02009-04-09 21:40:53 +0000888 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(Context, II,
889 ClassDeclared)) {
Fariborz Jahaniandd71e752009-03-03 01:21:12 +0000890 if (IV->getAccessControl() != ObjCIvarDecl::Private ||
891 IFace == ClassDeclared)
Chris Lattnerf3ce8572009-04-24 22:30:50 +0000892 Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName();
Fariborz Jahaniandd71e752009-03-03 01:21:12 +0000893 }
Fariborz Jahanian67502db2009-03-02 21:55:29 +0000894 }
Steve Naroff0ccfaa42008-08-10 19:10:41 +0000895 // Needed to implement property "super.method" notation.
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000896 if (D == 0 && II->isStr("super")) {
Steve Naroffe3aa06f2009-03-05 20:12:00 +0000897 QualType T;
898
899 if (getCurMethodDecl()->isInstanceMethod())
900 T = Context.getPointerType(Context.getObjCInterfaceType(
901 getCurMethodDecl()->getClassInterface()));
902 else
903 T = Context.getObjCClassType();
Steve Naroff774e4152009-01-21 00:14:39 +0000904 return Owned(new (Context) ObjCSuperExpr(Loc, T));
Steve Naroff6f786252008-06-02 23:03:37 +0000905 }
Chris Lattnerc72d22d2008-03-31 00:36:02 +0000906 }
Douglas Gregore2d88fd2009-02-16 19:28:42 +0000907
Douglas Gregoraa57e862009-02-18 21:56:37 +0000908 // Determine whether this name might be a candidate for
909 // argument-dependent lookup.
910 bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) &&
911 HasTrailingLParen;
912
913 if (ADL && D == 0) {
Douglas Gregore2d88fd2009-02-16 19:28:42 +0000914 // We've seen something of the form
915 //
916 // identifier(
917 //
918 // and we did not find any entity by the name
919 // "identifier". However, this identifier is still subject to
920 // argument-dependent lookup, so keep track of the name.
921 return Owned(new (Context) UnresolvedFunctionNameExpr(Name,
922 Context.OverloadTy,
923 Loc));
924 }
925
Chris Lattner4b009652007-07-25 00:24:17 +0000926 if (D == 0) {
927 // Otherwise, this could be an implicitly declared function reference (legal
928 // in C90, extension in C99).
Douglas Gregoraee3bf82008-11-18 15:03:34 +0000929 if (HasTrailingLParen && II &&
Chris Lattnerc72d22d2008-03-31 00:36:02 +0000930 !getLangOptions().CPlusPlus) // Not in C++.
Douglas Gregoraee3bf82008-11-18 15:03:34 +0000931 D = ImplicitlyDefineFunction(Loc, *II, S);
Chris Lattner4b009652007-07-25 00:24:17 +0000932 else {
933 // If this name wasn't predeclared and if this is not a function call,
934 // diagnose the problem.
Argiris Kirtzidis054a2632008-11-08 17:17:31 +0000935 if (SS && !SS->isEmpty())
Sebastian Redlcd883f72009-01-18 18:53:16 +0000936 return ExprError(Diag(Loc, diag::err_typecheck_no_member)
937 << Name << SS->getRange());
Douglas Gregoraee3bf82008-11-18 15:03:34 +0000938 else if (Name.getNameKind() == DeclarationName::CXXOperatorName ||
939 Name.getNameKind() == DeclarationName::CXXConversionFunctionName)
Sebastian Redlcd883f72009-01-18 18:53:16 +0000940 return ExprError(Diag(Loc, diag::err_undeclared_use)
941 << Name.getAsString());
Argiris Kirtzidis054a2632008-11-08 17:17:31 +0000942 else
Sebastian Redlcd883f72009-01-18 18:53:16 +0000943 return ExprError(Diag(Loc, diag::err_undeclared_var_use) << Name);
Chris Lattner4b009652007-07-25 00:24:17 +0000944 }
945 }
Douglas Gregor723d3332009-01-07 00:43:41 +0000946
Sebastian Redl0c9da212009-02-03 20:19:35 +0000947 // If this is an expression of the form &Class::member, don't build an
948 // implicit member ref, because we want a pointer to the member in general,
949 // not any specific instance's member.
950 if (isAddressOfOperand && SS && !SS->isEmpty() && !HasTrailingLParen) {
Douglas Gregor734b4ba2009-03-19 00:18:19 +0000951 DeclContext *DC = computeDeclContext(*SS);
Douglas Gregor09be81b2009-02-04 17:27:36 +0000952 if (D && isa<CXXRecordDecl>(DC)) {
Sebastian Redl0c9da212009-02-03 20:19:35 +0000953 QualType DType;
954 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
955 DType = FD->getType().getNonReferenceType();
956 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
957 DType = Method->getType();
958 } else if (isa<OverloadedFunctionDecl>(D)) {
959 DType = Context.OverloadTy;
960 }
961 // Could be an inner type. That's diagnosed below, so ignore it here.
962 if (!DType.isNull()) {
963 // The pointer is type- and value-dependent if it points into something
964 // dependent.
965 bool Dependent = false;
966 for (; DC; DC = DC->getParent()) {
967 // FIXME: could stop early at namespace scope.
968 if (DC->isRecord()) {
969 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
970 if (Context.getTypeDeclType(Record)->isDependentType()) {
971 Dependent = true;
972 break;
973 }
974 }
975 }
Douglas Gregor09be81b2009-02-04 17:27:36 +0000976 return Owned(BuildDeclRefExpr(D, DType, Loc, Dependent, Dependent, SS));
Sebastian Redl0c9da212009-02-03 20:19:35 +0000977 }
978 }
979 }
980
Douglas Gregor723d3332009-01-07 00:43:41 +0000981 // We may have found a field within an anonymous union or struct
982 // (C++ [class.union]).
983 if (FieldDecl *FD = dyn_cast<FieldDecl>(D))
984 if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion())
985 return BuildAnonymousStructUnionMemberReference(Loc, FD);
Sebastian Redlcd883f72009-01-18 18:53:16 +0000986
Douglas Gregor3257fb52008-12-22 05:46:06 +0000987 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
988 if (!MD->isStatic()) {
989 // C++ [class.mfct.nonstatic]p2:
990 // [...] if name lookup (3.4.1) resolves the name in the
991 // id-expression to a nonstatic nontype member of class X or of
992 // a base class of X, the id-expression is transformed into a
993 // class member access expression (5.2.5) using (*this) (9.3.2)
994 // as the postfix-expression to the left of the '.' operator.
995 DeclContext *Ctx = 0;
996 QualType MemberType;
997 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
998 Ctx = FD->getDeclContext();
999 MemberType = FD->getType();
1000
1001 if (const ReferenceType *RefType = MemberType->getAsReferenceType())
1002 MemberType = RefType->getPointeeType();
1003 else if (!FD->isMutable()) {
1004 unsigned combinedQualifiers
1005 = MemberType.getCVRQualifiers() | MD->getTypeQualifiers();
1006 MemberType = MemberType.getQualifiedType(combinedQualifiers);
1007 }
1008 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
1009 if (!Method->isStatic()) {
1010 Ctx = Method->getParent();
1011 MemberType = Method->getType();
1012 }
1013 } else if (OverloadedFunctionDecl *Ovl
1014 = dyn_cast<OverloadedFunctionDecl>(D)) {
1015 for (OverloadedFunctionDecl::function_iterator
1016 Func = Ovl->function_begin(),
1017 FuncEnd = Ovl->function_end();
1018 Func != FuncEnd; ++Func) {
1019 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(*Func))
1020 if (!DMethod->isStatic()) {
1021 Ctx = Ovl->getDeclContext();
1022 MemberType = Context.OverloadTy;
1023 break;
1024 }
1025 }
1026 }
Douglas Gregor723d3332009-01-07 00:43:41 +00001027
1028 if (Ctx && Ctx->isRecord()) {
Douglas Gregor3257fb52008-12-22 05:46:06 +00001029 QualType CtxType = Context.getTagDeclType(cast<CXXRecordDecl>(Ctx));
1030 QualType ThisType = Context.getTagDeclType(MD->getParent());
1031 if ((Context.getCanonicalType(CtxType)
1032 == Context.getCanonicalType(ThisType)) ||
1033 IsDerivedFrom(ThisType, CtxType)) {
1034 // Build the implicit member access expression.
Steve Naroff774e4152009-01-21 00:14:39 +00001035 Expr *This = new (Context) CXXThisExpr(SourceLocation(),
Mike Stump9afab102009-02-19 03:04:26 +00001036 MD->getThisType(Context));
Douglas Gregor09be81b2009-02-04 17:27:36 +00001037 return Owned(new (Context) MemberExpr(This, true, D,
Eli Friedman1653e232009-04-29 17:56:47 +00001038 Loc, MemberType));
Douglas Gregor3257fb52008-12-22 05:46:06 +00001039 }
1040 }
1041 }
1042 }
1043
Douglas Gregor8acb7272008-12-11 16:49:14 +00001044 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00001045 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
1046 if (MD->isStatic())
1047 // "invalid use of member 'x' in static member function"
Sebastian Redlcd883f72009-01-18 18:53:16 +00001048 return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method)
1049 << FD->getDeclName());
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00001050 }
1051
Douglas Gregor3257fb52008-12-22 05:46:06 +00001052 // Any other ways we could have found the field in a well-formed
1053 // program would have been turned into implicit member expressions
1054 // above.
Sebastian Redlcd883f72009-01-18 18:53:16 +00001055 return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use)
1056 << FD->getDeclName());
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00001057 }
Douglas Gregor3257fb52008-12-22 05:46:06 +00001058
Chris Lattner4b009652007-07-25 00:24:17 +00001059 if (isa<TypedefDecl>(D))
Sebastian Redlcd883f72009-01-18 18:53:16 +00001060 return ExprError(Diag(Loc, diag::err_unexpected_typedef) << Name);
Ted Kremenek42730c52008-01-07 19:49:32 +00001061 if (isa<ObjCInterfaceDecl>(D))
Sebastian Redlcd883f72009-01-18 18:53:16 +00001062 return ExprError(Diag(Loc, diag::err_unexpected_interface) << Name);
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00001063 if (isa<NamespaceDecl>(D))
Sebastian Redlcd883f72009-01-18 18:53:16 +00001064 return ExprError(Diag(Loc, diag::err_unexpected_namespace) << Name);
Chris Lattner4b009652007-07-25 00:24:17 +00001065
Steve Naroffd6163f32008-09-05 22:11:13 +00001066 // Make the DeclRefExpr or BlockDeclRefExpr for the decl.
Douglas Gregord2baafd2008-10-21 16:13:35 +00001067 if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D))
Sebastian Redlcd883f72009-01-18 18:53:16 +00001068 return Owned(BuildDeclRefExpr(Ovl, Context.OverloadTy, Loc,
1069 false, false, SS));
Douglas Gregor35d81bb2009-02-09 23:23:08 +00001070 else if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
1071 return Owned(BuildDeclRefExpr(Template, Context.OverloadTy, Loc,
1072 false, false, SS));
Steve Naroffd6163f32008-09-05 22:11:13 +00001073 ValueDecl *VD = cast<ValueDecl>(D);
Sebastian Redlcd883f72009-01-18 18:53:16 +00001074
Douglas Gregoraa57e862009-02-18 21:56:37 +00001075 // Check whether this declaration can be used. Note that we suppress
1076 // this check when we're going to perform argument-dependent lookup
1077 // on this function name, because this might not be the function
1078 // that overload resolution actually selects.
1079 if (!(ADL && isa<FunctionDecl>(VD)) && DiagnoseUseOfDecl(VD, Loc))
1080 return ExprError();
1081
Douglas Gregor48840c72008-12-10 23:01:14 +00001082 if (VarDecl *Var = dyn_cast<VarDecl>(VD)) {
Chris Lattner2a3bef92009-02-16 17:19:12 +00001083 // Warn about constructs like:
1084 // if (void *X = foo()) { ... } else { X }.
1085 // In the else block, the pointer is always false.
Douglas Gregor48840c72008-12-10 23:01:14 +00001086 if (Var->isDeclaredInCondition() && Var->getType()->isScalarType()) {
1087 Scope *CheckS = S;
1088 while (CheckS) {
1089 if (CheckS->isWithinElse() &&
Chris Lattner5261d0c2009-03-28 19:18:32 +00001090 CheckS->getControlParent()->isDeclScope(DeclPtrTy::make(Var))) {
Douglas Gregor48840c72008-12-10 23:01:14 +00001091 if (Var->getType()->isBooleanType())
Sebastian Redlcd883f72009-01-18 18:53:16 +00001092 ExprError(Diag(Loc, diag::warn_value_always_false)
1093 << Var->getDeclName());
Douglas Gregor48840c72008-12-10 23:01:14 +00001094 else
Sebastian Redlcd883f72009-01-18 18:53:16 +00001095 ExprError(Diag(Loc, diag::warn_value_always_zero)
1096 << Var->getDeclName());
Douglas Gregor48840c72008-12-10 23:01:14 +00001097 break;
1098 }
1099
1100 // Move up one more control parent to check again.
1101 CheckS = CheckS->getControlParent();
1102 if (CheckS)
1103 CheckS = CheckS->getParent();
1104 }
1105 }
Douglas Gregor1f88aa72009-02-25 16:33:18 +00001106 } else if (FunctionDecl *Func = dyn_cast<FunctionDecl>(VD)) {
1107 if (!getLangOptions().CPlusPlus && !Func->hasPrototype()) {
1108 // C99 DR 316 says that, if a function type comes from a
1109 // function definition (without a prototype), that type is only
1110 // used for checking compatibility. Therefore, when referencing
1111 // the function, we pretend that we don't have the full function
1112 // type.
1113 QualType T = Func->getType();
1114 QualType NoProtoType = T;
Douglas Gregor4fa58902009-02-26 23:50:07 +00001115 if (const FunctionProtoType *Proto = T->getAsFunctionProtoType())
1116 NoProtoType = Context.getFunctionNoProtoType(Proto->getResultType());
Douglas Gregor1f88aa72009-02-25 16:33:18 +00001117 return Owned(BuildDeclRefExpr(VD, NoProtoType, Loc, false, false, SS));
1118 }
Douglas Gregor48840c72008-12-10 23:01:14 +00001119 }
Steve Naroffd6163f32008-09-05 22:11:13 +00001120
1121 // Only create DeclRefExpr's for valid Decl's.
1122 if (VD->isInvalidDecl())
Sebastian Redlcd883f72009-01-18 18:53:16 +00001123 return ExprError();
1124
Chris Lattnerb2ebd482008-10-20 05:16:36 +00001125 // If the identifier reference is inside a block, and it refers to a value
1126 // that is outside the block, create a BlockDeclRefExpr instead of a
1127 // DeclRefExpr. This ensures the value is treated as a copy-in snapshot when
1128 // the block is formed.
Steve Naroffd6163f32008-09-05 22:11:13 +00001129 //
Chris Lattnerb2ebd482008-10-20 05:16:36 +00001130 // We do not do this for things like enum constants, global variables, etc,
1131 // as they do not get snapshotted.
1132 //
1133 if (CurBlock && ShouldSnapshotBlockValueReference(CurBlock, VD)) {
Eli Friedman9c2b33f2009-03-22 23:00:19 +00001134 QualType ExprTy = VD->getType().getNonReferenceType();
Steve Naroff52059382008-10-10 01:28:17 +00001135 // The BlocksAttr indicates the variable is bound by-reference.
1136 if (VD->getAttr<BlocksAttr>())
Eli Friedman9c2b33f2009-03-22 23:00:19 +00001137 return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, true));
Sebastian Redlcd883f72009-01-18 18:53:16 +00001138
Steve Naroff52059382008-10-10 01:28:17 +00001139 // Variable will be bound by-copy, make it const within the closure.
Eli Friedman9c2b33f2009-03-22 23:00:19 +00001140 ExprTy.addConst();
1141 return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, false));
Steve Naroff52059382008-10-10 01:28:17 +00001142 }
1143 // If this reference is not in a block or if the referenced variable is
1144 // within the block, create a normal DeclRefExpr.
Douglas Gregor1b21c7f2008-12-05 23:32:09 +00001145
Douglas Gregor1b21c7f2008-12-05 23:32:09 +00001146 bool TypeDependent = false;
Douglas Gregora5d84612008-12-10 20:57:37 +00001147 bool ValueDependent = false;
1148 if (getLangOptions().CPlusPlus) {
1149 // C++ [temp.dep.expr]p3:
1150 // An id-expression is type-dependent if it contains:
1151 // - an identifier that was declared with a dependent type,
1152 if (VD->getType()->isDependentType())
1153 TypeDependent = true;
1154 // - FIXME: a template-id that is dependent,
1155 // - a conversion-function-id that specifies a dependent type,
1156 else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName &&
1157 Name.getCXXNameType()->isDependentType())
1158 TypeDependent = true;
1159 // - a nested-name-specifier that contains a class-name that
1160 // names a dependent type.
1161 else if (SS && !SS->isEmpty()) {
Douglas Gregor734b4ba2009-03-19 00:18:19 +00001162 for (DeclContext *DC = computeDeclContext(*SS);
Douglas Gregora5d84612008-12-10 20:57:37 +00001163 DC; DC = DC->getParent()) {
1164 // FIXME: could stop early at namespace scope.
Douglas Gregor723d3332009-01-07 00:43:41 +00001165 if (DC->isRecord()) {
Douglas Gregora5d84612008-12-10 20:57:37 +00001166 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
1167 if (Context.getTypeDeclType(Record)->isDependentType()) {
1168 TypeDependent = true;
1169 break;
1170 }
Douglas Gregor1b21c7f2008-12-05 23:32:09 +00001171 }
1172 }
1173 }
Douglas Gregor1b21c7f2008-12-05 23:32:09 +00001174
Douglas Gregora5d84612008-12-10 20:57:37 +00001175 // C++ [temp.dep.constexpr]p2:
1176 //
1177 // An identifier is value-dependent if it is:
1178 // - a name declared with a dependent type,
1179 if (TypeDependent)
1180 ValueDependent = true;
1181 // - the name of a non-type template parameter,
1182 else if (isa<NonTypeTemplateParmDecl>(VD))
1183 ValueDependent = true;
1184 // - a constant with integral or enumeration type and is
1185 // initialized with an expression that is value-dependent
1186 // (FIXME!).
1187 }
Douglas Gregor1b21c7f2008-12-05 23:32:09 +00001188
Sebastian Redlcd883f72009-01-18 18:53:16 +00001189 return Owned(BuildDeclRefExpr(VD, VD->getType().getNonReferenceType(), Loc,
1190 TypeDependent, ValueDependent, SS));
Chris Lattner4b009652007-07-25 00:24:17 +00001191}
1192
Sebastian Redlcd883f72009-01-18 18:53:16 +00001193Sema::OwningExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc,
1194 tok::TokenKind Kind) {
Chris Lattner69909292008-08-10 01:53:14 +00001195 PredefinedExpr::IdentType IT;
Sebastian Redlcd883f72009-01-18 18:53:16 +00001196
Chris Lattner4b009652007-07-25 00:24:17 +00001197 switch (Kind) {
Chris Lattnere12ca5d2008-01-12 18:39:25 +00001198 default: assert(0 && "Unknown simple primary expr!");
Chris Lattner69909292008-08-10 01:53:14 +00001199 case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2]
1200 case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break;
1201 case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break;
Chris Lattner4b009652007-07-25 00:24:17 +00001202 }
Chris Lattnere12ca5d2008-01-12 18:39:25 +00001203
Chris Lattner7e637512008-01-12 08:14:25 +00001204 // Pre-defined identifiers are of type char[x], where x is the length of the
1205 // string.
Chris Lattnerfc9511c2008-01-12 19:32:28 +00001206 unsigned Length;
Chris Lattnere5cb5862008-12-04 23:50:19 +00001207 if (FunctionDecl *FD = getCurFunctionDecl())
1208 Length = FD->getIdentifier()->getLength();
Chris Lattnerbce5e4f2008-12-12 05:05:20 +00001209 else if (ObjCMethodDecl *MD = getCurMethodDecl())
1210 Length = MD->getSynthesizedMethodSize();
1211 else {
1212 Diag(Loc, diag::ext_predef_outside_function);
1213 // __PRETTY_FUNCTION__ -> "top level", the others produce an empty string.
1214 Length = IT == PredefinedExpr::PrettyFunction ? strlen("top level") : 0;
1215 }
Sebastian Redlcd883f72009-01-18 18:53:16 +00001216
1217
Chris Lattnerfc9511c2008-01-12 19:32:28 +00001218 llvm::APInt LengthI(32, Length + 1);
Chris Lattnere12ca5d2008-01-12 18:39:25 +00001219 QualType ResTy = Context.CharTy.getQualifiedType(QualType::Const);
Chris Lattnerfc9511c2008-01-12 19:32:28 +00001220 ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0);
Steve Naroff774e4152009-01-21 00:14:39 +00001221 return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT));
Chris Lattner4b009652007-07-25 00:24:17 +00001222}
1223
Sebastian Redlcd883f72009-01-18 18:53:16 +00001224Sema::OwningExprResult Sema::ActOnCharacterConstant(const Token &Tok) {
Chris Lattner4b009652007-07-25 00:24:17 +00001225 llvm::SmallString<16> CharBuffer;
1226 CharBuffer.resize(Tok.getLength());
1227 const char *ThisTokBegin = &CharBuffer[0];
1228 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
Sebastian Redlcd883f72009-01-18 18:53:16 +00001229
Chris Lattner4b009652007-07-25 00:24:17 +00001230 CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
1231 Tok.getLocation(), PP);
1232 if (Literal.hadError())
Sebastian Redlcd883f72009-01-18 18:53:16 +00001233 return ExprError();
Chris Lattner6b22fb72008-03-01 08:32:21 +00001234
1235 QualType type = getLangOptions().CPlusPlus ? Context.CharTy : Context.IntTy;
1236
Sebastian Redl75324932009-01-20 22:23:13 +00001237 return Owned(new (Context) CharacterLiteral(Literal.getValue(),
1238 Literal.isWide(),
1239 type, Tok.getLocation()));
Chris Lattner4b009652007-07-25 00:24:17 +00001240}
1241
Sebastian Redlcd883f72009-01-18 18:53:16 +00001242Action::OwningExprResult Sema::ActOnNumericConstant(const Token &Tok) {
1243 // Fast path for a single digit (which is quite common). A single digit
Chris Lattner4b009652007-07-25 00:24:17 +00001244 // cannot have a trigraph, escaped newline, radix prefix, or type suffix.
1245 if (Tok.getLength() == 1) {
Chris Lattnerc374f8b2009-01-26 22:36:52 +00001246 const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok);
Chris Lattnerfd5f1432009-01-16 07:10:29 +00001247 unsigned IntSize = Context.Target.getIntWidth();
Steve Naroff774e4152009-01-21 00:14:39 +00001248 return Owned(new (Context) IntegerLiteral(llvm::APInt(IntSize, Val-'0'),
Steve Naroffe5f128a2009-01-20 19:53:53 +00001249 Context.IntTy, Tok.getLocation()));
Chris Lattner4b009652007-07-25 00:24:17 +00001250 }
Ted Kremenekdbde2282009-01-13 23:19:12 +00001251
Chris Lattner4b009652007-07-25 00:24:17 +00001252 llvm::SmallString<512> IntegerBuffer;
Chris Lattner46d91342008-09-30 20:53:45 +00001253 // Add padding so that NumericLiteralParser can overread by one character.
1254 IntegerBuffer.resize(Tok.getLength()+1);
Chris Lattner4b009652007-07-25 00:24:17 +00001255 const char *ThisTokBegin = &IntegerBuffer[0];
Sebastian Redlcd883f72009-01-18 18:53:16 +00001256
Chris Lattner4b009652007-07-25 00:24:17 +00001257 // Get the spelling of the token, which eliminates trigraphs, etc.
1258 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
Sebastian Redlcd883f72009-01-18 18:53:16 +00001259
Chris Lattner4b009652007-07-25 00:24:17 +00001260 NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
1261 Tok.getLocation(), PP);
1262 if (Literal.hadError)
Sebastian Redlcd883f72009-01-18 18:53:16 +00001263 return ExprError();
1264
Chris Lattner1de66eb2007-08-26 03:42:43 +00001265 Expr *Res;
Sebastian Redlcd883f72009-01-18 18:53:16 +00001266
Chris Lattner1de66eb2007-08-26 03:42:43 +00001267 if (Literal.isFloatingLiteral()) {
Chris Lattner858eece2007-09-22 18:29:59 +00001268 QualType Ty;
Chris Lattner2a674dc2008-06-30 18:32:54 +00001269 if (Literal.isFloat)
Chris Lattner858eece2007-09-22 18:29:59 +00001270 Ty = Context.FloatTy;
Chris Lattner2a674dc2008-06-30 18:32:54 +00001271 else if (!Literal.isLong)
Chris Lattner858eece2007-09-22 18:29:59 +00001272 Ty = Context.DoubleTy;
Chris Lattner2a674dc2008-06-30 18:32:54 +00001273 else
Chris Lattnerfc18dcc2008-03-08 08:52:55 +00001274 Ty = Context.LongDoubleTy;
Chris Lattner2a674dc2008-06-30 18:32:54 +00001275
1276 const llvm::fltSemantics &Format = Context.getFloatTypeSemantics(Ty);
1277
Ted Kremenekddedbe22007-11-29 00:56:49 +00001278 // isExact will be set by GetFloatValue().
1279 bool isExact = false;
Sebastian Redl75324932009-01-20 22:23:13 +00001280 Res = new (Context) FloatingLiteral(Literal.GetFloatValue(Format, &isExact),
1281 &isExact, Ty, Tok.getLocation());
Sebastian Redlcd883f72009-01-18 18:53:16 +00001282
Chris Lattner1de66eb2007-08-26 03:42:43 +00001283 } else if (!Literal.isIntegerLiteral()) {
Sebastian Redlcd883f72009-01-18 18:53:16 +00001284 return ExprError();
Chris Lattner1de66eb2007-08-26 03:42:43 +00001285 } else {
Chris Lattner48d7f382008-04-02 04:24:33 +00001286 QualType Ty;
Chris Lattner4b009652007-07-25 00:24:17 +00001287
Neil Booth7421e9c2007-08-29 22:00:19 +00001288 // long long is a C99 feature.
1289 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
Neil Booth9bd47082007-08-29 22:13:52 +00001290 Literal.isLongLong)
Neil Booth7421e9c2007-08-29 22:00:19 +00001291 Diag(Tok.getLocation(), diag::ext_longlong);
1292
Chris Lattner4b009652007-07-25 00:24:17 +00001293 // Get the value in the widest-possible width.
Chris Lattner8cd0e932008-03-05 18:54:05 +00001294 llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(), 0);
Sebastian Redlcd883f72009-01-18 18:53:16 +00001295
Chris Lattner4b009652007-07-25 00:24:17 +00001296 if (Literal.GetIntegerValue(ResultVal)) {
1297 // If this value didn't fit into uintmax_t, warn and force to ull.
1298 Diag(Tok.getLocation(), diag::warn_integer_too_large);
Chris Lattner48d7f382008-04-02 04:24:33 +00001299 Ty = Context.UnsignedLongLongTy;
1300 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() &&
Chris Lattner8cd0e932008-03-05 18:54:05 +00001301 "long long is not intmax_t?");
Chris Lattner4b009652007-07-25 00:24:17 +00001302 } else {
1303 // If this value fits into a ULL, try to figure out what else it fits into
1304 // according to the rules of C99 6.4.4.1p5.
Sebastian Redlcd883f72009-01-18 18:53:16 +00001305
Chris Lattner4b009652007-07-25 00:24:17 +00001306 // Octal, Hexadecimal, and integers with a U suffix are allowed to
1307 // be an unsigned int.
1308 bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10;
1309
1310 // Check from smallest to largest, picking the smallest type we can.
Chris Lattnere4068872008-05-09 05:59:00 +00001311 unsigned Width = 0;
Chris Lattner98540b62007-08-23 21:58:08 +00001312 if (!Literal.isLong && !Literal.isLongLong) {
1313 // Are int/unsigned possibilities?
Chris Lattnere4068872008-05-09 05:59:00 +00001314 unsigned IntSize = Context.Target.getIntWidth();
Sebastian Redlcd883f72009-01-18 18:53:16 +00001315
Chris Lattner4b009652007-07-25 00:24:17 +00001316 // Does it fit in a unsigned int?
1317 if (ResultVal.isIntN(IntSize)) {
1318 // Does it fit in a signed int?
1319 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0)
Chris Lattner48d7f382008-04-02 04:24:33 +00001320 Ty = Context.IntTy;
Chris Lattner4b009652007-07-25 00:24:17 +00001321 else if (AllowUnsigned)
Chris Lattner48d7f382008-04-02 04:24:33 +00001322 Ty = Context.UnsignedIntTy;
Chris Lattnere4068872008-05-09 05:59:00 +00001323 Width = IntSize;
Chris Lattner4b009652007-07-25 00:24:17 +00001324 }
Chris Lattner4b009652007-07-25 00:24:17 +00001325 }
Sebastian Redlcd883f72009-01-18 18:53:16 +00001326
Chris Lattner4b009652007-07-25 00:24:17 +00001327 // Are long/unsigned long possibilities?
Chris Lattner48d7f382008-04-02 04:24:33 +00001328 if (Ty.isNull() && !Literal.isLongLong) {
Chris Lattnere4068872008-05-09 05:59:00 +00001329 unsigned LongSize = Context.Target.getLongWidth();
Sebastian Redlcd883f72009-01-18 18:53:16 +00001330
Chris Lattner4b009652007-07-25 00:24:17 +00001331 // Does it fit in a unsigned long?
1332 if (ResultVal.isIntN(LongSize)) {
1333 // Does it fit in a signed long?
1334 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0)
Chris Lattner48d7f382008-04-02 04:24:33 +00001335 Ty = Context.LongTy;
Chris Lattner4b009652007-07-25 00:24:17 +00001336 else if (AllowUnsigned)
Chris Lattner48d7f382008-04-02 04:24:33 +00001337 Ty = Context.UnsignedLongTy;
Chris Lattnere4068872008-05-09 05:59:00 +00001338 Width = LongSize;
Chris Lattner4b009652007-07-25 00:24:17 +00001339 }
Sebastian Redlcd883f72009-01-18 18:53:16 +00001340 }
1341
Chris Lattner4b009652007-07-25 00:24:17 +00001342 // Finally, check long long if needed.
Chris Lattner48d7f382008-04-02 04:24:33 +00001343 if (Ty.isNull()) {
Chris Lattnere4068872008-05-09 05:59:00 +00001344 unsigned LongLongSize = Context.Target.getLongLongWidth();
Sebastian Redlcd883f72009-01-18 18:53:16 +00001345
Chris Lattner4b009652007-07-25 00:24:17 +00001346 // Does it fit in a unsigned long long?
1347 if (ResultVal.isIntN(LongLongSize)) {
1348 // Does it fit in a signed long long?
1349 if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0)
Chris Lattner48d7f382008-04-02 04:24:33 +00001350 Ty = Context.LongLongTy;
Chris Lattner4b009652007-07-25 00:24:17 +00001351 else if (AllowUnsigned)
Chris Lattner48d7f382008-04-02 04:24:33 +00001352 Ty = Context.UnsignedLongLongTy;
Chris Lattnere4068872008-05-09 05:59:00 +00001353 Width = LongLongSize;
Chris Lattner4b009652007-07-25 00:24:17 +00001354 }
1355 }
Sebastian Redlcd883f72009-01-18 18:53:16 +00001356
Chris Lattner4b009652007-07-25 00:24:17 +00001357 // If we still couldn't decide a type, we probably have something that
1358 // does not fit in a signed long long, but has no U suffix.
Chris Lattner48d7f382008-04-02 04:24:33 +00001359 if (Ty.isNull()) {
Chris Lattner4b009652007-07-25 00:24:17 +00001360 Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed);
Chris Lattner48d7f382008-04-02 04:24:33 +00001361 Ty = Context.UnsignedLongLongTy;
Chris Lattnere4068872008-05-09 05:59:00 +00001362 Width = Context.Target.getLongLongWidth();
Chris Lattner4b009652007-07-25 00:24:17 +00001363 }
Sebastian Redlcd883f72009-01-18 18:53:16 +00001364
Chris Lattnere4068872008-05-09 05:59:00 +00001365 if (ResultVal.getBitWidth() != Width)
1366 ResultVal.trunc(Width);
Chris Lattner4b009652007-07-25 00:24:17 +00001367 }
Sebastian Redl75324932009-01-20 22:23:13 +00001368 Res = new (Context) IntegerLiteral(ResultVal, Ty, Tok.getLocation());
Chris Lattner4b009652007-07-25 00:24:17 +00001369 }
Sebastian Redlcd883f72009-01-18 18:53:16 +00001370
Chris Lattner1de66eb2007-08-26 03:42:43 +00001371 // If this is an imaginary literal, create the ImaginaryLiteral wrapper.
1372 if (Literal.isImaginary)
Steve Naroff774e4152009-01-21 00:14:39 +00001373 Res = new (Context) ImaginaryLiteral(Res,
1374 Context.getComplexType(Res->getType()));
Sebastian Redlcd883f72009-01-18 18:53:16 +00001375
1376 return Owned(Res);
Chris Lattner4b009652007-07-25 00:24:17 +00001377}
1378
Sebastian Redlcd883f72009-01-18 18:53:16 +00001379Action::OwningExprResult Sema::ActOnParenExpr(SourceLocation L,
1380 SourceLocation R, ExprArg Val) {
Anders Carlsson39ecdcf2009-05-01 19:49:17 +00001381 Expr *E = Val.takeAs<Expr>();
Chris Lattner48d7f382008-04-02 04:24:33 +00001382 assert((E != 0) && "ActOnParenExpr() missing expr");
Steve Naroff774e4152009-01-21 00:14:39 +00001383 return Owned(new (Context) ParenExpr(L, R, E));
Chris Lattner4b009652007-07-25 00:24:17 +00001384}
1385
1386/// The UsualUnaryConversions() function is *not* called by this routine.
1387/// See C99 6.3.2.1p[2-4] for more details.
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00001388bool Sema::CheckSizeOfAlignOfOperand(QualType exprType,
Sebastian Redl0cb7c872008-11-11 17:56:53 +00001389 SourceLocation OpLoc,
1390 const SourceRange &ExprRange,
1391 bool isSizeof) {
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00001392 if (exprType->isDependentType())
1393 return false;
1394
Chris Lattner4b009652007-07-25 00:24:17 +00001395 // C99 6.5.3.4p1:
Chris Lattner159fe082009-01-24 19:46:37 +00001396 if (isa<FunctionType>(exprType)) {
Chris Lattner95933c12009-04-24 00:30:45 +00001397 // alignof(function) is allowed as an extension.
Chris Lattner159fe082009-01-24 19:46:37 +00001398 if (isSizeof)
1399 Diag(OpLoc, diag::ext_sizeof_function_type) << ExprRange;
1400 return false;
1401 }
1402
Chris Lattner95933c12009-04-24 00:30:45 +00001403 // Allow sizeof(void)/alignof(void) as an extension.
Chris Lattner159fe082009-01-24 19:46:37 +00001404 if (exprType->isVoidType()) {
Chris Lattner8ba580c2008-11-19 05:08:23 +00001405 Diag(OpLoc, diag::ext_sizeof_void_type)
1406 << (isSizeof ? "sizeof" : "__alignof") << ExprRange;
Chris Lattner159fe082009-01-24 19:46:37 +00001407 return false;
1408 }
Chris Lattnere1127c42009-04-21 19:55:16 +00001409
Chris Lattner95933c12009-04-24 00:30:45 +00001410 if (RequireCompleteType(OpLoc, exprType,
1411 isSizeof ? diag::err_sizeof_incomplete_type :
1412 diag::err_alignof_incomplete_type,
1413 ExprRange))
1414 return true;
1415
1416 // Reject sizeof(interface) and sizeof(interface<proto>) in 64-bit mode.
Fariborz Jahanianbf2b0952009-04-24 17:34:33 +00001417 if (LangOpts.ObjCNonFragileABI && exprType->isObjCInterfaceType()) {
Chris Lattner95933c12009-04-24 00:30:45 +00001418 Diag(OpLoc, diag::err_sizeof_nonfragile_interface)
Chris Lattnerf3ce8572009-04-24 22:30:50 +00001419 << exprType << isSizeof << ExprRange;
1420 return true;
Chris Lattnere1127c42009-04-21 19:55:16 +00001421 }
1422
Chris Lattner95933c12009-04-24 00:30:45 +00001423 return false;
Chris Lattner4b009652007-07-25 00:24:17 +00001424}
1425
Chris Lattner8d9f7962009-01-24 20:17:12 +00001426bool Sema::CheckAlignOfExpr(Expr *E, SourceLocation OpLoc,
1427 const SourceRange &ExprRange) {
1428 E = E->IgnoreParens();
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00001429
Chris Lattner8d9f7962009-01-24 20:17:12 +00001430 // alignof decl is always ok.
1431 if (isa<DeclRefExpr>(E))
1432 return false;
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00001433
1434 // Cannot know anything else if the expression is dependent.
1435 if (E->isTypeDependent())
1436 return false;
1437
Douglas Gregor531434b2009-05-02 02:18:30 +00001438 if (E->getBitField()) {
1439 Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 1 << ExprRange;
1440 return true;
Chris Lattner8d9f7962009-01-24 20:17:12 +00001441 }
Douglas Gregor531434b2009-05-02 02:18:30 +00001442
1443 // Alignment of a field access is always okay, so long as it isn't a
1444 // bit-field.
1445 if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
1446 if (dyn_cast<FieldDecl>(ME->getMemberDecl()))
1447 return false;
1448
Chris Lattner8d9f7962009-01-24 20:17:12 +00001449 return CheckSizeOfAlignOfOperand(E->getType(), OpLoc, ExprRange, false);
1450}
1451
Douglas Gregor396f1142009-03-13 21:01:28 +00001452/// \brief Build a sizeof or alignof expression given a type operand.
1453Action::OwningExprResult
1454Sema::CreateSizeOfAlignOfExpr(QualType T, SourceLocation OpLoc,
1455 bool isSizeOf, SourceRange R) {
1456 if (T.isNull())
1457 return ExprError();
1458
1459 if (!T->isDependentType() &&
1460 CheckSizeOfAlignOfOperand(T, OpLoc, R, isSizeOf))
1461 return ExprError();
1462
1463 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
1464 return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, T,
1465 Context.getSizeType(), OpLoc,
1466 R.getEnd()));
1467}
1468
1469/// \brief Build a sizeof or alignof expression given an expression
1470/// operand.
1471Action::OwningExprResult
1472Sema::CreateSizeOfAlignOfExpr(Expr *E, SourceLocation OpLoc,
1473 bool isSizeOf, SourceRange R) {
1474 // Verify that the operand is valid.
1475 bool isInvalid = false;
1476 if (E->isTypeDependent()) {
1477 // Delay type-checking for type-dependent expressions.
1478 } else if (!isSizeOf) {
1479 isInvalid = CheckAlignOfExpr(E, OpLoc, R);
Douglas Gregor531434b2009-05-02 02:18:30 +00001480 } else if (E->getBitField()) { // C99 6.5.3.4p1.
Douglas Gregor396f1142009-03-13 21:01:28 +00001481 Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 0;
1482 isInvalid = true;
1483 } else {
1484 isInvalid = CheckSizeOfAlignOfOperand(E->getType(), OpLoc, R, true);
1485 }
1486
1487 if (isInvalid)
1488 return ExprError();
1489
1490 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
1491 return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, E,
1492 Context.getSizeType(), OpLoc,
1493 R.getEnd()));
1494}
1495
Sebastian Redl0cb7c872008-11-11 17:56:53 +00001496/// ActOnSizeOfAlignOfExpr - Handle @c sizeof(type) and @c sizeof @c expr and
1497/// the same for @c alignof and @c __alignof
1498/// Note that the ArgRange is invalid if isType is false.
Sebastian Redl8b769972009-01-19 00:08:26 +00001499Action::OwningExprResult
Sebastian Redl0cb7c872008-11-11 17:56:53 +00001500Sema::ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType,
1501 void *TyOrEx, const SourceRange &ArgRange) {
Chris Lattner4b009652007-07-25 00:24:17 +00001502 // If error parsing type, ignore.
Sebastian Redl8b769972009-01-19 00:08:26 +00001503 if (TyOrEx == 0) return ExprError();
Chris Lattner4b009652007-07-25 00:24:17 +00001504
Sebastian Redl0cb7c872008-11-11 17:56:53 +00001505 if (isType) {
Douglas Gregor396f1142009-03-13 21:01:28 +00001506 QualType ArgTy = QualType::getFromOpaquePtr(TyOrEx);
1507 return CreateSizeOfAlignOfExpr(ArgTy, OpLoc, isSizeof, ArgRange);
1508 }
Sebastian Redl0cb7c872008-11-11 17:56:53 +00001509
Douglas Gregor396f1142009-03-13 21:01:28 +00001510 // Get the end location.
1511 Expr *ArgEx = (Expr *)TyOrEx;
1512 Action::OwningExprResult Result
1513 = CreateSizeOfAlignOfExpr(ArgEx, OpLoc, isSizeof, ArgEx->getSourceRange());
1514
1515 if (Result.isInvalid())
1516 DeleteExpr(ArgEx);
1517
1518 return move(Result);
Chris Lattner4b009652007-07-25 00:24:17 +00001519}
1520
Chris Lattner57e5f7e2009-02-17 08:12:06 +00001521QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc, bool isReal) {
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00001522 if (V->isTypeDependent())
1523 return Context.DependentTy;
Chris Lattner03931a72007-08-24 21:16:53 +00001524
Chris Lattnera16e42d2007-08-26 05:39:26 +00001525 // These operators return the element type of a complex type.
Chris Lattner03931a72007-08-24 21:16:53 +00001526 if (const ComplexType *CT = V->getType()->getAsComplexType())
1527 return CT->getElementType();
Chris Lattnera16e42d2007-08-26 05:39:26 +00001528
1529 // Otherwise they pass through real integer and floating point types here.
1530 if (V->getType()->isArithmeticType())
1531 return V->getType();
1532
1533 // Reject anything else.
Chris Lattner57e5f7e2009-02-17 08:12:06 +00001534 Diag(Loc, diag::err_realimag_invalid_type) << V->getType()
1535 << (isReal ? "__real" : "__imag");
Chris Lattnera16e42d2007-08-26 05:39:26 +00001536 return QualType();
Chris Lattner03931a72007-08-24 21:16:53 +00001537}
1538
1539
Chris Lattner4b009652007-07-25 00:24:17 +00001540
Sebastian Redl8b769972009-01-19 00:08:26 +00001541Action::OwningExprResult
1542Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc,
1543 tok::TokenKind Kind, ExprArg Input) {
1544 Expr *Arg = (Expr *)Input.get();
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001545
Chris Lattner4b009652007-07-25 00:24:17 +00001546 UnaryOperator::Opcode Opc;
1547 switch (Kind) {
1548 default: assert(0 && "Unknown unary op!");
1549 case tok::plusplus: Opc = UnaryOperator::PostInc; break;
1550 case tok::minusminus: Opc = UnaryOperator::PostDec; break;
1551 }
Sebastian Redl8b769972009-01-19 00:08:26 +00001552
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001553 if (getLangOptions().CPlusPlus &&
1554 (Arg->getType()->isRecordType() || Arg->getType()->isEnumeralType())) {
1555 // Which overloaded operator?
Sebastian Redl8b769972009-01-19 00:08:26 +00001556 OverloadedOperatorKind OverOp =
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001557 (Opc == UnaryOperator::PostInc)? OO_PlusPlus : OO_MinusMinus;
1558
1559 // C++ [over.inc]p1:
1560 //
1561 // [...] If the function is a member function with one
1562 // parameter (which shall be of type int) or a non-member
1563 // function with two parameters (the second of which shall be
1564 // of type int), it defines the postfix increment operator ++
1565 // for objects of that type. When the postfix increment is
1566 // called as a result of using the ++ operator, the int
1567 // argument will have value zero.
1568 Expr *Args[2] = {
1569 Arg,
Steve Naroff774e4152009-01-21 00:14:39 +00001570 new (Context) IntegerLiteral(llvm::APInt(Context.Target.getIntWidth(), 0,
1571 /*isSigned=*/true), Context.IntTy, SourceLocation())
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001572 };
1573
1574 // Build the candidate set for overloading
1575 OverloadCandidateSet CandidateSet;
Douglas Gregor00fe3f62009-03-13 18:40:31 +00001576 AddOperatorCandidates(OverOp, S, OpLoc, Args, 2, CandidateSet);
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001577
1578 // Perform overload resolution.
1579 OverloadCandidateSet::iterator Best;
1580 switch (BestViableFunction(CandidateSet, Best)) {
1581 case OR_Success: {
1582 // We found a built-in operator or an overloaded operator.
1583 FunctionDecl *FnDecl = Best->Function;
1584
1585 if (FnDecl) {
1586 // We matched an overloaded operator. Build a call to that
1587 // operator.
1588
1589 // Convert the arguments.
1590 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) {
1591 if (PerformObjectArgumentInitialization(Arg, Method))
Sebastian Redl8b769972009-01-19 00:08:26 +00001592 return ExprError();
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001593 } else {
1594 // Convert the arguments.
Sebastian Redl8b769972009-01-19 00:08:26 +00001595 if (PerformCopyInitialization(Arg,
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001596 FnDecl->getParamDecl(0)->getType(),
1597 "passing"))
Sebastian Redl8b769972009-01-19 00:08:26 +00001598 return ExprError();
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001599 }
1600
1601 // Determine the result type
Sebastian Redl8b769972009-01-19 00:08:26 +00001602 QualType ResultTy
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001603 = FnDecl->getType()->getAsFunctionType()->getResultType();
1604 ResultTy = ResultTy.getNonReferenceType();
Sebastian Redl8b769972009-01-19 00:08:26 +00001605
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001606 // Build the actual expression node.
Steve Naroff774e4152009-01-21 00:14:39 +00001607 Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(),
Mike Stump6d8e5732009-02-19 02:54:59 +00001608 SourceLocation());
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001609 UsualUnaryConversions(FnExpr);
1610
Sebastian Redl8b769972009-01-19 00:08:26 +00001611 Input.release();
Douglas Gregor00fe3f62009-03-13 18:40:31 +00001612 return Owned(new (Context) CXXOperatorCallExpr(Context, OverOp, FnExpr,
1613 Args, 2, ResultTy,
1614 OpLoc));
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001615 } else {
1616 // We matched a built-in operator. Convert the arguments, then
1617 // break out so that we will build the appropriate built-in
1618 // operator node.
1619 if (PerformCopyInitialization(Arg, Best->BuiltinTypes.ParamTypes[0],
1620 "passing"))
Sebastian Redl8b769972009-01-19 00:08:26 +00001621 return ExprError();
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001622
1623 break;
Sebastian Redl8b769972009-01-19 00:08:26 +00001624 }
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001625 }
1626
1627 case OR_No_Viable_Function:
1628 // No viable function; fall through to handling this as a
1629 // built-in operator, which will produce an error message for us.
1630 break;
1631
1632 case OR_Ambiguous:
1633 Diag(OpLoc, diag::err_ovl_ambiguous_oper)
1634 << UnaryOperator::getOpcodeStr(Opc)
1635 << Arg->getSourceRange();
1636 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
Sebastian Redl8b769972009-01-19 00:08:26 +00001637 return ExprError();
Douglas Gregoraa57e862009-02-18 21:56:37 +00001638
1639 case OR_Deleted:
1640 Diag(OpLoc, diag::err_ovl_deleted_oper)
1641 << Best->Function->isDeleted()
1642 << UnaryOperator::getOpcodeStr(Opc)
1643 << Arg->getSourceRange();
1644 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
1645 return ExprError();
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001646 }
1647
1648 // Either we found no viable overloaded operator or we matched a
1649 // built-in operator. In either case, fall through to trying to
1650 // build a built-in operation.
1651 }
1652
Sebastian Redl0440c8c2008-12-20 09:35:34 +00001653 QualType result = CheckIncrementDecrementOperand(Arg, OpLoc,
1654 Opc == UnaryOperator::PostInc);
Chris Lattner4b009652007-07-25 00:24:17 +00001655 if (result.isNull())
Sebastian Redl8b769972009-01-19 00:08:26 +00001656 return ExprError();
1657 Input.release();
Steve Naroff774e4152009-01-21 00:14:39 +00001658 return Owned(new (Context) UnaryOperator(Arg, Opc, result, OpLoc));
Chris Lattner4b009652007-07-25 00:24:17 +00001659}
1660
Sebastian Redl8b769972009-01-19 00:08:26 +00001661Action::OwningExprResult
1662Sema::ActOnArraySubscriptExpr(Scope *S, ExprArg Base, SourceLocation LLoc,
1663 ExprArg Idx, SourceLocation RLoc) {
1664 Expr *LHSExp = static_cast<Expr*>(Base.get()),
1665 *RHSExp = static_cast<Expr*>(Idx.get());
Chris Lattner4b009652007-07-25 00:24:17 +00001666
Douglas Gregor80723c52008-11-19 17:17:41 +00001667 if (getLangOptions().CPlusPlus &&
Douglas Gregorde72f3e2009-05-19 00:01:19 +00001668 (LHSExp->isTypeDependent() || RHSExp->isTypeDependent())) {
1669 Base.release();
1670 Idx.release();
1671 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp,
1672 Context.DependentTy, RLoc));
1673 }
1674
1675 if (getLangOptions().CPlusPlus &&
Sebastian Redl8b769972009-01-19 00:08:26 +00001676 (LHSExp->getType()->isRecordType() ||
Eli Friedmane658bf52008-12-15 22:34:21 +00001677 LHSExp->getType()->isEnumeralType() ||
1678 RHSExp->getType()->isRecordType() ||
1679 RHSExp->getType()->isEnumeralType())) {
Douglas Gregor80723c52008-11-19 17:17:41 +00001680 // Add the appropriate overloaded operators (C++ [over.match.oper])
1681 // to the candidate set.
1682 OverloadCandidateSet CandidateSet;
1683 Expr *Args[2] = { LHSExp, RHSExp };
Douglas Gregor00fe3f62009-03-13 18:40:31 +00001684 AddOperatorCandidates(OO_Subscript, S, LLoc, Args, 2, CandidateSet,
1685 SourceRange(LLoc, RLoc));
Sebastian Redl8b769972009-01-19 00:08:26 +00001686
Douglas Gregor80723c52008-11-19 17:17:41 +00001687 // Perform overload resolution.
1688 OverloadCandidateSet::iterator Best;
1689 switch (BestViableFunction(CandidateSet, Best)) {
1690 case OR_Success: {
1691 // We found a built-in operator or an overloaded operator.
1692 FunctionDecl *FnDecl = Best->Function;
1693
1694 if (FnDecl) {
1695 // We matched an overloaded operator. Build a call to that
1696 // operator.
1697
1698 // Convert the arguments.
1699 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) {
1700 if (PerformObjectArgumentInitialization(LHSExp, Method) ||
1701 PerformCopyInitialization(RHSExp,
1702 FnDecl->getParamDecl(0)->getType(),
1703 "passing"))
Sebastian Redl8b769972009-01-19 00:08:26 +00001704 return ExprError();
Douglas Gregor80723c52008-11-19 17:17:41 +00001705 } else {
1706 // Convert the arguments.
1707 if (PerformCopyInitialization(LHSExp,
1708 FnDecl->getParamDecl(0)->getType(),
1709 "passing") ||
1710 PerformCopyInitialization(RHSExp,
1711 FnDecl->getParamDecl(1)->getType(),
1712 "passing"))
Sebastian Redl8b769972009-01-19 00:08:26 +00001713 return ExprError();
Douglas Gregor80723c52008-11-19 17:17:41 +00001714 }
1715
1716 // Determine the result type
Sebastian Redl8b769972009-01-19 00:08:26 +00001717 QualType ResultTy
Douglas Gregor80723c52008-11-19 17:17:41 +00001718 = FnDecl->getType()->getAsFunctionType()->getResultType();
1719 ResultTy = ResultTy.getNonReferenceType();
Sebastian Redl8b769972009-01-19 00:08:26 +00001720
Douglas Gregor80723c52008-11-19 17:17:41 +00001721 // Build the actual expression node.
Mike Stump9afab102009-02-19 03:04:26 +00001722 Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(),
1723 SourceLocation());
Douglas Gregor80723c52008-11-19 17:17:41 +00001724 UsualUnaryConversions(FnExpr);
1725
Sebastian Redl8b769972009-01-19 00:08:26 +00001726 Base.release();
1727 Idx.release();
Douglas Gregor00fe3f62009-03-13 18:40:31 +00001728 return Owned(new (Context) CXXOperatorCallExpr(Context, OO_Subscript,
1729 FnExpr, Args, 2,
Steve Naroff774e4152009-01-21 00:14:39 +00001730 ResultTy, LLoc));
Douglas Gregor80723c52008-11-19 17:17:41 +00001731 } else {
1732 // We matched a built-in operator. Convert the arguments, then
1733 // break out so that we will build the appropriate built-in
1734 // operator node.
1735 if (PerformCopyInitialization(LHSExp, Best->BuiltinTypes.ParamTypes[0],
1736 "passing") ||
1737 PerformCopyInitialization(RHSExp, Best->BuiltinTypes.ParamTypes[1],
1738 "passing"))
Sebastian Redl8b769972009-01-19 00:08:26 +00001739 return ExprError();
Douglas Gregor80723c52008-11-19 17:17:41 +00001740
1741 break;
1742 }
1743 }
1744
1745 case OR_No_Viable_Function:
1746 // No viable function; fall through to handling this as a
1747 // built-in operator, which will produce an error message for us.
1748 break;
1749
1750 case OR_Ambiguous:
1751 Diag(LLoc, diag::err_ovl_ambiguous_oper)
1752 << "[]"
1753 << LHSExp->getSourceRange() << RHSExp->getSourceRange();
1754 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
Sebastian Redl8b769972009-01-19 00:08:26 +00001755 return ExprError();
Douglas Gregoraa57e862009-02-18 21:56:37 +00001756
1757 case OR_Deleted:
1758 Diag(LLoc, diag::err_ovl_deleted_oper)
1759 << Best->Function->isDeleted()
1760 << "[]"
1761 << LHSExp->getSourceRange() << RHSExp->getSourceRange();
1762 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
1763 return ExprError();
Douglas Gregor80723c52008-11-19 17:17:41 +00001764 }
1765
1766 // Either we found no viable overloaded operator or we matched a
1767 // built-in operator. In either case, fall through to trying to
1768 // build a built-in operation.
1769 }
1770
Chris Lattner4b009652007-07-25 00:24:17 +00001771 // Perform default conversions.
1772 DefaultFunctionArrayConversion(LHSExp);
1773 DefaultFunctionArrayConversion(RHSExp);
Sebastian Redl8b769972009-01-19 00:08:26 +00001774
Chris Lattner4b009652007-07-25 00:24:17 +00001775 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType();
1776
1777 // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent
Chris Lattner0d9bcea2007-08-30 17:45:32 +00001778 // to the expression *((e1)+(e2)). This means the array "Base" may actually be
Mike Stump9afab102009-02-19 03:04:26 +00001779 // in the subscript position. As a result, we need to derive the array base
Chris Lattner4b009652007-07-25 00:24:17 +00001780 // and index from the expression types.
1781 Expr *BaseExpr, *IndexExpr;
1782 QualType ResultType;
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00001783 if (LHSTy->isDependentType() || RHSTy->isDependentType()) {
1784 BaseExpr = LHSExp;
1785 IndexExpr = RHSExp;
1786 ResultType = Context.DependentTy;
1787 } else if (const PointerType *PTy = LHSTy->getAsPointerType()) {
Chris Lattner4b009652007-07-25 00:24:17 +00001788 BaseExpr = LHSExp;
1789 IndexExpr = RHSExp;
Chris Lattner4b009652007-07-25 00:24:17 +00001790 ResultType = PTy->getPointeeType();
Chris Lattner7931f4a2007-07-31 16:53:04 +00001791 } else if (const PointerType *PTy = RHSTy->getAsPointerType()) {
Chris Lattner4b009652007-07-25 00:24:17 +00001792 // Handle the uncommon case of "123[Ptr]".
1793 BaseExpr = RHSExp;
1794 IndexExpr = LHSExp;
Chris Lattner4b009652007-07-25 00:24:17 +00001795 ResultType = PTy->getPointeeType();
Chris Lattnere35a1042007-07-31 19:29:30 +00001796 } else if (const VectorType *VTy = LHSTy->getAsVectorType()) {
1797 BaseExpr = LHSExp; // vectors: V[123]
Chris Lattner4b009652007-07-25 00:24:17 +00001798 IndexExpr = RHSExp;
Nate Begeman57385472009-01-18 00:45:31 +00001799
Chris Lattner4b009652007-07-25 00:24:17 +00001800 // FIXME: need to deal with const...
1801 ResultType = VTy->getElementType();
Eli Friedmand4614072009-04-25 23:46:54 +00001802 } else if (LHSTy->isArrayType()) {
1803 // If we see an array that wasn't promoted by
1804 // DefaultFunctionArrayConversion, it must be an array that
1805 // wasn't promoted because of the C90 rule that doesn't
1806 // allow promoting non-lvalue arrays. Warn, then
1807 // force the promotion here.
1808 Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
1809 LHSExp->getSourceRange();
1810 ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy));
1811 LHSTy = LHSExp->getType();
1812
1813 BaseExpr = LHSExp;
1814 IndexExpr = RHSExp;
1815 ResultType = LHSTy->getAsPointerType()->getPointeeType();
1816 } else if (RHSTy->isArrayType()) {
1817 // Same as previous, except for 123[f().a] case
1818 Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
1819 RHSExp->getSourceRange();
1820 ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy));
1821 RHSTy = RHSExp->getType();
1822
1823 BaseExpr = RHSExp;
1824 IndexExpr = LHSExp;
1825 ResultType = RHSTy->getAsPointerType()->getPointeeType();
Chris Lattner4b009652007-07-25 00:24:17 +00001826 } else {
Chris Lattner7264d212009-04-25 22:50:55 +00001827 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value)
1828 << LHSExp->getSourceRange() << RHSExp->getSourceRange());
Sebastian Redl8b769972009-01-19 00:08:26 +00001829 }
Chris Lattner4b009652007-07-25 00:24:17 +00001830 // C99 6.5.2.1p1
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00001831 if (!IndexExpr->getType()->isIntegerType() && !IndexExpr->isTypeDependent())
Chris Lattner7264d212009-04-25 22:50:55 +00001832 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer)
1833 << IndexExpr->getSourceRange());
Chris Lattner4b009652007-07-25 00:24:17 +00001834
Douglas Gregor05e28f62009-03-24 19:52:54 +00001835 // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly,
1836 // C++ [expr.sub]p1: The type "T" shall be a completely-defined object
1837 // type. Note that Functions are not objects, and that (in C99 parlance)
1838 // incomplete types are not object types.
1839 if (ResultType->isFunctionType()) {
1840 Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type)
1841 << ResultType << BaseExpr->getSourceRange();
1842 return ExprError();
1843 }
Chris Lattner95933c12009-04-24 00:30:45 +00001844
Douglas Gregor05e28f62009-03-24 19:52:54 +00001845 if (!ResultType->isDependentType() &&
Chris Lattner95933c12009-04-24 00:30:45 +00001846 RequireCompleteType(LLoc, ResultType, diag::err_subscript_incomplete_type,
Douglas Gregor05e28f62009-03-24 19:52:54 +00001847 BaseExpr->getSourceRange()))
1848 return ExprError();
Chris Lattner95933c12009-04-24 00:30:45 +00001849
1850 // Diagnose bad cases where we step over interface counts.
1851 if (ResultType->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
1852 Diag(LLoc, diag::err_subscript_nonfragile_interface)
1853 << ResultType << BaseExpr->getSourceRange();
1854 return ExprError();
1855 }
1856
Sebastian Redl8b769972009-01-19 00:08:26 +00001857 Base.release();
1858 Idx.release();
Mike Stump9afab102009-02-19 03:04:26 +00001859 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp,
Steve Naroff774e4152009-01-21 00:14:39 +00001860 ResultType, RLoc));
Chris Lattner4b009652007-07-25 00:24:17 +00001861}
1862
Steve Naroff1b8a46c2007-07-27 22:15:19 +00001863QualType Sema::
Nate Begemanaf6ed502008-04-18 23:10:10 +00001864CheckExtVectorComponent(QualType baseType, SourceLocation OpLoc,
Steve Naroff1b8a46c2007-07-27 22:15:19 +00001865 IdentifierInfo &CompName, SourceLocation CompLoc) {
Nate Begemanaf6ed502008-04-18 23:10:10 +00001866 const ExtVectorType *vecType = baseType->getAsExtVectorType();
Nate Begemanc8e51f82008-05-09 06:41:27 +00001867
Steve Naroff1b8a46c2007-07-27 22:15:19 +00001868 // The vector accessor can't exceed the number of elements.
1869 const char *compStr = CompName.getName();
Nate Begeman1486b502009-01-18 01:47:54 +00001870
Mike Stump9afab102009-02-19 03:04:26 +00001871 // This flag determines whether or not the component is one of the four
Nate Begeman1486b502009-01-18 01:47:54 +00001872 // special names that indicate a subset of exactly half the elements are
1873 // to be selected.
1874 bool HalvingSwizzle = false;
Mike Stump9afab102009-02-19 03:04:26 +00001875
Nate Begeman1486b502009-01-18 01:47:54 +00001876 // This flag determines whether or not CompName has an 's' char prefix,
1877 // indicating that it is a string of hex values to be used as vector indices.
1878 bool HexSwizzle = *compStr == 's';
Nate Begemanc8e51f82008-05-09 06:41:27 +00001879
1880 // Check that we've found one of the special components, or that the component
1881 // names must come from the same set.
Mike Stump9afab102009-02-19 03:04:26 +00001882 if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") ||
Nate Begeman1486b502009-01-18 01:47:54 +00001883 !strcmp(compStr, "even") || !strcmp(compStr, "odd")) {
1884 HalvingSwizzle = true;
Nate Begemanc8e51f82008-05-09 06:41:27 +00001885 } else if (vecType->getPointAccessorIdx(*compStr) != -1) {
Chris Lattner9096b792007-08-02 22:33:49 +00001886 do
1887 compStr++;
1888 while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1);
Nate Begeman1486b502009-01-18 01:47:54 +00001889 } else if (HexSwizzle || vecType->getNumericAccessorIdx(*compStr) != -1) {
Chris Lattner9096b792007-08-02 22:33:49 +00001890 do
1891 compStr++;
Nate Begeman1486b502009-01-18 01:47:54 +00001892 while (*compStr && vecType->getNumericAccessorIdx(*compStr) != -1);
Chris Lattner9096b792007-08-02 22:33:49 +00001893 }
Nate Begeman1486b502009-01-18 01:47:54 +00001894
Mike Stump9afab102009-02-19 03:04:26 +00001895 if (!HalvingSwizzle && *compStr) {
Steve Naroff1b8a46c2007-07-27 22:15:19 +00001896 // We didn't get to the end of the string. This means the component names
1897 // didn't come from the same set *or* we encountered an illegal name.
Chris Lattner8ba580c2008-11-19 05:08:23 +00001898 Diag(OpLoc, diag::err_ext_vector_component_name_illegal)
1899 << std::string(compStr,compStr+1) << SourceRange(CompLoc);
Steve Naroff1b8a46c2007-07-27 22:15:19 +00001900 return QualType();
1901 }
Mike Stump9afab102009-02-19 03:04:26 +00001902
Nate Begeman1486b502009-01-18 01:47:54 +00001903 // Ensure no component accessor exceeds the width of the vector type it
1904 // operates on.
1905 if (!HalvingSwizzle) {
1906 compStr = CompName.getName();
1907
1908 if (HexSwizzle)
Steve Naroff1b8a46c2007-07-27 22:15:19 +00001909 compStr++;
Nate Begeman1486b502009-01-18 01:47:54 +00001910
1911 while (*compStr) {
1912 if (!vecType->isAccessorWithinNumElements(*compStr++)) {
1913 Diag(OpLoc, diag::err_ext_vector_component_exceeds_length)
1914 << baseType << SourceRange(CompLoc);
1915 return QualType();
1916 }
1917 }
Steve Naroff1b8a46c2007-07-27 22:15:19 +00001918 }
Nate Begemanc8e51f82008-05-09 06:41:27 +00001919
Nate Begeman1486b502009-01-18 01:47:54 +00001920 // If this is a halving swizzle, verify that the base type has an even
1921 // number of elements.
1922 if (HalvingSwizzle && (vecType->getNumElements() & 1U)) {
Chris Lattner8ba580c2008-11-19 05:08:23 +00001923 Diag(OpLoc, diag::err_ext_vector_component_requires_even)
Chris Lattner4bfd2232008-11-24 06:25:27 +00001924 << baseType << SourceRange(CompLoc);
Nate Begemanc8e51f82008-05-09 06:41:27 +00001925 return QualType();
1926 }
Mike Stump9afab102009-02-19 03:04:26 +00001927
Steve Naroff1b8a46c2007-07-27 22:15:19 +00001928 // The component accessor looks fine - now we need to compute the actual type.
Mike Stump9afab102009-02-19 03:04:26 +00001929 // The vector type is implied by the component accessor. For example,
Steve Naroff1b8a46c2007-07-27 22:15:19 +00001930 // vec4.b is a float, vec4.xy is a vec2, vec4.rgb is a vec3, etc.
Nate Begeman1486b502009-01-18 01:47:54 +00001931 // vec4.s0 is a float, vec4.s23 is a vec3, etc.
Nate Begemanc8e51f82008-05-09 06:41:27 +00001932 // vec4.hi, vec4.lo, vec4.e, and vec4.o all return vec2.
Nate Begeman1486b502009-01-18 01:47:54 +00001933 unsigned CompSize = HalvingSwizzle ? vecType->getNumElements() / 2
1934 : CompName.getLength();
1935 if (HexSwizzle)
1936 CompSize--;
1937
Steve Naroff1b8a46c2007-07-27 22:15:19 +00001938 if (CompSize == 1)
1939 return vecType->getElementType();
Mike Stump9afab102009-02-19 03:04:26 +00001940
Nate Begemanaf6ed502008-04-18 23:10:10 +00001941 QualType VT = Context.getExtVectorType(vecType->getElementType(), CompSize);
Mike Stump9afab102009-02-19 03:04:26 +00001942 // Now look up the TypeDefDecl from the vector type. Without this,
Nate Begemanaf6ed502008-04-18 23:10:10 +00001943 // diagostics look bad. We want extended vector types to appear built-in.
1944 for (unsigned i = 0, E = ExtVectorDecls.size(); i != E; ++i) {
1945 if (ExtVectorDecls[i]->getUnderlyingType() == VT)
1946 return Context.getTypedefType(ExtVectorDecls[i]);
Steve Naroff82113e32007-07-29 16:33:31 +00001947 }
1948 return VT; // should never get here (a typedef type should always be found).
Steve Naroff1b8a46c2007-07-27 22:15:19 +00001949}
1950
Fariborz Jahanian854f4002009-03-19 18:15:34 +00001951static Decl *FindGetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl,
1952 IdentifierInfo &Member,
Douglas Gregorc55b0b02009-04-09 21:40:53 +00001953 const Selector &Sel,
1954 ASTContext &Context) {
Fariborz Jahanian854f4002009-03-19 18:15:34 +00001955
Douglas Gregorc55b0b02009-04-09 21:40:53 +00001956 if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(Context, &Member))
Fariborz Jahanian854f4002009-03-19 18:15:34 +00001957 return PD;
Douglas Gregorc55b0b02009-04-09 21:40:53 +00001958 if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Context, Sel))
Fariborz Jahanian854f4002009-03-19 18:15:34 +00001959 return OMD;
1960
1961 for (ObjCProtocolDecl::protocol_iterator I = PDecl->protocol_begin(),
1962 E = PDecl->protocol_end(); I != E; ++I) {
Douglas Gregorc55b0b02009-04-09 21:40:53 +00001963 if (Decl *D = FindGetterNameDeclFromProtocolList(*I, Member, Sel,
1964 Context))
Fariborz Jahanian854f4002009-03-19 18:15:34 +00001965 return D;
1966 }
1967 return 0;
1968}
1969
1970static Decl *FindGetterNameDecl(const ObjCQualifiedIdType *QIdTy,
1971 IdentifierInfo &Member,
Douglas Gregorc55b0b02009-04-09 21:40:53 +00001972 const Selector &Sel,
1973 ASTContext &Context) {
Fariborz Jahanian854f4002009-03-19 18:15:34 +00001974 // Check protocols on qualified interfaces.
1975 Decl *GDecl = 0;
1976 for (ObjCQualifiedIdType::qual_iterator I = QIdTy->qual_begin(),
1977 E = QIdTy->qual_end(); I != E; ++I) {
Douglas Gregorc55b0b02009-04-09 21:40:53 +00001978 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Context, &Member)) {
Fariborz Jahanian854f4002009-03-19 18:15:34 +00001979 GDecl = PD;
1980 break;
1981 }
1982 // Also must look for a getter name which uses property syntax.
Douglas Gregorc55b0b02009-04-09 21:40:53 +00001983 if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Context, Sel)) {
Fariborz Jahanian854f4002009-03-19 18:15:34 +00001984 GDecl = OMD;
1985 break;
1986 }
1987 }
1988 if (!GDecl) {
1989 for (ObjCQualifiedIdType::qual_iterator I = QIdTy->qual_begin(),
1990 E = QIdTy->qual_end(); I != E; ++I) {
1991 // Search in the protocol-qualifier list of current protocol.
Douglas Gregorc55b0b02009-04-09 21:40:53 +00001992 GDecl = FindGetterNameDeclFromProtocolList(*I, Member, Sel, Context);
Fariborz Jahanian854f4002009-03-19 18:15:34 +00001993 if (GDecl)
1994 return GDecl;
1995 }
1996 }
1997 return GDecl;
1998}
Chris Lattner2cb744b2009-02-15 22:43:40 +00001999
Fariborz Jahanian0119fd22009-04-07 18:28:06 +00002000/// FindMethodInNestedImplementations - Look up a method in current and
2001/// all base class implementations.
2002///
2003ObjCMethodDecl *Sema::FindMethodInNestedImplementations(
2004 const ObjCInterfaceDecl *IFace,
2005 const Selector &Sel) {
2006 ObjCMethodDecl *Method = 0;
Douglas Gregorafd5eb32009-04-24 00:11:27 +00002007 if (ObjCImplementationDecl *ImpDecl
2008 = LookupObjCImplementation(IFace->getIdentifier()))
Douglas Gregorcd19b572009-04-23 01:02:12 +00002009 Method = ImpDecl->getInstanceMethod(Context, Sel);
Fariborz Jahanian0119fd22009-04-07 18:28:06 +00002010
2011 if (!Method && IFace->getSuperClass())
2012 return FindMethodInNestedImplementations(IFace->getSuperClass(), Sel);
2013 return Method;
2014}
2015
Sebastian Redl8b769972009-01-19 00:08:26 +00002016Action::OwningExprResult
2017Sema::ActOnMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc,
2018 tok::TokenKind OpKind, SourceLocation MemberLoc,
Fariborz Jahanian0cc2ac12009-03-04 22:30:12 +00002019 IdentifierInfo &Member,
Chris Lattner5261d0c2009-03-28 19:18:32 +00002020 DeclPtrTy ObjCImpDecl) {
Anders Carlssonc154a722009-05-01 19:30:39 +00002021 Expr *BaseExpr = Base.takeAs<Expr>();
Steve Naroff2cb66382007-07-26 03:11:44 +00002022 assert(BaseExpr && "no record expression");
Steve Naroff137e11d2007-12-16 21:42:28 +00002023
2024 // Perform default conversions.
2025 DefaultFunctionArrayConversion(BaseExpr);
Sebastian Redl8b769972009-01-19 00:08:26 +00002026
Steve Naroff2cb66382007-07-26 03:11:44 +00002027 QualType BaseType = BaseExpr->getType();
2028 assert(!BaseType.isNull() && "no type for member expression");
Sebastian Redl8b769972009-01-19 00:08:26 +00002029
Chris Lattnerb2b9da72008-07-21 04:36:39 +00002030 // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr
2031 // must have pointer type, and the accessed type is the pointee.
Chris Lattner4b009652007-07-25 00:24:17 +00002032 if (OpKind == tok::arrow) {
Anders Carlsson72d3c662009-05-15 23:10:19 +00002033 if (BaseType->isDependentType())
Anders Carlssonc90aa132009-05-17 16:28:18 +00002034 // FIXME: This should not return a MemberExpr AST node, but a more
2035 // specialized one.
Anders Carlsson72d3c662009-05-15 23:10:19 +00002036 return Owned(new (Context) MemberExpr(BaseExpr, true, 0,
2037 MemberLoc, Context.DependentTy));
2038 else if (const PointerType *PT = BaseType->getAsPointerType())
Steve Naroff2cb66382007-07-26 03:11:44 +00002039 BaseType = PT->getPointeeType();
Douglas Gregor7f3fec52008-11-20 16:27:02 +00002040 else if (getLangOptions().CPlusPlus && BaseType->isRecordType())
Sebastian Redl8b769972009-01-19 00:08:26 +00002041 return Owned(BuildOverloadedArrowExpr(S, BaseExpr, OpLoc,
2042 MemberLoc, Member));
Steve Naroff2cb66382007-07-26 03:11:44 +00002043 else
Sebastian Redl8b769972009-01-19 00:08:26 +00002044 return ExprError(Diag(MemberLoc,
2045 diag::err_typecheck_member_reference_arrow)
2046 << BaseType << BaseExpr->getSourceRange());
Anders Carlsson72d3c662009-05-15 23:10:19 +00002047 } else {
Anders Carlsson4082ecd2009-05-16 20:31:20 +00002048 if (BaseType->isDependentType()) {
2049 // Require that the base type isn't a pointer type
2050 // (so we'll report an error for)
2051 // T* t;
2052 // t.f;
2053 //
2054 // In Obj-C++, however, the above expression is valid, since it could be
2055 // accessing the 'f' property if T is an Obj-C interface. The extra check
2056 // allows this, while still reporting an error if T is a struct pointer.
2057 const PointerType *PT = BaseType->getAsPointerType();
2058
2059 if (!PT || (getLangOptions().ObjC1 &&
2060 !PT->getPointeeType()->isRecordType()))
Anders Carlssonc90aa132009-05-17 16:28:18 +00002061 // FIXME: This should not return a MemberExpr AST node, but a more
2062 // specialized one.
Anders Carlsson4082ecd2009-05-16 20:31:20 +00002063 return Owned(new (Context) MemberExpr(BaseExpr, false, 0,
2064 MemberLoc, Context.DependentTy));
2065 }
Chris Lattner4b009652007-07-25 00:24:17 +00002066 }
Sebastian Redl8b769972009-01-19 00:08:26 +00002067
Chris Lattnerb2b9da72008-07-21 04:36:39 +00002068 // Handle field access to simple records. This also handles access to fields
2069 // of the ObjC 'id' struct.
Chris Lattnere35a1042007-07-31 19:29:30 +00002070 if (const RecordType *RTy = BaseType->getAsRecordType()) {
Steve Naroff2cb66382007-07-26 03:11:44 +00002071 RecordDecl *RDecl = RTy->getDecl();
Douglas Gregorc84d8932009-03-09 16:13:40 +00002072 if (RequireCompleteType(OpLoc, BaseType,
Douglas Gregor46fe06e2009-01-19 19:26:10 +00002073 diag::err_typecheck_incomplete_tag,
2074 BaseExpr->getSourceRange()))
2075 return ExprError();
2076
Steve Naroff2cb66382007-07-26 03:11:44 +00002077 // The record definition is complete, now make sure the member is valid.
Mike Stumpe127ae32009-05-16 07:39:55 +00002078 // FIXME: Qualified name lookup for C++ is a bit more complicated than this.
Sebastian Redl8b769972009-01-19 00:08:26 +00002079 LookupResult Result
Mike Stump9afab102009-02-19 03:04:26 +00002080 = LookupQualifiedName(RDecl, DeclarationName(&Member),
Douglas Gregor52ae30c2009-01-30 01:04:22 +00002081 LookupMemberName, false);
Douglas Gregor29dfa2f2009-01-15 00:26:24 +00002082
Douglas Gregor29dfa2f2009-01-15 00:26:24 +00002083 if (!Result)
Sebastian Redl8b769972009-01-19 00:08:26 +00002084 return ExprError(Diag(MemberLoc, diag::err_typecheck_no_member)
2085 << &Member << BaseExpr->getSourceRange());
Chris Lattner84ad8332009-03-31 08:18:48 +00002086 if (Result.isAmbiguous()) {
Sebastian Redl8b769972009-01-19 00:08:26 +00002087 DiagnoseAmbiguousLookup(Result, DeclarationName(&Member),
2088 MemberLoc, BaseExpr->getSourceRange());
2089 return ExprError();
Chris Lattner84ad8332009-03-31 08:18:48 +00002090 }
2091
2092 NamedDecl *MemberDecl = Result;
Douglas Gregor8acb7272008-12-11 16:49:14 +00002093
Chris Lattnerfd57ecc2009-02-13 22:08:30 +00002094 // If the decl being referenced had an error, return an error for this
2095 // sub-expr without emitting another error, in order to avoid cascading
2096 // error cases.
2097 if (MemberDecl->isInvalidDecl())
2098 return ExprError();
Mike Stump9afab102009-02-19 03:04:26 +00002099
Douglas Gregoraa57e862009-02-18 21:56:37 +00002100 // Check the use of this field
2101 if (DiagnoseUseOfDecl(MemberDecl, MemberLoc))
2102 return ExprError();
Chris Lattnerfd57ecc2009-02-13 22:08:30 +00002103
Douglas Gregorddfd9d52008-12-23 00:26:44 +00002104 if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl)) {
Douglas Gregor723d3332009-01-07 00:43:41 +00002105 // We may have found a field within an anonymous union or struct
2106 // (C++ [class.union]).
2107 if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion())
Sebastian Redlcd883f72009-01-18 18:53:16 +00002108 return BuildAnonymousStructUnionMemberReference(MemberLoc, FD,
Sebastian Redl8b769972009-01-19 00:08:26 +00002109 BaseExpr, OpLoc);
Douglas Gregor723d3332009-01-07 00:43:41 +00002110
Douglas Gregor82d44772008-12-20 23:49:58 +00002111 // Figure out the type of the member; see C99 6.5.2.3p3, C++ [expr.ref]
2112 // FIXME: Handle address space modifiers
Douglas Gregorddfd9d52008-12-23 00:26:44 +00002113 QualType MemberType = FD->getType();
Douglas Gregor82d44772008-12-20 23:49:58 +00002114 if (const ReferenceType *Ref = MemberType->getAsReferenceType())
2115 MemberType = Ref->getPointeeType();
2116 else {
2117 unsigned combinedQualifiers =
2118 MemberType.getCVRQualifiers() | BaseType.getCVRQualifiers();
Douglas Gregorddfd9d52008-12-23 00:26:44 +00002119 if (FD->isMutable())
Douglas Gregor82d44772008-12-20 23:49:58 +00002120 combinedQualifiers &= ~QualType::Const;
2121 MemberType = MemberType.getQualifiedType(combinedQualifiers);
2122 }
Eli Friedman76b49832008-02-06 22:48:16 +00002123
Steve Naroff774e4152009-01-21 00:14:39 +00002124 return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, FD,
2125 MemberLoc, MemberType));
Chris Lattner84ad8332009-03-31 08:18:48 +00002126 }
2127
2128 if (VarDecl *Var = dyn_cast<VarDecl>(MemberDecl))
Steve Naroff774e4152009-01-21 00:14:39 +00002129 return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow,
Chris Lattner84ad8332009-03-31 08:18:48 +00002130 Var, MemberLoc,
2131 Var->getType().getNonReferenceType()));
2132 if (FunctionDecl *MemberFn = dyn_cast<FunctionDecl>(MemberDecl))
Mike Stump9afab102009-02-19 03:04:26 +00002133 return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow,
Chris Lattner84ad8332009-03-31 08:18:48 +00002134 MemberFn, MemberLoc,
2135 MemberFn->getType()));
2136 if (OverloadedFunctionDecl *Ovl
2137 = dyn_cast<OverloadedFunctionDecl>(MemberDecl))
Steve Naroff774e4152009-01-21 00:14:39 +00002138 return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, Ovl,
Chris Lattner84ad8332009-03-31 08:18:48 +00002139 MemberLoc, Context.OverloadTy));
2140 if (EnumConstantDecl *Enum = dyn_cast<EnumConstantDecl>(MemberDecl))
Mike Stump9afab102009-02-19 03:04:26 +00002141 return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow,
2142 Enum, MemberLoc, Enum->getType()));
Chris Lattner84ad8332009-03-31 08:18:48 +00002143 if (isa<TypeDecl>(MemberDecl))
Sebastian Redl8b769972009-01-19 00:08:26 +00002144 return ExprError(Diag(MemberLoc,diag::err_typecheck_member_reference_type)
2145 << DeclarationName(&Member) << int(OpKind == tok::arrow));
Eli Friedman76b49832008-02-06 22:48:16 +00002146
Douglas Gregor82d44772008-12-20 23:49:58 +00002147 // We found a declaration kind that we didn't expect. This is a
2148 // generic error message that tells the user that she can't refer
2149 // to this member with '.' or '->'.
Sebastian Redl8b769972009-01-19 00:08:26 +00002150 return ExprError(Diag(MemberLoc,
2151 diag::err_typecheck_member_reference_unknown)
2152 << DeclarationName(&Member) << int(OpKind == tok::arrow));
Chris Lattnera57cf472008-07-21 04:28:12 +00002153 }
Sebastian Redl8b769972009-01-19 00:08:26 +00002154
Chris Lattnere9d71612008-07-21 04:59:05 +00002155 // Handle access to Objective-C instance variables, such as "Obj->ivar" and
2156 // (*Obj).ivar.
Chris Lattnerb2b9da72008-07-21 04:36:39 +00002157 if (const ObjCInterfaceType *IFTy = BaseType->getAsObjCInterfaceType()) {
Fariborz Jahaniandd71e752009-03-03 01:21:12 +00002158 ObjCInterfaceDecl *ClassDeclared;
Douglas Gregorc55b0b02009-04-09 21:40:53 +00002159 if (ObjCIvarDecl *IV = IFTy->getDecl()->lookupInstanceVariable(Context,
2160 &Member,
Fariborz Jahaniandd71e752009-03-03 01:21:12 +00002161 ClassDeclared)) {
Chris Lattnerfd57ecc2009-02-13 22:08:30 +00002162 // If the decl being referenced had an error, return an error for this
2163 // sub-expr without emitting another error, in order to avoid cascading
2164 // error cases.
2165 if (IV->isInvalidDecl())
2166 return ExprError();
Douglas Gregoraa57e862009-02-18 21:56:37 +00002167
2168 // Check whether we can reference this field.
2169 if (DiagnoseUseOfDecl(IV, MemberLoc))
2170 return ExprError();
Steve Naroff8c56ee02009-03-26 16:01:08 +00002171 if (IV->getAccessControl() != ObjCIvarDecl::Public &&
2172 IV->getAccessControl() != ObjCIvarDecl::Package) {
Fariborz Jahaniandd71e752009-03-03 01:21:12 +00002173 ObjCInterfaceDecl *ClassOfMethodDecl = 0;
2174 if (ObjCMethodDecl *MD = getCurMethodDecl())
2175 ClassOfMethodDecl = MD->getClassInterface();
Fariborz Jahanian0cc2ac12009-03-04 22:30:12 +00002176 else if (ObjCImpDecl && getCurFunctionDecl()) {
2177 // Case of a c-function declared inside an objc implementation.
2178 // FIXME: For a c-style function nested inside an objc implementation
Mike Stumpe127ae32009-05-16 07:39:55 +00002179 // class, there is no implementation context available, so we pass
2180 // down the context as argument to this routine. Ideally, this context
2181 // need be passed down in the AST node and somehow calculated from the
2182 // AST for a function decl.
Chris Lattner5261d0c2009-03-28 19:18:32 +00002183 Decl *ImplDecl = ObjCImpDecl.getAs<Decl>();
Fariborz Jahanian0cc2ac12009-03-04 22:30:12 +00002184 if (ObjCImplementationDecl *IMPD =
2185 dyn_cast<ObjCImplementationDecl>(ImplDecl))
2186 ClassOfMethodDecl = IMPD->getClassInterface();
2187 else if (ObjCCategoryImplDecl* CatImplClass =
2188 dyn_cast<ObjCCategoryImplDecl>(ImplDecl))
2189 ClassOfMethodDecl = CatImplClass->getClassInterface();
Steve Narofff9606572009-03-04 18:34:24 +00002190 }
Chris Lattner84ad8332009-03-31 08:18:48 +00002191
Fariborz Jahanian0cc2ac12009-03-04 22:30:12 +00002192 if (IV->getAccessControl() == ObjCIvarDecl::Private) {
Fariborz Jahaniandd71e752009-03-03 01:21:12 +00002193 if (ClassDeclared != IFTy->getDecl() ||
Fariborz Jahanian0cc2ac12009-03-04 22:30:12 +00002194 ClassOfMethodDecl != ClassDeclared)
Fariborz Jahaniandd71e752009-03-03 01:21:12 +00002195 Diag(MemberLoc, diag::error_private_ivar_access) << IV->getDeclName();
2196 }
2197 // @protected
2198 else if (!IFTy->getDecl()->isSuperClassOf(ClassOfMethodDecl))
2199 Diag(MemberLoc, diag::error_protected_ivar_access) << IV->getDeclName();
2200 }
Mike Stump9afab102009-02-19 03:04:26 +00002201
Daniel Dunbarf5254bd2009-04-21 01:19:28 +00002202 return Owned(new (Context) ObjCIvarRefExpr(IV, IV->getType(),
Steve Naroff774e4152009-01-21 00:14:39 +00002203 MemberLoc, BaseExpr,
Daniel Dunbarf5254bd2009-04-21 01:19:28 +00002204 OpKind == tok::arrow));
Fariborz Jahanian09772392008-12-13 22:20:28 +00002205 }
Sebastian Redl8b769972009-01-19 00:08:26 +00002206 return ExprError(Diag(MemberLoc, diag::err_typecheck_member_reference_ivar)
2207 << IFTy->getDecl()->getDeclName() << &Member
2208 << BaseExpr->getSourceRange());
Chris Lattnera57cf472008-07-21 04:28:12 +00002209 }
Sebastian Redl8b769972009-01-19 00:08:26 +00002210
Chris Lattnere9d71612008-07-21 04:59:05 +00002211 // Handle Objective-C property access, which is "Obj.property" where Obj is a
2212 // pointer to a (potentially qualified) interface type.
2213 const PointerType *PTy;
2214 const ObjCInterfaceType *IFTy;
2215 if (OpKind == tok::period && (PTy = BaseType->getAsPointerType()) &&
2216 (IFTy = PTy->getPointeeType()->getAsObjCInterfaceType())) {
2217 ObjCInterfaceDecl *IFace = IFTy->getDecl();
Daniel Dunbardd851282008-08-30 05:35:15 +00002218
Daniel Dunbar60e8b162008-09-03 01:05:41 +00002219 // Search for a declared property first.
Douglas Gregorc55b0b02009-04-09 21:40:53 +00002220 if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(Context,
2221 &Member)) {
Douglas Gregoraa57e862009-02-18 21:56:37 +00002222 // Check whether we can reference this property.
2223 if (DiagnoseUseOfDecl(PD, MemberLoc))
2224 return ExprError();
Fariborz Jahaniana996bb02009-05-08 19:36:34 +00002225 QualType ResTy = PD->getType();
2226 Selector Sel = PP.getSelectorTable().getNullarySelector(&Member);
2227 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Context, Sel);
Fariborz Jahanian80ccaa92009-05-08 20:20:55 +00002228 if (DiagnosePropertyAccessorMismatch(PD, Getter, MemberLoc))
2229 ResTy = Getter->getResultType();
Fariborz Jahaniana996bb02009-05-08 19:36:34 +00002230 return Owned(new (Context) ObjCPropertyRefExpr(PD, ResTy,
Chris Lattner51f6fb32009-02-16 18:35:08 +00002231 MemberLoc, BaseExpr));
2232 }
Sebastian Redl8b769972009-01-19 00:08:26 +00002233
Daniel Dunbar60e8b162008-09-03 01:05:41 +00002234 // Check protocols on qualified interfaces.
Chris Lattnerd5f81792008-07-21 05:20:01 +00002235 for (ObjCInterfaceType::qual_iterator I = IFTy->qual_begin(),
2236 E = IFTy->qual_end(); I != E; ++I)
Douglas Gregorc55b0b02009-04-09 21:40:53 +00002237 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Context,
2238 &Member)) {
Douglas Gregoraa57e862009-02-18 21:56:37 +00002239 // Check whether we can reference this property.
2240 if (DiagnoseUseOfDecl(PD, MemberLoc))
2241 return ExprError();
Chris Lattner51f6fb32009-02-16 18:35:08 +00002242
Steve Naroff774e4152009-01-21 00:14:39 +00002243 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
Chris Lattner51f6fb32009-02-16 18:35:08 +00002244 MemberLoc, BaseExpr));
2245 }
Daniel Dunbar60e8b162008-09-03 01:05:41 +00002246
2247 // If that failed, look for an "implicit" property by seeing if the nullary
2248 // selector is implemented.
2249
2250 // FIXME: The logic for looking up nullary and unary selectors should be
2251 // shared with the code in ActOnInstanceMessage.
2252
2253 Selector Sel = PP.getSelectorTable().getNullarySelector(&Member);
Douglas Gregorc55b0b02009-04-09 21:40:53 +00002254 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Context, Sel);
Sebastian Redl8b769972009-01-19 00:08:26 +00002255
Daniel Dunbar60e8b162008-09-03 01:05:41 +00002256 // If this reference is in an @implementation, check for 'private' methods.
2257 if (!Getter)
Fariborz Jahanian0119fd22009-04-07 18:28:06 +00002258 Getter = FindMethodInNestedImplementations(IFace, Sel);
Daniel Dunbar60e8b162008-09-03 01:05:41 +00002259
Steve Naroff04151f32008-10-22 19:16:27 +00002260 // Look through local category implementations associated with the class.
2261 if (!Getter) {
2262 for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Getter; i++) {
2263 if (ObjCCategoryImpls[i]->getClassInterface() == IFace)
Douglas Gregorcd19b572009-04-23 01:02:12 +00002264 Getter = ObjCCategoryImpls[i]->getInstanceMethod(Context, Sel);
Steve Naroff04151f32008-10-22 19:16:27 +00002265 }
2266 }
Daniel Dunbar60e8b162008-09-03 01:05:41 +00002267 if (Getter) {
Douglas Gregoraa57e862009-02-18 21:56:37 +00002268 // Check if we can reference this property.
2269 if (DiagnoseUseOfDecl(Getter, MemberLoc))
2270 return ExprError();
Steve Naroffdede0c92009-03-11 13:48:17 +00002271 }
2272 // If we found a getter then this may be a valid dot-reference, we
2273 // will look for the matching setter, in case it is needed.
2274 Selector SetterSel =
2275 SelectorTable::constructSetterName(PP.getIdentifierTable(),
2276 PP.getSelectorTable(), &Member);
Douglas Gregorc55b0b02009-04-09 21:40:53 +00002277 ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(Context, SetterSel);
Steve Naroffdede0c92009-03-11 13:48:17 +00002278 if (!Setter) {
2279 // If this reference is in an @implementation, also check for 'private'
2280 // methods.
Fariborz Jahanian0119fd22009-04-07 18:28:06 +00002281 Setter = FindMethodInNestedImplementations(IFace, SetterSel);
Steve Naroffdede0c92009-03-11 13:48:17 +00002282 }
2283 // Look through local category implementations associated with the class.
2284 if (!Setter) {
2285 for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Setter; i++) {
2286 if (ObjCCategoryImpls[i]->getClassInterface() == IFace)
Douglas Gregorcd19b572009-04-23 01:02:12 +00002287 Setter = ObjCCategoryImpls[i]->getInstanceMethod(Context, SetterSel);
Fariborz Jahanianc05da422008-11-22 20:25:50 +00002288 }
Daniel Dunbar60e8b162008-09-03 01:05:41 +00002289 }
Sebastian Redl8b769972009-01-19 00:08:26 +00002290
Steve Naroffdede0c92009-03-11 13:48:17 +00002291 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
2292 return ExprError();
2293
2294 if (Getter || Setter) {
2295 QualType PType;
2296
2297 if (Getter)
2298 PType = Getter->getResultType();
2299 else {
2300 for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(),
2301 E = Setter->param_end(); PI != E; ++PI)
2302 PType = (*PI)->getType();
2303 }
2304 // FIXME: we must check that the setter has property type.
2305 return Owned(new (Context) ObjCKVCRefExpr(Getter, PType,
2306 Setter, MemberLoc, BaseExpr));
2307 }
Sebastian Redl8b769972009-01-19 00:08:26 +00002308 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
2309 << &Member << BaseType);
Fariborz Jahanian4af72492007-11-12 22:29:28 +00002310 }
Steve Naroffd1d44402008-10-20 22:53:06 +00002311 // Handle properties on qualified "id" protocols.
2312 const ObjCQualifiedIdType *QIdTy;
2313 if (OpKind == tok::period && (QIdTy = BaseType->getAsObjCQualifiedIdType())) {
2314 // Check protocols on qualified interfaces.
Fariborz Jahanian854f4002009-03-19 18:15:34 +00002315 Selector Sel = PP.getSelectorTable().getNullarySelector(&Member);
Douglas Gregorc55b0b02009-04-09 21:40:53 +00002316 if (Decl *PMDecl = FindGetterNameDecl(QIdTy, Member, Sel, Context)) {
Fariborz Jahanian854f4002009-03-19 18:15:34 +00002317 if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(PMDecl)) {
Douglas Gregoraa57e862009-02-18 21:56:37 +00002318 // Check the use of this declaration
2319 if (DiagnoseUseOfDecl(PD, MemberLoc))
2320 return ExprError();
Fariborz Jahanian854f4002009-03-19 18:15:34 +00002321
Steve Naroff774e4152009-01-21 00:14:39 +00002322 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
Chris Lattner51f6fb32009-02-16 18:35:08 +00002323 MemberLoc, BaseExpr));
2324 }
Fariborz Jahanian854f4002009-03-19 18:15:34 +00002325 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(PMDecl)) {
Douglas Gregoraa57e862009-02-18 21:56:37 +00002326 // Check the use of this method.
2327 if (DiagnoseUseOfDecl(OMD, MemberLoc))
2328 return ExprError();
Fariborz Jahanian854f4002009-03-19 18:15:34 +00002329
Mike Stump9afab102009-02-19 03:04:26 +00002330 return Owned(new (Context) ObjCMessageExpr(BaseExpr, Sel,
Fariborz Jahanian854f4002009-03-19 18:15:34 +00002331 OMD->getResultType(),
2332 OMD, OpLoc, MemberLoc,
2333 NULL, 0));
Fariborz Jahanian94cc8232008-12-10 00:21:50 +00002334 }
2335 }
Sebastian Redl8b769972009-01-19 00:08:26 +00002336
2337 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
2338 << &Member << BaseType);
Mike Stump9afab102009-02-19 03:04:26 +00002339 }
Steve Naroffe3aa06f2009-03-05 20:12:00 +00002340 // Handle properties on ObjC 'Class' types.
2341 if (OpKind == tok::period && (BaseType == Context.getObjCClassType())) {
2342 // Also must look for a getter name which uses property syntax.
2343 Selector Sel = PP.getSelectorTable().getNullarySelector(&Member);
2344 if (ObjCMethodDecl *MD = getCurMethodDecl()) {
Steve Naroff6f9e59f2009-03-11 20:12:18 +00002345 ObjCInterfaceDecl *IFace = MD->getClassInterface();
2346 ObjCMethodDecl *Getter;
Steve Naroffe3aa06f2009-03-05 20:12:00 +00002347 // FIXME: need to also look locally in the implementation.
Douglas Gregorc55b0b02009-04-09 21:40:53 +00002348 if ((Getter = IFace->lookupClassMethod(Context, Sel))) {
Steve Naroffe3aa06f2009-03-05 20:12:00 +00002349 // Check the use of this method.
Steve Naroff6f9e59f2009-03-11 20:12:18 +00002350 if (DiagnoseUseOfDecl(Getter, MemberLoc))
Steve Naroffe3aa06f2009-03-05 20:12:00 +00002351 return ExprError();
Steve Naroffe3aa06f2009-03-05 20:12:00 +00002352 }
Steve Naroff6f9e59f2009-03-11 20:12:18 +00002353 // If we found a getter then this may be a valid dot-reference, we
2354 // will look for the matching setter, in case it is needed.
2355 Selector SetterSel =
2356 SelectorTable::constructSetterName(PP.getIdentifierTable(),
2357 PP.getSelectorTable(), &Member);
Douglas Gregorc55b0b02009-04-09 21:40:53 +00002358 ObjCMethodDecl *Setter = IFace->lookupClassMethod(Context, SetterSel);
Steve Naroff6f9e59f2009-03-11 20:12:18 +00002359 if (!Setter) {
2360 // If this reference is in an @implementation, also check for 'private'
2361 // methods.
Fariborz Jahanian0119fd22009-04-07 18:28:06 +00002362 Setter = FindMethodInNestedImplementations(IFace, SetterSel);
Steve Naroff6f9e59f2009-03-11 20:12:18 +00002363 }
2364 // Look through local category implementations associated with the class.
2365 if (!Setter) {
2366 for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Setter; i++) {
2367 if (ObjCCategoryImpls[i]->getClassInterface() == IFace)
Douglas Gregorcd19b572009-04-23 01:02:12 +00002368 Setter = ObjCCategoryImpls[i]->getClassMethod(Context, SetterSel);
Steve Naroff6f9e59f2009-03-11 20:12:18 +00002369 }
2370 }
2371
2372 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
2373 return ExprError();
2374
2375 if (Getter || Setter) {
2376 QualType PType;
2377
2378 if (Getter)
2379 PType = Getter->getResultType();
2380 else {
2381 for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(),
2382 E = Setter->param_end(); PI != E; ++PI)
2383 PType = (*PI)->getType();
2384 }
2385 // FIXME: we must check that the setter has property type.
2386 return Owned(new (Context) ObjCKVCRefExpr(Getter, PType,
2387 Setter, MemberLoc, BaseExpr));
2388 }
2389 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
2390 << &Member << BaseType);
Steve Naroffe3aa06f2009-03-05 20:12:00 +00002391 }
2392 }
2393
Chris Lattnera57cf472008-07-21 04:28:12 +00002394 // Handle 'field access' to vectors, such as 'V.xx'.
Chris Lattner09020ee2009-02-16 21:11:58 +00002395 if (BaseType->isExtVectorType()) {
Chris Lattnera57cf472008-07-21 04:28:12 +00002396 QualType ret = CheckExtVectorComponent(BaseType, OpLoc, Member, MemberLoc);
2397 if (ret.isNull())
Sebastian Redl8b769972009-01-19 00:08:26 +00002398 return ExprError();
Mike Stump9afab102009-02-19 03:04:26 +00002399 return Owned(new (Context) ExtVectorElementExpr(ret, BaseExpr, Member,
Steve Naroff774e4152009-01-21 00:14:39 +00002400 MemberLoc));
Chris Lattnera57cf472008-07-21 04:28:12 +00002401 }
Sebastian Redl8b769972009-01-19 00:08:26 +00002402
Douglas Gregor762da552009-03-27 06:00:30 +00002403 Diag(MemberLoc, diag::err_typecheck_member_reference_struct_union)
2404 << BaseType << BaseExpr->getSourceRange();
2405
2406 // If the user is trying to apply -> or . to a function or function
2407 // pointer, it's probably because they forgot parentheses to call
2408 // the function. Suggest the addition of those parentheses.
2409 if (BaseType == Context.OverloadTy ||
2410 BaseType->isFunctionType() ||
2411 (BaseType->isPointerType() &&
2412 BaseType->getAsPointerType()->isFunctionType())) {
2413 SourceLocation Loc = PP.getLocForEndOfToken(BaseExpr->getLocEnd());
2414 Diag(Loc, diag::note_member_reference_needs_call)
2415 << CodeModificationHint::CreateInsertion(Loc, "()");
2416 }
2417
2418 return ExprError();
Chris Lattner4b009652007-07-25 00:24:17 +00002419}
2420
Douglas Gregor3257fb52008-12-22 05:46:06 +00002421/// ConvertArgumentsForCall - Converts the arguments specified in
2422/// Args/NumArgs to the parameter types of the function FDecl with
2423/// function prototype Proto. Call is the call expression itself, and
2424/// Fn is the function expression. For a C++ member function, this
2425/// routine does not attempt to convert the object argument. Returns
2426/// true if the call is ill-formed.
Mike Stump9afab102009-02-19 03:04:26 +00002427bool
2428Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn,
Douglas Gregor3257fb52008-12-22 05:46:06 +00002429 FunctionDecl *FDecl,
Douglas Gregor4fa58902009-02-26 23:50:07 +00002430 const FunctionProtoType *Proto,
Douglas Gregor3257fb52008-12-22 05:46:06 +00002431 Expr **Args, unsigned NumArgs,
2432 SourceLocation RParenLoc) {
Mike Stump9afab102009-02-19 03:04:26 +00002433 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by
Douglas Gregor3257fb52008-12-22 05:46:06 +00002434 // assignment, to the types of the corresponding parameter, ...
2435 unsigned NumArgsInProto = Proto->getNumArgs();
2436 unsigned NumArgsToCheck = NumArgs;
Douglas Gregor4ac887b2009-01-23 21:30:56 +00002437 bool Invalid = false;
2438
Douglas Gregor3257fb52008-12-22 05:46:06 +00002439 // If too few arguments are available (and we don't have default
2440 // arguments for the remaining parameters), don't make the call.
2441 if (NumArgs < NumArgsInProto) {
2442 if (!FDecl || NumArgs < FDecl->getMinRequiredArguments())
2443 return Diag(RParenLoc, diag::err_typecheck_call_too_few_args)
2444 << Fn->getType()->isBlockPointerType() << Fn->getSourceRange();
2445 // Use default arguments for missing arguments
2446 NumArgsToCheck = NumArgsInProto;
Ted Kremenek0c97e042009-02-07 01:47:29 +00002447 Call->setNumArgs(Context, NumArgsInProto);
Douglas Gregor3257fb52008-12-22 05:46:06 +00002448 }
2449
2450 // If too many are passed and not variadic, error on the extras and drop
2451 // them.
2452 if (NumArgs > NumArgsInProto) {
2453 if (!Proto->isVariadic()) {
2454 Diag(Args[NumArgsInProto]->getLocStart(),
2455 diag::err_typecheck_call_too_many_args)
2456 << Fn->getType()->isBlockPointerType() << Fn->getSourceRange()
2457 << SourceRange(Args[NumArgsInProto]->getLocStart(),
2458 Args[NumArgs-1]->getLocEnd());
2459 // This deletes the extra arguments.
Ted Kremenek0c97e042009-02-07 01:47:29 +00002460 Call->setNumArgs(Context, NumArgsInProto);
Douglas Gregor4ac887b2009-01-23 21:30:56 +00002461 Invalid = true;
Douglas Gregor3257fb52008-12-22 05:46:06 +00002462 }
2463 NumArgsToCheck = NumArgsInProto;
2464 }
Mike Stump9afab102009-02-19 03:04:26 +00002465
Douglas Gregor3257fb52008-12-22 05:46:06 +00002466 // Continue to check argument types (even if we have too few/many args).
2467 for (unsigned i = 0; i != NumArgsToCheck; i++) {
2468 QualType ProtoArgType = Proto->getArgType(i);
Mike Stump9afab102009-02-19 03:04:26 +00002469
Douglas Gregor3257fb52008-12-22 05:46:06 +00002470 Expr *Arg;
Douglas Gregor62ae25a2008-12-24 00:01:03 +00002471 if (i < NumArgs) {
Douglas Gregor3257fb52008-12-22 05:46:06 +00002472 Arg = Args[i];
Douglas Gregor62ae25a2008-12-24 00:01:03 +00002473
Eli Friedman83dec9e2009-03-22 22:00:50 +00002474 if (RequireCompleteType(Arg->getSourceRange().getBegin(),
2475 ProtoArgType,
2476 diag::err_call_incomplete_argument,
2477 Arg->getSourceRange()))
2478 return true;
2479
Douglas Gregor62ae25a2008-12-24 00:01:03 +00002480 // Pass the argument.
2481 if (PerformCopyInitialization(Arg, ProtoArgType, "passing"))
2482 return true;
Mike Stump9afab102009-02-19 03:04:26 +00002483 } else
Douglas Gregor62ae25a2008-12-24 00:01:03 +00002484 // We already type-checked the argument, so we know it works.
Steve Naroff774e4152009-01-21 00:14:39 +00002485 Arg = new (Context) CXXDefaultArgExpr(FDecl->getParamDecl(i));
Douglas Gregor3257fb52008-12-22 05:46:06 +00002486 QualType ArgType = Arg->getType();
Mike Stump9afab102009-02-19 03:04:26 +00002487
Douglas Gregor3257fb52008-12-22 05:46:06 +00002488 Call->setArg(i, Arg);
2489 }
Mike Stump9afab102009-02-19 03:04:26 +00002490
Douglas Gregor3257fb52008-12-22 05:46:06 +00002491 // If this is a variadic call, handle args passed through "...".
2492 if (Proto->isVariadic()) {
Anders Carlsson4b8e38c2009-01-16 16:48:51 +00002493 VariadicCallType CallType = VariadicFunction;
2494 if (Fn->getType()->isBlockPointerType())
2495 CallType = VariadicBlock; // Block
2496 else if (isa<MemberExpr>(Fn))
2497 CallType = VariadicMethod;
2498
Douglas Gregor3257fb52008-12-22 05:46:06 +00002499 // Promote the arguments (C99 6.5.2.2p7).
2500 for (unsigned i = NumArgsInProto; i != NumArgs; i++) {
2501 Expr *Arg = Args[i];
Chris Lattner81f00ed2009-04-12 08:11:20 +00002502 Invalid |= DefaultVariadicArgumentPromotion(Arg, CallType);
Douglas Gregor3257fb52008-12-22 05:46:06 +00002503 Call->setArg(i, Arg);
2504 }
2505 }
2506
Douglas Gregor4ac887b2009-01-23 21:30:56 +00002507 return Invalid;
Douglas Gregor3257fb52008-12-22 05:46:06 +00002508}
2509
Steve Naroff87d58b42007-09-16 03:34:24 +00002510/// ActOnCallExpr - Handle a call to Fn with the specified array of arguments.
Chris Lattner4b009652007-07-25 00:24:17 +00002511/// This provides the location of the left/right parens and a list of comma
2512/// locations.
Sebastian Redl8b769972009-01-19 00:08:26 +00002513Action::OwningExprResult
2514Sema::ActOnCallExpr(Scope *S, ExprArg fn, SourceLocation LParenLoc,
2515 MultiExprArg args,
Douglas Gregor3257fb52008-12-22 05:46:06 +00002516 SourceLocation *CommaLocs, SourceLocation RParenLoc) {
Sebastian Redl8b769972009-01-19 00:08:26 +00002517 unsigned NumArgs = args.size();
Anders Carlssonc154a722009-05-01 19:30:39 +00002518 Expr *Fn = fn.takeAs<Expr>();
Sebastian Redl8b769972009-01-19 00:08:26 +00002519 Expr **Args = reinterpret_cast<Expr**>(args.release());
Chris Lattner4b009652007-07-25 00:24:17 +00002520 assert(Fn && "no function call expression");
Chris Lattner3e254fb2008-04-08 04:40:51 +00002521 FunctionDecl *FDecl = NULL;
Fariborz Jahanianc10357d2009-05-15 20:33:25 +00002522 NamedDecl *NDecl = NULL;
Douglas Gregor4646f9c2009-02-04 15:01:18 +00002523 DeclarationName UnqualifiedName;
Douglas Gregor3257fb52008-12-22 05:46:06 +00002524
Douglas Gregor3257fb52008-12-22 05:46:06 +00002525 if (getLangOptions().CPlusPlus) {
Douglas Gregor4646f9c2009-02-04 15:01:18 +00002526 // Determine whether this is a dependent call inside a C++ template,
Mike Stump9afab102009-02-19 03:04:26 +00002527 // in which case we won't do any semantic analysis now.
Mike Stumpe127ae32009-05-16 07:39:55 +00002528 // FIXME: Will need to cache the results of name lookup (including ADL) in
2529 // Fn.
Douglas Gregor4646f9c2009-02-04 15:01:18 +00002530 bool Dependent = false;
2531 if (Fn->isTypeDependent())
2532 Dependent = true;
2533 else if (Expr::hasAnyTypeDependentArguments(Args, NumArgs))
2534 Dependent = true;
2535
2536 if (Dependent)
Ted Kremenek362abcd2009-02-09 20:51:47 +00002537 return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs,
Douglas Gregor4646f9c2009-02-04 15:01:18 +00002538 Context.DependentTy, RParenLoc));
2539
2540 // Determine whether this is a call to an object (C++ [over.call.object]).
2541 if (Fn->getType()->isRecordType())
2542 return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs,
2543 CommaLocs, RParenLoc));
2544
Douglas Gregoraa1da4a2009-02-04 00:32:51 +00002545 // Determine whether this is a call to a member function.
Douglas Gregor3257fb52008-12-22 05:46:06 +00002546 if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(Fn->IgnoreParens()))
2547 if (isa<OverloadedFunctionDecl>(MemExpr->getMemberDecl()) ||
2548 isa<CXXMethodDecl>(MemExpr->getMemberDecl()))
Sebastian Redl8b769972009-01-19 00:08:26 +00002549 return Owned(BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs,
2550 CommaLocs, RParenLoc));
Douglas Gregor3257fb52008-12-22 05:46:06 +00002551 }
2552
Douglas Gregoraa1da4a2009-02-04 00:32:51 +00002553 // If we're directly calling a function, get the appropriate declaration.
Douglas Gregor566782a2009-01-06 05:10:23 +00002554 DeclRefExpr *DRExpr = NULL;
Douglas Gregoraa1da4a2009-02-04 00:32:51 +00002555 Expr *FnExpr = Fn;
2556 bool ADL = true;
2557 while (true) {
2558 if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(FnExpr))
2559 FnExpr = IcExpr->getSubExpr();
2560 else if (ParenExpr *PExpr = dyn_cast<ParenExpr>(FnExpr)) {
Mike Stump9afab102009-02-19 03:04:26 +00002561 // Parentheses around a function disable ADL
Douglas Gregor4646f9c2009-02-04 15:01:18 +00002562 // (C++0x [basic.lookup.argdep]p1).
Douglas Gregoraa1da4a2009-02-04 00:32:51 +00002563 ADL = false;
2564 FnExpr = PExpr->getSubExpr();
2565 } else if (isa<UnaryOperator>(FnExpr) &&
Mike Stump9afab102009-02-19 03:04:26 +00002566 cast<UnaryOperator>(FnExpr)->getOpcode()
Douglas Gregoraa1da4a2009-02-04 00:32:51 +00002567 == UnaryOperator::AddrOf) {
2568 FnExpr = cast<UnaryOperator>(FnExpr)->getSubExpr();
Chris Lattnere50fb0b2009-02-14 07:22:29 +00002569 } else if ((DRExpr = dyn_cast<DeclRefExpr>(FnExpr))) {
2570 // Qualified names disable ADL (C++0x [basic.lookup.argdep]p1).
2571 ADL &= !isa<QualifiedDeclRefExpr>(DRExpr);
2572 break;
Mike Stump9afab102009-02-19 03:04:26 +00002573 } else if (UnresolvedFunctionNameExpr *DepName
Chris Lattnere50fb0b2009-02-14 07:22:29 +00002574 = dyn_cast<UnresolvedFunctionNameExpr>(FnExpr)) {
2575 UnqualifiedName = DepName->getName();
2576 break;
Douglas Gregoraa1da4a2009-02-04 00:32:51 +00002577 } else {
Chris Lattnere50fb0b2009-02-14 07:22:29 +00002578 // Any kind of name that does not refer to a declaration (or
2579 // set of declarations) disables ADL (C++0x [basic.lookup.argdep]p3).
2580 ADL = false;
Douglas Gregoraa1da4a2009-02-04 00:32:51 +00002581 break;
2582 }
Douglas Gregord2baafd2008-10-21 16:13:35 +00002583 }
Mike Stump9afab102009-02-19 03:04:26 +00002584
Douglas Gregor4646f9c2009-02-04 15:01:18 +00002585 OverloadedFunctionDecl *Ovl = 0;
2586 if (DRExpr) {
Douglas Gregoraa1da4a2009-02-04 00:32:51 +00002587 FDecl = dyn_cast<FunctionDecl>(DRExpr->getDecl());
Douglas Gregor4646f9c2009-02-04 15:01:18 +00002588 Ovl = dyn_cast<OverloadedFunctionDecl>(DRExpr->getDecl());
Fariborz Jahanianc10357d2009-05-15 20:33:25 +00002589 NDecl = dyn_cast<NamedDecl>(DRExpr->getDecl());
Douglas Gregor4646f9c2009-02-04 15:01:18 +00002590 }
Douglas Gregord2baafd2008-10-21 16:13:35 +00002591
Douglas Gregorfcb19192009-02-11 23:02:49 +00002592 if (Ovl || (getLangOptions().CPlusPlus && (FDecl || UnqualifiedName))) {
Douglas Gregor411889e2009-02-13 23:20:09 +00002593 // We don't perform ADL for implicit declarations of builtins.
Douglas Gregorb5af7382009-02-14 18:57:46 +00002594 if (FDecl && FDecl->getBuiltinID(Context) && FDecl->isImplicit())
Douglas Gregoraa1da4a2009-02-04 00:32:51 +00002595 ADL = false;
2596
Douglas Gregorfcb19192009-02-11 23:02:49 +00002597 // We don't perform ADL in C.
2598 if (!getLangOptions().CPlusPlus)
2599 ADL = false;
2600
Douglas Gregor4646f9c2009-02-04 15:01:18 +00002601 if (Ovl || ADL) {
Mike Stump9afab102009-02-19 03:04:26 +00002602 FDecl = ResolveOverloadedCallFn(Fn, DRExpr? DRExpr->getDecl() : 0,
2603 UnqualifiedName, LParenLoc, Args,
Douglas Gregoraa1da4a2009-02-04 00:32:51 +00002604 NumArgs, CommaLocs, RParenLoc, ADL);
2605 if (!FDecl)
2606 return ExprError();
2607
2608 // Update Fn to refer to the actual function selected.
2609 Expr *NewFn = 0;
Mike Stump9afab102009-02-19 03:04:26 +00002610 if (QualifiedDeclRefExpr *QDRExpr
Douglas Gregor4646f9c2009-02-04 15:01:18 +00002611 = dyn_cast_or_null<QualifiedDeclRefExpr>(DRExpr))
Douglas Gregor1e589cc2009-03-26 23:50:42 +00002612 NewFn = new (Context) QualifiedDeclRefExpr(FDecl, FDecl->getType(),
2613 QDRExpr->getLocation(),
2614 false, false,
2615 QDRExpr->getQualifierRange(),
2616 QDRExpr->getQualifier());
Douglas Gregoraa1da4a2009-02-04 00:32:51 +00002617 else
Mike Stump9afab102009-02-19 03:04:26 +00002618 NewFn = new (Context) DeclRefExpr(FDecl, FDecl->getType(),
Douglas Gregoraa1da4a2009-02-04 00:32:51 +00002619 Fn->getSourceRange().getBegin());
2620 Fn->Destroy(Context);
2621 Fn = NewFn;
2622 }
Douglas Gregord2baafd2008-10-21 16:13:35 +00002623 }
Chris Lattner3e254fb2008-04-08 04:40:51 +00002624
2625 // Promote the function operand.
2626 UsualUnaryConversions(Fn);
2627
Chris Lattner83bd5eb2007-12-28 05:29:59 +00002628 // Make the call expr early, before semantic checks. This guarantees cleanup
2629 // of arguments and function on error.
Ted Kremenek362abcd2009-02-09 20:51:47 +00002630 ExprOwningPtr<CallExpr> TheCall(this, new (Context) CallExpr(Context, Fn,
2631 Args, NumArgs,
2632 Context.BoolTy,
2633 RParenLoc));
Sebastian Redl8b769972009-01-19 00:08:26 +00002634
Steve Naroffd6163f32008-09-05 22:11:13 +00002635 const FunctionType *FuncT;
2636 if (!Fn->getType()->isBlockPointerType()) {
2637 // C99 6.5.2.2p1 - "The expression that denotes the called function shall
2638 // have type pointer to function".
2639 const PointerType *PT = Fn->getType()->getAsPointerType();
2640 if (PT == 0)
Sebastian Redl8b769972009-01-19 00:08:26 +00002641 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
2642 << Fn->getType() << Fn->getSourceRange());
Steve Naroffd6163f32008-09-05 22:11:13 +00002643 FuncT = PT->getPointeeType()->getAsFunctionType();
2644 } else { // This is a block call.
2645 FuncT = Fn->getType()->getAsBlockPointerType()->getPointeeType()->
2646 getAsFunctionType();
2647 }
Chris Lattner83bd5eb2007-12-28 05:29:59 +00002648 if (FuncT == 0)
Sebastian Redl8b769972009-01-19 00:08:26 +00002649 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
2650 << Fn->getType() << Fn->getSourceRange());
2651
Eli Friedman83dec9e2009-03-22 22:00:50 +00002652 // Check for a valid return type
2653 if (!FuncT->getResultType()->isVoidType() &&
2654 RequireCompleteType(Fn->getSourceRange().getBegin(),
2655 FuncT->getResultType(),
2656 diag::err_call_incomplete_return,
2657 TheCall->getSourceRange()))
2658 return ExprError();
2659
Chris Lattner83bd5eb2007-12-28 05:29:59 +00002660 // We know the result type of the call, set it.
Douglas Gregor2aecd1f2008-10-29 02:00:59 +00002661 TheCall->setType(FuncT->getResultType().getNonReferenceType());
Sebastian Redl8b769972009-01-19 00:08:26 +00002662
Douglas Gregor4fa58902009-02-26 23:50:07 +00002663 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) {
Mike Stump9afab102009-02-19 03:04:26 +00002664 if (ConvertArgumentsForCall(&*TheCall, Fn, FDecl, Proto, Args, NumArgs,
Douglas Gregor3257fb52008-12-22 05:46:06 +00002665 RParenLoc))
Sebastian Redl8b769972009-01-19 00:08:26 +00002666 return ExprError();
Chris Lattner83bd5eb2007-12-28 05:29:59 +00002667 } else {
Douglas Gregor4fa58902009-02-26 23:50:07 +00002668 assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!");
Sebastian Redl8b769972009-01-19 00:08:26 +00002669
Douglas Gregora8f2ae62009-04-02 15:37:10 +00002670 if (FDecl) {
2671 // Check if we have too few/too many template arguments, based
2672 // on our knowledge of the function definition.
2673 const FunctionDecl *Def = 0;
Douglas Gregore3241e92009-04-18 00:02:19 +00002674 if (FDecl->getBody(Context, Def) && NumArgs != Def->param_size())
Douglas Gregora8f2ae62009-04-02 15:37:10 +00002675 Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments)
2676 << (NumArgs > Def->param_size()) << FDecl << Fn->getSourceRange();
2677 }
2678
Steve Naroffdb65e052007-08-28 23:30:39 +00002679 // Promote the arguments (C99 6.5.2.2p6).
Chris Lattner83bd5eb2007-12-28 05:29:59 +00002680 for (unsigned i = 0; i != NumArgs; i++) {
2681 Expr *Arg = Args[i];
2682 DefaultArgumentPromotion(Arg);
Eli Friedman83dec9e2009-03-22 22:00:50 +00002683 if (RequireCompleteType(Arg->getSourceRange().getBegin(),
2684 Arg->getType(),
2685 diag::err_call_incomplete_argument,
2686 Arg->getSourceRange()))
2687 return ExprError();
Chris Lattner83bd5eb2007-12-28 05:29:59 +00002688 TheCall->setArg(i, Arg);
Steve Naroffdb65e052007-08-28 23:30:39 +00002689 }
Chris Lattner4b009652007-07-25 00:24:17 +00002690 }
Chris Lattner83bd5eb2007-12-28 05:29:59 +00002691
Douglas Gregor3257fb52008-12-22 05:46:06 +00002692 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl))
2693 if (!Method->isStatic())
Sebastian Redl8b769972009-01-19 00:08:26 +00002694 return ExprError(Diag(LParenLoc, diag::err_member_call_without_object)
2695 << Fn->getSourceRange());
Douglas Gregor3257fb52008-12-22 05:46:06 +00002696
Fariborz Jahanianc10357d2009-05-15 20:33:25 +00002697 // Check for sentinels
2698 if (NDecl)
2699 DiagnoseSentinelCalls(NDecl, LParenLoc, Args, NumArgs);
Chris Lattner2e64c072007-08-10 20:18:51 +00002700 // Do special checking on direct calls to functions.
Fariborz Jahanianc10357d2009-05-15 20:33:25 +00002701 if (FDecl)
Eli Friedmand0e9d092008-05-14 19:38:39 +00002702 return CheckFunctionCall(FDecl, TheCall.take());
Fariborz Jahanianf83c85f2009-05-18 21:05:18 +00002703 if (NDecl)
2704 return CheckBlockCall(NDecl, TheCall.take());
Chris Lattner2e64c072007-08-10 20:18:51 +00002705
Sebastian Redl8b769972009-01-19 00:08:26 +00002706 return Owned(TheCall.take());
Chris Lattner4b009652007-07-25 00:24:17 +00002707}
2708
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002709Action::OwningExprResult
2710Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty,
2711 SourceLocation RParenLoc, ExprArg InitExpr) {
Steve Naroff87d58b42007-09-16 03:34:24 +00002712 assert((Ty != 0) && "ActOnCompoundLiteral(): missing type");
Chris Lattner4b009652007-07-25 00:24:17 +00002713 QualType literalType = QualType::getFromOpaquePtr(Ty);
2714 // FIXME: put back this assert when initializers are worked out.
Steve Naroff87d58b42007-09-16 03:34:24 +00002715 //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression");
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002716 Expr *literalExpr = static_cast<Expr*>(InitExpr.get());
Anders Carlsson9374b852007-12-05 07:24:19 +00002717
Eli Friedman8c2173d2008-05-20 05:22:08 +00002718 if (literalType->isArrayType()) {
Chris Lattnera1923f62008-08-04 07:31:14 +00002719 if (literalType->isVariableArrayType())
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002720 return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init)
2721 << SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd()));
Douglas Gregorc84d8932009-03-09 16:13:40 +00002722 } else if (RequireCompleteType(LParenLoc, literalType,
Douglas Gregor46fe06e2009-01-19 19:26:10 +00002723 diag::err_typecheck_decl_incomplete_type,
2724 SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd())))
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002725 return ExprError();
Eli Friedman8c2173d2008-05-20 05:22:08 +00002726
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002727 if (CheckInitializerTypes(literalExpr, literalType, LParenLoc,
Douglas Gregor6214d8a2009-01-14 15:45:31 +00002728 DeclarationName(), /*FIXME:DirectInit=*/false))
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002729 return ExprError();
Steve Naroffbe37fc02008-01-14 18:19:28 +00002730
Chris Lattnere5cb5862008-12-04 23:50:19 +00002731 bool isFileScope = getCurFunctionOrMethodDecl() == 0;
Steve Naroffbe37fc02008-01-14 18:19:28 +00002732 if (isFileScope) { // 6.5.2.5p3
Steve Narofff0b23542008-01-10 22:15:12 +00002733 if (CheckForConstantInitializer(literalExpr, literalType))
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002734 return ExprError();
Steve Narofff0b23542008-01-10 22:15:12 +00002735 }
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002736 InitExpr.release();
Mike Stump9afab102009-02-19 03:04:26 +00002737 return Owned(new (Context) CompoundLiteralExpr(LParenLoc, literalType,
Steve Naroff774e4152009-01-21 00:14:39 +00002738 literalExpr, isFileScope));
Chris Lattner4b009652007-07-25 00:24:17 +00002739}
2740
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002741Action::OwningExprResult
2742Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg initlist,
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002743 SourceLocation RBraceLoc) {
2744 unsigned NumInit = initlist.size();
2745 Expr **InitList = reinterpret_cast<Expr**>(initlist.release());
Anders Carlsson762b7c72007-08-31 04:56:16 +00002746
Steve Naroff0acc9c92007-09-15 18:49:24 +00002747 // Semantic analysis for initializers is done by ActOnDeclarator() and
Mike Stump9afab102009-02-19 03:04:26 +00002748 // CheckInitializer() - it requires knowledge of the object being intialized.
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002749
Mike Stump9afab102009-02-19 03:04:26 +00002750 InitListExpr *E = new (Context) InitListExpr(LBraceLoc, InitList, NumInit,
Douglas Gregorf603b472009-01-28 21:54:33 +00002751 RBraceLoc);
Chris Lattner48d7f382008-04-02 04:24:33 +00002752 E->setType(Context.VoidTy); // FIXME: just a place holder for now.
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002753 return Owned(E);
Chris Lattner4b009652007-07-25 00:24:17 +00002754}
2755
Argiris Kirtzidis95de23a2008-08-16 20:27:34 +00002756/// CheckCastTypes - Check type constraints for casting between types.
Daniel Dunbar5ad49de2008-08-20 03:55:42 +00002757bool Sema::CheckCastTypes(SourceRange TyR, QualType castType, Expr *&castExpr) {
Argiris Kirtzidis95de23a2008-08-16 20:27:34 +00002758 UsualUnaryConversions(castExpr);
2759
2760 // C99 6.5.4p2: the cast type needs to be void or scalar and the expression
2761 // type needs to be scalar.
2762 if (castType->isVoidType()) {
2763 // Cast to void allows any expr type.
Douglas Gregor1b21c7f2008-12-05 23:32:09 +00002764 } else if (castType->isDependentType() || castExpr->isTypeDependent()) {
2765 // We can't check any more until template instantiation time.
Argiris Kirtzidis95de23a2008-08-16 20:27:34 +00002766 } else if (!castType->isScalarType() && !castType->isVectorType()) {
Seo Sanghyeon27b33952009-01-15 04:51:39 +00002767 if (Context.getCanonicalType(castType).getUnqualifiedType() ==
2768 Context.getCanonicalType(castExpr->getType().getUnqualifiedType()) &&
2769 (castType->isStructureType() || castType->isUnionType())) {
2770 // GCC struct/union extension: allow cast to self.
Eli Friedman2b128322009-03-23 00:24:07 +00002771 // FIXME: Check that the cast destination type is complete.
Seo Sanghyeon27b33952009-01-15 04:51:39 +00002772 Diag(TyR.getBegin(), diag::ext_typecheck_cast_nonscalar)
2773 << castType << castExpr->getSourceRange();
2774 } else if (castType->isUnionType()) {
2775 // GCC cast to union extension
2776 RecordDecl *RD = castType->getAsRecordType()->getDecl();
2777 RecordDecl::field_iterator Field, FieldEnd;
Douglas Gregorc55b0b02009-04-09 21:40:53 +00002778 for (Field = RD->field_begin(Context), FieldEnd = RD->field_end(Context);
Seo Sanghyeon27b33952009-01-15 04:51:39 +00002779 Field != FieldEnd; ++Field) {
2780 if (Context.getCanonicalType(Field->getType()).getUnqualifiedType() ==
2781 Context.getCanonicalType(castExpr->getType()).getUnqualifiedType()) {
2782 Diag(TyR.getBegin(), diag::ext_typecheck_cast_to_union)
2783 << castExpr->getSourceRange();
2784 break;
2785 }
2786 }
2787 if (Field == FieldEnd)
2788 return Diag(TyR.getBegin(), diag::err_typecheck_cast_to_union_no_type)
2789 << castExpr->getType() << castExpr->getSourceRange();
2790 } else {
Argiris Kirtzidis95de23a2008-08-16 20:27:34 +00002791 // Reject any other conversions to non-scalar types.
Chris Lattner8ba580c2008-11-19 05:08:23 +00002792 return Diag(TyR.getBegin(), diag::err_typecheck_cond_expect_scalar)
Chris Lattner4bfd2232008-11-24 06:25:27 +00002793 << castType << castExpr->getSourceRange();
Argiris Kirtzidis95de23a2008-08-16 20:27:34 +00002794 }
Mike Stump9afab102009-02-19 03:04:26 +00002795 } else if (!castExpr->getType()->isScalarType() &&
Argiris Kirtzidis95de23a2008-08-16 20:27:34 +00002796 !castExpr->getType()->isVectorType()) {
Chris Lattner8ba580c2008-11-19 05:08:23 +00002797 return Diag(castExpr->getLocStart(),
2798 diag::err_typecheck_expect_scalar_operand)
Chris Lattner4bfd2232008-11-24 06:25:27 +00002799 << castExpr->getType() << castExpr->getSourceRange();
Argiris Kirtzidis95de23a2008-08-16 20:27:34 +00002800 } else if (castExpr->getType()->isVectorType()) {
2801 if (CheckVectorCast(TyR, castExpr->getType(), castType))
2802 return true;
2803 } else if (castType->isVectorType()) {
2804 if (CheckVectorCast(TyR, castType, castExpr->getType()))
2805 return true;
Steve Naroffff6c8022009-03-04 15:11:40 +00002806 } else if (getLangOptions().ObjC1 && isa<ObjCSuperExpr>(castExpr)) {
Steve Naroff49fd7ad2009-04-08 23:52:26 +00002807 return Diag(castExpr->getLocStart(), diag::err_illegal_super_cast) << TyR;
Eli Friedman970e56c2009-05-01 02:23:58 +00002808 } else if (!castType->isArithmeticType()) {
2809 QualType castExprType = castExpr->getType();
2810 if (!castExprType->isIntegralType() && castExprType->isArithmeticType())
2811 return Diag(castExpr->getLocStart(),
2812 diag::err_cast_pointer_from_non_pointer_int)
2813 << castExprType << castExpr->getSourceRange();
2814 } else if (!castExpr->getType()->isArithmeticType()) {
2815 if (!castType->isIntegralType() && castType->isArithmeticType())
2816 return Diag(castExpr->getLocStart(),
2817 diag::err_cast_pointer_to_non_pointer_int)
2818 << castType << castExpr->getSourceRange();
Argiris Kirtzidis95de23a2008-08-16 20:27:34 +00002819 }
2820 return false;
2821}
2822
Chris Lattnerd1f26b32007-12-20 00:44:32 +00002823bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty) {
Anders Carlssonf257b4c2007-11-27 05:51:55 +00002824 assert(VectorTy->isVectorType() && "Not a vector type!");
Mike Stump9afab102009-02-19 03:04:26 +00002825
Anders Carlssonf257b4c2007-11-27 05:51:55 +00002826 if (Ty->isVectorType() || Ty->isIntegerType()) {
Chris Lattner8cd0e932008-03-05 18:54:05 +00002827 if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty))
Anders Carlssonf257b4c2007-11-27 05:51:55 +00002828 return Diag(R.getBegin(),
Mike Stump9afab102009-02-19 03:04:26 +00002829 Ty->isVectorType() ?
Anders Carlssonf257b4c2007-11-27 05:51:55 +00002830 diag::err_invalid_conversion_between_vectors :
Chris Lattner8ba580c2008-11-19 05:08:23 +00002831 diag::err_invalid_conversion_between_vector_and_integer)
Chris Lattner4bfd2232008-11-24 06:25:27 +00002832 << VectorTy << Ty << R;
Anders Carlssonf257b4c2007-11-27 05:51:55 +00002833 } else
2834 return Diag(R.getBegin(),
Chris Lattner8ba580c2008-11-19 05:08:23 +00002835 diag::err_invalid_conversion_between_vector_and_scalar)
Chris Lattner4bfd2232008-11-24 06:25:27 +00002836 << VectorTy << Ty << R;
Mike Stump9afab102009-02-19 03:04:26 +00002837
Anders Carlssonf257b4c2007-11-27 05:51:55 +00002838 return false;
2839}
2840
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002841Action::OwningExprResult
2842Sema::ActOnCastExpr(SourceLocation LParenLoc, TypeTy *Ty,
2843 SourceLocation RParenLoc, ExprArg Op) {
2844 assert((Ty != 0) && (Op.get() != 0) &&
2845 "ActOnCastExpr(): missing type or expr");
Chris Lattner4b009652007-07-25 00:24:17 +00002846
Anders Carlssonc154a722009-05-01 19:30:39 +00002847 Expr *castExpr = Op.takeAs<Expr>();
Chris Lattner4b009652007-07-25 00:24:17 +00002848 QualType castType = QualType::getFromOpaquePtr(Ty);
2849
Argiris Kirtzidis95de23a2008-08-16 20:27:34 +00002850 if (CheckCastTypes(SourceRange(LParenLoc, RParenLoc), castType, castExpr))
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002851 return ExprError();
Steve Naroff774e4152009-01-21 00:14:39 +00002852 return Owned(new (Context) CStyleCastExpr(castType, castExpr, castType,
Mike Stump9afab102009-02-19 03:04:26 +00002853 LParenLoc, RParenLoc));
Chris Lattner4b009652007-07-25 00:24:17 +00002854}
2855
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00002856/// Note that lhs is not null here, even if this is the gnu "x ?: y" extension.
2857/// In that case, lhs = cond.
Chris Lattner9c039b52009-02-18 04:38:20 +00002858/// C99 6.5.15
2859QualType Sema::CheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS,
2860 SourceLocation QuestionLoc) {
Sebastian Redlbd261962009-04-16 17:51:27 +00002861 // C++ is sufficiently different to merit its own checker.
2862 if (getLangOptions().CPlusPlus)
2863 return CXXCheckConditionalOperands(Cond, LHS, RHS, QuestionLoc);
2864
Chris Lattnere2897262009-02-18 04:28:32 +00002865 UsualUnaryConversions(Cond);
2866 UsualUnaryConversions(LHS);
2867 UsualUnaryConversions(RHS);
2868 QualType CondTy = Cond->getType();
2869 QualType LHSTy = LHS->getType();
2870 QualType RHSTy = RHS->getType();
Chris Lattner4b009652007-07-25 00:24:17 +00002871
2872 // first, check the condition.
Sebastian Redlbd261962009-04-16 17:51:27 +00002873 if (!CondTy->isScalarType()) { // C99 6.5.15p2
2874 Diag(Cond->getLocStart(), diag::err_typecheck_cond_expect_scalar)
2875 << CondTy;
2876 return QualType();
Chris Lattner4b009652007-07-25 00:24:17 +00002877 }
Mike Stump9afab102009-02-19 03:04:26 +00002878
Chris Lattner992ae932008-01-06 22:42:25 +00002879 // Now check the two expressions.
Douglas Gregor1b21c7f2008-12-05 23:32:09 +00002880
Chris Lattner992ae932008-01-06 22:42:25 +00002881 // If both operands have arithmetic type, do the usual arithmetic conversions
2882 // to find a common type: C99 6.5.15p3,5.
Chris Lattnere2897262009-02-18 04:28:32 +00002883 if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) {
2884 UsualArithmeticConversions(LHS, RHS);
2885 return LHS->getType();
Chris Lattner4b009652007-07-25 00:24:17 +00002886 }
Mike Stump9afab102009-02-19 03:04:26 +00002887
Chris Lattner992ae932008-01-06 22:42:25 +00002888 // If both operands are the same structure or union type, the result is that
2889 // type.
Chris Lattnere2897262009-02-18 04:28:32 +00002890 if (const RecordType *LHSRT = LHSTy->getAsRecordType()) { // C99 6.5.15p3
2891 if (const RecordType *RHSRT = RHSTy->getAsRecordType())
Chris Lattner98a425c2007-11-26 01:40:58 +00002892 if (LHSRT->getDecl() == RHSRT->getDecl())
Mike Stump9afab102009-02-19 03:04:26 +00002893 // "If both the operands have structure or union type, the result has
Chris Lattner992ae932008-01-06 22:42:25 +00002894 // that type." This implies that CV qualifiers are dropped.
Chris Lattnere2897262009-02-18 04:28:32 +00002895 return LHSTy.getUnqualifiedType();
Eli Friedman2b128322009-03-23 00:24:07 +00002896 // FIXME: Type of conditional expression must be complete in C mode.
Chris Lattner4b009652007-07-25 00:24:17 +00002897 }
Mike Stump9afab102009-02-19 03:04:26 +00002898
Chris Lattner992ae932008-01-06 22:42:25 +00002899 // C99 6.5.15p5: "If both operands have void type, the result has void type."
Steve Naroff95cb3892008-05-12 21:44:38 +00002900 // The following || allows only one side to be void (a GCC-ism).
Chris Lattnere2897262009-02-18 04:28:32 +00002901 if (LHSTy->isVoidType() || RHSTy->isVoidType()) {
2902 if (!LHSTy->isVoidType())
2903 Diag(RHS->getLocStart(), diag::ext_typecheck_cond_one_void)
2904 << RHS->getSourceRange();
2905 if (!RHSTy->isVoidType())
2906 Diag(LHS->getLocStart(), diag::ext_typecheck_cond_one_void)
2907 << LHS->getSourceRange();
2908 ImpCastExprToType(LHS, Context.VoidTy);
2909 ImpCastExprToType(RHS, Context.VoidTy);
Eli Friedmanf025aac2008-06-04 19:47:51 +00002910 return Context.VoidTy;
Steve Naroff95cb3892008-05-12 21:44:38 +00002911 }
Steve Naroff12ebf272008-01-08 01:11:38 +00002912 // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has
2913 // the type of the other operand."
Chris Lattnere2897262009-02-18 04:28:32 +00002914 if ((LHSTy->isPointerType() || LHSTy->isBlockPointerType() ||
2915 Context.isObjCObjectPointerType(LHSTy)) &&
2916 RHS->isNullPointerConstant(Context)) {
2917 ImpCastExprToType(RHS, LHSTy); // promote the null to a pointer.
2918 return LHSTy;
Steve Naroff12ebf272008-01-08 01:11:38 +00002919 }
Chris Lattnere2897262009-02-18 04:28:32 +00002920 if ((RHSTy->isPointerType() || RHSTy->isBlockPointerType() ||
2921 Context.isObjCObjectPointerType(RHSTy)) &&
2922 LHS->isNullPointerConstant(Context)) {
2923 ImpCastExprToType(LHS, RHSTy); // promote the null to a pointer.
2924 return RHSTy;
Steve Naroff12ebf272008-01-08 01:11:38 +00002925 }
Mike Stump9afab102009-02-19 03:04:26 +00002926
Mike Stumpe97a8542009-05-07 03:14:14 +00002927 const PointerType *LHSPT = LHSTy->getAsPointerType();
2928 const PointerType *RHSPT = RHSTy->getAsPointerType();
2929 const BlockPointerType *LHSBPT = LHSTy->getAsBlockPointerType();
2930 const BlockPointerType *RHSBPT = RHSTy->getAsBlockPointerType();
2931
Chris Lattner0ac51632008-01-06 22:50:31 +00002932 // Handle the case where both operands are pointers before we handle null
2933 // pointer constants in case both operands are null pointer constants.
Mike Stumpe97a8542009-05-07 03:14:14 +00002934 if ((LHSPT || LHSBPT) && (RHSPT || RHSBPT)) { // C99 6.5.15p3,6
2935 // get the "pointed to" types
Mike Stumpea3d74e2009-05-07 18:43:07 +00002936 QualType lhptee = (LHSPT ? LHSPT->getPointeeType()
2937 : LHSBPT->getPointeeType());
2938 QualType rhptee = (RHSPT ? RHSPT->getPointeeType()
2939 : RHSBPT->getPointeeType());
Chris Lattner4b009652007-07-25 00:24:17 +00002940
Mike Stumpe97a8542009-05-07 03:14:14 +00002941 // ignore qualifiers on void (C99 6.5.15p3, clause 6)
2942 if (lhptee->isVoidType()
2943 && (RHSBPT || rhptee->isIncompleteOrObjectType())) {
2944 // Figure out necessary qualifiers (C99 6.5.15p6)
2945 QualType destPointee=lhptee.getQualifiedType(rhptee.getCVRQualifiers());
2946 QualType destType = Context.getPointerType(destPointee);
2947 ImpCastExprToType(LHS, destType); // add qualifiers if necessary
2948 ImpCastExprToType(RHS, destType); // promote to void*
2949 return destType;
2950 }
2951 if (rhptee->isVoidType()
2952 && (LHSBPT || lhptee->isIncompleteOrObjectType())) {
2953 QualType destPointee=rhptee.getQualifiedType(lhptee.getCVRQualifiers());
2954 QualType destType = Context.getPointerType(destPointee);
2955 ImpCastExprToType(LHS, destType); // add qualifiers if necessary
2956 ImpCastExprToType(RHS, destType); // promote to void*
2957 return destType;
2958 }
Chris Lattner4b009652007-07-25 00:24:17 +00002959
Mike Stumpe97a8542009-05-07 03:14:14 +00002960 bool sameKind = (LHSPT && RHSPT) || (LHSBPT && RHSBPT);
2961 if (sameKind
2962 && Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
2963 // Two identical pointer types are always compatible.
2964 return LHSTy;
2965 }
Mike Stump9afab102009-02-19 03:04:26 +00002966
Mike Stumpe97a8542009-05-07 03:14:14 +00002967 QualType compositeType = LHSTy;
Mike Stump9afab102009-02-19 03:04:26 +00002968
Mike Stumpe97a8542009-05-07 03:14:14 +00002969 // If either type is an Objective-C object type then check
2970 // compatibility according to Objective-C.
2971 if (Context.isObjCObjectPointerType(LHSTy) ||
2972 Context.isObjCObjectPointerType(RHSTy)) {
2973 // If both operands are interfaces and either operand can be
2974 // assigned to the other, use that type as the composite
2975 // type. This allows
2976 // xxx ? (A*) a : (B*) b
2977 // where B is a subclass of A.
2978 //
2979 // Additionally, as for assignment, if either type is 'id'
2980 // allow silent coercion. Finally, if the types are
2981 // incompatible then make sure to use 'id' as the composite
2982 // type so the result is acceptable for sending messages to.
Daniel Dunbara7b5fb92008-09-11 23:12:46 +00002983
Mike Stumpe97a8542009-05-07 03:14:14 +00002984 // FIXME: Consider unifying with 'areComparableObjCPointerTypes'.
2985 // It could return the composite type.
2986 const ObjCInterfaceType* LHSIface = lhptee->getAsObjCInterfaceType();
2987 const ObjCInterfaceType* RHSIface = rhptee->getAsObjCInterfaceType();
2988 if (LHSIface && RHSIface &&
2989 Context.canAssignObjCInterfaces(LHSIface, RHSIface)) {
2990 compositeType = LHSTy;
2991 } else if (LHSIface && RHSIface &&
2992 Context.canAssignObjCInterfaces(RHSIface, LHSIface)) {
2993 compositeType = RHSTy;
2994 } else if (Context.isObjCIdStructType(lhptee) ||
2995 Context.isObjCIdStructType(rhptee)) {
2996 compositeType = Context.getObjCIdType();
2997 } else if (LHSBPT || RHSBPT) {
2998 if (!sameKind
2999 || !Context.typesAreBlockCompatible(lhptee.getUnqualifiedType(),
3000 rhptee.getUnqualifiedType()))
3001 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
3002 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3003 return QualType();
3004 } else {
3005 Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands)
3006 << LHSTy << RHSTy
3007 << LHS->getSourceRange() << RHS->getSourceRange();
3008 QualType incompatTy = Context.getObjCIdType();
Chris Lattnere2897262009-02-18 04:28:32 +00003009 ImpCastExprToType(LHS, incompatTy);
3010 ImpCastExprToType(RHS, incompatTy);
Daniel Dunbarcd23bb22008-08-26 00:41:39 +00003011 return incompatTy;
Chris Lattner71225142007-07-31 21:27:01 +00003012 }
Mike Stumpe97a8542009-05-07 03:14:14 +00003013 } else if (!sameKind
3014 || !Context.typesAreCompatible(lhptee.getUnqualifiedType(),
3015 rhptee.getUnqualifiedType())) {
3016 Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers)
3017 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3018 // In this situation, we assume void* type. No especially good
3019 // reason, but this is what gcc does, and we do have to pick
3020 // to get a consistent AST.
3021 QualType incompatTy = Context.getPointerType(Context.VoidTy);
3022 ImpCastExprToType(LHS, incompatTy);
3023 ImpCastExprToType(RHS, incompatTy);
3024 return incompatTy;
Chris Lattner4b009652007-07-25 00:24:17 +00003025 }
Mike Stumpe97a8542009-05-07 03:14:14 +00003026 // The pointer types are compatible.
3027 // C99 6.5.15p6: If both operands are pointers to compatible types *or* to
3028 // differently qualified versions of compatible types, the result type is
3029 // a pointer to an appropriately qualified version of the *composite*
3030 // type.
3031 // FIXME: Need to calculate the composite type.
3032 // FIXME: Need to add qualifiers
3033 ImpCastExprToType(LHS, compositeType);
3034 ImpCastExprToType(RHS, compositeType);
3035 return compositeType;
Chris Lattner4b009652007-07-25 00:24:17 +00003036 }
Mike Stump9afab102009-02-19 03:04:26 +00003037
Steve Naroff6ba22682009-04-08 17:05:15 +00003038 // GCC compatibility: soften pointer/integer mismatch.
3039 if (RHSTy->isPointerType() && LHSTy->isIntegerType()) {
3040 Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch)
3041 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3042 ImpCastExprToType(LHS, RHSTy); // promote the integer to a pointer.
3043 return RHSTy;
3044 }
3045 if (LHSTy->isPointerType() && RHSTy->isIntegerType()) {
3046 Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch)
3047 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3048 ImpCastExprToType(RHS, LHSTy); // promote the integer to a pointer.
3049 return LHSTy;
3050 }
3051
Daniel Dunbara7b5fb92008-09-11 23:12:46 +00003052 // Need to handle "id<xx>" explicitly. Unlike "id", whose canonical type
3053 // evaluates to "struct objc_object *" (and is handled above when comparing
Mike Stump9afab102009-02-19 03:04:26 +00003054 // id with statically typed objects).
3055 if (LHSTy->isObjCQualifiedIdType() || RHSTy->isObjCQualifiedIdType()) {
Daniel Dunbara7b5fb92008-09-11 23:12:46 +00003056 // GCC allows qualified id and any Objective-C type to devolve to
3057 // id. Currently localizing to here until clear this should be
3058 // part of ObjCQualifiedIdTypesAreCompatible.
Chris Lattnere2897262009-02-18 04:28:32 +00003059 if (ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true) ||
Mike Stump9afab102009-02-19 03:04:26 +00003060 (LHSTy->isObjCQualifiedIdType() &&
Chris Lattnere2897262009-02-18 04:28:32 +00003061 Context.isObjCObjectPointerType(RHSTy)) ||
3062 (RHSTy->isObjCQualifiedIdType() &&
3063 Context.isObjCObjectPointerType(LHSTy))) {
Mike Stumpe127ae32009-05-16 07:39:55 +00003064 // FIXME: This is not the correct composite type. This only happens to
3065 // work because id can more or less be used anywhere, however this may
3066 // change the type of method sends.
3067
Daniel Dunbara7b5fb92008-09-11 23:12:46 +00003068 // FIXME: gcc adds some type-checking of the arguments and emits
3069 // (confusing) incompatible comparison warnings in some
3070 // cases. Investigate.
3071 QualType compositeType = Context.getObjCIdType();
Chris Lattnere2897262009-02-18 04:28:32 +00003072 ImpCastExprToType(LHS, compositeType);
3073 ImpCastExprToType(RHS, compositeType);
Daniel Dunbara7b5fb92008-09-11 23:12:46 +00003074 return compositeType;
3075 }
3076 }
3077
Chris Lattner992ae932008-01-06 22:42:25 +00003078 // Otherwise, the operands are not compatible.
Chris Lattnere2897262009-02-18 04:28:32 +00003079 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
3080 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
Chris Lattner4b009652007-07-25 00:24:17 +00003081 return QualType();
3082}
3083
Steve Naroff87d58b42007-09-16 03:34:24 +00003084/// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null
Chris Lattner4b009652007-07-25 00:24:17 +00003085/// in the case of a the GNU conditional expr extension.
Sebastian Redl5457c5e2009-01-19 22:31:54 +00003086Action::OwningExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc,
3087 SourceLocation ColonLoc,
3088 ExprArg Cond, ExprArg LHS,
3089 ExprArg RHS) {
3090 Expr *CondExpr = (Expr *) Cond.get();
3091 Expr *LHSExpr = (Expr *) LHS.get(), *RHSExpr = (Expr *) RHS.get();
Chris Lattner98a425c2007-11-26 01:40:58 +00003092
3093 // If this is the gnu "x ?: y" extension, analyze the types as though the LHS
3094 // was the condition.
3095 bool isLHSNull = LHSExpr == 0;
3096 if (isLHSNull)
3097 LHSExpr = CondExpr;
Sebastian Redl5457c5e2009-01-19 22:31:54 +00003098
3099 QualType result = CheckConditionalOperands(CondExpr, LHSExpr,
Chris Lattner4b009652007-07-25 00:24:17 +00003100 RHSExpr, QuestionLoc);
3101 if (result.isNull())
Sebastian Redl5457c5e2009-01-19 22:31:54 +00003102 return ExprError();
3103
3104 Cond.release();
3105 LHS.release();
3106 RHS.release();
Mike Stump9afab102009-02-19 03:04:26 +00003107 return Owned(new (Context) ConditionalOperator(CondExpr,
Steve Naroff774e4152009-01-21 00:14:39 +00003108 isLHSNull ? 0 : LHSExpr,
3109 RHSExpr, result));
Chris Lattner4b009652007-07-25 00:24:17 +00003110}
3111
Chris Lattner4b009652007-07-25 00:24:17 +00003112
3113// CheckPointerTypesForAssignment - This is a very tricky routine (despite
Mike Stump9afab102009-02-19 03:04:26 +00003114// being closely modeled after the C99 spec:-). The odd characteristic of this
Chris Lattner4b009652007-07-25 00:24:17 +00003115// routine is it effectively iqnores the qualifiers on the top level pointee.
3116// This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3].
3117// FIXME: add a couple examples in this comment.
Mike Stump9afab102009-02-19 03:04:26 +00003118Sema::AssignConvertType
Chris Lattner4b009652007-07-25 00:24:17 +00003119Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) {
3120 QualType lhptee, rhptee;
Mike Stump9afab102009-02-19 03:04:26 +00003121
Chris Lattner4b009652007-07-25 00:24:17 +00003122 // get the "pointed to" type (ignoring qualifiers at the top level)
Chris Lattner71225142007-07-31 21:27:01 +00003123 lhptee = lhsType->getAsPointerType()->getPointeeType();
3124 rhptee = rhsType->getAsPointerType()->getPointeeType();
Mike Stump9afab102009-02-19 03:04:26 +00003125
Chris Lattner4b009652007-07-25 00:24:17 +00003126 // make sure we operate on the canonical type
Chris Lattnerd5a56aa2008-07-26 22:17:49 +00003127 lhptee = Context.getCanonicalType(lhptee);
3128 rhptee = Context.getCanonicalType(rhptee);
Chris Lattner4b009652007-07-25 00:24:17 +00003129
Chris Lattner005ed752008-01-04 18:04:52 +00003130 AssignConvertType ConvTy = Compatible;
Mike Stump9afab102009-02-19 03:04:26 +00003131
3132 // C99 6.5.16.1p1: This following citation is common to constraints
3133 // 3 & 4 (below). ...and the type *pointed to* by the left has all the
3134 // qualifiers of the type *pointed to* by the right;
Fariborz Jahanianb60352a2009-02-17 18:27:45 +00003135 // FIXME: Handle ExtQualType
Douglas Gregor6573cfd2008-10-21 23:43:52 +00003136 if (!lhptee.isAtLeastAsQualifiedAs(rhptee))
Chris Lattner005ed752008-01-04 18:04:52 +00003137 ConvTy = CompatiblePointerDiscardsQualifiers;
Chris Lattner4b009652007-07-25 00:24:17 +00003138
Mike Stump9afab102009-02-19 03:04:26 +00003139 // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or
3140 // incomplete type and the other is a pointer to a qualified or unqualified
Chris Lattner4b009652007-07-25 00:24:17 +00003141 // version of void...
Chris Lattner4ca3d772008-01-03 22:56:36 +00003142 if (lhptee->isVoidType()) {
Chris Lattner9db553e2008-04-02 06:59:01 +00003143 if (rhptee->isIncompleteOrObjectType())
Chris Lattner005ed752008-01-04 18:04:52 +00003144 return ConvTy;
Mike Stump9afab102009-02-19 03:04:26 +00003145
Chris Lattner4ca3d772008-01-03 22:56:36 +00003146 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattner9db553e2008-04-02 06:59:01 +00003147 assert(rhptee->isFunctionType());
3148 return FunctionVoidPointer;
Chris Lattner4ca3d772008-01-03 22:56:36 +00003149 }
Mike Stump9afab102009-02-19 03:04:26 +00003150
Chris Lattner4ca3d772008-01-03 22:56:36 +00003151 if (rhptee->isVoidType()) {
Chris Lattner9db553e2008-04-02 06:59:01 +00003152 if (lhptee->isIncompleteOrObjectType())
Chris Lattner005ed752008-01-04 18:04:52 +00003153 return ConvTy;
Chris Lattner4ca3d772008-01-03 22:56:36 +00003154
3155 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattner9db553e2008-04-02 06:59:01 +00003156 assert(lhptee->isFunctionType());
3157 return FunctionVoidPointer;
Chris Lattner4ca3d772008-01-03 22:56:36 +00003158 }
Mike Stump9afab102009-02-19 03:04:26 +00003159 // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or
Chris Lattner4b009652007-07-25 00:24:17 +00003160 // unqualified versions of compatible types, ...
Eli Friedman6ca28cb2009-03-22 23:59:44 +00003161 lhptee = lhptee.getUnqualifiedType();
3162 rhptee = rhptee.getUnqualifiedType();
3163 if (!Context.typesAreCompatible(lhptee, rhptee)) {
3164 // Check if the pointee types are compatible ignoring the sign.
3165 // We explicitly check for char so that we catch "char" vs
3166 // "unsigned char" on systems where "char" is unsigned.
3167 if (lhptee->isCharType()) {
3168 lhptee = Context.UnsignedCharTy;
3169 } else if (lhptee->isSignedIntegerType()) {
3170 lhptee = Context.getCorrespondingUnsignedType(lhptee);
3171 }
3172 if (rhptee->isCharType()) {
3173 rhptee = Context.UnsignedCharTy;
3174 } else if (rhptee->isSignedIntegerType()) {
3175 rhptee = Context.getCorrespondingUnsignedType(rhptee);
3176 }
3177 if (lhptee == rhptee) {
3178 // Types are compatible ignoring the sign. Qualifier incompatibility
3179 // takes priority over sign incompatibility because the sign
3180 // warning can be disabled.
3181 if (ConvTy != Compatible)
3182 return ConvTy;
3183 return IncompatiblePointerSign;
3184 }
3185 // General pointer incompatibility takes priority over qualifiers.
3186 return IncompatiblePointer;
3187 }
Chris Lattner005ed752008-01-04 18:04:52 +00003188 return ConvTy;
Chris Lattner4b009652007-07-25 00:24:17 +00003189}
3190
Steve Naroff3454b6c2008-09-04 15:10:53 +00003191/// CheckBlockPointerTypesForAssignment - This routine determines whether two
3192/// block pointer types are compatible or whether a block and normal pointer
3193/// are compatible. It is more restrict than comparing two function pointer
3194// types.
Mike Stump9afab102009-02-19 03:04:26 +00003195Sema::AssignConvertType
3196Sema::CheckBlockPointerTypesForAssignment(QualType lhsType,
Steve Naroff3454b6c2008-09-04 15:10:53 +00003197 QualType rhsType) {
3198 QualType lhptee, rhptee;
Mike Stump9afab102009-02-19 03:04:26 +00003199
Steve Naroff3454b6c2008-09-04 15:10:53 +00003200 // get the "pointed to" type (ignoring qualifiers at the top level)
3201 lhptee = lhsType->getAsBlockPointerType()->getPointeeType();
Mike Stump9afab102009-02-19 03:04:26 +00003202 rhptee = rhsType->getAsBlockPointerType()->getPointeeType();
3203
Steve Naroff3454b6c2008-09-04 15:10:53 +00003204 // make sure we operate on the canonical type
3205 lhptee = Context.getCanonicalType(lhptee);
3206 rhptee = Context.getCanonicalType(rhptee);
Mike Stump9afab102009-02-19 03:04:26 +00003207
Steve Naroff3454b6c2008-09-04 15:10:53 +00003208 AssignConvertType ConvTy = Compatible;
Mike Stump9afab102009-02-19 03:04:26 +00003209
Steve Naroff3454b6c2008-09-04 15:10:53 +00003210 // For blocks we enforce that qualifiers are identical.
3211 if (lhptee.getCVRQualifiers() != rhptee.getCVRQualifiers())
3212 ConvTy = CompatiblePointerDiscardsQualifiers;
Mike Stump9afab102009-02-19 03:04:26 +00003213
Steve Naroff3454b6c2008-09-04 15:10:53 +00003214 if (!Context.typesAreBlockCompatible(lhptee, rhptee))
Mike Stump9afab102009-02-19 03:04:26 +00003215 return IncompatibleBlockPointer;
Steve Naroff3454b6c2008-09-04 15:10:53 +00003216 return ConvTy;
3217}
3218
Mike Stump9afab102009-02-19 03:04:26 +00003219/// CheckAssignmentConstraints (C99 6.5.16) - This routine currently
3220/// has code to accommodate several GCC extensions when type checking
Chris Lattner4b009652007-07-25 00:24:17 +00003221/// pointers. Here are some objectionable examples that GCC considers warnings:
3222///
3223/// int a, *pint;
3224/// short *pshort;
3225/// struct foo *pfoo;
3226///
3227/// pint = pshort; // warning: assignment from incompatible pointer type
3228/// a = pint; // warning: assignment makes integer from pointer without a cast
3229/// pint = a; // warning: assignment makes pointer from integer without a cast
3230/// pint = pfoo; // warning: assignment from incompatible pointer type
3231///
3232/// As a result, the code for dealing with pointers is more complex than the
Mike Stump9afab102009-02-19 03:04:26 +00003233/// C99 spec dictates.
Chris Lattner4b009652007-07-25 00:24:17 +00003234///
Chris Lattner005ed752008-01-04 18:04:52 +00003235Sema::AssignConvertType
Chris Lattner4b009652007-07-25 00:24:17 +00003236Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) {
Chris Lattner1853da22008-01-04 23:18:45 +00003237 // Get canonical types. We're not formatting these types, just comparing
3238 // them.
Chris Lattnerd5a56aa2008-07-26 22:17:49 +00003239 lhsType = Context.getCanonicalType(lhsType).getUnqualifiedType();
3240 rhsType = Context.getCanonicalType(rhsType).getUnqualifiedType();
Eli Friedman48d0bb02008-05-30 18:07:22 +00003241
3242 if (lhsType == rhsType)
Chris Lattnerfdd96d72008-01-07 17:51:46 +00003243 return Compatible; // Common case: fast path an exact match.
Chris Lattner4b009652007-07-25 00:24:17 +00003244
Douglas Gregor0d5d89d2008-10-28 00:22:11 +00003245 // If the left-hand side is a reference type, then we are in a
3246 // (rare!) case where we've allowed the use of references in C,
3247 // e.g., as a parameter type in a built-in function. In this case,
3248 // just make sure that the type referenced is compatible with the
3249 // right-hand side type. The caller is responsible for adjusting
3250 // lhsType so that the resulting expression does not have reference
3251 // type.
3252 if (const ReferenceType *lhsTypeRef = lhsType->getAsReferenceType()) {
3253 if (Context.typesAreCompatible(lhsTypeRef->getPointeeType(), rhsType))
Anders Carlssoncebb8d62007-10-12 23:56:29 +00003254 return Compatible;
Chris Lattner1853da22008-01-04 23:18:45 +00003255 return Incompatible;
Fariborz Jahanian957442d2007-12-19 17:45:58 +00003256 }
Eli Friedman48d0bb02008-05-30 18:07:22 +00003257
Chris Lattnerfe1f4032008-04-07 05:30:13 +00003258 if (lhsType->isObjCQualifiedIdType() || rhsType->isObjCQualifiedIdType()) {
3259 if (ObjCQualifiedIdTypesAreCompatible(lhsType, rhsType, false))
Fariborz Jahanian957442d2007-12-19 17:45:58 +00003260 return Compatible;
Steve Naroff936c4362008-06-03 14:04:54 +00003261 // Relax integer conversions like we do for pointers below.
3262 if (rhsType->isIntegerType())
3263 return IntToPointer;
3264 if (lhsType->isIntegerType())
3265 return PointerToInt;
Steve Naroff19608432008-10-14 22:18:38 +00003266 return IncompatibleObjCQualifiedId;
Fariborz Jahanian957442d2007-12-19 17:45:58 +00003267 }
Chris Lattnerdb22bf42008-01-04 23:32:24 +00003268
Nate Begemanc5f0f652008-07-14 18:02:46 +00003269 if (lhsType->isVectorType() || rhsType->isVectorType()) {
Nate Begemanaf6ed502008-04-18 23:10:10 +00003270 // For ExtVector, allow vector splats; float -> <n x float>
Nate Begemanc5f0f652008-07-14 18:02:46 +00003271 if (const ExtVectorType *LV = lhsType->getAsExtVectorType())
3272 if (LV->getElementType() == rhsType)
Chris Lattnerdb22bf42008-01-04 23:32:24 +00003273 return Compatible;
Eli Friedman48d0bb02008-05-30 18:07:22 +00003274
Nate Begemanc5f0f652008-07-14 18:02:46 +00003275 // If we are allowing lax vector conversions, and LHS and RHS are both
Mike Stump9afab102009-02-19 03:04:26 +00003276 // vectors, the total size only needs to be the same. This is a bitcast;
Nate Begemanc5f0f652008-07-14 18:02:46 +00003277 // no bits are changed but the result type is different.
Chris Lattnerdb22bf42008-01-04 23:32:24 +00003278 if (getLangOptions().LaxVectorConversions &&
3279 lhsType->isVectorType() && rhsType->isVectorType()) {
Nate Begemanc5f0f652008-07-14 18:02:46 +00003280 if (Context.getTypeSize(lhsType) == Context.getTypeSize(rhsType))
Anders Carlsson355ed052009-01-30 23:17:46 +00003281 return IncompatibleVectors;
Chris Lattnerdb22bf42008-01-04 23:32:24 +00003282 }
3283 return Incompatible;
Mike Stump9afab102009-02-19 03:04:26 +00003284 }
Eli Friedman48d0bb02008-05-30 18:07:22 +00003285
Chris Lattnerdb22bf42008-01-04 23:32:24 +00003286 if (lhsType->isArithmeticType() && rhsType->isArithmeticType())
Chris Lattner4b009652007-07-25 00:24:17 +00003287 return Compatible;
Eli Friedman48d0bb02008-05-30 18:07:22 +00003288
Chris Lattner390564e2008-04-07 06:49:41 +00003289 if (isa<PointerType>(lhsType)) {
Chris Lattner4b009652007-07-25 00:24:17 +00003290 if (rhsType->isIntegerType())
Chris Lattnerd951b7b2008-01-04 18:22:42 +00003291 return IntToPointer;
Eli Friedman48d0bb02008-05-30 18:07:22 +00003292
Chris Lattner390564e2008-04-07 06:49:41 +00003293 if (isa<PointerType>(rhsType))
Chris Lattner4b009652007-07-25 00:24:17 +00003294 return CheckPointerTypesForAssignment(lhsType, rhsType);
Mike Stump9afab102009-02-19 03:04:26 +00003295
Steve Naroffa982c712008-09-29 18:10:17 +00003296 if (rhsType->getAsBlockPointerType()) {
Steve Naroffd6163f32008-09-05 22:11:13 +00003297 if (lhsType->getAsPointerType()->getPointeeType()->isVoidType())
Douglas Gregor7abc1432008-11-27 00:44:28 +00003298 return Compatible;
Steve Naroffa982c712008-09-29 18:10:17 +00003299
3300 // Treat block pointers as objects.
3301 if (getLangOptions().ObjC1 &&
3302 lhsType == Context.getCanonicalType(Context.getObjCIdType()))
3303 return Compatible;
3304 }
Steve Naroff3454b6c2008-09-04 15:10:53 +00003305 return Incompatible;
3306 }
3307
3308 if (isa<BlockPointerType>(lhsType)) {
3309 if (rhsType->isIntegerType())
Eli Friedmanc5898302009-02-25 04:20:42 +00003310 return IntToBlockPointer;
Mike Stump9afab102009-02-19 03:04:26 +00003311
Steve Naroffa982c712008-09-29 18:10:17 +00003312 // Treat block pointers as objects.
3313 if (getLangOptions().ObjC1 &&
3314 rhsType == Context.getCanonicalType(Context.getObjCIdType()))
3315 return Compatible;
3316
Steve Naroff3454b6c2008-09-04 15:10:53 +00003317 if (rhsType->isBlockPointerType())
3318 return CheckBlockPointerTypesForAssignment(lhsType, rhsType);
Mike Stump9afab102009-02-19 03:04:26 +00003319
Steve Naroff3454b6c2008-09-04 15:10:53 +00003320 if (const PointerType *RHSPT = rhsType->getAsPointerType()) {
3321 if (RHSPT->getPointeeType()->isVoidType())
Douglas Gregor7abc1432008-11-27 00:44:28 +00003322 return Compatible;
Steve Naroff3454b6c2008-09-04 15:10:53 +00003323 }
Chris Lattner1853da22008-01-04 23:18:45 +00003324 return Incompatible;
3325 }
3326
Chris Lattner390564e2008-04-07 06:49:41 +00003327 if (isa<PointerType>(rhsType)) {
Chris Lattner4b009652007-07-25 00:24:17 +00003328 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer.
Eli Friedman48d0bb02008-05-30 18:07:22 +00003329 if (lhsType == Context.BoolTy)
3330 return Compatible;
3331
3332 if (lhsType->isIntegerType())
Chris Lattnerd951b7b2008-01-04 18:22:42 +00003333 return PointerToInt;
Chris Lattner4b009652007-07-25 00:24:17 +00003334
Mike Stump9afab102009-02-19 03:04:26 +00003335 if (isa<PointerType>(lhsType))
Chris Lattner4b009652007-07-25 00:24:17 +00003336 return CheckPointerTypesForAssignment(lhsType, rhsType);
Mike Stump9afab102009-02-19 03:04:26 +00003337
3338 if (isa<BlockPointerType>(lhsType) &&
Steve Naroff3454b6c2008-09-04 15:10:53 +00003339 rhsType->getAsPointerType()->getPointeeType()->isVoidType())
Douglas Gregor7abc1432008-11-27 00:44:28 +00003340 return Compatible;
Chris Lattner1853da22008-01-04 23:18:45 +00003341 return Incompatible;
Chris Lattner1853da22008-01-04 23:18:45 +00003342 }
Eli Friedman48d0bb02008-05-30 18:07:22 +00003343
Chris Lattner1853da22008-01-04 23:18:45 +00003344 if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) {
Chris Lattner390564e2008-04-07 06:49:41 +00003345 if (Context.typesAreCompatible(lhsType, rhsType))
Chris Lattner4b009652007-07-25 00:24:17 +00003346 return Compatible;
Chris Lattner4b009652007-07-25 00:24:17 +00003347 }
3348 return Incompatible;
3349}
3350
Douglas Gregor144b06c2009-04-29 22:16:16 +00003351/// \brief Constructs a transparent union from an expression that is
3352/// used to initialize the transparent union.
3353static void ConstructTransparentUnion(ASTContext &C, Expr *&E,
3354 QualType UnionType, FieldDecl *Field) {
3355 // Build an initializer list that designates the appropriate member
3356 // of the transparent union.
3357 InitListExpr *Initializer = new (C) InitListExpr(SourceLocation(),
3358 &E, 1,
3359 SourceLocation());
3360 Initializer->setType(UnionType);
3361 Initializer->setInitializedFieldInUnion(Field);
3362
3363 // Build a compound literal constructing a value of the transparent
3364 // union type from this initializer list.
3365 E = new (C) CompoundLiteralExpr(SourceLocation(), UnionType, Initializer,
3366 false);
3367}
3368
3369Sema::AssignConvertType
3370Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, Expr *&rExpr) {
3371 QualType FromType = rExpr->getType();
3372
3373 // If the ArgType is a Union type, we want to handle a potential
3374 // transparent_union GCC extension.
3375 const RecordType *UT = ArgType->getAsUnionType();
3376 if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>())
3377 return Incompatible;
3378
3379 // The field to initialize within the transparent union.
3380 RecordDecl *UD = UT->getDecl();
3381 FieldDecl *InitField = 0;
3382 // It's compatible if the expression matches any of the fields.
3383 for (RecordDecl::field_iterator it = UD->field_begin(Context),
3384 itend = UD->field_end(Context);
3385 it != itend; ++it) {
3386 if (it->getType()->isPointerType()) {
3387 // If the transparent union contains a pointer type, we allow:
3388 // 1) void pointer
3389 // 2) null pointer constant
3390 if (FromType->isPointerType())
3391 if (FromType->getAsPointerType()->getPointeeType()->isVoidType()) {
3392 ImpCastExprToType(rExpr, it->getType());
3393 InitField = *it;
3394 break;
3395 }
3396
3397 if (rExpr->isNullPointerConstant(Context)) {
3398 ImpCastExprToType(rExpr, it->getType());
3399 InitField = *it;
3400 break;
3401 }
3402 }
3403
3404 if (CheckAssignmentConstraints(it->getType(), rExpr->getType())
3405 == Compatible) {
3406 InitField = *it;
3407 break;
3408 }
3409 }
3410
3411 if (!InitField)
3412 return Incompatible;
3413
3414 ConstructTransparentUnion(Context, rExpr, ArgType, InitField);
3415 return Compatible;
3416}
3417
Chris Lattner005ed752008-01-04 18:04:52 +00003418Sema::AssignConvertType
Chris Lattner4b009652007-07-25 00:24:17 +00003419Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) {
Douglas Gregor6573cfd2008-10-21 23:43:52 +00003420 if (getLangOptions().CPlusPlus) {
3421 if (!lhsType->isRecordType()) {
3422 // C++ 5.17p3: If the left operand is not of class type, the
3423 // expression is implicitly converted (C++ 4) to the
3424 // cv-unqualified type of the left operand.
Douglas Gregor6fd35572008-12-19 17:40:08 +00003425 if (PerformImplicitConversion(rExpr, lhsType.getUnqualifiedType(),
3426 "assigning"))
Douglas Gregor6573cfd2008-10-21 23:43:52 +00003427 return Incompatible;
Chris Lattner79e9a422009-04-12 09:02:39 +00003428 return Compatible;
Douglas Gregor6573cfd2008-10-21 23:43:52 +00003429 }
3430
3431 // FIXME: Currently, we fall through and treat C++ classes like C
3432 // structures.
3433 }
3434
Steve Naroffcdee22d2007-11-27 17:58:44 +00003435 // C99 6.5.16.1p1: the left operand is a pointer and the right is
3436 // a null pointer constant.
Steve Naroffd305a862009-02-21 21:17:01 +00003437 if ((lhsType->isPointerType() ||
3438 lhsType->isObjCQualifiedIdType() ||
Mike Stump9afab102009-02-19 03:04:26 +00003439 lhsType->isBlockPointerType())
Fariborz Jahaniana13effb2008-01-03 18:46:52 +00003440 && rExpr->isNullPointerConstant(Context)) {
Chris Lattnere992d6c2008-01-16 19:17:22 +00003441 ImpCastExprToType(rExpr, lhsType);
Steve Naroffcdee22d2007-11-27 17:58:44 +00003442 return Compatible;
3443 }
Mike Stump9afab102009-02-19 03:04:26 +00003444
Chris Lattner5f505bf2007-10-16 02:55:40 +00003445 // This check seems unnatural, however it is necessary to ensure the proper
Chris Lattner4b009652007-07-25 00:24:17 +00003446 // conversion of functions/arrays. If the conversion were done for all
Steve Naroff0acc9c92007-09-15 18:49:24 +00003447 // DeclExpr's (created by ActOnIdentifierExpr), it would mess up the unary
Chris Lattner4b009652007-07-25 00:24:17 +00003448 // expressions that surpress this implicit conversion (&, sizeof).
Chris Lattner5f505bf2007-10-16 02:55:40 +00003449 //
Mike Stump9afab102009-02-19 03:04:26 +00003450 // Suppress this for references: C++ 8.5.3p5.
Chris Lattner5f505bf2007-10-16 02:55:40 +00003451 if (!lhsType->isReferenceType())
3452 DefaultFunctionArrayConversion(rExpr);
Steve Naroff0f32f432007-08-24 22:33:52 +00003453
Chris Lattner005ed752008-01-04 18:04:52 +00003454 Sema::AssignConvertType result =
3455 CheckAssignmentConstraints(lhsType, rExpr->getType());
Mike Stump9afab102009-02-19 03:04:26 +00003456
Steve Naroff0f32f432007-08-24 22:33:52 +00003457 // C99 6.5.16.1p2: The value of the right operand is converted to the
3458 // type of the assignment expression.
Douglas Gregor0d5d89d2008-10-28 00:22:11 +00003459 // CheckAssignmentConstraints allows the left-hand side to be a reference,
3460 // so that we can use references in built-in functions even in C.
3461 // The getNonReferenceType() call makes sure that the resulting expression
3462 // does not have reference type.
Douglas Gregor144b06c2009-04-29 22:16:16 +00003463 if (result != Incompatible && rExpr->getType() != lhsType)
Douglas Gregor0d5d89d2008-10-28 00:22:11 +00003464 ImpCastExprToType(rExpr, lhsType.getNonReferenceType());
Steve Naroff0f32f432007-08-24 22:33:52 +00003465 return result;
Chris Lattner4b009652007-07-25 00:24:17 +00003466}
3467
Chris Lattner1eafdea2008-11-18 01:30:42 +00003468QualType Sema::InvalidOperands(SourceLocation Loc, Expr *&lex, Expr *&rex) {
Chris Lattner70b93d82008-11-18 22:52:51 +00003469 Diag(Loc, diag::err_typecheck_invalid_operands)
Chris Lattnerda5c0872008-11-23 09:13:29 +00003470 << lex->getType() << rex->getType()
Chris Lattner70b93d82008-11-18 22:52:51 +00003471 << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner2c8bff72007-12-12 05:47:28 +00003472 return QualType();
Chris Lattner4b009652007-07-25 00:24:17 +00003473}
3474
Mike Stump9afab102009-02-19 03:04:26 +00003475inline QualType Sema::CheckVectorOperands(SourceLocation Loc, Expr *&lex,
Chris Lattner4b009652007-07-25 00:24:17 +00003476 Expr *&rex) {
Mike Stump9afab102009-02-19 03:04:26 +00003477 // For conversion purposes, we ignore any qualifiers.
Nate Begeman03105572008-04-04 01:30:25 +00003478 // For example, "const float" and "float" are equivalent.
Chris Lattnerd5a56aa2008-07-26 22:17:49 +00003479 QualType lhsType =
3480 Context.getCanonicalType(lex->getType()).getUnqualifiedType();
3481 QualType rhsType =
3482 Context.getCanonicalType(rex->getType()).getUnqualifiedType();
Mike Stump9afab102009-02-19 03:04:26 +00003483
Nate Begemanc5f0f652008-07-14 18:02:46 +00003484 // If the vector types are identical, return.
Nate Begeman03105572008-04-04 01:30:25 +00003485 if (lhsType == rhsType)
Chris Lattner4b009652007-07-25 00:24:17 +00003486 return lhsType;
Nate Begemanec2d1062007-12-30 02:59:45 +00003487
Nate Begemanc5f0f652008-07-14 18:02:46 +00003488 // Handle the case of a vector & extvector type of the same size and element
3489 // type. It would be nice if we only had one vector type someday.
Anders Carlsson355ed052009-01-30 23:17:46 +00003490 if (getLangOptions().LaxVectorConversions) {
3491 // FIXME: Should we warn here?
3492 if (const VectorType *LV = lhsType->getAsVectorType()) {
Nate Begemanc5f0f652008-07-14 18:02:46 +00003493 if (const VectorType *RV = rhsType->getAsVectorType())
3494 if (LV->getElementType() == RV->getElementType() &&
Anders Carlsson355ed052009-01-30 23:17:46 +00003495 LV->getNumElements() == RV->getNumElements()) {
Nate Begemanc5f0f652008-07-14 18:02:46 +00003496 return lhsType->isExtVectorType() ? lhsType : rhsType;
Anders Carlsson355ed052009-01-30 23:17:46 +00003497 }
3498 }
3499 }
Mike Stump9afab102009-02-19 03:04:26 +00003500
Nate Begemanc5f0f652008-07-14 18:02:46 +00003501 // If the lhs is an extended vector and the rhs is a scalar of the same type
3502 // or a literal, promote the rhs to the vector type.
Nate Begemanaf6ed502008-04-18 23:10:10 +00003503 if (const ExtVectorType *V = lhsType->getAsExtVectorType()) {
Nate Begemanc5f0f652008-07-14 18:02:46 +00003504 QualType eltType = V->getElementType();
Mike Stump9afab102009-02-19 03:04:26 +00003505
3506 if ((eltType->getAsBuiltinType() == rhsType->getAsBuiltinType()) ||
Nate Begemanc5f0f652008-07-14 18:02:46 +00003507 (eltType->isIntegerType() && isa<IntegerLiteral>(rex)) ||
3508 (eltType->isFloatingType() && isa<FloatingLiteral>(rex))) {
Chris Lattnere992d6c2008-01-16 19:17:22 +00003509 ImpCastExprToType(rex, lhsType);
Nate Begemanec2d1062007-12-30 02:59:45 +00003510 return lhsType;
3511 }
3512 }
3513
Nate Begemanc5f0f652008-07-14 18:02:46 +00003514 // If the rhs is an extended vector and the lhs is a scalar of the same type,
Nate Begemanec2d1062007-12-30 02:59:45 +00003515 // promote the lhs to the vector type.
Nate Begemanaf6ed502008-04-18 23:10:10 +00003516 if (const ExtVectorType *V = rhsType->getAsExtVectorType()) {
Nate Begemanc5f0f652008-07-14 18:02:46 +00003517 QualType eltType = V->getElementType();
3518
Mike Stump9afab102009-02-19 03:04:26 +00003519 if ((eltType->getAsBuiltinType() == lhsType->getAsBuiltinType()) ||
Nate Begemanc5f0f652008-07-14 18:02:46 +00003520 (eltType->isIntegerType() && isa<IntegerLiteral>(lex)) ||
3521 (eltType->isFloatingType() && isa<FloatingLiteral>(lex))) {
Chris Lattnere992d6c2008-01-16 19:17:22 +00003522 ImpCastExprToType(lex, rhsType);
Nate Begemanec2d1062007-12-30 02:59:45 +00003523 return rhsType;
3524 }
3525 }
3526
Chris Lattner4b009652007-07-25 00:24:17 +00003527 // You cannot convert between vector values of different size.
Chris Lattner70b93d82008-11-18 22:52:51 +00003528 Diag(Loc, diag::err_typecheck_vector_not_convertable)
Chris Lattner4bfd2232008-11-24 06:25:27 +00003529 << lex->getType() << rex->getType()
Chris Lattner70b93d82008-11-18 22:52:51 +00003530 << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner4b009652007-07-25 00:24:17 +00003531 return QualType();
Sebastian Redl95216a62009-02-07 00:15:38 +00003532}
3533
Chris Lattner4b009652007-07-25 00:24:17 +00003534inline QualType Sema::CheckMultiplyDivideOperands(
Mike Stump9afab102009-02-19 03:04:26 +00003535 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign)
Chris Lattner4b009652007-07-25 00:24:17 +00003536{
Daniel Dunbar2f08d812009-01-05 22:42:10 +00003537 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner1eafdea2008-11-18 01:30:42 +00003538 return CheckVectorOperands(Loc, lex, rex);
Mike Stump9afab102009-02-19 03:04:26 +00003539
Steve Naroff8f708362007-08-24 19:07:16 +00003540 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stump9afab102009-02-19 03:04:26 +00003541
Chris Lattner4b009652007-07-25 00:24:17 +00003542 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff8f708362007-08-24 19:07:16 +00003543 return compType;
Chris Lattner1eafdea2008-11-18 01:30:42 +00003544 return InvalidOperands(Loc, lex, rex);
Chris Lattner4b009652007-07-25 00:24:17 +00003545}
3546
3547inline QualType Sema::CheckRemainderOperands(
Mike Stump9afab102009-02-19 03:04:26 +00003548 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign)
Chris Lattner4b009652007-07-25 00:24:17 +00003549{
Daniel Dunbarb27282f2009-01-05 22:55:36 +00003550 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
3551 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
3552 return CheckVectorOperands(Loc, lex, rex);
3553 return InvalidOperands(Loc, lex, rex);
3554 }
Chris Lattner4b009652007-07-25 00:24:17 +00003555
Steve Naroff8f708362007-08-24 19:07:16 +00003556 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stump9afab102009-02-19 03:04:26 +00003557
Chris Lattner4b009652007-07-25 00:24:17 +00003558 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff8f708362007-08-24 19:07:16 +00003559 return compType;
Chris Lattner1eafdea2008-11-18 01:30:42 +00003560 return InvalidOperands(Loc, lex, rex);
Chris Lattner4b009652007-07-25 00:24:17 +00003561}
3562
3563inline QualType Sema::CheckAdditionOperands( // C99 6.5.6
Eli Friedman3cd92882009-03-28 01:22:36 +00003564 Expr *&lex, Expr *&rex, SourceLocation Loc, QualType* CompLHSTy)
Chris Lattner4b009652007-07-25 00:24:17 +00003565{
Eli Friedman3cd92882009-03-28 01:22:36 +00003566 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
3567 QualType compType = CheckVectorOperands(Loc, lex, rex);
3568 if (CompLHSTy) *CompLHSTy = compType;
3569 return compType;
3570 }
Chris Lattner4b009652007-07-25 00:24:17 +00003571
Eli Friedman3cd92882009-03-28 01:22:36 +00003572 QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy);
Eli Friedmand9b1fec2008-05-18 18:08:51 +00003573
Chris Lattner4b009652007-07-25 00:24:17 +00003574 // handle the common case first (both operands are arithmetic).
Eli Friedman3cd92882009-03-28 01:22:36 +00003575 if (lex->getType()->isArithmeticType() &&
3576 rex->getType()->isArithmeticType()) {
3577 if (CompLHSTy) *CompLHSTy = compType;
Steve Naroff8f708362007-08-24 19:07:16 +00003578 return compType;
Eli Friedman3cd92882009-03-28 01:22:36 +00003579 }
Chris Lattner4b009652007-07-25 00:24:17 +00003580
Eli Friedmand9b1fec2008-05-18 18:08:51 +00003581 // Put any potential pointer into PExp
3582 Expr* PExp = lex, *IExp = rex;
3583 if (IExp->getType()->isPointerType())
3584 std::swap(PExp, IExp);
3585
Chris Lattner184f92d2009-04-24 23:50:08 +00003586 if (const PointerType *PTy = PExp->getType()->getAsPointerType()) {
Eli Friedmand9b1fec2008-05-18 18:08:51 +00003587 if (IExp->getType()->isIntegerType()) {
Chris Lattner184f92d2009-04-24 23:50:08 +00003588 QualType PointeeTy = PTy->getPointeeType();
3589 // Check for arithmetic on pointers to incomplete types.
3590 if (PointeeTy->isVoidType()) {
Douglas Gregor05e28f62009-03-24 19:52:54 +00003591 if (getLangOptions().CPlusPlus) {
3592 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
Chris Lattner8ba580c2008-11-19 05:08:23 +00003593 << lex->getSourceRange() << rex->getSourceRange();
Douglas Gregor46fe06e2009-01-19 19:26:10 +00003594 return QualType();
Eli Friedmand9b1fec2008-05-18 18:08:51 +00003595 }
Douglas Gregor05e28f62009-03-24 19:52:54 +00003596
3597 // GNU extension: arithmetic on pointer to void
3598 Diag(Loc, diag::ext_gnu_void_ptr)
3599 << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner184f92d2009-04-24 23:50:08 +00003600 } else if (PointeeTy->isFunctionType()) {
Douglas Gregor05e28f62009-03-24 19:52:54 +00003601 if (getLangOptions().CPlusPlus) {
3602 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
3603 << lex->getType() << lex->getSourceRange();
3604 return QualType();
3605 }
3606
3607 // GNU extension: arithmetic on pointer to function
3608 Diag(Loc, diag::ext_gnu_ptr_func_arith)
3609 << lex->getType() << lex->getSourceRange();
3610 } else if (!PTy->isDependentType() &&
Chris Lattner184f92d2009-04-24 23:50:08 +00003611 RequireCompleteType(Loc, PointeeTy,
Douglas Gregor05e28f62009-03-24 19:52:54 +00003612 diag::err_typecheck_arithmetic_incomplete_type,
Chris Lattner184f92d2009-04-24 23:50:08 +00003613 PExp->getSourceRange(), SourceRange(),
3614 PExp->getType()))
Douglas Gregor05e28f62009-03-24 19:52:54 +00003615 return QualType();
3616
Chris Lattner184f92d2009-04-24 23:50:08 +00003617 // Diagnose bad cases where we step over interface counts.
3618 if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
3619 Diag(Loc, diag::err_arithmetic_nonfragile_interface)
3620 << PointeeTy << PExp->getSourceRange();
3621 return QualType();
3622 }
3623
Eli Friedman3cd92882009-03-28 01:22:36 +00003624 if (CompLHSTy) {
3625 QualType LHSTy = lex->getType();
3626 if (LHSTy->isPromotableIntegerType())
3627 LHSTy = Context.IntTy;
Douglas Gregor6fcf2ca2009-05-02 00:36:19 +00003628 else {
3629 QualType T = isPromotableBitField(lex, Context);
3630 if (!T.isNull())
3631 LHSTy = T;
3632 }
3633
Eli Friedman3cd92882009-03-28 01:22:36 +00003634 *CompLHSTy = LHSTy;
3635 }
Eli Friedmand9b1fec2008-05-18 18:08:51 +00003636 return PExp->getType();
3637 }
3638 }
3639
Chris Lattner1eafdea2008-11-18 01:30:42 +00003640 return InvalidOperands(Loc, lex, rex);
Chris Lattner4b009652007-07-25 00:24:17 +00003641}
3642
Chris Lattnerfe1f4032008-04-07 05:30:13 +00003643// C99 6.5.6
3644QualType Sema::CheckSubtractionOperands(Expr *&lex, Expr *&rex,
Eli Friedman3cd92882009-03-28 01:22:36 +00003645 SourceLocation Loc, QualType* CompLHSTy) {
3646 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
3647 QualType compType = CheckVectorOperands(Loc, lex, rex);
3648 if (CompLHSTy) *CompLHSTy = compType;
3649 return compType;
3650 }
Mike Stump9afab102009-02-19 03:04:26 +00003651
Eli Friedman3cd92882009-03-28 01:22:36 +00003652 QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy);
Mike Stump9afab102009-02-19 03:04:26 +00003653
Chris Lattnerf6da2912007-12-09 21:53:25 +00003654 // Enforce type constraints: C99 6.5.6p3.
Mike Stump9afab102009-02-19 03:04:26 +00003655
Chris Lattnerf6da2912007-12-09 21:53:25 +00003656 // Handle the common case first (both operands are arithmetic).
Mike Stumpea3d74e2009-05-07 18:43:07 +00003657 if (lex->getType()->isArithmeticType()
3658 && rex->getType()->isArithmeticType()) {
Eli Friedman3cd92882009-03-28 01:22:36 +00003659 if (CompLHSTy) *CompLHSTy = compType;
Steve Naroff8f708362007-08-24 19:07:16 +00003660 return compType;
Eli Friedman3cd92882009-03-28 01:22:36 +00003661 }
Mike Stump9afab102009-02-19 03:04:26 +00003662
Chris Lattnerf6da2912007-12-09 21:53:25 +00003663 // Either ptr - int or ptr - ptr.
3664 if (const PointerType *LHSPTy = lex->getType()->getAsPointerType()) {
Steve Naroff577f9722008-01-29 18:58:14 +00003665 QualType lpointee = LHSPTy->getPointeeType();
Mike Stump9afab102009-02-19 03:04:26 +00003666
Douglas Gregor05e28f62009-03-24 19:52:54 +00003667 // The LHS must be an completely-defined object type.
Douglas Gregorb3193242009-01-23 00:36:41 +00003668
Douglas Gregor05e28f62009-03-24 19:52:54 +00003669 bool ComplainAboutVoid = false;
3670 Expr *ComplainAboutFunc = 0;
3671 if (lpointee->isVoidType()) {
3672 if (getLangOptions().CPlusPlus) {
3673 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
3674 << lex->getSourceRange() << rex->getSourceRange();
3675 return QualType();
3676 }
3677
3678 // GNU C extension: arithmetic on pointer to void
3679 ComplainAboutVoid = true;
3680 } else if (lpointee->isFunctionType()) {
3681 if (getLangOptions().CPlusPlus) {
3682 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
Chris Lattner4bfd2232008-11-24 06:25:27 +00003683 << lex->getType() << lex->getSourceRange();
Chris Lattnerf6da2912007-12-09 21:53:25 +00003684 return QualType();
3685 }
Douglas Gregor05e28f62009-03-24 19:52:54 +00003686
3687 // GNU C extension: arithmetic on pointer to function
3688 ComplainAboutFunc = lex;
3689 } else if (!lpointee->isDependentType() &&
3690 RequireCompleteType(Loc, lpointee,
3691 diag::err_typecheck_sub_ptr_object,
3692 lex->getSourceRange(),
3693 SourceRange(),
3694 lex->getType()))
3695 return QualType();
Chris Lattnerf6da2912007-12-09 21:53:25 +00003696
Chris Lattner184f92d2009-04-24 23:50:08 +00003697 // Diagnose bad cases where we step over interface counts.
3698 if (lpointee->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
3699 Diag(Loc, diag::err_arithmetic_nonfragile_interface)
3700 << lpointee << lex->getSourceRange();
3701 return QualType();
3702 }
3703
Chris Lattnerf6da2912007-12-09 21:53:25 +00003704 // The result type of a pointer-int computation is the pointer type.
Douglas Gregor05e28f62009-03-24 19:52:54 +00003705 if (rex->getType()->isIntegerType()) {
3706 if (ComplainAboutVoid)
3707 Diag(Loc, diag::ext_gnu_void_ptr)
3708 << lex->getSourceRange() << rex->getSourceRange();
3709 if (ComplainAboutFunc)
3710 Diag(Loc, diag::ext_gnu_ptr_func_arith)
3711 << ComplainAboutFunc->getType()
3712 << ComplainAboutFunc->getSourceRange();
3713
Eli Friedman3cd92882009-03-28 01:22:36 +00003714 if (CompLHSTy) *CompLHSTy = lex->getType();
Chris Lattnerf6da2912007-12-09 21:53:25 +00003715 return lex->getType();
Douglas Gregor05e28f62009-03-24 19:52:54 +00003716 }
Mike Stump9afab102009-02-19 03:04:26 +00003717
Chris Lattnerf6da2912007-12-09 21:53:25 +00003718 // Handle pointer-pointer subtractions.
3719 if (const PointerType *RHSPTy = rex->getType()->getAsPointerType()) {
Eli Friedman50727042008-02-08 01:19:44 +00003720 QualType rpointee = RHSPTy->getPointeeType();
Mike Stump9afab102009-02-19 03:04:26 +00003721
Douglas Gregor05e28f62009-03-24 19:52:54 +00003722 // RHS must be a completely-type object type.
3723 // Handle the GNU void* extension.
3724 if (rpointee->isVoidType()) {
3725 if (getLangOptions().CPlusPlus) {
3726 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
3727 << lex->getSourceRange() << rex->getSourceRange();
3728 return QualType();
3729 }
Mike Stump9afab102009-02-19 03:04:26 +00003730
Douglas Gregor05e28f62009-03-24 19:52:54 +00003731 ComplainAboutVoid = true;
3732 } else if (rpointee->isFunctionType()) {
3733 if (getLangOptions().CPlusPlus) {
3734 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
Chris Lattner4bfd2232008-11-24 06:25:27 +00003735 << rex->getType() << rex->getSourceRange();
Chris Lattnerf6da2912007-12-09 21:53:25 +00003736 return QualType();
3737 }
Douglas Gregor05e28f62009-03-24 19:52:54 +00003738
3739 // GNU extension: arithmetic on pointer to function
3740 if (!ComplainAboutFunc)
3741 ComplainAboutFunc = rex;
3742 } else if (!rpointee->isDependentType() &&
3743 RequireCompleteType(Loc, rpointee,
3744 diag::err_typecheck_sub_ptr_object,
3745 rex->getSourceRange(),
3746 SourceRange(),
3747 rex->getType()))
3748 return QualType();
Mike Stump9afab102009-02-19 03:04:26 +00003749
Eli Friedman143ddc92009-05-16 13:54:38 +00003750 if (getLangOptions().CPlusPlus) {
3751 // Pointee types must be the same: C++ [expr.add]
3752 if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) {
3753 Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
3754 << lex->getType() << rex->getType()
3755 << lex->getSourceRange() << rex->getSourceRange();
3756 return QualType();
3757 }
3758 } else {
3759 // Pointee types must be compatible C99 6.5.6p3
3760 if (!Context.typesAreCompatible(
3761 Context.getCanonicalType(lpointee).getUnqualifiedType(),
3762 Context.getCanonicalType(rpointee).getUnqualifiedType())) {
3763 Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
3764 << lex->getType() << rex->getType()
3765 << lex->getSourceRange() << rex->getSourceRange();
3766 return QualType();
3767 }
Chris Lattnerf6da2912007-12-09 21:53:25 +00003768 }
Mike Stump9afab102009-02-19 03:04:26 +00003769
Douglas Gregor05e28f62009-03-24 19:52:54 +00003770 if (ComplainAboutVoid)
3771 Diag(Loc, diag::ext_gnu_void_ptr)
3772 << lex->getSourceRange() << rex->getSourceRange();
3773 if (ComplainAboutFunc)
3774 Diag(Loc, diag::ext_gnu_ptr_func_arith)
3775 << ComplainAboutFunc->getType()
3776 << ComplainAboutFunc->getSourceRange();
Eli Friedman3cd92882009-03-28 01:22:36 +00003777
3778 if (CompLHSTy) *CompLHSTy = lex->getType();
Chris Lattnerf6da2912007-12-09 21:53:25 +00003779 return Context.getPointerDiffType();
3780 }
3781 }
Mike Stump9afab102009-02-19 03:04:26 +00003782
Chris Lattner1eafdea2008-11-18 01:30:42 +00003783 return InvalidOperands(Loc, lex, rex);
Chris Lattner4b009652007-07-25 00:24:17 +00003784}
3785
Chris Lattnerfe1f4032008-04-07 05:30:13 +00003786// C99 6.5.7
Chris Lattner1eafdea2008-11-18 01:30:42 +00003787QualType Sema::CheckShiftOperands(Expr *&lex, Expr *&rex, SourceLocation Loc,
Chris Lattnerfe1f4032008-04-07 05:30:13 +00003788 bool isCompAssign) {
Chris Lattner2c8bff72007-12-12 05:47:28 +00003789 // C99 6.5.7p2: Each of the operands shall have integer type.
3790 if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType())
Chris Lattner1eafdea2008-11-18 01:30:42 +00003791 return InvalidOperands(Loc, lex, rex);
Mike Stump9afab102009-02-19 03:04:26 +00003792
Chris Lattner2c8bff72007-12-12 05:47:28 +00003793 // Shifts don't perform usual arithmetic conversions, they just do integer
3794 // promotions on each operand. C99 6.5.7p3
Eli Friedman3cd92882009-03-28 01:22:36 +00003795 QualType LHSTy;
3796 if (lex->getType()->isPromotableIntegerType())
3797 LHSTy = Context.IntTy;
Douglas Gregor6fcf2ca2009-05-02 00:36:19 +00003798 else {
3799 LHSTy = isPromotableBitField(lex, Context);
3800 if (LHSTy.isNull())
3801 LHSTy = lex->getType();
3802 }
Chris Lattnerbb19bc42007-12-13 07:28:16 +00003803 if (!isCompAssign)
Eli Friedman3cd92882009-03-28 01:22:36 +00003804 ImpCastExprToType(lex, LHSTy);
3805
Chris Lattner2c8bff72007-12-12 05:47:28 +00003806 UsualUnaryConversions(rex);
Mike Stump9afab102009-02-19 03:04:26 +00003807
Chris Lattner2c8bff72007-12-12 05:47:28 +00003808 // "The type of the result is that of the promoted left operand."
Eli Friedman3cd92882009-03-28 01:22:36 +00003809 return LHSTy;
Chris Lattner4b009652007-07-25 00:24:17 +00003810}
3811
Douglas Gregor30eed0f2009-05-04 06:07:12 +00003812// C99 6.5.8, C++ [expr.rel]
Chris Lattner1eafdea2008-11-18 01:30:42 +00003813QualType Sema::CheckCompareOperands(Expr *&lex, Expr *&rex, SourceLocation Loc,
Douglas Gregor1f12c352009-04-06 18:45:53 +00003814 unsigned OpaqueOpc, bool isRelational) {
3815 BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)OpaqueOpc;
3816
Nate Begemanc5f0f652008-07-14 18:02:46 +00003817 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner1eafdea2008-11-18 01:30:42 +00003818 return CheckVectorCompareOperands(lex, rex, Loc, isRelational);
Mike Stump9afab102009-02-19 03:04:26 +00003819
Chris Lattner254f3bc2007-08-26 01:18:55 +00003820 // C99 6.5.8p3 / C99 6.5.9p4
Steve Naroffecc4fa12007-08-10 18:26:40 +00003821 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
3822 UsualArithmeticConversions(lex, rex);
3823 else {
3824 UsualUnaryConversions(lex);
3825 UsualUnaryConversions(rex);
3826 }
Chris Lattner4b009652007-07-25 00:24:17 +00003827 QualType lType = lex->getType();
3828 QualType rType = rex->getType();
Mike Stump9afab102009-02-19 03:04:26 +00003829
Mike Stumpea3d74e2009-05-07 18:43:07 +00003830 if (!lType->isFloatingType()
3831 && !(lType->isBlockPointerType() && isRelational)) {
Chris Lattner4e479f92009-03-08 19:39:53 +00003832 // For non-floating point types, check for self-comparisons of the form
3833 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
3834 // often indicate logic errors in the program.
Ted Kremenek264b5cb2009-03-20 19:57:37 +00003835 // NOTE: Don't warn about comparisons of enum constants. These can arise
3836 // from macro expansions, and are usually quite deliberate.
Chris Lattner4e479f92009-03-08 19:39:53 +00003837 Expr *LHSStripped = lex->IgnoreParens();
3838 Expr *RHSStripped = rex->IgnoreParens();
3839 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped))
3840 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped))
Ted Kremenekf042dc62009-03-20 18:35:45 +00003841 if (DRL->getDecl() == DRR->getDecl() &&
3842 !isa<EnumConstantDecl>(DRL->getDecl()))
Mike Stump9afab102009-02-19 03:04:26 +00003843 Diag(Loc, diag::warn_selfcomparison);
Chris Lattner4e479f92009-03-08 19:39:53 +00003844
3845 if (isa<CastExpr>(LHSStripped))
3846 LHSStripped = LHSStripped->IgnoreParenCasts();
3847 if (isa<CastExpr>(RHSStripped))
3848 RHSStripped = RHSStripped->IgnoreParenCasts();
3849
3850 // Warn about comparisons against a string constant (unless the other
3851 // operand is null), the user probably wants strcmp.
Douglas Gregor1f12c352009-04-06 18:45:53 +00003852 Expr *literalString = 0;
3853 Expr *literalStringStripped = 0;
Chris Lattner4e479f92009-03-08 19:39:53 +00003854 if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) &&
Douglas Gregor1f12c352009-04-06 18:45:53 +00003855 !RHSStripped->isNullPointerConstant(Context)) {
3856 literalString = lex;
3857 literalStringStripped = LHSStripped;
3858 }
Chris Lattner4e479f92009-03-08 19:39:53 +00003859 else if ((isa<StringLiteral>(RHSStripped) ||
3860 isa<ObjCEncodeExpr>(RHSStripped)) &&
Douglas Gregor1f12c352009-04-06 18:45:53 +00003861 !LHSStripped->isNullPointerConstant(Context)) {
3862 literalString = rex;
3863 literalStringStripped = RHSStripped;
3864 }
3865
3866 if (literalString) {
3867 std::string resultComparison;
3868 switch (Opc) {
3869 case BinaryOperator::LT: resultComparison = ") < 0"; break;
3870 case BinaryOperator::GT: resultComparison = ") > 0"; break;
3871 case BinaryOperator::LE: resultComparison = ") <= 0"; break;
3872 case BinaryOperator::GE: resultComparison = ") >= 0"; break;
3873 case BinaryOperator::EQ: resultComparison = ") == 0"; break;
3874 case BinaryOperator::NE: resultComparison = ") != 0"; break;
3875 default: assert(false && "Invalid comparison operator");
3876 }
3877 Diag(Loc, diag::warn_stringcompare)
3878 << isa<ObjCEncodeExpr>(literalStringStripped)
3879 << literalString->getSourceRange()
Douglas Gregor3faaa812009-04-01 23:51:29 +00003880 << CodeModificationHint::CreateReplacement(SourceRange(Loc), ", ")
3881 << CodeModificationHint::CreateInsertion(lex->getLocStart(),
3882 "strcmp(")
3883 << CodeModificationHint::CreateInsertion(
3884 PP.getLocForEndOfToken(rex->getLocEnd()),
Douglas Gregor1f12c352009-04-06 18:45:53 +00003885 resultComparison);
3886 }
Ted Kremenekcf8b77d2007-10-29 16:58:49 +00003887 }
Mike Stump9afab102009-02-19 03:04:26 +00003888
Douglas Gregor849ea9c2008-11-19 03:25:36 +00003889 // The result of comparisons is 'bool' in C++, 'int' in C.
Chris Lattner4e479f92009-03-08 19:39:53 +00003890 QualType ResultTy = getLangOptions().CPlusPlus? Context.BoolTy :Context.IntTy;
Douglas Gregor849ea9c2008-11-19 03:25:36 +00003891
Chris Lattner254f3bc2007-08-26 01:18:55 +00003892 if (isRelational) {
3893 if (lType->isRealType() && rType->isRealType())
Douglas Gregor849ea9c2008-11-19 03:25:36 +00003894 return ResultTy;
Chris Lattner254f3bc2007-08-26 01:18:55 +00003895 } else {
Ted Kremenek486509e2007-10-29 17:13:39 +00003896 // Check for comparisons of floating point operands using != and ==.
Ted Kremenek486509e2007-10-29 17:13:39 +00003897 if (lType->isFloatingType()) {
Chris Lattner4e479f92009-03-08 19:39:53 +00003898 assert(rType->isFloatingType());
Chris Lattner1eafdea2008-11-18 01:30:42 +00003899 CheckFloatComparison(Loc,lex,rex);
Ted Kremenek75439142007-10-29 16:40:01 +00003900 }
Mike Stump9afab102009-02-19 03:04:26 +00003901
Chris Lattner254f3bc2007-08-26 01:18:55 +00003902 if (lType->isArithmeticType() && rType->isArithmeticType())
Douglas Gregor849ea9c2008-11-19 03:25:36 +00003903 return ResultTy;
Chris Lattner254f3bc2007-08-26 01:18:55 +00003904 }
Mike Stump9afab102009-02-19 03:04:26 +00003905
Chris Lattner22be8422007-08-26 01:10:14 +00003906 bool LHSIsNull = lex->isNullPointerConstant(Context);
3907 bool RHSIsNull = rex->isNullPointerConstant(Context);
Mike Stump9afab102009-02-19 03:04:26 +00003908
Chris Lattner254f3bc2007-08-26 01:18:55 +00003909 // All of the following pointer related warnings are GCC extensions, except
3910 // when handling null pointer constants. One day, we can consider making them
3911 // errors (when -pedantic-errors is enabled).
Steve Naroffc33c0602007-08-27 04:08:11 +00003912 if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2
Chris Lattner56a5cd62008-04-03 05:07:25 +00003913 QualType LCanPointeeTy =
Chris Lattnerd5a56aa2008-07-26 22:17:49 +00003914 Context.getCanonicalType(lType->getAsPointerType()->getPointeeType());
Chris Lattner56a5cd62008-04-03 05:07:25 +00003915 QualType RCanPointeeTy =
Chris Lattnerd5a56aa2008-07-26 22:17:49 +00003916 Context.getCanonicalType(rType->getAsPointerType()->getPointeeType());
Mike Stump9afab102009-02-19 03:04:26 +00003917
Douglas Gregor30eed0f2009-05-04 06:07:12 +00003918 // Simple check: if the pointee types are identical, we're done.
3919 if (LCanPointeeTy == RCanPointeeTy)
3920 return ResultTy;
3921
3922 if (getLangOptions().CPlusPlus) {
3923 // C++ [expr.rel]p2:
3924 // [...] Pointer conversions (4.10) and qualification
3925 // conversions (4.4) are performed on pointer operands (or on
3926 // a pointer operand and a null pointer constant) to bring
3927 // them to their composite pointer type. [...]
3928 //
3929 // C++ [expr.eq]p2 uses the same notion for (in)equality
3930 // comparisons of pointers.
Douglas Gregorcf651d22009-05-05 04:50:50 +00003931 QualType T = FindCompositePointerType(lex, rex);
Douglas Gregor30eed0f2009-05-04 06:07:12 +00003932 if (T.isNull()) {
3933 Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers)
3934 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
3935 return QualType();
3936 }
3937
3938 ImpCastExprToType(lex, T);
3939 ImpCastExprToType(rex, T);
3940 return ResultTy;
3941 }
3942
Steve Naroff3b435622007-11-13 14:57:38 +00003943 if (!LHSIsNull && !RHSIsNull && // C99 6.5.9p2
Chris Lattner56a5cd62008-04-03 05:07:25 +00003944 !LCanPointeeTy->isVoidType() && !RCanPointeeTy->isVoidType() &&
3945 !Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(),
Eli Friedman0d9549b2008-08-22 00:56:42 +00003946 RCanPointeeTy.getUnqualifiedType()) &&
Steve Naroff17c03822009-02-12 17:52:19 +00003947 !Context.areComparableObjCPointerTypes(lType, rType)) {
Chris Lattner70b93d82008-11-18 22:52:51 +00003948 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
Chris Lattner4bfd2232008-11-24 06:25:27 +00003949 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner4b009652007-07-25 00:24:17 +00003950 }
Chris Lattnere992d6c2008-01-16 19:17:22 +00003951 ImpCastExprToType(rex, lType); // promote the pointer to pointer
Douglas Gregor849ea9c2008-11-19 03:25:36 +00003952 return ResultTy;
Steve Naroff4462cb02007-08-16 21:48:38 +00003953 }
Sebastian Redl5d0ead72009-05-10 18:38:11 +00003954 // C++ allows comparison of pointers with null pointer constants.
3955 if (getLangOptions().CPlusPlus) {
3956 if (lType->isPointerType() && RHSIsNull) {
3957 ImpCastExprToType(rex, lType);
3958 return ResultTy;
3959 }
3960 if (rType->isPointerType() && LHSIsNull) {
3961 ImpCastExprToType(lex, rType);
3962 return ResultTy;
3963 }
3964 // And comparison of nullptr_t with itself.
3965 if (lType->isNullPtrType() && rType->isNullPtrType())
3966 return ResultTy;
3967 }
Steve Naroff3454b6c2008-09-04 15:10:53 +00003968 // Handle block pointer types.
Mike Stumpe97a8542009-05-07 03:14:14 +00003969 if (!isRelational && lType->isBlockPointerType() && rType->isBlockPointerType()) {
Steve Naroff3454b6c2008-09-04 15:10:53 +00003970 QualType lpointee = lType->getAsBlockPointerType()->getPointeeType();
3971 QualType rpointee = rType->getAsBlockPointerType()->getPointeeType();
Mike Stump9afab102009-02-19 03:04:26 +00003972
Steve Naroff3454b6c2008-09-04 15:10:53 +00003973 if (!LHSIsNull && !RHSIsNull &&
3974 !Context.typesAreBlockCompatible(lpointee, rpointee)) {
Chris Lattner70b93d82008-11-18 22:52:51 +00003975 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
Chris Lattner4bfd2232008-11-24 06:25:27 +00003976 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff3454b6c2008-09-04 15:10:53 +00003977 }
3978 ImpCastExprToType(rex, lType); // promote the pointer to pointer
Douglas Gregor849ea9c2008-11-19 03:25:36 +00003979 return ResultTy;
Steve Naroff3454b6c2008-09-04 15:10:53 +00003980 }
Steve Narofff85d66c2008-09-28 01:11:11 +00003981 // Allow block pointers to be compared with null pointer constants.
Mike Stumpe97a8542009-05-07 03:14:14 +00003982 if (!isRelational
3983 && ((lType->isBlockPointerType() && rType->isPointerType())
3984 || (lType->isPointerType() && rType->isBlockPointerType()))) {
Steve Narofff85d66c2008-09-28 01:11:11 +00003985 if (!LHSIsNull && !RHSIsNull) {
Mike Stumpe97a8542009-05-07 03:14:14 +00003986 if (!((rType->isPointerType() && rType->getAsPointerType()
3987 ->getPointeeType()->isVoidType())
3988 || (lType->isPointerType() && lType->getAsPointerType()
3989 ->getPointeeType()->isVoidType())))
3990 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
3991 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Narofff85d66c2008-09-28 01:11:11 +00003992 }
3993 ImpCastExprToType(rex, lType); // promote the pointer to pointer
Douglas Gregor849ea9c2008-11-19 03:25:36 +00003994 return ResultTy;
Steve Narofff85d66c2008-09-28 01:11:11 +00003995 }
Steve Naroff3454b6c2008-09-04 15:10:53 +00003996
Steve Naroff936c4362008-06-03 14:04:54 +00003997 if ((lType->isObjCQualifiedIdType() || rType->isObjCQualifiedIdType())) {
Steve Naroff3d081ae2008-10-27 10:33:19 +00003998 if (lType->isPointerType() || rType->isPointerType()) {
Steve Naroff030fcda2008-11-17 19:49:16 +00003999 const PointerType *LPT = lType->getAsPointerType();
4000 const PointerType *RPT = rType->getAsPointerType();
Mike Stump9afab102009-02-19 03:04:26 +00004001 bool LPtrToVoid = LPT ?
Steve Naroff030fcda2008-11-17 19:49:16 +00004002 Context.getCanonicalType(LPT->getPointeeType())->isVoidType() : false;
Mike Stump9afab102009-02-19 03:04:26 +00004003 bool RPtrToVoid = RPT ?
Steve Naroff030fcda2008-11-17 19:49:16 +00004004 Context.getCanonicalType(RPT->getPointeeType())->isVoidType() : false;
Mike Stump9afab102009-02-19 03:04:26 +00004005
Steve Naroff030fcda2008-11-17 19:49:16 +00004006 if (!LPtrToVoid && !RPtrToVoid &&
4007 !Context.typesAreCompatible(lType, rType)) {
Chris Lattner70b93d82008-11-18 22:52:51 +00004008 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
Chris Lattner4bfd2232008-11-24 06:25:27 +00004009 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff3d081ae2008-10-27 10:33:19 +00004010 ImpCastExprToType(rex, lType);
Douglas Gregor849ea9c2008-11-19 03:25:36 +00004011 return ResultTy;
Steve Naroff3d081ae2008-10-27 10:33:19 +00004012 }
Daniel Dunbar11c5f822008-10-23 23:30:52 +00004013 ImpCastExprToType(rex, lType);
Douglas Gregor849ea9c2008-11-19 03:25:36 +00004014 return ResultTy;
Steve Naroff3b2ceea2008-10-20 18:19:10 +00004015 }
Steve Naroff936c4362008-06-03 14:04:54 +00004016 if (ObjCQualifiedIdTypesAreCompatible(lType, rType, true)) {
4017 ImpCastExprToType(rex, lType);
Douglas Gregor849ea9c2008-11-19 03:25:36 +00004018 return ResultTy;
Steve Naroff19608432008-10-14 22:18:38 +00004019 } else {
4020 if ((lType->isObjCQualifiedIdType() && rType->isObjCQualifiedIdType())) {
Chris Lattner70b93d82008-11-18 22:52:51 +00004021 Diag(Loc, diag::warn_incompatible_qualified_id_operands)
Chris Lattner271d4c22008-11-24 05:29:24 +00004022 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Daniel Dunbar11c5f822008-10-23 23:30:52 +00004023 ImpCastExprToType(rex, lType);
Douglas Gregor849ea9c2008-11-19 03:25:36 +00004024 return ResultTy;
Steve Naroff19608432008-10-14 22:18:38 +00004025 }
Steve Naroff936c4362008-06-03 14:04:54 +00004026 }
Fariborz Jahanian5319d9c2007-12-20 01:06:58 +00004027 }
Mike Stump9afab102009-02-19 03:04:26 +00004028 if ((lType->isPointerType() || lType->isObjCQualifiedIdType()) &&
Steve Naroff936c4362008-06-03 14:04:54 +00004029 rType->isIntegerType()) {
Chris Lattner22be8422007-08-26 01:10:14 +00004030 if (!RHSIsNull)
Chris Lattner70b93d82008-11-18 22:52:51 +00004031 Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer)
Chris Lattner4bfd2232008-11-24 06:25:27 +00004032 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Chris Lattnere992d6c2008-01-16 19:17:22 +00004033 ImpCastExprToType(rex, lType); // promote the integer to pointer
Douglas Gregor849ea9c2008-11-19 03:25:36 +00004034 return ResultTy;
Steve Naroff4462cb02007-08-16 21:48:38 +00004035 }
Mike Stump9afab102009-02-19 03:04:26 +00004036 if (lType->isIntegerType() &&
Steve Naroff936c4362008-06-03 14:04:54 +00004037 (rType->isPointerType() || rType->isObjCQualifiedIdType())) {
Chris Lattner22be8422007-08-26 01:10:14 +00004038 if (!LHSIsNull)
Chris Lattner70b93d82008-11-18 22:52:51 +00004039 Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer)
Chris Lattner4bfd2232008-11-24 06:25:27 +00004040 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Chris Lattnere992d6c2008-01-16 19:17:22 +00004041 ImpCastExprToType(lex, rType); // promote the integer to pointer
Douglas Gregor849ea9c2008-11-19 03:25:36 +00004042 return ResultTy;
Chris Lattner4b009652007-07-25 00:24:17 +00004043 }
Steve Naroff4fea7b62008-09-04 16:56:14 +00004044 // Handle block pointers.
Mike Stumpea3d74e2009-05-07 18:43:07 +00004045 if (!isRelational && RHSIsNull
4046 && lType->isBlockPointerType() && rType->isIntegerType()) {
Steve Naroff4fea7b62008-09-04 16:56:14 +00004047 ImpCastExprToType(rex, lType); // promote the integer to pointer
Douglas Gregor849ea9c2008-11-19 03:25:36 +00004048 return ResultTy;
Steve Naroff4fea7b62008-09-04 16:56:14 +00004049 }
Mike Stumpea3d74e2009-05-07 18:43:07 +00004050 if (!isRelational && LHSIsNull
4051 && lType->isIntegerType() && rType->isBlockPointerType()) {
Steve Naroff4fea7b62008-09-04 16:56:14 +00004052 ImpCastExprToType(lex, rType); // promote the integer to pointer
Douglas Gregor849ea9c2008-11-19 03:25:36 +00004053 return ResultTy;
Steve Naroff4fea7b62008-09-04 16:56:14 +00004054 }
Chris Lattner1eafdea2008-11-18 01:30:42 +00004055 return InvalidOperands(Loc, lex, rex);
Chris Lattner4b009652007-07-25 00:24:17 +00004056}
4057
Nate Begemanc5f0f652008-07-14 18:02:46 +00004058/// CheckVectorCompareOperands - vector comparisons are a clang extension that
Mike Stump9afab102009-02-19 03:04:26 +00004059/// operates on extended vector types. Instead of producing an IntTy result,
Nate Begemanc5f0f652008-07-14 18:02:46 +00004060/// like a scalar comparison, a vector comparison produces a vector of integer
4061/// types.
4062QualType Sema::CheckVectorCompareOperands(Expr *&lex, Expr *&rex,
Chris Lattner1eafdea2008-11-18 01:30:42 +00004063 SourceLocation Loc,
Nate Begemanc5f0f652008-07-14 18:02:46 +00004064 bool isRelational) {
4065 // Check to make sure we're operating on vectors of the same type and width,
4066 // Allowing one side to be a scalar of element type.
Chris Lattner1eafdea2008-11-18 01:30:42 +00004067 QualType vType = CheckVectorOperands(Loc, lex, rex);
Nate Begemanc5f0f652008-07-14 18:02:46 +00004068 if (vType.isNull())
4069 return vType;
Mike Stump9afab102009-02-19 03:04:26 +00004070
Nate Begemanc5f0f652008-07-14 18:02:46 +00004071 QualType lType = lex->getType();
4072 QualType rType = rex->getType();
Mike Stump9afab102009-02-19 03:04:26 +00004073
Nate Begemanc5f0f652008-07-14 18:02:46 +00004074 // For non-floating point types, check for self-comparisons of the form
4075 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
4076 // often indicate logic errors in the program.
4077 if (!lType->isFloatingType()) {
4078 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex->IgnoreParens()))
4079 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex->IgnoreParens()))
4080 if (DRL->getDecl() == DRR->getDecl())
Mike Stump9afab102009-02-19 03:04:26 +00004081 Diag(Loc, diag::warn_selfcomparison);
Nate Begemanc5f0f652008-07-14 18:02:46 +00004082 }
Mike Stump9afab102009-02-19 03:04:26 +00004083
Nate Begemanc5f0f652008-07-14 18:02:46 +00004084 // Check for comparisons of floating point operands using != and ==.
4085 if (!isRelational && lType->isFloatingType()) {
4086 assert (rType->isFloatingType());
Chris Lattner1eafdea2008-11-18 01:30:42 +00004087 CheckFloatComparison(Loc,lex,rex);
Nate Begemanc5f0f652008-07-14 18:02:46 +00004088 }
Mike Stump9afab102009-02-19 03:04:26 +00004089
Chris Lattner10687e32009-03-31 07:46:52 +00004090 // FIXME: Vector compare support in the LLVM backend is not fully reliable,
4091 // just reject all vector comparisons for now.
4092 if (1) {
4093 Diag(Loc, diag::err_typecheck_vector_comparison)
4094 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4095 return QualType();
4096 }
4097
Nate Begemanc5f0f652008-07-14 18:02:46 +00004098 // Return the type for the comparison, which is the same as vector type for
4099 // integer vectors, or an integer type of identical size and number of
4100 // elements for floating point vectors.
4101 if (lType->isIntegerType())
4102 return lType;
Mike Stump9afab102009-02-19 03:04:26 +00004103
Nate Begemanc5f0f652008-07-14 18:02:46 +00004104 const VectorType *VTy = lType->getAsVectorType();
Nate Begemanc5f0f652008-07-14 18:02:46 +00004105 unsigned TypeSize = Context.getTypeSize(VTy->getElementType());
Nate Begemand6d2f772009-01-18 03:20:47 +00004106 if (TypeSize == Context.getTypeSize(Context.IntTy))
Nate Begemanc5f0f652008-07-14 18:02:46 +00004107 return Context.getExtVectorType(Context.IntTy, VTy->getNumElements());
Chris Lattner10687e32009-03-31 07:46:52 +00004108 if (TypeSize == Context.getTypeSize(Context.LongTy))
Nate Begemand6d2f772009-01-18 03:20:47 +00004109 return Context.getExtVectorType(Context.LongTy, VTy->getNumElements());
4110
Mike Stump9afab102009-02-19 03:04:26 +00004111 assert(TypeSize == Context.getTypeSize(Context.LongLongTy) &&
Nate Begemand6d2f772009-01-18 03:20:47 +00004112 "Unhandled vector element size in vector compare");
Nate Begemanc5f0f652008-07-14 18:02:46 +00004113 return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements());
4114}
4115
Chris Lattner4b009652007-07-25 00:24:17 +00004116inline QualType Sema::CheckBitwiseOperands(
Mike Stump9afab102009-02-19 03:04:26 +00004117 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign)
Chris Lattner4b009652007-07-25 00:24:17 +00004118{
4119 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner1eafdea2008-11-18 01:30:42 +00004120 return CheckVectorOperands(Loc, lex, rex);
Chris Lattner4b009652007-07-25 00:24:17 +00004121
Steve Naroff8f708362007-08-24 19:07:16 +00004122 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stump9afab102009-02-19 03:04:26 +00004123
Chris Lattner4b009652007-07-25 00:24:17 +00004124 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff8f708362007-08-24 19:07:16 +00004125 return compType;
Chris Lattner1eafdea2008-11-18 01:30:42 +00004126 return InvalidOperands(Loc, lex, rex);
Chris Lattner4b009652007-07-25 00:24:17 +00004127}
4128
4129inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14]
Mike Stump9afab102009-02-19 03:04:26 +00004130 Expr *&lex, Expr *&rex, SourceLocation Loc)
Chris Lattner4b009652007-07-25 00:24:17 +00004131{
4132 UsualUnaryConversions(lex);
4133 UsualUnaryConversions(rex);
Mike Stump9afab102009-02-19 03:04:26 +00004134
Eli Friedmanbea3f842008-05-13 20:16:47 +00004135 if (lex->getType()->isScalarType() && rex->getType()->isScalarType())
Chris Lattner4b009652007-07-25 00:24:17 +00004136 return Context.IntTy;
Chris Lattner1eafdea2008-11-18 01:30:42 +00004137 return InvalidOperands(Loc, lex, rex);
Chris Lattner4b009652007-07-25 00:24:17 +00004138}
4139
Fariborz Jahanianf96ee9e2009-01-12 19:55:42 +00004140/// IsReadonlyProperty - Verify that otherwise a valid l-value expression
4141/// is a read-only property; return true if so. A readonly property expression
4142/// depends on various declarations and thus must be treated specially.
4143///
Mike Stump9afab102009-02-19 03:04:26 +00004144static bool IsReadonlyProperty(Expr *E, Sema &S)
Fariborz Jahanianf96ee9e2009-01-12 19:55:42 +00004145{
4146 if (E->getStmtClass() == Expr::ObjCPropertyRefExprClass) {
4147 const ObjCPropertyRefExpr* PropExpr = cast<ObjCPropertyRefExpr>(E);
4148 if (ObjCPropertyDecl *PDecl = PropExpr->getProperty()) {
4149 QualType BaseType = PropExpr->getBase()->getType();
4150 if (const PointerType *PTy = BaseType->getAsPointerType())
Mike Stump9afab102009-02-19 03:04:26 +00004151 if (const ObjCInterfaceType *IFTy =
Fariborz Jahanianf96ee9e2009-01-12 19:55:42 +00004152 PTy->getPointeeType()->getAsObjCInterfaceType())
4153 if (ObjCInterfaceDecl *IFace = IFTy->getDecl())
4154 if (S.isPropertyReadonly(PDecl, IFace))
4155 return true;
4156 }
4157 }
4158 return false;
4159}
4160
Chris Lattner4c2642c2008-11-18 01:22:49 +00004161/// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not,
4162/// emit an error and return true. If so, return false.
4163static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) {
Daniel Dunbarf7fa9dc2009-04-15 00:08:05 +00004164 SourceLocation OrigLoc = Loc;
4165 Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context,
4166 &Loc);
Fariborz Jahanianf96ee9e2009-01-12 19:55:42 +00004167 if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S))
4168 IsLV = Expr::MLV_ReadonlyProperty;
Chris Lattner4c2642c2008-11-18 01:22:49 +00004169 if (IsLV == Expr::MLV_Valid)
4170 return false;
Mike Stump9afab102009-02-19 03:04:26 +00004171
Chris Lattner4c2642c2008-11-18 01:22:49 +00004172 unsigned Diag = 0;
4173 bool NeedType = false;
4174 switch (IsLV) { // C99 6.5.16p2
4175 default: assert(0 && "Unknown result from isModifiableLvalue!");
4176 case Expr::MLV_ConstQualified: Diag = diag::err_typecheck_assign_const; break;
Mike Stump9afab102009-02-19 03:04:26 +00004177 case Expr::MLV_ArrayType:
Chris Lattner4c2642c2008-11-18 01:22:49 +00004178 Diag = diag::err_typecheck_array_not_modifiable_lvalue;
4179 NeedType = true;
4180 break;
Mike Stump9afab102009-02-19 03:04:26 +00004181 case Expr::MLV_NotObjectType:
Chris Lattner4c2642c2008-11-18 01:22:49 +00004182 Diag = diag::err_typecheck_non_object_not_modifiable_lvalue;
4183 NeedType = true;
4184 break;
Chris Lattner37fb9402008-11-17 19:51:54 +00004185 case Expr::MLV_LValueCast:
Chris Lattner4c2642c2008-11-18 01:22:49 +00004186 Diag = diag::err_typecheck_lvalue_casts_not_supported;
4187 break;
Chris Lattner005ed752008-01-04 18:04:52 +00004188 case Expr::MLV_InvalidExpression:
Chris Lattner4c2642c2008-11-18 01:22:49 +00004189 Diag = diag::err_typecheck_expression_not_modifiable_lvalue;
4190 break;
Chris Lattner005ed752008-01-04 18:04:52 +00004191 case Expr::MLV_IncompleteType:
4192 case Expr::MLV_IncompleteVoidType:
Douglas Gregorc84d8932009-03-09 16:13:40 +00004193 return S.RequireCompleteType(Loc, E->getType(),
Douglas Gregor46fe06e2009-01-19 19:26:10 +00004194 diag::err_typecheck_incomplete_type_not_modifiable_lvalue,
4195 E->getSourceRange());
Chris Lattner005ed752008-01-04 18:04:52 +00004196 case Expr::MLV_DuplicateVectorComponents:
Chris Lattner4c2642c2008-11-18 01:22:49 +00004197 Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue;
4198 break;
Steve Naroff076d6cb2008-09-26 14:41:28 +00004199 case Expr::MLV_NotBlockQualified:
Chris Lattner4c2642c2008-11-18 01:22:49 +00004200 Diag = diag::err_block_decl_ref_not_modifiable_lvalue;
4201 break;
Fariborz Jahanianf18d4c82008-11-22 18:39:36 +00004202 case Expr::MLV_ReadonlyProperty:
4203 Diag = diag::error_readonly_property_assignment;
4204 break;
Fariborz Jahanianc05da422008-11-22 20:25:50 +00004205 case Expr::MLV_NoSetterProperty:
4206 Diag = diag::error_nosetter_property_assignment;
4207 break;
Chris Lattner4b009652007-07-25 00:24:17 +00004208 }
Steve Naroff7cbb1462007-07-31 12:34:36 +00004209
Daniel Dunbarf7fa9dc2009-04-15 00:08:05 +00004210 SourceRange Assign;
4211 if (Loc != OrigLoc)
4212 Assign = SourceRange(OrigLoc, OrigLoc);
Chris Lattner4c2642c2008-11-18 01:22:49 +00004213 if (NeedType)
Daniel Dunbarf7fa9dc2009-04-15 00:08:05 +00004214 S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign;
Chris Lattner4c2642c2008-11-18 01:22:49 +00004215 else
Daniel Dunbarf7fa9dc2009-04-15 00:08:05 +00004216 S.Diag(Loc, Diag) << E->getSourceRange() << Assign;
Chris Lattner4c2642c2008-11-18 01:22:49 +00004217 return true;
4218}
4219
4220
4221
4222// C99 6.5.16.1
Chris Lattner1eafdea2008-11-18 01:30:42 +00004223QualType Sema::CheckAssignmentOperands(Expr *LHS, Expr *&RHS,
4224 SourceLocation Loc,
4225 QualType CompoundType) {
4226 // Verify that LHS is a modifiable lvalue, and emit error if not.
4227 if (CheckForModifiableLvalue(LHS, Loc, *this))
Chris Lattner4c2642c2008-11-18 01:22:49 +00004228 return QualType();
Chris Lattner1eafdea2008-11-18 01:30:42 +00004229
4230 QualType LHSType = LHS->getType();
4231 QualType RHSType = CompoundType.isNull() ? RHS->getType() : CompoundType;
Mike Stump9afab102009-02-19 03:04:26 +00004232
Chris Lattner005ed752008-01-04 18:04:52 +00004233 AssignConvertType ConvTy;
Chris Lattner1eafdea2008-11-18 01:30:42 +00004234 if (CompoundType.isNull()) {
Chris Lattner34c85082008-08-21 18:04:13 +00004235 // Simple assignment "x = y".
Chris Lattner1eafdea2008-11-18 01:30:42 +00004236 ConvTy = CheckSingleAssignmentConstraints(LHSType, RHS);
Fariborz Jahanian82f54962009-01-13 23:34:40 +00004237 // Special case of NSObject attributes on c-style pointer types.
4238 if (ConvTy == IncompatiblePointer &&
4239 ((Context.isObjCNSObjectType(LHSType) &&
4240 Context.isObjCObjectPointerType(RHSType)) ||
4241 (Context.isObjCNSObjectType(RHSType) &&
4242 Context.isObjCObjectPointerType(LHSType))))
4243 ConvTy = Compatible;
Mike Stump9afab102009-02-19 03:04:26 +00004244
Chris Lattner34c85082008-08-21 18:04:13 +00004245 // If the RHS is a unary plus or minus, check to see if they = and + are
4246 // right next to each other. If so, the user may have typo'd "x =+ 4"
4247 // instead of "x += 4".
Chris Lattner1eafdea2008-11-18 01:30:42 +00004248 Expr *RHSCheck = RHS;
Chris Lattner34c85082008-08-21 18:04:13 +00004249 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck))
4250 RHSCheck = ICE->getSubExpr();
4251 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) {
4252 if ((UO->getOpcode() == UnaryOperator::Plus ||
4253 UO->getOpcode() == UnaryOperator::Minus) &&
Chris Lattner1eafdea2008-11-18 01:30:42 +00004254 Loc.isFileID() && UO->getOperatorLoc().isFileID() &&
Chris Lattner34c85082008-08-21 18:04:13 +00004255 // Only if the two operators are exactly adjacent.
Chris Lattner55a17242009-03-08 06:51:10 +00004256 Loc.getFileLocWithOffset(1) == UO->getOperatorLoc() &&
4257 // And there is a space or other character before the subexpr of the
4258 // unary +/-. We don't want to warn on "x=-1".
Chris Lattnerf1e5d4a2009-03-09 07:11:10 +00004259 Loc.getFileLocWithOffset(2) != UO->getSubExpr()->getLocStart() &&
4260 UO->getSubExpr()->getLocStart().isFileID()) {
Chris Lattner77d52da2008-11-20 06:06:08 +00004261 Diag(Loc, diag::warn_not_compound_assign)
4262 << (UO->getOpcode() == UnaryOperator::Plus ? "+" : "-")
4263 << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc());
Chris Lattner55a17242009-03-08 06:51:10 +00004264 }
Chris Lattner34c85082008-08-21 18:04:13 +00004265 }
4266 } else {
4267 // Compound assignment "x += y"
Eli Friedmanb653af42009-05-16 05:56:02 +00004268 ConvTy = CheckAssignmentConstraints(LHSType, RHSType);
Chris Lattner34c85082008-08-21 18:04:13 +00004269 }
Chris Lattner005ed752008-01-04 18:04:52 +00004270
Chris Lattner1eafdea2008-11-18 01:30:42 +00004271 if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType,
4272 RHS, "assigning"))
Chris Lattner005ed752008-01-04 18:04:52 +00004273 return QualType();
Mike Stump9afab102009-02-19 03:04:26 +00004274
Chris Lattner4b009652007-07-25 00:24:17 +00004275 // C99 6.5.16p3: The type of an assignment expression is the type of the
4276 // left operand unless the left operand has qualified type, in which case
Mike Stump9afab102009-02-19 03:04:26 +00004277 // it is the unqualified version of the type of the left operand.
Chris Lattner4b009652007-07-25 00:24:17 +00004278 // C99 6.5.16.1p2: In simple assignment, the value of the right operand
4279 // is converted to the type of the assignment expression (above).
Chris Lattner0d9bcea2007-08-30 17:45:32 +00004280 // C++ 5.17p1: the type of the assignment expression is that of its left
Douglas Gregor6fcf2ca2009-05-02 00:36:19 +00004281 // operand.
Chris Lattner1eafdea2008-11-18 01:30:42 +00004282 return LHSType.getUnqualifiedType();
Chris Lattner4b009652007-07-25 00:24:17 +00004283}
4284
Chris Lattner1eafdea2008-11-18 01:30:42 +00004285// C99 6.5.17
4286QualType Sema::CheckCommaOperands(Expr *LHS, Expr *&RHS, SourceLocation Loc) {
Chris Lattner03c430f2008-07-25 20:54:07 +00004287 // Comma performs lvalue conversion (C99 6.3.2.1), but not unary conversions.
Chris Lattner1eafdea2008-11-18 01:30:42 +00004288 DefaultFunctionArrayConversion(RHS);
Eli Friedman2b128322009-03-23 00:24:07 +00004289
4290 // FIXME: Check that RHS type is complete in C mode (it's legal for it to be
4291 // incomplete in C++).
4292
Chris Lattner1eafdea2008-11-18 01:30:42 +00004293 return RHS->getType();
Chris Lattner4b009652007-07-25 00:24:17 +00004294}
4295
4296/// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine
4297/// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions.
Sebastian Redl0440c8c2008-12-20 09:35:34 +00004298QualType Sema::CheckIncrementDecrementOperand(Expr *Op, SourceLocation OpLoc,
4299 bool isInc) {
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00004300 if (Op->isTypeDependent())
4301 return Context.DependentTy;
4302
Chris Lattnere65182c2008-11-21 07:05:48 +00004303 QualType ResType = Op->getType();
4304 assert(!ResType.isNull() && "no type for increment/decrement expression");
Chris Lattner4b009652007-07-25 00:24:17 +00004305
Sebastian Redl0440c8c2008-12-20 09:35:34 +00004306 if (getLangOptions().CPlusPlus && ResType->isBooleanType()) {
4307 // Decrement of bool is not allowed.
4308 if (!isInc) {
4309 Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange();
4310 return QualType();
4311 }
4312 // Increment of bool sets it to true, but is deprecated.
4313 Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange();
4314 } else if (ResType->isRealType()) {
Chris Lattnere65182c2008-11-21 07:05:48 +00004315 // OK!
4316 } else if (const PointerType *PT = ResType->getAsPointerType()) {
4317 // C99 6.5.2.4p2, 6.5.6p2
Douglas Gregorcde3a2d2009-03-24 20:13:58 +00004318 if (PT->getPointeeType()->isVoidType()) {
Douglas Gregorb3193242009-01-23 00:36:41 +00004319 if (getLangOptions().CPlusPlus) {
4320 Diag(OpLoc, diag::err_typecheck_pointer_arith_void_type)
4321 << Op->getSourceRange();
4322 return QualType();
4323 }
4324
4325 // Pointer to void is a GNU extension in C.
Chris Lattnere65182c2008-11-21 07:05:48 +00004326 Diag(OpLoc, diag::ext_gnu_void_ptr) << Op->getSourceRange();
Douglas Gregor46fe06e2009-01-19 19:26:10 +00004327 } else if (PT->getPointeeType()->isFunctionType()) {
Douglas Gregorb3193242009-01-23 00:36:41 +00004328 if (getLangOptions().CPlusPlus) {
4329 Diag(OpLoc, diag::err_typecheck_pointer_arith_function_type)
4330 << Op->getType() << Op->getSourceRange();
4331 return QualType();
4332 }
4333
4334 Diag(OpLoc, diag::ext_gnu_ptr_func_arith)
Chris Lattner4bfd2232008-11-24 06:25:27 +00004335 << ResType << Op->getSourceRange();
Douglas Gregorcde3a2d2009-03-24 20:13:58 +00004336 } else if (RequireCompleteType(OpLoc, PT->getPointeeType(),
4337 diag::err_typecheck_arithmetic_incomplete_type,
4338 Op->getSourceRange(), SourceRange(),
4339 ResType))
Douglas Gregor46fe06e2009-01-19 19:26:10 +00004340 return QualType();
Chris Lattnere65182c2008-11-21 07:05:48 +00004341 } else if (ResType->isComplexType()) {
4342 // C99 does not support ++/-- on complex types, we allow as an extension.
4343 Diag(OpLoc, diag::ext_integer_increment_complex)
Chris Lattner4bfd2232008-11-24 06:25:27 +00004344 << ResType << Op->getSourceRange();
Chris Lattnere65182c2008-11-21 07:05:48 +00004345 } else {
4346 Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement)
Chris Lattner4bfd2232008-11-24 06:25:27 +00004347 << ResType << Op->getSourceRange();
Chris Lattnere65182c2008-11-21 07:05:48 +00004348 return QualType();
Chris Lattner4b009652007-07-25 00:24:17 +00004349 }
Mike Stump9afab102009-02-19 03:04:26 +00004350 // At this point, we know we have a real, complex or pointer type.
Steve Naroff6acc0f42007-08-23 21:37:33 +00004351 // Now make sure the operand is a modifiable lvalue.
Chris Lattnere65182c2008-11-21 07:05:48 +00004352 if (CheckForModifiableLvalue(Op, OpLoc, *this))
Chris Lattner4b009652007-07-25 00:24:17 +00004353 return QualType();
Chris Lattnere65182c2008-11-21 07:05:48 +00004354 return ResType;
Chris Lattner4b009652007-07-25 00:24:17 +00004355}
4356
Anders Carlsson4b3db2b2008-02-01 07:15:58 +00004357/// getPrimaryDecl - Helper function for CheckAddressOfOperand().
Chris Lattner4b009652007-07-25 00:24:17 +00004358/// This routine allows us to typecheck complex/recursive expressions
Daniel Dunbarb45f75c2008-08-04 20:02:37 +00004359/// where the declaration is needed for type checking. We only need to
4360/// handle cases when the expression references a function designator
4361/// or is an lvalue. Here are some examples:
4362/// - &(x) => x
4363/// - &*****f => f for f a function designator.
4364/// - &s.xx => s
4365/// - &s.zz[1].yy -> s, if zz is an array
4366/// - *(x + 1) -> x, if x is an array
4367/// - &"123"[2] -> 0
4368/// - & __real__ x -> x
Douglas Gregord2baafd2008-10-21 16:13:35 +00004369static NamedDecl *getPrimaryDecl(Expr *E) {
Chris Lattner48d7f382008-04-02 04:24:33 +00004370 switch (E->getStmtClass()) {
Chris Lattner4b009652007-07-25 00:24:17 +00004371 case Stmt::DeclRefExprClass:
Douglas Gregor566782a2009-01-06 05:10:23 +00004372 case Stmt::QualifiedDeclRefExprClass:
Chris Lattner48d7f382008-04-02 04:24:33 +00004373 return cast<DeclRefExpr>(E)->getDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00004374 case Stmt::MemberExprClass:
Eli Friedman93ecce22009-04-20 08:23:18 +00004375 // If this is an arrow operator, the address is an offset from
4376 // the base's value, so the object the base refers to is
4377 // irrelevant.
Chris Lattner48d7f382008-04-02 04:24:33 +00004378 if (cast<MemberExpr>(E)->isArrow())
Chris Lattnera3249072007-11-16 17:46:48 +00004379 return 0;
Eli Friedman93ecce22009-04-20 08:23:18 +00004380 // Otherwise, the expression refers to a part of the base
Chris Lattner48d7f382008-04-02 04:24:33 +00004381 return getPrimaryDecl(cast<MemberExpr>(E)->getBase());
Anders Carlsson4b3db2b2008-02-01 07:15:58 +00004382 case Stmt::ArraySubscriptExprClass: {
Mike Stumpe127ae32009-05-16 07:39:55 +00004383 // FIXME: This code shouldn't be necessary! We should catch the implicit
4384 // promotion of register arrays earlier.
Eli Friedman93ecce22009-04-20 08:23:18 +00004385 Expr* Base = cast<ArraySubscriptExpr>(E)->getBase();
4386 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) {
4387 if (ICE->getSubExpr()->getType()->isArrayType())
4388 return getPrimaryDecl(ICE->getSubExpr());
4389 }
4390 return 0;
Anders Carlsson4b3db2b2008-02-01 07:15:58 +00004391 }
Daniel Dunbarb45f75c2008-08-04 20:02:37 +00004392 case Stmt::UnaryOperatorClass: {
4393 UnaryOperator *UO = cast<UnaryOperator>(E);
Mike Stump9afab102009-02-19 03:04:26 +00004394
Daniel Dunbarb45f75c2008-08-04 20:02:37 +00004395 switch(UO->getOpcode()) {
Daniel Dunbarb45f75c2008-08-04 20:02:37 +00004396 case UnaryOperator::Real:
4397 case UnaryOperator::Imag:
4398 case UnaryOperator::Extension:
4399 return getPrimaryDecl(UO->getSubExpr());
4400 default:
4401 return 0;
4402 }
4403 }
Chris Lattner4b009652007-07-25 00:24:17 +00004404 case Stmt::ParenExprClass:
Chris Lattner48d7f382008-04-02 04:24:33 +00004405 return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnera3249072007-11-16 17:46:48 +00004406 case Stmt::ImplicitCastExprClass:
Eli Friedman93ecce22009-04-20 08:23:18 +00004407 // If the result of an implicit cast is an l-value, we care about
4408 // the sub-expression; otherwise, the result here doesn't matter.
Chris Lattner48d7f382008-04-02 04:24:33 +00004409 return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr());
Chris Lattner4b009652007-07-25 00:24:17 +00004410 default:
4411 return 0;
4412 }
4413}
4414
4415/// CheckAddressOfOperand - The operand of & must be either a function
Mike Stump9afab102009-02-19 03:04:26 +00004416/// designator or an lvalue designating an object. If it is an lvalue, the
Chris Lattner4b009652007-07-25 00:24:17 +00004417/// object cannot be declared with storage class register or be a bit field.
Mike Stump9afab102009-02-19 03:04:26 +00004418/// Note: The usual conversions are *not* applied to the operand of the &
Chris Lattner4b009652007-07-25 00:24:17 +00004419/// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue.
Mike Stump9afab102009-02-19 03:04:26 +00004420/// In C++, the operand might be an overloaded function name, in which case
Douglas Gregor45014fd2008-11-10 20:40:00 +00004421/// we allow the '&' but retain the overloaded-function type.
Chris Lattner4b009652007-07-25 00:24:17 +00004422QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) {
Eli Friedman93ecce22009-04-20 08:23:18 +00004423 // Make sure to ignore parentheses in subsequent checks
4424 op = op->IgnoreParens();
4425
Douglas Gregore6be68a2008-12-17 22:52:20 +00004426 if (op->isTypeDependent())
4427 return Context.DependentTy;
4428
Steve Naroff9c6c3592008-01-13 17:10:08 +00004429 if (getLangOptions().C99) {
4430 // Implement C99-only parts of addressof rules.
4431 if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) {
4432 if (uOp->getOpcode() == UnaryOperator::Deref)
4433 // Per C99 6.5.3.2, the address of a deref always returns a valid result
4434 // (assuming the deref expression is valid).
4435 return uOp->getSubExpr()->getType();
4436 }
4437 // Technically, there should be a check for array subscript
4438 // expressions here, but the result of one is always an lvalue anyway.
4439 }
Douglas Gregord2baafd2008-10-21 16:13:35 +00004440 NamedDecl *dcl = getPrimaryDecl(op);
Chris Lattner25168a52008-07-26 21:30:36 +00004441 Expr::isLvalueResult lval = op->isLvalue(Context);
Nuno Lopes1a68ecf2008-12-16 22:59:47 +00004442
Eli Friedman14ab4c42009-05-16 23:27:50 +00004443 if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) {
4444 // C99 6.5.3.2p1
Eli Friedman93ecce22009-04-20 08:23:18 +00004445 // The operand must be either an l-value or a function designator
Eli Friedman14ab4c42009-05-16 23:27:50 +00004446 if (!op->getType()->isFunctionType()) {
Chris Lattnera3249072007-11-16 17:46:48 +00004447 // FIXME: emit more specific diag...
Chris Lattner9d2cf082008-11-19 05:27:50 +00004448 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof)
4449 << op->getSourceRange();
Chris Lattner4b009652007-07-25 00:24:17 +00004450 return QualType();
4451 }
Douglas Gregor531434b2009-05-02 02:18:30 +00004452 } else if (op->getBitField()) { // C99 6.5.3.2p1
Eli Friedman93ecce22009-04-20 08:23:18 +00004453 // The operand cannot be a bit-field
4454 Diag(OpLoc, diag::err_typecheck_address_of)
4455 << "bit-field" << op->getSourceRange();
Douglas Gregor82d44772008-12-20 23:49:58 +00004456 return QualType();
Nate Begemana9187ab2009-02-15 22:45:20 +00004457 } else if (isa<ExtVectorElementExpr>(op) || (isa<ArraySubscriptExpr>(op) &&
4458 cast<ArraySubscriptExpr>(op)->getBase()->getType()->isVectorType())){
Eli Friedman93ecce22009-04-20 08:23:18 +00004459 // The operand cannot be an element of a vector
Chris Lattner77d52da2008-11-20 06:06:08 +00004460 Diag(OpLoc, diag::err_typecheck_address_of)
Nate Begemana9187ab2009-02-15 22:45:20 +00004461 << "vector element" << op->getSourceRange();
Steve Naroff73cf87e2008-02-29 23:30:25 +00004462 return QualType();
4463 } else if (dcl) { // C99 6.5.3.2p1
Mike Stump9afab102009-02-19 03:04:26 +00004464 // We have an lvalue with a decl. Make sure the decl is not declared
Chris Lattner4b009652007-07-25 00:24:17 +00004465 // with the register storage-class specifier.
4466 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) {
4467 if (vd->getStorageClass() == VarDecl::Register) {
Chris Lattner77d52da2008-11-20 06:06:08 +00004468 Diag(OpLoc, diag::err_typecheck_address_of)
4469 << "register variable" << op->getSourceRange();
Chris Lattner4b009652007-07-25 00:24:17 +00004470 return QualType();
4471 }
Douglas Gregor5b82d612008-12-10 21:26:49 +00004472 } else if (isa<OverloadedFunctionDecl>(dcl)) {
Douglas Gregor45014fd2008-11-10 20:40:00 +00004473 return Context.OverloadTy;
Douglas Gregor5b82d612008-12-10 21:26:49 +00004474 } else if (isa<FieldDecl>(dcl)) {
4475 // Okay: we can take the address of a field.
Sebastian Redl0c9da212009-02-03 20:19:35 +00004476 // Could be a pointer to member, though, if there is an explicit
4477 // scope qualifier for the class.
4478 if (isa<QualifiedDeclRefExpr>(op)) {
4479 DeclContext *Ctx = dcl->getDeclContext();
4480 if (Ctx && Ctx->isRecord())
4481 return Context.getMemberPointerType(op->getType(),
4482 Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr());
4483 }
Anders Carlssone9cc4c42009-05-16 21:43:42 +00004484 } else if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(dcl)) {
Nuno Lopesdf239522008-12-16 22:58:26 +00004485 // Okay: we can take the address of a function.
Sebastian Redl7434fc32009-02-04 21:23:32 +00004486 // As above.
Anders Carlssone9cc4c42009-05-16 21:43:42 +00004487 if (isa<QualifiedDeclRefExpr>(op) && MD->isInstance())
4488 return Context.getMemberPointerType(op->getType(),
4489 Context.getTypeDeclType(MD->getParent()).getTypePtr());
4490 } else if (!isa<FunctionDecl>(dcl))
Chris Lattner4b009652007-07-25 00:24:17 +00004491 assert(0 && "Unknown/unexpected decl type");
Chris Lattner4b009652007-07-25 00:24:17 +00004492 }
Sebastian Redl7434fc32009-02-04 21:23:32 +00004493
Eli Friedman14ab4c42009-05-16 23:27:50 +00004494 if (lval == Expr::LV_IncompleteVoidType) {
4495 // Taking the address of a void variable is technically illegal, but we
4496 // allow it in cases which are otherwise valid.
4497 // Example: "extern void x; void* y = &x;".
4498 Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange();
4499 }
4500
Chris Lattner4b009652007-07-25 00:24:17 +00004501 // If the operand has type "type", the result has type "pointer to type".
4502 return Context.getPointerType(op->getType());
4503}
4504
Chris Lattnerda5c0872008-11-23 09:13:29 +00004505QualType Sema::CheckIndirectionOperand(Expr *Op, SourceLocation OpLoc) {
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00004506 if (Op->isTypeDependent())
4507 return Context.DependentTy;
4508
Chris Lattnerda5c0872008-11-23 09:13:29 +00004509 UsualUnaryConversions(Op);
4510 QualType Ty = Op->getType();
Mike Stump9afab102009-02-19 03:04:26 +00004511
Chris Lattnerda5c0872008-11-23 09:13:29 +00004512 // Note that per both C89 and C99, this is always legal, even if ptype is an
4513 // incomplete type or void. It would be possible to warn about dereferencing
4514 // a void pointer, but it's completely well-defined, and such a warning is
4515 // unlikely to catch any mistakes.
4516 if (const PointerType *PT = Ty->getAsPointerType())
Steve Naroff9c6c3592008-01-13 17:10:08 +00004517 return PT->getPointeeType();
Mike Stump9afab102009-02-19 03:04:26 +00004518
Chris Lattner77d52da2008-11-20 06:06:08 +00004519 Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer)
Chris Lattnerda5c0872008-11-23 09:13:29 +00004520 << Ty << Op->getSourceRange();
Chris Lattner4b009652007-07-25 00:24:17 +00004521 return QualType();
4522}
4523
4524static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode(
4525 tok::TokenKind Kind) {
4526 BinaryOperator::Opcode Opc;
4527 switch (Kind) {
4528 default: assert(0 && "Unknown binop!");
Sebastian Redl95216a62009-02-07 00:15:38 +00004529 case tok::periodstar: Opc = BinaryOperator::PtrMemD; break;
4530 case tok::arrowstar: Opc = BinaryOperator::PtrMemI; break;
Chris Lattner4b009652007-07-25 00:24:17 +00004531 case tok::star: Opc = BinaryOperator::Mul; break;
4532 case tok::slash: Opc = BinaryOperator::Div; break;
4533 case tok::percent: Opc = BinaryOperator::Rem; break;
4534 case tok::plus: Opc = BinaryOperator::Add; break;
4535 case tok::minus: Opc = BinaryOperator::Sub; break;
4536 case tok::lessless: Opc = BinaryOperator::Shl; break;
4537 case tok::greatergreater: Opc = BinaryOperator::Shr; break;
4538 case tok::lessequal: Opc = BinaryOperator::LE; break;
4539 case tok::less: Opc = BinaryOperator::LT; break;
4540 case tok::greaterequal: Opc = BinaryOperator::GE; break;
4541 case tok::greater: Opc = BinaryOperator::GT; break;
4542 case tok::exclaimequal: Opc = BinaryOperator::NE; break;
4543 case tok::equalequal: Opc = BinaryOperator::EQ; break;
4544 case tok::amp: Opc = BinaryOperator::And; break;
4545 case tok::caret: Opc = BinaryOperator::Xor; break;
4546 case tok::pipe: Opc = BinaryOperator::Or; break;
4547 case tok::ampamp: Opc = BinaryOperator::LAnd; break;
4548 case tok::pipepipe: Opc = BinaryOperator::LOr; break;
4549 case tok::equal: Opc = BinaryOperator::Assign; break;
4550 case tok::starequal: Opc = BinaryOperator::MulAssign; break;
4551 case tok::slashequal: Opc = BinaryOperator::DivAssign; break;
4552 case tok::percentequal: Opc = BinaryOperator::RemAssign; break;
4553 case tok::plusequal: Opc = BinaryOperator::AddAssign; break;
4554 case tok::minusequal: Opc = BinaryOperator::SubAssign; break;
4555 case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break;
4556 case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break;
4557 case tok::ampequal: Opc = BinaryOperator::AndAssign; break;
4558 case tok::caretequal: Opc = BinaryOperator::XorAssign; break;
4559 case tok::pipeequal: Opc = BinaryOperator::OrAssign; break;
4560 case tok::comma: Opc = BinaryOperator::Comma; break;
4561 }
4562 return Opc;
4563}
4564
4565static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode(
4566 tok::TokenKind Kind) {
4567 UnaryOperator::Opcode Opc;
4568 switch (Kind) {
4569 default: assert(0 && "Unknown unary op!");
4570 case tok::plusplus: Opc = UnaryOperator::PreInc; break;
4571 case tok::minusminus: Opc = UnaryOperator::PreDec; break;
4572 case tok::amp: Opc = UnaryOperator::AddrOf; break;
4573 case tok::star: Opc = UnaryOperator::Deref; break;
4574 case tok::plus: Opc = UnaryOperator::Plus; break;
4575 case tok::minus: Opc = UnaryOperator::Minus; break;
4576 case tok::tilde: Opc = UnaryOperator::Not; break;
4577 case tok::exclaim: Opc = UnaryOperator::LNot; break;
Chris Lattner4b009652007-07-25 00:24:17 +00004578 case tok::kw___real: Opc = UnaryOperator::Real; break;
4579 case tok::kw___imag: Opc = UnaryOperator::Imag; break;
4580 case tok::kw___extension__: Opc = UnaryOperator::Extension; break;
4581 }
4582 return Opc;
4583}
4584
Douglas Gregord7f915e2008-11-06 23:29:22 +00004585/// CreateBuiltinBinOp - Creates a new built-in binary operation with
4586/// operator @p Opc at location @c TokLoc. This routine only supports
4587/// built-in operations; ActOnBinOp handles overloaded operators.
Sebastian Redl5457c5e2009-01-19 22:31:54 +00004588Action::OwningExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc,
4589 unsigned Op,
4590 Expr *lhs, Expr *rhs) {
Eli Friedman3cd92882009-03-28 01:22:36 +00004591 QualType ResultTy; // Result type of the binary operator.
Douglas Gregord7f915e2008-11-06 23:29:22 +00004592 BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)Op;
Eli Friedman3cd92882009-03-28 01:22:36 +00004593 // The following two variables are used for compound assignment operators
4594 QualType CompLHSTy; // Type of LHS after promotions for computation
4595 QualType CompResultTy; // Type of computation result
Douglas Gregord7f915e2008-11-06 23:29:22 +00004596
4597 switch (Opc) {
Douglas Gregord7f915e2008-11-06 23:29:22 +00004598 case BinaryOperator::Assign:
4599 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, QualType());
4600 break;
Sebastian Redl95216a62009-02-07 00:15:38 +00004601 case BinaryOperator::PtrMemD:
4602 case BinaryOperator::PtrMemI:
4603 ResultTy = CheckPointerToMemberOperands(lhs, rhs, OpLoc,
4604 Opc == BinaryOperator::PtrMemI);
4605 break;
4606 case BinaryOperator::Mul:
Douglas Gregord7f915e2008-11-06 23:29:22 +00004607 case BinaryOperator::Div:
4608 ResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc);
4609 break;
4610 case BinaryOperator::Rem:
4611 ResultTy = CheckRemainderOperands(lhs, rhs, OpLoc);
4612 break;
4613 case BinaryOperator::Add:
4614 ResultTy = CheckAdditionOperands(lhs, rhs, OpLoc);
4615 break;
4616 case BinaryOperator::Sub:
4617 ResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc);
4618 break;
Sebastian Redl95216a62009-02-07 00:15:38 +00004619 case BinaryOperator::Shl:
Douglas Gregord7f915e2008-11-06 23:29:22 +00004620 case BinaryOperator::Shr:
4621 ResultTy = CheckShiftOperands(lhs, rhs, OpLoc);
4622 break;
4623 case BinaryOperator::LE:
4624 case BinaryOperator::LT:
4625 case BinaryOperator::GE:
4626 case BinaryOperator::GT:
Douglas Gregor1f12c352009-04-06 18:45:53 +00004627 ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, true);
Douglas Gregord7f915e2008-11-06 23:29:22 +00004628 break;
4629 case BinaryOperator::EQ:
4630 case BinaryOperator::NE:
Douglas Gregor1f12c352009-04-06 18:45:53 +00004631 ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, false);
Douglas Gregord7f915e2008-11-06 23:29:22 +00004632 break;
4633 case BinaryOperator::And:
4634 case BinaryOperator::Xor:
4635 case BinaryOperator::Or:
4636 ResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc);
4637 break;
4638 case BinaryOperator::LAnd:
4639 case BinaryOperator::LOr:
4640 ResultTy = CheckLogicalOperands(lhs, rhs, OpLoc);
4641 break;
4642 case BinaryOperator::MulAssign:
4643 case BinaryOperator::DivAssign:
Eli Friedman3cd92882009-03-28 01:22:36 +00004644 CompResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc, true);
4645 CompLHSTy = CompResultTy;
4646 if (!CompResultTy.isNull())
4647 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregord7f915e2008-11-06 23:29:22 +00004648 break;
4649 case BinaryOperator::RemAssign:
Eli Friedman3cd92882009-03-28 01:22:36 +00004650 CompResultTy = CheckRemainderOperands(lhs, rhs, OpLoc, true);
4651 CompLHSTy = CompResultTy;
4652 if (!CompResultTy.isNull())
4653 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregord7f915e2008-11-06 23:29:22 +00004654 break;
4655 case BinaryOperator::AddAssign:
Eli Friedman3cd92882009-03-28 01:22:36 +00004656 CompResultTy = CheckAdditionOperands(lhs, rhs, OpLoc, &CompLHSTy);
4657 if (!CompResultTy.isNull())
4658 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregord7f915e2008-11-06 23:29:22 +00004659 break;
4660 case BinaryOperator::SubAssign:
Eli Friedman3cd92882009-03-28 01:22:36 +00004661 CompResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc, &CompLHSTy);
4662 if (!CompResultTy.isNull())
4663 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregord7f915e2008-11-06 23:29:22 +00004664 break;
4665 case BinaryOperator::ShlAssign:
4666 case BinaryOperator::ShrAssign:
Eli Friedman3cd92882009-03-28 01:22:36 +00004667 CompResultTy = CheckShiftOperands(lhs, rhs, OpLoc, true);
4668 CompLHSTy = CompResultTy;
4669 if (!CompResultTy.isNull())
4670 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregord7f915e2008-11-06 23:29:22 +00004671 break;
4672 case BinaryOperator::AndAssign:
4673 case BinaryOperator::XorAssign:
4674 case BinaryOperator::OrAssign:
Eli Friedman3cd92882009-03-28 01:22:36 +00004675 CompResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc, true);
4676 CompLHSTy = CompResultTy;
4677 if (!CompResultTy.isNull())
4678 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregord7f915e2008-11-06 23:29:22 +00004679 break;
4680 case BinaryOperator::Comma:
4681 ResultTy = CheckCommaOperands(lhs, rhs, OpLoc);
4682 break;
4683 }
4684 if (ResultTy.isNull())
Sebastian Redl5457c5e2009-01-19 22:31:54 +00004685 return ExprError();
Eli Friedman3cd92882009-03-28 01:22:36 +00004686 if (CompResultTy.isNull())
Steve Naroff774e4152009-01-21 00:14:39 +00004687 return Owned(new (Context) BinaryOperator(lhs, rhs, Opc, ResultTy, OpLoc));
4688 else
4689 return Owned(new (Context) CompoundAssignOperator(lhs, rhs, Opc, ResultTy,
Eli Friedman3cd92882009-03-28 01:22:36 +00004690 CompLHSTy, CompResultTy,
4691 OpLoc));
Douglas Gregord7f915e2008-11-06 23:29:22 +00004692}
4693
Chris Lattner4b009652007-07-25 00:24:17 +00004694// Binary Operators. 'Tok' is the token for the operator.
Sebastian Redl5457c5e2009-01-19 22:31:54 +00004695Action::OwningExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc,
4696 tok::TokenKind Kind,
4697 ExprArg LHS, ExprArg RHS) {
Chris Lattner4b009652007-07-25 00:24:17 +00004698 BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind);
Anders Carlsson39ecdcf2009-05-01 19:49:17 +00004699 Expr *lhs = LHS.takeAs<Expr>(), *rhs = RHS.takeAs<Expr>();
Chris Lattner4b009652007-07-25 00:24:17 +00004700
Steve Naroff87d58b42007-09-16 03:34:24 +00004701 assert((lhs != 0) && "ActOnBinOp(): missing left expression");
4702 assert((rhs != 0) && "ActOnBinOp(): missing right expression");
Chris Lattner4b009652007-07-25 00:24:17 +00004703
Douglas Gregor00fe3f62009-03-13 18:40:31 +00004704 if (getLangOptions().CPlusPlus &&
4705 (lhs->getType()->isOverloadableType() ||
4706 rhs->getType()->isOverloadableType())) {
4707 // Find all of the overloaded operators visible from this
4708 // point. We perform both an operator-name lookup from the local
4709 // scope and an argument-dependent lookup based on the types of
4710 // the arguments.
Douglas Gregor3fc092f2009-03-13 00:33:25 +00004711 FunctionSet Functions;
Douglas Gregor00fe3f62009-03-13 18:40:31 +00004712 OverloadedOperatorKind OverOp = BinaryOperator::getOverloadedOperator(Opc);
4713 if (OverOp != OO_None) {
4714 LookupOverloadedOperatorName(OverOp, S, lhs->getType(), rhs->getType(),
4715 Functions);
4716 Expr *Args[2] = { lhs, rhs };
4717 DeclarationName OpName
4718 = Context.DeclarationNames.getCXXOperatorName(OverOp);
4719 ArgumentDependentLookup(OpName, Args, 2, Functions);
Douglas Gregor70d26122008-11-12 17:17:38 +00004720 }
Sebastian Redl5457c5e2009-01-19 22:31:54 +00004721
Douglas Gregor00fe3f62009-03-13 18:40:31 +00004722 // Build the (potentially-overloaded, potentially-dependent)
4723 // binary operation.
4724 return CreateOverloadedBinOp(TokLoc, Opc, Functions, lhs, rhs);
Sebastian Redl5457c5e2009-01-19 22:31:54 +00004725 }
4726
Douglas Gregord7f915e2008-11-06 23:29:22 +00004727 // Build a built-in binary operation.
4728 return CreateBuiltinBinOp(TokLoc, Opc, lhs, rhs);
Chris Lattner4b009652007-07-25 00:24:17 +00004729}
4730
Douglas Gregorc78182d2009-03-13 23:49:33 +00004731Action::OwningExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc,
4732 unsigned OpcIn,
4733 ExprArg InputArg) {
4734 UnaryOperator::Opcode Opc = static_cast<UnaryOperator::Opcode>(OpcIn);
Douglas Gregor4f6904d2008-11-19 15:42:04 +00004735
Mike Stumpe127ae32009-05-16 07:39:55 +00004736 // FIXME: Input is modified below, but InputArg is not updated appropriately.
Douglas Gregorc78182d2009-03-13 23:49:33 +00004737 Expr *Input = (Expr *)InputArg.get();
Chris Lattner4b009652007-07-25 00:24:17 +00004738 QualType resultType;
4739 switch (Opc) {
Douglas Gregorc78182d2009-03-13 23:49:33 +00004740 case UnaryOperator::PostInc:
4741 case UnaryOperator::PostDec:
4742 case UnaryOperator::OffsetOf:
4743 assert(false && "Invalid unary operator");
4744 break;
4745
Chris Lattner4b009652007-07-25 00:24:17 +00004746 case UnaryOperator::PreInc:
4747 case UnaryOperator::PreDec:
Sebastian Redl0440c8c2008-12-20 09:35:34 +00004748 resultType = CheckIncrementDecrementOperand(Input, OpLoc,
4749 Opc == UnaryOperator::PreInc);
Chris Lattner4b009652007-07-25 00:24:17 +00004750 break;
Mike Stump9afab102009-02-19 03:04:26 +00004751 case UnaryOperator::AddrOf:
Chris Lattner4b009652007-07-25 00:24:17 +00004752 resultType = CheckAddressOfOperand(Input, OpLoc);
4753 break;
Mike Stump9afab102009-02-19 03:04:26 +00004754 case UnaryOperator::Deref:
Steve Naroffccc26a72007-12-18 04:06:57 +00004755 DefaultFunctionArrayConversion(Input);
Chris Lattner4b009652007-07-25 00:24:17 +00004756 resultType = CheckIndirectionOperand(Input, OpLoc);
4757 break;
4758 case UnaryOperator::Plus:
4759 case UnaryOperator::Minus:
4760 UsualUnaryConversions(Input);
4761 resultType = Input->getType();
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00004762 if (resultType->isDependentType())
4763 break;
Douglas Gregor4f6904d2008-11-19 15:42:04 +00004764 if (resultType->isArithmeticType()) // C99 6.5.3.3p1
4765 break;
4766 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6-7
4767 resultType->isEnumeralType())
4768 break;
4769 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6
4770 Opc == UnaryOperator::Plus &&
4771 resultType->isPointerType())
4772 break;
4773
Sebastian Redl8b769972009-01-19 00:08:26 +00004774 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
4775 << resultType << Input->getSourceRange());
Chris Lattner4b009652007-07-25 00:24:17 +00004776 case UnaryOperator::Not: // bitwise complement
4777 UsualUnaryConversions(Input);
4778 resultType = Input->getType();
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00004779 if (resultType->isDependentType())
4780 break;
Chris Lattnerbd695022008-07-25 23:52:49 +00004781 // C99 6.5.3.3p1. We allow complex int and float as a GCC extension.
4782 if (resultType->isComplexType() || resultType->isComplexIntegerType())
4783 // C99 does not support '~' for complex conjugation.
Chris Lattner77d52da2008-11-20 06:06:08 +00004784 Diag(OpLoc, diag::ext_integer_complement_complex)
Chris Lattner4bfd2232008-11-24 06:25:27 +00004785 << resultType << Input->getSourceRange();
Chris Lattnerbd695022008-07-25 23:52:49 +00004786 else if (!resultType->isIntegerType())
Sebastian Redl8b769972009-01-19 00:08:26 +00004787 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
4788 << resultType << Input->getSourceRange());
Chris Lattner4b009652007-07-25 00:24:17 +00004789 break;
4790 case UnaryOperator::LNot: // logical negation
4791 // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5).
4792 DefaultFunctionArrayConversion(Input);
4793 resultType = Input->getType();
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00004794 if (resultType->isDependentType())
4795 break;
Chris Lattner4b009652007-07-25 00:24:17 +00004796 if (!resultType->isScalarType()) // C99 6.5.3.3p1
Sebastian Redl8b769972009-01-19 00:08:26 +00004797 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
4798 << resultType << Input->getSourceRange());
Chris Lattner4b009652007-07-25 00:24:17 +00004799 // LNot always has type int. C99 6.5.3.3p5.
Sebastian Redl8b769972009-01-19 00:08:26 +00004800 // In C++, it's bool. C++ 5.3.1p8
4801 resultType = getLangOptions().CPlusPlus ? Context.BoolTy : Context.IntTy;
Chris Lattner4b009652007-07-25 00:24:17 +00004802 break;
Chris Lattner03931a72007-08-24 21:16:53 +00004803 case UnaryOperator::Real:
Chris Lattner03931a72007-08-24 21:16:53 +00004804 case UnaryOperator::Imag:
Chris Lattner57e5f7e2009-02-17 08:12:06 +00004805 resultType = CheckRealImagOperand(Input, OpLoc, Opc == UnaryOperator::Real);
Chris Lattner03931a72007-08-24 21:16:53 +00004806 break;
Chris Lattner4b009652007-07-25 00:24:17 +00004807 case UnaryOperator::Extension:
Chris Lattner4b009652007-07-25 00:24:17 +00004808 resultType = Input->getType();
4809 break;
4810 }
4811 if (resultType.isNull())
Sebastian Redl8b769972009-01-19 00:08:26 +00004812 return ExprError();
Douglas Gregorc78182d2009-03-13 23:49:33 +00004813
4814 InputArg.release();
Steve Naroff774e4152009-01-21 00:14:39 +00004815 return Owned(new (Context) UnaryOperator(Input, Opc, resultType, OpLoc));
Chris Lattner4b009652007-07-25 00:24:17 +00004816}
4817
Douglas Gregorc78182d2009-03-13 23:49:33 +00004818// Unary Operators. 'Tok' is the token for the operator.
4819Action::OwningExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc,
4820 tok::TokenKind Op, ExprArg input) {
4821 Expr *Input = (Expr*)input.get();
4822 UnaryOperator::Opcode Opc = ConvertTokenKindToUnaryOpcode(Op);
4823
4824 if (getLangOptions().CPlusPlus && Input->getType()->isOverloadableType()) {
4825 // Find all of the overloaded operators visible from this
4826 // point. We perform both an operator-name lookup from the local
4827 // scope and an argument-dependent lookup based on the types of
4828 // the arguments.
4829 FunctionSet Functions;
4830 OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc);
4831 if (OverOp != OO_None) {
4832 LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(),
4833 Functions);
4834 DeclarationName OpName
4835 = Context.DeclarationNames.getCXXOperatorName(OverOp);
4836 ArgumentDependentLookup(OpName, &Input, 1, Functions);
4837 }
4838
4839 return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, move(input));
4840 }
4841
4842 return CreateBuiltinUnaryOp(OpLoc, Opc, move(input));
4843}
4844
Steve Naroff5cbb02f2007-09-16 14:56:35 +00004845/// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo".
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00004846Sema::OwningExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc,
4847 SourceLocation LabLoc,
4848 IdentifierInfo *LabelII) {
Chris Lattner4b009652007-07-25 00:24:17 +00004849 // Look up the record for this label identifier.
Chris Lattner2616d8c2009-04-18 20:01:55 +00004850 LabelStmt *&LabelDecl = getLabelMap()[LabelII];
Mike Stump9afab102009-02-19 03:04:26 +00004851
Daniel Dunbar879788d2008-08-04 16:51:22 +00004852 // If we haven't seen this label yet, create a forward reference. It
4853 // will be validated and/or cleaned up in ActOnFinishFunctionBody.
Steve Naroffb88d81c2009-03-13 15:38:40 +00004854 if (LabelDecl == 0)
Steve Naroff774e4152009-01-21 00:14:39 +00004855 LabelDecl = new (Context) LabelStmt(LabLoc, LabelII, 0);
Mike Stump9afab102009-02-19 03:04:26 +00004856
Chris Lattner4b009652007-07-25 00:24:17 +00004857 // Create the AST node. The address of a label always has type 'void*'.
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00004858 return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, LabelDecl,
4859 Context.getPointerType(Context.VoidTy)));
Chris Lattner4b009652007-07-25 00:24:17 +00004860}
4861
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00004862Sema::OwningExprResult
4863Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtArg substmt,
4864 SourceLocation RPLoc) { // "({..})"
4865 Stmt *SubStmt = static_cast<Stmt*>(substmt.get());
Chris Lattner4b009652007-07-25 00:24:17 +00004866 assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!");
4867 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt);
4868
Eli Friedmanbc941e12009-01-24 23:09:00 +00004869 bool isFileScope = getCurFunctionOrMethodDecl() == 0;
Chris Lattneraa257592009-04-25 19:11:05 +00004870 if (isFileScope)
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00004871 return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope));
Eli Friedmanbc941e12009-01-24 23:09:00 +00004872
Chris Lattner4b009652007-07-25 00:24:17 +00004873 // FIXME: there are a variety of strange constraints to enforce here, for
4874 // example, it is not possible to goto into a stmt expression apparently.
4875 // More semantic analysis is needed.
Mike Stump9afab102009-02-19 03:04:26 +00004876
Chris Lattner4b009652007-07-25 00:24:17 +00004877 // If there are sub stmts in the compound stmt, take the type of the last one
4878 // as the type of the stmtexpr.
4879 QualType Ty = Context.VoidTy;
Mike Stump9afab102009-02-19 03:04:26 +00004880
Chris Lattner200964f2008-07-26 19:51:01 +00004881 if (!Compound->body_empty()) {
4882 Stmt *LastStmt = Compound->body_back();
4883 // If LastStmt is a label, skip down through into the body.
4884 while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt))
4885 LastStmt = Label->getSubStmt();
Mike Stump9afab102009-02-19 03:04:26 +00004886
Chris Lattner200964f2008-07-26 19:51:01 +00004887 if (Expr *LastExpr = dyn_cast<Expr>(LastStmt))
Chris Lattner4b009652007-07-25 00:24:17 +00004888 Ty = LastExpr->getType();
Chris Lattner200964f2008-07-26 19:51:01 +00004889 }
Mike Stump9afab102009-02-19 03:04:26 +00004890
Eli Friedman2b128322009-03-23 00:24:07 +00004891 // FIXME: Check that expression type is complete/non-abstract; statement
4892 // expressions are not lvalues.
4893
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00004894 substmt.release();
4895 return Owned(new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc));
Chris Lattner4b009652007-07-25 00:24:17 +00004896}
Steve Naroff63bad2d2007-08-01 22:05:33 +00004897
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00004898Sema::OwningExprResult Sema::ActOnBuiltinOffsetOf(Scope *S,
4899 SourceLocation BuiltinLoc,
4900 SourceLocation TypeLoc,
4901 TypeTy *argty,
4902 OffsetOfComponent *CompPtr,
4903 unsigned NumComponents,
4904 SourceLocation RPLoc) {
4905 // FIXME: This function leaks all expressions in the offset components on
4906 // error.
Chris Lattner0d9bcea2007-08-30 17:45:32 +00004907 QualType ArgTy = QualType::getFromOpaquePtr(argty);
4908 assert(!ArgTy.isNull() && "Missing type argument!");
Mike Stump9afab102009-02-19 03:04:26 +00004909
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00004910 bool Dependent = ArgTy->isDependentType();
4911
Chris Lattner0d9bcea2007-08-30 17:45:32 +00004912 // We must have at least one component that refers to the type, and the first
4913 // one is known to be a field designator. Verify that the ArgTy represents
4914 // a struct/union/class.
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00004915 if (!Dependent && !ArgTy->isRecordType())
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00004916 return ExprError(Diag(TypeLoc, diag::err_offsetof_record_type) << ArgTy);
Mike Stump9afab102009-02-19 03:04:26 +00004917
Eli Friedman2b128322009-03-23 00:24:07 +00004918 // FIXME: Type must be complete per C99 7.17p3 because a declaring a variable
4919 // with an incomplete type would be illegal.
Douglas Gregor6e7c27c2009-03-11 16:48:53 +00004920
Eli Friedman342d9432009-02-27 06:44:11 +00004921 // Otherwise, create a null pointer as the base, and iteratively process
4922 // the offsetof designators.
4923 QualType ArgTyPtr = Context.getPointerType(ArgTy);
4924 Expr* Res = new (Context) ImplicitValueInitExpr(ArgTyPtr);
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00004925 Res = new (Context) UnaryOperator(Res, UnaryOperator::Deref,
Eli Friedman342d9432009-02-27 06:44:11 +00004926 ArgTy, SourceLocation());
Eli Friedmanc67f86a2009-01-26 01:33:06 +00004927
Chris Lattnerb37522e2007-08-31 21:49:13 +00004928 // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a
4929 // GCC extension, diagnose them.
Eli Friedman342d9432009-02-27 06:44:11 +00004930 // FIXME: This diagnostic isn't actually visible because the location is in
4931 // a system header!
Chris Lattnerb37522e2007-08-31 21:49:13 +00004932 if (NumComponents != 1)
Chris Lattner9d2cf082008-11-19 05:27:50 +00004933 Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator)
4934 << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd);
Mike Stump9afab102009-02-19 03:04:26 +00004935
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00004936 if (!Dependent) {
Eli Friedmanc24ae002009-05-03 21:22:18 +00004937 bool DidWarnAboutNonPOD = false;
Anders Carlsson68c926c2009-05-02 18:36:10 +00004938
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00004939 // FIXME: Dependent case loses a lot of information here. And probably
4940 // leaks like a sieve.
4941 for (unsigned i = 0; i != NumComponents; ++i) {
4942 const OffsetOfComponent &OC = CompPtr[i];
4943 if (OC.isBrackets) {
4944 // Offset of an array sub-field. TODO: Should we allow vector elements?
4945 const ArrayType *AT = Context.getAsArrayType(Res->getType());
4946 if (!AT) {
4947 Res->Destroy(Context);
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00004948 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type)
4949 << Res->getType());
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00004950 }
4951
4952 // FIXME: C++: Verify that operator[] isn't overloaded.
4953
Eli Friedman342d9432009-02-27 06:44:11 +00004954 // Promote the array so it looks more like a normal array subscript
4955 // expression.
4956 DefaultFunctionArrayConversion(Res);
4957
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00004958 // C99 6.5.2.1p1
4959 Expr *Idx = static_cast<Expr*>(OC.U.E);
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00004960 // FIXME: Leaks Res
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00004961 if (!Idx->isTypeDependent() && !Idx->getType()->isIntegerType())
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00004962 return ExprError(Diag(Idx->getLocStart(),
Chris Lattner7264d212009-04-25 22:50:55 +00004963 diag::err_typecheck_subscript_not_integer)
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00004964 << Idx->getSourceRange());
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00004965
4966 Res = new (Context) ArraySubscriptExpr(Res, Idx, AT->getElementType(),
4967 OC.LocEnd);
4968 continue;
Chris Lattner0d9bcea2007-08-30 17:45:32 +00004969 }
Mike Stump9afab102009-02-19 03:04:26 +00004970
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00004971 const RecordType *RC = Res->getType()->getAsRecordType();
4972 if (!RC) {
4973 Res->Destroy(Context);
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00004974 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type)
4975 << Res->getType());
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00004976 }
Chris Lattner2af6a802007-08-30 17:59:59 +00004977
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00004978 // Get the decl corresponding to this.
4979 RecordDecl *RD = RC->getDecl();
Anders Carlsson356946e2009-05-01 23:20:30 +00004980 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
Anders Carlsson68c926c2009-05-02 18:36:10 +00004981 if (!CRD->isPOD() && !DidWarnAboutNonPOD) {
Anders Carlssonbbceaea2009-05-02 17:45:47 +00004982 ExprError(Diag(BuiltinLoc, diag::warn_offsetof_non_pod_type)
4983 << SourceRange(CompPtr[0].LocStart, OC.LocEnd)
4984 << Res->getType());
Anders Carlsson68c926c2009-05-02 18:36:10 +00004985 DidWarnAboutNonPOD = true;
4986 }
Anders Carlsson356946e2009-05-01 23:20:30 +00004987 }
4988
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00004989 FieldDecl *MemberDecl
4990 = dyn_cast_or_null<FieldDecl>(LookupQualifiedName(RD, OC.U.IdentInfo,
4991 LookupMemberName)
4992 .getAsDecl());
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00004993 // FIXME: Leaks Res
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00004994 if (!MemberDecl)
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00004995 return ExprError(Diag(BuiltinLoc, diag::err_typecheck_no_member)
4996 << OC.U.IdentInfo << SourceRange(OC.LocStart, OC.LocEnd));
Mike Stump9afab102009-02-19 03:04:26 +00004997
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00004998 // FIXME: C++: Verify that MemberDecl isn't a static field.
4999 // FIXME: Verify that MemberDecl isn't a bitfield.
Eli Friedman35719da2009-04-26 20:50:44 +00005000 if (cast<RecordDecl>(MemberDecl->getDeclContext())->isAnonymousStructOrUnion()) {
Anders Carlssonc154a722009-05-01 19:30:39 +00005001 Res = BuildAnonymousStructUnionMemberReference(
5002 SourceLocation(), MemberDecl, Res, SourceLocation()).takeAs<Expr>();
Eli Friedman35719da2009-04-26 20:50:44 +00005003 } else {
5004 // MemberDecl->getType() doesn't get the right qualifiers, but it
5005 // doesn't matter here.
5006 Res = new (Context) MemberExpr(Res, false, MemberDecl, OC.LocEnd,
5007 MemberDecl->getType().getNonReferenceType());
5008 }
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00005009 }
Chris Lattner0d9bcea2007-08-30 17:45:32 +00005010 }
Mike Stump9afab102009-02-19 03:04:26 +00005011
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005012 return Owned(new (Context) UnaryOperator(Res, UnaryOperator::OffsetOf,
5013 Context.getSizeType(), BuiltinLoc));
Chris Lattner0d9bcea2007-08-30 17:45:32 +00005014}
5015
5016
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005017Sema::OwningExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc,
5018 TypeTy *arg1,TypeTy *arg2,
5019 SourceLocation RPLoc) {
Steve Naroff63bad2d2007-08-01 22:05:33 +00005020 QualType argT1 = QualType::getFromOpaquePtr(arg1);
5021 QualType argT2 = QualType::getFromOpaquePtr(arg2);
Mike Stump9afab102009-02-19 03:04:26 +00005022
Steve Naroff63bad2d2007-08-01 22:05:33 +00005023 assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)");
Mike Stump9afab102009-02-19 03:04:26 +00005024
Douglas Gregore6211502009-05-19 22:28:02 +00005025 if (getLangOptions().CPlusPlus) {
5026 Diag(BuiltinLoc, diag::err_types_compatible_p_in_cplusplus)
5027 << SourceRange(BuiltinLoc, RPLoc);
5028 return ExprError();
5029 }
5030
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005031 return Owned(new (Context) TypesCompatibleExpr(Context.IntTy, BuiltinLoc,
5032 argT1, argT2, RPLoc));
Steve Naroff63bad2d2007-08-01 22:05:33 +00005033}
5034
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005035Sema::OwningExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc,
5036 ExprArg cond,
5037 ExprArg expr1, ExprArg expr2,
5038 SourceLocation RPLoc) {
5039 Expr *CondExpr = static_cast<Expr*>(cond.get());
5040 Expr *LHSExpr = static_cast<Expr*>(expr1.get());
5041 Expr *RHSExpr = static_cast<Expr*>(expr2.get());
Mike Stump9afab102009-02-19 03:04:26 +00005042
Steve Naroff93c53012007-08-03 21:21:27 +00005043 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)");
5044
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00005045 QualType resType;
Douglas Gregordd4ae3f2009-05-19 22:43:30 +00005046 if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) {
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00005047 resType = Context.DependentTy;
5048 } else {
5049 // The conditional expression is required to be a constant expression.
5050 llvm::APSInt condEval(32);
5051 SourceLocation ExpLoc;
5052 if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc))
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005053 return ExprError(Diag(ExpLoc,
5054 diag::err_typecheck_choose_expr_requires_constant)
5055 << CondExpr->getSourceRange());
Steve Naroff93c53012007-08-03 21:21:27 +00005056
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00005057 // If the condition is > zero, then the AST type is the same as the LSHExpr.
5058 resType = condEval.getZExtValue() ? LHSExpr->getType() : RHSExpr->getType();
5059 }
5060
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005061 cond.release(); expr1.release(); expr2.release();
5062 return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr,
5063 resType, RPLoc));
Steve Naroff93c53012007-08-03 21:21:27 +00005064}
5065
Steve Naroff52a81c02008-09-03 18:15:37 +00005066//===----------------------------------------------------------------------===//
5067// Clang Extensions.
5068//===----------------------------------------------------------------------===//
5069
5070/// ActOnBlockStart - This callback is invoked when a block literal is started.
Steve Naroff52059382008-10-10 01:28:17 +00005071void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *BlockScope) {
Steve Naroff52a81c02008-09-03 18:15:37 +00005072 // Analyze block parameters.
5073 BlockSemaInfo *BSI = new BlockSemaInfo();
Mike Stump9afab102009-02-19 03:04:26 +00005074
Steve Naroff52a81c02008-09-03 18:15:37 +00005075 // Add BSI to CurBlock.
5076 BSI->PrevBlockInfo = CurBlock;
5077 CurBlock = BSI;
Mike Stump9afab102009-02-19 03:04:26 +00005078
Steve Naroff52a81c02008-09-03 18:15:37 +00005079 BSI->ReturnType = 0;
5080 BSI->TheScope = BlockScope;
Mike Stumpae93d652009-02-19 22:01:56 +00005081 BSI->hasBlockDeclRefExprs = false;
Chris Lattnere7765e12009-04-19 05:28:12 +00005082 BSI->SavedFunctionNeedsScopeChecking = CurFunctionNeedsScopeChecking;
5083 CurFunctionNeedsScopeChecking = false;
Mike Stump9afab102009-02-19 03:04:26 +00005084
Steve Naroff52059382008-10-10 01:28:17 +00005085 BSI->TheDecl = BlockDecl::Create(Context, CurContext, CaretLoc);
Douglas Gregor8acb7272008-12-11 16:49:14 +00005086 PushDeclContext(BlockScope, BSI->TheDecl);
Steve Naroff52059382008-10-10 01:28:17 +00005087}
5088
Mike Stumpc1fddff2009-02-04 22:31:32 +00005089void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) {
Mike Stumpea3d74e2009-05-07 18:43:07 +00005090 assert(ParamInfo.getIdentifier()==0 && "block-id should have no identifier!");
Mike Stumpc1fddff2009-02-04 22:31:32 +00005091
5092 if (ParamInfo.getNumTypeObjects() == 0
5093 || ParamInfo.getTypeObject(0).Kind != DeclaratorChunk::Function) {
Fariborz Jahanian262c0d72009-05-18 23:17:46 +00005094 ProcessDeclAttributes(CurBlock->TheDecl, ParamInfo);
Mike Stumpc1fddff2009-02-04 22:31:32 +00005095 QualType T = GetTypeForDeclarator(ParamInfo, CurScope);
5096
Mike Stump458287d2009-04-28 01:10:27 +00005097 if (T->isArrayType()) {
5098 Diag(ParamInfo.getSourceRange().getBegin(),
5099 diag::err_block_returns_array);
5100 return;
5101 }
5102
Mike Stumpc1fddff2009-02-04 22:31:32 +00005103 // The parameter list is optional, if there was none, assume ().
5104 if (!T->isFunctionType())
5105 T = Context.getFunctionType(T, NULL, 0, 0, 0);
5106
5107 CurBlock->hasPrototype = true;
5108 CurBlock->isVariadic = false;
Fariborz Jahanian157c4262009-05-14 20:53:39 +00005109 // Check for a valid sentinel attribute on this block.
5110 if (CurBlock->TheDecl->getAttr<SentinelAttr>()) {
5111 Diag(ParamInfo.getAttributes()->getLoc(),
Fariborz Jahanian6dac16d2009-05-15 21:18:04 +00005112 diag::warn_attribute_sentinel_not_variadic) << 1;
Fariborz Jahanian157c4262009-05-14 20:53:39 +00005113 // FIXME: remove the attribute.
5114 }
Chris Lattnerc65b8bb2009-04-11 19:27:54 +00005115 QualType RetTy = T.getTypePtr()->getAsFunctionType()->getResultType();
5116
5117 // Do not allow returning a objc interface by-value.
5118 if (RetTy->isObjCInterfaceType()) {
5119 Diag(ParamInfo.getSourceRange().getBegin(),
5120 diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy;
5121 return;
5122 }
Mike Stumpc1fddff2009-02-04 22:31:32 +00005123 return;
5124 }
5125
Steve Naroff52a81c02008-09-03 18:15:37 +00005126 // Analyze arguments to block.
5127 assert(ParamInfo.getTypeObject(0).Kind == DeclaratorChunk::Function &&
5128 "Not a function declarator!");
5129 DeclaratorChunk::FunctionTypeInfo &FTI = ParamInfo.getTypeObject(0).Fun;
Mike Stump9afab102009-02-19 03:04:26 +00005130
Steve Naroff52059382008-10-10 01:28:17 +00005131 CurBlock->hasPrototype = FTI.hasPrototype;
5132 CurBlock->isVariadic = true;
Mike Stump9afab102009-02-19 03:04:26 +00005133
Steve Naroff52a81c02008-09-03 18:15:37 +00005134 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes
5135 // no arguments, not a function that takes a single void argument.
5136 if (FTI.hasPrototype &&
5137 FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
Chris Lattner5261d0c2009-03-28 19:18:32 +00005138 (!FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType().getCVRQualifiers()&&
5139 FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType())) {
Steve Naroff52a81c02008-09-03 18:15:37 +00005140 // empty arg list, don't push any params.
Steve Naroff52059382008-10-10 01:28:17 +00005141 CurBlock->isVariadic = false;
Steve Naroff52a81c02008-09-03 18:15:37 +00005142 } else if (FTI.hasPrototype) {
5143 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
Chris Lattner5261d0c2009-03-28 19:18:32 +00005144 CurBlock->Params.push_back(FTI.ArgInfo[i].Param.getAs<ParmVarDecl>());
Steve Naroff52059382008-10-10 01:28:17 +00005145 CurBlock->isVariadic = FTI.isVariadic;
Steve Naroff52a81c02008-09-03 18:15:37 +00005146 }
Steve Naroff494cb0f2009-03-13 16:56:44 +00005147 CurBlock->TheDecl->setParams(Context, &CurBlock->Params[0],
Chris Lattnerc65b8bb2009-04-11 19:27:54 +00005148 CurBlock->Params.size());
Fariborz Jahanian536f73d2009-05-19 17:08:59 +00005149 CurBlock->TheDecl->setIsVariadic(CurBlock->isVariadic);
Fariborz Jahanian262c0d72009-05-18 23:17:46 +00005150 ProcessDeclAttributes(CurBlock->TheDecl, ParamInfo);
Steve Naroff52059382008-10-10 01:28:17 +00005151 for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(),
5152 E = CurBlock->TheDecl->param_end(); AI != E; ++AI)
5153 // If this has an identifier, add it to the scope stack.
5154 if ((*AI)->getIdentifier())
5155 PushOnScopeChains(*AI, CurBlock->TheScope);
Chris Lattnerc65b8bb2009-04-11 19:27:54 +00005156
Fariborz Jahanian157c4262009-05-14 20:53:39 +00005157 // Check for a valid sentinel attribute on this block.
5158 if (!CurBlock->isVariadic && CurBlock->TheDecl->getAttr<SentinelAttr>()) {
5159 Diag(ParamInfo.getAttributes()->getLoc(),
Fariborz Jahanian6dac16d2009-05-15 21:18:04 +00005160 diag::warn_attribute_sentinel_not_variadic) << 1;
Fariborz Jahanian157c4262009-05-14 20:53:39 +00005161 // FIXME: remove the attribute.
5162 }
5163
Chris Lattnerc65b8bb2009-04-11 19:27:54 +00005164 // Analyze the return type.
5165 QualType T = GetTypeForDeclarator(ParamInfo, CurScope);
5166 QualType RetTy = T->getAsFunctionType()->getResultType();
5167
5168 // Do not allow returning a objc interface by-value.
5169 if (RetTy->isObjCInterfaceType()) {
5170 Diag(ParamInfo.getSourceRange().getBegin(),
5171 diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy;
5172 } else if (!RetTy->isDependentType())
5173 CurBlock->ReturnType = RetTy.getTypePtr();
Steve Naroff52a81c02008-09-03 18:15:37 +00005174}
5175
5176/// ActOnBlockError - If there is an error parsing a block, this callback
5177/// is invoked to pop the information about the block from the action impl.
5178void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) {
5179 // Ensure that CurBlock is deleted.
5180 llvm::OwningPtr<BlockSemaInfo> CC(CurBlock);
Mike Stump9afab102009-02-19 03:04:26 +00005181
Chris Lattnere7765e12009-04-19 05:28:12 +00005182 CurFunctionNeedsScopeChecking = CurBlock->SavedFunctionNeedsScopeChecking;
5183
Steve Naroff52a81c02008-09-03 18:15:37 +00005184 // Pop off CurBlock, handle nested blocks.
Chris Lattnereb4d4a52009-04-21 22:38:46 +00005185 PopDeclContext();
Steve Naroff52a81c02008-09-03 18:15:37 +00005186 CurBlock = CurBlock->PrevBlockInfo;
Steve Naroff52a81c02008-09-03 18:15:37 +00005187 // FIXME: Delete the ParmVarDecl objects as well???
Steve Naroff52a81c02008-09-03 18:15:37 +00005188}
5189
5190/// ActOnBlockStmtExpr - This is called when the body of a block statement
5191/// literal was successfully completed. ^(int x){...}
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005192Sema::OwningExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc,
5193 StmtArg body, Scope *CurScope) {
Chris Lattnerc14c7f02009-03-27 04:18:06 +00005194 // If blocks are disabled, emit an error.
5195 if (!LangOpts.Blocks)
5196 Diag(CaretLoc, diag::err_blocks_disable);
5197
Steve Naroff52a81c02008-09-03 18:15:37 +00005198 // Ensure that CurBlock is deleted.
5199 llvm::OwningPtr<BlockSemaInfo> BSI(CurBlock);
Steve Naroff52a81c02008-09-03 18:15:37 +00005200
Steve Naroff52059382008-10-10 01:28:17 +00005201 PopDeclContext();
5202
Steve Naroff52a81c02008-09-03 18:15:37 +00005203 // Pop off CurBlock, handle nested blocks.
5204 CurBlock = CurBlock->PrevBlockInfo;
Mike Stump9afab102009-02-19 03:04:26 +00005205
Steve Naroff52a81c02008-09-03 18:15:37 +00005206 QualType RetTy = Context.VoidTy;
5207 if (BSI->ReturnType)
5208 RetTy = QualType(BSI->ReturnType, 0);
Mike Stump9afab102009-02-19 03:04:26 +00005209
Steve Naroff52a81c02008-09-03 18:15:37 +00005210 llvm::SmallVector<QualType, 8> ArgTypes;
5211 for (unsigned i = 0, e = BSI->Params.size(); i != e; ++i)
5212 ArgTypes.push_back(BSI->Params[i]->getType());
Mike Stump9afab102009-02-19 03:04:26 +00005213
Steve Naroff52a81c02008-09-03 18:15:37 +00005214 QualType BlockTy;
5215 if (!BSI->hasPrototype)
Douglas Gregor4fa58902009-02-26 23:50:07 +00005216 BlockTy = Context.getFunctionNoProtoType(RetTy);
Steve Naroff52a81c02008-09-03 18:15:37 +00005217 else
5218 BlockTy = Context.getFunctionType(RetTy, &ArgTypes[0], ArgTypes.size(),
Argiris Kirtzidis65b99642008-10-26 16:43:14 +00005219 BSI->isVariadic, 0);
Mike Stump9afab102009-02-19 03:04:26 +00005220
Eli Friedman2b128322009-03-23 00:24:07 +00005221 // FIXME: Check that return/parameter types are complete/non-abstract
5222
Steve Naroff52a81c02008-09-03 18:15:37 +00005223 BlockTy = Context.getBlockPointerType(BlockTy);
Mike Stump9afab102009-02-19 03:04:26 +00005224
Chris Lattnere7765e12009-04-19 05:28:12 +00005225 // If needed, diagnose invalid gotos and switches in the block.
5226 if (CurFunctionNeedsScopeChecking)
5227 DiagnoseInvalidJumps(static_cast<CompoundStmt*>(body.get()));
5228 CurFunctionNeedsScopeChecking = BSI->SavedFunctionNeedsScopeChecking;
5229
Anders Carlsson39ecdcf2009-05-01 19:49:17 +00005230 BSI->TheDecl->setBody(body.takeAs<CompoundStmt>());
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005231 return Owned(new (Context) BlockExpr(BSI->TheDecl, BlockTy,
5232 BSI->hasBlockDeclRefExprs));
Steve Naroff52a81c02008-09-03 18:15:37 +00005233}
5234
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005235Sema::OwningExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc,
5236 ExprArg expr, TypeTy *type,
5237 SourceLocation RPLoc) {
Anders Carlsson36760332007-10-15 20:28:48 +00005238 QualType T = QualType::getFromOpaquePtr(type);
Chris Lattnerda139482009-04-05 15:49:53 +00005239 Expr *E = static_cast<Expr*>(expr.get());
5240 Expr *OrigExpr = E;
5241
Anders Carlsson36760332007-10-15 20:28:48 +00005242 InitBuiltinVaListType();
Eli Friedmandd2b9af2008-08-09 23:32:40 +00005243
5244 // Get the va_list type
5245 QualType VaListType = Context.getBuiltinVaListType();
Eli Friedman6f6e8922009-05-16 12:46:54 +00005246 if (VaListType->isArrayType()) {
5247 // Deal with implicit array decay; for example, on x86-64,
5248 // va_list is an array, but it's supposed to decay to
5249 // a pointer for va_arg.
Eli Friedmandd2b9af2008-08-09 23:32:40 +00005250 VaListType = Context.getArrayDecayedType(VaListType);
Eli Friedman6f6e8922009-05-16 12:46:54 +00005251 // Make sure the input expression also decays appropriately.
5252 UsualUnaryConversions(E);
5253 } else {
5254 // Otherwise, the va_list argument must be an l-value because
5255 // it is modified by va_arg.
Douglas Gregor25990972009-05-19 23:10:31 +00005256 if (!E->isTypeDependent() &&
5257 CheckForModifiableLvalue(E, BuiltinLoc, *this))
Eli Friedman6f6e8922009-05-16 12:46:54 +00005258 return ExprError();
5259 }
Eli Friedmandd2b9af2008-08-09 23:32:40 +00005260
Douglas Gregor25990972009-05-19 23:10:31 +00005261 if (!E->isTypeDependent() &&
5262 !Context.hasSameType(VaListType, E->getType())) {
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005263 return ExprError(Diag(E->getLocStart(),
5264 diag::err_first_argument_to_va_arg_not_of_type_va_list)
Chris Lattnerda139482009-04-05 15:49:53 +00005265 << OrigExpr->getType() << E->getSourceRange());
Chris Lattner89a72c52009-04-05 00:59:53 +00005266 }
Mike Stump9afab102009-02-19 03:04:26 +00005267
Eli Friedman2b128322009-03-23 00:24:07 +00005268 // FIXME: Check that type is complete/non-abstract
Anders Carlsson36760332007-10-15 20:28:48 +00005269 // FIXME: Warn if a non-POD type is passed in.
Mike Stump9afab102009-02-19 03:04:26 +00005270
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005271 expr.release();
5272 return Owned(new (Context) VAArgExpr(BuiltinLoc, E, T.getNonReferenceType(),
5273 RPLoc));
Anders Carlsson36760332007-10-15 20:28:48 +00005274}
5275
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005276Sema::OwningExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) {
Douglas Gregorad4b3792008-11-29 04:51:27 +00005277 // The type of __null will be int or long, depending on the size of
5278 // pointers on the target.
5279 QualType Ty;
5280 if (Context.Target.getPointerWidth(0) == Context.Target.getIntWidth())
5281 Ty = Context.IntTy;
5282 else
5283 Ty = Context.LongTy;
5284
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005285 return Owned(new (Context) GNUNullExpr(Ty, TokenLoc));
Douglas Gregorad4b3792008-11-29 04:51:27 +00005286}
5287
Chris Lattner005ed752008-01-04 18:04:52 +00005288bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy,
5289 SourceLocation Loc,
5290 QualType DstType, QualType SrcType,
5291 Expr *SrcExpr, const char *Flavor) {
5292 // Decode the result (notice that AST's are still created for extensions).
5293 bool isInvalid = false;
5294 unsigned DiagKind;
5295 switch (ConvTy) {
5296 default: assert(0 && "Unknown conversion type");
5297 case Compatible: return false;
Chris Lattnerd951b7b2008-01-04 18:22:42 +00005298 case PointerToInt:
Chris Lattner005ed752008-01-04 18:04:52 +00005299 DiagKind = diag::ext_typecheck_convert_pointer_int;
5300 break;
Chris Lattnerd951b7b2008-01-04 18:22:42 +00005301 case IntToPointer:
5302 DiagKind = diag::ext_typecheck_convert_int_pointer;
5303 break;
Chris Lattner005ed752008-01-04 18:04:52 +00005304 case IncompatiblePointer:
5305 DiagKind = diag::ext_typecheck_convert_incompatible_pointer;
5306 break;
Eli Friedman6ca28cb2009-03-22 23:59:44 +00005307 case IncompatiblePointerSign:
5308 DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign;
5309 break;
Chris Lattner005ed752008-01-04 18:04:52 +00005310 case FunctionVoidPointer:
5311 DiagKind = diag::ext_typecheck_convert_pointer_void_func;
5312 break;
5313 case CompatiblePointerDiscardsQualifiers:
Douglas Gregor1815b3b2008-09-12 00:47:35 +00005314 // If the qualifiers lost were because we were applying the
5315 // (deprecated) C++ conversion from a string literal to a char*
5316 // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME:
5317 // Ideally, this check would be performed in
5318 // CheckPointerTypesForAssignment. However, that would require a
5319 // bit of refactoring (so that the second argument is an
5320 // expression, rather than a type), which should be done as part
5321 // of a larger effort to fix CheckPointerTypesForAssignment for
5322 // C++ semantics.
5323 if (getLangOptions().CPlusPlus &&
5324 IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType))
5325 return false;
Chris Lattner005ed752008-01-04 18:04:52 +00005326 DiagKind = diag::ext_typecheck_convert_discards_qualifiers;
5327 break;
Steve Naroff3454b6c2008-09-04 15:10:53 +00005328 case IntToBlockPointer:
5329 DiagKind = diag::err_int_to_block_pointer;
5330 break;
5331 case IncompatibleBlockPointer:
Mike Stumpd331e752009-04-21 22:51:42 +00005332 DiagKind = diag::err_typecheck_convert_incompatible_block_pointer;
Steve Naroff3454b6c2008-09-04 15:10:53 +00005333 break;
Steve Naroff19608432008-10-14 22:18:38 +00005334 case IncompatibleObjCQualifiedId:
Mike Stump9afab102009-02-19 03:04:26 +00005335 // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since
Steve Naroff19608432008-10-14 22:18:38 +00005336 // it can give a more specific diagnostic.
5337 DiagKind = diag::warn_incompatible_qualified_id;
5338 break;
Anders Carlsson355ed052009-01-30 23:17:46 +00005339 case IncompatibleVectors:
5340 DiagKind = diag::warn_incompatible_vectors;
5341 break;
Chris Lattner005ed752008-01-04 18:04:52 +00005342 case Incompatible:
5343 DiagKind = diag::err_typecheck_convert_incompatible;
5344 isInvalid = true;
5345 break;
5346 }
Mike Stump9afab102009-02-19 03:04:26 +00005347
Chris Lattner271d4c22008-11-24 05:29:24 +00005348 Diag(Loc, DiagKind) << DstType << SrcType << Flavor
5349 << SrcExpr->getSourceRange();
Chris Lattner005ed752008-01-04 18:04:52 +00005350 return isInvalid;
5351}
Anders Carlssond5201b92008-11-30 19:50:32 +00005352
Chris Lattnereec8ae22009-04-25 21:59:05 +00005353bool Sema::VerifyIntegerConstantExpression(const Expr *E, llvm::APSInt *Result){
Eli Friedmance329412009-04-25 22:26:58 +00005354 llvm::APSInt ICEResult;
5355 if (E->isIntegerConstantExpr(ICEResult, Context)) {
5356 if (Result)
5357 *Result = ICEResult;
5358 return false;
5359 }
5360
Anders Carlssond5201b92008-11-30 19:50:32 +00005361 Expr::EvalResult EvalResult;
5362
Mike Stump9afab102009-02-19 03:04:26 +00005363 if (!E->Evaluate(EvalResult, Context) || !EvalResult.Val.isInt() ||
Anders Carlssond5201b92008-11-30 19:50:32 +00005364 EvalResult.HasSideEffects) {
5365 Diag(E->getExprLoc(), diag::err_expr_not_ice) << E->getSourceRange();
5366
5367 if (EvalResult.Diag) {
5368 // We only show the note if it's not the usual "invalid subexpression"
5369 // or if it's actually in a subexpression.
5370 if (EvalResult.Diag != diag::note_invalid_subexpr_in_ice ||
5371 E->IgnoreParens() != EvalResult.DiagExpr->IgnoreParens())
5372 Diag(EvalResult.DiagLoc, EvalResult.Diag);
5373 }
Mike Stump9afab102009-02-19 03:04:26 +00005374
Anders Carlssond5201b92008-11-30 19:50:32 +00005375 return true;
5376 }
5377
Eli Friedmance329412009-04-25 22:26:58 +00005378 Diag(E->getExprLoc(), diag::ext_expr_not_ice) <<
5379 E->getSourceRange();
Anders Carlssond5201b92008-11-30 19:50:32 +00005380
Eli Friedmance329412009-04-25 22:26:58 +00005381 if (EvalResult.Diag &&
5382 Diags.getDiagnosticLevel(diag::ext_expr_not_ice) != Diagnostic::Ignored)
5383 Diag(EvalResult.DiagLoc, EvalResult.Diag);
Mike Stump9afab102009-02-19 03:04:26 +00005384
Anders Carlssond5201b92008-11-30 19:50:32 +00005385 if (Result)
5386 *Result = EvalResult.Val.getInt();
5387 return false;
5388}