blob: 684c2dafdbaf36430c3677b8da87dcc9087d869b [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.
Argiris Kirtzidisfe5f9732009-06-30 02:34:44 +000042 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.
Argiris Kirtzidisfe5f9732009-06-30 02:34:44 +000051 isSilenced = ND->getAttr<DeprecatedAttr>();
Chris Lattnerfb1bb822009-02-16 19:35:30 +000052
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
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +000061 MD = Impl->getClassInterface()->getMethod(MD->getSelector(),
Chris Lattnerfb1bb822009-02-16 19:35:30 +000062 MD->isInstanceMethod());
Argiris Kirtzidisfe5f9732009-06-30 02:34:44 +000063 isSilenced |= MD && MD->getAttr<DeprecatedAttr>();
Chris Lattnerfb1bb822009-02-16 19:35:30 +000064 }
65 }
66 }
67
68 if (!isSilenced)
Chris Lattner2cb744b2009-02-15 22:43:40 +000069 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
70 }
71
Douglas Gregoraa57e862009-02-18 21:56:37 +000072 // See if this is a deleted function.
Douglas Gregor6f8c3682009-02-24 04:26:15 +000073 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Douglas Gregoraa57e862009-02-18 21:56:37 +000074 if (FD->isDeleted()) {
75 Diag(Loc, diag::err_deleted_function_use);
76 Diag(D->getLocation(), diag::note_unavailable_here) << true;
77 return true;
78 }
Douglas Gregor6f8c3682009-02-24 04:26:15 +000079 }
Douglas Gregoraa57e862009-02-18 21:56:37 +000080
81 // See if the decl is unavailable
Argiris Kirtzidisfe5f9732009-06-30 02:34:44 +000082 if (D->getAttr<UnavailableAttr>()) {
Chris Lattner2cb744b2009-02-15 22:43:40 +000083 Diag(Loc, diag::warn_unavailable) << D->getDeclName();
Douglas Gregoraa57e862009-02-18 21:56:37 +000084 Diag(D->getLocation(), diag::note_unavailable_here) << 0;
85 }
86
Douglas Gregoraa57e862009-02-18 21:56:37 +000087 return false;
Chris Lattner2cb744b2009-02-15 22:43:40 +000088}
89
Fariborz Jahanian180f3412009-05-13 18:09:35 +000090/// DiagnoseSentinelCalls - This routine checks on method dispatch calls
91/// (and other functions in future), which have been declared with sentinel
92/// attribute. It warns if call does not have the sentinel argument.
93///
94void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc,
95 Expr **Args, unsigned NumArgs)
96{
Argiris Kirtzidisfe5f9732009-06-30 02:34:44 +000097 const SentinelAttr *attr = D->getAttr<SentinelAttr>();
Fariborz Jahanian79d29e72009-05-13 23:20:50 +000098 if (!attr)
99 return;
Fariborz Jahanian79d29e72009-05-13 23:20:50 +0000100 int sentinelPos = attr->getSentinel();
101 int nullPos = attr->getNullPos();
Fariborz Jahanian09f2e3f2009-05-14 18:00:00 +0000102
Mike Stumpe127ae32009-05-16 07:39:55 +0000103 // FIXME. ObjCMethodDecl and FunctionDecl need be derived from the same common
104 // base class. Then we won't be needing two versions of the same code.
Fariborz Jahanian79d29e72009-05-13 23:20:50 +0000105 unsigned int i = 0;
Fariborz Jahanian09f2e3f2009-05-14 18:00:00 +0000106 bool warnNotEnoughArgs = false;
107 int isMethod = 0;
108 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
109 // skip over named parameters.
110 ObjCMethodDecl::param_iterator P, E = MD->param_end();
111 for (P = MD->param_begin(); (P != E && i < NumArgs); ++P) {
112 if (nullPos)
113 --nullPos;
114 else
115 ++i;
116 }
117 warnNotEnoughArgs = (P != E || i >= NumArgs);
118 isMethod = 1;
Mike Stump90fc78e2009-08-04 21:02:39 +0000119 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Fariborz Jahanian09f2e3f2009-05-14 18:00:00 +0000120 // skip over named parameters.
121 ObjCMethodDecl::param_iterator P, E = FD->param_end();
122 for (P = FD->param_begin(); (P != E && i < NumArgs); ++P) {
123 if (nullPos)
124 --nullPos;
125 else
126 ++i;
127 }
128 warnNotEnoughArgs = (P != E || i >= NumArgs);
Mike Stump90fc78e2009-08-04 21:02:39 +0000129 } else if (VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanianc10357d2009-05-15 20:33:25 +0000130 // block or function pointer call.
131 QualType Ty = V->getType();
132 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
133 const FunctionType *FT = Ty->isFunctionPointerType()
Ted Kremenekd00cd9e2009-07-29 21:53:49 +0000134 ? Ty->getAs<PointerType>()->getPointeeType()->getAsFunctionType()
135 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAsFunctionType();
Fariborz Jahanianc10357d2009-05-15 20:33:25 +0000136 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) {
137 unsigned NumArgsInProto = Proto->getNumArgs();
138 unsigned k;
139 for (k = 0; (k != NumArgsInProto && i < NumArgs); k++) {
140 if (nullPos)
141 --nullPos;
142 else
143 ++i;
144 }
145 warnNotEnoughArgs = (k != NumArgsInProto || i >= NumArgs);
146 }
147 if (Ty->isBlockPointerType())
148 isMethod = 2;
Mike Stump90fc78e2009-08-04 21:02:39 +0000149 } else
Fariborz Jahanianc10357d2009-05-15 20:33:25 +0000150 return;
Mike Stump90fc78e2009-08-04 21:02:39 +0000151 } else
Fariborz Jahanian09f2e3f2009-05-14 18:00:00 +0000152 return;
153
154 if (warnNotEnoughArgs) {
Fariborz Jahanian79d29e72009-05-13 23:20:50 +0000155 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName();
Fariborz Jahanian09f2e3f2009-05-14 18:00:00 +0000156 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian79d29e72009-05-13 23:20:50 +0000157 return;
158 }
159 int sentinel = i;
160 while (sentinelPos > 0 && i < NumArgs-1) {
161 --sentinelPos;
162 ++i;
163 }
164 if (sentinelPos > 0) {
165 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName();
Fariborz Jahanian09f2e3f2009-05-14 18:00:00 +0000166 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian79d29e72009-05-13 23:20:50 +0000167 return;
168 }
169 while (i < NumArgs-1) {
170 ++i;
171 ++sentinel;
172 }
173 Expr *sentinelExpr = Args[sentinel];
174 if (sentinelExpr && (!sentinelExpr->getType()->isPointerType() ||
175 !sentinelExpr->isNullPointerConstant(Context))) {
Fariborz Jahanianc10357d2009-05-15 20:33:25 +0000176 Diag(Loc, diag::warn_missing_sentinel) << isMethod;
Fariborz Jahanian09f2e3f2009-05-14 18:00:00 +0000177 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian79d29e72009-05-13 23:20:50 +0000178 }
179 return;
Fariborz Jahanian180f3412009-05-13 18:09:35 +0000180}
181
Douglas Gregor3bb30002009-02-26 21:00:50 +0000182SourceRange Sema::getExprRange(ExprTy *E) const {
183 Expr *Ex = (Expr *)E;
184 return Ex? Ex->getSourceRange() : SourceRange();
185}
186
Chris Lattner299b8842008-07-25 21:10:04 +0000187//===----------------------------------------------------------------------===//
188// Standard Promotions and Conversions
189//===----------------------------------------------------------------------===//
190
Chris Lattner299b8842008-07-25 21:10:04 +0000191/// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4).
192void Sema::DefaultFunctionArrayConversion(Expr *&E) {
193 QualType Ty = E->getType();
194 assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type");
195
Chris Lattner299b8842008-07-25 21:10:04 +0000196 if (Ty->isFunctionType())
197 ImpCastExprToType(E, Context.getPointerType(Ty));
Chris Lattner2aa68822008-07-25 21:33:13 +0000198 else if (Ty->isArrayType()) {
199 // In C90 mode, arrays only promote to pointers if the array expression is
200 // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has
201 // type 'array of type' is converted to an expression that has type 'pointer
202 // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression
203 // that has type 'array of type' ...". The relevant change is "an lvalue"
204 // (C90) to "an expression" (C99).
Argiris Kirtzidisf580b4d2008-09-11 04:25:59 +0000205 //
206 // C++ 4.2p1:
207 // An lvalue or rvalue of type "array of N T" or "array of unknown bound of
208 // T" can be converted to an rvalue of type "pointer to T".
209 //
210 if (getLangOptions().C99 || getLangOptions().CPlusPlus ||
211 E->isLvalue(Context) == Expr::LV_Valid)
Chris Lattner2aa68822008-07-25 21:33:13 +0000212 ImpCastExprToType(E, Context.getArrayDecayedType(Ty));
213 }
Chris Lattner299b8842008-07-25 21:10:04 +0000214}
215
Douglas Gregor70b307e2009-05-01 20:41:21 +0000216/// \brief Whether this is a promotable bitfield reference according
217/// to C99 6.3.1.1p2, bullet 2.
218///
219/// \returns the type this bit-field will promote to, or NULL if no
220/// promotion occurs.
221static QualType isPromotableBitField(Expr *E, ASTContext &Context) {
Douglas Gregor531434b2009-05-02 02:18:30 +0000222 FieldDecl *Field = E->getBitField();
223 if (!Field)
Douglas Gregor70b307e2009-05-01 20:41:21 +0000224 return QualType();
225
226 const BuiltinType *BT = Field->getType()->getAsBuiltinType();
227 if (!BT)
228 return QualType();
229
230 if (BT->getKind() != BuiltinType::Bool &&
231 BT->getKind() != BuiltinType::Int &&
232 BT->getKind() != BuiltinType::UInt)
233 return QualType();
234
235 llvm::APSInt BitWidthAP;
236 if (!Field->getBitWidth()->isIntegerConstantExpr(BitWidthAP, Context))
237 return QualType();
238
239 uint64_t BitWidth = BitWidthAP.getZExtValue();
240 uint64_t IntSize = Context.getTypeSize(Context.IntTy);
241 if (BitWidth < IntSize ||
242 (Field->getType()->isSignedIntegerType() && BitWidth == IntSize))
243 return Context.IntTy;
244
245 if (BitWidth == IntSize && Field->getType()->isUnsignedIntegerType())
246 return Context.UnsignedIntTy;
247
248 return QualType();
249}
250
Chris Lattner299b8842008-07-25 21:10:04 +0000251/// UsualUnaryConversions - Performs various conversions that are common to most
252/// operators (C99 6.3). The conversions of array and function types are
253/// sometimes surpressed. For example, the array->pointer conversion doesn't
254/// apply if the array is an argument to the sizeof or address (&) operators.
255/// In these instances, this routine should *not* be called.
256Expr *Sema::UsualUnaryConversions(Expr *&Expr) {
257 QualType Ty = Expr->getType();
258 assert(!Ty.isNull() && "UsualUnaryConversions - missing type");
259
Douglas Gregor70b307e2009-05-01 20:41:21 +0000260 // C99 6.3.1.1p2:
261 //
262 // The following may be used in an expression wherever an int or
263 // unsigned int may be used:
264 // - an object or expression with an integer type whose integer
265 // conversion rank is less than or equal to the rank of int
266 // and unsigned int.
267 // - A bit-field of type _Bool, int, signed int, or unsigned int.
268 //
269 // If an int can represent all values of the original type, the
270 // value is converted to an int; otherwise, it is converted to an
271 // unsigned int. These are called the integer promotions. All
272 // other types are unchanged by the integer promotions.
273 if (Ty->isPromotableIntegerType()) {
Chris Lattner299b8842008-07-25 21:10:04 +0000274 ImpCastExprToType(Expr, Context.IntTy);
Douglas Gregor70b307e2009-05-01 20:41:21 +0000275 return Expr;
276 } else {
277 QualType T = isPromotableBitField(Expr, Context);
278 if (!T.isNull()) {
279 ImpCastExprToType(Expr, T);
280 return Expr;
281 }
282 }
283
284 DefaultFunctionArrayConversion(Expr);
Chris Lattner299b8842008-07-25 21:10:04 +0000285 return Expr;
286}
287
Chris Lattner9305c3d2008-07-25 22:25:12 +0000288/// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that
289/// do not have a prototype. Arguments that have type float are promoted to
290/// double. All other argument types are converted by UsualUnaryConversions().
291void Sema::DefaultArgumentPromotion(Expr *&Expr) {
292 QualType Ty = Expr->getType();
293 assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type");
294
295 // If this is a 'float' (CVR qualified or typedef) promote to double.
296 if (const BuiltinType *BT = Ty->getAsBuiltinType())
297 if (BT->getKind() == BuiltinType::Float)
298 return ImpCastExprToType(Expr, Context.DoubleTy);
299
300 UsualUnaryConversions(Expr);
301}
302
Chris Lattner81f00ed2009-04-12 08:11:20 +0000303/// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but
304/// will warn if the resulting type is not a POD type, and rejects ObjC
305/// interfaces passed by value. This returns true if the argument type is
306/// completely illegal.
307bool Sema::DefaultVariadicArgumentPromotion(Expr *&Expr, VariadicCallType CT) {
Anders Carlsson4b8e38c2009-01-16 16:48:51 +0000308 DefaultArgumentPromotion(Expr);
309
Chris Lattner81f00ed2009-04-12 08:11:20 +0000310 if (Expr->getType()->isObjCInterfaceType()) {
311 Diag(Expr->getLocStart(),
312 diag::err_cannot_pass_objc_interface_to_vararg)
313 << Expr->getType() << CT;
314 return true;
Anders Carlsson4b8e38c2009-01-16 16:48:51 +0000315 }
Chris Lattner81f00ed2009-04-12 08:11:20 +0000316
317 if (!Expr->getType()->isPODType())
318 Diag(Expr->getLocStart(), diag::warn_cannot_pass_non_pod_arg_to_vararg)
319 << Expr->getType() << CT;
320
321 return false;
Anders Carlsson4b8e38c2009-01-16 16:48:51 +0000322}
323
324
Chris Lattner299b8842008-07-25 21:10:04 +0000325/// UsualArithmeticConversions - Performs various conversions that are common to
326/// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this
327/// routine returns the first non-arithmetic type found. The client is
328/// responsible for emitting appropriate error diagnostics.
329/// FIXME: verify the conversion rules for "complex int" are consistent with
330/// GCC.
331QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr,
332 bool isCompAssign) {
Eli Friedman3cd92882009-03-28 01:22:36 +0000333 if (!isCompAssign)
Chris Lattner299b8842008-07-25 21:10:04 +0000334 UsualUnaryConversions(lhsExpr);
Eli Friedman3cd92882009-03-28 01:22:36 +0000335
336 UsualUnaryConversions(rhsExpr);
Douglas Gregor70d26122008-11-12 17:17:38 +0000337
Chris Lattner299b8842008-07-25 21:10:04 +0000338 // For conversion purposes, we ignore any qualifiers.
339 // For example, "const float" and "float" are equivalent.
Chris Lattnerd5a56aa2008-07-26 22:17:49 +0000340 QualType lhs =
341 Context.getCanonicalType(lhsExpr->getType()).getUnqualifiedType();
342 QualType rhs =
343 Context.getCanonicalType(rhsExpr->getType()).getUnqualifiedType();
Douglas Gregor70d26122008-11-12 17:17:38 +0000344
345 // If both types are identical, no conversion is needed.
346 if (lhs == rhs)
347 return lhs;
348
349 // If either side is a non-arithmetic type (e.g. a pointer), we are done.
350 // The caller can deal with this (e.g. pointer + int).
351 if (!lhs->isArithmeticType() || !rhs->isArithmeticType())
352 return lhs;
353
Douglas Gregor6fcf2ca2009-05-02 00:36:19 +0000354 // Perform bitfield promotions.
355 QualType LHSBitfieldPromoteTy = isPromotableBitField(lhsExpr, Context);
356 if (!LHSBitfieldPromoteTy.isNull())
357 lhs = LHSBitfieldPromoteTy;
358 QualType RHSBitfieldPromoteTy = isPromotableBitField(rhsExpr, Context);
359 if (!RHSBitfieldPromoteTy.isNull())
360 rhs = RHSBitfieldPromoteTy;
361
Douglas Gregor70d26122008-11-12 17:17:38 +0000362 QualType destType = UsualArithmeticConversionsType(lhs, rhs);
Eli Friedman3cd92882009-03-28 01:22:36 +0000363 if (!isCompAssign)
Douglas Gregor70d26122008-11-12 17:17:38 +0000364 ImpCastExprToType(lhsExpr, destType);
Eli Friedman3cd92882009-03-28 01:22:36 +0000365 ImpCastExprToType(rhsExpr, destType);
Douglas Gregor70d26122008-11-12 17:17:38 +0000366 return destType;
367}
368
369QualType Sema::UsualArithmeticConversionsType(QualType lhs, QualType rhs) {
370 // Perform the usual unary conversions. We do this early so that
371 // integral promotions to "int" can allow us to exit early, in the
372 // lhs == rhs check. Also, for conversion purposes, we ignore any
373 // qualifiers. For example, "const float" and "float" are
374 // equivalent.
Chris Lattner2cb744b2009-02-15 22:43:40 +0000375 if (lhs->isPromotableIntegerType())
376 lhs = Context.IntTy;
377 else
378 lhs = lhs.getUnqualifiedType();
379 if (rhs->isPromotableIntegerType())
380 rhs = Context.IntTy;
381 else
382 rhs = rhs.getUnqualifiedType();
Douglas Gregor70d26122008-11-12 17:17:38 +0000383
Chris Lattner299b8842008-07-25 21:10:04 +0000384 // If both types are identical, no conversion is needed.
385 if (lhs == rhs)
386 return lhs;
387
388 // If either side is a non-arithmetic type (e.g. a pointer), we are done.
389 // The caller can deal with this (e.g. pointer + int).
390 if (!lhs->isArithmeticType() || !rhs->isArithmeticType())
391 return lhs;
392
393 // At this point, we have two different arithmetic types.
394
395 // Handle complex types first (C99 6.3.1.8p1).
396 if (lhs->isComplexType() || rhs->isComplexType()) {
397 // if we have an integer operand, the result is the complex type.
398 if (rhs->isIntegerType() || rhs->isComplexIntegerType()) {
399 // convert the rhs to the lhs complex type.
Chris Lattner299b8842008-07-25 21:10:04 +0000400 return lhs;
401 }
402 if (lhs->isIntegerType() || lhs->isComplexIntegerType()) {
403 // convert the lhs to the rhs complex type.
Chris Lattner299b8842008-07-25 21:10:04 +0000404 return rhs;
405 }
406 // This handles complex/complex, complex/float, or float/complex.
407 // When both operands are complex, the shorter operand is converted to the
408 // type of the longer, and that is the type of the result. This corresponds
409 // to what is done when combining two real floating-point operands.
410 // The fun begins when size promotion occur across type domains.
411 // From H&S 6.3.4: When one operand is complex and the other is a real
412 // floating-point type, the less precise type is converted, within it's
413 // real or complex domain, to the precision of the other type. For example,
414 // when combining a "long double" with a "double _Complex", the
415 // "double _Complex" is promoted to "long double _Complex".
416 int result = Context.getFloatingTypeOrder(lhs, rhs);
417
418 if (result > 0) { // The left side is bigger, convert rhs.
419 rhs = Context.getFloatingTypeOfSizeWithinDomain(lhs, rhs);
Chris Lattner299b8842008-07-25 21:10:04 +0000420 } else if (result < 0) { // The right side is bigger, convert lhs.
421 lhs = Context.getFloatingTypeOfSizeWithinDomain(rhs, lhs);
Chris Lattner299b8842008-07-25 21:10:04 +0000422 }
423 // At this point, lhs and rhs have the same rank/size. Now, make sure the
424 // domains match. This is a requirement for our implementation, C99
425 // does not require this promotion.
426 if (lhs != rhs) { // Domains don't match, we have complex/float mix.
427 if (lhs->isRealFloatingType()) { // handle "double, _Complex double".
Chris Lattner299b8842008-07-25 21:10:04 +0000428 return rhs;
429 } else { // handle "_Complex double, double".
Chris Lattner299b8842008-07-25 21:10:04 +0000430 return lhs;
431 }
432 }
433 return lhs; // The domain/size match exactly.
434 }
435 // Now handle "real" floating types (i.e. float, double, long double).
436 if (lhs->isRealFloatingType() || rhs->isRealFloatingType()) {
437 // if we have an integer operand, the result is the real floating type.
Anders Carlsson488a0792008-12-10 23:30:05 +0000438 if (rhs->isIntegerType()) {
Chris Lattner299b8842008-07-25 21:10:04 +0000439 // convert rhs to the lhs floating point type.
Chris Lattner299b8842008-07-25 21:10:04 +0000440 return lhs;
441 }
Anders Carlsson488a0792008-12-10 23:30:05 +0000442 if (rhs->isComplexIntegerType()) {
443 // convert rhs to the complex floating point type.
444 return Context.getComplexType(lhs);
445 }
446 if (lhs->isIntegerType()) {
Chris Lattner299b8842008-07-25 21:10:04 +0000447 // convert lhs to the rhs floating point type.
Chris Lattner299b8842008-07-25 21:10:04 +0000448 return rhs;
449 }
Anders Carlsson488a0792008-12-10 23:30:05 +0000450 if (lhs->isComplexIntegerType()) {
451 // convert lhs to the complex floating point type.
452 return Context.getComplexType(rhs);
453 }
Chris Lattner299b8842008-07-25 21:10:04 +0000454 // We have two real floating types, float/complex combos were handled above.
455 // Convert the smaller operand to the bigger result.
456 int result = Context.getFloatingTypeOrder(lhs, rhs);
Chris Lattner2cb744b2009-02-15 22:43:40 +0000457 if (result > 0) // convert the rhs
Chris Lattner299b8842008-07-25 21:10:04 +0000458 return lhs;
Chris Lattner2cb744b2009-02-15 22:43:40 +0000459 assert(result < 0 && "illegal float comparison");
460 return rhs; // convert the lhs
Chris Lattner299b8842008-07-25 21:10:04 +0000461 }
462 if (lhs->isComplexIntegerType() || rhs->isComplexIntegerType()) {
463 // Handle GCC complex int extension.
464 const ComplexType *lhsComplexInt = lhs->getAsComplexIntegerType();
465 const ComplexType *rhsComplexInt = rhs->getAsComplexIntegerType();
466
467 if (lhsComplexInt && rhsComplexInt) {
468 if (Context.getIntegerTypeOrder(lhsComplexInt->getElementType(),
Chris Lattner2cb744b2009-02-15 22:43:40 +0000469 rhsComplexInt->getElementType()) >= 0)
470 return lhs; // convert the rhs
Chris Lattner299b8842008-07-25 21:10:04 +0000471 return rhs;
472 } else if (lhsComplexInt && rhs->isIntegerType()) {
473 // convert the rhs to the lhs complex type.
Chris Lattner299b8842008-07-25 21:10:04 +0000474 return lhs;
475 } else if (rhsComplexInt && lhs->isIntegerType()) {
476 // convert the lhs to the rhs complex type.
Chris Lattner299b8842008-07-25 21:10:04 +0000477 return rhs;
478 }
479 }
480 // Finally, we have two differing integer types.
481 // The rules for this case are in C99 6.3.1.8
482 int compare = Context.getIntegerTypeOrder(lhs, rhs);
483 bool lhsSigned = lhs->isSignedIntegerType(),
484 rhsSigned = rhs->isSignedIntegerType();
485 QualType destType;
486 if (lhsSigned == rhsSigned) {
487 // Same signedness; use the higher-ranked type
488 destType = compare >= 0 ? lhs : rhs;
489 } else if (compare != (lhsSigned ? 1 : -1)) {
490 // The unsigned type has greater than or equal rank to the
491 // signed type, so use the unsigned type
492 destType = lhsSigned ? rhs : lhs;
493 } else if (Context.getIntWidth(lhs) != Context.getIntWidth(rhs)) {
494 // The two types are different widths; if we are here, that
495 // means the signed type is larger than the unsigned type, so
496 // use the signed type.
497 destType = lhsSigned ? lhs : rhs;
498 } else {
499 // The signed type is higher-ranked than the unsigned type,
500 // but isn't actually any bigger (like unsigned int and long
501 // on most 32-bit systems). Use the unsigned type corresponding
502 // to the signed type.
503 destType = Context.getCorrespondingUnsignedType(lhsSigned ? lhs : rhs);
504 }
Chris Lattner299b8842008-07-25 21:10:04 +0000505 return destType;
506}
507
508//===----------------------------------------------------------------------===//
509// Semantic Analysis for various Expression Types
510//===----------------------------------------------------------------------===//
511
512
Steve Naroff87d58b42007-09-16 03:34:24 +0000513/// ActOnStringLiteral - The specified tokens were lexed as pasted string
Chris Lattner4b009652007-07-25 00:24:17 +0000514/// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string
515/// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from
516/// multiple tokens. However, the common case is that StringToks points to one
517/// string.
Sebastian Redlcd883f72009-01-18 18:53:16 +0000518///
519Action::OwningExprResult
Steve Naroff87d58b42007-09-16 03:34:24 +0000520Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) {
Chris Lattner4b009652007-07-25 00:24:17 +0000521 assert(NumStringToks && "Must have at least one string!");
522
Chris Lattner9eaf2b72009-01-16 18:51:42 +0000523 StringLiteralParser Literal(StringToks, NumStringToks, PP);
Chris Lattner4b009652007-07-25 00:24:17 +0000524 if (Literal.hadError)
Sebastian Redlcd883f72009-01-18 18:53:16 +0000525 return ExprError();
Chris Lattner4b009652007-07-25 00:24:17 +0000526
527 llvm::SmallVector<SourceLocation, 4> StringTokLocs;
528 for (unsigned i = 0; i != NumStringToks; ++i)
529 StringTokLocs.push_back(StringToks[i].getLocation());
Chris Lattnera6dcce32008-02-11 00:02:17 +0000530
Chris Lattnera6dcce32008-02-11 00:02:17 +0000531 QualType StrTy = Context.CharTy;
Argiris Kirtzidis2a4e1162008-08-09 17:20:01 +0000532 if (Literal.AnyWide) StrTy = Context.getWCharType();
Chris Lattnera6dcce32008-02-11 00:02:17 +0000533 if (Literal.Pascal) StrTy = Context.UnsignedCharTy;
Douglas Gregor1815b3b2008-09-12 00:47:35 +0000534
535 // A C++ string literal has a const-qualified element type (C++ 2.13.4p1).
536 if (getLangOptions().CPlusPlus)
537 StrTy.addConst();
Sebastian Redlcd883f72009-01-18 18:53:16 +0000538
Chris Lattnera6dcce32008-02-11 00:02:17 +0000539 // Get an array type for the string, according to C99 6.4.5. This includes
540 // the nul terminator character as well as the string length for pascal
541 // strings.
542 StrTy = Context.getConstantArrayType(StrTy,
Chris Lattner14032222009-02-26 23:01:51 +0000543 llvm::APInt(32, Literal.GetNumStringChars()+1),
Chris Lattnera6dcce32008-02-11 00:02:17 +0000544 ArrayType::Normal, 0);
Chris Lattnerc3144742009-02-18 05:49:11 +0000545
Chris Lattner4b009652007-07-25 00:24:17 +0000546 // Pass &StringTokLocs[0], StringTokLocs.size() to factory!
Chris Lattneraa491192009-02-18 06:40:38 +0000547 return Owned(StringLiteral::Create(Context, Literal.GetString(),
548 Literal.GetStringLength(),
549 Literal.AnyWide, StrTy,
550 &StringTokLocs[0],
551 StringTokLocs.size()));
Chris Lattner4b009652007-07-25 00:24:17 +0000552}
553
Chris Lattnerb2ebd482008-10-20 05:16:36 +0000554/// ShouldSnapshotBlockValueReference - Return true if a reference inside of
555/// CurBlock to VD should cause it to be snapshotted (as we do for auto
556/// variables defined outside the block) or false if this is not needed (e.g.
557/// for values inside the block or for globals).
558///
Chris Lattner0b464252009-04-21 22:26:47 +0000559/// This also keeps the 'hasBlockDeclRefExprs' in the BlockSemaInfo records
560/// up-to-date.
561///
Chris Lattnerb2ebd482008-10-20 05:16:36 +0000562static bool ShouldSnapshotBlockValueReference(BlockSemaInfo *CurBlock,
563 ValueDecl *VD) {
564 // If the value is defined inside the block, we couldn't snapshot it even if
565 // we wanted to.
566 if (CurBlock->TheDecl == VD->getDeclContext())
567 return false;
568
569 // If this is an enum constant or function, it is constant, don't snapshot.
570 if (isa<EnumConstantDecl>(VD) || isa<FunctionDecl>(VD))
571 return false;
572
573 // If this is a reference to an extern, static, or global variable, no need to
574 // snapshot it.
575 // FIXME: What about 'const' variables in C++?
576 if (const VarDecl *Var = dyn_cast<VarDecl>(VD))
Chris Lattner0b464252009-04-21 22:26:47 +0000577 if (!Var->hasLocalStorage())
578 return false;
579
580 // Blocks that have these can't be constant.
581 CurBlock->hasBlockDeclRefExprs = true;
582
583 // If we have nested blocks, the decl may be declared in an outer block (in
584 // which case that outer block doesn't get "hasBlockDeclRefExprs") or it may
585 // be defined outside all of the current blocks (in which case the blocks do
586 // all get the bit). Walk the nesting chain.
587 for (BlockSemaInfo *NextBlock = CurBlock->PrevBlockInfo; NextBlock;
588 NextBlock = NextBlock->PrevBlockInfo) {
589 // If we found the defining block for the variable, don't mark the block as
590 // having a reference outside it.
591 if (NextBlock->TheDecl == VD->getDeclContext())
592 break;
593
594 // Otherwise, the DeclRef from the inner block causes the outer one to need
595 // a snapshot as well.
596 NextBlock->hasBlockDeclRefExprs = true;
597 }
Chris Lattnerb2ebd482008-10-20 05:16:36 +0000598
599 return true;
600}
601
602
603
Steve Naroff0acc9c92007-09-15 18:49:24 +0000604/// ActOnIdentifierExpr - The parser read an identifier in expression context,
Chris Lattner4b009652007-07-25 00:24:17 +0000605/// validate it per-C99 6.5.1. HasTrailingLParen indicates whether this
Steve Naroffe50e14c2008-03-19 23:46:26 +0000606/// identifier is used in a function call context.
Sebastian Redlcd883f72009-01-18 18:53:16 +0000607/// SS is only used for a C++ qualified-id (foo::bar) to indicate the
Argiris Kirtzidis054a2632008-11-08 17:17:31 +0000608/// class or namespace that the identifier must be a member of.
Sebastian Redlcd883f72009-01-18 18:53:16 +0000609Sema::OwningExprResult Sema::ActOnIdentifierExpr(Scope *S, SourceLocation Loc,
610 IdentifierInfo &II,
611 bool HasTrailingLParen,
Sebastian Redl0c9da212009-02-03 20:19:35 +0000612 const CXXScopeSpec *SS,
613 bool isAddressOfOperand) {
614 return ActOnDeclarationNameExpr(S, Loc, &II, HasTrailingLParen, SS,
Douglas Gregor4646f9c2009-02-04 15:01:18 +0000615 isAddressOfOperand);
Douglas Gregoraee3bf82008-11-18 15:03:34 +0000616}
617
Douglas Gregor566782a2009-01-06 05:10:23 +0000618/// BuildDeclRefExpr - Build either a DeclRefExpr or a
619/// QualifiedDeclRefExpr based on whether or not SS is a
620/// nested-name-specifier.
Anders Carlsson4571d812009-06-24 00:10:43 +0000621Sema::OwningExprResult
Sebastian Redl0c9da212009-02-03 20:19:35 +0000622Sema::BuildDeclRefExpr(NamedDecl *D, QualType Ty, SourceLocation Loc,
623 bool TypeDependent, bool ValueDependent,
624 const CXXScopeSpec *SS) {
Anders Carlsson9bd48662009-06-26 19:16:07 +0000625 if (Context.getCanonicalType(Ty) == Context.UndeducedAutoTy) {
626 Diag(Loc,
627 diag::err_auto_variable_cannot_appear_in_own_initializer)
628 << D->getDeclName();
629 return ExprError();
630 }
Anders Carlsson4571d812009-06-24 00:10:43 +0000631
632 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
633 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
634 if (const FunctionDecl *FD = MD->getParent()->isLocalClass()) {
635 if (VD->hasLocalStorage() && VD->getDeclContext() != CurContext) {
636 Diag(Loc, diag::err_reference_to_local_var_in_enclosing_function)
637 << D->getIdentifier() << FD->getDeclName();
638 Diag(D->getLocation(), diag::note_local_variable_declared_here)
639 << D->getIdentifier();
640 return ExprError();
641 }
642 }
643 }
644 }
645
Douglas Gregor98189262009-06-19 23:52:42 +0000646 MarkDeclarationReferenced(Loc, D);
Anders Carlsson4571d812009-06-24 00:10:43 +0000647
648 Expr *E;
Douglas Gregor7e508262009-03-19 03:51:16 +0000649 if (SS && !SS->isEmpty()) {
Anders Carlsson4571d812009-06-24 00:10:43 +0000650 E = new (Context) QualifiedDeclRefExpr(D, Ty, Loc, TypeDependent,
651 ValueDependent, SS->getRange(),
Douglas Gregor041e9292009-03-26 23:56:24 +0000652 static_cast<NestedNameSpecifier *>(SS->getScopeRep()));
Douglas Gregor7e508262009-03-19 03:51:16 +0000653 } else
Anders Carlsson4571d812009-06-24 00:10:43 +0000654 E = new (Context) DeclRefExpr(D, Ty, Loc, TypeDependent, ValueDependent);
655
656 return Owned(E);
Douglas Gregor566782a2009-01-06 05:10:23 +0000657}
658
Douglas Gregor723d3332009-01-07 00:43:41 +0000659/// getObjectForAnonymousRecordDecl - Retrieve the (unnamed) field or
660/// variable corresponding to the anonymous union or struct whose type
661/// is Record.
Douglas Gregorc55b0b02009-04-09 21:40:53 +0000662static Decl *getObjectForAnonymousRecordDecl(ASTContext &Context,
663 RecordDecl *Record) {
Douglas Gregor723d3332009-01-07 00:43:41 +0000664 assert(Record->isAnonymousStructOrUnion() &&
665 "Record must be an anonymous struct or union!");
666
Mike Stumpe127ae32009-05-16 07:39:55 +0000667 // FIXME: Once Decls are directly linked together, this will be an O(1)
668 // operation rather than a slow walk through DeclContext's vector (which
669 // itself will be eliminated). DeclGroups might make this even better.
Douglas Gregor723d3332009-01-07 00:43:41 +0000670 DeclContext *Ctx = Record->getDeclContext();
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000671 for (DeclContext::decl_iterator D = Ctx->decls_begin(),
672 DEnd = Ctx->decls_end();
Douglas Gregor723d3332009-01-07 00:43:41 +0000673 D != DEnd; ++D) {
674 if (*D == Record) {
675 // The object for the anonymous struct/union directly
676 // follows its type in the list of declarations.
677 ++D;
678 assert(D != DEnd && "Missing object for anonymous record");
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000679 assert(!cast<NamedDecl>(*D)->getDeclName() && "Decl should be unnamed");
Douglas Gregor723d3332009-01-07 00:43:41 +0000680 return *D;
681 }
682 }
683
684 assert(false && "Missing object for anonymous record");
685 return 0;
686}
687
Douglas Gregorcc94ab72009-04-15 06:41:24 +0000688/// \brief Given a field that represents a member of an anonymous
689/// struct/union, build the path from that field's context to the
690/// actual member.
691///
692/// Construct the sequence of field member references we'll have to
693/// perform to get to the field in the anonymous union/struct. The
694/// list of members is built from the field outward, so traverse it
695/// backwards to go from an object in the current context to the field
696/// we found.
697///
698/// \returns The variable from which the field access should begin,
699/// for an anonymous struct/union that is not a member of another
700/// class. Otherwise, returns NULL.
701VarDecl *Sema::BuildAnonymousStructUnionMemberPath(FieldDecl *Field,
702 llvm::SmallVectorImpl<FieldDecl *> &Path) {
Douglas Gregor723d3332009-01-07 00:43:41 +0000703 assert(Field->getDeclContext()->isRecord() &&
704 cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion()
705 && "Field must be stored inside an anonymous struct or union");
706
Douglas Gregorcc94ab72009-04-15 06:41:24 +0000707 Path.push_back(Field);
Douglas Gregor723d3332009-01-07 00:43:41 +0000708 VarDecl *BaseObject = 0;
709 DeclContext *Ctx = Field->getDeclContext();
710 do {
711 RecordDecl *Record = cast<RecordDecl>(Ctx);
Douglas Gregorc55b0b02009-04-09 21:40:53 +0000712 Decl *AnonObject = getObjectForAnonymousRecordDecl(Context, Record);
Douglas Gregor723d3332009-01-07 00:43:41 +0000713 if (FieldDecl *AnonField = dyn_cast<FieldDecl>(AnonObject))
Douglas Gregorcc94ab72009-04-15 06:41:24 +0000714 Path.push_back(AnonField);
Douglas Gregor723d3332009-01-07 00:43:41 +0000715 else {
716 BaseObject = cast<VarDecl>(AnonObject);
717 break;
718 }
719 Ctx = Ctx->getParent();
720 } while (Ctx->isRecord() &&
721 cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion());
Douglas Gregorcc94ab72009-04-15 06:41:24 +0000722
723 return BaseObject;
724}
725
726Sema::OwningExprResult
727Sema::BuildAnonymousStructUnionMemberReference(SourceLocation Loc,
728 FieldDecl *Field,
729 Expr *BaseObjectExpr,
730 SourceLocation OpLoc) {
731 llvm::SmallVector<FieldDecl *, 4> AnonFields;
732 VarDecl *BaseObject = BuildAnonymousStructUnionMemberPath(Field,
733 AnonFields);
734
Douglas Gregor723d3332009-01-07 00:43:41 +0000735 // Build the expression that refers to the base object, from
736 // which we will build a sequence of member references to each
737 // of the anonymous union objects and, eventually, the field we
738 // found via name lookup.
739 bool BaseObjectIsPointer = false;
740 unsigned ExtraQuals = 0;
741 if (BaseObject) {
742 // BaseObject is an anonymous struct/union variable (and is,
743 // therefore, not part of another non-anonymous record).
Ted Kremenek0c97e042009-02-07 01:47:29 +0000744 if (BaseObjectExpr) BaseObjectExpr->Destroy(Context);
Douglas Gregor98189262009-06-19 23:52:42 +0000745 MarkDeclarationReferenced(Loc, BaseObject);
Steve Naroff774e4152009-01-21 00:14:39 +0000746 BaseObjectExpr = new (Context) DeclRefExpr(BaseObject,BaseObject->getType(),
Mike Stump9afab102009-02-19 03:04:26 +0000747 SourceLocation());
Douglas Gregor723d3332009-01-07 00:43:41 +0000748 ExtraQuals
749 = Context.getCanonicalType(BaseObject->getType()).getCVRQualifiers();
750 } else if (BaseObjectExpr) {
751 // The caller provided the base object expression. Determine
752 // whether its a pointer and whether it adds any qualifiers to the
753 // anonymous struct/union fields we're looking into.
754 QualType ObjectType = BaseObjectExpr->getType();
Ted Kremenekd00cd9e2009-07-29 21:53:49 +0000755 if (const PointerType *ObjectPtr = ObjectType->getAs<PointerType>()) {
Douglas Gregor723d3332009-01-07 00:43:41 +0000756 BaseObjectIsPointer = true;
757 ObjectType = ObjectPtr->getPointeeType();
758 }
759 ExtraQuals = Context.getCanonicalType(ObjectType).getCVRQualifiers();
760 } else {
761 // We've found a member of an anonymous struct/union that is
762 // inside a non-anonymous struct/union, so in a well-formed
763 // program our base object expression is "this".
764 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
765 if (!MD->isStatic()) {
766 QualType AnonFieldType
767 = Context.getTagDeclType(
768 cast<RecordDecl>(AnonFields.back()->getDeclContext()));
769 QualType ThisType = Context.getTagDeclType(MD->getParent());
770 if ((Context.getCanonicalType(AnonFieldType)
771 == Context.getCanonicalType(ThisType)) ||
772 IsDerivedFrom(ThisType, AnonFieldType)) {
773 // Our base object expression is "this".
Steve Naroff774e4152009-01-21 00:14:39 +0000774 BaseObjectExpr = new (Context) CXXThisExpr(SourceLocation(),
Mike Stump9afab102009-02-19 03:04:26 +0000775 MD->getThisType(Context));
Douglas Gregor723d3332009-01-07 00:43:41 +0000776 BaseObjectIsPointer = true;
777 }
778 } else {
Sebastian Redlcd883f72009-01-18 18:53:16 +0000779 return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method)
780 << Field->getDeclName());
Douglas Gregor723d3332009-01-07 00:43:41 +0000781 }
782 ExtraQuals = MD->getTypeQualifiers();
783 }
784
785 if (!BaseObjectExpr)
Sebastian Redlcd883f72009-01-18 18:53:16 +0000786 return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use)
787 << Field->getDeclName());
Douglas Gregor723d3332009-01-07 00:43:41 +0000788 }
789
790 // Build the implicit member references to the field of the
791 // anonymous struct/union.
792 Expr *Result = BaseObjectExpr;
Mon P Wang04d89cb2009-07-22 03:08:17 +0000793 unsigned BaseAddrSpace = BaseObjectExpr->getType().getAddressSpace();
Douglas Gregor723d3332009-01-07 00:43:41 +0000794 for (llvm::SmallVector<FieldDecl *, 4>::reverse_iterator
795 FI = AnonFields.rbegin(), FIEnd = AnonFields.rend();
796 FI != FIEnd; ++FI) {
797 QualType MemberType = (*FI)->getType();
798 if (!(*FI)->isMutable()) {
799 unsigned combinedQualifiers
800 = MemberType.getCVRQualifiers() | ExtraQuals;
801 MemberType = MemberType.getQualifiedType(combinedQualifiers);
802 }
Mon P Wang04d89cb2009-07-22 03:08:17 +0000803 if (BaseAddrSpace != MemberType.getAddressSpace())
804 MemberType = Context.getAddrSpaceQualType(MemberType, BaseAddrSpace);
Douglas Gregor98189262009-06-19 23:52:42 +0000805 MarkDeclarationReferenced(Loc, *FI);
Steve Naroff774e4152009-01-21 00:14:39 +0000806 Result = new (Context) MemberExpr(Result, BaseObjectIsPointer, *FI,
807 OpLoc, MemberType);
Douglas Gregor723d3332009-01-07 00:43:41 +0000808 BaseObjectIsPointer = false;
809 ExtraQuals = Context.getCanonicalType(MemberType).getCVRQualifiers();
Douglas Gregor723d3332009-01-07 00:43:41 +0000810 }
811
Sebastian Redlcd883f72009-01-18 18:53:16 +0000812 return Owned(Result);
Douglas Gregor723d3332009-01-07 00:43:41 +0000813}
814
Douglas Gregoraee3bf82008-11-18 15:03:34 +0000815/// ActOnDeclarationNameExpr - The parser has read some kind of name
816/// (e.g., a C++ id-expression (C++ [expr.prim]p1)). This routine
817/// performs lookup on that name and returns an expression that refers
818/// to that name. This routine isn't directly called from the parser,
819/// because the parser doesn't know about DeclarationName. Rather,
820/// this routine is called by ActOnIdentifierExpr,
821/// ActOnOperatorFunctionIdExpr, and ActOnConversionFunctionExpr,
822/// which form the DeclarationName from the corresponding syntactic
823/// forms.
824///
825/// HasTrailingLParen indicates whether this identifier is used in a
826/// function call context. LookupCtx is only used for a C++
827/// qualified-id (foo::bar) to indicate the class or namespace that
828/// the identifier must be a member of.
Douglas Gregora133e262008-12-06 00:22:45 +0000829///
Sebastian Redl0c9da212009-02-03 20:19:35 +0000830/// isAddressOfOperand means that this expression is the direct operand
831/// of an address-of operator. This matters because this is the only
832/// situation where a qualified name referencing a non-static member may
833/// appear outside a member function of this class.
Sebastian Redlcd883f72009-01-18 18:53:16 +0000834Sema::OwningExprResult
835Sema::ActOnDeclarationNameExpr(Scope *S, SourceLocation Loc,
836 DeclarationName Name, bool HasTrailingLParen,
Douglas Gregor4646f9c2009-02-04 15:01:18 +0000837 const CXXScopeSpec *SS,
Sebastian Redl0c9da212009-02-03 20:19:35 +0000838 bool isAddressOfOperand) {
Chris Lattnerc72d22d2008-03-31 00:36:02 +0000839 // Could be enum-constant, value decl, instance variable, etc.
Douglas Gregor52ae30c2009-01-30 01:04:22 +0000840 if (SS && SS->isInvalid())
841 return ExprError();
Douglas Gregor47bde7c2009-03-19 17:26:29 +0000842
843 // C++ [temp.dep.expr]p3:
844 // An id-expression is type-dependent if it contains:
845 // -- a nested-name-specifier that contains a class-name that
846 // names a dependent type.
Douglas Gregorf3a200f2009-05-29 14:49:33 +0000847 // FIXME: Member of the current instantiation.
Douglas Gregor47bde7c2009-03-19 17:26:29 +0000848 if (SS && isDependentScopeSpecifier(*SS)) {
Douglas Gregor1e589cc2009-03-26 23:50:42 +0000849 return Owned(new (Context) UnresolvedDeclRefExpr(Name, Context.DependentTy,
850 Loc, SS->getRange(),
Anders Carlsson4e8d5692009-07-09 00:05:08 +0000851 static_cast<NestedNameSpecifier *>(SS->getScopeRep()),
852 isAddressOfOperand));
Douglas Gregor47bde7c2009-03-19 17:26:29 +0000853 }
854
Douglas Gregor411889e2009-02-13 23:20:09 +0000855 LookupResult Lookup = LookupParsedName(S, SS, Name, LookupOrdinaryName,
856 false, true, Loc);
Douglas Gregor29dfa2f2009-01-15 00:26:24 +0000857
Sebastian Redlcd883f72009-01-18 18:53:16 +0000858 if (Lookup.isAmbiguous()) {
859 DiagnoseAmbiguousLookup(Lookup, Name, Loc,
860 SS && SS->isSet() ? SS->getRange()
861 : SourceRange());
862 return ExprError();
Chris Lattnerf3ce8572009-04-24 22:30:50 +0000863 }
864
865 NamedDecl *D = Lookup.getAsDecl();
Douglas Gregora133e262008-12-06 00:22:45 +0000866
Chris Lattnerc72d22d2008-03-31 00:36:02 +0000867 // If this reference is in an Objective-C method, then ivar lookup happens as
868 // well.
Douglas Gregoraee3bf82008-11-18 15:03:34 +0000869 IdentifierInfo *II = Name.getAsIdentifierInfo();
870 if (II && getCurMethodDecl()) {
Chris Lattnerc72d22d2008-03-31 00:36:02 +0000871 // There are two cases to handle here. 1) scoped lookup could have failed,
872 // in which case we should look for an ivar. 2) scoped lookup could have
Fariborz Jahanian67502db2009-03-02 21:55:29 +0000873 // found a decl, but that decl is outside the current instance method (i.e.
874 // a global variable). In these two cases, we do a lookup for an ivar with
875 // this name, if the lookup sucedes, we replace it our current decl.
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000876 if (D == 0 || D->isDefinedOutsideFunctionOrMethod()) {
Argiris Kirtzidis95256e62008-06-28 06:07:14 +0000877 ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface();
Fariborz Jahaniandd71e752009-03-03 01:21:12 +0000878 ObjCInterfaceDecl *ClassDeclared;
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000879 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) {
Chris Lattner2a3bef92009-02-16 17:19:12 +0000880 // Check if referencing a field with __attribute__((deprecated)).
Douglas Gregoraa57e862009-02-18 21:56:37 +0000881 if (DiagnoseUseOfDecl(IV, Loc))
882 return ExprError();
Chris Lattnerf3ce8572009-04-24 22:30:50 +0000883
884 // If we're referencing an invalid decl, just return this as a silent
885 // error node. The error diagnostic was already emitted on the decl.
886 if (IV->isInvalidDecl())
887 return ExprError();
888
Fariborz Jahanian67502db2009-03-02 21:55:29 +0000889 bool IsClsMethod = getCurMethodDecl()->isClassMethod();
890 // If a class method attemps to use a free standing ivar, this is
891 // an error.
892 if (IsClsMethod && D && !D->isDefinedOutsideFunctionOrMethod())
893 return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method)
894 << IV->getDeclName());
895 // If a class method uses a global variable, even if an ivar with
896 // same name exists, use the global.
897 if (!IsClsMethod) {
Fariborz Jahaniandd71e752009-03-03 01:21:12 +0000898 if (IV->getAccessControl() == ObjCIvarDecl::Private &&
899 ClassDeclared != IFace)
900 Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName();
Mike Stumpe127ae32009-05-16 07:39:55 +0000901 // FIXME: This should use a new expr for a direct reference, don't
902 // turn this into Self->ivar, just return a BareIVarExpr or something.
Fariborz Jahanian67502db2009-03-02 21:55:29 +0000903 IdentifierInfo &II = Context.Idents.get("self");
Argiris Kirtzidis3bb49042009-07-18 08:49:37 +0000904 OwningExprResult SelfExpr = ActOnIdentifierExpr(S, SourceLocation(),
905 II, false);
Douglas Gregor98189262009-06-19 23:52:42 +0000906 MarkDeclarationReferenced(Loc, IV);
Daniel Dunbarf5254bd2009-04-21 01:19:28 +0000907 return Owned(new (Context)
908 ObjCIvarRefExpr(IV, IV->getType(), Loc,
Anders Carlsson39ecdcf2009-05-01 19:49:17 +0000909 SelfExpr.takeAs<Expr>(), true, true));
Fariborz Jahanian67502db2009-03-02 21:55:29 +0000910 }
Chris Lattnerc72d22d2008-03-31 00:36:02 +0000911 }
Mike Stump90fc78e2009-08-04 21:02:39 +0000912 } else if (getCurMethodDecl()->isInstanceMethod()) {
Fariborz Jahanian67502db2009-03-02 21:55:29 +0000913 // We should warn if a local variable hides an ivar.
914 ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface();
Fariborz Jahaniandd71e752009-03-03 01:21:12 +0000915 ObjCInterfaceDecl *ClassDeclared;
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000916 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) {
Fariborz Jahaniandd71e752009-03-03 01:21:12 +0000917 if (IV->getAccessControl() != ObjCIvarDecl::Private ||
918 IFace == ClassDeclared)
Chris Lattnerf3ce8572009-04-24 22:30:50 +0000919 Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName();
Fariborz Jahaniandd71e752009-03-03 01:21:12 +0000920 }
Fariborz Jahanian67502db2009-03-02 21:55:29 +0000921 }
Steve Naroff0ccfaa42008-08-10 19:10:41 +0000922 // Needed to implement property "super.method" notation.
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000923 if (D == 0 && II->isStr("super")) {
Steve Naroffe3aa06f2009-03-05 20:12:00 +0000924 QualType T;
925
926 if (getCurMethodDecl()->isInstanceMethod())
Steve Naroff329ec222009-07-10 23:34:53 +0000927 T = Context.getObjCObjectPointerType(Context.getObjCInterfaceType(
928 getCurMethodDecl()->getClassInterface()));
Steve Naroffe3aa06f2009-03-05 20:12:00 +0000929 else
930 T = Context.getObjCClassType();
Steve Naroff774e4152009-01-21 00:14:39 +0000931 return Owned(new (Context) ObjCSuperExpr(Loc, T));
Steve Naroff6f786252008-06-02 23:03:37 +0000932 }
Chris Lattnerc72d22d2008-03-31 00:36:02 +0000933 }
Douglas Gregore2d88fd2009-02-16 19:28:42 +0000934
Douglas Gregoraa57e862009-02-18 21:56:37 +0000935 // Determine whether this name might be a candidate for
936 // argument-dependent lookup.
937 bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) &&
938 HasTrailingLParen;
939
940 if (ADL && D == 0) {
Douglas Gregore2d88fd2009-02-16 19:28:42 +0000941 // We've seen something of the form
942 //
943 // identifier(
944 //
945 // and we did not find any entity by the name
946 // "identifier". However, this identifier is still subject to
947 // argument-dependent lookup, so keep track of the name.
948 return Owned(new (Context) UnresolvedFunctionNameExpr(Name,
949 Context.OverloadTy,
950 Loc));
951 }
952
Chris Lattner4b009652007-07-25 00:24:17 +0000953 if (D == 0) {
954 // Otherwise, this could be an implicitly declared function reference (legal
955 // in C90, extension in C99).
Douglas Gregoraee3bf82008-11-18 15:03:34 +0000956 if (HasTrailingLParen && II &&
Chris Lattnerc72d22d2008-03-31 00:36:02 +0000957 !getLangOptions().CPlusPlus) // Not in C++.
Douglas Gregoraee3bf82008-11-18 15:03:34 +0000958 D = ImplicitlyDefineFunction(Loc, *II, S);
Chris Lattner4b009652007-07-25 00:24:17 +0000959 else {
960 // If this name wasn't predeclared and if this is not a function call,
961 // diagnose the problem.
Argiris Kirtzidis054a2632008-11-08 17:17:31 +0000962 if (SS && !SS->isEmpty())
Sebastian Redlcd883f72009-01-18 18:53:16 +0000963 return ExprError(Diag(Loc, diag::err_typecheck_no_member)
964 << Name << SS->getRange());
Douglas Gregoraee3bf82008-11-18 15:03:34 +0000965 else if (Name.getNameKind() == DeclarationName::CXXOperatorName ||
966 Name.getNameKind() == DeclarationName::CXXConversionFunctionName)
Sebastian Redlcd883f72009-01-18 18:53:16 +0000967 return ExprError(Diag(Loc, diag::err_undeclared_use)
968 << Name.getAsString());
Argiris Kirtzidis054a2632008-11-08 17:17:31 +0000969 else
Sebastian Redlcd883f72009-01-18 18:53:16 +0000970 return ExprError(Diag(Loc, diag::err_undeclared_var_use) << Name);
Chris Lattner4b009652007-07-25 00:24:17 +0000971 }
972 }
Douglas Gregor6ef403d2009-06-30 15:47:41 +0000973
974 if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
975 // Warn about constructs like:
976 // if (void *X = foo()) { ... } else { X }.
977 // In the else block, the pointer is always false.
978
979 // FIXME: In a template instantiation, we don't have scope
980 // information to check this property.
981 if (Var->isDeclaredInCondition() && Var->getType()->isScalarType()) {
982 Scope *CheckS = S;
983 while (CheckS) {
984 if (CheckS->isWithinElse() &&
985 CheckS->getControlParent()->isDeclScope(DeclPtrTy::make(Var))) {
986 if (Var->getType()->isBooleanType())
987 ExprError(Diag(Loc, diag::warn_value_always_false)
988 << Var->getDeclName());
989 else
990 ExprError(Diag(Loc, diag::warn_value_always_zero)
991 << Var->getDeclName());
992 break;
993 }
994
995 // Move up one more control parent to check again.
996 CheckS = CheckS->getControlParent();
997 if (CheckS)
998 CheckS = CheckS->getParent();
999 }
1000 }
1001 } else if (FunctionDecl *Func = dyn_cast<FunctionDecl>(D)) {
1002 if (!getLangOptions().CPlusPlus && !Func->hasPrototype()) {
1003 // C99 DR 316 says that, if a function type comes from a
1004 // function definition (without a prototype), that type is only
1005 // used for checking compatibility. Therefore, when referencing
1006 // the function, we pretend that we don't have the full function
1007 // type.
1008 if (DiagnoseUseOfDecl(Func, Loc))
1009 return ExprError();
Douglas Gregor723d3332009-01-07 00:43:41 +00001010
Douglas Gregor6ef403d2009-06-30 15:47:41 +00001011 QualType T = Func->getType();
1012 QualType NoProtoType = T;
1013 if (const FunctionProtoType *Proto = T->getAsFunctionProtoType())
1014 NoProtoType = Context.getFunctionNoProtoType(Proto->getResultType());
1015 return BuildDeclRefExpr(Func, NoProtoType, Loc, false, false, SS);
1016 }
1017 }
1018
1019 return BuildDeclarationNameExpr(Loc, D, HasTrailingLParen, SS, isAddressOfOperand);
1020}
Fariborz Jahanian80b859e2009-07-29 18:40:24 +00001021/// \brief Cast member's object to its own class if necessary.
Fariborz Jahanian843336e2009-07-29 19:40:11 +00001022bool
Fariborz Jahanian80b859e2009-07-29 18:40:24 +00001023Sema::PerformObjectMemberConversion(Expr *&From, NamedDecl *Member) {
1024 if (FieldDecl *FD = dyn_cast<FieldDecl>(Member))
1025 if (CXXRecordDecl *RD =
1026 dyn_cast<CXXRecordDecl>(FD->getDeclContext())) {
1027 QualType DestType =
1028 Context.getCanonicalType(Context.getTypeDeclType(RD));
Fariborz Jahanian3ae1c802009-07-29 20:41:46 +00001029 if (DestType->isDependentType() || From->getType()->isDependentType())
1030 return false;
1031 QualType FromRecordType = From->getType();
1032 QualType DestRecordType = DestType;
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00001033 if (FromRecordType->getAs<PointerType>()) {
Fariborz Jahanian3ae1c802009-07-29 20:41:46 +00001034 DestType = Context.getPointerType(DestType);
1035 FromRecordType = FromRecordType->getPointeeType();
Fariborz Jahanian80b859e2009-07-29 18:40:24 +00001036 }
Fariborz Jahanian3ae1c802009-07-29 20:41:46 +00001037 if (!Context.hasSameUnqualifiedType(FromRecordType, DestRecordType) &&
1038 CheckDerivedToBaseConversion(FromRecordType,
1039 DestRecordType,
1040 From->getSourceRange().getBegin(),
1041 From->getSourceRange()))
1042 return true;
Anders Carlsson85186942009-07-31 01:23:52 +00001043 ImpCastExprToType(From, DestType, CastExpr::CK_DerivedToBase,
1044 /*isLvalue=*/true);
Fariborz Jahanian80b859e2009-07-29 18:40:24 +00001045 }
Fariborz Jahanian843336e2009-07-29 19:40:11 +00001046 return false;
Fariborz Jahanian80b859e2009-07-29 18:40:24 +00001047}
Douglas Gregor6ef403d2009-06-30 15:47:41 +00001048
1049/// \brief Complete semantic analysis for a reference to the given declaration.
1050Sema::OwningExprResult
1051Sema::BuildDeclarationNameExpr(SourceLocation Loc, NamedDecl *D,
1052 bool HasTrailingLParen,
1053 const CXXScopeSpec *SS,
1054 bool isAddressOfOperand) {
1055 assert(D && "Cannot refer to a NULL declaration");
1056 DeclarationName Name = D->getDeclName();
1057
Sebastian Redl0c9da212009-02-03 20:19:35 +00001058 // If this is an expression of the form &Class::member, don't build an
1059 // implicit member ref, because we want a pointer to the member in general,
1060 // not any specific instance's member.
1061 if (isAddressOfOperand && SS && !SS->isEmpty() && !HasTrailingLParen) {
Douglas Gregor734b4ba2009-03-19 00:18:19 +00001062 DeclContext *DC = computeDeclContext(*SS);
Douglas Gregor09be81b2009-02-04 17:27:36 +00001063 if (D && isa<CXXRecordDecl>(DC)) {
Sebastian Redl0c9da212009-02-03 20:19:35 +00001064 QualType DType;
1065 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
1066 DType = FD->getType().getNonReferenceType();
1067 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
1068 DType = Method->getType();
1069 } else if (isa<OverloadedFunctionDecl>(D)) {
1070 DType = Context.OverloadTy;
1071 }
1072 // Could be an inner type. That's diagnosed below, so ignore it here.
1073 if (!DType.isNull()) {
1074 // The pointer is type- and value-dependent if it points into something
1075 // dependent.
Douglas Gregorf3a200f2009-05-29 14:49:33 +00001076 bool Dependent = DC->isDependentContext();
Anders Carlsson4571d812009-06-24 00:10:43 +00001077 return BuildDeclRefExpr(D, DType, Loc, Dependent, Dependent, SS);
Sebastian Redl0c9da212009-02-03 20:19:35 +00001078 }
1079 }
1080 }
1081
Douglas Gregor723d3332009-01-07 00:43:41 +00001082 // We may have found a field within an anonymous union or struct
1083 // (C++ [class.union]).
1084 if (FieldDecl *FD = dyn_cast<FieldDecl>(D))
1085 if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion())
1086 return BuildAnonymousStructUnionMemberReference(Loc, FD);
Sebastian Redlcd883f72009-01-18 18:53:16 +00001087
Douglas Gregor3257fb52008-12-22 05:46:06 +00001088 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
1089 if (!MD->isStatic()) {
1090 // C++ [class.mfct.nonstatic]p2:
1091 // [...] if name lookup (3.4.1) resolves the name in the
1092 // id-expression to a nonstatic nontype member of class X or of
1093 // a base class of X, the id-expression is transformed into a
1094 // class member access expression (5.2.5) using (*this) (9.3.2)
1095 // as the postfix-expression to the left of the '.' operator.
1096 DeclContext *Ctx = 0;
1097 QualType MemberType;
1098 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
1099 Ctx = FD->getDeclContext();
1100 MemberType = FD->getType();
1101
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00001102 if (const ReferenceType *RefType = MemberType->getAs<ReferenceType>())
Douglas Gregor3257fb52008-12-22 05:46:06 +00001103 MemberType = RefType->getPointeeType();
1104 else if (!FD->isMutable()) {
1105 unsigned combinedQualifiers
1106 = MemberType.getCVRQualifiers() | MD->getTypeQualifiers();
1107 MemberType = MemberType.getQualifiedType(combinedQualifiers);
1108 }
1109 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
1110 if (!Method->isStatic()) {
1111 Ctx = Method->getParent();
1112 MemberType = Method->getType();
1113 }
1114 } else if (OverloadedFunctionDecl *Ovl
1115 = dyn_cast<OverloadedFunctionDecl>(D)) {
1116 for (OverloadedFunctionDecl::function_iterator
1117 Func = Ovl->function_begin(),
1118 FuncEnd = Ovl->function_end();
1119 Func != FuncEnd; ++Func) {
1120 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(*Func))
1121 if (!DMethod->isStatic()) {
1122 Ctx = Ovl->getDeclContext();
1123 MemberType = Context.OverloadTy;
1124 break;
1125 }
1126 }
1127 }
Douglas Gregor723d3332009-01-07 00:43:41 +00001128
1129 if (Ctx && Ctx->isRecord()) {
Douglas Gregor3257fb52008-12-22 05:46:06 +00001130 QualType CtxType = Context.getTagDeclType(cast<CXXRecordDecl>(Ctx));
1131 QualType ThisType = Context.getTagDeclType(MD->getParent());
1132 if ((Context.getCanonicalType(CtxType)
1133 == Context.getCanonicalType(ThisType)) ||
1134 IsDerivedFrom(ThisType, CtxType)) {
1135 // Build the implicit member access expression.
Steve Naroff774e4152009-01-21 00:14:39 +00001136 Expr *This = new (Context) CXXThisExpr(SourceLocation(),
Mike Stump9afab102009-02-19 03:04:26 +00001137 MD->getThisType(Context));
Douglas Gregor98189262009-06-19 23:52:42 +00001138 MarkDeclarationReferenced(Loc, D);
Fariborz Jahanian843336e2009-07-29 19:40:11 +00001139 if (PerformObjectMemberConversion(This, D))
1140 return ExprError();
Douglas Gregor09be81b2009-02-04 17:27:36 +00001141 return Owned(new (Context) MemberExpr(This, true, D,
Eli Friedman1653e232009-04-29 17:56:47 +00001142 Loc, MemberType));
Douglas Gregor3257fb52008-12-22 05:46:06 +00001143 }
1144 }
1145 }
1146 }
1147
Douglas Gregor8acb7272008-12-11 16:49:14 +00001148 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00001149 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
1150 if (MD->isStatic())
1151 // "invalid use of member 'x' in static member function"
Sebastian Redlcd883f72009-01-18 18:53:16 +00001152 return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method)
1153 << FD->getDeclName());
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00001154 }
1155
Douglas Gregor3257fb52008-12-22 05:46:06 +00001156 // Any other ways we could have found the field in a well-formed
1157 // program would have been turned into implicit member expressions
1158 // above.
Sebastian Redlcd883f72009-01-18 18:53:16 +00001159 return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use)
1160 << FD->getDeclName());
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00001161 }
Douglas Gregor3257fb52008-12-22 05:46:06 +00001162
Chris Lattner4b009652007-07-25 00:24:17 +00001163 if (isa<TypedefDecl>(D))
Sebastian Redlcd883f72009-01-18 18:53:16 +00001164 return ExprError(Diag(Loc, diag::err_unexpected_typedef) << Name);
Ted Kremenek42730c52008-01-07 19:49:32 +00001165 if (isa<ObjCInterfaceDecl>(D))
Sebastian Redlcd883f72009-01-18 18:53:16 +00001166 return ExprError(Diag(Loc, diag::err_unexpected_interface) << Name);
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00001167 if (isa<NamespaceDecl>(D))
Sebastian Redlcd883f72009-01-18 18:53:16 +00001168 return ExprError(Diag(Loc, diag::err_unexpected_namespace) << Name);
Chris Lattner4b009652007-07-25 00:24:17 +00001169
Steve Naroffd6163f32008-09-05 22:11:13 +00001170 // Make the DeclRefExpr or BlockDeclRefExpr for the decl.
Douglas Gregord2baafd2008-10-21 16:13:35 +00001171 if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D))
Anders Carlsson4571d812009-06-24 00:10:43 +00001172 return BuildDeclRefExpr(Ovl, Context.OverloadTy, Loc,
1173 false, false, SS);
Douglas Gregor35d81bb2009-02-09 23:23:08 +00001174 else if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
Anders Carlsson4571d812009-06-24 00:10:43 +00001175 return BuildDeclRefExpr(Template, Context.OverloadTy, Loc,
1176 false, false, SS);
Steve Naroffd6163f32008-09-05 22:11:13 +00001177 ValueDecl *VD = cast<ValueDecl>(D);
Sebastian Redlcd883f72009-01-18 18:53:16 +00001178
Douglas Gregoraa57e862009-02-18 21:56:37 +00001179 // Check whether this declaration can be used. Note that we suppress
1180 // this check when we're going to perform argument-dependent lookup
1181 // on this function name, because this might not be the function
1182 // that overload resolution actually selects.
Douglas Gregor6ef403d2009-06-30 15:47:41 +00001183 bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) &&
1184 HasTrailingLParen;
Douglas Gregoraa57e862009-02-18 21:56:37 +00001185 if (!(ADL && isa<FunctionDecl>(VD)) && DiagnoseUseOfDecl(VD, Loc))
1186 return ExprError();
1187
Steve Naroffd6163f32008-09-05 22:11:13 +00001188 // Only create DeclRefExpr's for valid Decl's.
1189 if (VD->isInvalidDecl())
Sebastian Redlcd883f72009-01-18 18:53:16 +00001190 return ExprError();
1191
Chris Lattnerb2ebd482008-10-20 05:16:36 +00001192 // If the identifier reference is inside a block, and it refers to a value
1193 // that is outside the block, create a BlockDeclRefExpr instead of a
1194 // DeclRefExpr. This ensures the value is treated as a copy-in snapshot when
1195 // the block is formed.
Steve Naroffd6163f32008-09-05 22:11:13 +00001196 //
Chris Lattnerb2ebd482008-10-20 05:16:36 +00001197 // We do not do this for things like enum constants, global variables, etc,
1198 // as they do not get snapshotted.
1199 //
1200 if (CurBlock && ShouldSnapshotBlockValueReference(CurBlock, VD)) {
Douglas Gregor98189262009-06-19 23:52:42 +00001201 MarkDeclarationReferenced(Loc, VD);
Eli Friedman9c2b33f2009-03-22 23:00:19 +00001202 QualType ExprTy = VD->getType().getNonReferenceType();
Steve Naroff52059382008-10-10 01:28:17 +00001203 // The BlocksAttr indicates the variable is bound by-reference.
Argiris Kirtzidisfe5f9732009-06-30 02:34:44 +00001204 if (VD->getAttr<BlocksAttr>())
Eli Friedman9c2b33f2009-03-22 23:00:19 +00001205 return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, true));
Fariborz Jahanian89942a02009-06-19 23:37:08 +00001206 // This is to record that a 'const' was actually synthesize and added.
1207 bool constAdded = !ExprTy.isConstQualified();
Steve Naroff52059382008-10-10 01:28:17 +00001208 // Variable will be bound by-copy, make it const within the closure.
Fariborz Jahanian89942a02009-06-19 23:37:08 +00001209
Eli Friedman9c2b33f2009-03-22 23:00:19 +00001210 ExprTy.addConst();
Fariborz Jahanian89942a02009-06-19 23:37:08 +00001211 return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, false,
1212 constAdded));
Steve Naroff52059382008-10-10 01:28:17 +00001213 }
1214 // If this reference is not in a block or if the referenced variable is
1215 // within the block, create a normal DeclRefExpr.
Douglas Gregor1b21c7f2008-12-05 23:32:09 +00001216
Douglas Gregor1b21c7f2008-12-05 23:32:09 +00001217 bool TypeDependent = false;
Douglas Gregora5d84612008-12-10 20:57:37 +00001218 bool ValueDependent = false;
1219 if (getLangOptions().CPlusPlus) {
1220 // C++ [temp.dep.expr]p3:
1221 // An id-expression is type-dependent if it contains:
1222 // - an identifier that was declared with a dependent type,
1223 if (VD->getType()->isDependentType())
1224 TypeDependent = true;
1225 // - FIXME: a template-id that is dependent,
1226 // - a conversion-function-id that specifies a dependent type,
1227 else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName &&
1228 Name.getCXXNameType()->isDependentType())
1229 TypeDependent = true;
1230 // - a nested-name-specifier that contains a class-name that
1231 // names a dependent type.
1232 else if (SS && !SS->isEmpty()) {
Douglas Gregor734b4ba2009-03-19 00:18:19 +00001233 for (DeclContext *DC = computeDeclContext(*SS);
Douglas Gregora5d84612008-12-10 20:57:37 +00001234 DC; DC = DC->getParent()) {
1235 // FIXME: could stop early at namespace scope.
Douglas Gregor723d3332009-01-07 00:43:41 +00001236 if (DC->isRecord()) {
Douglas Gregora5d84612008-12-10 20:57:37 +00001237 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
1238 if (Context.getTypeDeclType(Record)->isDependentType()) {
1239 TypeDependent = true;
1240 break;
1241 }
Douglas Gregor1b21c7f2008-12-05 23:32:09 +00001242 }
1243 }
1244 }
Douglas Gregor1b21c7f2008-12-05 23:32:09 +00001245
Douglas Gregora5d84612008-12-10 20:57:37 +00001246 // C++ [temp.dep.constexpr]p2:
1247 //
1248 // An identifier is value-dependent if it is:
1249 // - a name declared with a dependent type,
1250 if (TypeDependent)
1251 ValueDependent = true;
1252 // - the name of a non-type template parameter,
1253 else if (isa<NonTypeTemplateParmDecl>(VD))
1254 ValueDependent = true;
1255 // - a constant with integral or enumeration type and is
1256 // initialized with an expression that is value-dependent
Eli Friedman1f7744a2009-06-11 01:11:20 +00001257 else if (const VarDecl *Dcl = dyn_cast<VarDecl>(VD)) {
1258 if (Dcl->getType().getCVRQualifiers() == QualType::Const &&
1259 Dcl->getInit()) {
1260 ValueDependent = Dcl->getInit()->isValueDependent();
1261 }
1262 }
Douglas Gregora5d84612008-12-10 20:57:37 +00001263 }
Douglas Gregor1b21c7f2008-12-05 23:32:09 +00001264
Anders Carlsson4571d812009-06-24 00:10:43 +00001265 return BuildDeclRefExpr(VD, VD->getType().getNonReferenceType(), Loc,
1266 TypeDependent, ValueDependent, SS);
Chris Lattner4b009652007-07-25 00:24:17 +00001267}
1268
Sebastian Redlcd883f72009-01-18 18:53:16 +00001269Sema::OwningExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc,
1270 tok::TokenKind Kind) {
Chris Lattner69909292008-08-10 01:53:14 +00001271 PredefinedExpr::IdentType IT;
Sebastian Redlcd883f72009-01-18 18:53:16 +00001272
Chris Lattner4b009652007-07-25 00:24:17 +00001273 switch (Kind) {
Chris Lattnere12ca5d2008-01-12 18:39:25 +00001274 default: assert(0 && "Unknown simple primary expr!");
Chris Lattner69909292008-08-10 01:53:14 +00001275 case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2]
1276 case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break;
1277 case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break;
Chris Lattner4b009652007-07-25 00:24:17 +00001278 }
Chris Lattnere12ca5d2008-01-12 18:39:25 +00001279
Chris Lattner7e637512008-01-12 08:14:25 +00001280 // Pre-defined identifiers are of type char[x], where x is the length of the
1281 // string.
Chris Lattnerfc9511c2008-01-12 19:32:28 +00001282 unsigned Length;
Chris Lattnere5cb5862008-12-04 23:50:19 +00001283 if (FunctionDecl *FD = getCurFunctionDecl())
1284 Length = FD->getIdentifier()->getLength();
Chris Lattnerbce5e4f2008-12-12 05:05:20 +00001285 else if (ObjCMethodDecl *MD = getCurMethodDecl())
1286 Length = MD->getSynthesizedMethodSize();
1287 else {
1288 Diag(Loc, diag::ext_predef_outside_function);
1289 // __PRETTY_FUNCTION__ -> "top level", the others produce an empty string.
1290 Length = IT == PredefinedExpr::PrettyFunction ? strlen("top level") : 0;
1291 }
Sebastian Redlcd883f72009-01-18 18:53:16 +00001292
1293
Chris Lattnerfc9511c2008-01-12 19:32:28 +00001294 llvm::APInt LengthI(32, Length + 1);
Chris Lattnere12ca5d2008-01-12 18:39:25 +00001295 QualType ResTy = Context.CharTy.getQualifiedType(QualType::Const);
Chris Lattnerfc9511c2008-01-12 19:32:28 +00001296 ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0);
Steve Naroff774e4152009-01-21 00:14:39 +00001297 return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT));
Chris Lattner4b009652007-07-25 00:24:17 +00001298}
1299
Sebastian Redlcd883f72009-01-18 18:53:16 +00001300Sema::OwningExprResult Sema::ActOnCharacterConstant(const Token &Tok) {
Chris Lattner4b009652007-07-25 00:24:17 +00001301 llvm::SmallString<16> CharBuffer;
1302 CharBuffer.resize(Tok.getLength());
1303 const char *ThisTokBegin = &CharBuffer[0];
1304 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
Sebastian Redlcd883f72009-01-18 18:53:16 +00001305
Chris Lattner4b009652007-07-25 00:24:17 +00001306 CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
1307 Tok.getLocation(), PP);
1308 if (Literal.hadError())
Sebastian Redlcd883f72009-01-18 18:53:16 +00001309 return ExprError();
Chris Lattner6b22fb72008-03-01 08:32:21 +00001310
1311 QualType type = getLangOptions().CPlusPlus ? Context.CharTy : Context.IntTy;
1312
Sebastian Redl75324932009-01-20 22:23:13 +00001313 return Owned(new (Context) CharacterLiteral(Literal.getValue(),
1314 Literal.isWide(),
1315 type, Tok.getLocation()));
Chris Lattner4b009652007-07-25 00:24:17 +00001316}
1317
Sebastian Redlcd883f72009-01-18 18:53:16 +00001318Action::OwningExprResult Sema::ActOnNumericConstant(const Token &Tok) {
1319 // Fast path for a single digit (which is quite common). A single digit
Chris Lattner4b009652007-07-25 00:24:17 +00001320 // cannot have a trigraph, escaped newline, radix prefix, or type suffix.
1321 if (Tok.getLength() == 1) {
Chris Lattnerc374f8b2009-01-26 22:36:52 +00001322 const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok);
Chris Lattnerfd5f1432009-01-16 07:10:29 +00001323 unsigned IntSize = Context.Target.getIntWidth();
Steve Naroff774e4152009-01-21 00:14:39 +00001324 return Owned(new (Context) IntegerLiteral(llvm::APInt(IntSize, Val-'0'),
Steve Naroffe5f128a2009-01-20 19:53:53 +00001325 Context.IntTy, Tok.getLocation()));
Chris Lattner4b009652007-07-25 00:24:17 +00001326 }
Ted Kremenekdbde2282009-01-13 23:19:12 +00001327
Chris Lattner4b009652007-07-25 00:24:17 +00001328 llvm::SmallString<512> IntegerBuffer;
Chris Lattner46d91342008-09-30 20:53:45 +00001329 // Add padding so that NumericLiteralParser can overread by one character.
1330 IntegerBuffer.resize(Tok.getLength()+1);
Chris Lattner4b009652007-07-25 00:24:17 +00001331 const char *ThisTokBegin = &IntegerBuffer[0];
Sebastian Redlcd883f72009-01-18 18:53:16 +00001332
Chris Lattner4b009652007-07-25 00:24:17 +00001333 // Get the spelling of the token, which eliminates trigraphs, etc.
1334 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
Sebastian Redlcd883f72009-01-18 18:53:16 +00001335
Chris Lattner4b009652007-07-25 00:24:17 +00001336 NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
1337 Tok.getLocation(), PP);
1338 if (Literal.hadError)
Sebastian Redlcd883f72009-01-18 18:53:16 +00001339 return ExprError();
1340
Chris Lattner1de66eb2007-08-26 03:42:43 +00001341 Expr *Res;
Sebastian Redlcd883f72009-01-18 18:53:16 +00001342
Chris Lattner1de66eb2007-08-26 03:42:43 +00001343 if (Literal.isFloatingLiteral()) {
Chris Lattner858eece2007-09-22 18:29:59 +00001344 QualType Ty;
Chris Lattner2a674dc2008-06-30 18:32:54 +00001345 if (Literal.isFloat)
Chris Lattner858eece2007-09-22 18:29:59 +00001346 Ty = Context.FloatTy;
Chris Lattner2a674dc2008-06-30 18:32:54 +00001347 else if (!Literal.isLong)
Chris Lattner858eece2007-09-22 18:29:59 +00001348 Ty = Context.DoubleTy;
Chris Lattner2a674dc2008-06-30 18:32:54 +00001349 else
Chris Lattnerfc18dcc2008-03-08 08:52:55 +00001350 Ty = Context.LongDoubleTy;
Chris Lattner2a674dc2008-06-30 18:32:54 +00001351
1352 const llvm::fltSemantics &Format = Context.getFloatTypeSemantics(Ty);
1353
Ted Kremenekddedbe22007-11-29 00:56:49 +00001354 // isExact will be set by GetFloatValue().
1355 bool isExact = false;
Chris Lattnerff1bf1a2009-06-29 17:34:55 +00001356 llvm::APFloat Val = Literal.GetFloatValue(Format, &isExact);
1357 Res = new (Context) FloatingLiteral(Val, isExact, Ty, Tok.getLocation());
Sebastian Redlcd883f72009-01-18 18:53:16 +00001358
Chris Lattner1de66eb2007-08-26 03:42:43 +00001359 } else if (!Literal.isIntegerLiteral()) {
Sebastian Redlcd883f72009-01-18 18:53:16 +00001360 return ExprError();
Chris Lattner1de66eb2007-08-26 03:42:43 +00001361 } else {
Chris Lattner48d7f382008-04-02 04:24:33 +00001362 QualType Ty;
Chris Lattner4b009652007-07-25 00:24:17 +00001363
Neil Booth7421e9c2007-08-29 22:00:19 +00001364 // long long is a C99 feature.
1365 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
Neil Booth9bd47082007-08-29 22:13:52 +00001366 Literal.isLongLong)
Neil Booth7421e9c2007-08-29 22:00:19 +00001367 Diag(Tok.getLocation(), diag::ext_longlong);
1368
Chris Lattner4b009652007-07-25 00:24:17 +00001369 // Get the value in the widest-possible width.
Chris Lattner8cd0e932008-03-05 18:54:05 +00001370 llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(), 0);
Sebastian Redlcd883f72009-01-18 18:53:16 +00001371
Chris Lattner4b009652007-07-25 00:24:17 +00001372 if (Literal.GetIntegerValue(ResultVal)) {
1373 // If this value didn't fit into uintmax_t, warn and force to ull.
1374 Diag(Tok.getLocation(), diag::warn_integer_too_large);
Chris Lattner48d7f382008-04-02 04:24:33 +00001375 Ty = Context.UnsignedLongLongTy;
1376 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() &&
Chris Lattner8cd0e932008-03-05 18:54:05 +00001377 "long long is not intmax_t?");
Chris Lattner4b009652007-07-25 00:24:17 +00001378 } else {
1379 // If this value fits into a ULL, try to figure out what else it fits into
1380 // according to the rules of C99 6.4.4.1p5.
Sebastian Redlcd883f72009-01-18 18:53:16 +00001381
Chris Lattner4b009652007-07-25 00:24:17 +00001382 // Octal, Hexadecimal, and integers with a U suffix are allowed to
1383 // be an unsigned int.
1384 bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10;
1385
1386 // Check from smallest to largest, picking the smallest type we can.
Chris Lattnere4068872008-05-09 05:59:00 +00001387 unsigned Width = 0;
Chris Lattner98540b62007-08-23 21:58:08 +00001388 if (!Literal.isLong && !Literal.isLongLong) {
1389 // Are int/unsigned possibilities?
Chris Lattnere4068872008-05-09 05:59:00 +00001390 unsigned IntSize = Context.Target.getIntWidth();
Sebastian Redlcd883f72009-01-18 18:53:16 +00001391
Chris Lattner4b009652007-07-25 00:24:17 +00001392 // Does it fit in a unsigned int?
1393 if (ResultVal.isIntN(IntSize)) {
1394 // Does it fit in a signed int?
1395 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0)
Chris Lattner48d7f382008-04-02 04:24:33 +00001396 Ty = Context.IntTy;
Chris Lattner4b009652007-07-25 00:24:17 +00001397 else if (AllowUnsigned)
Chris Lattner48d7f382008-04-02 04:24:33 +00001398 Ty = Context.UnsignedIntTy;
Chris Lattnere4068872008-05-09 05:59:00 +00001399 Width = IntSize;
Chris Lattner4b009652007-07-25 00:24:17 +00001400 }
Chris Lattner4b009652007-07-25 00:24:17 +00001401 }
Sebastian Redlcd883f72009-01-18 18:53:16 +00001402
Chris Lattner4b009652007-07-25 00:24:17 +00001403 // Are long/unsigned long possibilities?
Chris Lattner48d7f382008-04-02 04:24:33 +00001404 if (Ty.isNull() && !Literal.isLongLong) {
Chris Lattnere4068872008-05-09 05:59:00 +00001405 unsigned LongSize = Context.Target.getLongWidth();
Sebastian Redlcd883f72009-01-18 18:53:16 +00001406
Chris Lattner4b009652007-07-25 00:24:17 +00001407 // Does it fit in a unsigned long?
1408 if (ResultVal.isIntN(LongSize)) {
1409 // Does it fit in a signed long?
1410 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0)
Chris Lattner48d7f382008-04-02 04:24:33 +00001411 Ty = Context.LongTy;
Chris Lattner4b009652007-07-25 00:24:17 +00001412 else if (AllowUnsigned)
Chris Lattner48d7f382008-04-02 04:24:33 +00001413 Ty = Context.UnsignedLongTy;
Chris Lattnere4068872008-05-09 05:59:00 +00001414 Width = LongSize;
Chris Lattner4b009652007-07-25 00:24:17 +00001415 }
Sebastian Redlcd883f72009-01-18 18:53:16 +00001416 }
1417
Chris Lattner4b009652007-07-25 00:24:17 +00001418 // Finally, check long long if needed.
Chris Lattner48d7f382008-04-02 04:24:33 +00001419 if (Ty.isNull()) {
Chris Lattnere4068872008-05-09 05:59:00 +00001420 unsigned LongLongSize = Context.Target.getLongLongWidth();
Sebastian Redlcd883f72009-01-18 18:53:16 +00001421
Chris Lattner4b009652007-07-25 00:24:17 +00001422 // Does it fit in a unsigned long long?
1423 if (ResultVal.isIntN(LongLongSize)) {
1424 // Does it fit in a signed long long?
1425 if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0)
Chris Lattner48d7f382008-04-02 04:24:33 +00001426 Ty = Context.LongLongTy;
Chris Lattner4b009652007-07-25 00:24:17 +00001427 else if (AllowUnsigned)
Chris Lattner48d7f382008-04-02 04:24:33 +00001428 Ty = Context.UnsignedLongLongTy;
Chris Lattnere4068872008-05-09 05:59:00 +00001429 Width = LongLongSize;
Chris Lattner4b009652007-07-25 00:24:17 +00001430 }
1431 }
Sebastian Redlcd883f72009-01-18 18:53:16 +00001432
Chris Lattner4b009652007-07-25 00:24:17 +00001433 // If we still couldn't decide a type, we probably have something that
1434 // does not fit in a signed long long, but has no U suffix.
Chris Lattner48d7f382008-04-02 04:24:33 +00001435 if (Ty.isNull()) {
Chris Lattner4b009652007-07-25 00:24:17 +00001436 Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed);
Chris Lattner48d7f382008-04-02 04:24:33 +00001437 Ty = Context.UnsignedLongLongTy;
Chris Lattnere4068872008-05-09 05:59:00 +00001438 Width = Context.Target.getLongLongWidth();
Chris Lattner4b009652007-07-25 00:24:17 +00001439 }
Sebastian Redlcd883f72009-01-18 18:53:16 +00001440
Chris Lattnere4068872008-05-09 05:59:00 +00001441 if (ResultVal.getBitWidth() != Width)
1442 ResultVal.trunc(Width);
Chris Lattner4b009652007-07-25 00:24:17 +00001443 }
Sebastian Redl75324932009-01-20 22:23:13 +00001444 Res = new (Context) IntegerLiteral(ResultVal, Ty, Tok.getLocation());
Chris Lattner4b009652007-07-25 00:24:17 +00001445 }
Sebastian Redlcd883f72009-01-18 18:53:16 +00001446
Chris Lattner1de66eb2007-08-26 03:42:43 +00001447 // If this is an imaginary literal, create the ImaginaryLiteral wrapper.
1448 if (Literal.isImaginary)
Steve Naroff774e4152009-01-21 00:14:39 +00001449 Res = new (Context) ImaginaryLiteral(Res,
1450 Context.getComplexType(Res->getType()));
Sebastian Redlcd883f72009-01-18 18:53:16 +00001451
1452 return Owned(Res);
Chris Lattner4b009652007-07-25 00:24:17 +00001453}
1454
Sebastian Redlcd883f72009-01-18 18:53:16 +00001455Action::OwningExprResult Sema::ActOnParenExpr(SourceLocation L,
1456 SourceLocation R, ExprArg Val) {
Anders Carlsson39ecdcf2009-05-01 19:49:17 +00001457 Expr *E = Val.takeAs<Expr>();
Chris Lattner48d7f382008-04-02 04:24:33 +00001458 assert((E != 0) && "ActOnParenExpr() missing expr");
Steve Naroff774e4152009-01-21 00:14:39 +00001459 return Owned(new (Context) ParenExpr(L, R, E));
Chris Lattner4b009652007-07-25 00:24:17 +00001460}
1461
1462/// The UsualUnaryConversions() function is *not* called by this routine.
1463/// See C99 6.3.2.1p[2-4] for more details.
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00001464bool Sema::CheckSizeOfAlignOfOperand(QualType exprType,
Sebastian Redl0cb7c872008-11-11 17:56:53 +00001465 SourceLocation OpLoc,
1466 const SourceRange &ExprRange,
1467 bool isSizeof) {
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00001468 if (exprType->isDependentType())
1469 return false;
1470
Chris Lattner4b009652007-07-25 00:24:17 +00001471 // C99 6.5.3.4p1:
Chris Lattner159fe082009-01-24 19:46:37 +00001472 if (isa<FunctionType>(exprType)) {
Chris Lattner95933c12009-04-24 00:30:45 +00001473 // alignof(function) is allowed as an extension.
Chris Lattner159fe082009-01-24 19:46:37 +00001474 if (isSizeof)
1475 Diag(OpLoc, diag::ext_sizeof_function_type) << ExprRange;
1476 return false;
1477 }
1478
Chris Lattner95933c12009-04-24 00:30:45 +00001479 // Allow sizeof(void)/alignof(void) as an extension.
Chris Lattner159fe082009-01-24 19:46:37 +00001480 if (exprType->isVoidType()) {
Chris Lattner8ba580c2008-11-19 05:08:23 +00001481 Diag(OpLoc, diag::ext_sizeof_void_type)
1482 << (isSizeof ? "sizeof" : "__alignof") << ExprRange;
Chris Lattner159fe082009-01-24 19:46:37 +00001483 return false;
1484 }
Chris Lattnere1127c42009-04-21 19:55:16 +00001485
Chris Lattner95933c12009-04-24 00:30:45 +00001486 if (RequireCompleteType(OpLoc, exprType,
1487 isSizeof ? diag::err_sizeof_incomplete_type :
1488 diag::err_alignof_incomplete_type,
1489 ExprRange))
1490 return true;
1491
1492 // Reject sizeof(interface) and sizeof(interface<proto>) in 64-bit mode.
Fariborz Jahanianbf2b0952009-04-24 17:34:33 +00001493 if (LangOpts.ObjCNonFragileABI && exprType->isObjCInterfaceType()) {
Chris Lattner95933c12009-04-24 00:30:45 +00001494 Diag(OpLoc, diag::err_sizeof_nonfragile_interface)
Chris Lattnerf3ce8572009-04-24 22:30:50 +00001495 << exprType << isSizeof << ExprRange;
1496 return true;
Chris Lattnere1127c42009-04-21 19:55:16 +00001497 }
1498
Chris Lattner95933c12009-04-24 00:30:45 +00001499 return false;
Chris Lattner4b009652007-07-25 00:24:17 +00001500}
1501
Chris Lattner8d9f7962009-01-24 20:17:12 +00001502bool Sema::CheckAlignOfExpr(Expr *E, SourceLocation OpLoc,
1503 const SourceRange &ExprRange) {
1504 E = E->IgnoreParens();
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00001505
Chris Lattner8d9f7962009-01-24 20:17:12 +00001506 // alignof decl is always ok.
1507 if (isa<DeclRefExpr>(E))
1508 return false;
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00001509
1510 // Cannot know anything else if the expression is dependent.
1511 if (E->isTypeDependent())
1512 return false;
1513
Douglas Gregor531434b2009-05-02 02:18:30 +00001514 if (E->getBitField()) {
1515 Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 1 << ExprRange;
1516 return true;
Chris Lattner8d9f7962009-01-24 20:17:12 +00001517 }
Douglas Gregor531434b2009-05-02 02:18:30 +00001518
1519 // Alignment of a field access is always okay, so long as it isn't a
1520 // bit-field.
1521 if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
Mike Stump6eeaa782009-07-22 18:58:19 +00001522 if (isa<FieldDecl>(ME->getMemberDecl()))
Douglas Gregor531434b2009-05-02 02:18:30 +00001523 return false;
1524
Chris Lattner8d9f7962009-01-24 20:17:12 +00001525 return CheckSizeOfAlignOfOperand(E->getType(), OpLoc, ExprRange, false);
1526}
1527
Douglas Gregor396f1142009-03-13 21:01:28 +00001528/// \brief Build a sizeof or alignof expression given a type operand.
1529Action::OwningExprResult
1530Sema::CreateSizeOfAlignOfExpr(QualType T, SourceLocation OpLoc,
1531 bool isSizeOf, SourceRange R) {
1532 if (T.isNull())
1533 return ExprError();
1534
1535 if (!T->isDependentType() &&
1536 CheckSizeOfAlignOfOperand(T, OpLoc, R, isSizeOf))
1537 return ExprError();
1538
1539 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
1540 return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, T,
1541 Context.getSizeType(), OpLoc,
1542 R.getEnd()));
1543}
1544
1545/// \brief Build a sizeof or alignof expression given an expression
1546/// operand.
1547Action::OwningExprResult
1548Sema::CreateSizeOfAlignOfExpr(Expr *E, SourceLocation OpLoc,
1549 bool isSizeOf, SourceRange R) {
1550 // Verify that the operand is valid.
1551 bool isInvalid = false;
1552 if (E->isTypeDependent()) {
1553 // Delay type-checking for type-dependent expressions.
1554 } else if (!isSizeOf) {
1555 isInvalid = CheckAlignOfExpr(E, OpLoc, R);
Douglas Gregor531434b2009-05-02 02:18:30 +00001556 } else if (E->getBitField()) { // C99 6.5.3.4p1.
Douglas Gregor396f1142009-03-13 21:01:28 +00001557 Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 0;
1558 isInvalid = true;
1559 } else {
1560 isInvalid = CheckSizeOfAlignOfOperand(E->getType(), OpLoc, R, true);
1561 }
1562
1563 if (isInvalid)
1564 return ExprError();
1565
1566 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
1567 return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, E,
1568 Context.getSizeType(), OpLoc,
1569 R.getEnd()));
1570}
1571
Sebastian Redl0cb7c872008-11-11 17:56:53 +00001572/// ActOnSizeOfAlignOfExpr - Handle @c sizeof(type) and @c sizeof @c expr and
1573/// the same for @c alignof and @c __alignof
1574/// Note that the ArgRange is invalid if isType is false.
Sebastian Redl8b769972009-01-19 00:08:26 +00001575Action::OwningExprResult
Sebastian Redl0cb7c872008-11-11 17:56:53 +00001576Sema::ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType,
1577 void *TyOrEx, const SourceRange &ArgRange) {
Chris Lattner4b009652007-07-25 00:24:17 +00001578 // If error parsing type, ignore.
Sebastian Redl8b769972009-01-19 00:08:26 +00001579 if (TyOrEx == 0) return ExprError();
Chris Lattner4b009652007-07-25 00:24:17 +00001580
Sebastian Redl0cb7c872008-11-11 17:56:53 +00001581 if (isType) {
Douglas Gregor396f1142009-03-13 21:01:28 +00001582 QualType ArgTy = QualType::getFromOpaquePtr(TyOrEx);
1583 return CreateSizeOfAlignOfExpr(ArgTy, OpLoc, isSizeof, ArgRange);
1584 }
Sebastian Redl0cb7c872008-11-11 17:56:53 +00001585
Douglas Gregor396f1142009-03-13 21:01:28 +00001586 // Get the end location.
1587 Expr *ArgEx = (Expr *)TyOrEx;
1588 Action::OwningExprResult Result
1589 = CreateSizeOfAlignOfExpr(ArgEx, OpLoc, isSizeof, ArgEx->getSourceRange());
1590
1591 if (Result.isInvalid())
1592 DeleteExpr(ArgEx);
1593
1594 return move(Result);
Chris Lattner4b009652007-07-25 00:24:17 +00001595}
1596
Chris Lattner57e5f7e2009-02-17 08:12:06 +00001597QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc, bool isReal) {
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00001598 if (V->isTypeDependent())
1599 return Context.DependentTy;
Chris Lattner03931a72007-08-24 21:16:53 +00001600
Chris Lattnera16e42d2007-08-26 05:39:26 +00001601 // These operators return the element type of a complex type.
Chris Lattner03931a72007-08-24 21:16:53 +00001602 if (const ComplexType *CT = V->getType()->getAsComplexType())
1603 return CT->getElementType();
Chris Lattnera16e42d2007-08-26 05:39:26 +00001604
1605 // Otherwise they pass through real integer and floating point types here.
1606 if (V->getType()->isArithmeticType())
1607 return V->getType();
1608
1609 // Reject anything else.
Chris Lattner57e5f7e2009-02-17 08:12:06 +00001610 Diag(Loc, diag::err_realimag_invalid_type) << V->getType()
1611 << (isReal ? "__real" : "__imag");
Chris Lattnera16e42d2007-08-26 05:39:26 +00001612 return QualType();
Chris Lattner03931a72007-08-24 21:16:53 +00001613}
1614
1615
Chris Lattner4b009652007-07-25 00:24:17 +00001616
Sebastian Redl8b769972009-01-19 00:08:26 +00001617Action::OwningExprResult
1618Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc,
1619 tok::TokenKind Kind, ExprArg Input) {
1620 Expr *Arg = (Expr *)Input.get();
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001621
Chris Lattner4b009652007-07-25 00:24:17 +00001622 UnaryOperator::Opcode Opc;
1623 switch (Kind) {
1624 default: assert(0 && "Unknown unary op!");
1625 case tok::plusplus: Opc = UnaryOperator::PostInc; break;
1626 case tok::minusminus: Opc = UnaryOperator::PostDec; break;
1627 }
Sebastian Redl8b769972009-01-19 00:08:26 +00001628
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001629 if (getLangOptions().CPlusPlus &&
1630 (Arg->getType()->isRecordType() || Arg->getType()->isEnumeralType())) {
1631 // Which overloaded operator?
Sebastian Redl8b769972009-01-19 00:08:26 +00001632 OverloadedOperatorKind OverOp =
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001633 (Opc == UnaryOperator::PostInc)? OO_PlusPlus : OO_MinusMinus;
1634
1635 // C++ [over.inc]p1:
1636 //
1637 // [...] If the function is a member function with one
1638 // parameter (which shall be of type int) or a non-member
1639 // function with two parameters (the second of which shall be
1640 // of type int), it defines the postfix increment operator ++
1641 // for objects of that type. When the postfix increment is
1642 // called as a result of using the ++ operator, the int
1643 // argument will have value zero.
1644 Expr *Args[2] = {
1645 Arg,
Steve Naroff774e4152009-01-21 00:14:39 +00001646 new (Context) IntegerLiteral(llvm::APInt(Context.Target.getIntWidth(), 0,
1647 /*isSigned=*/true), Context.IntTy, SourceLocation())
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001648 };
1649
1650 // Build the candidate set for overloading
1651 OverloadCandidateSet CandidateSet;
Douglas Gregor00fe3f62009-03-13 18:40:31 +00001652 AddOperatorCandidates(OverOp, S, OpLoc, Args, 2, CandidateSet);
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001653
1654 // Perform overload resolution.
1655 OverloadCandidateSet::iterator Best;
Douglas Gregor98189262009-06-19 23:52:42 +00001656 switch (BestViableFunction(CandidateSet, OpLoc, Best)) {
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001657 case OR_Success: {
1658 // We found a built-in operator or an overloaded operator.
1659 FunctionDecl *FnDecl = Best->Function;
1660
1661 if (FnDecl) {
1662 // We matched an overloaded operator. Build a call to that
1663 // operator.
1664
1665 // Convert the arguments.
1666 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) {
1667 if (PerformObjectArgumentInitialization(Arg, Method))
Sebastian Redl8b769972009-01-19 00:08:26 +00001668 return ExprError();
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001669 } else {
1670 // Convert the arguments.
Sebastian Redl8b769972009-01-19 00:08:26 +00001671 if (PerformCopyInitialization(Arg,
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001672 FnDecl->getParamDecl(0)->getType(),
1673 "passing"))
Sebastian Redl8b769972009-01-19 00:08:26 +00001674 return ExprError();
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001675 }
1676
1677 // Determine the result type
Sebastian Redl8b769972009-01-19 00:08:26 +00001678 QualType ResultTy
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001679 = FnDecl->getType()->getAsFunctionType()->getResultType();
1680 ResultTy = ResultTy.getNonReferenceType();
Sebastian Redl8b769972009-01-19 00:08:26 +00001681
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001682 // Build the actual expression node.
Steve Naroff774e4152009-01-21 00:14:39 +00001683 Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(),
Mike Stump6d8e5732009-02-19 02:54:59 +00001684 SourceLocation());
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001685 UsualUnaryConversions(FnExpr);
1686
Sebastian Redl8b769972009-01-19 00:08:26 +00001687 Input.release();
Douglas Gregorb2f81ac2009-05-27 05:00:47 +00001688 Args[0] = Arg;
Douglas Gregor00fe3f62009-03-13 18:40:31 +00001689 return Owned(new (Context) CXXOperatorCallExpr(Context, OverOp, FnExpr,
1690 Args, 2, ResultTy,
1691 OpLoc));
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001692 } else {
1693 // We matched a built-in operator. Convert the arguments, then
1694 // break out so that we will build the appropriate built-in
1695 // operator node.
1696 if (PerformCopyInitialization(Arg, Best->BuiltinTypes.ParamTypes[0],
1697 "passing"))
Sebastian Redl8b769972009-01-19 00:08:26 +00001698 return ExprError();
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001699
1700 break;
Sebastian Redl8b769972009-01-19 00:08:26 +00001701 }
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001702 }
1703
1704 case OR_No_Viable_Function:
1705 // No viable function; fall through to handling this as a
1706 // built-in operator, which will produce an error message for us.
1707 break;
1708
1709 case OR_Ambiguous:
1710 Diag(OpLoc, diag::err_ovl_ambiguous_oper)
1711 << UnaryOperator::getOpcodeStr(Opc)
1712 << Arg->getSourceRange();
1713 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
Sebastian Redl8b769972009-01-19 00:08:26 +00001714 return ExprError();
Douglas Gregoraa57e862009-02-18 21:56:37 +00001715
1716 case OR_Deleted:
1717 Diag(OpLoc, diag::err_ovl_deleted_oper)
1718 << Best->Function->isDeleted()
1719 << UnaryOperator::getOpcodeStr(Opc)
1720 << Arg->getSourceRange();
1721 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
1722 return ExprError();
Douglas Gregor4f6904d2008-11-19 15:42:04 +00001723 }
1724
1725 // Either we found no viable overloaded operator or we matched a
1726 // built-in operator. In either case, fall through to trying to
1727 // build a built-in operation.
1728 }
1729
Eli Friedman94d30952009-07-22 23:24:42 +00001730 Input.release();
1731 Input = Arg;
Eli Friedman79341142009-07-22 22:25:00 +00001732 return CreateBuiltinUnaryOp(OpLoc, Opc, move(Input));
Chris Lattner4b009652007-07-25 00:24:17 +00001733}
1734
Sebastian Redl8b769972009-01-19 00:08:26 +00001735Action::OwningExprResult
1736Sema::ActOnArraySubscriptExpr(Scope *S, ExprArg Base, SourceLocation LLoc,
1737 ExprArg Idx, SourceLocation RLoc) {
1738 Expr *LHSExp = static_cast<Expr*>(Base.get()),
1739 *RHSExp = static_cast<Expr*>(Idx.get());
Chris Lattner4b009652007-07-25 00:24:17 +00001740
Douglas Gregor80723c52008-11-19 17:17:41 +00001741 if (getLangOptions().CPlusPlus &&
Douglas Gregorde72f3e2009-05-19 00:01:19 +00001742 (LHSExp->isTypeDependent() || RHSExp->isTypeDependent())) {
1743 Base.release();
1744 Idx.release();
1745 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp,
1746 Context.DependentTy, RLoc));
1747 }
1748
1749 if (getLangOptions().CPlusPlus &&
Sebastian Redl8b769972009-01-19 00:08:26 +00001750 (LHSExp->getType()->isRecordType() ||
Eli Friedmane658bf52008-12-15 22:34:21 +00001751 LHSExp->getType()->isEnumeralType() ||
1752 RHSExp->getType()->isRecordType() ||
1753 RHSExp->getType()->isEnumeralType())) {
Douglas Gregor80723c52008-11-19 17:17:41 +00001754 // Add the appropriate overloaded operators (C++ [over.match.oper])
1755 // to the candidate set.
1756 OverloadCandidateSet CandidateSet;
1757 Expr *Args[2] = { LHSExp, RHSExp };
Douglas Gregor00fe3f62009-03-13 18:40:31 +00001758 AddOperatorCandidates(OO_Subscript, S, LLoc, Args, 2, CandidateSet,
1759 SourceRange(LLoc, RLoc));
Sebastian Redl8b769972009-01-19 00:08:26 +00001760
Douglas Gregor80723c52008-11-19 17:17:41 +00001761 // Perform overload resolution.
1762 OverloadCandidateSet::iterator Best;
Douglas Gregor98189262009-06-19 23:52:42 +00001763 switch (BestViableFunction(CandidateSet, LLoc, Best)) {
Douglas Gregor80723c52008-11-19 17:17:41 +00001764 case OR_Success: {
1765 // We found a built-in operator or an overloaded operator.
1766 FunctionDecl *FnDecl = Best->Function;
1767
1768 if (FnDecl) {
1769 // We matched an overloaded operator. Build a call to that
1770 // operator.
1771
1772 // Convert the arguments.
1773 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) {
1774 if (PerformObjectArgumentInitialization(LHSExp, Method) ||
1775 PerformCopyInitialization(RHSExp,
1776 FnDecl->getParamDecl(0)->getType(),
1777 "passing"))
Sebastian Redl8b769972009-01-19 00:08:26 +00001778 return ExprError();
Douglas Gregor80723c52008-11-19 17:17:41 +00001779 } else {
1780 // Convert the arguments.
1781 if (PerformCopyInitialization(LHSExp,
1782 FnDecl->getParamDecl(0)->getType(),
1783 "passing") ||
1784 PerformCopyInitialization(RHSExp,
1785 FnDecl->getParamDecl(1)->getType(),
1786 "passing"))
Sebastian Redl8b769972009-01-19 00:08:26 +00001787 return ExprError();
Douglas Gregor80723c52008-11-19 17:17:41 +00001788 }
1789
1790 // Determine the result type
Sebastian Redl8b769972009-01-19 00:08:26 +00001791 QualType ResultTy
Douglas Gregor80723c52008-11-19 17:17:41 +00001792 = FnDecl->getType()->getAsFunctionType()->getResultType();
1793 ResultTy = ResultTy.getNonReferenceType();
Sebastian Redl8b769972009-01-19 00:08:26 +00001794
Douglas Gregor80723c52008-11-19 17:17:41 +00001795 // Build the actual expression node.
Mike Stump9afab102009-02-19 03:04:26 +00001796 Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(),
1797 SourceLocation());
Douglas Gregor80723c52008-11-19 17:17:41 +00001798 UsualUnaryConversions(FnExpr);
1799
Sebastian Redl8b769972009-01-19 00:08:26 +00001800 Base.release();
1801 Idx.release();
Douglas Gregorb2f81ac2009-05-27 05:00:47 +00001802 Args[0] = LHSExp;
1803 Args[1] = RHSExp;
Douglas Gregor00fe3f62009-03-13 18:40:31 +00001804 return Owned(new (Context) CXXOperatorCallExpr(Context, OO_Subscript,
1805 FnExpr, Args, 2,
Steve Naroff774e4152009-01-21 00:14:39 +00001806 ResultTy, LLoc));
Douglas Gregor80723c52008-11-19 17:17:41 +00001807 } else {
1808 // We matched a built-in operator. Convert the arguments, then
1809 // break out so that we will build the appropriate built-in
1810 // operator node.
1811 if (PerformCopyInitialization(LHSExp, Best->BuiltinTypes.ParamTypes[0],
1812 "passing") ||
1813 PerformCopyInitialization(RHSExp, Best->BuiltinTypes.ParamTypes[1],
1814 "passing"))
Sebastian Redl8b769972009-01-19 00:08:26 +00001815 return ExprError();
Douglas Gregor80723c52008-11-19 17:17:41 +00001816
1817 break;
1818 }
1819 }
1820
1821 case OR_No_Viable_Function:
1822 // No viable function; fall through to handling this as a
1823 // built-in operator, which will produce an error message for us.
1824 break;
1825
1826 case OR_Ambiguous:
1827 Diag(LLoc, diag::err_ovl_ambiguous_oper)
1828 << "[]"
1829 << LHSExp->getSourceRange() << RHSExp->getSourceRange();
1830 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
Sebastian Redl8b769972009-01-19 00:08:26 +00001831 return ExprError();
Douglas Gregoraa57e862009-02-18 21:56:37 +00001832
1833 case OR_Deleted:
1834 Diag(LLoc, diag::err_ovl_deleted_oper)
1835 << Best->Function->isDeleted()
1836 << "[]"
1837 << LHSExp->getSourceRange() << RHSExp->getSourceRange();
1838 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
1839 return ExprError();
Douglas Gregor80723c52008-11-19 17:17:41 +00001840 }
1841
1842 // Either we found no viable overloaded operator or we matched a
1843 // built-in operator. In either case, fall through to trying to
1844 // build a built-in operation.
1845 }
1846
Chris Lattner4b009652007-07-25 00:24:17 +00001847 // Perform default conversions.
1848 DefaultFunctionArrayConversion(LHSExp);
1849 DefaultFunctionArrayConversion(RHSExp);
Sebastian Redl8b769972009-01-19 00:08:26 +00001850
Chris Lattner4b009652007-07-25 00:24:17 +00001851 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType();
1852
1853 // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent
Chris Lattner0d9bcea2007-08-30 17:45:32 +00001854 // to the expression *((e1)+(e2)). This means the array "Base" may actually be
Mike Stump9afab102009-02-19 03:04:26 +00001855 // in the subscript position. As a result, we need to derive the array base
Chris Lattner4b009652007-07-25 00:24:17 +00001856 // and index from the expression types.
1857 Expr *BaseExpr, *IndexExpr;
1858 QualType ResultType;
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00001859 if (LHSTy->isDependentType() || RHSTy->isDependentType()) {
1860 BaseExpr = LHSExp;
1861 IndexExpr = RHSExp;
1862 ResultType = Context.DependentTy;
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00001863 } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) {
Chris Lattner4b009652007-07-25 00:24:17 +00001864 BaseExpr = LHSExp;
1865 IndexExpr = RHSExp;
Chris Lattner4b009652007-07-25 00:24:17 +00001866 ResultType = PTy->getPointeeType();
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00001867 } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) {
Chris Lattner4b009652007-07-25 00:24:17 +00001868 // Handle the uncommon case of "123[Ptr]".
1869 BaseExpr = RHSExp;
1870 IndexExpr = LHSExp;
Chris Lattner4b009652007-07-25 00:24:17 +00001871 ResultType = PTy->getPointeeType();
Steve Naroff329ec222009-07-10 23:34:53 +00001872 } else if (const ObjCObjectPointerType *PTy =
1873 LHSTy->getAsObjCObjectPointerType()) {
1874 BaseExpr = LHSExp;
1875 IndexExpr = RHSExp;
1876 ResultType = PTy->getPointeeType();
1877 } else if (const ObjCObjectPointerType *PTy =
1878 RHSTy->getAsObjCObjectPointerType()) {
1879 // Handle the uncommon case of "123[Ptr]".
1880 BaseExpr = RHSExp;
1881 IndexExpr = LHSExp;
1882 ResultType = PTy->getPointeeType();
Chris Lattnere35a1042007-07-31 19:29:30 +00001883 } else if (const VectorType *VTy = LHSTy->getAsVectorType()) {
1884 BaseExpr = LHSExp; // vectors: V[123]
Chris Lattner4b009652007-07-25 00:24:17 +00001885 IndexExpr = RHSExp;
Nate Begeman57385472009-01-18 00:45:31 +00001886
Chris Lattner4b009652007-07-25 00:24:17 +00001887 // FIXME: need to deal with const...
1888 ResultType = VTy->getElementType();
Eli Friedmand4614072009-04-25 23:46:54 +00001889 } else if (LHSTy->isArrayType()) {
1890 // If we see an array that wasn't promoted by
1891 // DefaultFunctionArrayConversion, it must be an array that
1892 // wasn't promoted because of the C90 rule that doesn't
1893 // allow promoting non-lvalue arrays. Warn, then
1894 // force the promotion here.
1895 Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
1896 LHSExp->getSourceRange();
1897 ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy));
1898 LHSTy = LHSExp->getType();
1899
1900 BaseExpr = LHSExp;
1901 IndexExpr = RHSExp;
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00001902 ResultType = LHSTy->getAs<PointerType>()->getPointeeType();
Eli Friedmand4614072009-04-25 23:46:54 +00001903 } else if (RHSTy->isArrayType()) {
1904 // Same as previous, except for 123[f().a] case
1905 Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
1906 RHSExp->getSourceRange();
1907 ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy));
1908 RHSTy = RHSExp->getType();
1909
1910 BaseExpr = RHSExp;
1911 IndexExpr = LHSExp;
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00001912 ResultType = RHSTy->getAs<PointerType>()->getPointeeType();
Chris Lattner4b009652007-07-25 00:24:17 +00001913 } else {
Chris Lattner7264d212009-04-25 22:50:55 +00001914 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value)
1915 << LHSExp->getSourceRange() << RHSExp->getSourceRange());
Sebastian Redl8b769972009-01-19 00:08:26 +00001916 }
Chris Lattner4b009652007-07-25 00:24:17 +00001917 // C99 6.5.2.1p1
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00001918 if (!IndexExpr->getType()->isIntegerType() && !IndexExpr->isTypeDependent())
Chris Lattner7264d212009-04-25 22:50:55 +00001919 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer)
1920 << IndexExpr->getSourceRange());
Chris Lattner4b009652007-07-25 00:24:17 +00001921
Douglas Gregor05e28f62009-03-24 19:52:54 +00001922 // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly,
1923 // C++ [expr.sub]p1: The type "T" shall be a completely-defined object
1924 // type. Note that Functions are not objects, and that (in C99 parlance)
1925 // incomplete types are not object types.
1926 if (ResultType->isFunctionType()) {
1927 Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type)
1928 << ResultType << BaseExpr->getSourceRange();
1929 return ExprError();
1930 }
Chris Lattner95933c12009-04-24 00:30:45 +00001931
Douglas Gregor05e28f62009-03-24 19:52:54 +00001932 if (!ResultType->isDependentType() &&
Chris Lattner95933c12009-04-24 00:30:45 +00001933 RequireCompleteType(LLoc, ResultType, diag::err_subscript_incomplete_type,
Douglas Gregor05e28f62009-03-24 19:52:54 +00001934 BaseExpr->getSourceRange()))
1935 return ExprError();
Chris Lattner95933c12009-04-24 00:30:45 +00001936
1937 // Diagnose bad cases where we step over interface counts.
1938 if (ResultType->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
1939 Diag(LLoc, diag::err_subscript_nonfragile_interface)
1940 << ResultType << BaseExpr->getSourceRange();
1941 return ExprError();
1942 }
1943
Sebastian Redl8b769972009-01-19 00:08:26 +00001944 Base.release();
1945 Idx.release();
Mike Stump9afab102009-02-19 03:04:26 +00001946 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp,
Steve Naroff774e4152009-01-21 00:14:39 +00001947 ResultType, RLoc));
Chris Lattner4b009652007-07-25 00:24:17 +00001948}
1949
Steve Naroff1b8a46c2007-07-27 22:15:19 +00001950QualType Sema::
Nate Begemanaf6ed502008-04-18 23:10:10 +00001951CheckExtVectorComponent(QualType baseType, SourceLocation OpLoc,
Steve Naroff1b8a46c2007-07-27 22:15:19 +00001952 IdentifierInfo &CompName, SourceLocation CompLoc) {
Nate Begemanaf6ed502008-04-18 23:10:10 +00001953 const ExtVectorType *vecType = baseType->getAsExtVectorType();
Nate Begemanc8e51f82008-05-09 06:41:27 +00001954
Steve Naroff1b8a46c2007-07-27 22:15:19 +00001955 // The vector accessor can't exceed the number of elements.
1956 const char *compStr = CompName.getName();
Nate Begeman1486b502009-01-18 01:47:54 +00001957
Mike Stump9afab102009-02-19 03:04:26 +00001958 // This flag determines whether or not the component is one of the four
Nate Begeman1486b502009-01-18 01:47:54 +00001959 // special names that indicate a subset of exactly half the elements are
1960 // to be selected.
1961 bool HalvingSwizzle = false;
Mike Stump9afab102009-02-19 03:04:26 +00001962
Nate Begeman1486b502009-01-18 01:47:54 +00001963 // This flag determines whether or not CompName has an 's' char prefix,
1964 // indicating that it is a string of hex values to be used as vector indices.
Nate Begemane2ed6f72009-06-25 21:06:09 +00001965 bool HexSwizzle = *compStr == 's' || *compStr == 'S';
Nate Begemanc8e51f82008-05-09 06:41:27 +00001966
1967 // Check that we've found one of the special components, or that the component
1968 // names must come from the same set.
Mike Stump9afab102009-02-19 03:04:26 +00001969 if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") ||
Nate Begeman1486b502009-01-18 01:47:54 +00001970 !strcmp(compStr, "even") || !strcmp(compStr, "odd")) {
1971 HalvingSwizzle = true;
Nate Begemanc8e51f82008-05-09 06:41:27 +00001972 } else if (vecType->getPointAccessorIdx(*compStr) != -1) {
Chris Lattner9096b792007-08-02 22:33:49 +00001973 do
1974 compStr++;
1975 while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1);
Nate Begeman1486b502009-01-18 01:47:54 +00001976 } else if (HexSwizzle || vecType->getNumericAccessorIdx(*compStr) != -1) {
Chris Lattner9096b792007-08-02 22:33:49 +00001977 do
1978 compStr++;
Nate Begeman1486b502009-01-18 01:47:54 +00001979 while (*compStr && vecType->getNumericAccessorIdx(*compStr) != -1);
Chris Lattner9096b792007-08-02 22:33:49 +00001980 }
Nate Begeman1486b502009-01-18 01:47:54 +00001981
Mike Stump9afab102009-02-19 03:04:26 +00001982 if (!HalvingSwizzle && *compStr) {
Steve Naroff1b8a46c2007-07-27 22:15:19 +00001983 // We didn't get to the end of the string. This means the component names
1984 // didn't come from the same set *or* we encountered an illegal name.
Chris Lattner8ba580c2008-11-19 05:08:23 +00001985 Diag(OpLoc, diag::err_ext_vector_component_name_illegal)
1986 << std::string(compStr,compStr+1) << SourceRange(CompLoc);
Steve Naroff1b8a46c2007-07-27 22:15:19 +00001987 return QualType();
1988 }
Mike Stump9afab102009-02-19 03:04:26 +00001989
Nate Begeman1486b502009-01-18 01:47:54 +00001990 // Ensure no component accessor exceeds the width of the vector type it
1991 // operates on.
1992 if (!HalvingSwizzle) {
1993 compStr = CompName.getName();
1994
1995 if (HexSwizzle)
Steve Naroff1b8a46c2007-07-27 22:15:19 +00001996 compStr++;
Nate Begeman1486b502009-01-18 01:47:54 +00001997
1998 while (*compStr) {
1999 if (!vecType->isAccessorWithinNumElements(*compStr++)) {
2000 Diag(OpLoc, diag::err_ext_vector_component_exceeds_length)
2001 << baseType << SourceRange(CompLoc);
2002 return QualType();
2003 }
2004 }
Steve Naroff1b8a46c2007-07-27 22:15:19 +00002005 }
Nate Begemanc8e51f82008-05-09 06:41:27 +00002006
Nate Begeman1486b502009-01-18 01:47:54 +00002007 // If this is a halving swizzle, verify that the base type has an even
2008 // number of elements.
2009 if (HalvingSwizzle && (vecType->getNumElements() & 1U)) {
Chris Lattner8ba580c2008-11-19 05:08:23 +00002010 Diag(OpLoc, diag::err_ext_vector_component_requires_even)
Chris Lattner4bfd2232008-11-24 06:25:27 +00002011 << baseType << SourceRange(CompLoc);
Nate Begemanc8e51f82008-05-09 06:41:27 +00002012 return QualType();
2013 }
Mike Stump9afab102009-02-19 03:04:26 +00002014
Steve Naroff1b8a46c2007-07-27 22:15:19 +00002015 // The component accessor looks fine - now we need to compute the actual type.
Mike Stump9afab102009-02-19 03:04:26 +00002016 // The vector type is implied by the component accessor. For example,
Steve Naroff1b8a46c2007-07-27 22:15:19 +00002017 // vec4.b is a float, vec4.xy is a vec2, vec4.rgb is a vec3, etc.
Nate Begeman1486b502009-01-18 01:47:54 +00002018 // vec4.s0 is a float, vec4.s23 is a vec3, etc.
Nate Begemanc8e51f82008-05-09 06:41:27 +00002019 // vec4.hi, vec4.lo, vec4.e, and vec4.o all return vec2.
Nate Begeman1486b502009-01-18 01:47:54 +00002020 unsigned CompSize = HalvingSwizzle ? vecType->getNumElements() / 2
2021 : CompName.getLength();
2022 if (HexSwizzle)
2023 CompSize--;
2024
Steve Naroff1b8a46c2007-07-27 22:15:19 +00002025 if (CompSize == 1)
2026 return vecType->getElementType();
Mike Stump9afab102009-02-19 03:04:26 +00002027
Nate Begemanaf6ed502008-04-18 23:10:10 +00002028 QualType VT = Context.getExtVectorType(vecType->getElementType(), CompSize);
Mike Stump9afab102009-02-19 03:04:26 +00002029 // Now look up the TypeDefDecl from the vector type. Without this,
Nate Begemanaf6ed502008-04-18 23:10:10 +00002030 // diagostics look bad. We want extended vector types to appear built-in.
2031 for (unsigned i = 0, E = ExtVectorDecls.size(); i != E; ++i) {
2032 if (ExtVectorDecls[i]->getUnderlyingType() == VT)
2033 return Context.getTypedefType(ExtVectorDecls[i]);
Steve Naroff82113e32007-07-29 16:33:31 +00002034 }
2035 return VT; // should never get here (a typedef type should always be found).
Steve Naroff1b8a46c2007-07-27 22:15:19 +00002036}
2037
Fariborz Jahanian854f4002009-03-19 18:15:34 +00002038static Decl *FindGetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl,
2039 IdentifierInfo &Member,
Douglas Gregorc55b0b02009-04-09 21:40:53 +00002040 const Selector &Sel,
2041 ASTContext &Context) {
Fariborz Jahanian854f4002009-03-19 18:15:34 +00002042
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +00002043 if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(&Member))
Fariborz Jahanian854f4002009-03-19 18:15:34 +00002044 return PD;
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +00002045 if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel))
Fariborz Jahanian854f4002009-03-19 18:15:34 +00002046 return OMD;
2047
2048 for (ObjCProtocolDecl::protocol_iterator I = PDecl->protocol_begin(),
2049 E = PDecl->protocol_end(); I != E; ++I) {
Douglas Gregorc55b0b02009-04-09 21:40:53 +00002050 if (Decl *D = FindGetterNameDeclFromProtocolList(*I, Member, Sel,
2051 Context))
Fariborz Jahanian854f4002009-03-19 18:15:34 +00002052 return D;
2053 }
2054 return 0;
2055}
2056
Steve Naroffc75c1a82009-06-17 22:40:22 +00002057static Decl *FindGetterNameDecl(const ObjCObjectPointerType *QIdTy,
Fariborz Jahanian854f4002009-03-19 18:15:34 +00002058 IdentifierInfo &Member,
Douglas Gregorc55b0b02009-04-09 21:40:53 +00002059 const Selector &Sel,
2060 ASTContext &Context) {
Fariborz Jahanian854f4002009-03-19 18:15:34 +00002061 // Check protocols on qualified interfaces.
2062 Decl *GDecl = 0;
Steve Naroffc75c1a82009-06-17 22:40:22 +00002063 for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(),
Fariborz Jahanian854f4002009-03-19 18:15:34 +00002064 E = QIdTy->qual_end(); I != E; ++I) {
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +00002065 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(&Member)) {
Fariborz Jahanian854f4002009-03-19 18:15:34 +00002066 GDecl = PD;
2067 break;
2068 }
2069 // Also must look for a getter name which uses property syntax.
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +00002070 if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Sel)) {
Fariborz Jahanian854f4002009-03-19 18:15:34 +00002071 GDecl = OMD;
2072 break;
2073 }
2074 }
2075 if (!GDecl) {
Steve Naroffc75c1a82009-06-17 22:40:22 +00002076 for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(),
Fariborz Jahanian854f4002009-03-19 18:15:34 +00002077 E = QIdTy->qual_end(); I != E; ++I) {
2078 // Search in the protocol-qualifier list of current protocol.
Douglas Gregorc55b0b02009-04-09 21:40:53 +00002079 GDecl = FindGetterNameDeclFromProtocolList(*I, Member, Sel, Context);
Fariborz Jahanian854f4002009-03-19 18:15:34 +00002080 if (GDecl)
2081 return GDecl;
2082 }
2083 }
2084 return GDecl;
2085}
Chris Lattner2cb744b2009-02-15 22:43:40 +00002086
Fariborz Jahanian0119fd22009-04-07 18:28:06 +00002087/// FindMethodInNestedImplementations - Look up a method in current and
2088/// all base class implementations.
2089///
2090ObjCMethodDecl *Sema::FindMethodInNestedImplementations(
2091 const ObjCInterfaceDecl *IFace,
2092 const Selector &Sel) {
2093 ObjCMethodDecl *Method = 0;
Argiris Kirtzidisb1c4ee52009-07-21 00:06:04 +00002094 if (ObjCImplementationDecl *ImpDecl = IFace->getImplementation())
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +00002095 Method = ImpDecl->getInstanceMethod(Sel);
Fariborz Jahanian0119fd22009-04-07 18:28:06 +00002096
2097 if (!Method && IFace->getSuperClass())
2098 return FindMethodInNestedImplementations(IFace->getSuperClass(), Sel);
2099 return Method;
2100}
2101
Sebastian Redl8b769972009-01-19 00:08:26 +00002102Action::OwningExprResult
2103Sema::ActOnMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc,
2104 tok::TokenKind OpKind, SourceLocation MemberLoc,
Fariborz Jahanian0cc2ac12009-03-04 22:30:12 +00002105 IdentifierInfo &Member,
Douglas Gregorda61ad22009-08-06 03:17:00 +00002106 DeclPtrTy ObjCImpDecl, const CXXScopeSpec *SS) {
2107 // FIXME: handle the CXXScopeSpec for proper lookup of qualified-ids
2108 if (SS && SS->isInvalid())
2109 return ExprError();
2110
Anders Carlssonc154a722009-05-01 19:30:39 +00002111 Expr *BaseExpr = Base.takeAs<Expr>();
Steve Naroff2cb66382007-07-26 03:11:44 +00002112 assert(BaseExpr && "no record expression");
Steve Naroff137e11d2007-12-16 21:42:28 +00002113
2114 // Perform default conversions.
2115 DefaultFunctionArrayConversion(BaseExpr);
Sebastian Redl8b769972009-01-19 00:08:26 +00002116
Steve Naroff2cb66382007-07-26 03:11:44 +00002117 QualType BaseType = BaseExpr->getType();
2118 assert(!BaseType.isNull() && "no type for member expression");
Sebastian Redl8b769972009-01-19 00:08:26 +00002119
Chris Lattnerb2b9da72008-07-21 04:36:39 +00002120 // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr
2121 // must have pointer type, and the accessed type is the pointee.
Chris Lattner4b009652007-07-25 00:24:17 +00002122 if (OpKind == tok::arrow) {
Anders Carlsson72d3c662009-05-15 23:10:19 +00002123 if (BaseType->isDependentType())
Douglas Gregor93b8b0f2009-05-22 21:13:27 +00002124 return Owned(new (Context) CXXUnresolvedMemberExpr(Context,
2125 BaseExpr, true,
2126 OpLoc,
2127 DeclarationName(&Member),
2128 MemberLoc));
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00002129 else if (const PointerType *PT = BaseType->getAs<PointerType>())
Steve Naroff2cb66382007-07-26 03:11:44 +00002130 BaseType = PT->getPointeeType();
Steve Naroff329ec222009-07-10 23:34:53 +00002131 else if (BaseType->isObjCObjectPointerType())
2132 ;
Steve Naroff2cb66382007-07-26 03:11:44 +00002133 else
Sebastian Redl8b769972009-01-19 00:08:26 +00002134 return ExprError(Diag(MemberLoc,
2135 diag::err_typecheck_member_reference_arrow)
2136 << BaseType << BaseExpr->getSourceRange());
Anders Carlsson72d3c662009-05-15 23:10:19 +00002137 } else {
Anders Carlsson4082ecd2009-05-16 20:31:20 +00002138 if (BaseType->isDependentType()) {
2139 // Require that the base type isn't a pointer type
2140 // (so we'll report an error for)
2141 // T* t;
2142 // t.f;
2143 //
2144 // In Obj-C++, however, the above expression is valid, since it could be
2145 // accessing the 'f' property if T is an Obj-C interface. The extra check
2146 // allows this, while still reporting an error if T is a struct pointer.
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00002147 const PointerType *PT = BaseType->getAs<PointerType>();
Anders Carlsson4082ecd2009-05-16 20:31:20 +00002148
2149 if (!PT || (getLangOptions().ObjC1 &&
2150 !PT->getPointeeType()->isRecordType()))
Douglas Gregor93b8b0f2009-05-22 21:13:27 +00002151 return Owned(new (Context) CXXUnresolvedMemberExpr(Context,
2152 BaseExpr, false,
2153 OpLoc,
2154 DeclarationName(&Member),
2155 MemberLoc));
Anders Carlsson4082ecd2009-05-16 20:31:20 +00002156 }
Chris Lattner4b009652007-07-25 00:24:17 +00002157 }
Sebastian Redl8b769972009-01-19 00:08:26 +00002158
Chris Lattnerb2b9da72008-07-21 04:36:39 +00002159 // Handle field access to simple records. This also handles access to fields
2160 // of the ObjC 'id' struct.
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00002161 if (const RecordType *RTy = BaseType->getAs<RecordType>()) {
Steve Naroff2cb66382007-07-26 03:11:44 +00002162 RecordDecl *RDecl = RTy->getDecl();
Douglas Gregorc84d8932009-03-09 16:13:40 +00002163 if (RequireCompleteType(OpLoc, BaseType,
Douglas Gregor46fe06e2009-01-19 19:26:10 +00002164 diag::err_typecheck_incomplete_tag,
2165 BaseExpr->getSourceRange()))
2166 return ExprError();
2167
Douglas Gregorda61ad22009-08-06 03:17:00 +00002168 DeclContext *DC = RDecl;
2169 if (SS && SS->isSet()) {
2170 // If the member name was a qualified-id, look into the
2171 // nested-name-specifier.
2172 DC = computeDeclContext(*SS, false);
2173
2174 // FIXME: If DC is not computable, we should build a
2175 // CXXUnresolvedMemberExpr.
2176 assert(DC && "Cannot handle non-computable dependent contexts in lookup");
2177 }
2178
Steve Naroff2cb66382007-07-26 03:11:44 +00002179 // The record definition is complete, now make sure the member is valid.
Sebastian Redl8b769972009-01-19 00:08:26 +00002180 LookupResult Result
Douglas Gregorda61ad22009-08-06 03:17:00 +00002181 = LookupQualifiedName(DC, DeclarationName(&Member),
Douglas Gregor52ae30c2009-01-30 01:04:22 +00002182 LookupMemberName, false);
Douglas Gregor29dfa2f2009-01-15 00:26:24 +00002183
Douglas Gregor12431cb2009-08-06 05:28:30 +00002184 if (SS && SS->isSet()) {
Douglas Gregorda61ad22009-08-06 03:17:00 +00002185 QualType BaseTypeCanon
2186 = Context.getCanonicalType(BaseType).getUnqualifiedType();
2187 QualType MemberTypeCanon
2188 = Context.getCanonicalType(
2189 Context.getTypeDeclType(
2190 dyn_cast<TypeDecl>(Result.getAsDecl()->getDeclContext())));
2191
2192 if (BaseTypeCanon != MemberTypeCanon &&
2193 !IsDerivedFrom(BaseTypeCanon, MemberTypeCanon))
2194 return ExprError(Diag(SS->getBeginLoc(),
2195 diag::err_not_direct_base_or_virtual)
2196 << MemberTypeCanon << BaseTypeCanon);
2197 }
2198
Douglas Gregor29dfa2f2009-01-15 00:26:24 +00002199 if (!Result)
Sebastian Redl8b769972009-01-19 00:08:26 +00002200 return ExprError(Diag(MemberLoc, diag::err_typecheck_no_member)
2201 << &Member << BaseExpr->getSourceRange());
Chris Lattner84ad8332009-03-31 08:18:48 +00002202 if (Result.isAmbiguous()) {
Sebastian Redl8b769972009-01-19 00:08:26 +00002203 DiagnoseAmbiguousLookup(Result, DeclarationName(&Member),
2204 MemberLoc, BaseExpr->getSourceRange());
2205 return ExprError();
Chris Lattner84ad8332009-03-31 08:18:48 +00002206 }
2207
2208 NamedDecl *MemberDecl = Result;
Douglas Gregor8acb7272008-12-11 16:49:14 +00002209
Chris Lattnerfd57ecc2009-02-13 22:08:30 +00002210 // If the decl being referenced had an error, return an error for this
2211 // sub-expr without emitting another error, in order to avoid cascading
2212 // error cases.
2213 if (MemberDecl->isInvalidDecl())
2214 return ExprError();
Mike Stump9afab102009-02-19 03:04:26 +00002215
Douglas Gregoraa57e862009-02-18 21:56:37 +00002216 // Check the use of this field
2217 if (DiagnoseUseOfDecl(MemberDecl, MemberLoc))
2218 return ExprError();
Chris Lattnerfd57ecc2009-02-13 22:08:30 +00002219
Douglas Gregorddfd9d52008-12-23 00:26:44 +00002220 if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl)) {
Douglas Gregor723d3332009-01-07 00:43:41 +00002221 // We may have found a field within an anonymous union or struct
2222 // (C++ [class.union]).
2223 if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion())
Sebastian Redlcd883f72009-01-18 18:53:16 +00002224 return BuildAnonymousStructUnionMemberReference(MemberLoc, FD,
Sebastian Redl8b769972009-01-19 00:08:26 +00002225 BaseExpr, OpLoc);
Douglas Gregor723d3332009-01-07 00:43:41 +00002226
Douglas Gregor82d44772008-12-20 23:49:58 +00002227 // Figure out the type of the member; see C99 6.5.2.3p3, C++ [expr.ref]
Douglas Gregorddfd9d52008-12-23 00:26:44 +00002228 QualType MemberType = FD->getType();
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00002229 if (const ReferenceType *Ref = MemberType->getAs<ReferenceType>())
Douglas Gregor82d44772008-12-20 23:49:58 +00002230 MemberType = Ref->getPointeeType();
2231 else {
Mon P Wang04d89cb2009-07-22 03:08:17 +00002232 unsigned BaseAddrSpace = BaseType.getAddressSpace();
Douglas Gregor82d44772008-12-20 23:49:58 +00002233 unsigned combinedQualifiers =
2234 MemberType.getCVRQualifiers() | BaseType.getCVRQualifiers();
Douglas Gregorddfd9d52008-12-23 00:26:44 +00002235 if (FD->isMutable())
Douglas Gregor82d44772008-12-20 23:49:58 +00002236 combinedQualifiers &= ~QualType::Const;
2237 MemberType = MemberType.getQualifiedType(combinedQualifiers);
Mon P Wang04d89cb2009-07-22 03:08:17 +00002238 if (BaseAddrSpace != MemberType.getAddressSpace())
2239 MemberType = Context.getAddrSpaceQualType(MemberType, BaseAddrSpace);
Douglas Gregor82d44772008-12-20 23:49:58 +00002240 }
Eli Friedman76b49832008-02-06 22:48:16 +00002241
Douglas Gregorcad27f62009-06-22 23:06:13 +00002242 MarkDeclarationReferenced(MemberLoc, FD);
Fariborz Jahanian843336e2009-07-29 19:40:11 +00002243 if (PerformObjectMemberConversion(BaseExpr, FD))
2244 return ExprError();
Steve Naroff774e4152009-01-21 00:14:39 +00002245 return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, FD,
2246 MemberLoc, MemberType));
Chris Lattner84ad8332009-03-31 08:18:48 +00002247 }
2248
Douglas Gregorcad27f62009-06-22 23:06:13 +00002249 if (VarDecl *Var = dyn_cast<VarDecl>(MemberDecl)) {
2250 MarkDeclarationReferenced(MemberLoc, MemberDecl);
Steve Naroff774e4152009-01-21 00:14:39 +00002251 return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow,
Chris Lattner84ad8332009-03-31 08:18:48 +00002252 Var, MemberLoc,
2253 Var->getType().getNonReferenceType()));
Douglas Gregorcad27f62009-06-22 23:06:13 +00002254 }
2255 if (FunctionDecl *MemberFn = dyn_cast<FunctionDecl>(MemberDecl)) {
2256 MarkDeclarationReferenced(MemberLoc, MemberDecl);
Mike Stump9afab102009-02-19 03:04:26 +00002257 return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow,
Chris Lattner84ad8332009-03-31 08:18:48 +00002258 MemberFn, MemberLoc,
2259 MemberFn->getType()));
Douglas Gregorcad27f62009-06-22 23:06:13 +00002260 }
Chris Lattner84ad8332009-03-31 08:18:48 +00002261 if (OverloadedFunctionDecl *Ovl
2262 = dyn_cast<OverloadedFunctionDecl>(MemberDecl))
Steve Naroff774e4152009-01-21 00:14:39 +00002263 return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, Ovl,
Chris Lattner84ad8332009-03-31 08:18:48 +00002264 MemberLoc, Context.OverloadTy));
Douglas Gregorcad27f62009-06-22 23:06:13 +00002265 if (EnumConstantDecl *Enum = dyn_cast<EnumConstantDecl>(MemberDecl)) {
2266 MarkDeclarationReferenced(MemberLoc, MemberDecl);
Mike Stump9afab102009-02-19 03:04:26 +00002267 return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow,
2268 Enum, MemberLoc, Enum->getType()));
Douglas Gregorcad27f62009-06-22 23:06:13 +00002269 }
Chris Lattner84ad8332009-03-31 08:18:48 +00002270 if (isa<TypeDecl>(MemberDecl))
Sebastian Redl8b769972009-01-19 00:08:26 +00002271 return ExprError(Diag(MemberLoc,diag::err_typecheck_member_reference_type)
2272 << DeclarationName(&Member) << int(OpKind == tok::arrow));
Eli Friedman76b49832008-02-06 22:48:16 +00002273
Douglas Gregor82d44772008-12-20 23:49:58 +00002274 // We found a declaration kind that we didn't expect. This is a
2275 // generic error message that tells the user that she can't refer
2276 // to this member with '.' or '->'.
Sebastian Redl8b769972009-01-19 00:08:26 +00002277 return ExprError(Diag(MemberLoc,
2278 diag::err_typecheck_member_reference_unknown)
2279 << DeclarationName(&Member) << int(OpKind == tok::arrow));
Chris Lattnera57cf472008-07-21 04:28:12 +00002280 }
Sebastian Redl8b769972009-01-19 00:08:26 +00002281
Steve Naroff329ec222009-07-10 23:34:53 +00002282 // Handle properties on ObjC 'Class' types.
Steve Naroff7982a642009-07-13 17:19:15 +00002283 if (OpKind == tok::period && BaseType->isObjCClassType()) {
Steve Naroff329ec222009-07-10 23:34:53 +00002284 // Also must look for a getter name which uses property syntax.
2285 Selector Sel = PP.getSelectorTable().getNullarySelector(&Member);
2286 if (ObjCMethodDecl *MD = getCurMethodDecl()) {
2287 ObjCInterfaceDecl *IFace = MD->getClassInterface();
2288 ObjCMethodDecl *Getter;
2289 // FIXME: need to also look locally in the implementation.
2290 if ((Getter = IFace->lookupClassMethod(Sel))) {
2291 // Check the use of this method.
2292 if (DiagnoseUseOfDecl(Getter, MemberLoc))
2293 return ExprError();
2294 }
2295 // If we found a getter then this may be a valid dot-reference, we
2296 // will look for the matching setter, in case it is needed.
2297 Selector SetterSel =
2298 SelectorTable::constructSetterName(PP.getIdentifierTable(),
2299 PP.getSelectorTable(), &Member);
2300 ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel);
2301 if (!Setter) {
2302 // If this reference is in an @implementation, also check for 'private'
2303 // methods.
2304 Setter = FindMethodInNestedImplementations(IFace, SetterSel);
2305 }
2306 // Look through local category implementations associated with the class.
Argiris Kirtzidis20096862009-07-21 00:06:20 +00002307 if (!Setter)
2308 Setter = IFace->getCategoryClassMethod(SetterSel);
Steve Naroff329ec222009-07-10 23:34:53 +00002309
2310 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
2311 return ExprError();
2312
2313 if (Getter || Setter) {
2314 QualType PType;
2315
2316 if (Getter)
2317 PType = Getter->getResultType();
2318 else {
2319 for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(),
2320 E = Setter->param_end(); PI != E; ++PI)
2321 PType = (*PI)->getType();
2322 }
2323 // FIXME: we must check that the setter has property type.
2324 return Owned(new (Context) ObjCKVCRefExpr(Getter, PType,
2325 Setter, MemberLoc, BaseExpr));
2326 }
2327 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
2328 << &Member << BaseType);
2329 }
2330 }
Chris Lattnere9d71612008-07-21 04:59:05 +00002331 // Handle access to Objective-C instance variables, such as "Obj->ivar" and
2332 // (*Obj).ivar.
Steve Naroff329ec222009-07-10 23:34:53 +00002333 if ((OpKind == tok::arrow && BaseType->isObjCObjectPointerType()) ||
2334 (OpKind == tok::period && BaseType->isObjCInterfaceType())) {
2335 const ObjCObjectPointerType *OPT = BaseType->getAsObjCObjectPointerType();
2336 const ObjCInterfaceType *IFaceT =
2337 OPT ? OPT->getInterfaceType() : BaseType->getAsObjCInterfaceType();
Steve Naroff4e743962009-07-16 00:25:06 +00002338 if (IFaceT) {
2339 ObjCInterfaceDecl *IDecl = IFaceT->getDecl();
2340 ObjCInterfaceDecl *ClassDeclared;
2341 ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(&Member, ClassDeclared);
2342
2343 if (IV) {
2344 // If the decl being referenced had an error, return an error for this
2345 // sub-expr without emitting another error, in order to avoid cascading
2346 // error cases.
2347 if (IV->isInvalidDecl())
2348 return ExprError();
Douglas Gregoraa57e862009-02-18 21:56:37 +00002349
Steve Naroff4e743962009-07-16 00:25:06 +00002350 // Check whether we can reference this field.
2351 if (DiagnoseUseOfDecl(IV, MemberLoc))
2352 return ExprError();
2353 if (IV->getAccessControl() != ObjCIvarDecl::Public &&
2354 IV->getAccessControl() != ObjCIvarDecl::Package) {
2355 ObjCInterfaceDecl *ClassOfMethodDecl = 0;
2356 if (ObjCMethodDecl *MD = getCurMethodDecl())
2357 ClassOfMethodDecl = MD->getClassInterface();
2358 else if (ObjCImpDecl && getCurFunctionDecl()) {
2359 // Case of a c-function declared inside an objc implementation.
2360 // FIXME: For a c-style function nested inside an objc implementation
2361 // class, there is no implementation context available, so we pass
2362 // down the context as argument to this routine. Ideally, this context
2363 // need be passed down in the AST node and somehow calculated from the
2364 // AST for a function decl.
2365 Decl *ImplDecl = ObjCImpDecl.getAs<Decl>();
2366 if (ObjCImplementationDecl *IMPD =
2367 dyn_cast<ObjCImplementationDecl>(ImplDecl))
2368 ClassOfMethodDecl = IMPD->getClassInterface();
2369 else if (ObjCCategoryImplDecl* CatImplClass =
2370 dyn_cast<ObjCCategoryImplDecl>(ImplDecl))
2371 ClassOfMethodDecl = CatImplClass->getClassInterface();
2372 }
2373
2374 if (IV->getAccessControl() == ObjCIvarDecl::Private) {
2375 if (ClassDeclared != IDecl ||
2376 ClassOfMethodDecl != ClassDeclared)
2377 Diag(MemberLoc, diag::error_private_ivar_access)
2378 << IV->getDeclName();
Mike Stump90fc78e2009-08-04 21:02:39 +00002379 } else if (!IDecl->isSuperClassOf(ClassOfMethodDecl))
2380 // @protected
Steve Naroff4e743962009-07-16 00:25:06 +00002381 Diag(MemberLoc, diag::error_protected_ivar_access)
2382 << IV->getDeclName();
Steve Narofff9606572009-03-04 18:34:24 +00002383 }
Steve Naroff4e743962009-07-16 00:25:06 +00002384
2385 return Owned(new (Context) ObjCIvarRefExpr(IV, IV->getType(),
2386 MemberLoc, BaseExpr,
2387 OpKind == tok::arrow));
Fariborz Jahaniandd71e752009-03-03 01:21:12 +00002388 }
Steve Naroff4e743962009-07-16 00:25:06 +00002389 return ExprError(Diag(MemberLoc, diag::err_typecheck_member_reference_ivar)
2390 << IDecl->getDeclName() << &Member
2391 << BaseExpr->getSourceRange());
Fariborz Jahanian09772392008-12-13 22:20:28 +00002392 }
Steve Naroff29d293b2009-07-24 17:54:45 +00002393 // We have an 'id' type. Rather than fall through, we check if this
2394 // is a reference to 'isa'.
Steve Naroffbbe4f962009-07-29 14:06:03 +00002395 if (Member.isStr("isa"))
Steve Naroff29d293b2009-07-24 17:54:45 +00002396 return Owned(new (Context) ObjCIsaExpr(BaseExpr, true, MemberLoc,
2397 Context.getObjCIdType()));
Chris Lattnera57cf472008-07-21 04:28:12 +00002398 }
Steve Naroff7bffd372009-07-15 18:40:39 +00002399 // Handle properties on 'id' and qualified "id".
2400 if (OpKind == tok::period && (BaseType->isObjCIdType() ||
2401 BaseType->isObjCQualifiedIdType())) {
2402 const ObjCObjectPointerType *QIdTy = BaseType->getAsObjCObjectPointerType();
2403
Steve Naroff329ec222009-07-10 23:34:53 +00002404 // Check protocols on qualified interfaces.
2405 Selector Sel = PP.getSelectorTable().getNullarySelector(&Member);
2406 if (Decl *PMDecl = FindGetterNameDecl(QIdTy, Member, Sel, Context)) {
2407 if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(PMDecl)) {
2408 // Check the use of this declaration
2409 if (DiagnoseUseOfDecl(PD, MemberLoc))
2410 return ExprError();
2411
2412 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
2413 MemberLoc, BaseExpr));
2414 }
2415 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(PMDecl)) {
2416 // Check the use of this method.
2417 if (DiagnoseUseOfDecl(OMD, MemberLoc))
2418 return ExprError();
2419
2420 return Owned(new (Context) ObjCMessageExpr(BaseExpr, Sel,
2421 OMD->getResultType(),
2422 OMD, OpLoc, MemberLoc,
2423 NULL, 0));
2424 }
2425 }
Sebastian Redl8b769972009-01-19 00:08:26 +00002426
Steve Naroff329ec222009-07-10 23:34:53 +00002427 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
2428 << &Member << BaseType);
2429 }
Chris Lattnere9d71612008-07-21 04:59:05 +00002430 // Handle Objective-C property access, which is "Obj.property" where Obj is a
2431 // pointer to a (potentially qualified) interface type.
Steve Naroff329ec222009-07-10 23:34:53 +00002432 const ObjCObjectPointerType *OPT;
2433 if (OpKind == tok::period &&
2434 (OPT = BaseType->getAsObjCInterfacePointerType())) {
2435 const ObjCInterfaceType *IFaceT = OPT->getInterfaceType();
2436 ObjCInterfaceDecl *IFace = IFaceT->getDecl();
2437
Daniel Dunbar60e8b162008-09-03 01:05:41 +00002438 // Search for a declared property first.
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +00002439 if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(&Member)) {
Douglas Gregoraa57e862009-02-18 21:56:37 +00002440 // Check whether we can reference this property.
2441 if (DiagnoseUseOfDecl(PD, MemberLoc))
2442 return ExprError();
Fariborz Jahaniana996bb02009-05-08 19:36:34 +00002443 QualType ResTy = PD->getType();
2444 Selector Sel = PP.getSelectorTable().getNullarySelector(&Member);
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +00002445 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
Fariborz Jahanian80ccaa92009-05-08 20:20:55 +00002446 if (DiagnosePropertyAccessorMismatch(PD, Getter, MemberLoc))
2447 ResTy = Getter->getResultType();
Fariborz Jahaniana996bb02009-05-08 19:36:34 +00002448 return Owned(new (Context) ObjCPropertyRefExpr(PD, ResTy,
Chris Lattner51f6fb32009-02-16 18:35:08 +00002449 MemberLoc, BaseExpr));
2450 }
Daniel Dunbar60e8b162008-09-03 01:05:41 +00002451 // Check protocols on qualified interfaces.
Steve Naroff8194a542009-07-20 17:56:53 +00002452 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
2453 E = OPT->qual_end(); I != E; ++I)
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +00002454 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(&Member)) {
Douglas Gregoraa57e862009-02-18 21:56:37 +00002455 // Check whether we can reference this property.
2456 if (DiagnoseUseOfDecl(PD, MemberLoc))
2457 return ExprError();
Chris Lattner51f6fb32009-02-16 18:35:08 +00002458
Steve Naroff774e4152009-01-21 00:14:39 +00002459 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
Chris Lattner51f6fb32009-02-16 18:35:08 +00002460 MemberLoc, BaseExpr));
2461 }
Steve Naroff329ec222009-07-10 23:34:53 +00002462 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
2463 E = OPT->qual_end(); I != E; ++I)
2464 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(&Member)) {
2465 // Check whether we can reference this property.
2466 if (DiagnoseUseOfDecl(PD, MemberLoc))
2467 return ExprError();
Daniel Dunbar60e8b162008-09-03 01:05:41 +00002468
Steve Naroff329ec222009-07-10 23:34:53 +00002469 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
2470 MemberLoc, BaseExpr));
2471 }
Daniel Dunbar60e8b162008-09-03 01:05:41 +00002472 // If that failed, look for an "implicit" property by seeing if the nullary
2473 // selector is implemented.
2474
2475 // FIXME: The logic for looking up nullary and unary selectors should be
2476 // shared with the code in ActOnInstanceMessage.
2477
2478 Selector Sel = PP.getSelectorTable().getNullarySelector(&Member);
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +00002479 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
Sebastian Redl8b769972009-01-19 00:08:26 +00002480
Daniel Dunbar60e8b162008-09-03 01:05:41 +00002481 // If this reference is in an @implementation, check for 'private' methods.
2482 if (!Getter)
Fariborz Jahanian0119fd22009-04-07 18:28:06 +00002483 Getter = FindMethodInNestedImplementations(IFace, Sel);
Daniel Dunbar60e8b162008-09-03 01:05:41 +00002484
Steve Naroff04151f32008-10-22 19:16:27 +00002485 // Look through local category implementations associated with the class.
Argiris Kirtzidis20096862009-07-21 00:06:20 +00002486 if (!Getter)
2487 Getter = IFace->getCategoryInstanceMethod(Sel);
Daniel Dunbar60e8b162008-09-03 01:05:41 +00002488 if (Getter) {
Douglas Gregoraa57e862009-02-18 21:56:37 +00002489 // Check if we can reference this property.
2490 if (DiagnoseUseOfDecl(Getter, MemberLoc))
2491 return ExprError();
Steve Naroffdede0c92009-03-11 13:48:17 +00002492 }
2493 // If we found a getter then this may be a valid dot-reference, we
2494 // will look for the matching setter, in case it is needed.
2495 Selector SetterSel =
2496 SelectorTable::constructSetterName(PP.getIdentifierTable(),
2497 PP.getSelectorTable(), &Member);
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +00002498 ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel);
Steve Naroffdede0c92009-03-11 13:48:17 +00002499 if (!Setter) {
2500 // If this reference is in an @implementation, also check for 'private'
2501 // methods.
Fariborz Jahanian0119fd22009-04-07 18:28:06 +00002502 Setter = FindMethodInNestedImplementations(IFace, SetterSel);
Steve Naroffdede0c92009-03-11 13:48:17 +00002503 }
2504 // Look through local category implementations associated with the class.
Argiris Kirtzidis20096862009-07-21 00:06:20 +00002505 if (!Setter)
2506 Setter = IFace->getCategoryInstanceMethod(SetterSel);
Sebastian Redl8b769972009-01-19 00:08:26 +00002507
Steve Naroffdede0c92009-03-11 13:48:17 +00002508 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
2509 return ExprError();
2510
2511 if (Getter || Setter) {
2512 QualType PType;
2513
2514 if (Getter)
2515 PType = Getter->getResultType();
2516 else {
2517 for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(),
2518 E = Setter->param_end(); PI != E; ++PI)
2519 PType = (*PI)->getType();
2520 }
2521 // FIXME: we must check that the setter has property type.
2522 return Owned(new (Context) ObjCKVCRefExpr(Getter, PType,
2523 Setter, MemberLoc, BaseExpr));
2524 }
Sebastian Redl8b769972009-01-19 00:08:26 +00002525 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
2526 << &Member << BaseType);
Fariborz Jahanian4af72492007-11-12 22:29:28 +00002527 }
Steve Naroffe3aa06f2009-03-05 20:12:00 +00002528
Steve Naroff29d293b2009-07-24 17:54:45 +00002529 // Handle the following exceptional case (*Obj).isa.
2530 if (OpKind == tok::period &&
2531 BaseType->isSpecificBuiltinType(BuiltinType::ObjCId) &&
Steve Naroffbbe4f962009-07-29 14:06:03 +00002532 Member.isStr("isa"))
Steve Naroff29d293b2009-07-24 17:54:45 +00002533 return Owned(new (Context) ObjCIsaExpr(BaseExpr, false, MemberLoc,
2534 Context.getObjCIdType()));
2535
Chris Lattnera57cf472008-07-21 04:28:12 +00002536 // Handle 'field access' to vectors, such as 'V.xx'.
Chris Lattner09020ee2009-02-16 21:11:58 +00002537 if (BaseType->isExtVectorType()) {
Chris Lattnera57cf472008-07-21 04:28:12 +00002538 QualType ret = CheckExtVectorComponent(BaseType, OpLoc, Member, MemberLoc);
2539 if (ret.isNull())
Sebastian Redl8b769972009-01-19 00:08:26 +00002540 return ExprError();
Mike Stump9afab102009-02-19 03:04:26 +00002541 return Owned(new (Context) ExtVectorElementExpr(ret, BaseExpr, Member,
Steve Naroff774e4152009-01-21 00:14:39 +00002542 MemberLoc));
Chris Lattnera57cf472008-07-21 04:28:12 +00002543 }
Sebastian Redl8b769972009-01-19 00:08:26 +00002544
Douglas Gregor762da552009-03-27 06:00:30 +00002545 Diag(MemberLoc, diag::err_typecheck_member_reference_struct_union)
2546 << BaseType << BaseExpr->getSourceRange();
2547
2548 // If the user is trying to apply -> or . to a function or function
2549 // pointer, it's probably because they forgot parentheses to call
2550 // the function. Suggest the addition of those parentheses.
2551 if (BaseType == Context.OverloadTy ||
2552 BaseType->isFunctionType() ||
2553 (BaseType->isPointerType() &&
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00002554 BaseType->getAs<PointerType>()->isFunctionType())) {
Douglas Gregor762da552009-03-27 06:00:30 +00002555 SourceLocation Loc = PP.getLocForEndOfToken(BaseExpr->getLocEnd());
2556 Diag(Loc, diag::note_member_reference_needs_call)
2557 << CodeModificationHint::CreateInsertion(Loc, "()");
2558 }
2559
2560 return ExprError();
Chris Lattner4b009652007-07-25 00:24:17 +00002561}
2562
Douglas Gregor3257fb52008-12-22 05:46:06 +00002563/// ConvertArgumentsForCall - Converts the arguments specified in
2564/// Args/NumArgs to the parameter types of the function FDecl with
2565/// function prototype Proto. Call is the call expression itself, and
2566/// Fn is the function expression. For a C++ member function, this
2567/// routine does not attempt to convert the object argument. Returns
2568/// true if the call is ill-formed.
Mike Stump9afab102009-02-19 03:04:26 +00002569bool
2570Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn,
Douglas Gregor3257fb52008-12-22 05:46:06 +00002571 FunctionDecl *FDecl,
Douglas Gregor4fa58902009-02-26 23:50:07 +00002572 const FunctionProtoType *Proto,
Douglas Gregor3257fb52008-12-22 05:46:06 +00002573 Expr **Args, unsigned NumArgs,
2574 SourceLocation RParenLoc) {
Mike Stump9afab102009-02-19 03:04:26 +00002575 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by
Douglas Gregor3257fb52008-12-22 05:46:06 +00002576 // assignment, to the types of the corresponding parameter, ...
2577 unsigned NumArgsInProto = Proto->getNumArgs();
2578 unsigned NumArgsToCheck = NumArgs;
Douglas Gregor4ac887b2009-01-23 21:30:56 +00002579 bool Invalid = false;
2580
Douglas Gregor3257fb52008-12-22 05:46:06 +00002581 // If too few arguments are available (and we don't have default
2582 // arguments for the remaining parameters), don't make the call.
2583 if (NumArgs < NumArgsInProto) {
2584 if (!FDecl || NumArgs < FDecl->getMinRequiredArguments())
2585 return Diag(RParenLoc, diag::err_typecheck_call_too_few_args)
2586 << Fn->getType()->isBlockPointerType() << Fn->getSourceRange();
2587 // Use default arguments for missing arguments
2588 NumArgsToCheck = NumArgsInProto;
Ted Kremenek0c97e042009-02-07 01:47:29 +00002589 Call->setNumArgs(Context, NumArgsInProto);
Douglas Gregor3257fb52008-12-22 05:46:06 +00002590 }
2591
2592 // If too many are passed and not variadic, error on the extras and drop
2593 // them.
2594 if (NumArgs > NumArgsInProto) {
2595 if (!Proto->isVariadic()) {
2596 Diag(Args[NumArgsInProto]->getLocStart(),
2597 diag::err_typecheck_call_too_many_args)
2598 << Fn->getType()->isBlockPointerType() << Fn->getSourceRange()
2599 << SourceRange(Args[NumArgsInProto]->getLocStart(),
2600 Args[NumArgs-1]->getLocEnd());
2601 // This deletes the extra arguments.
Ted Kremenek0c97e042009-02-07 01:47:29 +00002602 Call->setNumArgs(Context, NumArgsInProto);
Douglas Gregor4ac887b2009-01-23 21:30:56 +00002603 Invalid = true;
Douglas Gregor3257fb52008-12-22 05:46:06 +00002604 }
2605 NumArgsToCheck = NumArgsInProto;
2606 }
Mike Stump9afab102009-02-19 03:04:26 +00002607
Douglas Gregor3257fb52008-12-22 05:46:06 +00002608 // Continue to check argument types (even if we have too few/many args).
2609 for (unsigned i = 0; i != NumArgsToCheck; i++) {
2610 QualType ProtoArgType = Proto->getArgType(i);
Mike Stump9afab102009-02-19 03:04:26 +00002611
Douglas Gregor3257fb52008-12-22 05:46:06 +00002612 Expr *Arg;
Douglas Gregor62ae25a2008-12-24 00:01:03 +00002613 if (i < NumArgs) {
Douglas Gregor3257fb52008-12-22 05:46:06 +00002614 Arg = Args[i];
Douglas Gregor62ae25a2008-12-24 00:01:03 +00002615
Eli Friedman83dec9e2009-03-22 22:00:50 +00002616 if (RequireCompleteType(Arg->getSourceRange().getBegin(),
2617 ProtoArgType,
2618 diag::err_call_incomplete_argument,
2619 Arg->getSourceRange()))
2620 return true;
2621
Douglas Gregor62ae25a2008-12-24 00:01:03 +00002622 // Pass the argument.
2623 if (PerformCopyInitialization(Arg, ProtoArgType, "passing"))
2624 return true;
Anders Carlssona116e6e2009-06-12 16:51:40 +00002625 } else {
2626 if (FDecl->getParamDecl(i)->hasUnparsedDefaultArg()) {
2627 Diag (Call->getSourceRange().getBegin(),
2628 diag::err_use_of_default_argument_to_function_declared_later) <<
2629 FDecl << cast<CXXRecordDecl>(FDecl->getDeclContext())->getDeclName();
2630 Diag(UnparsedDefaultArgLocs[FDecl->getParamDecl(i)],
2631 diag::note_default_argument_declared_here);
Anders Carlsson37bb2bd2009-06-16 03:37:31 +00002632 } else {
2633 Expr *DefaultExpr = FDecl->getParamDecl(i)->getDefaultArg();
2634
2635 // If the default expression creates temporaries, we need to
2636 // push them to the current stack of expression temporaries so they'll
2637 // be properly destroyed.
2638 if (CXXExprWithTemporaries *E
2639 = dyn_cast_or_null<CXXExprWithTemporaries>(DefaultExpr)) {
2640 assert(!E->shouldDestroyTemporaries() &&
2641 "Can't destroy temporaries in a default argument expr!");
2642 for (unsigned I = 0, N = E->getNumTemporaries(); I != N; ++I)
2643 ExprTemporaries.push_back(E->getTemporary(I));
2644 }
Anders Carlssona116e6e2009-06-12 16:51:40 +00002645 }
Anders Carlsson37bb2bd2009-06-16 03:37:31 +00002646
Douglas Gregor62ae25a2008-12-24 00:01:03 +00002647 // We already type-checked the argument, so we know it works.
Steve Naroff774e4152009-01-21 00:14:39 +00002648 Arg = new (Context) CXXDefaultArgExpr(FDecl->getParamDecl(i));
Anders Carlssona116e6e2009-06-12 16:51:40 +00002649 }
2650
Douglas Gregor3257fb52008-12-22 05:46:06 +00002651 QualType ArgType = Arg->getType();
Mike Stump9afab102009-02-19 03:04:26 +00002652
Douglas Gregor3257fb52008-12-22 05:46:06 +00002653 Call->setArg(i, Arg);
2654 }
Mike Stump9afab102009-02-19 03:04:26 +00002655
Douglas Gregor3257fb52008-12-22 05:46:06 +00002656 // If this is a variadic call, handle args passed through "...".
2657 if (Proto->isVariadic()) {
Anders Carlsson4b8e38c2009-01-16 16:48:51 +00002658 VariadicCallType CallType = VariadicFunction;
2659 if (Fn->getType()->isBlockPointerType())
2660 CallType = VariadicBlock; // Block
2661 else if (isa<MemberExpr>(Fn))
2662 CallType = VariadicMethod;
2663
Douglas Gregor3257fb52008-12-22 05:46:06 +00002664 // Promote the arguments (C99 6.5.2.2p7).
2665 for (unsigned i = NumArgsInProto; i != NumArgs; i++) {
2666 Expr *Arg = Args[i];
Chris Lattner81f00ed2009-04-12 08:11:20 +00002667 Invalid |= DefaultVariadicArgumentPromotion(Arg, CallType);
Douglas Gregor3257fb52008-12-22 05:46:06 +00002668 Call->setArg(i, Arg);
2669 }
2670 }
2671
Douglas Gregor4ac887b2009-01-23 21:30:56 +00002672 return Invalid;
Douglas Gregor3257fb52008-12-22 05:46:06 +00002673}
2674
Steve Naroff87d58b42007-09-16 03:34:24 +00002675/// ActOnCallExpr - Handle a call to Fn with the specified array of arguments.
Chris Lattner4b009652007-07-25 00:24:17 +00002676/// This provides the location of the left/right parens and a list of comma
2677/// locations.
Sebastian Redl8b769972009-01-19 00:08:26 +00002678Action::OwningExprResult
2679Sema::ActOnCallExpr(Scope *S, ExprArg fn, SourceLocation LParenLoc,
2680 MultiExprArg args,
Douglas Gregor3257fb52008-12-22 05:46:06 +00002681 SourceLocation *CommaLocs, SourceLocation RParenLoc) {
Sebastian Redl8b769972009-01-19 00:08:26 +00002682 unsigned NumArgs = args.size();
Anders Carlssonc154a722009-05-01 19:30:39 +00002683 Expr *Fn = fn.takeAs<Expr>();
Sebastian Redl8b769972009-01-19 00:08:26 +00002684 Expr **Args = reinterpret_cast<Expr**>(args.release());
Chris Lattner4b009652007-07-25 00:24:17 +00002685 assert(Fn && "no function call expression");
Chris Lattner3e254fb2008-04-08 04:40:51 +00002686 FunctionDecl *FDecl = NULL;
Fariborz Jahanianc10357d2009-05-15 20:33:25 +00002687 NamedDecl *NDecl = NULL;
Douglas Gregor4646f9c2009-02-04 15:01:18 +00002688 DeclarationName UnqualifiedName;
Douglas Gregor3257fb52008-12-22 05:46:06 +00002689
Douglas Gregor3257fb52008-12-22 05:46:06 +00002690 if (getLangOptions().CPlusPlus) {
Douglas Gregor4646f9c2009-02-04 15:01:18 +00002691 // Determine whether this is a dependent call inside a C++ template,
Mike Stump9afab102009-02-19 03:04:26 +00002692 // in which case we won't do any semantic analysis now.
Mike Stumpe127ae32009-05-16 07:39:55 +00002693 // FIXME: Will need to cache the results of name lookup (including ADL) in
2694 // Fn.
Douglas Gregor4646f9c2009-02-04 15:01:18 +00002695 bool Dependent = false;
2696 if (Fn->isTypeDependent())
2697 Dependent = true;
2698 else if (Expr::hasAnyTypeDependentArguments(Args, NumArgs))
2699 Dependent = true;
2700
2701 if (Dependent)
Ted Kremenek362abcd2009-02-09 20:51:47 +00002702 return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs,
Douglas Gregor4646f9c2009-02-04 15:01:18 +00002703 Context.DependentTy, RParenLoc));
2704
2705 // Determine whether this is a call to an object (C++ [over.call.object]).
2706 if (Fn->getType()->isRecordType())
2707 return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs,
2708 CommaLocs, RParenLoc));
2709
Douglas Gregoraa1da4a2009-02-04 00:32:51 +00002710 // Determine whether this is a call to a member function.
Douglas Gregorb60eb752009-06-25 22:08:12 +00002711 if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(Fn->IgnoreParens())) {
2712 NamedDecl *MemDecl = MemExpr->getMemberDecl();
2713 if (isa<OverloadedFunctionDecl>(MemDecl) ||
2714 isa<CXXMethodDecl>(MemDecl) ||
2715 (isa<FunctionTemplateDecl>(MemDecl) &&
2716 isa<CXXMethodDecl>(
2717 cast<FunctionTemplateDecl>(MemDecl)->getTemplatedDecl())))
Sebastian Redl8b769972009-01-19 00:08:26 +00002718 return Owned(BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs,
2719 CommaLocs, RParenLoc));
Douglas Gregorb60eb752009-06-25 22:08:12 +00002720 }
Douglas Gregor3257fb52008-12-22 05:46:06 +00002721 }
2722
Douglas Gregoraa1da4a2009-02-04 00:32:51 +00002723 // If we're directly calling a function, get the appropriate declaration.
Douglas Gregorc9a03b72009-06-30 23:57:56 +00002724 // Also, in C++, keep track of whether we should perform argument-dependent
2725 // lookup and whether there were any explicitly-specified template arguments.
Douglas Gregoraa1da4a2009-02-04 00:32:51 +00002726 Expr *FnExpr = Fn;
2727 bool ADL = true;
Douglas Gregorc9a03b72009-06-30 23:57:56 +00002728 bool HasExplicitTemplateArgs = 0;
2729 const TemplateArgument *ExplicitTemplateArgs = 0;
2730 unsigned NumExplicitTemplateArgs = 0;
Douglas Gregoraa1da4a2009-02-04 00:32:51 +00002731 while (true) {
2732 if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(FnExpr))
2733 FnExpr = IcExpr->getSubExpr();
2734 else if (ParenExpr *PExpr = dyn_cast<ParenExpr>(FnExpr)) {
Mike Stump9afab102009-02-19 03:04:26 +00002735 // Parentheses around a function disable ADL
Douglas Gregor4646f9c2009-02-04 15:01:18 +00002736 // (C++0x [basic.lookup.argdep]p1).
Douglas Gregoraa1da4a2009-02-04 00:32:51 +00002737 ADL = false;
2738 FnExpr = PExpr->getSubExpr();
2739 } else if (isa<UnaryOperator>(FnExpr) &&
Mike Stump9afab102009-02-19 03:04:26 +00002740 cast<UnaryOperator>(FnExpr)->getOpcode()
Douglas Gregoraa1da4a2009-02-04 00:32:51 +00002741 == UnaryOperator::AddrOf) {
2742 FnExpr = cast<UnaryOperator>(FnExpr)->getSubExpr();
Douglas Gregor28857752009-06-30 22:34:41 +00002743 } else if (DeclRefExpr *DRExpr = dyn_cast<DeclRefExpr>(FnExpr)) {
Chris Lattnere50fb0b2009-02-14 07:22:29 +00002744 // Qualified names disable ADL (C++0x [basic.lookup.argdep]p1).
2745 ADL &= !isa<QualifiedDeclRefExpr>(DRExpr);
Douglas Gregor28857752009-06-30 22:34:41 +00002746 NDecl = dyn_cast<NamedDecl>(DRExpr->getDecl());
Chris Lattnere50fb0b2009-02-14 07:22:29 +00002747 break;
Mike Stump9afab102009-02-19 03:04:26 +00002748 } else if (UnresolvedFunctionNameExpr *DepName
Chris Lattnere50fb0b2009-02-14 07:22:29 +00002749 = dyn_cast<UnresolvedFunctionNameExpr>(FnExpr)) {
2750 UnqualifiedName = DepName->getName();
2751 break;
Douglas Gregor28857752009-06-30 22:34:41 +00002752 } else if (TemplateIdRefExpr *TemplateIdRef
2753 = dyn_cast<TemplateIdRefExpr>(FnExpr)) {
2754 NDecl = TemplateIdRef->getTemplateName().getAsTemplateDecl();
Douglas Gregor6631cb42009-07-29 18:26:50 +00002755 if (!NDecl)
2756 NDecl = TemplateIdRef->getTemplateName().getAsOverloadedFunctionDecl();
Douglas Gregorc9a03b72009-06-30 23:57:56 +00002757 HasExplicitTemplateArgs = true;
2758 ExplicitTemplateArgs = TemplateIdRef->getTemplateArgs();
2759 NumExplicitTemplateArgs = TemplateIdRef->getNumTemplateArgs();
2760
2761 // C++ [temp.arg.explicit]p6:
2762 // [Note: For simple function names, argument dependent lookup (3.4.2)
2763 // applies even when the function name is not visible within the
2764 // scope of the call. This is because the call still has the syntactic
2765 // form of a function call (3.4.1). But when a function template with
2766 // explicit template arguments is used, the call does not have the
2767 // correct syntactic form unless there is a function template with
2768 // that name visible at the point of the call. If no such name is
2769 // visible, the call is not syntactically well-formed and
2770 // argument-dependent lookup does not apply. If some such name is
2771 // visible, argument dependent lookup applies and additional function
2772 // templates may be found in other namespaces.
2773 //
2774 // The summary of this paragraph is that, if we get to this point and the
2775 // template-id was not a qualified name, then argument-dependent lookup
2776 // is still possible.
2777 if (TemplateIdRef->getQualifier())
2778 ADL = false;
Douglas Gregor28857752009-06-30 22:34:41 +00002779 break;
Douglas Gregoraa1da4a2009-02-04 00:32:51 +00002780 } else {
Chris Lattnere50fb0b2009-02-14 07:22:29 +00002781 // Any kind of name that does not refer to a declaration (or
2782 // set of declarations) disables ADL (C++0x [basic.lookup.argdep]p3).
2783 ADL = false;
Douglas Gregoraa1da4a2009-02-04 00:32:51 +00002784 break;
2785 }
Douglas Gregord2baafd2008-10-21 16:13:35 +00002786 }
Mike Stump9afab102009-02-19 03:04:26 +00002787
Douglas Gregor4646f9c2009-02-04 15:01:18 +00002788 OverloadedFunctionDecl *Ovl = 0;
Douglas Gregorb60eb752009-06-25 22:08:12 +00002789 FunctionTemplateDecl *FunctionTemplate = 0;
Douglas Gregor28857752009-06-30 22:34:41 +00002790 if (NDecl) {
2791 FDecl = dyn_cast<FunctionDecl>(NDecl);
2792 if ((FunctionTemplate = dyn_cast<FunctionTemplateDecl>(NDecl)))
Douglas Gregorb60eb752009-06-25 22:08:12 +00002793 FDecl = FunctionTemplate->getTemplatedDecl();
2794 else
Douglas Gregor28857752009-06-30 22:34:41 +00002795 FDecl = dyn_cast<FunctionDecl>(NDecl);
2796 Ovl = dyn_cast<OverloadedFunctionDecl>(NDecl);
Douglas Gregor4646f9c2009-02-04 15:01:18 +00002797 }
Douglas Gregord2baafd2008-10-21 16:13:35 +00002798
Douglas Gregorb60eb752009-06-25 22:08:12 +00002799 if (Ovl || FunctionTemplate ||
2800 (getLangOptions().CPlusPlus && (FDecl || UnqualifiedName))) {
Douglas Gregor411889e2009-02-13 23:20:09 +00002801 // We don't perform ADL for implicit declarations of builtins.
Douglas Gregorb5af7382009-02-14 18:57:46 +00002802 if (FDecl && FDecl->getBuiltinID(Context) && FDecl->isImplicit())
Douglas Gregoraa1da4a2009-02-04 00:32:51 +00002803 ADL = false;
2804
Douglas Gregorfcb19192009-02-11 23:02:49 +00002805 // We don't perform ADL in C.
2806 if (!getLangOptions().CPlusPlus)
2807 ADL = false;
2808
Douglas Gregorb60eb752009-06-25 22:08:12 +00002809 if (Ovl || FunctionTemplate || ADL) {
Douglas Gregorc9a03b72009-06-30 23:57:56 +00002810 FDecl = ResolveOverloadedCallFn(Fn, NDecl, UnqualifiedName,
2811 HasExplicitTemplateArgs,
2812 ExplicitTemplateArgs,
2813 NumExplicitTemplateArgs,
2814 LParenLoc, Args, NumArgs, CommaLocs,
2815 RParenLoc, ADL);
Douglas Gregoraa1da4a2009-02-04 00:32:51 +00002816 if (!FDecl)
2817 return ExprError();
2818
2819 // Update Fn to refer to the actual function selected.
2820 Expr *NewFn = 0;
Mike Stump9afab102009-02-19 03:04:26 +00002821 if (QualifiedDeclRefExpr *QDRExpr
Douglas Gregor28857752009-06-30 22:34:41 +00002822 = dyn_cast<QualifiedDeclRefExpr>(FnExpr))
Douglas Gregor1e589cc2009-03-26 23:50:42 +00002823 NewFn = new (Context) QualifiedDeclRefExpr(FDecl, FDecl->getType(),
2824 QDRExpr->getLocation(),
2825 false, false,
2826 QDRExpr->getQualifierRange(),
2827 QDRExpr->getQualifier());
Douglas Gregoraa1da4a2009-02-04 00:32:51 +00002828 else
Mike Stump9afab102009-02-19 03:04:26 +00002829 NewFn = new (Context) DeclRefExpr(FDecl, FDecl->getType(),
Douglas Gregoraa1da4a2009-02-04 00:32:51 +00002830 Fn->getSourceRange().getBegin());
2831 Fn->Destroy(Context);
2832 Fn = NewFn;
2833 }
Douglas Gregord2baafd2008-10-21 16:13:35 +00002834 }
Chris Lattner3e254fb2008-04-08 04:40:51 +00002835
2836 // Promote the function operand.
2837 UsualUnaryConversions(Fn);
2838
Chris Lattner83bd5eb2007-12-28 05:29:59 +00002839 // Make the call expr early, before semantic checks. This guarantees cleanup
2840 // of arguments and function on error.
Ted Kremenek362abcd2009-02-09 20:51:47 +00002841 ExprOwningPtr<CallExpr> TheCall(this, new (Context) CallExpr(Context, Fn,
2842 Args, NumArgs,
2843 Context.BoolTy,
2844 RParenLoc));
Sebastian Redl8b769972009-01-19 00:08:26 +00002845
Steve Naroffd6163f32008-09-05 22:11:13 +00002846 const FunctionType *FuncT;
2847 if (!Fn->getType()->isBlockPointerType()) {
2848 // C99 6.5.2.2p1 - "The expression that denotes the called function shall
2849 // have type pointer to function".
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00002850 const PointerType *PT = Fn->getType()->getAs<PointerType>();
Steve Naroffd6163f32008-09-05 22:11:13 +00002851 if (PT == 0)
Sebastian Redl8b769972009-01-19 00:08:26 +00002852 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
2853 << Fn->getType() << Fn->getSourceRange());
Steve Naroffd6163f32008-09-05 22:11:13 +00002854 FuncT = PT->getPointeeType()->getAsFunctionType();
2855 } else { // This is a block call.
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00002856 FuncT = Fn->getType()->getAs<BlockPointerType>()->getPointeeType()->
Steve Naroffd6163f32008-09-05 22:11:13 +00002857 getAsFunctionType();
2858 }
Chris Lattner83bd5eb2007-12-28 05:29:59 +00002859 if (FuncT == 0)
Sebastian Redl8b769972009-01-19 00:08:26 +00002860 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
2861 << Fn->getType() << Fn->getSourceRange());
2862
Eli Friedman83dec9e2009-03-22 22:00:50 +00002863 // Check for a valid return type
2864 if (!FuncT->getResultType()->isVoidType() &&
2865 RequireCompleteType(Fn->getSourceRange().getBegin(),
2866 FuncT->getResultType(),
2867 diag::err_call_incomplete_return,
2868 TheCall->getSourceRange()))
2869 return ExprError();
2870
Chris Lattner83bd5eb2007-12-28 05:29:59 +00002871 // We know the result type of the call, set it.
Douglas Gregor2aecd1f2008-10-29 02:00:59 +00002872 TheCall->setType(FuncT->getResultType().getNonReferenceType());
Sebastian Redl8b769972009-01-19 00:08:26 +00002873
Douglas Gregor4fa58902009-02-26 23:50:07 +00002874 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) {
Mike Stump9afab102009-02-19 03:04:26 +00002875 if (ConvertArgumentsForCall(&*TheCall, Fn, FDecl, Proto, Args, NumArgs,
Douglas Gregor3257fb52008-12-22 05:46:06 +00002876 RParenLoc))
Sebastian Redl8b769972009-01-19 00:08:26 +00002877 return ExprError();
Chris Lattner83bd5eb2007-12-28 05:29:59 +00002878 } else {
Douglas Gregor4fa58902009-02-26 23:50:07 +00002879 assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!");
Sebastian Redl8b769972009-01-19 00:08:26 +00002880
Douglas Gregora8f2ae62009-04-02 15:37:10 +00002881 if (FDecl) {
2882 // Check if we have too few/too many template arguments, based
2883 // on our knowledge of the function definition.
2884 const FunctionDecl *Def = 0;
Argiris Kirtzidisccb9efe2009-06-30 02:35:26 +00002885 if (FDecl->getBody(Def) && NumArgs != Def->param_size()) {
Eli Friedmanf7ed7812009-06-01 09:24:59 +00002886 const FunctionProtoType *Proto =
2887 Def->getType()->getAsFunctionProtoType();
2888 if (!Proto || !(Proto->isVariadic() && NumArgs >= Def->param_size())) {
2889 Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments)
2890 << (NumArgs > Def->param_size()) << FDecl << Fn->getSourceRange();
2891 }
2892 }
Douglas Gregora8f2ae62009-04-02 15:37:10 +00002893 }
2894
Steve Naroffdb65e052007-08-28 23:30:39 +00002895 // Promote the arguments (C99 6.5.2.2p6).
Chris Lattner83bd5eb2007-12-28 05:29:59 +00002896 for (unsigned i = 0; i != NumArgs; i++) {
2897 Expr *Arg = Args[i];
2898 DefaultArgumentPromotion(Arg);
Eli Friedman83dec9e2009-03-22 22:00:50 +00002899 if (RequireCompleteType(Arg->getSourceRange().getBegin(),
2900 Arg->getType(),
2901 diag::err_call_incomplete_argument,
2902 Arg->getSourceRange()))
2903 return ExprError();
Chris Lattner83bd5eb2007-12-28 05:29:59 +00002904 TheCall->setArg(i, Arg);
Steve Naroffdb65e052007-08-28 23:30:39 +00002905 }
Chris Lattner4b009652007-07-25 00:24:17 +00002906 }
Chris Lattner83bd5eb2007-12-28 05:29:59 +00002907
Douglas Gregor3257fb52008-12-22 05:46:06 +00002908 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl))
2909 if (!Method->isStatic())
Sebastian Redl8b769972009-01-19 00:08:26 +00002910 return ExprError(Diag(LParenLoc, diag::err_member_call_without_object)
2911 << Fn->getSourceRange());
Douglas Gregor3257fb52008-12-22 05:46:06 +00002912
Fariborz Jahanianc10357d2009-05-15 20:33:25 +00002913 // Check for sentinels
2914 if (NDecl)
2915 DiagnoseSentinelCalls(NDecl, LParenLoc, Args, NumArgs);
Chris Lattner2e64c072007-08-10 20:18:51 +00002916 // Do special checking on direct calls to functions.
Fariborz Jahanianc10357d2009-05-15 20:33:25 +00002917 if (FDecl)
Eli Friedmand0e9d092008-05-14 19:38:39 +00002918 return CheckFunctionCall(FDecl, TheCall.take());
Fariborz Jahanianf83c85f2009-05-18 21:05:18 +00002919 if (NDecl)
2920 return CheckBlockCall(NDecl, TheCall.take());
Chris Lattner2e64c072007-08-10 20:18:51 +00002921
Sebastian Redl8b769972009-01-19 00:08:26 +00002922 return Owned(TheCall.take());
Chris Lattner4b009652007-07-25 00:24:17 +00002923}
2924
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002925Action::OwningExprResult
2926Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty,
2927 SourceLocation RParenLoc, ExprArg InitExpr) {
Steve Naroff87d58b42007-09-16 03:34:24 +00002928 assert((Ty != 0) && "ActOnCompoundLiteral(): missing type");
Chris Lattner4b009652007-07-25 00:24:17 +00002929 QualType literalType = QualType::getFromOpaquePtr(Ty);
2930 // FIXME: put back this assert when initializers are worked out.
Steve Naroff87d58b42007-09-16 03:34:24 +00002931 //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression");
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002932 Expr *literalExpr = static_cast<Expr*>(InitExpr.get());
Anders Carlsson9374b852007-12-05 07:24:19 +00002933
Eli Friedman8c2173d2008-05-20 05:22:08 +00002934 if (literalType->isArrayType()) {
Chris Lattnera1923f62008-08-04 07:31:14 +00002935 if (literalType->isVariableArrayType())
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002936 return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init)
2937 << SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd()));
Douglas Gregored71c542009-05-21 23:48:18 +00002938 } else if (!literalType->isDependentType() &&
2939 RequireCompleteType(LParenLoc, literalType,
2940 diag::err_typecheck_decl_incomplete_type,
Douglas Gregor46fe06e2009-01-19 19:26:10 +00002941 SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd())))
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002942 return ExprError();
Eli Friedman8c2173d2008-05-20 05:22:08 +00002943
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002944 if (CheckInitializerTypes(literalExpr, literalType, LParenLoc,
Douglas Gregor6214d8a2009-01-14 15:45:31 +00002945 DeclarationName(), /*FIXME:DirectInit=*/false))
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002946 return ExprError();
Steve Naroffbe37fc02008-01-14 18:19:28 +00002947
Chris Lattnere5cb5862008-12-04 23:50:19 +00002948 bool isFileScope = getCurFunctionOrMethodDecl() == 0;
Steve Naroffbe37fc02008-01-14 18:19:28 +00002949 if (isFileScope) { // 6.5.2.5p3
Steve Narofff0b23542008-01-10 22:15:12 +00002950 if (CheckForConstantInitializer(literalExpr, literalType))
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002951 return ExprError();
Steve Narofff0b23542008-01-10 22:15:12 +00002952 }
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002953 InitExpr.release();
Mike Stump9afab102009-02-19 03:04:26 +00002954 return Owned(new (Context) CompoundLiteralExpr(LParenLoc, literalType,
Steve Naroff774e4152009-01-21 00:14:39 +00002955 literalExpr, isFileScope));
Chris Lattner4b009652007-07-25 00:24:17 +00002956}
2957
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002958Action::OwningExprResult
2959Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg initlist,
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002960 SourceLocation RBraceLoc) {
2961 unsigned NumInit = initlist.size();
2962 Expr **InitList = reinterpret_cast<Expr**>(initlist.release());
Anders Carlsson762b7c72007-08-31 04:56:16 +00002963
Steve Naroff0acc9c92007-09-15 18:49:24 +00002964 // Semantic analysis for initializers is done by ActOnDeclarator() and
Mike Stump9afab102009-02-19 03:04:26 +00002965 // CheckInitializer() - it requires knowledge of the object being intialized.
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002966
Mike Stump9afab102009-02-19 03:04:26 +00002967 InitListExpr *E = new (Context) InitListExpr(LBraceLoc, InitList, NumInit,
Douglas Gregorf603b472009-01-28 21:54:33 +00002968 RBraceLoc);
Chris Lattner48d7f382008-04-02 04:24:33 +00002969 E->setType(Context.VoidTy); // FIXME: just a place holder for now.
Sebastian Redl5457c5e2009-01-19 22:31:54 +00002970 return Owned(E);
Chris Lattner4b009652007-07-25 00:24:17 +00002971}
2972
Argiris Kirtzidis95de23a2008-08-16 20:27:34 +00002973/// CheckCastTypes - Check type constraints for casting between types.
Sebastian Redlc358b622009-07-29 13:50:23 +00002974bool Sema::CheckCastTypes(SourceRange TyR, QualType castType, Expr *&castExpr,
Anders Carlsson9583fa72009-08-07 22:21:05 +00002975 CastExpr::CastKind& Kind, bool FunctionalStyle) {
Sebastian Redl0e35d042009-07-25 15:41:38 +00002976 if (getLangOptions().CPlusPlus)
Anders Carlsson9583fa72009-08-07 22:21:05 +00002977 return CXXCheckCStyleCast(TyR, castType, castExpr, Kind, FunctionalStyle);
Sebastian Redl0e35d042009-07-25 15:41:38 +00002978
Argiris Kirtzidis95de23a2008-08-16 20:27:34 +00002979 UsualUnaryConversions(castExpr);
2980
2981 // C99 6.5.4p2: the cast type needs to be void or scalar and the expression
2982 // type needs to be scalar.
2983 if (castType->isVoidType()) {
2984 // Cast to void allows any expr type.
2985 } else if (!castType->isScalarType() && !castType->isVectorType()) {
Seo Sanghyeon27b33952009-01-15 04:51:39 +00002986 if (Context.getCanonicalType(castType).getUnqualifiedType() ==
2987 Context.getCanonicalType(castExpr->getType().getUnqualifiedType()) &&
2988 (castType->isStructureType() || castType->isUnionType())) {
2989 // GCC struct/union extension: allow cast to self.
Eli Friedman2b128322009-03-23 00:24:07 +00002990 // FIXME: Check that the cast destination type is complete.
Seo Sanghyeon27b33952009-01-15 04:51:39 +00002991 Diag(TyR.getBegin(), diag::ext_typecheck_cast_nonscalar)
2992 << castType << castExpr->getSourceRange();
2993 } else if (castType->isUnionType()) {
2994 // GCC cast to union extension
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00002995 RecordDecl *RD = castType->getAs<RecordType>()->getDecl();
Seo Sanghyeon27b33952009-01-15 04:51:39 +00002996 RecordDecl::field_iterator Field, FieldEnd;
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +00002997 for (Field = RD->field_begin(), FieldEnd = RD->field_end();
Seo Sanghyeon27b33952009-01-15 04:51:39 +00002998 Field != FieldEnd; ++Field) {
2999 if (Context.getCanonicalType(Field->getType()).getUnqualifiedType() ==
3000 Context.getCanonicalType(castExpr->getType()).getUnqualifiedType()) {
3001 Diag(TyR.getBegin(), diag::ext_typecheck_cast_to_union)
3002 << castExpr->getSourceRange();
3003 break;
3004 }
3005 }
3006 if (Field == FieldEnd)
3007 return Diag(TyR.getBegin(), diag::err_typecheck_cast_to_union_no_type)
3008 << castExpr->getType() << castExpr->getSourceRange();
3009 } else {
Argiris Kirtzidis95de23a2008-08-16 20:27:34 +00003010 // Reject any other conversions to non-scalar types.
Chris Lattner8ba580c2008-11-19 05:08:23 +00003011 return Diag(TyR.getBegin(), diag::err_typecheck_cond_expect_scalar)
Chris Lattner4bfd2232008-11-24 06:25:27 +00003012 << castType << castExpr->getSourceRange();
Argiris Kirtzidis95de23a2008-08-16 20:27:34 +00003013 }
Mike Stump9afab102009-02-19 03:04:26 +00003014 } else if (!castExpr->getType()->isScalarType() &&
Argiris Kirtzidis95de23a2008-08-16 20:27:34 +00003015 !castExpr->getType()->isVectorType()) {
Chris Lattner8ba580c2008-11-19 05:08:23 +00003016 return Diag(castExpr->getLocStart(),
3017 diag::err_typecheck_expect_scalar_operand)
Chris Lattner4bfd2232008-11-24 06:25:27 +00003018 << castExpr->getType() << castExpr->getSourceRange();
Nate Begemanbd42e022009-06-26 00:50:28 +00003019 } else if (castType->isExtVectorType()) {
3020 if (CheckExtVectorCast(TyR, castType, castExpr->getType()))
Argiris Kirtzidis95de23a2008-08-16 20:27:34 +00003021 return true;
3022 } else if (castType->isVectorType()) {
3023 if (CheckVectorCast(TyR, castType, castExpr->getType()))
3024 return true;
Nate Begemanbd42e022009-06-26 00:50:28 +00003025 } else if (castExpr->getType()->isVectorType()) {
3026 if (CheckVectorCast(TyR, castExpr->getType(), castType))
3027 return true;
Steve Naroffff6c8022009-03-04 15:11:40 +00003028 } else if (getLangOptions().ObjC1 && isa<ObjCSuperExpr>(castExpr)) {
Steve Naroff49fd7ad2009-04-08 23:52:26 +00003029 return Diag(castExpr->getLocStart(), diag::err_illegal_super_cast) << TyR;
Eli Friedman970e56c2009-05-01 02:23:58 +00003030 } else if (!castType->isArithmeticType()) {
3031 QualType castExprType = castExpr->getType();
3032 if (!castExprType->isIntegralType() && castExprType->isArithmeticType())
3033 return Diag(castExpr->getLocStart(),
3034 diag::err_cast_pointer_from_non_pointer_int)
3035 << castExprType << castExpr->getSourceRange();
3036 } else if (!castExpr->getType()->isArithmeticType()) {
3037 if (!castType->isIntegralType() && castType->isArithmeticType())
3038 return Diag(castExpr->getLocStart(),
3039 diag::err_cast_pointer_to_non_pointer_int)
3040 << castType << castExpr->getSourceRange();
Argiris Kirtzidis95de23a2008-08-16 20:27:34 +00003041 }
Fariborz Jahanian4862e872009-05-22 21:42:52 +00003042 if (isa<ObjCSelectorExpr>(castExpr))
3043 return Diag(castExpr->getLocStart(), diag::err_cast_selector_expr);
Argiris Kirtzidis95de23a2008-08-16 20:27:34 +00003044 return false;
3045}
3046
Chris Lattnerd1f26b32007-12-20 00:44:32 +00003047bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty) {
Anders Carlssonf257b4c2007-11-27 05:51:55 +00003048 assert(VectorTy->isVectorType() && "Not a vector type!");
Mike Stump9afab102009-02-19 03:04:26 +00003049
Anders Carlssonf257b4c2007-11-27 05:51:55 +00003050 if (Ty->isVectorType() || Ty->isIntegerType()) {
Chris Lattner8cd0e932008-03-05 18:54:05 +00003051 if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty))
Anders Carlssonf257b4c2007-11-27 05:51:55 +00003052 return Diag(R.getBegin(),
Mike Stump9afab102009-02-19 03:04:26 +00003053 Ty->isVectorType() ?
Anders Carlssonf257b4c2007-11-27 05:51:55 +00003054 diag::err_invalid_conversion_between_vectors :
Chris Lattner8ba580c2008-11-19 05:08:23 +00003055 diag::err_invalid_conversion_between_vector_and_integer)
Chris Lattner4bfd2232008-11-24 06:25:27 +00003056 << VectorTy << Ty << R;
Anders Carlssonf257b4c2007-11-27 05:51:55 +00003057 } else
3058 return Diag(R.getBegin(),
Chris Lattner8ba580c2008-11-19 05:08:23 +00003059 diag::err_invalid_conversion_between_vector_and_scalar)
Chris Lattner4bfd2232008-11-24 06:25:27 +00003060 << VectorTy << Ty << R;
Mike Stump9afab102009-02-19 03:04:26 +00003061
Anders Carlssonf257b4c2007-11-27 05:51:55 +00003062 return false;
3063}
3064
Nate Begemanbd42e022009-06-26 00:50:28 +00003065bool Sema::CheckExtVectorCast(SourceRange R, QualType DestTy, QualType SrcTy) {
3066 assert(DestTy->isExtVectorType() && "Not an extended vector type!");
3067
Nate Begeman9e063702009-06-27 22:05:55 +00003068 // If SrcTy is a VectorType, the total size must match to explicitly cast to
3069 // an ExtVectorType.
Nate Begemanbd42e022009-06-26 00:50:28 +00003070 if (SrcTy->isVectorType()) {
3071 if (Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy))
3072 return Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors)
3073 << DestTy << SrcTy << R;
3074 return false;
3075 }
3076
Nate Begeman0e0eadd2009-06-28 02:36:38 +00003077 // All non-pointer scalars can be cast to ExtVector type. The appropriate
Nate Begemanbd42e022009-06-26 00:50:28 +00003078 // conversion will take place first from scalar to elt type, and then
3079 // splat from elt type to vector.
Nate Begeman0e0eadd2009-06-28 02:36:38 +00003080 if (SrcTy->isPointerType())
3081 return Diag(R.getBegin(),
3082 diag::err_invalid_conversion_between_vector_and_scalar)
3083 << DestTy << SrcTy << R;
Nate Begemanbd42e022009-06-26 00:50:28 +00003084 return false;
3085}
3086
Sebastian Redl5457c5e2009-01-19 22:31:54 +00003087Action::OwningExprResult
3088Sema::ActOnCastExpr(SourceLocation LParenLoc, TypeTy *Ty,
3089 SourceLocation RParenLoc, ExprArg Op) {
Anders Carlsson9583fa72009-08-07 22:21:05 +00003090 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
3091
Sebastian Redl5457c5e2009-01-19 22:31:54 +00003092 assert((Ty != 0) && (Op.get() != 0) &&
3093 "ActOnCastExpr(): missing type or expr");
Chris Lattner4b009652007-07-25 00:24:17 +00003094
Anders Carlssonc154a722009-05-01 19:30:39 +00003095 Expr *castExpr = Op.takeAs<Expr>();
Chris Lattner4b009652007-07-25 00:24:17 +00003096 QualType castType = QualType::getFromOpaquePtr(Ty);
3097
Anders Carlsson9583fa72009-08-07 22:21:05 +00003098 if (CheckCastTypes(SourceRange(LParenLoc, RParenLoc), castType, castExpr,
3099 Kind))
Sebastian Redl5457c5e2009-01-19 22:31:54 +00003100 return ExprError();
Sebastian Redl0e35d042009-07-25 15:41:38 +00003101 return Owned(new (Context) CStyleCastExpr(castType.getNonReferenceType(),
Anders Carlsson9583fa72009-08-07 22:21:05 +00003102 Kind, castExpr, castType,
3103 LParenLoc, RParenLoc));
Chris Lattner4b009652007-07-25 00:24:17 +00003104}
3105
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00003106/// Note that lhs is not null here, even if this is the gnu "x ?: y" extension.
3107/// In that case, lhs = cond.
Chris Lattner9c039b52009-02-18 04:38:20 +00003108/// C99 6.5.15
3109QualType Sema::CheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS,
3110 SourceLocation QuestionLoc) {
Sebastian Redlbd261962009-04-16 17:51:27 +00003111 // C++ is sufficiently different to merit its own checker.
3112 if (getLangOptions().CPlusPlus)
3113 return CXXCheckConditionalOperands(Cond, LHS, RHS, QuestionLoc);
3114
Chris Lattnere2897262009-02-18 04:28:32 +00003115 UsualUnaryConversions(Cond);
3116 UsualUnaryConversions(LHS);
3117 UsualUnaryConversions(RHS);
3118 QualType CondTy = Cond->getType();
3119 QualType LHSTy = LHS->getType();
3120 QualType RHSTy = RHS->getType();
Chris Lattner4b009652007-07-25 00:24:17 +00003121
3122 // first, check the condition.
Sebastian Redlbd261962009-04-16 17:51:27 +00003123 if (!CondTy->isScalarType()) { // C99 6.5.15p2
3124 Diag(Cond->getLocStart(), diag::err_typecheck_cond_expect_scalar)
3125 << CondTy;
3126 return QualType();
Chris Lattner4b009652007-07-25 00:24:17 +00003127 }
Mike Stump9afab102009-02-19 03:04:26 +00003128
Chris Lattner992ae932008-01-06 22:42:25 +00003129 // Now check the two expressions.
Douglas Gregor1b21c7f2008-12-05 23:32:09 +00003130
Chris Lattner992ae932008-01-06 22:42:25 +00003131 // If both operands have arithmetic type, do the usual arithmetic conversions
3132 // to find a common type: C99 6.5.15p3,5.
Chris Lattnere2897262009-02-18 04:28:32 +00003133 if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) {
3134 UsualArithmeticConversions(LHS, RHS);
3135 return LHS->getType();
Chris Lattner4b009652007-07-25 00:24:17 +00003136 }
Mike Stump9afab102009-02-19 03:04:26 +00003137
Chris Lattner992ae932008-01-06 22:42:25 +00003138 // If both operands are the same structure or union type, the result is that
3139 // type.
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00003140 if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) { // C99 6.5.15p3
3141 if (const RecordType *RHSRT = RHSTy->getAs<RecordType>())
Chris Lattner98a425c2007-11-26 01:40:58 +00003142 if (LHSRT->getDecl() == RHSRT->getDecl())
Mike Stump9afab102009-02-19 03:04:26 +00003143 // "If both the operands have structure or union type, the result has
Chris Lattner992ae932008-01-06 22:42:25 +00003144 // that type." This implies that CV qualifiers are dropped.
Chris Lattnere2897262009-02-18 04:28:32 +00003145 return LHSTy.getUnqualifiedType();
Eli Friedman2b128322009-03-23 00:24:07 +00003146 // FIXME: Type of conditional expression must be complete in C mode.
Chris Lattner4b009652007-07-25 00:24:17 +00003147 }
Mike Stump9afab102009-02-19 03:04:26 +00003148
Chris Lattner992ae932008-01-06 22:42:25 +00003149 // C99 6.5.15p5: "If both operands have void type, the result has void type."
Steve Naroff95cb3892008-05-12 21:44:38 +00003150 // The following || allows only one side to be void (a GCC-ism).
Chris Lattnere2897262009-02-18 04:28:32 +00003151 if (LHSTy->isVoidType() || RHSTy->isVoidType()) {
3152 if (!LHSTy->isVoidType())
3153 Diag(RHS->getLocStart(), diag::ext_typecheck_cond_one_void)
3154 << RHS->getSourceRange();
3155 if (!RHSTy->isVoidType())
3156 Diag(LHS->getLocStart(), diag::ext_typecheck_cond_one_void)
3157 << LHS->getSourceRange();
3158 ImpCastExprToType(LHS, Context.VoidTy);
3159 ImpCastExprToType(RHS, Context.VoidTy);
Eli Friedmanf025aac2008-06-04 19:47:51 +00003160 return Context.VoidTy;
Steve Naroff95cb3892008-05-12 21:44:38 +00003161 }
Steve Naroff12ebf272008-01-08 01:11:38 +00003162 // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has
3163 // the type of the other operand."
Steve Naroff79ae19a2009-07-14 18:25:06 +00003164 if ((LHSTy->isAnyPointerType() || LHSTy->isBlockPointerType()) &&
Chris Lattnere2897262009-02-18 04:28:32 +00003165 RHS->isNullPointerConstant(Context)) {
3166 ImpCastExprToType(RHS, LHSTy); // promote the null to a pointer.
3167 return LHSTy;
Steve Naroff12ebf272008-01-08 01:11:38 +00003168 }
Steve Naroff79ae19a2009-07-14 18:25:06 +00003169 if ((RHSTy->isAnyPointerType() || RHSTy->isBlockPointerType()) &&
Chris Lattnere2897262009-02-18 04:28:32 +00003170 LHS->isNullPointerConstant(Context)) {
3171 ImpCastExprToType(LHS, RHSTy); // promote the null to a pointer.
3172 return RHSTy;
Steve Naroff12ebf272008-01-08 01:11:38 +00003173 }
Steve Naroff5ca84bc2009-07-01 14:36:47 +00003174 // Handle block pointer types.
3175 if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) {
3176 if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) {
3177 if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) {
3178 QualType destType = Context.getPointerType(Context.VoidTy);
3179 ImpCastExprToType(LHS, destType);
3180 ImpCastExprToType(RHS, destType);
3181 return destType;
3182 }
3183 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
3184 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3185 return QualType();
Mike Stumpe97a8542009-05-07 03:14:14 +00003186 }
Steve Naroff5ca84bc2009-07-01 14:36:47 +00003187 // We have 2 block pointer types.
3188 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
3189 // Two identical block pointer types are always compatible.
Mike Stumpe97a8542009-05-07 03:14:14 +00003190 return LHSTy;
3191 }
Steve Naroff5ca84bc2009-07-01 14:36:47 +00003192 // The block pointer types aren't identical, continue checking.
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00003193 QualType lhptee = LHSTy->getAs<BlockPointerType>()->getPointeeType();
3194 QualType rhptee = RHSTy->getAs<BlockPointerType>()->getPointeeType();
Mike Stump9afab102009-02-19 03:04:26 +00003195
Steve Naroff5ca84bc2009-07-01 14:36:47 +00003196 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
3197 rhptee.getUnqualifiedType())) {
Mike Stumpe97a8542009-05-07 03:14:14 +00003198 Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers)
3199 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3200 // In this situation, we assume void* type. No especially good
3201 // reason, but this is what gcc does, and we do have to pick
3202 // to get a consistent AST.
3203 QualType incompatTy = Context.getPointerType(Context.VoidTy);
3204 ImpCastExprToType(LHS, incompatTy);
3205 ImpCastExprToType(RHS, incompatTy);
3206 return incompatTy;
Chris Lattner4b009652007-07-25 00:24:17 +00003207 }
Steve Naroff5ca84bc2009-07-01 14:36:47 +00003208 // The block pointer types are compatible.
3209 ImpCastExprToType(LHS, LHSTy);
3210 ImpCastExprToType(RHS, LHSTy);
Steve Naroff6ba22682009-04-08 17:05:15 +00003211 return LHSTy;
3212 }
Steve Naroff5ca84bc2009-07-01 14:36:47 +00003213 // Check constraints for Objective-C object pointers types.
Steve Naroff329ec222009-07-10 23:34:53 +00003214 if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) {
Steve Naroff5ca84bc2009-07-01 14:36:47 +00003215
3216 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
3217 // Two identical object pointer types are always compatible.
3218 return LHSTy;
3219 }
Steve Naroff329ec222009-07-10 23:34:53 +00003220 const ObjCObjectPointerType *LHSOPT = LHSTy->getAsObjCObjectPointerType();
3221 const ObjCObjectPointerType *RHSOPT = RHSTy->getAsObjCObjectPointerType();
Steve Naroff5ca84bc2009-07-01 14:36:47 +00003222 QualType compositeType = LHSTy;
3223
3224 // If both operands are interfaces and either operand can be
3225 // assigned to the other, use that type as the composite
3226 // type. This allows
3227 // xxx ? (A*) a : (B*) b
3228 // where B is a subclass of A.
3229 //
3230 // Additionally, as for assignment, if either type is 'id'
3231 // allow silent coercion. Finally, if the types are
3232 // incompatible then make sure to use 'id' as the composite
3233 // type so the result is acceptable for sending messages to.
3234
3235 // FIXME: Consider unifying with 'areComparableObjCPointerTypes'.
3236 // It could return the composite type.
Steve Naroff329ec222009-07-10 23:34:53 +00003237 if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) {
Steve Naroff5ca84bc2009-07-01 14:36:47 +00003238 compositeType = LHSTy;
Steve Naroff329ec222009-07-10 23:34:53 +00003239 } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) {
Steve Naroff5ca84bc2009-07-01 14:36:47 +00003240 compositeType = RHSTy;
Steve Naroff329ec222009-07-10 23:34:53 +00003241 } else if ((LHSTy->isObjCQualifiedIdType() ||
3242 RHSTy->isObjCQualifiedIdType()) &&
Steve Naroff99eb86b2009-07-23 01:01:38 +00003243 Context.ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) {
Steve Naroff329ec222009-07-10 23:34:53 +00003244 // Need to handle "id<xx>" explicitly.
3245 // GCC allows qualified id and any Objective-C type to devolve to
3246 // id. Currently localizing to here until clear this should be
3247 // part of ObjCQualifiedIdTypesAreCompatible.
3248 compositeType = Context.getObjCIdType();
3249 } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) {
Steve Naroff5ca84bc2009-07-01 14:36:47 +00003250 compositeType = Context.getObjCIdType();
3251 } else {
3252 Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands)
3253 << LHSTy << RHSTy
3254 << LHS->getSourceRange() << RHS->getSourceRange();
3255 QualType incompatTy = Context.getObjCIdType();
3256 ImpCastExprToType(LHS, incompatTy);
3257 ImpCastExprToType(RHS, incompatTy);
3258 return incompatTy;
3259 }
3260 // The object pointer types are compatible.
3261 ImpCastExprToType(LHS, compositeType);
3262 ImpCastExprToType(RHS, compositeType);
3263 return compositeType;
3264 }
Steve Naroff4ace8ac2009-07-29 15:09:39 +00003265 // Check Objective-C object pointer types and 'void *'
3266 if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) {
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00003267 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType();
Steve Naroff4ace8ac2009-07-29 15:09:39 +00003268 QualType rhptee = RHSTy->getAsObjCObjectPointerType()->getPointeeType();
3269 QualType destPointee = lhptee.getQualifiedType(rhptee.getCVRQualifiers());
3270 QualType destType = Context.getPointerType(destPointee);
3271 ImpCastExprToType(LHS, destType); // add qualifiers if necessary
3272 ImpCastExprToType(RHS, destType); // promote to void*
3273 return destType;
3274 }
3275 if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) {
3276 QualType lhptee = LHSTy->getAsObjCObjectPointerType()->getPointeeType();
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00003277 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType();
Steve Naroff4ace8ac2009-07-29 15:09:39 +00003278 QualType destPointee = rhptee.getQualifiedType(lhptee.getCVRQualifiers());
3279 QualType destType = Context.getPointerType(destPointee);
3280 ImpCastExprToType(RHS, destType); // add qualifiers if necessary
3281 ImpCastExprToType(LHS, destType); // promote to void*
3282 return destType;
3283 }
Steve Naroff5ca84bc2009-07-01 14:36:47 +00003284 // Check constraints for C object pointers types (C99 6.5.15p3,6).
3285 if (LHSTy->isPointerType() && RHSTy->isPointerType()) {
3286 // get the "pointed to" types
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00003287 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType();
3288 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType();
Steve Naroff5ca84bc2009-07-01 14:36:47 +00003289
3290 // ignore qualifiers on void (C99 6.5.15p3, clause 6)
3291 if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) {
3292 // Figure out necessary qualifiers (C99 6.5.15p6)
3293 QualType destPointee=lhptee.getQualifiedType(rhptee.getCVRQualifiers());
3294 QualType destType = Context.getPointerType(destPointee);
3295 ImpCastExprToType(LHS, destType); // add qualifiers if necessary
3296 ImpCastExprToType(RHS, destType); // promote to void*
3297 return destType;
3298 }
3299 if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) {
3300 QualType destPointee=rhptee.getQualifiedType(lhptee.getCVRQualifiers());
3301 QualType destType = Context.getPointerType(destPointee);
3302 ImpCastExprToType(LHS, destType); // add qualifiers if necessary
3303 ImpCastExprToType(RHS, destType); // promote to void*
3304 return destType;
3305 }
3306
3307 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
3308 // Two identical pointer types are always compatible.
3309 return LHSTy;
3310 }
3311 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
3312 rhptee.getUnqualifiedType())) {
3313 Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers)
3314 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3315 // In this situation, we assume void* type. No especially good
3316 // reason, but this is what gcc does, and we do have to pick
3317 // to get a consistent AST.
3318 QualType incompatTy = Context.getPointerType(Context.VoidTy);
3319 ImpCastExprToType(LHS, incompatTy);
3320 ImpCastExprToType(RHS, incompatTy);
3321 return incompatTy;
3322 }
3323 // The pointer types are compatible.
3324 // C99 6.5.15p6: If both operands are pointers to compatible types *or* to
3325 // differently qualified versions of compatible types, the result type is
3326 // a pointer to an appropriately qualified version of the *composite*
3327 // type.
3328 // FIXME: Need to calculate the composite type.
3329 // FIXME: Need to add qualifiers
3330 ImpCastExprToType(LHS, LHSTy);
3331 ImpCastExprToType(RHS, LHSTy);
3332 return LHSTy;
3333 }
3334
3335 // GCC compatibility: soften pointer/integer mismatch.
3336 if (RHSTy->isPointerType() && LHSTy->isIntegerType()) {
3337 Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch)
3338 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3339 ImpCastExprToType(LHS, RHSTy); // promote the integer to a pointer.
3340 return RHSTy;
3341 }
3342 if (LHSTy->isPointerType() && RHSTy->isIntegerType()) {
3343 Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch)
3344 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3345 ImpCastExprToType(RHS, LHSTy); // promote the integer to a pointer.
3346 return LHSTy;
3347 }
Daniel Dunbara7b5fb92008-09-11 23:12:46 +00003348
Chris Lattner992ae932008-01-06 22:42:25 +00003349 // Otherwise, the operands are not compatible.
Chris Lattnere2897262009-02-18 04:28:32 +00003350 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
3351 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
Chris Lattner4b009652007-07-25 00:24:17 +00003352 return QualType();
3353}
3354
Steve Naroff87d58b42007-09-16 03:34:24 +00003355/// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null
Chris Lattner4b009652007-07-25 00:24:17 +00003356/// in the case of a the GNU conditional expr extension.
Sebastian Redl5457c5e2009-01-19 22:31:54 +00003357Action::OwningExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc,
3358 SourceLocation ColonLoc,
3359 ExprArg Cond, ExprArg LHS,
3360 ExprArg RHS) {
3361 Expr *CondExpr = (Expr *) Cond.get();
3362 Expr *LHSExpr = (Expr *) LHS.get(), *RHSExpr = (Expr *) RHS.get();
Chris Lattner98a425c2007-11-26 01:40:58 +00003363
3364 // If this is the gnu "x ?: y" extension, analyze the types as though the LHS
3365 // was the condition.
3366 bool isLHSNull = LHSExpr == 0;
3367 if (isLHSNull)
3368 LHSExpr = CondExpr;
Sebastian Redl5457c5e2009-01-19 22:31:54 +00003369
3370 QualType result = CheckConditionalOperands(CondExpr, LHSExpr,
Chris Lattner4b009652007-07-25 00:24:17 +00003371 RHSExpr, QuestionLoc);
3372 if (result.isNull())
Sebastian Redl5457c5e2009-01-19 22:31:54 +00003373 return ExprError();
3374
3375 Cond.release();
3376 LHS.release();
3377 RHS.release();
Mike Stump9afab102009-02-19 03:04:26 +00003378 return Owned(new (Context) ConditionalOperator(CondExpr,
Steve Naroff774e4152009-01-21 00:14:39 +00003379 isLHSNull ? 0 : LHSExpr,
3380 RHSExpr, result));
Chris Lattner4b009652007-07-25 00:24:17 +00003381}
3382
Chris Lattner4b009652007-07-25 00:24:17 +00003383// CheckPointerTypesForAssignment - This is a very tricky routine (despite
Mike Stump9afab102009-02-19 03:04:26 +00003384// being closely modeled after the C99 spec:-). The odd characteristic of this
Chris Lattner4b009652007-07-25 00:24:17 +00003385// routine is it effectively iqnores the qualifiers on the top level pointee.
3386// This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3].
3387// FIXME: add a couple examples in this comment.
Mike Stump9afab102009-02-19 03:04:26 +00003388Sema::AssignConvertType
Chris Lattner4b009652007-07-25 00:24:17 +00003389Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) {
3390 QualType lhptee, rhptee;
Mike Stump9afab102009-02-19 03:04:26 +00003391
Chris Lattner4b009652007-07-25 00:24:17 +00003392 // get the "pointed to" type (ignoring qualifiers at the top level)
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00003393 lhptee = lhsType->getAs<PointerType>()->getPointeeType();
3394 rhptee = rhsType->getAs<PointerType>()->getPointeeType();
Mike Stump9afab102009-02-19 03:04:26 +00003395
Chris Lattner4b009652007-07-25 00:24:17 +00003396 // make sure we operate on the canonical type
Chris Lattnerd5a56aa2008-07-26 22:17:49 +00003397 lhptee = Context.getCanonicalType(lhptee);
3398 rhptee = Context.getCanonicalType(rhptee);
Chris Lattner4b009652007-07-25 00:24:17 +00003399
Chris Lattner005ed752008-01-04 18:04:52 +00003400 AssignConvertType ConvTy = Compatible;
Mike Stump9afab102009-02-19 03:04:26 +00003401
3402 // C99 6.5.16.1p1: This following citation is common to constraints
3403 // 3 & 4 (below). ...and the type *pointed to* by the left has all the
3404 // qualifiers of the type *pointed to* by the right;
Fariborz Jahanianb60352a2009-02-17 18:27:45 +00003405 // FIXME: Handle ExtQualType
Douglas Gregor6573cfd2008-10-21 23:43:52 +00003406 if (!lhptee.isAtLeastAsQualifiedAs(rhptee))
Chris Lattner005ed752008-01-04 18:04:52 +00003407 ConvTy = CompatiblePointerDiscardsQualifiers;
Chris Lattner4b009652007-07-25 00:24:17 +00003408
Mike Stump9afab102009-02-19 03:04:26 +00003409 // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or
3410 // incomplete type and the other is a pointer to a qualified or unqualified
Chris Lattner4b009652007-07-25 00:24:17 +00003411 // version of void...
Chris Lattner4ca3d772008-01-03 22:56:36 +00003412 if (lhptee->isVoidType()) {
Chris Lattner9db553e2008-04-02 06:59:01 +00003413 if (rhptee->isIncompleteOrObjectType())
Chris Lattner005ed752008-01-04 18:04:52 +00003414 return ConvTy;
Mike Stump9afab102009-02-19 03:04:26 +00003415
Chris Lattner4ca3d772008-01-03 22:56:36 +00003416 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattner9db553e2008-04-02 06:59:01 +00003417 assert(rhptee->isFunctionType());
3418 return FunctionVoidPointer;
Chris Lattner4ca3d772008-01-03 22:56:36 +00003419 }
Mike Stump9afab102009-02-19 03:04:26 +00003420
Chris Lattner4ca3d772008-01-03 22:56:36 +00003421 if (rhptee->isVoidType()) {
Chris Lattner9db553e2008-04-02 06:59:01 +00003422 if (lhptee->isIncompleteOrObjectType())
Chris Lattner005ed752008-01-04 18:04:52 +00003423 return ConvTy;
Chris Lattner4ca3d772008-01-03 22:56:36 +00003424
3425 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattner9db553e2008-04-02 06:59:01 +00003426 assert(lhptee->isFunctionType());
3427 return FunctionVoidPointer;
Chris Lattner4ca3d772008-01-03 22:56:36 +00003428 }
Mike Stump9afab102009-02-19 03:04:26 +00003429 // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or
Chris Lattner4b009652007-07-25 00:24:17 +00003430 // unqualified versions of compatible types, ...
Eli Friedman6ca28cb2009-03-22 23:59:44 +00003431 lhptee = lhptee.getUnqualifiedType();
3432 rhptee = rhptee.getUnqualifiedType();
3433 if (!Context.typesAreCompatible(lhptee, rhptee)) {
3434 // Check if the pointee types are compatible ignoring the sign.
3435 // We explicitly check for char so that we catch "char" vs
3436 // "unsigned char" on systems where "char" is unsigned.
3437 if (lhptee->isCharType()) {
3438 lhptee = Context.UnsignedCharTy;
3439 } else if (lhptee->isSignedIntegerType()) {
3440 lhptee = Context.getCorrespondingUnsignedType(lhptee);
3441 }
3442 if (rhptee->isCharType()) {
3443 rhptee = Context.UnsignedCharTy;
3444 } else if (rhptee->isSignedIntegerType()) {
3445 rhptee = Context.getCorrespondingUnsignedType(rhptee);
3446 }
3447 if (lhptee == rhptee) {
3448 // Types are compatible ignoring the sign. Qualifier incompatibility
3449 // takes priority over sign incompatibility because the sign
3450 // warning can be disabled.
3451 if (ConvTy != Compatible)
3452 return ConvTy;
3453 return IncompatiblePointerSign;
3454 }
3455 // General pointer incompatibility takes priority over qualifiers.
3456 return IncompatiblePointer;
3457 }
Chris Lattner005ed752008-01-04 18:04:52 +00003458 return ConvTy;
Chris Lattner4b009652007-07-25 00:24:17 +00003459}
3460
Steve Naroff3454b6c2008-09-04 15:10:53 +00003461/// CheckBlockPointerTypesForAssignment - This routine determines whether two
3462/// block pointer types are compatible or whether a block and normal pointer
3463/// are compatible. It is more restrict than comparing two function pointer
3464// types.
Mike Stump9afab102009-02-19 03:04:26 +00003465Sema::AssignConvertType
3466Sema::CheckBlockPointerTypesForAssignment(QualType lhsType,
Steve Naroff3454b6c2008-09-04 15:10:53 +00003467 QualType rhsType) {
3468 QualType lhptee, rhptee;
Mike Stump9afab102009-02-19 03:04:26 +00003469
Steve Naroff3454b6c2008-09-04 15:10:53 +00003470 // get the "pointed to" type (ignoring qualifiers at the top level)
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00003471 lhptee = lhsType->getAs<BlockPointerType>()->getPointeeType();
3472 rhptee = rhsType->getAs<BlockPointerType>()->getPointeeType();
Mike Stump9afab102009-02-19 03:04:26 +00003473
Steve Naroff3454b6c2008-09-04 15:10:53 +00003474 // make sure we operate on the canonical type
3475 lhptee = Context.getCanonicalType(lhptee);
3476 rhptee = Context.getCanonicalType(rhptee);
Mike Stump9afab102009-02-19 03:04:26 +00003477
Steve Naroff3454b6c2008-09-04 15:10:53 +00003478 AssignConvertType ConvTy = Compatible;
Mike Stump9afab102009-02-19 03:04:26 +00003479
Steve Naroff3454b6c2008-09-04 15:10:53 +00003480 // For blocks we enforce that qualifiers are identical.
3481 if (lhptee.getCVRQualifiers() != rhptee.getCVRQualifiers())
3482 ConvTy = CompatiblePointerDiscardsQualifiers;
Mike Stump9afab102009-02-19 03:04:26 +00003483
Eli Friedmanb6eed6e2009-06-08 05:08:54 +00003484 if (!Context.typesAreCompatible(lhptee, rhptee))
Mike Stump9afab102009-02-19 03:04:26 +00003485 return IncompatibleBlockPointer;
Steve Naroff3454b6c2008-09-04 15:10:53 +00003486 return ConvTy;
3487}
3488
Mike Stump9afab102009-02-19 03:04:26 +00003489/// CheckAssignmentConstraints (C99 6.5.16) - This routine currently
3490/// has code to accommodate several GCC extensions when type checking
Chris Lattner4b009652007-07-25 00:24:17 +00003491/// pointers. Here are some objectionable examples that GCC considers warnings:
3492///
3493/// int a, *pint;
3494/// short *pshort;
3495/// struct foo *pfoo;
3496///
3497/// pint = pshort; // warning: assignment from incompatible pointer type
3498/// a = pint; // warning: assignment makes integer from pointer without a cast
3499/// pint = a; // warning: assignment makes pointer from integer without a cast
3500/// pint = pfoo; // warning: assignment from incompatible pointer type
3501///
3502/// As a result, the code for dealing with pointers is more complex than the
Mike Stump9afab102009-02-19 03:04:26 +00003503/// C99 spec dictates.
Chris Lattner4b009652007-07-25 00:24:17 +00003504///
Chris Lattner005ed752008-01-04 18:04:52 +00003505Sema::AssignConvertType
Chris Lattner4b009652007-07-25 00:24:17 +00003506Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) {
Chris Lattner1853da22008-01-04 23:18:45 +00003507 // Get canonical types. We're not formatting these types, just comparing
3508 // them.
Chris Lattnerd5a56aa2008-07-26 22:17:49 +00003509 lhsType = Context.getCanonicalType(lhsType).getUnqualifiedType();
3510 rhsType = Context.getCanonicalType(rhsType).getUnqualifiedType();
Eli Friedman48d0bb02008-05-30 18:07:22 +00003511
3512 if (lhsType == rhsType)
Chris Lattnerfdd96d72008-01-07 17:51:46 +00003513 return Compatible; // Common case: fast path an exact match.
Chris Lattner4b009652007-07-25 00:24:17 +00003514
Douglas Gregor0d5d89d2008-10-28 00:22:11 +00003515 // If the left-hand side is a reference type, then we are in a
3516 // (rare!) case where we've allowed the use of references in C,
3517 // e.g., as a parameter type in a built-in function. In this case,
3518 // just make sure that the type referenced is compatible with the
3519 // right-hand side type. The caller is responsible for adjusting
3520 // lhsType so that the resulting expression does not have reference
3521 // type.
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00003522 if (const ReferenceType *lhsTypeRef = lhsType->getAs<ReferenceType>()) {
Douglas Gregor0d5d89d2008-10-28 00:22:11 +00003523 if (Context.typesAreCompatible(lhsTypeRef->getPointeeType(), rhsType))
Anders Carlssoncebb8d62007-10-12 23:56:29 +00003524 return Compatible;
Chris Lattner1853da22008-01-04 23:18:45 +00003525 return Incompatible;
Fariborz Jahanian957442d2007-12-19 17:45:58 +00003526 }
Nate Begeman0e0eadd2009-06-28 02:36:38 +00003527 // Allow scalar to ExtVector assignments, and assignments of an ExtVector type
3528 // to the same ExtVector type.
3529 if (lhsType->isExtVectorType()) {
3530 if (rhsType->isExtVectorType())
3531 return lhsType == rhsType ? Compatible : Incompatible;
3532 if (!rhsType->isVectorType() && rhsType->isArithmeticType())
3533 return Compatible;
3534 }
3535
Nate Begemanc5f0f652008-07-14 18:02:46 +00003536 if (lhsType->isVectorType() || rhsType->isVectorType()) {
Nate Begemanc5f0f652008-07-14 18:02:46 +00003537 // If we are allowing lax vector conversions, and LHS and RHS are both
Mike Stump9afab102009-02-19 03:04:26 +00003538 // vectors, the total size only needs to be the same. This is a bitcast;
Nate Begemanc5f0f652008-07-14 18:02:46 +00003539 // no bits are changed but the result type is different.
Chris Lattnerdb22bf42008-01-04 23:32:24 +00003540 if (getLangOptions().LaxVectorConversions &&
3541 lhsType->isVectorType() && rhsType->isVectorType()) {
Nate Begemanc5f0f652008-07-14 18:02:46 +00003542 if (Context.getTypeSize(lhsType) == Context.getTypeSize(rhsType))
Anders Carlsson355ed052009-01-30 23:17:46 +00003543 return IncompatibleVectors;
Chris Lattnerdb22bf42008-01-04 23:32:24 +00003544 }
3545 return Incompatible;
Mike Stump9afab102009-02-19 03:04:26 +00003546 }
Eli Friedman48d0bb02008-05-30 18:07:22 +00003547
Chris Lattnerdb22bf42008-01-04 23:32:24 +00003548 if (lhsType->isArithmeticType() && rhsType->isArithmeticType())
Chris Lattner4b009652007-07-25 00:24:17 +00003549 return Compatible;
Eli Friedman48d0bb02008-05-30 18:07:22 +00003550
Chris Lattner390564e2008-04-07 06:49:41 +00003551 if (isa<PointerType>(lhsType)) {
Chris Lattner4b009652007-07-25 00:24:17 +00003552 if (rhsType->isIntegerType())
Chris Lattnerd951b7b2008-01-04 18:22:42 +00003553 return IntToPointer;
Eli Friedman48d0bb02008-05-30 18:07:22 +00003554
Chris Lattner390564e2008-04-07 06:49:41 +00003555 if (isa<PointerType>(rhsType))
Chris Lattner4b009652007-07-25 00:24:17 +00003556 return CheckPointerTypesForAssignment(lhsType, rhsType);
Mike Stump9afab102009-02-19 03:04:26 +00003557
Steve Naroff8194a542009-07-20 17:56:53 +00003558 // In general, C pointers are not compatible with ObjC object pointers.
Steve Naroff329ec222009-07-10 23:34:53 +00003559 if (isa<ObjCObjectPointerType>(rhsType)) {
Steve Naroff8194a542009-07-20 17:56:53 +00003560 if (lhsType->isVoidPointerType()) // an exception to the rule.
3561 return Compatible;
3562 return IncompatiblePointer;
Steve Naroff329ec222009-07-10 23:34:53 +00003563 }
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00003564 if (rhsType->getAs<BlockPointerType>()) {
3565 if (lhsType->getAs<PointerType>()->getPointeeType()->isVoidType())
Douglas Gregor7abc1432008-11-27 00:44:28 +00003566 return Compatible;
Steve Naroffa982c712008-09-29 18:10:17 +00003567
3568 // Treat block pointers as objects.
Steve Naroff329ec222009-07-10 23:34:53 +00003569 if (getLangOptions().ObjC1 && lhsType->isObjCIdType())
Steve Naroffa982c712008-09-29 18:10:17 +00003570 return Compatible;
3571 }
Steve Naroff3454b6c2008-09-04 15:10:53 +00003572 return Incompatible;
3573 }
3574
3575 if (isa<BlockPointerType>(lhsType)) {
3576 if (rhsType->isIntegerType())
Eli Friedmanc5898302009-02-25 04:20:42 +00003577 return IntToBlockPointer;
Mike Stump9afab102009-02-19 03:04:26 +00003578
Steve Naroffa982c712008-09-29 18:10:17 +00003579 // Treat block pointers as objects.
Steve Naroff329ec222009-07-10 23:34:53 +00003580 if (getLangOptions().ObjC1 && rhsType->isObjCIdType())
Steve Naroffa982c712008-09-29 18:10:17 +00003581 return Compatible;
3582
Steve Naroff3454b6c2008-09-04 15:10:53 +00003583 if (rhsType->isBlockPointerType())
3584 return CheckBlockPointerTypesForAssignment(lhsType, rhsType);
Mike Stump9afab102009-02-19 03:04:26 +00003585
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00003586 if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) {
Steve Naroff3454b6c2008-09-04 15:10:53 +00003587 if (RHSPT->getPointeeType()->isVoidType())
Douglas Gregor7abc1432008-11-27 00:44:28 +00003588 return Compatible;
Steve Naroff3454b6c2008-09-04 15:10:53 +00003589 }
Chris Lattner1853da22008-01-04 23:18:45 +00003590 return Incompatible;
3591 }
3592
Steve Naroff329ec222009-07-10 23:34:53 +00003593 if (isa<ObjCObjectPointerType>(lhsType)) {
3594 if (rhsType->isIntegerType())
3595 return IntToPointer;
Steve Naroff8194a542009-07-20 17:56:53 +00003596
3597 // In general, C pointers are not compatible with ObjC object pointers.
Steve Naroff329ec222009-07-10 23:34:53 +00003598 if (isa<PointerType>(rhsType)) {
Steve Naroff8194a542009-07-20 17:56:53 +00003599 if (rhsType->isVoidPointerType()) // an exception to the rule.
3600 return Compatible;
3601 return IncompatiblePointer;
Steve Naroff329ec222009-07-10 23:34:53 +00003602 }
3603 if (rhsType->isObjCObjectPointerType()) {
Steve Naroff7bffd372009-07-15 18:40:39 +00003604 if (lhsType->isObjCBuiltinType() || rhsType->isObjCBuiltinType())
3605 return Compatible;
Steve Naroff8194a542009-07-20 17:56:53 +00003606 if (Context.typesAreCompatible(lhsType, rhsType))
3607 return Compatible;
Steve Naroff99eb86b2009-07-23 01:01:38 +00003608 if (lhsType->isObjCQualifiedIdType() || rhsType->isObjCQualifiedIdType())
3609 return IncompatibleObjCQualifiedId;
Steve Naroff8194a542009-07-20 17:56:53 +00003610 return IncompatiblePointer;
Steve Naroff329ec222009-07-10 23:34:53 +00003611 }
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00003612 if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) {
Steve Naroff329ec222009-07-10 23:34:53 +00003613 if (RHSPT->getPointeeType()->isVoidType())
3614 return Compatible;
3615 }
3616 // Treat block pointers as objects.
3617 if (rhsType->isBlockPointerType())
3618 return Compatible;
3619 return Incompatible;
3620 }
Chris Lattner390564e2008-04-07 06:49:41 +00003621 if (isa<PointerType>(rhsType)) {
Chris Lattner4b009652007-07-25 00:24:17 +00003622 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer.
Eli Friedman48d0bb02008-05-30 18:07:22 +00003623 if (lhsType == Context.BoolTy)
3624 return Compatible;
3625
3626 if (lhsType->isIntegerType())
Chris Lattnerd951b7b2008-01-04 18:22:42 +00003627 return PointerToInt;
Chris Lattner4b009652007-07-25 00:24:17 +00003628
Mike Stump9afab102009-02-19 03:04:26 +00003629 if (isa<PointerType>(lhsType))
Chris Lattner4b009652007-07-25 00:24:17 +00003630 return CheckPointerTypesForAssignment(lhsType, rhsType);
Mike Stump9afab102009-02-19 03:04:26 +00003631
3632 if (isa<BlockPointerType>(lhsType) &&
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00003633 rhsType->getAs<PointerType>()->getPointeeType()->isVoidType())
Douglas Gregor7abc1432008-11-27 00:44:28 +00003634 return Compatible;
Chris Lattner1853da22008-01-04 23:18:45 +00003635 return Incompatible;
Chris Lattner1853da22008-01-04 23:18:45 +00003636 }
Steve Naroff329ec222009-07-10 23:34:53 +00003637 if (isa<ObjCObjectPointerType>(rhsType)) {
3638 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer.
3639 if (lhsType == Context.BoolTy)
3640 return Compatible;
3641
3642 if (lhsType->isIntegerType())
3643 return PointerToInt;
3644
Steve Naroff8194a542009-07-20 17:56:53 +00003645 // In general, C pointers are not compatible with ObjC object pointers.
Steve Naroff329ec222009-07-10 23:34:53 +00003646 if (isa<PointerType>(lhsType)) {
Steve Naroff8194a542009-07-20 17:56:53 +00003647 if (lhsType->isVoidPointerType()) // an exception to the rule.
3648 return Compatible;
3649 return IncompatiblePointer;
Steve Naroff329ec222009-07-10 23:34:53 +00003650 }
3651 if (isa<BlockPointerType>(lhsType) &&
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00003652 rhsType->getAs<PointerType>()->getPointeeType()->isVoidType())
Steve Naroff329ec222009-07-10 23:34:53 +00003653 return Compatible;
3654 return Incompatible;
3655 }
Eli Friedman48d0bb02008-05-30 18:07:22 +00003656
Chris Lattner1853da22008-01-04 23:18:45 +00003657 if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) {
Chris Lattner390564e2008-04-07 06:49:41 +00003658 if (Context.typesAreCompatible(lhsType, rhsType))
Chris Lattner4b009652007-07-25 00:24:17 +00003659 return Compatible;
Chris Lattner4b009652007-07-25 00:24:17 +00003660 }
3661 return Incompatible;
3662}
3663
Douglas Gregor144b06c2009-04-29 22:16:16 +00003664/// \brief Constructs a transparent union from an expression that is
3665/// used to initialize the transparent union.
3666static void ConstructTransparentUnion(ASTContext &C, Expr *&E,
3667 QualType UnionType, FieldDecl *Field) {
3668 // Build an initializer list that designates the appropriate member
3669 // of the transparent union.
3670 InitListExpr *Initializer = new (C) InitListExpr(SourceLocation(),
3671 &E, 1,
3672 SourceLocation());
3673 Initializer->setType(UnionType);
3674 Initializer->setInitializedFieldInUnion(Field);
3675
3676 // Build a compound literal constructing a value of the transparent
3677 // union type from this initializer list.
3678 E = new (C) CompoundLiteralExpr(SourceLocation(), UnionType, Initializer,
3679 false);
3680}
3681
3682Sema::AssignConvertType
3683Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, Expr *&rExpr) {
3684 QualType FromType = rExpr->getType();
3685
3686 // If the ArgType is a Union type, we want to handle a potential
3687 // transparent_union GCC extension.
3688 const RecordType *UT = ArgType->getAsUnionType();
Argiris Kirtzidisfe5f9732009-06-30 02:34:44 +00003689 if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>())
Douglas Gregor144b06c2009-04-29 22:16:16 +00003690 return Incompatible;
3691
3692 // The field to initialize within the transparent union.
3693 RecordDecl *UD = UT->getDecl();
3694 FieldDecl *InitField = 0;
3695 // It's compatible if the expression matches any of the fields.
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +00003696 for (RecordDecl::field_iterator it = UD->field_begin(),
3697 itend = UD->field_end();
Douglas Gregor144b06c2009-04-29 22:16:16 +00003698 it != itend; ++it) {
3699 if (it->getType()->isPointerType()) {
3700 // If the transparent union contains a pointer type, we allow:
3701 // 1) void pointer
3702 // 2) null pointer constant
3703 if (FromType->isPointerType())
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00003704 if (FromType->getAs<PointerType>()->getPointeeType()->isVoidType()) {
Douglas Gregor144b06c2009-04-29 22:16:16 +00003705 ImpCastExprToType(rExpr, it->getType());
3706 InitField = *it;
3707 break;
3708 }
3709
3710 if (rExpr->isNullPointerConstant(Context)) {
3711 ImpCastExprToType(rExpr, it->getType());
3712 InitField = *it;
3713 break;
3714 }
3715 }
3716
3717 if (CheckAssignmentConstraints(it->getType(), rExpr->getType())
3718 == Compatible) {
3719 InitField = *it;
3720 break;
3721 }
3722 }
3723
3724 if (!InitField)
3725 return Incompatible;
3726
3727 ConstructTransparentUnion(Context, rExpr, ArgType, InitField);
3728 return Compatible;
3729}
3730
Chris Lattner005ed752008-01-04 18:04:52 +00003731Sema::AssignConvertType
Chris Lattner4b009652007-07-25 00:24:17 +00003732Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) {
Douglas Gregor6573cfd2008-10-21 23:43:52 +00003733 if (getLangOptions().CPlusPlus) {
3734 if (!lhsType->isRecordType()) {
3735 // C++ 5.17p3: If the left operand is not of class type, the
3736 // expression is implicitly converted (C++ 4) to the
3737 // cv-unqualified type of the left operand.
Douglas Gregor6fd35572008-12-19 17:40:08 +00003738 if (PerformImplicitConversion(rExpr, lhsType.getUnqualifiedType(),
3739 "assigning"))
Douglas Gregor6573cfd2008-10-21 23:43:52 +00003740 return Incompatible;
Chris Lattner79e9a422009-04-12 09:02:39 +00003741 return Compatible;
Douglas Gregor6573cfd2008-10-21 23:43:52 +00003742 }
3743
3744 // FIXME: Currently, we fall through and treat C++ classes like C
3745 // structures.
3746 }
3747
Steve Naroffcdee22d2007-11-27 17:58:44 +00003748 // C99 6.5.16.1p1: the left operand is a pointer and the right is
3749 // a null pointer constant.
Steve Naroffd305a862009-02-21 21:17:01 +00003750 if ((lhsType->isPointerType() ||
Steve Naroff329ec222009-07-10 23:34:53 +00003751 lhsType->isObjCObjectPointerType() ||
Mike Stump9afab102009-02-19 03:04:26 +00003752 lhsType->isBlockPointerType())
Fariborz Jahaniana13effb2008-01-03 18:46:52 +00003753 && rExpr->isNullPointerConstant(Context)) {
Chris Lattnere992d6c2008-01-16 19:17:22 +00003754 ImpCastExprToType(rExpr, lhsType);
Steve Naroffcdee22d2007-11-27 17:58:44 +00003755 return Compatible;
3756 }
Mike Stump9afab102009-02-19 03:04:26 +00003757
Chris Lattner5f505bf2007-10-16 02:55:40 +00003758 // This check seems unnatural, however it is necessary to ensure the proper
Chris Lattner4b009652007-07-25 00:24:17 +00003759 // conversion of functions/arrays. If the conversion were done for all
Steve Naroff0acc9c92007-09-15 18:49:24 +00003760 // DeclExpr's (created by ActOnIdentifierExpr), it would mess up the unary
Chris Lattner4b009652007-07-25 00:24:17 +00003761 // expressions that surpress this implicit conversion (&, sizeof).
Chris Lattner5f505bf2007-10-16 02:55:40 +00003762 //
Mike Stump9afab102009-02-19 03:04:26 +00003763 // Suppress this for references: C++ 8.5.3p5.
Chris Lattner5f505bf2007-10-16 02:55:40 +00003764 if (!lhsType->isReferenceType())
3765 DefaultFunctionArrayConversion(rExpr);
Steve Naroff0f32f432007-08-24 22:33:52 +00003766
Chris Lattner005ed752008-01-04 18:04:52 +00003767 Sema::AssignConvertType result =
3768 CheckAssignmentConstraints(lhsType, rExpr->getType());
Mike Stump9afab102009-02-19 03:04:26 +00003769
Steve Naroff0f32f432007-08-24 22:33:52 +00003770 // C99 6.5.16.1p2: The value of the right operand is converted to the
3771 // type of the assignment expression.
Douglas Gregor0d5d89d2008-10-28 00:22:11 +00003772 // CheckAssignmentConstraints allows the left-hand side to be a reference,
3773 // so that we can use references in built-in functions even in C.
3774 // The getNonReferenceType() call makes sure that the resulting expression
3775 // does not have reference type.
Douglas Gregor144b06c2009-04-29 22:16:16 +00003776 if (result != Incompatible && rExpr->getType() != lhsType)
Douglas Gregor0d5d89d2008-10-28 00:22:11 +00003777 ImpCastExprToType(rExpr, lhsType.getNonReferenceType());
Steve Naroff0f32f432007-08-24 22:33:52 +00003778 return result;
Chris Lattner4b009652007-07-25 00:24:17 +00003779}
3780
Chris Lattner1eafdea2008-11-18 01:30:42 +00003781QualType Sema::InvalidOperands(SourceLocation Loc, Expr *&lex, Expr *&rex) {
Chris Lattner70b93d82008-11-18 22:52:51 +00003782 Diag(Loc, diag::err_typecheck_invalid_operands)
Chris Lattnerda5c0872008-11-23 09:13:29 +00003783 << lex->getType() << rex->getType()
Chris Lattner70b93d82008-11-18 22:52:51 +00003784 << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner2c8bff72007-12-12 05:47:28 +00003785 return QualType();
Chris Lattner4b009652007-07-25 00:24:17 +00003786}
3787
Mike Stump9afab102009-02-19 03:04:26 +00003788inline QualType Sema::CheckVectorOperands(SourceLocation Loc, Expr *&lex,
Chris Lattner4b009652007-07-25 00:24:17 +00003789 Expr *&rex) {
Mike Stump9afab102009-02-19 03:04:26 +00003790 // For conversion purposes, we ignore any qualifiers.
Nate Begeman03105572008-04-04 01:30:25 +00003791 // For example, "const float" and "float" are equivalent.
Chris Lattnerd5a56aa2008-07-26 22:17:49 +00003792 QualType lhsType =
3793 Context.getCanonicalType(lex->getType()).getUnqualifiedType();
3794 QualType rhsType =
3795 Context.getCanonicalType(rex->getType()).getUnqualifiedType();
Mike Stump9afab102009-02-19 03:04:26 +00003796
Nate Begemanc5f0f652008-07-14 18:02:46 +00003797 // If the vector types are identical, return.
Nate Begeman03105572008-04-04 01:30:25 +00003798 if (lhsType == rhsType)
Chris Lattner4b009652007-07-25 00:24:17 +00003799 return lhsType;
Nate Begemanec2d1062007-12-30 02:59:45 +00003800
Nate Begemanc5f0f652008-07-14 18:02:46 +00003801 // Handle the case of a vector & extvector type of the same size and element
3802 // type. It would be nice if we only had one vector type someday.
Anders Carlsson355ed052009-01-30 23:17:46 +00003803 if (getLangOptions().LaxVectorConversions) {
3804 // FIXME: Should we warn here?
3805 if (const VectorType *LV = lhsType->getAsVectorType()) {
Nate Begemanc5f0f652008-07-14 18:02:46 +00003806 if (const VectorType *RV = rhsType->getAsVectorType())
3807 if (LV->getElementType() == RV->getElementType() &&
Anders Carlsson355ed052009-01-30 23:17:46 +00003808 LV->getNumElements() == RV->getNumElements()) {
Nate Begemanc5f0f652008-07-14 18:02:46 +00003809 return lhsType->isExtVectorType() ? lhsType : rhsType;
Anders Carlsson355ed052009-01-30 23:17:46 +00003810 }
3811 }
3812 }
Mike Stump9afab102009-02-19 03:04:26 +00003813
Nate Begeman0e0eadd2009-06-28 02:36:38 +00003814 // Canonicalize the ExtVector to the LHS, remember if we swapped so we can
3815 // swap back (so that we don't reverse the inputs to a subtract, for instance.
3816 bool swapped = false;
3817 if (rhsType->isExtVectorType()) {
3818 swapped = true;
3819 std::swap(rex, lex);
3820 std::swap(rhsType, lhsType);
3821 }
3822
Nate Begemanf1695892009-06-28 19:12:57 +00003823 // Handle the case of an ext vector and scalar.
Nate Begeman0e0eadd2009-06-28 02:36:38 +00003824 if (const ExtVectorType *LV = lhsType->getAsExtVectorType()) {
3825 QualType EltTy = LV->getElementType();
3826 if (EltTy->isIntegralType() && rhsType->isIntegralType()) {
3827 if (Context.getIntegerTypeOrder(EltTy, rhsType) >= 0) {
Nate Begemanf1695892009-06-28 19:12:57 +00003828 ImpCastExprToType(rex, lhsType);
Nate Begeman0e0eadd2009-06-28 02:36:38 +00003829 if (swapped) std::swap(rex, lex);
3830 return lhsType;
3831 }
3832 }
3833 if (EltTy->isRealFloatingType() && rhsType->isScalarType() &&
3834 rhsType->isRealFloatingType()) {
3835 if (Context.getFloatingTypeOrder(EltTy, rhsType) >= 0) {
Nate Begemanf1695892009-06-28 19:12:57 +00003836 ImpCastExprToType(rex, lhsType);
Nate Begeman0e0eadd2009-06-28 02:36:38 +00003837 if (swapped) std::swap(rex, lex);
3838 return lhsType;
3839 }
Nate Begemanec2d1062007-12-30 02:59:45 +00003840 }
3841 }
Nate Begeman0e0eadd2009-06-28 02:36:38 +00003842
Nate Begemanf1695892009-06-28 19:12:57 +00003843 // Vectors of different size or scalar and non-ext-vector are errors.
Chris Lattner70b93d82008-11-18 22:52:51 +00003844 Diag(Loc, diag::err_typecheck_vector_not_convertable)
Chris Lattner4bfd2232008-11-24 06:25:27 +00003845 << lex->getType() << rex->getType()
Chris Lattner70b93d82008-11-18 22:52:51 +00003846 << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner4b009652007-07-25 00:24:17 +00003847 return QualType();
Sebastian Redl95216a62009-02-07 00:15:38 +00003848}
3849
Chris Lattner4b009652007-07-25 00:24:17 +00003850inline QualType Sema::CheckMultiplyDivideOperands(
Mike Stump9afab102009-02-19 03:04:26 +00003851 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign)
Chris Lattner4b009652007-07-25 00:24:17 +00003852{
Daniel Dunbar2f08d812009-01-05 22:42:10 +00003853 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner1eafdea2008-11-18 01:30:42 +00003854 return CheckVectorOperands(Loc, lex, rex);
Mike Stump9afab102009-02-19 03:04:26 +00003855
Steve Naroff8f708362007-08-24 19:07:16 +00003856 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stump9afab102009-02-19 03:04:26 +00003857
Chris Lattner4b009652007-07-25 00:24:17 +00003858 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff8f708362007-08-24 19:07:16 +00003859 return compType;
Chris Lattner1eafdea2008-11-18 01:30:42 +00003860 return InvalidOperands(Loc, lex, rex);
Chris Lattner4b009652007-07-25 00:24:17 +00003861}
3862
3863inline QualType Sema::CheckRemainderOperands(
Mike Stump9afab102009-02-19 03:04:26 +00003864 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign)
Chris Lattner4b009652007-07-25 00:24:17 +00003865{
Daniel Dunbarb27282f2009-01-05 22:55:36 +00003866 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
3867 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
3868 return CheckVectorOperands(Loc, lex, rex);
3869 return InvalidOperands(Loc, lex, rex);
3870 }
Chris Lattner4b009652007-07-25 00:24:17 +00003871
Steve Naroff8f708362007-08-24 19:07:16 +00003872 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stump9afab102009-02-19 03:04:26 +00003873
Chris Lattner4b009652007-07-25 00:24:17 +00003874 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff8f708362007-08-24 19:07:16 +00003875 return compType;
Chris Lattner1eafdea2008-11-18 01:30:42 +00003876 return InvalidOperands(Loc, lex, rex);
Chris Lattner4b009652007-07-25 00:24:17 +00003877}
3878
3879inline QualType Sema::CheckAdditionOperands( // C99 6.5.6
Eli Friedman3cd92882009-03-28 01:22:36 +00003880 Expr *&lex, Expr *&rex, SourceLocation Loc, QualType* CompLHSTy)
Chris Lattner4b009652007-07-25 00:24:17 +00003881{
Eli Friedman3cd92882009-03-28 01:22:36 +00003882 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
3883 QualType compType = CheckVectorOperands(Loc, lex, rex);
3884 if (CompLHSTy) *CompLHSTy = compType;
3885 return compType;
3886 }
Chris Lattner4b009652007-07-25 00:24:17 +00003887
Eli Friedman3cd92882009-03-28 01:22:36 +00003888 QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy);
Eli Friedmand9b1fec2008-05-18 18:08:51 +00003889
Chris Lattner4b009652007-07-25 00:24:17 +00003890 // handle the common case first (both operands are arithmetic).
Eli Friedman3cd92882009-03-28 01:22:36 +00003891 if (lex->getType()->isArithmeticType() &&
3892 rex->getType()->isArithmeticType()) {
3893 if (CompLHSTy) *CompLHSTy = compType;
Steve Naroff8f708362007-08-24 19:07:16 +00003894 return compType;
Eli Friedman3cd92882009-03-28 01:22:36 +00003895 }
Chris Lattner4b009652007-07-25 00:24:17 +00003896
Eli Friedmand9b1fec2008-05-18 18:08:51 +00003897 // Put any potential pointer into PExp
3898 Expr* PExp = lex, *IExp = rex;
Steve Naroff79ae19a2009-07-14 18:25:06 +00003899 if (IExp->getType()->isAnyPointerType())
Eli Friedmand9b1fec2008-05-18 18:08:51 +00003900 std::swap(PExp, IExp);
3901
Steve Naroff79ae19a2009-07-14 18:25:06 +00003902 if (PExp->getType()->isAnyPointerType()) {
Steve Naroff329ec222009-07-10 23:34:53 +00003903
Eli Friedmand9b1fec2008-05-18 18:08:51 +00003904 if (IExp->getType()->isIntegerType()) {
Steve Naroff18b38122009-07-13 21:20:41 +00003905 QualType PointeeTy = PExp->getType()->getPointeeType();
Steve Naroff329ec222009-07-10 23:34:53 +00003906
Chris Lattner184f92d2009-04-24 23:50:08 +00003907 // Check for arithmetic on pointers to incomplete types.
3908 if (PointeeTy->isVoidType()) {
Douglas Gregor05e28f62009-03-24 19:52:54 +00003909 if (getLangOptions().CPlusPlus) {
3910 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
Chris Lattner8ba580c2008-11-19 05:08:23 +00003911 << lex->getSourceRange() << rex->getSourceRange();
Douglas Gregor46fe06e2009-01-19 19:26:10 +00003912 return QualType();
Eli Friedmand9b1fec2008-05-18 18:08:51 +00003913 }
Douglas Gregor05e28f62009-03-24 19:52:54 +00003914
3915 // GNU extension: arithmetic on pointer to void
3916 Diag(Loc, diag::ext_gnu_void_ptr)
3917 << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner184f92d2009-04-24 23:50:08 +00003918 } else if (PointeeTy->isFunctionType()) {
Douglas Gregor05e28f62009-03-24 19:52:54 +00003919 if (getLangOptions().CPlusPlus) {
3920 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
3921 << lex->getType() << lex->getSourceRange();
3922 return QualType();
3923 }
3924
3925 // GNU extension: arithmetic on pointer to function
3926 Diag(Loc, diag::ext_gnu_ptr_func_arith)
3927 << lex->getType() << lex->getSourceRange();
Steve Naroff3fc227b2009-07-13 21:32:29 +00003928 } else {
Steve Naroff18b38122009-07-13 21:20:41 +00003929 // Check if we require a complete type.
3930 if (((PExp->getType()->isPointerType() &&
Steve Naroff3fc227b2009-07-13 21:32:29 +00003931 !PExp->getType()->isDependentType()) ||
Steve Naroff18b38122009-07-13 21:20:41 +00003932 PExp->getType()->isObjCObjectPointerType()) &&
3933 RequireCompleteType(Loc, PointeeTy,
3934 diag::err_typecheck_arithmetic_incomplete_type,
3935 PExp->getSourceRange(), SourceRange(),
3936 PExp->getType()))
3937 return QualType();
3938 }
Chris Lattner184f92d2009-04-24 23:50:08 +00003939 // Diagnose bad cases where we step over interface counts.
3940 if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
3941 Diag(Loc, diag::err_arithmetic_nonfragile_interface)
3942 << PointeeTy << PExp->getSourceRange();
3943 return QualType();
3944 }
3945
Eli Friedman3cd92882009-03-28 01:22:36 +00003946 if (CompLHSTy) {
3947 QualType LHSTy = lex->getType();
3948 if (LHSTy->isPromotableIntegerType())
3949 LHSTy = Context.IntTy;
Douglas Gregor6fcf2ca2009-05-02 00:36:19 +00003950 else {
3951 QualType T = isPromotableBitField(lex, Context);
3952 if (!T.isNull())
3953 LHSTy = T;
3954 }
3955
Eli Friedman3cd92882009-03-28 01:22:36 +00003956 *CompLHSTy = LHSTy;
3957 }
Eli Friedmand9b1fec2008-05-18 18:08:51 +00003958 return PExp->getType();
3959 }
3960 }
3961
Chris Lattner1eafdea2008-11-18 01:30:42 +00003962 return InvalidOperands(Loc, lex, rex);
Chris Lattner4b009652007-07-25 00:24:17 +00003963}
3964
Chris Lattnerfe1f4032008-04-07 05:30:13 +00003965// C99 6.5.6
3966QualType Sema::CheckSubtractionOperands(Expr *&lex, Expr *&rex,
Eli Friedman3cd92882009-03-28 01:22:36 +00003967 SourceLocation Loc, QualType* CompLHSTy) {
3968 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
3969 QualType compType = CheckVectorOperands(Loc, lex, rex);
3970 if (CompLHSTy) *CompLHSTy = compType;
3971 return compType;
3972 }
Mike Stump9afab102009-02-19 03:04:26 +00003973
Eli Friedman3cd92882009-03-28 01:22:36 +00003974 QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy);
Mike Stump9afab102009-02-19 03:04:26 +00003975
Chris Lattnerf6da2912007-12-09 21:53:25 +00003976 // Enforce type constraints: C99 6.5.6p3.
Mike Stump9afab102009-02-19 03:04:26 +00003977
Chris Lattnerf6da2912007-12-09 21:53:25 +00003978 // Handle the common case first (both operands are arithmetic).
Mike Stumpea3d74e2009-05-07 18:43:07 +00003979 if (lex->getType()->isArithmeticType()
3980 && rex->getType()->isArithmeticType()) {
Eli Friedman3cd92882009-03-28 01:22:36 +00003981 if (CompLHSTy) *CompLHSTy = compType;
Steve Naroff8f708362007-08-24 19:07:16 +00003982 return compType;
Eli Friedman3cd92882009-03-28 01:22:36 +00003983 }
Steve Naroff329ec222009-07-10 23:34:53 +00003984
Chris Lattnerf6da2912007-12-09 21:53:25 +00003985 // Either ptr - int or ptr - ptr.
Steve Naroff79ae19a2009-07-14 18:25:06 +00003986 if (lex->getType()->isAnyPointerType()) {
Steve Naroff7982a642009-07-13 17:19:15 +00003987 QualType lpointee = lex->getType()->getPointeeType();
Mike Stump9afab102009-02-19 03:04:26 +00003988
Douglas Gregor05e28f62009-03-24 19:52:54 +00003989 // The LHS must be an completely-defined object type.
Douglas Gregorb3193242009-01-23 00:36:41 +00003990
Douglas Gregor05e28f62009-03-24 19:52:54 +00003991 bool ComplainAboutVoid = false;
3992 Expr *ComplainAboutFunc = 0;
3993 if (lpointee->isVoidType()) {
3994 if (getLangOptions().CPlusPlus) {
3995 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
3996 << lex->getSourceRange() << rex->getSourceRange();
3997 return QualType();
3998 }
3999
4000 // GNU C extension: arithmetic on pointer to void
4001 ComplainAboutVoid = true;
4002 } else if (lpointee->isFunctionType()) {
4003 if (getLangOptions().CPlusPlus) {
4004 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
Chris Lattner4bfd2232008-11-24 06:25:27 +00004005 << lex->getType() << lex->getSourceRange();
Chris Lattnerf6da2912007-12-09 21:53:25 +00004006 return QualType();
4007 }
Douglas Gregor05e28f62009-03-24 19:52:54 +00004008
4009 // GNU C extension: arithmetic on pointer to function
4010 ComplainAboutFunc = lex;
4011 } else if (!lpointee->isDependentType() &&
4012 RequireCompleteType(Loc, lpointee,
4013 diag::err_typecheck_sub_ptr_object,
4014 lex->getSourceRange(),
4015 SourceRange(),
4016 lex->getType()))
4017 return QualType();
Chris Lattnerf6da2912007-12-09 21:53:25 +00004018
Chris Lattner184f92d2009-04-24 23:50:08 +00004019 // Diagnose bad cases where we step over interface counts.
4020 if (lpointee->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
4021 Diag(Loc, diag::err_arithmetic_nonfragile_interface)
4022 << lpointee << lex->getSourceRange();
4023 return QualType();
4024 }
4025
Chris Lattnerf6da2912007-12-09 21:53:25 +00004026 // The result type of a pointer-int computation is the pointer type.
Douglas Gregor05e28f62009-03-24 19:52:54 +00004027 if (rex->getType()->isIntegerType()) {
4028 if (ComplainAboutVoid)
4029 Diag(Loc, diag::ext_gnu_void_ptr)
4030 << lex->getSourceRange() << rex->getSourceRange();
4031 if (ComplainAboutFunc)
4032 Diag(Loc, diag::ext_gnu_ptr_func_arith)
4033 << ComplainAboutFunc->getType()
4034 << ComplainAboutFunc->getSourceRange();
4035
Eli Friedman3cd92882009-03-28 01:22:36 +00004036 if (CompLHSTy) *CompLHSTy = lex->getType();
Chris Lattnerf6da2912007-12-09 21:53:25 +00004037 return lex->getType();
Douglas Gregor05e28f62009-03-24 19:52:54 +00004038 }
Mike Stump9afab102009-02-19 03:04:26 +00004039
Chris Lattnerf6da2912007-12-09 21:53:25 +00004040 // Handle pointer-pointer subtractions.
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00004041 if (const PointerType *RHSPTy = rex->getType()->getAs<PointerType>()) {
Eli Friedman50727042008-02-08 01:19:44 +00004042 QualType rpointee = RHSPTy->getPointeeType();
Mike Stump9afab102009-02-19 03:04:26 +00004043
Douglas Gregor05e28f62009-03-24 19:52:54 +00004044 // RHS must be a completely-type object type.
4045 // Handle the GNU void* extension.
4046 if (rpointee->isVoidType()) {
4047 if (getLangOptions().CPlusPlus) {
4048 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
4049 << lex->getSourceRange() << rex->getSourceRange();
4050 return QualType();
4051 }
Mike Stump9afab102009-02-19 03:04:26 +00004052
Douglas Gregor05e28f62009-03-24 19:52:54 +00004053 ComplainAboutVoid = true;
4054 } else if (rpointee->isFunctionType()) {
4055 if (getLangOptions().CPlusPlus) {
4056 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
Chris Lattner4bfd2232008-11-24 06:25:27 +00004057 << rex->getType() << rex->getSourceRange();
Chris Lattnerf6da2912007-12-09 21:53:25 +00004058 return QualType();
4059 }
Douglas Gregor05e28f62009-03-24 19:52:54 +00004060
4061 // GNU extension: arithmetic on pointer to function
4062 if (!ComplainAboutFunc)
4063 ComplainAboutFunc = rex;
4064 } else if (!rpointee->isDependentType() &&
4065 RequireCompleteType(Loc, rpointee,
4066 diag::err_typecheck_sub_ptr_object,
4067 rex->getSourceRange(),
4068 SourceRange(),
4069 rex->getType()))
4070 return QualType();
Mike Stump9afab102009-02-19 03:04:26 +00004071
Eli Friedman143ddc92009-05-16 13:54:38 +00004072 if (getLangOptions().CPlusPlus) {
4073 // Pointee types must be the same: C++ [expr.add]
4074 if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) {
4075 Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
4076 << lex->getType() << rex->getType()
4077 << lex->getSourceRange() << rex->getSourceRange();
4078 return QualType();
4079 }
4080 } else {
4081 // Pointee types must be compatible C99 6.5.6p3
4082 if (!Context.typesAreCompatible(
4083 Context.getCanonicalType(lpointee).getUnqualifiedType(),
4084 Context.getCanonicalType(rpointee).getUnqualifiedType())) {
4085 Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
4086 << lex->getType() << rex->getType()
4087 << lex->getSourceRange() << rex->getSourceRange();
4088 return QualType();
4089 }
Chris Lattnerf6da2912007-12-09 21:53:25 +00004090 }
Mike Stump9afab102009-02-19 03:04:26 +00004091
Douglas Gregor05e28f62009-03-24 19:52:54 +00004092 if (ComplainAboutVoid)
4093 Diag(Loc, diag::ext_gnu_void_ptr)
4094 << lex->getSourceRange() << rex->getSourceRange();
4095 if (ComplainAboutFunc)
4096 Diag(Loc, diag::ext_gnu_ptr_func_arith)
4097 << ComplainAboutFunc->getType()
4098 << ComplainAboutFunc->getSourceRange();
Eli Friedman3cd92882009-03-28 01:22:36 +00004099
4100 if (CompLHSTy) *CompLHSTy = lex->getType();
Chris Lattnerf6da2912007-12-09 21:53:25 +00004101 return Context.getPointerDiffType();
4102 }
4103 }
Mike Stump9afab102009-02-19 03:04:26 +00004104
Chris Lattner1eafdea2008-11-18 01:30:42 +00004105 return InvalidOperands(Loc, lex, rex);
Chris Lattner4b009652007-07-25 00:24:17 +00004106}
4107
Chris Lattnerfe1f4032008-04-07 05:30:13 +00004108// C99 6.5.7
Chris Lattner1eafdea2008-11-18 01:30:42 +00004109QualType Sema::CheckShiftOperands(Expr *&lex, Expr *&rex, SourceLocation Loc,
Chris Lattnerfe1f4032008-04-07 05:30:13 +00004110 bool isCompAssign) {
Chris Lattner2c8bff72007-12-12 05:47:28 +00004111 // C99 6.5.7p2: Each of the operands shall have integer type.
4112 if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType())
Chris Lattner1eafdea2008-11-18 01:30:42 +00004113 return InvalidOperands(Loc, lex, rex);
Mike Stump9afab102009-02-19 03:04:26 +00004114
Chris Lattner2c8bff72007-12-12 05:47:28 +00004115 // Shifts don't perform usual arithmetic conversions, they just do integer
4116 // promotions on each operand. C99 6.5.7p3
Eli Friedman3cd92882009-03-28 01:22:36 +00004117 QualType LHSTy;
4118 if (lex->getType()->isPromotableIntegerType())
4119 LHSTy = Context.IntTy;
Douglas Gregor6fcf2ca2009-05-02 00:36:19 +00004120 else {
4121 LHSTy = isPromotableBitField(lex, Context);
4122 if (LHSTy.isNull())
4123 LHSTy = lex->getType();
4124 }
Chris Lattnerbb19bc42007-12-13 07:28:16 +00004125 if (!isCompAssign)
Eli Friedman3cd92882009-03-28 01:22:36 +00004126 ImpCastExprToType(lex, LHSTy);
4127
Chris Lattner2c8bff72007-12-12 05:47:28 +00004128 UsualUnaryConversions(rex);
Mike Stump9afab102009-02-19 03:04:26 +00004129
Ryan Flynnf109fff2009-08-07 16:20:20 +00004130 // Sanity-check shift operands
4131 llvm::APSInt Right;
4132 // Check right/shifter operand
4133 if (rex->isIntegerConstantExpr(Right, Context)) {
4134 // Check left/shiftee operand
4135 llvm::APSInt Left;
4136 if (lex->isIntegerConstantExpr(Left, Context)) {
4137 if (Left == 0 && Right != 0)
4138 Diag(Loc, diag::warn_op_no_effect)
4139 << lex->getSourceRange() << rex->getSourceRange();
4140 }
4141 if (isCompAssign && Right == 0)
4142 Diag(Loc, diag::warn_op_no_effect) << rex->getSourceRange();
4143 else if (Right.isNegative())
4144 Diag(Loc, diag::warn_shift_negative) << rex->getSourceRange();
4145 else {
4146 llvm::APInt LeftBits(Right.getBitWidth(),
4147 Context.getTypeSize(lex->getType()));
4148 if (Right.uge(LeftBits))
4149 Diag(Loc, diag::warn_shift_gt_typewidth) << rex->getSourceRange();
4150 }
4151 }
4152
Chris Lattner2c8bff72007-12-12 05:47:28 +00004153 // "The type of the result is that of the promoted left operand."
Eli Friedman3cd92882009-03-28 01:22:36 +00004154 return LHSTy;
Chris Lattner4b009652007-07-25 00:24:17 +00004155}
4156
Douglas Gregor30eed0f2009-05-04 06:07:12 +00004157// C99 6.5.8, C++ [expr.rel]
Chris Lattner1eafdea2008-11-18 01:30:42 +00004158QualType Sema::CheckCompareOperands(Expr *&lex, Expr *&rex, SourceLocation Loc,
Douglas Gregor1f12c352009-04-06 18:45:53 +00004159 unsigned OpaqueOpc, bool isRelational) {
4160 BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)OpaqueOpc;
4161
Nate Begemanc5f0f652008-07-14 18:02:46 +00004162 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner1eafdea2008-11-18 01:30:42 +00004163 return CheckVectorCompareOperands(lex, rex, Loc, isRelational);
Mike Stump9afab102009-02-19 03:04:26 +00004164
Chris Lattner254f3bc2007-08-26 01:18:55 +00004165 // C99 6.5.8p3 / C99 6.5.9p4
Steve Naroffecc4fa12007-08-10 18:26:40 +00004166 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
4167 UsualArithmeticConversions(lex, rex);
4168 else {
4169 UsualUnaryConversions(lex);
4170 UsualUnaryConversions(rex);
4171 }
Chris Lattner4b009652007-07-25 00:24:17 +00004172 QualType lType = lex->getType();
4173 QualType rType = rex->getType();
Mike Stump9afab102009-02-19 03:04:26 +00004174
Mike Stumpea3d74e2009-05-07 18:43:07 +00004175 if (!lType->isFloatingType()
4176 && !(lType->isBlockPointerType() && isRelational)) {
Chris Lattner4e479f92009-03-08 19:39:53 +00004177 // For non-floating point types, check for self-comparisons of the form
4178 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
4179 // often indicate logic errors in the program.
Ted Kremenek264b5cb2009-03-20 19:57:37 +00004180 // NOTE: Don't warn about comparisons of enum constants. These can arise
4181 // from macro expansions, and are usually quite deliberate.
Chris Lattner4e479f92009-03-08 19:39:53 +00004182 Expr *LHSStripped = lex->IgnoreParens();
4183 Expr *RHSStripped = rex->IgnoreParens();
4184 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped))
4185 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped))
Ted Kremenekf042dc62009-03-20 18:35:45 +00004186 if (DRL->getDecl() == DRR->getDecl() &&
4187 !isa<EnumConstantDecl>(DRL->getDecl()))
Mike Stump9afab102009-02-19 03:04:26 +00004188 Diag(Loc, diag::warn_selfcomparison);
Chris Lattner4e479f92009-03-08 19:39:53 +00004189
4190 if (isa<CastExpr>(LHSStripped))
4191 LHSStripped = LHSStripped->IgnoreParenCasts();
4192 if (isa<CastExpr>(RHSStripped))
4193 RHSStripped = RHSStripped->IgnoreParenCasts();
4194
4195 // Warn about comparisons against a string constant (unless the other
4196 // operand is null), the user probably wants strcmp.
Douglas Gregor1f12c352009-04-06 18:45:53 +00004197 Expr *literalString = 0;
4198 Expr *literalStringStripped = 0;
Chris Lattner4e479f92009-03-08 19:39:53 +00004199 if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) &&
Douglas Gregor1f12c352009-04-06 18:45:53 +00004200 !RHSStripped->isNullPointerConstant(Context)) {
4201 literalString = lex;
4202 literalStringStripped = LHSStripped;
Mike Stump90fc78e2009-08-04 21:02:39 +00004203 } else if ((isa<StringLiteral>(RHSStripped) ||
4204 isa<ObjCEncodeExpr>(RHSStripped)) &&
4205 !LHSStripped->isNullPointerConstant(Context)) {
Douglas Gregor1f12c352009-04-06 18:45:53 +00004206 literalString = rex;
4207 literalStringStripped = RHSStripped;
4208 }
4209
4210 if (literalString) {
4211 std::string resultComparison;
4212 switch (Opc) {
4213 case BinaryOperator::LT: resultComparison = ") < 0"; break;
4214 case BinaryOperator::GT: resultComparison = ") > 0"; break;
4215 case BinaryOperator::LE: resultComparison = ") <= 0"; break;
4216 case BinaryOperator::GE: resultComparison = ") >= 0"; break;
4217 case BinaryOperator::EQ: resultComparison = ") == 0"; break;
4218 case BinaryOperator::NE: resultComparison = ") != 0"; break;
4219 default: assert(false && "Invalid comparison operator");
4220 }
4221 Diag(Loc, diag::warn_stringcompare)
4222 << isa<ObjCEncodeExpr>(literalStringStripped)
4223 << literalString->getSourceRange()
Douglas Gregor3faaa812009-04-01 23:51:29 +00004224 << CodeModificationHint::CreateReplacement(SourceRange(Loc), ", ")
4225 << CodeModificationHint::CreateInsertion(lex->getLocStart(),
4226 "strcmp(")
4227 << CodeModificationHint::CreateInsertion(
4228 PP.getLocForEndOfToken(rex->getLocEnd()),
Douglas Gregor1f12c352009-04-06 18:45:53 +00004229 resultComparison);
4230 }
Ted Kremenekcf8b77d2007-10-29 16:58:49 +00004231 }
Mike Stump9afab102009-02-19 03:04:26 +00004232
Douglas Gregor849ea9c2008-11-19 03:25:36 +00004233 // The result of comparisons is 'bool' in C++, 'int' in C.
Chris Lattner4e479f92009-03-08 19:39:53 +00004234 QualType ResultTy = getLangOptions().CPlusPlus? Context.BoolTy :Context.IntTy;
Douglas Gregor849ea9c2008-11-19 03:25:36 +00004235
Chris Lattner254f3bc2007-08-26 01:18:55 +00004236 if (isRelational) {
4237 if (lType->isRealType() && rType->isRealType())
Douglas Gregor849ea9c2008-11-19 03:25:36 +00004238 return ResultTy;
Chris Lattner254f3bc2007-08-26 01:18:55 +00004239 } else {
Ted Kremenek486509e2007-10-29 17:13:39 +00004240 // Check for comparisons of floating point operands using != and ==.
Ted Kremenek486509e2007-10-29 17:13:39 +00004241 if (lType->isFloatingType()) {
Chris Lattner4e479f92009-03-08 19:39:53 +00004242 assert(rType->isFloatingType());
Chris Lattner1eafdea2008-11-18 01:30:42 +00004243 CheckFloatComparison(Loc,lex,rex);
Ted Kremenek75439142007-10-29 16:40:01 +00004244 }
Mike Stump9afab102009-02-19 03:04:26 +00004245
Chris Lattner254f3bc2007-08-26 01:18:55 +00004246 if (lType->isArithmeticType() && rType->isArithmeticType())
Douglas Gregor849ea9c2008-11-19 03:25:36 +00004247 return ResultTy;
Chris Lattner254f3bc2007-08-26 01:18:55 +00004248 }
Mike Stump9afab102009-02-19 03:04:26 +00004249
Chris Lattner22be8422007-08-26 01:10:14 +00004250 bool LHSIsNull = lex->isNullPointerConstant(Context);
4251 bool RHSIsNull = rex->isNullPointerConstant(Context);
Mike Stump9afab102009-02-19 03:04:26 +00004252
Chris Lattner254f3bc2007-08-26 01:18:55 +00004253 // All of the following pointer related warnings are GCC extensions, except
4254 // when handling null pointer constants. One day, we can consider making them
4255 // errors (when -pedantic-errors is enabled).
Steve Naroffc33c0602007-08-27 04:08:11 +00004256 if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2
Chris Lattner56a5cd62008-04-03 05:07:25 +00004257 QualType LCanPointeeTy =
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00004258 Context.getCanonicalType(lType->getAs<PointerType>()->getPointeeType());
Chris Lattner56a5cd62008-04-03 05:07:25 +00004259 QualType RCanPointeeTy =
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00004260 Context.getCanonicalType(rType->getAs<PointerType>()->getPointeeType());
Mike Stump9afab102009-02-19 03:04:26 +00004261
Douglas Gregor4da47382009-07-06 20:14:23 +00004262 if (isRelational) {
4263 if (lType->isFunctionPointerType() || rType->isFunctionPointerType()) {
Chris Lattnerf350c6e2009-06-30 06:24:05 +00004264 Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers)
4265 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4266 }
Douglas Gregor4da47382009-07-06 20:14:23 +00004267 if (LCanPointeeTy->isVoidType() != RCanPointeeTy->isVoidType()) {
4268 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
4269 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4270 }
4271 } else {
4272 if (lType->isFunctionPointerType() != rType->isFunctionPointerType()) {
4273 if (!LHSIsNull && !RHSIsNull)
4274 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
4275 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4276 }
Chris Lattnerf350c6e2009-06-30 06:24:05 +00004277 }
Douglas Gregor4da47382009-07-06 20:14:23 +00004278
Douglas Gregor30eed0f2009-05-04 06:07:12 +00004279 // Simple check: if the pointee types are identical, we're done.
4280 if (LCanPointeeTy == RCanPointeeTy)
4281 return ResultTy;
4282
4283 if (getLangOptions().CPlusPlus) {
4284 // C++ [expr.rel]p2:
4285 // [...] Pointer conversions (4.10) and qualification
4286 // conversions (4.4) are performed on pointer operands (or on
4287 // a pointer operand and a null pointer constant) to bring
4288 // them to their composite pointer type. [...]
4289 //
4290 // C++ [expr.eq]p2 uses the same notion for (in)equality
4291 // comparisons of pointers.
Douglas Gregorcf651d22009-05-05 04:50:50 +00004292 QualType T = FindCompositePointerType(lex, rex);
Douglas Gregor30eed0f2009-05-04 06:07:12 +00004293 if (T.isNull()) {
4294 Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers)
4295 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4296 return QualType();
4297 }
4298
4299 ImpCastExprToType(lex, T);
4300 ImpCastExprToType(rex, T);
4301 return ResultTy;
4302 }
4303
Steve Naroff3b435622007-11-13 14:57:38 +00004304 if (!LHSIsNull && !RHSIsNull && // C99 6.5.9p2
Chris Lattner56a5cd62008-04-03 05:07:25 +00004305 !LCanPointeeTy->isVoidType() && !RCanPointeeTy->isVoidType() &&
4306 !Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(),
Steve Naroff329ec222009-07-10 23:34:53 +00004307 RCanPointeeTy.getUnqualifiedType())) {
Chris Lattner70b93d82008-11-18 22:52:51 +00004308 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
Chris Lattner4bfd2232008-11-24 06:25:27 +00004309 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner4b009652007-07-25 00:24:17 +00004310 }
Chris Lattnere992d6c2008-01-16 19:17:22 +00004311 ImpCastExprToType(rex, lType); // promote the pointer to pointer
Douglas Gregor849ea9c2008-11-19 03:25:36 +00004312 return ResultTy;
Steve Naroff4462cb02007-08-16 21:48:38 +00004313 }
Sebastian Redl5d0ead72009-05-10 18:38:11 +00004314 // C++ allows comparison of pointers with null pointer constants.
4315 if (getLangOptions().CPlusPlus) {
4316 if (lType->isPointerType() && RHSIsNull) {
4317 ImpCastExprToType(rex, lType);
4318 return ResultTy;
4319 }
4320 if (rType->isPointerType() && LHSIsNull) {
4321 ImpCastExprToType(lex, rType);
4322 return ResultTy;
4323 }
4324 // And comparison of nullptr_t with itself.
4325 if (lType->isNullPtrType() && rType->isNullPtrType())
4326 return ResultTy;
4327 }
Steve Naroff3454b6c2008-09-04 15:10:53 +00004328 // Handle block pointer types.
Mike Stumpe97a8542009-05-07 03:14:14 +00004329 if (!isRelational && lType->isBlockPointerType() && rType->isBlockPointerType()) {
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00004330 QualType lpointee = lType->getAs<BlockPointerType>()->getPointeeType();
4331 QualType rpointee = rType->getAs<BlockPointerType>()->getPointeeType();
Mike Stump9afab102009-02-19 03:04:26 +00004332
Steve Naroff3454b6c2008-09-04 15:10:53 +00004333 if (!LHSIsNull && !RHSIsNull &&
Eli Friedmanb6eed6e2009-06-08 05:08:54 +00004334 !Context.typesAreCompatible(lpointee, rpointee)) {
Chris Lattner70b93d82008-11-18 22:52:51 +00004335 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
Chris Lattner4bfd2232008-11-24 06:25:27 +00004336 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff3454b6c2008-09-04 15:10:53 +00004337 }
4338 ImpCastExprToType(rex, lType); // promote the pointer to pointer
Douglas Gregor849ea9c2008-11-19 03:25:36 +00004339 return ResultTy;
Steve Naroff3454b6c2008-09-04 15:10:53 +00004340 }
Steve Narofff85d66c2008-09-28 01:11:11 +00004341 // Allow block pointers to be compared with null pointer constants.
Mike Stumpe97a8542009-05-07 03:14:14 +00004342 if (!isRelational
4343 && ((lType->isBlockPointerType() && rType->isPointerType())
4344 || (lType->isPointerType() && rType->isBlockPointerType()))) {
Steve Narofff85d66c2008-09-28 01:11:11 +00004345 if (!LHSIsNull && !RHSIsNull) {
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00004346 if (!((rType->isPointerType() && rType->getAs<PointerType>()
Mike Stumpe97a8542009-05-07 03:14:14 +00004347 ->getPointeeType()->isVoidType())
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00004348 || (lType->isPointerType() && lType->getAs<PointerType>()
Mike Stumpe97a8542009-05-07 03:14:14 +00004349 ->getPointeeType()->isVoidType())))
4350 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
4351 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Narofff85d66c2008-09-28 01:11:11 +00004352 }
4353 ImpCastExprToType(rex, lType); // promote the pointer to pointer
Douglas Gregor849ea9c2008-11-19 03:25:36 +00004354 return ResultTy;
Steve Narofff85d66c2008-09-28 01:11:11 +00004355 }
Steve Naroff3454b6c2008-09-04 15:10:53 +00004356
Steve Naroff329ec222009-07-10 23:34:53 +00004357 if ((lType->isObjCObjectPointerType() || rType->isObjCObjectPointerType())) {
Steve Naroff3d081ae2008-10-27 10:33:19 +00004358 if (lType->isPointerType() || rType->isPointerType()) {
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00004359 const PointerType *LPT = lType->getAs<PointerType>();
4360 const PointerType *RPT = rType->getAs<PointerType>();
Mike Stump9afab102009-02-19 03:04:26 +00004361 bool LPtrToVoid = LPT ?
Steve Naroff030fcda2008-11-17 19:49:16 +00004362 Context.getCanonicalType(LPT->getPointeeType())->isVoidType() : false;
Mike Stump9afab102009-02-19 03:04:26 +00004363 bool RPtrToVoid = RPT ?
Steve Naroff030fcda2008-11-17 19:49:16 +00004364 Context.getCanonicalType(RPT->getPointeeType())->isVoidType() : false;
Mike Stump9afab102009-02-19 03:04:26 +00004365
Steve Naroff030fcda2008-11-17 19:49:16 +00004366 if (!LPtrToVoid && !RPtrToVoid &&
4367 !Context.typesAreCompatible(lType, rType)) {
Chris Lattner70b93d82008-11-18 22:52:51 +00004368 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
Chris Lattner4bfd2232008-11-24 06:25:27 +00004369 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff3d081ae2008-10-27 10:33:19 +00004370 }
Daniel Dunbar11c5f822008-10-23 23:30:52 +00004371 ImpCastExprToType(rex, lType);
Douglas Gregor849ea9c2008-11-19 03:25:36 +00004372 return ResultTy;
Steve Naroff3b2ceea2008-10-20 18:19:10 +00004373 }
Steve Naroff329ec222009-07-10 23:34:53 +00004374 if (lType->isObjCObjectPointerType() && rType->isObjCObjectPointerType()) {
4375 if (!Context.areComparableObjCPointerTypes(lType, rType)) {
4376 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
4377 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4378 }
Steve Naroff936c4362008-06-03 14:04:54 +00004379 ImpCastExprToType(rex, lType);
Douglas Gregor849ea9c2008-11-19 03:25:36 +00004380 return ResultTy;
Steve Naroff936c4362008-06-03 14:04:54 +00004381 }
Fariborz Jahanian5319d9c2007-12-20 01:06:58 +00004382 }
Steve Naroff79ae19a2009-07-14 18:25:06 +00004383 if (lType->isAnyPointerType() && rType->isIntegerType()) {
Chris Lattnerf350c6e2009-06-30 06:24:05 +00004384 if (isRelational)
4385 Diag(Loc, diag::ext_typecheck_ordered_comparison_of_pointer_integer)
4386 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4387 else if (!RHSIsNull)
Chris Lattner70b93d82008-11-18 22:52:51 +00004388 Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer)
Chris Lattner4bfd2232008-11-24 06:25:27 +00004389 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Chris Lattnere992d6c2008-01-16 19:17:22 +00004390 ImpCastExprToType(rex, lType); // promote the integer to pointer
Douglas Gregor849ea9c2008-11-19 03:25:36 +00004391 return ResultTy;
Steve Naroff4462cb02007-08-16 21:48:38 +00004392 }
Steve Naroff79ae19a2009-07-14 18:25:06 +00004393 if (lType->isIntegerType() && rType->isAnyPointerType()) {
Chris Lattnerf350c6e2009-06-30 06:24:05 +00004394 if (isRelational)
4395 Diag(Loc, diag::ext_typecheck_ordered_comparison_of_pointer_integer)
4396 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4397 else if (!LHSIsNull)
Chris Lattner70b93d82008-11-18 22:52:51 +00004398 Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer)
Chris Lattner4bfd2232008-11-24 06:25:27 +00004399 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Chris Lattnere992d6c2008-01-16 19:17:22 +00004400 ImpCastExprToType(lex, rType); // promote the integer to pointer
Douglas Gregor849ea9c2008-11-19 03:25:36 +00004401 return ResultTy;
Chris Lattner4b009652007-07-25 00:24:17 +00004402 }
Steve Naroff4fea7b62008-09-04 16:56:14 +00004403 // Handle block pointers.
Mike Stumpea3d74e2009-05-07 18:43:07 +00004404 if (!isRelational && RHSIsNull
4405 && lType->isBlockPointerType() && rType->isIntegerType()) {
Steve Naroff4fea7b62008-09-04 16:56:14 +00004406 ImpCastExprToType(rex, lType); // promote the integer to pointer
Douglas Gregor849ea9c2008-11-19 03:25:36 +00004407 return ResultTy;
Steve Naroff4fea7b62008-09-04 16:56:14 +00004408 }
Mike Stumpea3d74e2009-05-07 18:43:07 +00004409 if (!isRelational && LHSIsNull
4410 && lType->isIntegerType() && rType->isBlockPointerType()) {
Steve Naroff4fea7b62008-09-04 16:56:14 +00004411 ImpCastExprToType(lex, rType); // promote the integer to pointer
Douglas Gregor849ea9c2008-11-19 03:25:36 +00004412 return ResultTy;
Steve Naroff4fea7b62008-09-04 16:56:14 +00004413 }
Chris Lattner1eafdea2008-11-18 01:30:42 +00004414 return InvalidOperands(Loc, lex, rex);
Chris Lattner4b009652007-07-25 00:24:17 +00004415}
4416
Nate Begemanc5f0f652008-07-14 18:02:46 +00004417/// CheckVectorCompareOperands - vector comparisons are a clang extension that
Mike Stump9afab102009-02-19 03:04:26 +00004418/// operates on extended vector types. Instead of producing an IntTy result,
Nate Begemanc5f0f652008-07-14 18:02:46 +00004419/// like a scalar comparison, a vector comparison produces a vector of integer
4420/// types.
4421QualType Sema::CheckVectorCompareOperands(Expr *&lex, Expr *&rex,
Chris Lattner1eafdea2008-11-18 01:30:42 +00004422 SourceLocation Loc,
Nate Begemanc5f0f652008-07-14 18:02:46 +00004423 bool isRelational) {
4424 // Check to make sure we're operating on vectors of the same type and width,
4425 // Allowing one side to be a scalar of element type.
Chris Lattner1eafdea2008-11-18 01:30:42 +00004426 QualType vType = CheckVectorOperands(Loc, lex, rex);
Nate Begemanc5f0f652008-07-14 18:02:46 +00004427 if (vType.isNull())
4428 return vType;
Mike Stump9afab102009-02-19 03:04:26 +00004429
Nate Begemanc5f0f652008-07-14 18:02:46 +00004430 QualType lType = lex->getType();
4431 QualType rType = rex->getType();
Mike Stump9afab102009-02-19 03:04:26 +00004432
Nate Begemanc5f0f652008-07-14 18:02:46 +00004433 // For non-floating point types, check for self-comparisons of the form
4434 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
4435 // often indicate logic errors in the program.
4436 if (!lType->isFloatingType()) {
4437 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex->IgnoreParens()))
4438 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex->IgnoreParens()))
4439 if (DRL->getDecl() == DRR->getDecl())
Mike Stump9afab102009-02-19 03:04:26 +00004440 Diag(Loc, diag::warn_selfcomparison);
Nate Begemanc5f0f652008-07-14 18:02:46 +00004441 }
Mike Stump9afab102009-02-19 03:04:26 +00004442
Nate Begemanc5f0f652008-07-14 18:02:46 +00004443 // Check for comparisons of floating point operands using != and ==.
4444 if (!isRelational && lType->isFloatingType()) {
4445 assert (rType->isFloatingType());
Chris Lattner1eafdea2008-11-18 01:30:42 +00004446 CheckFloatComparison(Loc,lex,rex);
Nate Begemanc5f0f652008-07-14 18:02:46 +00004447 }
Mike Stump9afab102009-02-19 03:04:26 +00004448
Nate Begemanc5f0f652008-07-14 18:02:46 +00004449 // Return the type for the comparison, which is the same as vector type for
4450 // integer vectors, or an integer type of identical size and number of
4451 // elements for floating point vectors.
4452 if (lType->isIntegerType())
4453 return lType;
Mike Stump9afab102009-02-19 03:04:26 +00004454
Nate Begemanc5f0f652008-07-14 18:02:46 +00004455 const VectorType *VTy = lType->getAsVectorType();
Nate Begemanc5f0f652008-07-14 18:02:46 +00004456 unsigned TypeSize = Context.getTypeSize(VTy->getElementType());
Nate Begemand6d2f772009-01-18 03:20:47 +00004457 if (TypeSize == Context.getTypeSize(Context.IntTy))
Nate Begemanc5f0f652008-07-14 18:02:46 +00004458 return Context.getExtVectorType(Context.IntTy, VTy->getNumElements());
Chris Lattner10687e32009-03-31 07:46:52 +00004459 if (TypeSize == Context.getTypeSize(Context.LongTy))
Nate Begemand6d2f772009-01-18 03:20:47 +00004460 return Context.getExtVectorType(Context.LongTy, VTy->getNumElements());
4461
Mike Stump9afab102009-02-19 03:04:26 +00004462 assert(TypeSize == Context.getTypeSize(Context.LongLongTy) &&
Nate Begemand6d2f772009-01-18 03:20:47 +00004463 "Unhandled vector element size in vector compare");
Nate Begemanc5f0f652008-07-14 18:02:46 +00004464 return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements());
4465}
4466
Chris Lattner4b009652007-07-25 00:24:17 +00004467inline QualType Sema::CheckBitwiseOperands(
Mike Stump9afab102009-02-19 03:04:26 +00004468 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign)
Chris Lattner4b009652007-07-25 00:24:17 +00004469{
4470 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner1eafdea2008-11-18 01:30:42 +00004471 return CheckVectorOperands(Loc, lex, rex);
Chris Lattner4b009652007-07-25 00:24:17 +00004472
Steve Naroff8f708362007-08-24 19:07:16 +00004473 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stump9afab102009-02-19 03:04:26 +00004474
Chris Lattner4b009652007-07-25 00:24:17 +00004475 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff8f708362007-08-24 19:07:16 +00004476 return compType;
Chris Lattner1eafdea2008-11-18 01:30:42 +00004477 return InvalidOperands(Loc, lex, rex);
Chris Lattner4b009652007-07-25 00:24:17 +00004478}
4479
4480inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14]
Mike Stump9afab102009-02-19 03:04:26 +00004481 Expr *&lex, Expr *&rex, SourceLocation Loc)
Chris Lattner4b009652007-07-25 00:24:17 +00004482{
4483 UsualUnaryConversions(lex);
4484 UsualUnaryConversions(rex);
Mike Stump9afab102009-02-19 03:04:26 +00004485
Eli Friedmanbea3f842008-05-13 20:16:47 +00004486 if (lex->getType()->isScalarType() && rex->getType()->isScalarType())
Chris Lattner4b009652007-07-25 00:24:17 +00004487 return Context.IntTy;
Chris Lattner1eafdea2008-11-18 01:30:42 +00004488 return InvalidOperands(Loc, lex, rex);
Chris Lattner4b009652007-07-25 00:24:17 +00004489}
4490
Fariborz Jahanianf96ee9e2009-01-12 19:55:42 +00004491/// IsReadonlyProperty - Verify that otherwise a valid l-value expression
4492/// is a read-only property; return true if so. A readonly property expression
4493/// depends on various declarations and thus must be treated specially.
4494///
Mike Stump9afab102009-02-19 03:04:26 +00004495static bool IsReadonlyProperty(Expr *E, Sema &S)
Fariborz Jahanianf96ee9e2009-01-12 19:55:42 +00004496{
4497 if (E->getStmtClass() == Expr::ObjCPropertyRefExprClass) {
4498 const ObjCPropertyRefExpr* PropExpr = cast<ObjCPropertyRefExpr>(E);
4499 if (ObjCPropertyDecl *PDecl = PropExpr->getProperty()) {
4500 QualType BaseType = PropExpr->getBase()->getType();
Steve Naroff329ec222009-07-10 23:34:53 +00004501 if (const ObjCObjectPointerType *OPT =
4502 BaseType->getAsObjCInterfacePointerType())
4503 if (ObjCInterfaceDecl *IFace = OPT->getInterfaceDecl())
4504 if (S.isPropertyReadonly(PDecl, IFace))
4505 return true;
Fariborz Jahanianf96ee9e2009-01-12 19:55:42 +00004506 }
4507 }
4508 return false;
4509}
4510
Chris Lattner4c2642c2008-11-18 01:22:49 +00004511/// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not,
4512/// emit an error and return true. If so, return false.
4513static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) {
Daniel Dunbarf7fa9dc2009-04-15 00:08:05 +00004514 SourceLocation OrigLoc = Loc;
4515 Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context,
4516 &Loc);
Fariborz Jahanianf96ee9e2009-01-12 19:55:42 +00004517 if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S))
4518 IsLV = Expr::MLV_ReadonlyProperty;
Chris Lattner4c2642c2008-11-18 01:22:49 +00004519 if (IsLV == Expr::MLV_Valid)
4520 return false;
Mike Stump9afab102009-02-19 03:04:26 +00004521
Chris Lattner4c2642c2008-11-18 01:22:49 +00004522 unsigned Diag = 0;
4523 bool NeedType = false;
4524 switch (IsLV) { // C99 6.5.16p2
4525 default: assert(0 && "Unknown result from isModifiableLvalue!");
4526 case Expr::MLV_ConstQualified: Diag = diag::err_typecheck_assign_const; break;
Mike Stump9afab102009-02-19 03:04:26 +00004527 case Expr::MLV_ArrayType:
Chris Lattner4c2642c2008-11-18 01:22:49 +00004528 Diag = diag::err_typecheck_array_not_modifiable_lvalue;
4529 NeedType = true;
4530 break;
Mike Stump9afab102009-02-19 03:04:26 +00004531 case Expr::MLV_NotObjectType:
Chris Lattner4c2642c2008-11-18 01:22:49 +00004532 Diag = diag::err_typecheck_non_object_not_modifiable_lvalue;
4533 NeedType = true;
4534 break;
Chris Lattner37fb9402008-11-17 19:51:54 +00004535 case Expr::MLV_LValueCast:
Chris Lattner4c2642c2008-11-18 01:22:49 +00004536 Diag = diag::err_typecheck_lvalue_casts_not_supported;
4537 break;
Chris Lattner005ed752008-01-04 18:04:52 +00004538 case Expr::MLV_InvalidExpression:
Chris Lattner4c2642c2008-11-18 01:22:49 +00004539 Diag = diag::err_typecheck_expression_not_modifiable_lvalue;
4540 break;
Chris Lattner005ed752008-01-04 18:04:52 +00004541 case Expr::MLV_IncompleteType:
4542 case Expr::MLV_IncompleteVoidType:
Douglas Gregorc84d8932009-03-09 16:13:40 +00004543 return S.RequireCompleteType(Loc, E->getType(),
Douglas Gregor46fe06e2009-01-19 19:26:10 +00004544 diag::err_typecheck_incomplete_type_not_modifiable_lvalue,
4545 E->getSourceRange());
Chris Lattner005ed752008-01-04 18:04:52 +00004546 case Expr::MLV_DuplicateVectorComponents:
Chris Lattner4c2642c2008-11-18 01:22:49 +00004547 Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue;
4548 break;
Steve Naroff076d6cb2008-09-26 14:41:28 +00004549 case Expr::MLV_NotBlockQualified:
Chris Lattner4c2642c2008-11-18 01:22:49 +00004550 Diag = diag::err_block_decl_ref_not_modifiable_lvalue;
4551 break;
Fariborz Jahanianf18d4c82008-11-22 18:39:36 +00004552 case Expr::MLV_ReadonlyProperty:
4553 Diag = diag::error_readonly_property_assignment;
4554 break;
Fariborz Jahanianc05da422008-11-22 20:25:50 +00004555 case Expr::MLV_NoSetterProperty:
4556 Diag = diag::error_nosetter_property_assignment;
4557 break;
Chris Lattner4b009652007-07-25 00:24:17 +00004558 }
Steve Naroff7cbb1462007-07-31 12:34:36 +00004559
Daniel Dunbarf7fa9dc2009-04-15 00:08:05 +00004560 SourceRange Assign;
4561 if (Loc != OrigLoc)
4562 Assign = SourceRange(OrigLoc, OrigLoc);
Chris Lattner4c2642c2008-11-18 01:22:49 +00004563 if (NeedType)
Daniel Dunbarf7fa9dc2009-04-15 00:08:05 +00004564 S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign;
Chris Lattner4c2642c2008-11-18 01:22:49 +00004565 else
Daniel Dunbarf7fa9dc2009-04-15 00:08:05 +00004566 S.Diag(Loc, Diag) << E->getSourceRange() << Assign;
Chris Lattner4c2642c2008-11-18 01:22:49 +00004567 return true;
4568}
4569
4570
4571
4572// C99 6.5.16.1
Chris Lattner1eafdea2008-11-18 01:30:42 +00004573QualType Sema::CheckAssignmentOperands(Expr *LHS, Expr *&RHS,
4574 SourceLocation Loc,
4575 QualType CompoundType) {
4576 // Verify that LHS is a modifiable lvalue, and emit error if not.
4577 if (CheckForModifiableLvalue(LHS, Loc, *this))
Chris Lattner4c2642c2008-11-18 01:22:49 +00004578 return QualType();
Chris Lattner1eafdea2008-11-18 01:30:42 +00004579
4580 QualType LHSType = LHS->getType();
4581 QualType RHSType = CompoundType.isNull() ? RHS->getType() : CompoundType;
Mike Stump9afab102009-02-19 03:04:26 +00004582
Chris Lattner005ed752008-01-04 18:04:52 +00004583 AssignConvertType ConvTy;
Chris Lattner1eafdea2008-11-18 01:30:42 +00004584 if (CompoundType.isNull()) {
Chris Lattner34c85082008-08-21 18:04:13 +00004585 // Simple assignment "x = y".
Chris Lattner1eafdea2008-11-18 01:30:42 +00004586 ConvTy = CheckSingleAssignmentConstraints(LHSType, RHS);
Fariborz Jahanian82f54962009-01-13 23:34:40 +00004587 // Special case of NSObject attributes on c-style pointer types.
4588 if (ConvTy == IncompatiblePointer &&
4589 ((Context.isObjCNSObjectType(LHSType) &&
Steve Naroffad75bd22009-07-16 15:41:00 +00004590 RHSType->isObjCObjectPointerType()) ||
Fariborz Jahanian82f54962009-01-13 23:34:40 +00004591 (Context.isObjCNSObjectType(RHSType) &&
Steve Naroffad75bd22009-07-16 15:41:00 +00004592 LHSType->isObjCObjectPointerType())))
Fariborz Jahanian82f54962009-01-13 23:34:40 +00004593 ConvTy = Compatible;
Mike Stump9afab102009-02-19 03:04:26 +00004594
Chris Lattner34c85082008-08-21 18:04:13 +00004595 // If the RHS is a unary plus or minus, check to see if they = and + are
4596 // right next to each other. If so, the user may have typo'd "x =+ 4"
4597 // instead of "x += 4".
Chris Lattner1eafdea2008-11-18 01:30:42 +00004598 Expr *RHSCheck = RHS;
Chris Lattner34c85082008-08-21 18:04:13 +00004599 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck))
4600 RHSCheck = ICE->getSubExpr();
4601 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) {
4602 if ((UO->getOpcode() == UnaryOperator::Plus ||
4603 UO->getOpcode() == UnaryOperator::Minus) &&
Chris Lattner1eafdea2008-11-18 01:30:42 +00004604 Loc.isFileID() && UO->getOperatorLoc().isFileID() &&
Chris Lattner34c85082008-08-21 18:04:13 +00004605 // Only if the two operators are exactly adjacent.
Chris Lattner55a17242009-03-08 06:51:10 +00004606 Loc.getFileLocWithOffset(1) == UO->getOperatorLoc() &&
4607 // And there is a space or other character before the subexpr of the
4608 // unary +/-. We don't want to warn on "x=-1".
Chris Lattnerf1e5d4a2009-03-09 07:11:10 +00004609 Loc.getFileLocWithOffset(2) != UO->getSubExpr()->getLocStart() &&
4610 UO->getSubExpr()->getLocStart().isFileID()) {
Chris Lattner77d52da2008-11-20 06:06:08 +00004611 Diag(Loc, diag::warn_not_compound_assign)
4612 << (UO->getOpcode() == UnaryOperator::Plus ? "+" : "-")
4613 << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc());
Chris Lattner55a17242009-03-08 06:51:10 +00004614 }
Chris Lattner34c85082008-08-21 18:04:13 +00004615 }
4616 } else {
4617 // Compound assignment "x += y"
Eli Friedmanb653af42009-05-16 05:56:02 +00004618 ConvTy = CheckAssignmentConstraints(LHSType, RHSType);
Chris Lattner34c85082008-08-21 18:04:13 +00004619 }
Chris Lattner005ed752008-01-04 18:04:52 +00004620
Chris Lattner1eafdea2008-11-18 01:30:42 +00004621 if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType,
4622 RHS, "assigning"))
Chris Lattner005ed752008-01-04 18:04:52 +00004623 return QualType();
Mike Stump9afab102009-02-19 03:04:26 +00004624
Chris Lattner4b009652007-07-25 00:24:17 +00004625 // C99 6.5.16p3: The type of an assignment expression is the type of the
4626 // left operand unless the left operand has qualified type, in which case
Mike Stump9afab102009-02-19 03:04:26 +00004627 // it is the unqualified version of the type of the left operand.
Chris Lattner4b009652007-07-25 00:24:17 +00004628 // C99 6.5.16.1p2: In simple assignment, the value of the right operand
4629 // is converted to the type of the assignment expression (above).
Chris Lattner0d9bcea2007-08-30 17:45:32 +00004630 // C++ 5.17p1: the type of the assignment expression is that of its left
Douglas Gregor6fcf2ca2009-05-02 00:36:19 +00004631 // operand.
Chris Lattner1eafdea2008-11-18 01:30:42 +00004632 return LHSType.getUnqualifiedType();
Chris Lattner4b009652007-07-25 00:24:17 +00004633}
4634
Chris Lattner1eafdea2008-11-18 01:30:42 +00004635// C99 6.5.17
4636QualType Sema::CheckCommaOperands(Expr *LHS, Expr *&RHS, SourceLocation Loc) {
Chris Lattner03c430f2008-07-25 20:54:07 +00004637 // Comma performs lvalue conversion (C99 6.3.2.1), but not unary conversions.
Chris Lattner1eafdea2008-11-18 01:30:42 +00004638 DefaultFunctionArrayConversion(RHS);
Eli Friedman2b128322009-03-23 00:24:07 +00004639
4640 // FIXME: Check that RHS type is complete in C mode (it's legal for it to be
4641 // incomplete in C++).
4642
Chris Lattner1eafdea2008-11-18 01:30:42 +00004643 return RHS->getType();
Chris Lattner4b009652007-07-25 00:24:17 +00004644}
4645
4646/// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine
4647/// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions.
Sebastian Redl0440c8c2008-12-20 09:35:34 +00004648QualType Sema::CheckIncrementDecrementOperand(Expr *Op, SourceLocation OpLoc,
4649 bool isInc) {
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00004650 if (Op->isTypeDependent())
4651 return Context.DependentTy;
4652
Chris Lattnere65182c2008-11-21 07:05:48 +00004653 QualType ResType = Op->getType();
4654 assert(!ResType.isNull() && "no type for increment/decrement expression");
Chris Lattner4b009652007-07-25 00:24:17 +00004655
Sebastian Redl0440c8c2008-12-20 09:35:34 +00004656 if (getLangOptions().CPlusPlus && ResType->isBooleanType()) {
4657 // Decrement of bool is not allowed.
4658 if (!isInc) {
4659 Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange();
4660 return QualType();
4661 }
4662 // Increment of bool sets it to true, but is deprecated.
4663 Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange();
4664 } else if (ResType->isRealType()) {
Chris Lattnere65182c2008-11-21 07:05:48 +00004665 // OK!
Steve Naroff79ae19a2009-07-14 18:25:06 +00004666 } else if (ResType->isAnyPointerType()) {
4667 QualType PointeeTy = ResType->getPointeeType();
Steve Naroff329ec222009-07-10 23:34:53 +00004668
Chris Lattnere65182c2008-11-21 07:05:48 +00004669 // C99 6.5.2.4p2, 6.5.6p2
Steve Naroff329ec222009-07-10 23:34:53 +00004670 if (PointeeTy->isVoidType()) {
Douglas Gregorb3193242009-01-23 00:36:41 +00004671 if (getLangOptions().CPlusPlus) {
4672 Diag(OpLoc, diag::err_typecheck_pointer_arith_void_type)
4673 << Op->getSourceRange();
4674 return QualType();
4675 }
4676
4677 // Pointer to void is a GNU extension in C.
Chris Lattnere65182c2008-11-21 07:05:48 +00004678 Diag(OpLoc, diag::ext_gnu_void_ptr) << Op->getSourceRange();
Steve Naroff329ec222009-07-10 23:34:53 +00004679 } else if (PointeeTy->isFunctionType()) {
Douglas Gregorb3193242009-01-23 00:36:41 +00004680 if (getLangOptions().CPlusPlus) {
4681 Diag(OpLoc, diag::err_typecheck_pointer_arith_function_type)
4682 << Op->getType() << Op->getSourceRange();
4683 return QualType();
4684 }
4685
4686 Diag(OpLoc, diag::ext_gnu_ptr_func_arith)
Chris Lattner4bfd2232008-11-24 06:25:27 +00004687 << ResType << Op->getSourceRange();
Steve Naroff329ec222009-07-10 23:34:53 +00004688 } else if (RequireCompleteType(OpLoc, PointeeTy,
Douglas Gregorcde3a2d2009-03-24 20:13:58 +00004689 diag::err_typecheck_arithmetic_incomplete_type,
4690 Op->getSourceRange(), SourceRange(),
4691 ResType))
Douglas Gregor46fe06e2009-01-19 19:26:10 +00004692 return QualType();
Fariborz Jahanian4738ac52009-07-16 17:59:14 +00004693 // Diagnose bad cases where we step over interface counts.
4694 else if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
4695 Diag(OpLoc, diag::err_arithmetic_nonfragile_interface)
4696 << PointeeTy << Op->getSourceRange();
4697 return QualType();
4698 }
Chris Lattnere65182c2008-11-21 07:05:48 +00004699 } else if (ResType->isComplexType()) {
4700 // C99 does not support ++/-- on complex types, we allow as an extension.
4701 Diag(OpLoc, diag::ext_integer_increment_complex)
Chris Lattner4bfd2232008-11-24 06:25:27 +00004702 << ResType << Op->getSourceRange();
Chris Lattnere65182c2008-11-21 07:05:48 +00004703 } else {
4704 Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement)
Chris Lattner4bfd2232008-11-24 06:25:27 +00004705 << ResType << Op->getSourceRange();
Chris Lattnere65182c2008-11-21 07:05:48 +00004706 return QualType();
Chris Lattner4b009652007-07-25 00:24:17 +00004707 }
Mike Stump9afab102009-02-19 03:04:26 +00004708 // At this point, we know we have a real, complex or pointer type.
Steve Naroff6acc0f42007-08-23 21:37:33 +00004709 // Now make sure the operand is a modifiable lvalue.
Chris Lattnere65182c2008-11-21 07:05:48 +00004710 if (CheckForModifiableLvalue(Op, OpLoc, *this))
Chris Lattner4b009652007-07-25 00:24:17 +00004711 return QualType();
Chris Lattnere65182c2008-11-21 07:05:48 +00004712 return ResType;
Chris Lattner4b009652007-07-25 00:24:17 +00004713}
4714
Anders Carlsson4b3db2b2008-02-01 07:15:58 +00004715/// getPrimaryDecl - Helper function for CheckAddressOfOperand().
Chris Lattner4b009652007-07-25 00:24:17 +00004716/// This routine allows us to typecheck complex/recursive expressions
Daniel Dunbarb45f75c2008-08-04 20:02:37 +00004717/// where the declaration is needed for type checking. We only need to
4718/// handle cases when the expression references a function designator
4719/// or is an lvalue. Here are some examples:
4720/// - &(x) => x
4721/// - &*****f => f for f a function designator.
4722/// - &s.xx => s
4723/// - &s.zz[1].yy -> s, if zz is an array
4724/// - *(x + 1) -> x, if x is an array
4725/// - &"123"[2] -> 0
4726/// - & __real__ x -> x
Douglas Gregord2baafd2008-10-21 16:13:35 +00004727static NamedDecl *getPrimaryDecl(Expr *E) {
Chris Lattner48d7f382008-04-02 04:24:33 +00004728 switch (E->getStmtClass()) {
Chris Lattner4b009652007-07-25 00:24:17 +00004729 case Stmt::DeclRefExprClass:
Douglas Gregor566782a2009-01-06 05:10:23 +00004730 case Stmt::QualifiedDeclRefExprClass:
Chris Lattner48d7f382008-04-02 04:24:33 +00004731 return cast<DeclRefExpr>(E)->getDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00004732 case Stmt::MemberExprClass:
Eli Friedman93ecce22009-04-20 08:23:18 +00004733 // If this is an arrow operator, the address is an offset from
4734 // the base's value, so the object the base refers to is
4735 // irrelevant.
Chris Lattner48d7f382008-04-02 04:24:33 +00004736 if (cast<MemberExpr>(E)->isArrow())
Chris Lattnera3249072007-11-16 17:46:48 +00004737 return 0;
Eli Friedman93ecce22009-04-20 08:23:18 +00004738 // Otherwise, the expression refers to a part of the base
Chris Lattner48d7f382008-04-02 04:24:33 +00004739 return getPrimaryDecl(cast<MemberExpr>(E)->getBase());
Anders Carlsson4b3db2b2008-02-01 07:15:58 +00004740 case Stmt::ArraySubscriptExprClass: {
Mike Stumpe127ae32009-05-16 07:39:55 +00004741 // FIXME: This code shouldn't be necessary! We should catch the implicit
4742 // promotion of register arrays earlier.
Eli Friedman93ecce22009-04-20 08:23:18 +00004743 Expr* Base = cast<ArraySubscriptExpr>(E)->getBase();
4744 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) {
4745 if (ICE->getSubExpr()->getType()->isArrayType())
4746 return getPrimaryDecl(ICE->getSubExpr());
4747 }
4748 return 0;
Anders Carlsson4b3db2b2008-02-01 07:15:58 +00004749 }
Daniel Dunbarb45f75c2008-08-04 20:02:37 +00004750 case Stmt::UnaryOperatorClass: {
4751 UnaryOperator *UO = cast<UnaryOperator>(E);
Mike Stump9afab102009-02-19 03:04:26 +00004752
Daniel Dunbarb45f75c2008-08-04 20:02:37 +00004753 switch(UO->getOpcode()) {
Daniel Dunbarb45f75c2008-08-04 20:02:37 +00004754 case UnaryOperator::Real:
4755 case UnaryOperator::Imag:
4756 case UnaryOperator::Extension:
4757 return getPrimaryDecl(UO->getSubExpr());
4758 default:
4759 return 0;
4760 }
4761 }
Chris Lattner4b009652007-07-25 00:24:17 +00004762 case Stmt::ParenExprClass:
Chris Lattner48d7f382008-04-02 04:24:33 +00004763 return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnera3249072007-11-16 17:46:48 +00004764 case Stmt::ImplicitCastExprClass:
Eli Friedman93ecce22009-04-20 08:23:18 +00004765 // If the result of an implicit cast is an l-value, we care about
4766 // the sub-expression; otherwise, the result here doesn't matter.
Chris Lattner48d7f382008-04-02 04:24:33 +00004767 return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr());
Chris Lattner4b009652007-07-25 00:24:17 +00004768 default:
4769 return 0;
4770 }
4771}
4772
4773/// CheckAddressOfOperand - The operand of & must be either a function
Mike Stump9afab102009-02-19 03:04:26 +00004774/// designator or an lvalue designating an object. If it is an lvalue, the
Chris Lattner4b009652007-07-25 00:24:17 +00004775/// object cannot be declared with storage class register or be a bit field.
Mike Stump9afab102009-02-19 03:04:26 +00004776/// Note: The usual conversions are *not* applied to the operand of the &
Chris Lattner4b009652007-07-25 00:24:17 +00004777/// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue.
Mike Stump9afab102009-02-19 03:04:26 +00004778/// In C++, the operand might be an overloaded function name, in which case
Douglas Gregor45014fd2008-11-10 20:40:00 +00004779/// we allow the '&' but retain the overloaded-function type.
Chris Lattner4b009652007-07-25 00:24:17 +00004780QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) {
Eli Friedman93ecce22009-04-20 08:23:18 +00004781 // Make sure to ignore parentheses in subsequent checks
4782 op = op->IgnoreParens();
4783
Douglas Gregore6be68a2008-12-17 22:52:20 +00004784 if (op->isTypeDependent())
4785 return Context.DependentTy;
4786
Steve Naroff9c6c3592008-01-13 17:10:08 +00004787 if (getLangOptions().C99) {
4788 // Implement C99-only parts of addressof rules.
4789 if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) {
4790 if (uOp->getOpcode() == UnaryOperator::Deref)
4791 // Per C99 6.5.3.2, the address of a deref always returns a valid result
4792 // (assuming the deref expression is valid).
4793 return uOp->getSubExpr()->getType();
4794 }
4795 // Technically, there should be a check for array subscript
4796 // expressions here, but the result of one is always an lvalue anyway.
4797 }
Douglas Gregord2baafd2008-10-21 16:13:35 +00004798 NamedDecl *dcl = getPrimaryDecl(op);
Chris Lattner25168a52008-07-26 21:30:36 +00004799 Expr::isLvalueResult lval = op->isLvalue(Context);
Nuno Lopes1a68ecf2008-12-16 22:59:47 +00004800
Eli Friedman14ab4c42009-05-16 23:27:50 +00004801 if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) {
4802 // C99 6.5.3.2p1
Eli Friedman93ecce22009-04-20 08:23:18 +00004803 // The operand must be either an l-value or a function designator
Eli Friedman14ab4c42009-05-16 23:27:50 +00004804 if (!op->getType()->isFunctionType()) {
Chris Lattnera3249072007-11-16 17:46:48 +00004805 // FIXME: emit more specific diag...
Chris Lattner9d2cf082008-11-19 05:27:50 +00004806 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof)
4807 << op->getSourceRange();
Chris Lattner4b009652007-07-25 00:24:17 +00004808 return QualType();
4809 }
Douglas Gregor531434b2009-05-02 02:18:30 +00004810 } else if (op->getBitField()) { // C99 6.5.3.2p1
Eli Friedman93ecce22009-04-20 08:23:18 +00004811 // The operand cannot be a bit-field
4812 Diag(OpLoc, diag::err_typecheck_address_of)
4813 << "bit-field" << op->getSourceRange();
Douglas Gregor82d44772008-12-20 23:49:58 +00004814 return QualType();
Nate Begemana9187ab2009-02-15 22:45:20 +00004815 } else if (isa<ExtVectorElementExpr>(op) || (isa<ArraySubscriptExpr>(op) &&
4816 cast<ArraySubscriptExpr>(op)->getBase()->getType()->isVectorType())){
Eli Friedman93ecce22009-04-20 08:23:18 +00004817 // The operand cannot be an element of a vector
Chris Lattner77d52da2008-11-20 06:06:08 +00004818 Diag(OpLoc, diag::err_typecheck_address_of)
Nate Begemana9187ab2009-02-15 22:45:20 +00004819 << "vector element" << op->getSourceRange();
Steve Naroff73cf87e2008-02-29 23:30:25 +00004820 return QualType();
Fariborz Jahanianb35984a2009-07-07 18:50:52 +00004821 } else if (isa<ObjCPropertyRefExpr>(op)) {
4822 // cannot take address of a property expression.
4823 Diag(OpLoc, diag::err_typecheck_address_of)
4824 << "property expression" << op->getSourceRange();
4825 return QualType();
Steve Naroff73cf87e2008-02-29 23:30:25 +00004826 } else if (dcl) { // C99 6.5.3.2p1
Mike Stump9afab102009-02-19 03:04:26 +00004827 // We have an lvalue with a decl. Make sure the decl is not declared
Chris Lattner4b009652007-07-25 00:24:17 +00004828 // with the register storage-class specifier.
4829 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) {
4830 if (vd->getStorageClass() == VarDecl::Register) {
Chris Lattner77d52da2008-11-20 06:06:08 +00004831 Diag(OpLoc, diag::err_typecheck_address_of)
4832 << "register variable" << op->getSourceRange();
Chris Lattner4b009652007-07-25 00:24:17 +00004833 return QualType();
4834 }
Douglas Gregor62f78762009-07-08 20:55:45 +00004835 } else if (isa<OverloadedFunctionDecl>(dcl) ||
4836 isa<FunctionTemplateDecl>(dcl)) {
Douglas Gregor45014fd2008-11-10 20:40:00 +00004837 return Context.OverloadTy;
Anders Carlsson64371472009-07-08 21:45:58 +00004838 } else if (FieldDecl *FD = dyn_cast<FieldDecl>(dcl)) {
Douglas Gregor5b82d612008-12-10 21:26:49 +00004839 // Okay: we can take the address of a field.
Sebastian Redl0c9da212009-02-03 20:19:35 +00004840 // Could be a pointer to member, though, if there is an explicit
4841 // scope qualifier for the class.
4842 if (isa<QualifiedDeclRefExpr>(op)) {
4843 DeclContext *Ctx = dcl->getDeclContext();
Anders Carlsson64371472009-07-08 21:45:58 +00004844 if (Ctx && Ctx->isRecord()) {
4845 if (FD->getType()->isReferenceType()) {
4846 Diag(OpLoc,
4847 diag::err_cannot_form_pointer_to_member_of_reference_type)
4848 << FD->getDeclName() << FD->getType();
4849 return QualType();
4850 }
4851
Sebastian Redl0c9da212009-02-03 20:19:35 +00004852 return Context.getMemberPointerType(op->getType(),
4853 Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr());
Anders Carlsson64371472009-07-08 21:45:58 +00004854 }
Sebastian Redl0c9da212009-02-03 20:19:35 +00004855 }
Anders Carlssone9cc4c42009-05-16 21:43:42 +00004856 } else if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(dcl)) {
Nuno Lopesdf239522008-12-16 22:58:26 +00004857 // Okay: we can take the address of a function.
Sebastian Redl7434fc32009-02-04 21:23:32 +00004858 // As above.
Anders Carlssone9cc4c42009-05-16 21:43:42 +00004859 if (isa<QualifiedDeclRefExpr>(op) && MD->isInstance())
4860 return Context.getMemberPointerType(op->getType(),
4861 Context.getTypeDeclType(MD->getParent()).getTypePtr());
4862 } else if (!isa<FunctionDecl>(dcl))
Chris Lattner4b009652007-07-25 00:24:17 +00004863 assert(0 && "Unknown/unexpected decl type");
Chris Lattner4b009652007-07-25 00:24:17 +00004864 }
Sebastian Redl7434fc32009-02-04 21:23:32 +00004865
Eli Friedman14ab4c42009-05-16 23:27:50 +00004866 if (lval == Expr::LV_IncompleteVoidType) {
4867 // Taking the address of a void variable is technically illegal, but we
4868 // allow it in cases which are otherwise valid.
4869 // Example: "extern void x; void* y = &x;".
4870 Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange();
4871 }
4872
Chris Lattner4b009652007-07-25 00:24:17 +00004873 // If the operand has type "type", the result has type "pointer to type".
4874 return Context.getPointerType(op->getType());
4875}
4876
Chris Lattnerda5c0872008-11-23 09:13:29 +00004877QualType Sema::CheckIndirectionOperand(Expr *Op, SourceLocation OpLoc) {
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00004878 if (Op->isTypeDependent())
4879 return Context.DependentTy;
4880
Chris Lattnerda5c0872008-11-23 09:13:29 +00004881 UsualUnaryConversions(Op);
4882 QualType Ty = Op->getType();
Mike Stump9afab102009-02-19 03:04:26 +00004883
Chris Lattnerda5c0872008-11-23 09:13:29 +00004884 // Note that per both C89 and C99, this is always legal, even if ptype is an
4885 // incomplete type or void. It would be possible to warn about dereferencing
4886 // a void pointer, but it's completely well-defined, and such a warning is
4887 // unlikely to catch any mistakes.
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00004888 if (const PointerType *PT = Ty->getAs<PointerType>())
Steve Naroff9c6c3592008-01-13 17:10:08 +00004889 return PT->getPointeeType();
Mike Stump9afab102009-02-19 03:04:26 +00004890
Steve Naroff329ec222009-07-10 23:34:53 +00004891 if (const ObjCObjectPointerType *OPT = Ty->getAsObjCObjectPointerType())
4892 return OPT->getPointeeType();
4893
Chris Lattner77d52da2008-11-20 06:06:08 +00004894 Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer)
Chris Lattnerda5c0872008-11-23 09:13:29 +00004895 << Ty << Op->getSourceRange();
Chris Lattner4b009652007-07-25 00:24:17 +00004896 return QualType();
4897}
4898
4899static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode(
4900 tok::TokenKind Kind) {
4901 BinaryOperator::Opcode Opc;
4902 switch (Kind) {
4903 default: assert(0 && "Unknown binop!");
Sebastian Redl95216a62009-02-07 00:15:38 +00004904 case tok::periodstar: Opc = BinaryOperator::PtrMemD; break;
4905 case tok::arrowstar: Opc = BinaryOperator::PtrMemI; break;
Chris Lattner4b009652007-07-25 00:24:17 +00004906 case tok::star: Opc = BinaryOperator::Mul; break;
4907 case tok::slash: Opc = BinaryOperator::Div; break;
4908 case tok::percent: Opc = BinaryOperator::Rem; break;
4909 case tok::plus: Opc = BinaryOperator::Add; break;
4910 case tok::minus: Opc = BinaryOperator::Sub; break;
4911 case tok::lessless: Opc = BinaryOperator::Shl; break;
4912 case tok::greatergreater: Opc = BinaryOperator::Shr; break;
4913 case tok::lessequal: Opc = BinaryOperator::LE; break;
4914 case tok::less: Opc = BinaryOperator::LT; break;
4915 case tok::greaterequal: Opc = BinaryOperator::GE; break;
4916 case tok::greater: Opc = BinaryOperator::GT; break;
4917 case tok::exclaimequal: Opc = BinaryOperator::NE; break;
4918 case tok::equalequal: Opc = BinaryOperator::EQ; break;
4919 case tok::amp: Opc = BinaryOperator::And; break;
4920 case tok::caret: Opc = BinaryOperator::Xor; break;
4921 case tok::pipe: Opc = BinaryOperator::Or; break;
4922 case tok::ampamp: Opc = BinaryOperator::LAnd; break;
4923 case tok::pipepipe: Opc = BinaryOperator::LOr; break;
4924 case tok::equal: Opc = BinaryOperator::Assign; break;
4925 case tok::starequal: Opc = BinaryOperator::MulAssign; break;
4926 case tok::slashequal: Opc = BinaryOperator::DivAssign; break;
4927 case tok::percentequal: Opc = BinaryOperator::RemAssign; break;
4928 case tok::plusequal: Opc = BinaryOperator::AddAssign; break;
4929 case tok::minusequal: Opc = BinaryOperator::SubAssign; break;
4930 case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break;
4931 case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break;
4932 case tok::ampequal: Opc = BinaryOperator::AndAssign; break;
4933 case tok::caretequal: Opc = BinaryOperator::XorAssign; break;
4934 case tok::pipeequal: Opc = BinaryOperator::OrAssign; break;
4935 case tok::comma: Opc = BinaryOperator::Comma; break;
4936 }
4937 return Opc;
4938}
4939
4940static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode(
4941 tok::TokenKind Kind) {
4942 UnaryOperator::Opcode Opc;
4943 switch (Kind) {
4944 default: assert(0 && "Unknown unary op!");
4945 case tok::plusplus: Opc = UnaryOperator::PreInc; break;
4946 case tok::minusminus: Opc = UnaryOperator::PreDec; break;
4947 case tok::amp: Opc = UnaryOperator::AddrOf; break;
4948 case tok::star: Opc = UnaryOperator::Deref; break;
4949 case tok::plus: Opc = UnaryOperator::Plus; break;
4950 case tok::minus: Opc = UnaryOperator::Minus; break;
4951 case tok::tilde: Opc = UnaryOperator::Not; break;
4952 case tok::exclaim: Opc = UnaryOperator::LNot; break;
Chris Lattner4b009652007-07-25 00:24:17 +00004953 case tok::kw___real: Opc = UnaryOperator::Real; break;
4954 case tok::kw___imag: Opc = UnaryOperator::Imag; break;
4955 case tok::kw___extension__: Opc = UnaryOperator::Extension; break;
4956 }
4957 return Opc;
4958}
4959
Douglas Gregord7f915e2008-11-06 23:29:22 +00004960/// CreateBuiltinBinOp - Creates a new built-in binary operation with
4961/// operator @p Opc at location @c TokLoc. This routine only supports
4962/// built-in operations; ActOnBinOp handles overloaded operators.
Sebastian Redl5457c5e2009-01-19 22:31:54 +00004963Action::OwningExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc,
4964 unsigned Op,
4965 Expr *lhs, Expr *rhs) {
Eli Friedman3cd92882009-03-28 01:22:36 +00004966 QualType ResultTy; // Result type of the binary operator.
Douglas Gregord7f915e2008-11-06 23:29:22 +00004967 BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)Op;
Eli Friedman3cd92882009-03-28 01:22:36 +00004968 // The following two variables are used for compound assignment operators
4969 QualType CompLHSTy; // Type of LHS after promotions for computation
4970 QualType CompResultTy; // Type of computation result
Douglas Gregord7f915e2008-11-06 23:29:22 +00004971
4972 switch (Opc) {
Douglas Gregord7f915e2008-11-06 23:29:22 +00004973 case BinaryOperator::Assign:
4974 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, QualType());
4975 break;
Sebastian Redl95216a62009-02-07 00:15:38 +00004976 case BinaryOperator::PtrMemD:
4977 case BinaryOperator::PtrMemI:
4978 ResultTy = CheckPointerToMemberOperands(lhs, rhs, OpLoc,
4979 Opc == BinaryOperator::PtrMemI);
4980 break;
4981 case BinaryOperator::Mul:
Douglas Gregord7f915e2008-11-06 23:29:22 +00004982 case BinaryOperator::Div:
4983 ResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc);
4984 break;
4985 case BinaryOperator::Rem:
4986 ResultTy = CheckRemainderOperands(lhs, rhs, OpLoc);
4987 break;
4988 case BinaryOperator::Add:
4989 ResultTy = CheckAdditionOperands(lhs, rhs, OpLoc);
4990 break;
4991 case BinaryOperator::Sub:
4992 ResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc);
4993 break;
Sebastian Redl95216a62009-02-07 00:15:38 +00004994 case BinaryOperator::Shl:
Douglas Gregord7f915e2008-11-06 23:29:22 +00004995 case BinaryOperator::Shr:
4996 ResultTy = CheckShiftOperands(lhs, rhs, OpLoc);
4997 break;
4998 case BinaryOperator::LE:
4999 case BinaryOperator::LT:
5000 case BinaryOperator::GE:
5001 case BinaryOperator::GT:
Douglas Gregor1f12c352009-04-06 18:45:53 +00005002 ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, true);
Douglas Gregord7f915e2008-11-06 23:29:22 +00005003 break;
5004 case BinaryOperator::EQ:
5005 case BinaryOperator::NE:
Douglas Gregor1f12c352009-04-06 18:45:53 +00005006 ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, false);
Douglas Gregord7f915e2008-11-06 23:29:22 +00005007 break;
5008 case BinaryOperator::And:
5009 case BinaryOperator::Xor:
5010 case BinaryOperator::Or:
5011 ResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc);
5012 break;
5013 case BinaryOperator::LAnd:
5014 case BinaryOperator::LOr:
5015 ResultTy = CheckLogicalOperands(lhs, rhs, OpLoc);
5016 break;
5017 case BinaryOperator::MulAssign:
5018 case BinaryOperator::DivAssign:
Eli Friedman3cd92882009-03-28 01:22:36 +00005019 CompResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc, true);
5020 CompLHSTy = CompResultTy;
5021 if (!CompResultTy.isNull())
5022 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregord7f915e2008-11-06 23:29:22 +00005023 break;
5024 case BinaryOperator::RemAssign:
Eli Friedman3cd92882009-03-28 01:22:36 +00005025 CompResultTy = CheckRemainderOperands(lhs, rhs, OpLoc, true);
5026 CompLHSTy = CompResultTy;
5027 if (!CompResultTy.isNull())
5028 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregord7f915e2008-11-06 23:29:22 +00005029 break;
5030 case BinaryOperator::AddAssign:
Eli Friedman3cd92882009-03-28 01:22:36 +00005031 CompResultTy = CheckAdditionOperands(lhs, rhs, OpLoc, &CompLHSTy);
5032 if (!CompResultTy.isNull())
5033 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregord7f915e2008-11-06 23:29:22 +00005034 break;
5035 case BinaryOperator::SubAssign:
Eli Friedman3cd92882009-03-28 01:22:36 +00005036 CompResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc, &CompLHSTy);
5037 if (!CompResultTy.isNull())
5038 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregord7f915e2008-11-06 23:29:22 +00005039 break;
5040 case BinaryOperator::ShlAssign:
5041 case BinaryOperator::ShrAssign:
Eli Friedman3cd92882009-03-28 01:22:36 +00005042 CompResultTy = CheckShiftOperands(lhs, rhs, OpLoc, true);
5043 CompLHSTy = CompResultTy;
5044 if (!CompResultTy.isNull())
5045 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregord7f915e2008-11-06 23:29:22 +00005046 break;
5047 case BinaryOperator::AndAssign:
5048 case BinaryOperator::XorAssign:
5049 case BinaryOperator::OrAssign:
Eli Friedman3cd92882009-03-28 01:22:36 +00005050 CompResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc, true);
5051 CompLHSTy = CompResultTy;
5052 if (!CompResultTy.isNull())
5053 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregord7f915e2008-11-06 23:29:22 +00005054 break;
5055 case BinaryOperator::Comma:
5056 ResultTy = CheckCommaOperands(lhs, rhs, OpLoc);
5057 break;
5058 }
5059 if (ResultTy.isNull())
Sebastian Redl5457c5e2009-01-19 22:31:54 +00005060 return ExprError();
Eli Friedman3cd92882009-03-28 01:22:36 +00005061 if (CompResultTy.isNull())
Steve Naroff774e4152009-01-21 00:14:39 +00005062 return Owned(new (Context) BinaryOperator(lhs, rhs, Opc, ResultTy, OpLoc));
5063 else
5064 return Owned(new (Context) CompoundAssignOperator(lhs, rhs, Opc, ResultTy,
Eli Friedman3cd92882009-03-28 01:22:36 +00005065 CompLHSTy, CompResultTy,
5066 OpLoc));
Douglas Gregord7f915e2008-11-06 23:29:22 +00005067}
5068
Chris Lattner4b009652007-07-25 00:24:17 +00005069// Binary Operators. 'Tok' is the token for the operator.
Sebastian Redl5457c5e2009-01-19 22:31:54 +00005070Action::OwningExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc,
5071 tok::TokenKind Kind,
5072 ExprArg LHS, ExprArg RHS) {
Chris Lattner4b009652007-07-25 00:24:17 +00005073 BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind);
Anders Carlsson39ecdcf2009-05-01 19:49:17 +00005074 Expr *lhs = LHS.takeAs<Expr>(), *rhs = RHS.takeAs<Expr>();
Chris Lattner4b009652007-07-25 00:24:17 +00005075
Steve Naroff87d58b42007-09-16 03:34:24 +00005076 assert((lhs != 0) && "ActOnBinOp(): missing left expression");
5077 assert((rhs != 0) && "ActOnBinOp(): missing right expression");
Chris Lattner4b009652007-07-25 00:24:17 +00005078
Douglas Gregor00fe3f62009-03-13 18:40:31 +00005079 if (getLangOptions().CPlusPlus &&
5080 (lhs->getType()->isOverloadableType() ||
5081 rhs->getType()->isOverloadableType())) {
5082 // Find all of the overloaded operators visible from this
5083 // point. We perform both an operator-name lookup from the local
5084 // scope and an argument-dependent lookup based on the types of
5085 // the arguments.
Douglas Gregor3fc092f2009-03-13 00:33:25 +00005086 FunctionSet Functions;
Douglas Gregor00fe3f62009-03-13 18:40:31 +00005087 OverloadedOperatorKind OverOp = BinaryOperator::getOverloadedOperator(Opc);
5088 if (OverOp != OO_None) {
5089 LookupOverloadedOperatorName(OverOp, S, lhs->getType(), rhs->getType(),
5090 Functions);
5091 Expr *Args[2] = { lhs, rhs };
5092 DeclarationName OpName
5093 = Context.DeclarationNames.getCXXOperatorName(OverOp);
5094 ArgumentDependentLookup(OpName, Args, 2, Functions);
Douglas Gregor70d26122008-11-12 17:17:38 +00005095 }
Sebastian Redl5457c5e2009-01-19 22:31:54 +00005096
Douglas Gregor00fe3f62009-03-13 18:40:31 +00005097 // Build the (potentially-overloaded, potentially-dependent)
5098 // binary operation.
5099 return CreateOverloadedBinOp(TokLoc, Opc, Functions, lhs, rhs);
Sebastian Redl5457c5e2009-01-19 22:31:54 +00005100 }
5101
Douglas Gregord7f915e2008-11-06 23:29:22 +00005102 // Build a built-in binary operation.
5103 return CreateBuiltinBinOp(TokLoc, Opc, lhs, rhs);
Chris Lattner4b009652007-07-25 00:24:17 +00005104}
5105
Douglas Gregorc78182d2009-03-13 23:49:33 +00005106Action::OwningExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc,
5107 unsigned OpcIn,
5108 ExprArg InputArg) {
5109 UnaryOperator::Opcode Opc = static_cast<UnaryOperator::Opcode>(OpcIn);
Douglas Gregor4f6904d2008-11-19 15:42:04 +00005110
Mike Stumpe127ae32009-05-16 07:39:55 +00005111 // FIXME: Input is modified below, but InputArg is not updated appropriately.
Douglas Gregorc78182d2009-03-13 23:49:33 +00005112 Expr *Input = (Expr *)InputArg.get();
Chris Lattner4b009652007-07-25 00:24:17 +00005113 QualType resultType;
5114 switch (Opc) {
Douglas Gregorc78182d2009-03-13 23:49:33 +00005115 case UnaryOperator::OffsetOf:
5116 assert(false && "Invalid unary operator");
5117 break;
5118
Chris Lattner4b009652007-07-25 00:24:17 +00005119 case UnaryOperator::PreInc:
5120 case UnaryOperator::PreDec:
Eli Friedman79341142009-07-22 22:25:00 +00005121 case UnaryOperator::PostInc:
5122 case UnaryOperator::PostDec:
Sebastian Redl0440c8c2008-12-20 09:35:34 +00005123 resultType = CheckIncrementDecrementOperand(Input, OpLoc,
Eli Friedman79341142009-07-22 22:25:00 +00005124 Opc == UnaryOperator::PreInc ||
5125 Opc == UnaryOperator::PostInc);
Chris Lattner4b009652007-07-25 00:24:17 +00005126 break;
Mike Stump9afab102009-02-19 03:04:26 +00005127 case UnaryOperator::AddrOf:
Chris Lattner4b009652007-07-25 00:24:17 +00005128 resultType = CheckAddressOfOperand(Input, OpLoc);
5129 break;
Mike Stump9afab102009-02-19 03:04:26 +00005130 case UnaryOperator::Deref:
Steve Naroffccc26a72007-12-18 04:06:57 +00005131 DefaultFunctionArrayConversion(Input);
Chris Lattner4b009652007-07-25 00:24:17 +00005132 resultType = CheckIndirectionOperand(Input, OpLoc);
5133 break;
5134 case UnaryOperator::Plus:
5135 case UnaryOperator::Minus:
5136 UsualUnaryConversions(Input);
5137 resultType = Input->getType();
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00005138 if (resultType->isDependentType())
5139 break;
Douglas Gregor4f6904d2008-11-19 15:42:04 +00005140 if (resultType->isArithmeticType()) // C99 6.5.3.3p1
5141 break;
5142 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6-7
5143 resultType->isEnumeralType())
5144 break;
5145 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6
5146 Opc == UnaryOperator::Plus &&
5147 resultType->isPointerType())
5148 break;
5149
Sebastian Redl8b769972009-01-19 00:08:26 +00005150 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
5151 << resultType << Input->getSourceRange());
Chris Lattner4b009652007-07-25 00:24:17 +00005152 case UnaryOperator::Not: // bitwise complement
5153 UsualUnaryConversions(Input);
5154 resultType = Input->getType();
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00005155 if (resultType->isDependentType())
5156 break;
Chris Lattnerbd695022008-07-25 23:52:49 +00005157 // C99 6.5.3.3p1. We allow complex int and float as a GCC extension.
5158 if (resultType->isComplexType() || resultType->isComplexIntegerType())
5159 // C99 does not support '~' for complex conjugation.
Chris Lattner77d52da2008-11-20 06:06:08 +00005160 Diag(OpLoc, diag::ext_integer_complement_complex)
Chris Lattner4bfd2232008-11-24 06:25:27 +00005161 << resultType << Input->getSourceRange();
Chris Lattnerbd695022008-07-25 23:52:49 +00005162 else if (!resultType->isIntegerType())
Sebastian Redl8b769972009-01-19 00:08:26 +00005163 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
5164 << resultType << Input->getSourceRange());
Chris Lattner4b009652007-07-25 00:24:17 +00005165 break;
5166 case UnaryOperator::LNot: // logical negation
5167 // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5).
5168 DefaultFunctionArrayConversion(Input);
5169 resultType = Input->getType();
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00005170 if (resultType->isDependentType())
5171 break;
Chris Lattner4b009652007-07-25 00:24:17 +00005172 if (!resultType->isScalarType()) // C99 6.5.3.3p1
Sebastian Redl8b769972009-01-19 00:08:26 +00005173 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
5174 << resultType << Input->getSourceRange());
Chris Lattner4b009652007-07-25 00:24:17 +00005175 // LNot always has type int. C99 6.5.3.3p5.
Sebastian Redl8b769972009-01-19 00:08:26 +00005176 // In C++, it's bool. C++ 5.3.1p8
5177 resultType = getLangOptions().CPlusPlus ? Context.BoolTy : Context.IntTy;
Chris Lattner4b009652007-07-25 00:24:17 +00005178 break;
Chris Lattner03931a72007-08-24 21:16:53 +00005179 case UnaryOperator::Real:
Chris Lattner03931a72007-08-24 21:16:53 +00005180 case UnaryOperator::Imag:
Chris Lattner57e5f7e2009-02-17 08:12:06 +00005181 resultType = CheckRealImagOperand(Input, OpLoc, Opc == UnaryOperator::Real);
Chris Lattner03931a72007-08-24 21:16:53 +00005182 break;
Chris Lattner4b009652007-07-25 00:24:17 +00005183 case UnaryOperator::Extension:
Chris Lattner4b009652007-07-25 00:24:17 +00005184 resultType = Input->getType();
5185 break;
5186 }
5187 if (resultType.isNull())
Sebastian Redl8b769972009-01-19 00:08:26 +00005188 return ExprError();
Douglas Gregorc78182d2009-03-13 23:49:33 +00005189
5190 InputArg.release();
Steve Naroff774e4152009-01-21 00:14:39 +00005191 return Owned(new (Context) UnaryOperator(Input, Opc, resultType, OpLoc));
Chris Lattner4b009652007-07-25 00:24:17 +00005192}
5193
Douglas Gregorc78182d2009-03-13 23:49:33 +00005194// Unary Operators. 'Tok' is the token for the operator.
5195Action::OwningExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc,
5196 tok::TokenKind Op, ExprArg input) {
5197 Expr *Input = (Expr*)input.get();
5198 UnaryOperator::Opcode Opc = ConvertTokenKindToUnaryOpcode(Op);
5199
5200 if (getLangOptions().CPlusPlus && Input->getType()->isOverloadableType()) {
5201 // Find all of the overloaded operators visible from this
5202 // point. We perform both an operator-name lookup from the local
5203 // scope and an argument-dependent lookup based on the types of
5204 // the arguments.
5205 FunctionSet Functions;
5206 OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc);
5207 if (OverOp != OO_None) {
5208 LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(),
5209 Functions);
5210 DeclarationName OpName
5211 = Context.DeclarationNames.getCXXOperatorName(OverOp);
5212 ArgumentDependentLookup(OpName, &Input, 1, Functions);
5213 }
5214
5215 return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, move(input));
5216 }
5217
5218 return CreateBuiltinUnaryOp(OpLoc, Opc, move(input));
5219}
5220
Steve Naroff5cbb02f2007-09-16 14:56:35 +00005221/// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo".
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005222Sema::OwningExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc,
5223 SourceLocation LabLoc,
5224 IdentifierInfo *LabelII) {
Chris Lattner4b009652007-07-25 00:24:17 +00005225 // Look up the record for this label identifier.
Chris Lattner2616d8c2009-04-18 20:01:55 +00005226 LabelStmt *&LabelDecl = getLabelMap()[LabelII];
Mike Stump9afab102009-02-19 03:04:26 +00005227
Daniel Dunbar879788d2008-08-04 16:51:22 +00005228 // If we haven't seen this label yet, create a forward reference. It
5229 // will be validated and/or cleaned up in ActOnFinishFunctionBody.
Steve Naroffb88d81c2009-03-13 15:38:40 +00005230 if (LabelDecl == 0)
Steve Naroff774e4152009-01-21 00:14:39 +00005231 LabelDecl = new (Context) LabelStmt(LabLoc, LabelII, 0);
Mike Stump9afab102009-02-19 03:04:26 +00005232
Chris Lattner4b009652007-07-25 00:24:17 +00005233 // Create the AST node. The address of a label always has type 'void*'.
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005234 return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, LabelDecl,
5235 Context.getPointerType(Context.VoidTy)));
Chris Lattner4b009652007-07-25 00:24:17 +00005236}
5237
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005238Sema::OwningExprResult
5239Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtArg substmt,
5240 SourceLocation RPLoc) { // "({..})"
5241 Stmt *SubStmt = static_cast<Stmt*>(substmt.get());
Chris Lattner4b009652007-07-25 00:24:17 +00005242 assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!");
5243 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt);
5244
Eli Friedmanbc941e12009-01-24 23:09:00 +00005245 bool isFileScope = getCurFunctionOrMethodDecl() == 0;
Chris Lattneraa257592009-04-25 19:11:05 +00005246 if (isFileScope)
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005247 return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope));
Eli Friedmanbc941e12009-01-24 23:09:00 +00005248
Chris Lattner4b009652007-07-25 00:24:17 +00005249 // FIXME: there are a variety of strange constraints to enforce here, for
5250 // example, it is not possible to goto into a stmt expression apparently.
5251 // More semantic analysis is needed.
Mike Stump9afab102009-02-19 03:04:26 +00005252
Chris Lattner4b009652007-07-25 00:24:17 +00005253 // If there are sub stmts in the compound stmt, take the type of the last one
5254 // as the type of the stmtexpr.
5255 QualType Ty = Context.VoidTy;
Mike Stump9afab102009-02-19 03:04:26 +00005256
Chris Lattner200964f2008-07-26 19:51:01 +00005257 if (!Compound->body_empty()) {
5258 Stmt *LastStmt = Compound->body_back();
5259 // If LastStmt is a label, skip down through into the body.
5260 while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt))
5261 LastStmt = Label->getSubStmt();
Mike Stump9afab102009-02-19 03:04:26 +00005262
Chris Lattner200964f2008-07-26 19:51:01 +00005263 if (Expr *LastExpr = dyn_cast<Expr>(LastStmt))
Chris Lattner4b009652007-07-25 00:24:17 +00005264 Ty = LastExpr->getType();
Chris Lattner200964f2008-07-26 19:51:01 +00005265 }
Mike Stump9afab102009-02-19 03:04:26 +00005266
Eli Friedman2b128322009-03-23 00:24:07 +00005267 // FIXME: Check that expression type is complete/non-abstract; statement
5268 // expressions are not lvalues.
5269
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005270 substmt.release();
5271 return Owned(new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc));
Chris Lattner4b009652007-07-25 00:24:17 +00005272}
Steve Naroff63bad2d2007-08-01 22:05:33 +00005273
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005274Sema::OwningExprResult Sema::ActOnBuiltinOffsetOf(Scope *S,
5275 SourceLocation BuiltinLoc,
5276 SourceLocation TypeLoc,
5277 TypeTy *argty,
5278 OffsetOfComponent *CompPtr,
5279 unsigned NumComponents,
5280 SourceLocation RPLoc) {
5281 // FIXME: This function leaks all expressions in the offset components on
5282 // error.
Chris Lattner0d9bcea2007-08-30 17:45:32 +00005283 QualType ArgTy = QualType::getFromOpaquePtr(argty);
5284 assert(!ArgTy.isNull() && "Missing type argument!");
Mike Stump9afab102009-02-19 03:04:26 +00005285
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00005286 bool Dependent = ArgTy->isDependentType();
5287
Chris Lattner0d9bcea2007-08-30 17:45:32 +00005288 // We must have at least one component that refers to the type, and the first
5289 // one is known to be a field designator. Verify that the ArgTy represents
5290 // a struct/union/class.
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00005291 if (!Dependent && !ArgTy->isRecordType())
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005292 return ExprError(Diag(TypeLoc, diag::err_offsetof_record_type) << ArgTy);
Mike Stump9afab102009-02-19 03:04:26 +00005293
Eli Friedman2b128322009-03-23 00:24:07 +00005294 // FIXME: Type must be complete per C99 7.17p3 because a declaring a variable
5295 // with an incomplete type would be illegal.
Douglas Gregor6e7c27c2009-03-11 16:48:53 +00005296
Eli Friedman342d9432009-02-27 06:44:11 +00005297 // Otherwise, create a null pointer as the base, and iteratively process
5298 // the offsetof designators.
5299 QualType ArgTyPtr = Context.getPointerType(ArgTy);
5300 Expr* Res = new (Context) ImplicitValueInitExpr(ArgTyPtr);
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005301 Res = new (Context) UnaryOperator(Res, UnaryOperator::Deref,
Eli Friedman342d9432009-02-27 06:44:11 +00005302 ArgTy, SourceLocation());
Eli Friedmanc67f86a2009-01-26 01:33:06 +00005303
Chris Lattnerb37522e2007-08-31 21:49:13 +00005304 // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a
5305 // GCC extension, diagnose them.
Eli Friedman342d9432009-02-27 06:44:11 +00005306 // FIXME: This diagnostic isn't actually visible because the location is in
5307 // a system header!
Chris Lattnerb37522e2007-08-31 21:49:13 +00005308 if (NumComponents != 1)
Chris Lattner9d2cf082008-11-19 05:27:50 +00005309 Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator)
5310 << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd);
Mike Stump9afab102009-02-19 03:04:26 +00005311
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00005312 if (!Dependent) {
Eli Friedmanc24ae002009-05-03 21:22:18 +00005313 bool DidWarnAboutNonPOD = false;
Anders Carlsson68c926c2009-05-02 18:36:10 +00005314
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00005315 // FIXME: Dependent case loses a lot of information here. And probably
5316 // leaks like a sieve.
5317 for (unsigned i = 0; i != NumComponents; ++i) {
5318 const OffsetOfComponent &OC = CompPtr[i];
5319 if (OC.isBrackets) {
5320 // Offset of an array sub-field. TODO: Should we allow vector elements?
5321 const ArrayType *AT = Context.getAsArrayType(Res->getType());
5322 if (!AT) {
5323 Res->Destroy(Context);
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005324 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type)
5325 << Res->getType());
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00005326 }
5327
5328 // FIXME: C++: Verify that operator[] isn't overloaded.
5329
Eli Friedman342d9432009-02-27 06:44:11 +00005330 // Promote the array so it looks more like a normal array subscript
5331 // expression.
5332 DefaultFunctionArrayConversion(Res);
5333
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00005334 // C99 6.5.2.1p1
5335 Expr *Idx = static_cast<Expr*>(OC.U.E);
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005336 // FIXME: Leaks Res
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00005337 if (!Idx->isTypeDependent() && !Idx->getType()->isIntegerType())
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005338 return ExprError(Diag(Idx->getLocStart(),
Chris Lattner7264d212009-04-25 22:50:55 +00005339 diag::err_typecheck_subscript_not_integer)
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005340 << Idx->getSourceRange());
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00005341
5342 Res = new (Context) ArraySubscriptExpr(Res, Idx, AT->getElementType(),
5343 OC.LocEnd);
5344 continue;
Chris Lattner0d9bcea2007-08-30 17:45:32 +00005345 }
Mike Stump9afab102009-02-19 03:04:26 +00005346
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00005347 const RecordType *RC = Res->getType()->getAs<RecordType>();
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00005348 if (!RC) {
5349 Res->Destroy(Context);
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005350 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type)
5351 << Res->getType());
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00005352 }
Chris Lattner2af6a802007-08-30 17:59:59 +00005353
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00005354 // Get the decl corresponding to this.
5355 RecordDecl *RD = RC->getDecl();
Anders Carlsson356946e2009-05-01 23:20:30 +00005356 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
Anders Carlsson68c926c2009-05-02 18:36:10 +00005357 if (!CRD->isPOD() && !DidWarnAboutNonPOD) {
Anders Carlssonbbceaea2009-05-02 17:45:47 +00005358 ExprError(Diag(BuiltinLoc, diag::warn_offsetof_non_pod_type)
5359 << SourceRange(CompPtr[0].LocStart, OC.LocEnd)
5360 << Res->getType());
Anders Carlsson68c926c2009-05-02 18:36:10 +00005361 DidWarnAboutNonPOD = true;
5362 }
Anders Carlsson356946e2009-05-01 23:20:30 +00005363 }
5364
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00005365 FieldDecl *MemberDecl
5366 = dyn_cast_or_null<FieldDecl>(LookupQualifiedName(RD, OC.U.IdentInfo,
5367 LookupMemberName)
5368 .getAsDecl());
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005369 // FIXME: Leaks Res
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00005370 if (!MemberDecl)
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005371 return ExprError(Diag(BuiltinLoc, diag::err_typecheck_no_member)
5372 << OC.U.IdentInfo << SourceRange(OC.LocStart, OC.LocEnd));
Mike Stump9afab102009-02-19 03:04:26 +00005373
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00005374 // FIXME: C++: Verify that MemberDecl isn't a static field.
5375 // FIXME: Verify that MemberDecl isn't a bitfield.
Eli Friedman35719da2009-04-26 20:50:44 +00005376 if (cast<RecordDecl>(MemberDecl->getDeclContext())->isAnonymousStructOrUnion()) {
Anders Carlssonc154a722009-05-01 19:30:39 +00005377 Res = BuildAnonymousStructUnionMemberReference(
5378 SourceLocation(), MemberDecl, Res, SourceLocation()).takeAs<Expr>();
Eli Friedman35719da2009-04-26 20:50:44 +00005379 } else {
5380 // MemberDecl->getType() doesn't get the right qualifiers, but it
5381 // doesn't matter here.
5382 Res = new (Context) MemberExpr(Res, false, MemberDecl, OC.LocEnd,
5383 MemberDecl->getType().getNonReferenceType());
5384 }
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00005385 }
Chris Lattner0d9bcea2007-08-30 17:45:32 +00005386 }
Mike Stump9afab102009-02-19 03:04:26 +00005387
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005388 return Owned(new (Context) UnaryOperator(Res, UnaryOperator::OffsetOf,
5389 Context.getSizeType(), BuiltinLoc));
Chris Lattner0d9bcea2007-08-30 17:45:32 +00005390}
5391
5392
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005393Sema::OwningExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc,
5394 TypeTy *arg1,TypeTy *arg2,
5395 SourceLocation RPLoc) {
Steve Naroff63bad2d2007-08-01 22:05:33 +00005396 QualType argT1 = QualType::getFromOpaquePtr(arg1);
5397 QualType argT2 = QualType::getFromOpaquePtr(arg2);
Mike Stump9afab102009-02-19 03:04:26 +00005398
Steve Naroff63bad2d2007-08-01 22:05:33 +00005399 assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)");
Mike Stump9afab102009-02-19 03:04:26 +00005400
Douglas Gregore6211502009-05-19 22:28:02 +00005401 if (getLangOptions().CPlusPlus) {
5402 Diag(BuiltinLoc, diag::err_types_compatible_p_in_cplusplus)
5403 << SourceRange(BuiltinLoc, RPLoc);
5404 return ExprError();
5405 }
5406
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005407 return Owned(new (Context) TypesCompatibleExpr(Context.IntTy, BuiltinLoc,
5408 argT1, argT2, RPLoc));
Steve Naroff63bad2d2007-08-01 22:05:33 +00005409}
5410
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005411Sema::OwningExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc,
5412 ExprArg cond,
5413 ExprArg expr1, ExprArg expr2,
5414 SourceLocation RPLoc) {
5415 Expr *CondExpr = static_cast<Expr*>(cond.get());
5416 Expr *LHSExpr = static_cast<Expr*>(expr1.get());
5417 Expr *RHSExpr = static_cast<Expr*>(expr2.get());
Mike Stump9afab102009-02-19 03:04:26 +00005418
Steve Naroff93c53012007-08-03 21:21:27 +00005419 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)");
5420
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00005421 QualType resType;
Douglas Gregordd4ae3f2009-05-19 22:43:30 +00005422 if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) {
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00005423 resType = Context.DependentTy;
5424 } else {
5425 // The conditional expression is required to be a constant expression.
5426 llvm::APSInt condEval(32);
5427 SourceLocation ExpLoc;
5428 if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc))
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005429 return ExprError(Diag(ExpLoc,
5430 diag::err_typecheck_choose_expr_requires_constant)
5431 << CondExpr->getSourceRange());
Steve Naroff93c53012007-08-03 21:21:27 +00005432
Sebastian Redl6fdb28d2009-02-26 14:39:58 +00005433 // If the condition is > zero, then the AST type is the same as the LSHExpr.
5434 resType = condEval.getZExtValue() ? LHSExpr->getType() : RHSExpr->getType();
5435 }
5436
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005437 cond.release(); expr1.release(); expr2.release();
5438 return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr,
5439 resType, RPLoc));
Steve Naroff93c53012007-08-03 21:21:27 +00005440}
5441
Steve Naroff52a81c02008-09-03 18:15:37 +00005442//===----------------------------------------------------------------------===//
5443// Clang Extensions.
5444//===----------------------------------------------------------------------===//
5445
5446/// ActOnBlockStart - This callback is invoked when a block literal is started.
Steve Naroff52059382008-10-10 01:28:17 +00005447void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *BlockScope) {
Steve Naroff52a81c02008-09-03 18:15:37 +00005448 // Analyze block parameters.
5449 BlockSemaInfo *BSI = new BlockSemaInfo();
Mike Stump9afab102009-02-19 03:04:26 +00005450
Steve Naroff52a81c02008-09-03 18:15:37 +00005451 // Add BSI to CurBlock.
5452 BSI->PrevBlockInfo = CurBlock;
5453 CurBlock = BSI;
Mike Stump9afab102009-02-19 03:04:26 +00005454
Fariborz Jahanian89942a02009-06-19 23:37:08 +00005455 BSI->ReturnType = QualType();
Steve Naroff52a81c02008-09-03 18:15:37 +00005456 BSI->TheScope = BlockScope;
Mike Stumpae93d652009-02-19 22:01:56 +00005457 BSI->hasBlockDeclRefExprs = false;
Daniel Dunbarc7ef2b92009-07-29 01:59:17 +00005458 BSI->hasPrototype = false;
Chris Lattnere7765e12009-04-19 05:28:12 +00005459 BSI->SavedFunctionNeedsScopeChecking = CurFunctionNeedsScopeChecking;
5460 CurFunctionNeedsScopeChecking = false;
Mike Stump9afab102009-02-19 03:04:26 +00005461
Steve Naroff52059382008-10-10 01:28:17 +00005462 BSI->TheDecl = BlockDecl::Create(Context, CurContext, CaretLoc);
Douglas Gregor8acb7272008-12-11 16:49:14 +00005463 PushDeclContext(BlockScope, BSI->TheDecl);
Steve Naroff52059382008-10-10 01:28:17 +00005464}
5465
Mike Stumpc1fddff2009-02-04 22:31:32 +00005466void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) {
Mike Stumpea3d74e2009-05-07 18:43:07 +00005467 assert(ParamInfo.getIdentifier()==0 && "block-id should have no identifier!");
Mike Stumpc1fddff2009-02-04 22:31:32 +00005468
5469 if (ParamInfo.getNumTypeObjects() == 0
5470 || ParamInfo.getTypeObject(0).Kind != DeclaratorChunk::Function) {
Douglas Gregor2a2e0402009-06-17 21:51:59 +00005471 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo);
Mike Stumpc1fddff2009-02-04 22:31:32 +00005472 QualType T = GetTypeForDeclarator(ParamInfo, CurScope);
5473
Mike Stump458287d2009-04-28 01:10:27 +00005474 if (T->isArrayType()) {
5475 Diag(ParamInfo.getSourceRange().getBegin(),
5476 diag::err_block_returns_array);
5477 return;
5478 }
5479
Mike Stumpc1fddff2009-02-04 22:31:32 +00005480 // The parameter list is optional, if there was none, assume ().
5481 if (!T->isFunctionType())
5482 T = Context.getFunctionType(T, NULL, 0, 0, 0);
5483
5484 CurBlock->hasPrototype = true;
5485 CurBlock->isVariadic = false;
Fariborz Jahanian157c4262009-05-14 20:53:39 +00005486 // Check for a valid sentinel attribute on this block.
Argiris Kirtzidisfe5f9732009-06-30 02:34:44 +00005487 if (CurBlock->TheDecl->getAttr<SentinelAttr>()) {
Fariborz Jahanian157c4262009-05-14 20:53:39 +00005488 Diag(ParamInfo.getAttributes()->getLoc(),
Fariborz Jahanian6dac16d2009-05-15 21:18:04 +00005489 diag::warn_attribute_sentinel_not_variadic) << 1;
Fariborz Jahanian157c4262009-05-14 20:53:39 +00005490 // FIXME: remove the attribute.
5491 }
Chris Lattnerc65b8bb2009-04-11 19:27:54 +00005492 QualType RetTy = T.getTypePtr()->getAsFunctionType()->getResultType();
5493
5494 // Do not allow returning a objc interface by-value.
5495 if (RetTy->isObjCInterfaceType()) {
5496 Diag(ParamInfo.getSourceRange().getBegin(),
5497 diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy;
5498 return;
5499 }
Mike Stumpc1fddff2009-02-04 22:31:32 +00005500 return;
5501 }
5502
Steve Naroff52a81c02008-09-03 18:15:37 +00005503 // Analyze arguments to block.
5504 assert(ParamInfo.getTypeObject(0).Kind == DeclaratorChunk::Function &&
5505 "Not a function declarator!");
5506 DeclaratorChunk::FunctionTypeInfo &FTI = ParamInfo.getTypeObject(0).Fun;
Mike Stump9afab102009-02-19 03:04:26 +00005507
Steve Naroff52059382008-10-10 01:28:17 +00005508 CurBlock->hasPrototype = FTI.hasPrototype;
5509 CurBlock->isVariadic = true;
Mike Stump9afab102009-02-19 03:04:26 +00005510
Steve Naroff52a81c02008-09-03 18:15:37 +00005511 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes
5512 // no arguments, not a function that takes a single void argument.
5513 if (FTI.hasPrototype &&
5514 FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
Chris Lattner5261d0c2009-03-28 19:18:32 +00005515 (!FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType().getCVRQualifiers()&&
5516 FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType())) {
Steve Naroff52a81c02008-09-03 18:15:37 +00005517 // empty arg list, don't push any params.
Steve Naroff52059382008-10-10 01:28:17 +00005518 CurBlock->isVariadic = false;
Steve Naroff52a81c02008-09-03 18:15:37 +00005519 } else if (FTI.hasPrototype) {
5520 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
Chris Lattner5261d0c2009-03-28 19:18:32 +00005521 CurBlock->Params.push_back(FTI.ArgInfo[i].Param.getAs<ParmVarDecl>());
Steve Naroff52059382008-10-10 01:28:17 +00005522 CurBlock->isVariadic = FTI.isVariadic;
Steve Naroff52a81c02008-09-03 18:15:37 +00005523 }
Jay Foad9e6bef42009-05-21 09:52:38 +00005524 CurBlock->TheDecl->setParams(Context, CurBlock->Params.data(),
Chris Lattnerc65b8bb2009-04-11 19:27:54 +00005525 CurBlock->Params.size());
Fariborz Jahanian536f73d2009-05-19 17:08:59 +00005526 CurBlock->TheDecl->setIsVariadic(CurBlock->isVariadic);
Douglas Gregor2a2e0402009-06-17 21:51:59 +00005527 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo);
Steve Naroff52059382008-10-10 01:28:17 +00005528 for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(),
5529 E = CurBlock->TheDecl->param_end(); AI != E; ++AI)
5530 // If this has an identifier, add it to the scope stack.
5531 if ((*AI)->getIdentifier())
5532 PushOnScopeChains(*AI, CurBlock->TheScope);
Chris Lattnerc65b8bb2009-04-11 19:27:54 +00005533
Fariborz Jahanian157c4262009-05-14 20:53:39 +00005534 // Check for a valid sentinel attribute on this block.
Douglas Gregor98da6ae2009-06-18 16:11:24 +00005535 if (!CurBlock->isVariadic &&
Argiris Kirtzidisfe5f9732009-06-30 02:34:44 +00005536 CurBlock->TheDecl->getAttr<SentinelAttr>()) {
Fariborz Jahanian157c4262009-05-14 20:53:39 +00005537 Diag(ParamInfo.getAttributes()->getLoc(),
Fariborz Jahanian6dac16d2009-05-15 21:18:04 +00005538 diag::warn_attribute_sentinel_not_variadic) << 1;
Fariborz Jahanian157c4262009-05-14 20:53:39 +00005539 // FIXME: remove the attribute.
5540 }
5541
Chris Lattnerc65b8bb2009-04-11 19:27:54 +00005542 // Analyze the return type.
5543 QualType T = GetTypeForDeclarator(ParamInfo, CurScope);
5544 QualType RetTy = T->getAsFunctionType()->getResultType();
5545
5546 // Do not allow returning a objc interface by-value.
5547 if (RetTy->isObjCInterfaceType()) {
5548 Diag(ParamInfo.getSourceRange().getBegin(),
5549 diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy;
5550 } else if (!RetTy->isDependentType())
Fariborz Jahanian89942a02009-06-19 23:37:08 +00005551 CurBlock->ReturnType = RetTy;
Steve Naroff52a81c02008-09-03 18:15:37 +00005552}
5553
5554/// ActOnBlockError - If there is an error parsing a block, this callback
5555/// is invoked to pop the information about the block from the action impl.
5556void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) {
5557 // Ensure that CurBlock is deleted.
5558 llvm::OwningPtr<BlockSemaInfo> CC(CurBlock);
Mike Stump9afab102009-02-19 03:04:26 +00005559
Chris Lattnere7765e12009-04-19 05:28:12 +00005560 CurFunctionNeedsScopeChecking = CurBlock->SavedFunctionNeedsScopeChecking;
5561
Steve Naroff52a81c02008-09-03 18:15:37 +00005562 // Pop off CurBlock, handle nested blocks.
Chris Lattnereb4d4a52009-04-21 22:38:46 +00005563 PopDeclContext();
Steve Naroff52a81c02008-09-03 18:15:37 +00005564 CurBlock = CurBlock->PrevBlockInfo;
Steve Naroff52a81c02008-09-03 18:15:37 +00005565 // FIXME: Delete the ParmVarDecl objects as well???
Steve Naroff52a81c02008-09-03 18:15:37 +00005566}
5567
5568/// ActOnBlockStmtExpr - This is called when the body of a block statement
5569/// literal was successfully completed. ^(int x){...}
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005570Sema::OwningExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc,
5571 StmtArg body, Scope *CurScope) {
Chris Lattnerc14c7f02009-03-27 04:18:06 +00005572 // If blocks are disabled, emit an error.
5573 if (!LangOpts.Blocks)
5574 Diag(CaretLoc, diag::err_blocks_disable);
5575
Steve Naroff52a81c02008-09-03 18:15:37 +00005576 // Ensure that CurBlock is deleted.
5577 llvm::OwningPtr<BlockSemaInfo> BSI(CurBlock);
Steve Naroff52a81c02008-09-03 18:15:37 +00005578
Steve Naroff52059382008-10-10 01:28:17 +00005579 PopDeclContext();
5580
Steve Naroff52a81c02008-09-03 18:15:37 +00005581 // Pop off CurBlock, handle nested blocks.
5582 CurBlock = CurBlock->PrevBlockInfo;
Mike Stump9afab102009-02-19 03:04:26 +00005583
Steve Naroff52a81c02008-09-03 18:15:37 +00005584 QualType RetTy = Context.VoidTy;
Fariborz Jahanian89942a02009-06-19 23:37:08 +00005585 if (!BSI->ReturnType.isNull())
5586 RetTy = BSI->ReturnType;
Mike Stump9afab102009-02-19 03:04:26 +00005587
Steve Naroff52a81c02008-09-03 18:15:37 +00005588 llvm::SmallVector<QualType, 8> ArgTypes;
5589 for (unsigned i = 0, e = BSI->Params.size(); i != e; ++i)
5590 ArgTypes.push_back(BSI->Params[i]->getType());
Mike Stump9afab102009-02-19 03:04:26 +00005591
Mike Stump8e288f42009-07-28 22:04:01 +00005592 bool NoReturn = BSI->TheDecl->getAttr<NoReturnAttr>();
Steve Naroff52a81c02008-09-03 18:15:37 +00005593 QualType BlockTy;
5594 if (!BSI->hasPrototype)
Mike Stump8e288f42009-07-28 22:04:01 +00005595 BlockTy = Context.getFunctionType(RetTy, 0, 0, false, 0, false, false, 0, 0,
5596 NoReturn);
Steve Naroff52a81c02008-09-03 18:15:37 +00005597 else
Jay Foad9e6bef42009-05-21 09:52:38 +00005598 BlockTy = Context.getFunctionType(RetTy, ArgTypes.data(), ArgTypes.size(),
Mike Stump8e288f42009-07-28 22:04:01 +00005599 BSI->isVariadic, 0, false, false, 0, 0,
5600 NoReturn);
Mike Stump9afab102009-02-19 03:04:26 +00005601
Eli Friedman2b128322009-03-23 00:24:07 +00005602 // FIXME: Check that return/parameter types are complete/non-abstract
Douglas Gregor98189262009-06-19 23:52:42 +00005603 DiagnoseUnusedParameters(BSI->Params.begin(), BSI->Params.end());
Steve Naroff52a81c02008-09-03 18:15:37 +00005604 BlockTy = Context.getBlockPointerType(BlockTy);
Mike Stump9afab102009-02-19 03:04:26 +00005605
Chris Lattnere7765e12009-04-19 05:28:12 +00005606 // If needed, diagnose invalid gotos and switches in the block.
5607 if (CurFunctionNeedsScopeChecking)
5608 DiagnoseInvalidJumps(static_cast<CompoundStmt*>(body.get()));
5609 CurFunctionNeedsScopeChecking = BSI->SavedFunctionNeedsScopeChecking;
5610
Anders Carlsson39ecdcf2009-05-01 19:49:17 +00005611 BSI->TheDecl->setBody(body.takeAs<CompoundStmt>());
Mike Stump8e288f42009-07-28 22:04:01 +00005612 CheckFallThroughForBlock(BlockTy, BSI->TheDecl->getBody());
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005613 return Owned(new (Context) BlockExpr(BSI->TheDecl, BlockTy,
5614 BSI->hasBlockDeclRefExprs));
Steve Naroff52a81c02008-09-03 18:15:37 +00005615}
5616
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005617Sema::OwningExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc,
5618 ExprArg expr, TypeTy *type,
5619 SourceLocation RPLoc) {
Anders Carlsson36760332007-10-15 20:28:48 +00005620 QualType T = QualType::getFromOpaquePtr(type);
Chris Lattnerda139482009-04-05 15:49:53 +00005621 Expr *E = static_cast<Expr*>(expr.get());
5622 Expr *OrigExpr = E;
5623
Anders Carlsson36760332007-10-15 20:28:48 +00005624 InitBuiltinVaListType();
Eli Friedmandd2b9af2008-08-09 23:32:40 +00005625
5626 // Get the va_list type
5627 QualType VaListType = Context.getBuiltinVaListType();
Eli Friedman6f6e8922009-05-16 12:46:54 +00005628 if (VaListType->isArrayType()) {
5629 // Deal with implicit array decay; for example, on x86-64,
5630 // va_list is an array, but it's supposed to decay to
5631 // a pointer for va_arg.
Eli Friedmandd2b9af2008-08-09 23:32:40 +00005632 VaListType = Context.getArrayDecayedType(VaListType);
Eli Friedman6f6e8922009-05-16 12:46:54 +00005633 // Make sure the input expression also decays appropriately.
5634 UsualUnaryConversions(E);
5635 } else {
5636 // Otherwise, the va_list argument must be an l-value because
5637 // it is modified by va_arg.
Douglas Gregor25990972009-05-19 23:10:31 +00005638 if (!E->isTypeDependent() &&
5639 CheckForModifiableLvalue(E, BuiltinLoc, *this))
Eli Friedman6f6e8922009-05-16 12:46:54 +00005640 return ExprError();
5641 }
Eli Friedmandd2b9af2008-08-09 23:32:40 +00005642
Douglas Gregor25990972009-05-19 23:10:31 +00005643 if (!E->isTypeDependent() &&
5644 !Context.hasSameType(VaListType, E->getType())) {
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005645 return ExprError(Diag(E->getLocStart(),
5646 diag::err_first_argument_to_va_arg_not_of_type_va_list)
Chris Lattnerda139482009-04-05 15:49:53 +00005647 << OrigExpr->getType() << E->getSourceRange());
Chris Lattner89a72c52009-04-05 00:59:53 +00005648 }
Mike Stump9afab102009-02-19 03:04:26 +00005649
Eli Friedman2b128322009-03-23 00:24:07 +00005650 // FIXME: Check that type is complete/non-abstract
Anders Carlsson36760332007-10-15 20:28:48 +00005651 // FIXME: Warn if a non-POD type is passed in.
Mike Stump9afab102009-02-19 03:04:26 +00005652
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005653 expr.release();
5654 return Owned(new (Context) VAArgExpr(BuiltinLoc, E, T.getNonReferenceType(),
5655 RPLoc));
Anders Carlsson36760332007-10-15 20:28:48 +00005656}
5657
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005658Sema::OwningExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) {
Douglas Gregorad4b3792008-11-29 04:51:27 +00005659 // The type of __null will be int or long, depending on the size of
5660 // pointers on the target.
5661 QualType Ty;
5662 if (Context.Target.getPointerWidth(0) == Context.Target.getIntWidth())
5663 Ty = Context.IntTy;
5664 else
5665 Ty = Context.LongTy;
5666
Sebastian Redl76bb8ec2009-03-15 17:47:39 +00005667 return Owned(new (Context) GNUNullExpr(Ty, TokenLoc));
Douglas Gregorad4b3792008-11-29 04:51:27 +00005668}
5669
Chris Lattner005ed752008-01-04 18:04:52 +00005670bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy,
5671 SourceLocation Loc,
5672 QualType DstType, QualType SrcType,
5673 Expr *SrcExpr, const char *Flavor) {
5674 // Decode the result (notice that AST's are still created for extensions).
5675 bool isInvalid = false;
5676 unsigned DiagKind;
5677 switch (ConvTy) {
5678 default: assert(0 && "Unknown conversion type");
5679 case Compatible: return false;
Chris Lattnerd951b7b2008-01-04 18:22:42 +00005680 case PointerToInt:
Chris Lattner005ed752008-01-04 18:04:52 +00005681 DiagKind = diag::ext_typecheck_convert_pointer_int;
5682 break;
Chris Lattnerd951b7b2008-01-04 18:22:42 +00005683 case IntToPointer:
5684 DiagKind = diag::ext_typecheck_convert_int_pointer;
5685 break;
Chris Lattner005ed752008-01-04 18:04:52 +00005686 case IncompatiblePointer:
5687 DiagKind = diag::ext_typecheck_convert_incompatible_pointer;
5688 break;
Eli Friedman6ca28cb2009-03-22 23:59:44 +00005689 case IncompatiblePointerSign:
5690 DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign;
5691 break;
Chris Lattner005ed752008-01-04 18:04:52 +00005692 case FunctionVoidPointer:
5693 DiagKind = diag::ext_typecheck_convert_pointer_void_func;
5694 break;
5695 case CompatiblePointerDiscardsQualifiers:
Douglas Gregor1815b3b2008-09-12 00:47:35 +00005696 // If the qualifiers lost were because we were applying the
5697 // (deprecated) C++ conversion from a string literal to a char*
5698 // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME:
5699 // Ideally, this check would be performed in
5700 // CheckPointerTypesForAssignment. However, that would require a
5701 // bit of refactoring (so that the second argument is an
5702 // expression, rather than a type), which should be done as part
5703 // of a larger effort to fix CheckPointerTypesForAssignment for
5704 // C++ semantics.
5705 if (getLangOptions().CPlusPlus &&
5706 IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType))
5707 return false;
Chris Lattner005ed752008-01-04 18:04:52 +00005708 DiagKind = diag::ext_typecheck_convert_discards_qualifiers;
5709 break;
Steve Naroff3454b6c2008-09-04 15:10:53 +00005710 case IntToBlockPointer:
5711 DiagKind = diag::err_int_to_block_pointer;
5712 break;
5713 case IncompatibleBlockPointer:
Mike Stumpd331e752009-04-21 22:51:42 +00005714 DiagKind = diag::err_typecheck_convert_incompatible_block_pointer;
Steve Naroff3454b6c2008-09-04 15:10:53 +00005715 break;
Steve Naroff19608432008-10-14 22:18:38 +00005716 case IncompatibleObjCQualifiedId:
Mike Stump9afab102009-02-19 03:04:26 +00005717 // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since
Steve Naroff19608432008-10-14 22:18:38 +00005718 // it can give a more specific diagnostic.
5719 DiagKind = diag::warn_incompatible_qualified_id;
5720 break;
Anders Carlsson355ed052009-01-30 23:17:46 +00005721 case IncompatibleVectors:
5722 DiagKind = diag::warn_incompatible_vectors;
5723 break;
Chris Lattner005ed752008-01-04 18:04:52 +00005724 case Incompatible:
5725 DiagKind = diag::err_typecheck_convert_incompatible;
5726 isInvalid = true;
5727 break;
5728 }
Mike Stump9afab102009-02-19 03:04:26 +00005729
Chris Lattner271d4c22008-11-24 05:29:24 +00005730 Diag(Loc, DiagKind) << DstType << SrcType << Flavor
5731 << SrcExpr->getSourceRange();
Chris Lattner005ed752008-01-04 18:04:52 +00005732 return isInvalid;
5733}
Anders Carlssond5201b92008-11-30 19:50:32 +00005734
Chris Lattnereec8ae22009-04-25 21:59:05 +00005735bool Sema::VerifyIntegerConstantExpression(const Expr *E, llvm::APSInt *Result){
Eli Friedmance329412009-04-25 22:26:58 +00005736 llvm::APSInt ICEResult;
5737 if (E->isIntegerConstantExpr(ICEResult, Context)) {
5738 if (Result)
5739 *Result = ICEResult;
5740 return false;
5741 }
5742
Anders Carlssond5201b92008-11-30 19:50:32 +00005743 Expr::EvalResult EvalResult;
5744
Mike Stump9afab102009-02-19 03:04:26 +00005745 if (!E->Evaluate(EvalResult, Context) || !EvalResult.Val.isInt() ||
Anders Carlssond5201b92008-11-30 19:50:32 +00005746 EvalResult.HasSideEffects) {
5747 Diag(E->getExprLoc(), diag::err_expr_not_ice) << E->getSourceRange();
5748
5749 if (EvalResult.Diag) {
5750 // We only show the note if it's not the usual "invalid subexpression"
5751 // or if it's actually in a subexpression.
5752 if (EvalResult.Diag != diag::note_invalid_subexpr_in_ice ||
5753 E->IgnoreParens() != EvalResult.DiagExpr->IgnoreParens())
5754 Diag(EvalResult.DiagLoc, EvalResult.Diag);
5755 }
Mike Stump9afab102009-02-19 03:04:26 +00005756
Anders Carlssond5201b92008-11-30 19:50:32 +00005757 return true;
5758 }
5759
Eli Friedmance329412009-04-25 22:26:58 +00005760 Diag(E->getExprLoc(), diag::ext_expr_not_ice) <<
5761 E->getSourceRange();
Anders Carlssond5201b92008-11-30 19:50:32 +00005762
Eli Friedmance329412009-04-25 22:26:58 +00005763 if (EvalResult.Diag &&
5764 Diags.getDiagnosticLevel(diag::ext_expr_not_ice) != Diagnostic::Ignored)
5765 Diag(EvalResult.DiagLoc, EvalResult.Diag);
Mike Stump9afab102009-02-19 03:04:26 +00005766
Anders Carlssond5201b92008-11-30 19:50:32 +00005767 if (Result)
5768 *Result = EvalResult.Val.getInt();
5769 return false;
5770}
Douglas Gregor98189262009-06-19 23:52:42 +00005771
Douglas Gregora8b2fbf2009-06-22 20:57:11 +00005772Sema::ExpressionEvaluationContext
5773Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext) {
5774 // Introduce a new set of potentially referenced declarations to the stack.
5775 if (NewContext == PotentiallyPotentiallyEvaluated)
5776 PotentiallyReferencedDeclStack.push_back(PotentiallyReferencedDecls());
5777
5778 std::swap(ExprEvalContext, NewContext);
5779 return NewContext;
5780}
5781
5782void
5783Sema::PopExpressionEvaluationContext(ExpressionEvaluationContext OldContext,
5784 ExpressionEvaluationContext NewContext) {
5785 ExprEvalContext = NewContext;
5786
5787 if (OldContext == PotentiallyPotentiallyEvaluated) {
5788 // Mark any remaining declarations in the current position of the stack
5789 // as "referenced". If they were not meant to be referenced, semantic
5790 // analysis would have eliminated them (e.g., in ActOnCXXTypeId).
5791 PotentiallyReferencedDecls RemainingDecls;
5792 RemainingDecls.swap(PotentiallyReferencedDeclStack.back());
5793 PotentiallyReferencedDeclStack.pop_back();
5794
5795 for (PotentiallyReferencedDecls::iterator I = RemainingDecls.begin(),
5796 IEnd = RemainingDecls.end();
5797 I != IEnd; ++I)
5798 MarkDeclarationReferenced(I->first, I->second);
5799 }
5800}
Douglas Gregor98189262009-06-19 23:52:42 +00005801
5802/// \brief Note that the given declaration was referenced in the source code.
5803///
5804/// This routine should be invoke whenever a given declaration is referenced
5805/// in the source code, and where that reference occurred. If this declaration
5806/// reference means that the the declaration is used (C++ [basic.def.odr]p2,
5807/// C99 6.9p3), then the declaration will be marked as used.
5808///
5809/// \param Loc the location where the declaration was referenced.
5810///
5811/// \param D the declaration that has been referenced by the source code.
5812void Sema::MarkDeclarationReferenced(SourceLocation Loc, Decl *D) {
5813 assert(D && "No declaration?");
5814
Douglas Gregorcad27f62009-06-22 23:06:13 +00005815 if (D->isUsed())
5816 return;
5817
Douglas Gregor98189262009-06-19 23:52:42 +00005818 // Mark a parameter declaration "used", regardless of whether we're in a
5819 // template or not.
5820 if (isa<ParmVarDecl>(D))
5821 D->setUsed(true);
5822
5823 // Do not mark anything as "used" within a dependent context; wait for
5824 // an instantiation.
5825 if (CurContext->isDependentContext())
5826 return;
5827
Douglas Gregora8b2fbf2009-06-22 20:57:11 +00005828 switch (ExprEvalContext) {
5829 case Unevaluated:
5830 // We are in an expression that is not potentially evaluated; do nothing.
5831 return;
5832
5833 case PotentiallyEvaluated:
5834 // We are in a potentially-evaluated expression, so this declaration is
5835 // "used"; handle this below.
5836 break;
5837
5838 case PotentiallyPotentiallyEvaluated:
5839 // We are in an expression that may be potentially evaluated; queue this
5840 // declaration reference until we know whether the expression is
5841 // potentially evaluated.
5842 PotentiallyReferencedDeclStack.back().push_back(std::make_pair(Loc, D));
5843 return;
5844 }
5845
Douglas Gregor98189262009-06-19 23:52:42 +00005846 // Note that this declaration has been used.
Fariborz Jahanian8915a3d2009-06-22 17:30:33 +00005847 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Fariborz Jahanian599778e2009-06-22 23:34:40 +00005848 unsigned TypeQuals;
Fariborz Jahanian2f5a0a32009-06-22 20:37:23 +00005849 if (Constructor->isImplicit() && Constructor->isDefaultConstructor()) {
5850 if (!Constructor->isUsed())
5851 DefineImplicitDefaultConstructor(Loc, Constructor);
Mike Stump90fc78e2009-08-04 21:02:39 +00005852 } else if (Constructor->isImplicit() &&
5853 Constructor->isCopyConstructor(Context, TypeQuals)) {
Fariborz Jahanian599778e2009-06-22 23:34:40 +00005854 if (!Constructor->isUsed())
5855 DefineImplicitCopyConstructor(Loc, Constructor, TypeQuals);
5856 }
Fariborz Jahanian368cc6c2009-06-26 23:49:16 +00005857 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
5858 if (Destructor->isImplicit() && !Destructor->isUsed())
5859 DefineImplicitDestructor(Loc, Destructor);
5860
Fariborz Jahaniand67364c2009-06-25 21:45:19 +00005861 } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D)) {
5862 if (MethodDecl->isImplicit() && MethodDecl->isOverloadedOperator() &&
5863 MethodDecl->getOverloadedOperator() == OO_Equal) {
5864 if (!MethodDecl->isUsed())
5865 DefineImplicitOverloadedAssign(Loc, MethodDecl);
5866 }
5867 }
Fariborz Jahanianb12bd432009-06-24 22:09:44 +00005868 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
Douglas Gregor6f5e0542009-06-26 00:10:03 +00005869 // Implicit instantiation of function templates and member functions of
5870 // class templates.
Argiris Kirtzidisccb9efe2009-06-30 02:35:26 +00005871 if (!Function->getBody()) {
Douglas Gregor6f5e0542009-06-26 00:10:03 +00005872 // FIXME: distinguish between implicit instantiations of function
5873 // templates and explicit specializations (the latter don't get
5874 // instantiated, naturally).
5875 if (Function->getInstantiatedFromMemberFunction() ||
5876 Function->getPrimaryTemplate())
Douglas Gregordcdb3842009-06-30 17:20:14 +00005877 PendingImplicitInstantiations.push_back(std::make_pair(Function, Loc));
Douglas Gregorcad27f62009-06-22 23:06:13 +00005878 }
5879
5880
Douglas Gregor98189262009-06-19 23:52:42 +00005881 // FIXME: keep track of references to static functions
Douglas Gregor98189262009-06-19 23:52:42 +00005882 Function->setUsed(true);
5883 return;
Douglas Gregorcad27f62009-06-22 23:06:13 +00005884 }
Douglas Gregor98189262009-06-19 23:52:42 +00005885
5886 if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
Douglas Gregor181fe792009-07-24 20:34:43 +00005887 // Implicit instantiation of static data members of class templates.
5888 // FIXME: distinguish between implicit instantiations (which we need to
5889 // actually instantiate) and explicit specializations.
5890 if (Var->isStaticDataMember() &&
5891 Var->getInstantiatedFromStaticDataMember())
5892 PendingImplicitInstantiations.push_back(std::make_pair(Var, Loc));
5893
Douglas Gregor98189262009-06-19 23:52:42 +00005894 // FIXME: keep track of references to static data?
Douglas Gregor181fe792009-07-24 20:34:43 +00005895
Douglas Gregor98189262009-06-19 23:52:42 +00005896 D->setUsed(true);
Douglas Gregor181fe792009-07-24 20:34:43 +00005897 return;
5898}
Douglas Gregor98189262009-06-19 23:52:42 +00005899}
5900