blob: a36bcf588065bedd45eb8ead6a11f39627f2b43b [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +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 Dunbarc4a1dea2008-08-11 05:35:13 +000016#include "clang/AST/DeclObjC.h"
Chris Lattner04421082008-04-08 04:40:51 +000017#include "clang/AST/ExprCXX.h"
Steve Narofff494b572008-05-29 21:12:08 +000018#include "clang/AST/ExprObjC.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000019#include "clang/Lex/Preprocessor.h"
20#include "clang/Lex/LiteralSupport.h"
Daniel Dunbare4858a62008-08-11 03:45:03 +000021#include "clang/Basic/Diagnostic.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022#include "clang/Basic/SourceManager.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000023#include "clang/Basic/TargetInfo.h"
Steve Naroff4eb206b2008-09-03 18:15:37 +000024#include "clang/Parse/DeclSpec.h"
Chris Lattner418f6c72008-10-26 23:43:26 +000025#include "clang/Parse/Designator.h"
Steve Naroff4eb206b2008-09-03 18:15:37 +000026#include "clang/Parse/Scope.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000027using namespace clang;
28
Chris Lattnere7a2e912008-07-25 21:10:04 +000029//===----------------------------------------------------------------------===//
30// Standard Promotions and Conversions
31//===----------------------------------------------------------------------===//
32
Chris Lattnere7a2e912008-07-25 21:10:04 +000033/// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4).
34void Sema::DefaultFunctionArrayConversion(Expr *&E) {
35 QualType Ty = E->getType();
36 assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type");
37
Chris Lattnere7a2e912008-07-25 21:10:04 +000038 if (Ty->isFunctionType())
39 ImpCastExprToType(E, Context.getPointerType(Ty));
Chris Lattner67d33d82008-07-25 21:33:13 +000040 else if (Ty->isArrayType()) {
41 // In C90 mode, arrays only promote to pointers if the array expression is
42 // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has
43 // type 'array of type' is converted to an expression that has type 'pointer
44 // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression
45 // that has type 'array of type' ...". The relevant change is "an lvalue"
46 // (C90) to "an expression" (C99).
Argyrios Kyrtzidisc39a3d72008-09-11 04:25:59 +000047 //
48 // C++ 4.2p1:
49 // An lvalue or rvalue of type "array of N T" or "array of unknown bound of
50 // T" can be converted to an rvalue of type "pointer to T".
51 //
52 if (getLangOptions().C99 || getLangOptions().CPlusPlus ||
53 E->isLvalue(Context) == Expr::LV_Valid)
Chris Lattner67d33d82008-07-25 21:33:13 +000054 ImpCastExprToType(E, Context.getArrayDecayedType(Ty));
55 }
Chris Lattnere7a2e912008-07-25 21:10:04 +000056}
57
58/// UsualUnaryConversions - Performs various conversions that are common to most
59/// operators (C99 6.3). The conversions of array and function types are
60/// sometimes surpressed. For example, the array->pointer conversion doesn't
61/// apply if the array is an argument to the sizeof or address (&) operators.
62/// In these instances, this routine should *not* be called.
63Expr *Sema::UsualUnaryConversions(Expr *&Expr) {
64 QualType Ty = Expr->getType();
65 assert(!Ty.isNull() && "UsualUnaryConversions - missing type");
66
Chris Lattnere7a2e912008-07-25 21:10:04 +000067 if (Ty->isPromotableIntegerType()) // C99 6.3.1.1p2
68 ImpCastExprToType(Expr, Context.IntTy);
69 else
70 DefaultFunctionArrayConversion(Expr);
71
72 return Expr;
73}
74
Chris Lattner05faf172008-07-25 22:25:12 +000075/// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that
76/// do not have a prototype. Arguments that have type float are promoted to
77/// double. All other argument types are converted by UsualUnaryConversions().
78void Sema::DefaultArgumentPromotion(Expr *&Expr) {
79 QualType Ty = Expr->getType();
80 assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type");
81
82 // If this is a 'float' (CVR qualified or typedef) promote to double.
83 if (const BuiltinType *BT = Ty->getAsBuiltinType())
84 if (BT->getKind() == BuiltinType::Float)
85 return ImpCastExprToType(Expr, Context.DoubleTy);
86
87 UsualUnaryConversions(Expr);
88}
89
Chris Lattnere7a2e912008-07-25 21:10:04 +000090/// UsualArithmeticConversions - Performs various conversions that are common to
91/// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this
92/// routine returns the first non-arithmetic type found. The client is
93/// responsible for emitting appropriate error diagnostics.
94/// FIXME: verify the conversion rules for "complex int" are consistent with
95/// GCC.
96QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr,
97 bool isCompAssign) {
98 if (!isCompAssign) {
99 UsualUnaryConversions(lhsExpr);
100 UsualUnaryConversions(rhsExpr);
101 }
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000102
Chris Lattnere7a2e912008-07-25 21:10:04 +0000103 // For conversion purposes, we ignore any qualifiers.
104 // For example, "const float" and "float" are equivalent.
Chris Lattnerb77792e2008-07-26 22:17:49 +0000105 QualType lhs =
106 Context.getCanonicalType(lhsExpr->getType()).getUnqualifiedType();
107 QualType rhs =
108 Context.getCanonicalType(rhsExpr->getType()).getUnqualifiedType();
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000109
110 // If both types are identical, no conversion is needed.
111 if (lhs == rhs)
112 return lhs;
113
114 // If either side is a non-arithmetic type (e.g. a pointer), we are done.
115 // The caller can deal with this (e.g. pointer + int).
116 if (!lhs->isArithmeticType() || !rhs->isArithmeticType())
117 return lhs;
118
119 QualType destType = UsualArithmeticConversionsType(lhs, rhs);
120 if (!isCompAssign) {
121 ImpCastExprToType(lhsExpr, destType);
122 ImpCastExprToType(rhsExpr, destType);
123 }
124 return destType;
125}
126
127QualType Sema::UsualArithmeticConversionsType(QualType lhs, QualType rhs) {
128 // Perform the usual unary conversions. We do this early so that
129 // integral promotions to "int" can allow us to exit early, in the
130 // lhs == rhs check. Also, for conversion purposes, we ignore any
131 // qualifiers. For example, "const float" and "float" are
132 // equivalent.
Douglas Gregorbf3af052008-11-13 20:12:29 +0000133 if (lhs->isPromotableIntegerType()) lhs = Context.IntTy;
134 else lhs = lhs.getUnqualifiedType();
135 if (rhs->isPromotableIntegerType()) rhs = Context.IntTy;
136 else rhs = rhs.getUnqualifiedType();
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000137
Chris Lattnere7a2e912008-07-25 21:10:04 +0000138 // If both types are identical, no conversion is needed.
139 if (lhs == rhs)
140 return lhs;
141
142 // If either side is a non-arithmetic type (e.g. a pointer), we are done.
143 // The caller can deal with this (e.g. pointer + int).
144 if (!lhs->isArithmeticType() || !rhs->isArithmeticType())
145 return lhs;
146
147 // At this point, we have two different arithmetic types.
148
149 // Handle complex types first (C99 6.3.1.8p1).
150 if (lhs->isComplexType() || rhs->isComplexType()) {
151 // if we have an integer operand, the result is the complex type.
152 if (rhs->isIntegerType() || rhs->isComplexIntegerType()) {
153 // convert the rhs to the lhs complex type.
Chris Lattnere7a2e912008-07-25 21:10:04 +0000154 return lhs;
155 }
156 if (lhs->isIntegerType() || lhs->isComplexIntegerType()) {
157 // convert the lhs to the rhs complex type.
Chris Lattnere7a2e912008-07-25 21:10:04 +0000158 return rhs;
159 }
160 // This handles complex/complex, complex/float, or float/complex.
161 // When both operands are complex, the shorter operand is converted to the
162 // type of the longer, and that is the type of the result. This corresponds
163 // to what is done when combining two real floating-point operands.
164 // The fun begins when size promotion occur across type domains.
165 // From H&S 6.3.4: When one operand is complex and the other is a real
166 // floating-point type, the less precise type is converted, within it's
167 // real or complex domain, to the precision of the other type. For example,
168 // when combining a "long double" with a "double _Complex", the
169 // "double _Complex" is promoted to "long double _Complex".
170 int result = Context.getFloatingTypeOrder(lhs, rhs);
171
172 if (result > 0) { // The left side is bigger, convert rhs.
173 rhs = Context.getFloatingTypeOfSizeWithinDomain(lhs, rhs);
Chris Lattnere7a2e912008-07-25 21:10:04 +0000174 } else if (result < 0) { // The right side is bigger, convert lhs.
175 lhs = Context.getFloatingTypeOfSizeWithinDomain(rhs, lhs);
Chris Lattnere7a2e912008-07-25 21:10:04 +0000176 }
177 // At this point, lhs and rhs have the same rank/size. Now, make sure the
178 // domains match. This is a requirement for our implementation, C99
179 // does not require this promotion.
180 if (lhs != rhs) { // Domains don't match, we have complex/float mix.
181 if (lhs->isRealFloatingType()) { // handle "double, _Complex double".
Chris Lattnere7a2e912008-07-25 21:10:04 +0000182 return rhs;
183 } else { // handle "_Complex double, double".
Chris Lattnere7a2e912008-07-25 21:10:04 +0000184 return lhs;
185 }
186 }
187 return lhs; // The domain/size match exactly.
188 }
189 // Now handle "real" floating types (i.e. float, double, long double).
190 if (lhs->isRealFloatingType() || rhs->isRealFloatingType()) {
191 // if we have an integer operand, the result is the real floating type.
192 if (rhs->isIntegerType() || rhs->isComplexIntegerType()) {
193 // convert rhs to the lhs floating point type.
Chris Lattnere7a2e912008-07-25 21:10:04 +0000194 return lhs;
195 }
196 if (lhs->isIntegerType() || lhs->isComplexIntegerType()) {
197 // convert lhs to the rhs floating point type.
Chris Lattnere7a2e912008-07-25 21:10:04 +0000198 return rhs;
199 }
200 // We have two real floating types, float/complex combos were handled above.
201 // Convert the smaller operand to the bigger result.
202 int result = Context.getFloatingTypeOrder(lhs, rhs);
203
204 if (result > 0) { // convert the rhs
Chris Lattnere7a2e912008-07-25 21:10:04 +0000205 return lhs;
206 }
207 if (result < 0) { // convert the lhs
Chris Lattnere7a2e912008-07-25 21:10:04 +0000208 return rhs;
209 }
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000210 assert(0 && "Sema::UsualArithmeticConversionsType(): illegal float comparison");
Chris Lattnere7a2e912008-07-25 21:10:04 +0000211 }
212 if (lhs->isComplexIntegerType() || rhs->isComplexIntegerType()) {
213 // Handle GCC complex int extension.
214 const ComplexType *lhsComplexInt = lhs->getAsComplexIntegerType();
215 const ComplexType *rhsComplexInt = rhs->getAsComplexIntegerType();
216
217 if (lhsComplexInt && rhsComplexInt) {
218 if (Context.getIntegerTypeOrder(lhsComplexInt->getElementType(),
219 rhsComplexInt->getElementType()) >= 0) {
220 // convert the rhs
Chris Lattnere7a2e912008-07-25 21:10:04 +0000221 return lhs;
222 }
Chris Lattnere7a2e912008-07-25 21:10:04 +0000223 return rhs;
224 } else if (lhsComplexInt && rhs->isIntegerType()) {
225 // convert the rhs to the lhs complex type.
Chris Lattnere7a2e912008-07-25 21:10:04 +0000226 return lhs;
227 } else if (rhsComplexInt && lhs->isIntegerType()) {
228 // convert the lhs to the rhs complex type.
Chris Lattnere7a2e912008-07-25 21:10:04 +0000229 return rhs;
230 }
231 }
232 // Finally, we have two differing integer types.
233 // The rules for this case are in C99 6.3.1.8
234 int compare = Context.getIntegerTypeOrder(lhs, rhs);
235 bool lhsSigned = lhs->isSignedIntegerType(),
236 rhsSigned = rhs->isSignedIntegerType();
237 QualType destType;
238 if (lhsSigned == rhsSigned) {
239 // Same signedness; use the higher-ranked type
240 destType = compare >= 0 ? lhs : rhs;
241 } else if (compare != (lhsSigned ? 1 : -1)) {
242 // The unsigned type has greater than or equal rank to the
243 // signed type, so use the unsigned type
244 destType = lhsSigned ? rhs : lhs;
245 } else if (Context.getIntWidth(lhs) != Context.getIntWidth(rhs)) {
246 // The two types are different widths; if we are here, that
247 // means the signed type is larger than the unsigned type, so
248 // use the signed type.
249 destType = lhsSigned ? lhs : rhs;
250 } else {
251 // The signed type is higher-ranked than the unsigned type,
252 // but isn't actually any bigger (like unsigned int and long
253 // on most 32-bit systems). Use the unsigned type corresponding
254 // to the signed type.
255 destType = Context.getCorrespondingUnsignedType(lhsSigned ? lhs : rhs);
256 }
Chris Lattnere7a2e912008-07-25 21:10:04 +0000257 return destType;
258}
259
260//===----------------------------------------------------------------------===//
261// Semantic Analysis for various Expression Types
262//===----------------------------------------------------------------------===//
263
264
Steve Narofff69936d2007-09-16 03:34:24 +0000265/// ActOnStringLiteral - The specified tokens were lexed as pasted string
Reid Spencer5f016e22007-07-11 17:01:13 +0000266/// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string
267/// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from
268/// multiple tokens. However, the common case is that StringToks points to one
269/// string.
270///
271Action::ExprResult
Steve Narofff69936d2007-09-16 03:34:24 +0000272Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000273 assert(NumStringToks && "Must have at least one string!");
274
275 StringLiteralParser Literal(StringToks, NumStringToks, PP, Context.Target);
276 if (Literal.hadError)
277 return ExprResult(true);
278
279 llvm::SmallVector<SourceLocation, 4> StringTokLocs;
280 for (unsigned i = 0; i != NumStringToks; ++i)
281 StringTokLocs.push_back(StringToks[i].getLocation());
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000282
283 // Verify that pascal strings aren't too large.
Anders Carlssonee98ac52007-10-15 02:50:23 +0000284 if (Literal.Pascal && Literal.GetStringLength() > 256)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000285 return Diag(StringToks[0].getLocation(), diag::err_pascal_string_too_long)
286 << SourceRange(StringToks[0].getLocation(),
287 StringToks[NumStringToks-1].getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000288
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000289 QualType StrTy = Context.CharTy;
Argyrios Kyrtzidis55f4b022008-08-09 17:20:01 +0000290 if (Literal.AnyWide) StrTy = Context.getWCharType();
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000291 if (Literal.Pascal) StrTy = Context.UnsignedCharTy;
Douglas Gregor77a52232008-09-12 00:47:35 +0000292
293 // A C++ string literal has a const-qualified element type (C++ 2.13.4p1).
294 if (getLangOptions().CPlusPlus)
295 StrTy.addConst();
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000296
297 // Get an array type for the string, according to C99 6.4.5. This includes
298 // the nul terminator character as well as the string length for pascal
299 // strings.
300 StrTy = Context.getConstantArrayType(StrTy,
301 llvm::APInt(32, Literal.GetStringLength()+1),
302 ArrayType::Normal, 0);
303
Reid Spencer5f016e22007-07-11 17:01:13 +0000304 // Pass &StringTokLocs[0], StringTokLocs.size() to factory!
305 return new StringLiteral(Literal.GetString(), Literal.GetStringLength(),
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000306 Literal.AnyWide, StrTy,
Anders Carlssonee98ac52007-10-15 02:50:23 +0000307 StringToks[0].getLocation(),
Reid Spencer5f016e22007-07-11 17:01:13 +0000308 StringToks[NumStringToks-1].getLocation());
309}
310
Chris Lattner639e2d32008-10-20 05:16:36 +0000311/// ShouldSnapshotBlockValueReference - Return true if a reference inside of
312/// CurBlock to VD should cause it to be snapshotted (as we do for auto
313/// variables defined outside the block) or false if this is not needed (e.g.
314/// for values inside the block or for globals).
315///
316/// FIXME: This will create BlockDeclRefExprs for global variables,
317/// function references, etc which is suboptimal :) and breaks
318/// things like "integer constant expression" tests.
319static bool ShouldSnapshotBlockValueReference(BlockSemaInfo *CurBlock,
320 ValueDecl *VD) {
321 // If the value is defined inside the block, we couldn't snapshot it even if
322 // we wanted to.
323 if (CurBlock->TheDecl == VD->getDeclContext())
324 return false;
325
326 // If this is an enum constant or function, it is constant, don't snapshot.
327 if (isa<EnumConstantDecl>(VD) || isa<FunctionDecl>(VD))
328 return false;
329
330 // If this is a reference to an extern, static, or global variable, no need to
331 // snapshot it.
332 // FIXME: What about 'const' variables in C++?
333 if (const VarDecl *Var = dyn_cast<VarDecl>(VD))
334 return Var->hasLocalStorage();
335
336 return true;
337}
338
339
340
Steve Naroff08d92e42007-09-15 18:49:24 +0000341/// ActOnIdentifierExpr - The parser read an identifier in expression context,
Reid Spencer5f016e22007-07-11 17:01:13 +0000342/// validate it per-C99 6.5.1. HasTrailingLParen indicates whether this
Steve Naroff0d755ad2008-03-19 23:46:26 +0000343/// identifier is used in a function call context.
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000344/// LookupCtx is only used for a C++ qualified-id (foo::bar) to indicate the
345/// class or namespace that the identifier must be a member of.
Steve Naroff08d92e42007-09-15 18:49:24 +0000346Sema::ExprResult Sema::ActOnIdentifierExpr(Scope *S, SourceLocation Loc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000347 IdentifierInfo &II,
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000348 bool HasTrailingLParen,
349 const CXXScopeSpec *SS) {
Douglas Gregor10c42622008-11-18 15:03:34 +0000350 return ActOnDeclarationNameExpr(S, Loc, &II, HasTrailingLParen, SS);
351}
352
353/// ActOnDeclarationNameExpr - The parser has read some kind of name
354/// (e.g., a C++ id-expression (C++ [expr.prim]p1)). This routine
355/// performs lookup on that name and returns an expression that refers
356/// to that name. This routine isn't directly called from the parser,
357/// because the parser doesn't know about DeclarationName. Rather,
358/// this routine is called by ActOnIdentifierExpr,
359/// ActOnOperatorFunctionIdExpr, and ActOnConversionFunctionExpr,
360/// which form the DeclarationName from the corresponding syntactic
361/// forms.
362///
363/// HasTrailingLParen indicates whether this identifier is used in a
364/// function call context. LookupCtx is only used for a C++
365/// qualified-id (foo::bar) to indicate the class or namespace that
366/// the identifier must be a member of.
Douglas Gregor5c37de72008-12-06 00:22:45 +0000367///
368/// If ForceResolution is true, then we will attempt to resolve the
369/// name even if it looks like a dependent name. This option is off by
370/// default.
Douglas Gregor10c42622008-11-18 15:03:34 +0000371Sema::ExprResult Sema::ActOnDeclarationNameExpr(Scope *S, SourceLocation Loc,
372 DeclarationName Name,
373 bool HasTrailingLParen,
Douglas Gregor5c37de72008-12-06 00:22:45 +0000374 const CXXScopeSpec *SS,
375 bool ForceResolution) {
376 if (S->getTemplateParamParent() && Name.getAsIdentifierInfo() &&
377 HasTrailingLParen && !SS && !ForceResolution) {
378 // We've seen something of the form
379 // identifier(
380 // and we are in a template, so it is likely that 's' is a
381 // dependent name. However, we won't know until we've parsed all
382 // of the call arguments. So, build a CXXDependentNameExpr node
383 // to represent this name. Then, if it turns out that none of the
384 // arguments are type-dependent, we'll force the resolution of the
385 // dependent name at that point.
386 return new CXXDependentNameExpr(Name.getAsIdentifierInfo(),
387 Context.DependentTy, Loc);
388 }
389
Chris Lattner8a934232008-03-31 00:36:02 +0000390 // Could be enum-constant, value decl, instance variable, etc.
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000391 Decl *D;
392 if (SS && !SS->isEmpty()) {
393 DeclContext *DC = static_cast<DeclContext*>(SS->getScopeRep());
394 if (DC == 0)
395 return true;
Douglas Gregor10c42622008-11-18 15:03:34 +0000396 D = LookupDecl(Name, Decl::IDNS_Ordinary, S, DC);
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000397 } else
Douglas Gregor10c42622008-11-18 15:03:34 +0000398 D = LookupDecl(Name, Decl::IDNS_Ordinary, S);
Douglas Gregor5c37de72008-12-06 00:22:45 +0000399
Chris Lattner8a934232008-03-31 00:36:02 +0000400 // If this reference is in an Objective-C method, then ivar lookup happens as
401 // well.
Douglas Gregor10c42622008-11-18 15:03:34 +0000402 IdentifierInfo *II = Name.getAsIdentifierInfo();
403 if (II && getCurMethodDecl()) {
Steve Naroffe8043c32008-04-01 23:04:06 +0000404 ScopedDecl *SD = dyn_cast_or_null<ScopedDecl>(D);
Chris Lattner8a934232008-03-31 00:36:02 +0000405 // There are two cases to handle here. 1) scoped lookup could have failed,
406 // in which case we should look for an ivar. 2) scoped lookup could have
407 // found a decl, but that decl is outside the current method (i.e. a global
408 // variable). In these two cases, we do a lookup for an ivar with this
409 // name, if the lookup suceeds, we replace it our current decl.
Steve Naroffe8043c32008-04-01 23:04:06 +0000410 if (SD == 0 || SD->isDefinedOutsideFunctionOrMethod()) {
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000411 ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface();
Douglas Gregor10c42622008-11-18 15:03:34 +0000412 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II)) {
Chris Lattner8a934232008-03-31 00:36:02 +0000413 // FIXME: This should use a new expr for a direct reference, don't turn
414 // this into Self->ivar, just return a BareIVarExpr or something.
415 IdentifierInfo &II = Context.Idents.get("self");
416 ExprResult SelfExpr = ActOnIdentifierExpr(S, Loc, II, false);
417 return new ObjCIvarRefExpr(IV, IV->getType(), Loc,
418 static_cast<Expr*>(SelfExpr.Val), true, true);
419 }
420 }
Steve Naroff76de9d72008-08-10 19:10:41 +0000421 // Needed to implement property "super.method" notation.
Chris Lattner84692652008-11-20 05:35:30 +0000422 if (SD == 0 && II->isStr("super")) {
Steve Naroffe3e9add2008-06-02 23:03:37 +0000423 QualType T = Context.getPointerType(Context.getObjCInterfaceType(
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000424 getCurMethodDecl()->getClassInterface()));
Douglas Gregorcd9b46e2008-11-04 14:56:14 +0000425 return new ObjCSuperExpr(Loc, T);
Steve Naroffe3e9add2008-06-02 23:03:37 +0000426 }
Chris Lattner8a934232008-03-31 00:36:02 +0000427 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000428 if (D == 0) {
429 // Otherwise, this could be an implicitly declared function reference (legal
430 // in C90, extension in C99).
Douglas Gregor10c42622008-11-18 15:03:34 +0000431 if (HasTrailingLParen && II &&
Chris Lattner8a934232008-03-31 00:36:02 +0000432 !getLangOptions().CPlusPlus) // Not in C++.
Douglas Gregor10c42622008-11-18 15:03:34 +0000433 D = ImplicitlyDefineFunction(Loc, *II, S);
Reid Spencer5f016e22007-07-11 17:01:13 +0000434 else {
435 // If this name wasn't predeclared and if this is not a function call,
436 // diagnose the problem.
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000437 if (SS && !SS->isEmpty())
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000438 return Diag(Loc, diag::err_typecheck_no_member)
Chris Lattner08631c52008-11-23 21:45:46 +0000439 << Name << SS->getRange();
Douglas Gregor10c42622008-11-18 15:03:34 +0000440 else if (Name.getNameKind() == DeclarationName::CXXOperatorName ||
441 Name.getNameKind() == DeclarationName::CXXConversionFunctionName)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000442 return Diag(Loc, diag::err_undeclared_use) << Name.getAsString();
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000443 else
Chris Lattner08631c52008-11-23 21:45:46 +0000444 return Diag(Loc, diag::err_undeclared_var_use) << Name;
Reid Spencer5f016e22007-07-11 17:01:13 +0000445 }
446 }
Chris Lattner8a934232008-03-31 00:36:02 +0000447
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000448 if (CXXFieldDecl *FD = dyn_cast<CXXFieldDecl>(D)) {
449 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
450 if (MD->isStatic())
451 // "invalid use of member 'x' in static member function"
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000452 return Diag(Loc, diag::err_invalid_member_use_in_static_method)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000453 << FD->getDeclName();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000454 if (cast<CXXRecordDecl>(MD->getParent()) != FD->getParent())
455 // "invalid use of nonstatic data member 'x'"
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000456 return Diag(Loc, diag::err_invalid_non_static_member_use)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000457 << FD->getDeclName();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000458
459 if (FD->isInvalidDecl())
460 return true;
461
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +0000462 // FIXME: Handle 'mutable'.
463 return new DeclRefExpr(FD,
464 FD->getType().getWithAdditionalQualifiers(MD->getTypeQualifiers()),Loc);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000465 }
466
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000467 return Diag(Loc, diag::err_invalid_non_static_member_use)
468 << FD->getDeclName();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000469 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000470 if (isa<TypedefDecl>(D))
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000471 return Diag(Loc, diag::err_unexpected_typedef) << Name;
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000472 if (isa<ObjCInterfaceDecl>(D))
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000473 return Diag(Loc, diag::err_unexpected_interface) << Name;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +0000474 if (isa<NamespaceDecl>(D))
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000475 return Diag(Loc, diag::err_unexpected_namespace) << Name;
Reid Spencer5f016e22007-07-11 17:01:13 +0000476
Steve Naroffdd972f22008-09-05 22:11:13 +0000477 // Make the DeclRefExpr or BlockDeclRefExpr for the decl.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000478 if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D))
479 return new DeclRefExpr(Ovl, Context.OverloadTy, Loc);
480
Steve Naroffdd972f22008-09-05 22:11:13 +0000481 ValueDecl *VD = cast<ValueDecl>(D);
482
483 // check if referencing an identifier with __attribute__((deprecated)).
484 if (VD->getAttr<DeprecatedAttr>())
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000485 Diag(Loc, diag::warn_deprecated) << VD->getDeclName();
Steve Naroffdd972f22008-09-05 22:11:13 +0000486
487 // Only create DeclRefExpr's for valid Decl's.
488 if (VD->isInvalidDecl())
489 return true;
Chris Lattner639e2d32008-10-20 05:16:36 +0000490
491 // If the identifier reference is inside a block, and it refers to a value
492 // that is outside the block, create a BlockDeclRefExpr instead of a
493 // DeclRefExpr. This ensures the value is treated as a copy-in snapshot when
494 // the block is formed.
Steve Naroffdd972f22008-09-05 22:11:13 +0000495 //
Chris Lattner639e2d32008-10-20 05:16:36 +0000496 // We do not do this for things like enum constants, global variables, etc,
497 // as they do not get snapshotted.
498 //
499 if (CurBlock && ShouldSnapshotBlockValueReference(CurBlock, VD)) {
Steve Naroff090276f2008-10-10 01:28:17 +0000500 // The BlocksAttr indicates the variable is bound by-reference.
501 if (VD->getAttr<BlocksAttr>())
Douglas Gregor9d293df2008-10-28 00:22:11 +0000502 return new BlockDeclRefExpr(VD, VD->getType().getNonReferenceType(),
503 Loc, true);
Steve Naroff090276f2008-10-10 01:28:17 +0000504
505 // Variable will be bound by-copy, make it const within the closure.
506 VD->getType().addConst();
Douglas Gregor9d293df2008-10-28 00:22:11 +0000507 return new BlockDeclRefExpr(VD, VD->getType().getNonReferenceType(),
508 Loc, false);
Steve Naroff090276f2008-10-10 01:28:17 +0000509 }
510 // If this reference is not in a block or if the referenced variable is
511 // within the block, create a normal DeclRefExpr.
Douglas Gregor898574e2008-12-05 23:32:09 +0000512
Douglas Gregor898574e2008-12-05 23:32:09 +0000513 bool TypeDependent = false;
Douglas Gregor83f96f62008-12-10 20:57:37 +0000514 bool ValueDependent = false;
515 if (getLangOptions().CPlusPlus) {
516 // C++ [temp.dep.expr]p3:
517 // An id-expression is type-dependent if it contains:
518 // - an identifier that was declared with a dependent type,
519 if (VD->getType()->isDependentType())
520 TypeDependent = true;
521 // - FIXME: a template-id that is dependent,
522 // - a conversion-function-id that specifies a dependent type,
523 else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName &&
524 Name.getCXXNameType()->isDependentType())
525 TypeDependent = true;
526 // - a nested-name-specifier that contains a class-name that
527 // names a dependent type.
528 else if (SS && !SS->isEmpty()) {
529 for (DeclContext *DC = static_cast<DeclContext*>(SS->getScopeRep());
530 DC; DC = DC->getParent()) {
531 // FIXME: could stop early at namespace scope.
532 if (DC->isCXXRecord()) {
533 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
534 if (Context.getTypeDeclType(Record)->isDependentType()) {
535 TypeDependent = true;
536 break;
537 }
Douglas Gregor898574e2008-12-05 23:32:09 +0000538 }
539 }
540 }
Douglas Gregor898574e2008-12-05 23:32:09 +0000541
Douglas Gregor83f96f62008-12-10 20:57:37 +0000542 // C++ [temp.dep.constexpr]p2:
543 //
544 // An identifier is value-dependent if it is:
545 // - a name declared with a dependent type,
546 if (TypeDependent)
547 ValueDependent = true;
548 // - the name of a non-type template parameter,
549 else if (isa<NonTypeTemplateParmDecl>(VD))
550 ValueDependent = true;
551 // - a constant with integral or enumeration type and is
552 // initialized with an expression that is value-dependent
553 // (FIXME!).
554 }
Douglas Gregor898574e2008-12-05 23:32:09 +0000555
556 return new DeclRefExpr(VD, VD->getType().getNonReferenceType(), Loc,
557 TypeDependent, ValueDependent);
Reid Spencer5f016e22007-07-11 17:01:13 +0000558}
559
Chris Lattnerd9f69102008-08-10 01:53:14 +0000560Sema::ExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc,
Anders Carlsson22742662007-07-21 05:21:51 +0000561 tok::TokenKind Kind) {
Chris Lattnerd9f69102008-08-10 01:53:14 +0000562 PredefinedExpr::IdentType IT;
Anders Carlsson22742662007-07-21 05:21:51 +0000563
Reid Spencer5f016e22007-07-11 17:01:13 +0000564 switch (Kind) {
Chris Lattner1423ea42008-01-12 18:39:25 +0000565 default: assert(0 && "Unknown simple primary expr!");
Chris Lattnerd9f69102008-08-10 01:53:14 +0000566 case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2]
567 case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break;
568 case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000569 }
Chris Lattner1423ea42008-01-12 18:39:25 +0000570
571 // Verify that this is in a function context.
Chris Lattner371f2582008-12-04 23:50:19 +0000572 if (getCurFunctionOrMethodDecl() == 0)
Chris Lattner1423ea42008-01-12 18:39:25 +0000573 return Diag(Loc, diag::err_predef_outside_function);
Anders Carlsson22742662007-07-21 05:21:51 +0000574
Chris Lattnerfa28b302008-01-12 08:14:25 +0000575 // Pre-defined identifiers are of type char[x], where x is the length of the
576 // string.
Chris Lattner8f978d52008-01-12 19:32:28 +0000577 unsigned Length;
Chris Lattner371f2582008-12-04 23:50:19 +0000578 if (FunctionDecl *FD = getCurFunctionDecl())
579 Length = FD->getIdentifier()->getLength();
Chris Lattner8f978d52008-01-12 19:32:28 +0000580 else
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000581 Length = getCurMethodDecl()->getSynthesizedMethodSize();
Chris Lattner1423ea42008-01-12 18:39:25 +0000582
Chris Lattner8f978d52008-01-12 19:32:28 +0000583 llvm::APInt LengthI(32, Length + 1);
Chris Lattner1423ea42008-01-12 18:39:25 +0000584 QualType ResTy = Context.CharTy.getQualifiedType(QualType::Const);
Chris Lattner8f978d52008-01-12 19:32:28 +0000585 ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0);
Chris Lattnerd9f69102008-08-10 01:53:14 +0000586 return new PredefinedExpr(Loc, ResTy, IT);
Reid Spencer5f016e22007-07-11 17:01:13 +0000587}
588
Steve Narofff69936d2007-09-16 03:34:24 +0000589Sema::ExprResult Sema::ActOnCharacterConstant(const Token &Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000590 llvm::SmallString<16> CharBuffer;
591 CharBuffer.resize(Tok.getLength());
592 const char *ThisTokBegin = &CharBuffer[0];
593 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
594
595 CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
596 Tok.getLocation(), PP);
597 if (Literal.hadError())
598 return ExprResult(true);
Chris Lattnerfc62bfd2008-03-01 08:32:21 +0000599
600 QualType type = getLangOptions().CPlusPlus ? Context.CharTy : Context.IntTy;
601
Chris Lattnerc250aae2008-06-07 22:35:38 +0000602 return new CharacterLiteral(Literal.getValue(), Literal.isWide(), type,
603 Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000604}
605
Steve Narofff69936d2007-09-16 03:34:24 +0000606Action::ExprResult Sema::ActOnNumericConstant(const Token &Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000607 // fast path for a single digit (which is quite common). A single digit
608 // cannot have a trigraph, escaped newline, radix prefix, or type suffix.
609 if (Tok.getLength() == 1) {
Chris Lattnerf0467b32008-04-02 04:24:33 +0000610 const char *Ty = PP.getSourceManager().getCharacterData(Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000611
Chris Lattner98be4942008-03-05 18:54:05 +0000612 unsigned IntSize =static_cast<unsigned>(Context.getTypeSize(Context.IntTy));
Chris Lattnerf0467b32008-04-02 04:24:33 +0000613 return ExprResult(new IntegerLiteral(llvm::APInt(IntSize, *Ty-'0'),
Reid Spencer5f016e22007-07-11 17:01:13 +0000614 Context.IntTy,
615 Tok.getLocation()));
616 }
617 llvm::SmallString<512> IntegerBuffer;
Chris Lattner2a299042008-09-30 20:53:45 +0000618 // Add padding so that NumericLiteralParser can overread by one character.
619 IntegerBuffer.resize(Tok.getLength()+1);
Reid Spencer5f016e22007-07-11 17:01:13 +0000620 const char *ThisTokBegin = &IntegerBuffer[0];
621
622 // Get the spelling of the token, which eliminates trigraphs, etc.
623 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
Chris Lattner28997ec2008-09-30 20:51:14 +0000624
Reid Spencer5f016e22007-07-11 17:01:13 +0000625 NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
626 Tok.getLocation(), PP);
627 if (Literal.hadError)
628 return ExprResult(true);
629
Chris Lattner5d661452007-08-26 03:42:43 +0000630 Expr *Res;
631
632 if (Literal.isFloatingLiteral()) {
Chris Lattner525a0502007-09-22 18:29:59 +0000633 QualType Ty;
Chris Lattnerb7cfe882008-06-30 18:32:54 +0000634 if (Literal.isFloat)
Chris Lattner525a0502007-09-22 18:29:59 +0000635 Ty = Context.FloatTy;
Chris Lattnerb7cfe882008-06-30 18:32:54 +0000636 else if (!Literal.isLong)
Chris Lattner525a0502007-09-22 18:29:59 +0000637 Ty = Context.DoubleTy;
Chris Lattnerb7cfe882008-06-30 18:32:54 +0000638 else
Chris Lattner9e9b6dc2008-03-08 08:52:55 +0000639 Ty = Context.LongDoubleTy;
Chris Lattnerb7cfe882008-06-30 18:32:54 +0000640
641 const llvm::fltSemantics &Format = Context.getFloatTypeSemantics(Ty);
642
Ted Kremenek720c4ec2007-11-29 00:56:49 +0000643 // isExact will be set by GetFloatValue().
644 bool isExact = false;
Chris Lattnerb7cfe882008-06-30 18:32:54 +0000645 Res = new FloatingLiteral(Literal.GetFloatValue(Format, &isExact), &isExact,
Ted Kremenek720c4ec2007-11-29 00:56:49 +0000646 Ty, Tok.getLocation());
647
Chris Lattner5d661452007-08-26 03:42:43 +0000648 } else if (!Literal.isIntegerLiteral()) {
649 return ExprResult(true);
650 } else {
Chris Lattnerf0467b32008-04-02 04:24:33 +0000651 QualType Ty;
Reid Spencer5f016e22007-07-11 17:01:13 +0000652
Neil Boothb9449512007-08-29 22:00:19 +0000653 // long long is a C99 feature.
654 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
Neil Booth79859c32007-08-29 22:13:52 +0000655 Literal.isLongLong)
Neil Boothb9449512007-08-29 22:00:19 +0000656 Diag(Tok.getLocation(), diag::ext_longlong);
657
Reid Spencer5f016e22007-07-11 17:01:13 +0000658 // Get the value in the widest-possible width.
Chris Lattner98be4942008-03-05 18:54:05 +0000659 llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(), 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000660
661 if (Literal.GetIntegerValue(ResultVal)) {
662 // If this value didn't fit into uintmax_t, warn and force to ull.
663 Diag(Tok.getLocation(), diag::warn_integer_too_large);
Chris Lattnerf0467b32008-04-02 04:24:33 +0000664 Ty = Context.UnsignedLongLongTy;
665 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() &&
Chris Lattner98be4942008-03-05 18:54:05 +0000666 "long long is not intmax_t?");
Reid Spencer5f016e22007-07-11 17:01:13 +0000667 } else {
668 // If this value fits into a ULL, try to figure out what else it fits into
669 // according to the rules of C99 6.4.4.1p5.
670
671 // Octal, Hexadecimal, and integers with a U suffix are allowed to
672 // be an unsigned int.
673 bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10;
674
675 // Check from smallest to largest, picking the smallest type we can.
Chris Lattner8cbcb0e2008-05-09 05:59:00 +0000676 unsigned Width = 0;
Chris Lattner97c51562007-08-23 21:58:08 +0000677 if (!Literal.isLong && !Literal.isLongLong) {
678 // Are int/unsigned possibilities?
Chris Lattner8cbcb0e2008-05-09 05:59:00 +0000679 unsigned IntSize = Context.Target.getIntWidth();
680
Reid Spencer5f016e22007-07-11 17:01:13 +0000681 // Does it fit in a unsigned int?
682 if (ResultVal.isIntN(IntSize)) {
683 // Does it fit in a signed int?
684 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0)
Chris Lattnerf0467b32008-04-02 04:24:33 +0000685 Ty = Context.IntTy;
Reid Spencer5f016e22007-07-11 17:01:13 +0000686 else if (AllowUnsigned)
Chris Lattnerf0467b32008-04-02 04:24:33 +0000687 Ty = Context.UnsignedIntTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +0000688 Width = IntSize;
Reid Spencer5f016e22007-07-11 17:01:13 +0000689 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000690 }
691
692 // Are long/unsigned long possibilities?
Chris Lattnerf0467b32008-04-02 04:24:33 +0000693 if (Ty.isNull() && !Literal.isLongLong) {
Chris Lattner8cbcb0e2008-05-09 05:59:00 +0000694 unsigned LongSize = Context.Target.getLongWidth();
Reid Spencer5f016e22007-07-11 17:01:13 +0000695
696 // Does it fit in a unsigned long?
697 if (ResultVal.isIntN(LongSize)) {
698 // Does it fit in a signed long?
699 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0)
Chris Lattnerf0467b32008-04-02 04:24:33 +0000700 Ty = Context.LongTy;
Reid Spencer5f016e22007-07-11 17:01:13 +0000701 else if (AllowUnsigned)
Chris Lattnerf0467b32008-04-02 04:24:33 +0000702 Ty = Context.UnsignedLongTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +0000703 Width = LongSize;
Reid Spencer5f016e22007-07-11 17:01:13 +0000704 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000705 }
706
707 // Finally, check long long if needed.
Chris Lattnerf0467b32008-04-02 04:24:33 +0000708 if (Ty.isNull()) {
Chris Lattner8cbcb0e2008-05-09 05:59:00 +0000709 unsigned LongLongSize = Context.Target.getLongLongWidth();
Reid Spencer5f016e22007-07-11 17:01:13 +0000710
711 // Does it fit in a unsigned long long?
712 if (ResultVal.isIntN(LongLongSize)) {
713 // Does it fit in a signed long long?
714 if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0)
Chris Lattnerf0467b32008-04-02 04:24:33 +0000715 Ty = Context.LongLongTy;
Reid Spencer5f016e22007-07-11 17:01:13 +0000716 else if (AllowUnsigned)
Chris Lattnerf0467b32008-04-02 04:24:33 +0000717 Ty = Context.UnsignedLongLongTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +0000718 Width = LongLongSize;
Reid Spencer5f016e22007-07-11 17:01:13 +0000719 }
720 }
721
722 // If we still couldn't decide a type, we probably have something that
723 // does not fit in a signed long long, but has no U suffix.
Chris Lattnerf0467b32008-04-02 04:24:33 +0000724 if (Ty.isNull()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000725 Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed);
Chris Lattnerf0467b32008-04-02 04:24:33 +0000726 Ty = Context.UnsignedLongLongTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +0000727 Width = Context.Target.getLongLongWidth();
Reid Spencer5f016e22007-07-11 17:01:13 +0000728 }
Chris Lattner8cbcb0e2008-05-09 05:59:00 +0000729
730 if (ResultVal.getBitWidth() != Width)
731 ResultVal.trunc(Width);
Reid Spencer5f016e22007-07-11 17:01:13 +0000732 }
733
Chris Lattnerf0467b32008-04-02 04:24:33 +0000734 Res = new IntegerLiteral(ResultVal, Ty, Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000735 }
Chris Lattner5d661452007-08-26 03:42:43 +0000736
737 // If this is an imaginary literal, create the ImaginaryLiteral wrapper.
738 if (Literal.isImaginary)
739 Res = new ImaginaryLiteral(Res, Context.getComplexType(Res->getType()));
740
741 return Res;
Reid Spencer5f016e22007-07-11 17:01:13 +0000742}
743
Steve Narofff69936d2007-09-16 03:34:24 +0000744Action::ExprResult Sema::ActOnParenExpr(SourceLocation L, SourceLocation R,
Reid Spencer5f016e22007-07-11 17:01:13 +0000745 ExprTy *Val) {
Chris Lattnerf0467b32008-04-02 04:24:33 +0000746 Expr *E = (Expr *)Val;
747 assert((E != 0) && "ActOnParenExpr() missing expr");
748 return new ParenExpr(L, R, E);
Reid Spencer5f016e22007-07-11 17:01:13 +0000749}
750
751/// The UsualUnaryConversions() function is *not* called by this routine.
752/// See C99 6.3.2.1p[2-4] for more details.
Sebastian Redl05189992008-11-11 17:56:53 +0000753bool Sema::CheckSizeOfAlignOfOperand(QualType exprType,
754 SourceLocation OpLoc,
755 const SourceRange &ExprRange,
756 bool isSizeof) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000757 // C99 6.5.3.4p1:
758 if (isa<FunctionType>(exprType) && isSizeof)
759 // alignof(function) is allowed.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000760 Diag(OpLoc, diag::ext_sizeof_function_type) << ExprRange;
Reid Spencer5f016e22007-07-11 17:01:13 +0000761 else if (exprType->isVoidType())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000762 Diag(OpLoc, diag::ext_sizeof_void_type)
763 << (isSizeof ? "sizeof" : "__alignof") << ExprRange;
764 else if (exprType->isIncompleteType())
765 return Diag(OpLoc, isSizeof ? diag::err_sizeof_incomplete_type :
766 diag::err_alignof_incomplete_type)
Chris Lattnerd1625842008-11-24 06:25:27 +0000767 << exprType << ExprRange;
Sebastian Redl05189992008-11-11 17:56:53 +0000768
769 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000770}
771
Sebastian Redl05189992008-11-11 17:56:53 +0000772/// ActOnSizeOfAlignOfExpr - Handle @c sizeof(type) and @c sizeof @c expr and
773/// the same for @c alignof and @c __alignof
774/// Note that the ArgRange is invalid if isType is false.
775Action::ExprResult
776Sema::ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType,
777 void *TyOrEx, const SourceRange &ArgRange) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000778 // If error parsing type, ignore.
Sebastian Redl05189992008-11-11 17:56:53 +0000779 if (TyOrEx == 0) return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000780
Sebastian Redl05189992008-11-11 17:56:53 +0000781 QualType ArgTy;
782 SourceRange Range;
783 if (isType) {
784 ArgTy = QualType::getFromOpaquePtr(TyOrEx);
785 Range = ArgRange;
786 } else {
787 // Get the end location.
788 Expr *ArgEx = (Expr *)TyOrEx;
789 Range = ArgEx->getSourceRange();
790 ArgTy = ArgEx->getType();
791 }
792
793 // Verify that the operand is valid.
794 if (CheckSizeOfAlignOfOperand(ArgTy, OpLoc, Range, isSizeof))
Reid Spencer5f016e22007-07-11 17:01:13 +0000795 return true;
Sebastian Redl05189992008-11-11 17:56:53 +0000796
797 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
798 return new SizeOfAlignOfExpr(isSizeof, isType, TyOrEx, Context.getSizeType(),
799 OpLoc, Range.getEnd());
Reid Spencer5f016e22007-07-11 17:01:13 +0000800}
801
Chris Lattner5d794252007-08-24 21:41:10 +0000802QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc) {
Chris Lattnerdbb36972007-08-24 21:16:53 +0000803 DefaultFunctionArrayConversion(V);
804
Chris Lattnercc26ed72007-08-26 05:39:26 +0000805 // These operators return the element type of a complex type.
Chris Lattnerdbb36972007-08-24 21:16:53 +0000806 if (const ComplexType *CT = V->getType()->getAsComplexType())
807 return CT->getElementType();
Chris Lattnercc26ed72007-08-26 05:39:26 +0000808
809 // Otherwise they pass through real integer and floating point types here.
810 if (V->getType()->isArithmeticType())
811 return V->getType();
812
813 // Reject anything else.
Chris Lattnerd1625842008-11-24 06:25:27 +0000814 Diag(Loc, diag::err_realimag_invalid_type) << V->getType();
Chris Lattnercc26ed72007-08-26 05:39:26 +0000815 return QualType();
Chris Lattnerdbb36972007-08-24 21:16:53 +0000816}
817
818
Reid Spencer5f016e22007-07-11 17:01:13 +0000819
Douglas Gregor74253732008-11-19 15:42:04 +0000820Action::ExprResult Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000821 tok::TokenKind Kind,
822 ExprTy *Input) {
Douglas Gregor74253732008-11-19 15:42:04 +0000823 Expr *Arg = (Expr *)Input;
824
Reid Spencer5f016e22007-07-11 17:01:13 +0000825 UnaryOperator::Opcode Opc;
826 switch (Kind) {
827 default: assert(0 && "Unknown unary op!");
828 case tok::plusplus: Opc = UnaryOperator::PostInc; break;
829 case tok::minusminus: Opc = UnaryOperator::PostDec; break;
830 }
Douglas Gregor74253732008-11-19 15:42:04 +0000831
832 if (getLangOptions().CPlusPlus &&
833 (Arg->getType()->isRecordType() || Arg->getType()->isEnumeralType())) {
834 // Which overloaded operator?
835 OverloadedOperatorKind OverOp =
836 (Opc == UnaryOperator::PostInc)? OO_PlusPlus : OO_MinusMinus;
837
838 // C++ [over.inc]p1:
839 //
840 // [...] If the function is a member function with one
841 // parameter (which shall be of type int) or a non-member
842 // function with two parameters (the second of which shall be
843 // of type int), it defines the postfix increment operator ++
844 // for objects of that type. When the postfix increment is
845 // called as a result of using the ++ operator, the int
846 // argument will have value zero.
847 Expr *Args[2] = {
848 Arg,
849 new IntegerLiteral(llvm::APInt(Context.Target.getIntWidth(), 0,
850 /*isSigned=*/true),
851 Context.IntTy, SourceLocation())
852 };
853
854 // Build the candidate set for overloading
855 OverloadCandidateSet CandidateSet;
856 AddOperatorCandidates(OverOp, S, Args, 2, CandidateSet);
857
858 // Perform overload resolution.
859 OverloadCandidateSet::iterator Best;
860 switch (BestViableFunction(CandidateSet, Best)) {
861 case OR_Success: {
862 // We found a built-in operator or an overloaded operator.
863 FunctionDecl *FnDecl = Best->Function;
864
865 if (FnDecl) {
866 // We matched an overloaded operator. Build a call to that
867 // operator.
868
869 // Convert the arguments.
870 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) {
871 if (PerformObjectArgumentInitialization(Arg, Method))
872 return true;
873 } else {
874 // Convert the arguments.
875 if (PerformCopyInitialization(Arg,
876 FnDecl->getParamDecl(0)->getType(),
877 "passing"))
878 return true;
879 }
880
881 // Determine the result type
882 QualType ResultTy
883 = FnDecl->getType()->getAsFunctionType()->getResultType();
884 ResultTy = ResultTy.getNonReferenceType();
885
886 // Build the actual expression node.
887 Expr *FnExpr = new DeclRefExpr(FnDecl, FnDecl->getType(),
888 SourceLocation());
889 UsualUnaryConversions(FnExpr);
890
891 return new CXXOperatorCallExpr(FnExpr, Args, 2, ResultTy, OpLoc);
892 } else {
893 // We matched a built-in operator. Convert the arguments, then
894 // break out so that we will build the appropriate built-in
895 // operator node.
896 if (PerformCopyInitialization(Arg, Best->BuiltinTypes.ParamTypes[0],
897 "passing"))
898 return true;
899
900 break;
901 }
902 }
903
904 case OR_No_Viable_Function:
905 // No viable function; fall through to handling this as a
906 // built-in operator, which will produce an error message for us.
907 break;
908
909 case OR_Ambiguous:
910 Diag(OpLoc, diag::err_ovl_ambiguous_oper)
911 << UnaryOperator::getOpcodeStr(Opc)
912 << Arg->getSourceRange();
913 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
914 return true;
915 }
916
917 // Either we found no viable overloaded operator or we matched a
918 // built-in operator. In either case, fall through to trying to
919 // build a built-in operation.
920 }
921
922 QualType result = CheckIncrementDecrementOperand(Arg, OpLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000923 if (result.isNull())
924 return true;
Douglas Gregor74253732008-11-19 15:42:04 +0000925 return new UnaryOperator(Arg, Opc, result, OpLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000926}
927
928Action::ExprResult Sema::
Douglas Gregor337c6b92008-11-19 17:17:41 +0000929ActOnArraySubscriptExpr(Scope *S, ExprTy *Base, SourceLocation LLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000930 ExprTy *Idx, SourceLocation RLoc) {
Chris Lattner727a80d2007-07-15 23:59:53 +0000931 Expr *LHSExp = static_cast<Expr*>(Base), *RHSExp = static_cast<Expr*>(Idx);
Chris Lattner12d9ff62007-07-16 00:14:47 +0000932
Douglas Gregor337c6b92008-11-19 17:17:41 +0000933 if (getLangOptions().CPlusPlus &&
934 LHSExp->getType()->isRecordType() ||
935 LHSExp->getType()->isEnumeralType() ||
936 RHSExp->getType()->isRecordType() ||
Sebastian Redlcb354722008-12-03 16:32:40 +0000937 RHSExp->getType()->isEnumeralType()) {
Douglas Gregor337c6b92008-11-19 17:17:41 +0000938 // Add the appropriate overloaded operators (C++ [over.match.oper])
939 // to the candidate set.
940 OverloadCandidateSet CandidateSet;
941 Expr *Args[2] = { LHSExp, RHSExp };
942 AddOperatorCandidates(OO_Subscript, S, Args, 2, CandidateSet);
943
944 // Perform overload resolution.
945 OverloadCandidateSet::iterator Best;
946 switch (BestViableFunction(CandidateSet, Best)) {
947 case OR_Success: {
948 // We found a built-in operator or an overloaded operator.
949 FunctionDecl *FnDecl = Best->Function;
950
951 if (FnDecl) {
952 // We matched an overloaded operator. Build a call to that
953 // operator.
954
955 // Convert the arguments.
956 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) {
957 if (PerformObjectArgumentInitialization(LHSExp, Method) ||
958 PerformCopyInitialization(RHSExp,
959 FnDecl->getParamDecl(0)->getType(),
960 "passing"))
961 return true;
962 } else {
963 // Convert the arguments.
964 if (PerformCopyInitialization(LHSExp,
965 FnDecl->getParamDecl(0)->getType(),
966 "passing") ||
967 PerformCopyInitialization(RHSExp,
968 FnDecl->getParamDecl(1)->getType(),
969 "passing"))
970 return true;
971 }
972
973 // Determine the result type
974 QualType ResultTy
975 = FnDecl->getType()->getAsFunctionType()->getResultType();
976 ResultTy = ResultTy.getNonReferenceType();
977
978 // Build the actual expression node.
979 Expr *FnExpr = new DeclRefExpr(FnDecl, FnDecl->getType(),
980 SourceLocation());
981 UsualUnaryConversions(FnExpr);
982
983 return new CXXOperatorCallExpr(FnExpr, Args, 2, ResultTy, LLoc);
984 } else {
985 // We matched a built-in operator. Convert the arguments, then
986 // break out so that we will build the appropriate built-in
987 // operator node.
988 if (PerformCopyInitialization(LHSExp, Best->BuiltinTypes.ParamTypes[0],
989 "passing") ||
990 PerformCopyInitialization(RHSExp, Best->BuiltinTypes.ParamTypes[1],
991 "passing"))
992 return true;
993
994 break;
995 }
996 }
997
998 case OR_No_Viable_Function:
999 // No viable function; fall through to handling this as a
1000 // built-in operator, which will produce an error message for us.
1001 break;
1002
1003 case OR_Ambiguous:
1004 Diag(LLoc, diag::err_ovl_ambiguous_oper)
1005 << "[]"
1006 << LHSExp->getSourceRange() << RHSExp->getSourceRange();
1007 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
1008 return true;
1009 }
1010
1011 // Either we found no viable overloaded operator or we matched a
1012 // built-in operator. In either case, fall through to trying to
1013 // build a built-in operation.
1014 }
1015
Chris Lattner12d9ff62007-07-16 00:14:47 +00001016 // Perform default conversions.
1017 DefaultFunctionArrayConversion(LHSExp);
1018 DefaultFunctionArrayConversion(RHSExp);
Chris Lattner727a80d2007-07-15 23:59:53 +00001019
Chris Lattner12d9ff62007-07-16 00:14:47 +00001020 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001021
Reid Spencer5f016e22007-07-11 17:01:13 +00001022 // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent
Chris Lattner73d0d4f2007-08-30 17:45:32 +00001023 // to the expression *((e1)+(e2)). This means the array "Base" may actually be
Reid Spencer5f016e22007-07-11 17:01:13 +00001024 // in the subscript position. As a result, we need to derive the array base
1025 // and index from the expression types.
Chris Lattner12d9ff62007-07-16 00:14:47 +00001026 Expr *BaseExpr, *IndexExpr;
1027 QualType ResultType;
Chris Lattnerbefee482007-07-31 16:53:04 +00001028 if (const PointerType *PTy = LHSTy->getAsPointerType()) {
Chris Lattner12d9ff62007-07-16 00:14:47 +00001029 BaseExpr = LHSExp;
1030 IndexExpr = RHSExp;
1031 // FIXME: need to deal with const...
1032 ResultType = PTy->getPointeeType();
Chris Lattnerbefee482007-07-31 16:53:04 +00001033 } else if (const PointerType *PTy = RHSTy->getAsPointerType()) {
Chris Lattner7a2e0472007-07-16 00:23:25 +00001034 // Handle the uncommon case of "123[Ptr]".
Chris Lattner12d9ff62007-07-16 00:14:47 +00001035 BaseExpr = RHSExp;
1036 IndexExpr = LHSExp;
1037 // FIXME: need to deal with const...
1038 ResultType = PTy->getPointeeType();
Chris Lattnerc8629632007-07-31 19:29:30 +00001039 } else if (const VectorType *VTy = LHSTy->getAsVectorType()) {
1040 BaseExpr = LHSExp; // vectors: V[123]
Chris Lattner12d9ff62007-07-16 00:14:47 +00001041 IndexExpr = RHSExp;
Steve Naroff608e0ee2007-08-03 22:40:33 +00001042
1043 // Component access limited to variables (reject vec4.rg[1]).
Nate Begeman8a997642008-05-09 06:41:27 +00001044 if (!isa<DeclRefExpr>(BaseExpr) && !isa<ArraySubscriptExpr>(BaseExpr) &&
1045 !isa<ExtVectorElementExpr>(BaseExpr))
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001046 return Diag(LLoc, diag::err_ext_vector_component_access)
1047 << SourceRange(LLoc, RLoc);
Chris Lattner12d9ff62007-07-16 00:14:47 +00001048 // FIXME: need to deal with const...
1049 ResultType = VTy->getElementType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001050 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001051 return Diag(LHSExp->getLocStart(), diag::err_typecheck_subscript_value)
1052 << RHSExp->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00001053 }
1054 // C99 6.5.2.1p1
Chris Lattner12d9ff62007-07-16 00:14:47 +00001055 if (!IndexExpr->getType()->isIntegerType())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001056 return Diag(IndexExpr->getLocStart(), diag::err_typecheck_subscript)
1057 << IndexExpr->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00001058
Chris Lattner12d9ff62007-07-16 00:14:47 +00001059 // C99 6.5.2.1p1: "shall have type "pointer to *object* type". In practice,
1060 // the following check catches trying to index a pointer to a function (e.g.
Chris Lattnerd805bec2008-04-02 06:59:01 +00001061 // void (*)(int)) and pointers to incomplete types. Functions are not
1062 // objects in C99.
Chris Lattner12d9ff62007-07-16 00:14:47 +00001063 if (!ResultType->isObjectType())
1064 return Diag(BaseExpr->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001065 diag::err_typecheck_subscript_not_object)
Chris Lattnerd1625842008-11-24 06:25:27 +00001066 << BaseExpr->getType() << BaseExpr->getSourceRange();
Chris Lattner12d9ff62007-07-16 00:14:47 +00001067
1068 return new ArraySubscriptExpr(LHSExp, RHSExp, ResultType, RLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001069}
1070
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001071QualType Sema::
Nate Begeman213541a2008-04-18 23:10:10 +00001072CheckExtVectorComponent(QualType baseType, SourceLocation OpLoc,
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001073 IdentifierInfo &CompName, SourceLocation CompLoc) {
Nate Begeman213541a2008-04-18 23:10:10 +00001074 const ExtVectorType *vecType = baseType->getAsExtVectorType();
Nate Begeman8a997642008-05-09 06:41:27 +00001075
1076 // This flag determines whether or not the component is to be treated as a
1077 // special name, or a regular GLSL-style component access.
1078 bool SpecialComponent = false;
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001079
1080 // The vector accessor can't exceed the number of elements.
1081 const char *compStr = CompName.getName();
1082 if (strlen(compStr) > vecType->getNumElements()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001083 Diag(OpLoc, diag::err_ext_vector_component_exceeds_length)
Chris Lattnerd1625842008-11-24 06:25:27 +00001084 << baseType << SourceRange(CompLoc);
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001085 return QualType();
1086 }
Nate Begeman8a997642008-05-09 06:41:27 +00001087
1088 // Check that we've found one of the special components, or that the component
1089 // names must come from the same set.
1090 if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") ||
1091 !strcmp(compStr, "e") || !strcmp(compStr, "o")) {
1092 SpecialComponent = true;
1093 } else if (vecType->getPointAccessorIdx(*compStr) != -1) {
Chris Lattner88dca042007-08-02 22:33:49 +00001094 do
1095 compStr++;
1096 while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1);
1097 } else if (vecType->getColorAccessorIdx(*compStr) != -1) {
1098 do
1099 compStr++;
1100 while (*compStr && vecType->getColorAccessorIdx(*compStr) != -1);
1101 } else if (vecType->getTextureAccessorIdx(*compStr) != -1) {
1102 do
1103 compStr++;
1104 while (*compStr && vecType->getTextureAccessorIdx(*compStr) != -1);
1105 }
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001106
Nate Begeman8a997642008-05-09 06:41:27 +00001107 if (!SpecialComponent && *compStr) {
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001108 // We didn't get to the end of the string. This means the component names
1109 // didn't come from the same set *or* we encountered an illegal name.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001110 Diag(OpLoc, diag::err_ext_vector_component_name_illegal)
1111 << std::string(compStr,compStr+1) << SourceRange(CompLoc);
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001112 return QualType();
1113 }
1114 // Each component accessor can't exceed the vector type.
1115 compStr = CompName.getName();
1116 while (*compStr) {
1117 if (vecType->isAccessorWithinNumElements(*compStr))
1118 compStr++;
1119 else
1120 break;
1121 }
Nate Begeman8a997642008-05-09 06:41:27 +00001122 if (!SpecialComponent && *compStr) {
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001123 // We didn't get to the end of the string. This means a component accessor
1124 // exceeds the number of elements in the vector.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001125 Diag(OpLoc, diag::err_ext_vector_component_exceeds_length)
Chris Lattnerd1625842008-11-24 06:25:27 +00001126 << baseType << SourceRange(CompLoc);
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001127 return QualType();
1128 }
Nate Begeman8a997642008-05-09 06:41:27 +00001129
1130 // If we have a special component name, verify that the current vector length
1131 // is an even number, since all special component names return exactly half
1132 // the elements.
1133 if (SpecialComponent && (vecType->getNumElements() & 1U)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001134 Diag(OpLoc, diag::err_ext_vector_component_requires_even)
Chris Lattnerd1625842008-11-24 06:25:27 +00001135 << baseType << SourceRange(CompLoc);
Nate Begeman8a997642008-05-09 06:41:27 +00001136 return QualType();
1137 }
1138
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001139 // The component accessor looks fine - now we need to compute the actual type.
1140 // The vector type is implied by the component accessor. For example,
1141 // vec4.b is a float, vec4.xy is a vec2, vec4.rgb is a vec3, etc.
Nate Begeman8a997642008-05-09 06:41:27 +00001142 // vec4.hi, vec4.lo, vec4.e, and vec4.o all return vec2.
1143 unsigned CompSize = SpecialComponent ? vecType->getNumElements() / 2
Chris Lattner3c73c412008-11-19 08:23:25 +00001144 : CompName.getLength();
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001145 if (CompSize == 1)
1146 return vecType->getElementType();
Steve Naroffbea0b342007-07-29 16:33:31 +00001147
Nate Begeman213541a2008-04-18 23:10:10 +00001148 QualType VT = Context.getExtVectorType(vecType->getElementType(), CompSize);
Steve Naroffbea0b342007-07-29 16:33:31 +00001149 // Now look up the TypeDefDecl from the vector type. Without this,
Nate Begeman213541a2008-04-18 23:10:10 +00001150 // diagostics look bad. We want extended vector types to appear built-in.
1151 for (unsigned i = 0, E = ExtVectorDecls.size(); i != E; ++i) {
1152 if (ExtVectorDecls[i]->getUnderlyingType() == VT)
1153 return Context.getTypedefType(ExtVectorDecls[i]);
Steve Naroffbea0b342007-07-29 16:33:31 +00001154 }
1155 return VT; // should never get here (a typedef type should always be found).
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001156}
1157
Fariborz Jahanianba8d2d62008-11-22 20:25:50 +00001158/// constructSetterName - Return the setter name for the given
1159/// identifier, i.e. "set" + Name where the initial character of Name
1160/// has been capitalized.
1161// FIXME: Merge with same routine in Parser. But where should this
1162// live?
1163static IdentifierInfo *constructSetterName(IdentifierTable &Idents,
1164 const IdentifierInfo *Name) {
1165 llvm::SmallString<100> SelectorName;
1166 SelectorName = "set";
1167 SelectorName.append(Name->getName(), Name->getName()+Name->getLength());
1168 SelectorName[3] = toupper(SelectorName[3]);
1169 return &Idents.get(&SelectorName[0], &SelectorName[SelectorName.size()]);
1170}
1171
Reid Spencer5f016e22007-07-11 17:01:13 +00001172Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +00001173ActOnMemberReferenceExpr(ExprTy *Base, SourceLocation OpLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +00001174 tok::TokenKind OpKind, SourceLocation MemberLoc,
1175 IdentifierInfo &Member) {
Steve Naroffdfa6aae2007-07-26 03:11:44 +00001176 Expr *BaseExpr = static_cast<Expr *>(Base);
1177 assert(BaseExpr && "no record expression");
Steve Naroff3cc4af82007-12-16 21:42:28 +00001178
1179 // Perform default conversions.
1180 DefaultFunctionArrayConversion(BaseExpr);
Reid Spencer5f016e22007-07-11 17:01:13 +00001181
Steve Naroffdfa6aae2007-07-26 03:11:44 +00001182 QualType BaseType = BaseExpr->getType();
1183 assert(!BaseType.isNull() && "no type for member expression");
Reid Spencer5f016e22007-07-11 17:01:13 +00001184
Chris Lattner68a057b2008-07-21 04:36:39 +00001185 // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr
1186 // must have pointer type, and the accessed type is the pointee.
Reid Spencer5f016e22007-07-11 17:01:13 +00001187 if (OpKind == tok::arrow) {
Chris Lattnerbefee482007-07-31 16:53:04 +00001188 if (const PointerType *PT = BaseType->getAsPointerType())
Steve Naroffdfa6aae2007-07-26 03:11:44 +00001189 BaseType = PT->getPointeeType();
Douglas Gregor8ba10742008-11-20 16:27:02 +00001190 else if (getLangOptions().CPlusPlus && BaseType->isRecordType())
1191 return BuildOverloadedArrowExpr(BaseExpr, OpLoc, MemberLoc, Member);
Steve Naroffdfa6aae2007-07-26 03:11:44 +00001192 else
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001193 return Diag(MemberLoc, diag::err_typecheck_member_reference_arrow)
Chris Lattnerd1625842008-11-24 06:25:27 +00001194 << BaseType << BaseExpr->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00001195 }
Chris Lattnerfb173ec2008-07-21 04:28:12 +00001196
Chris Lattner68a057b2008-07-21 04:36:39 +00001197 // Handle field access to simple records. This also handles access to fields
1198 // of the ObjC 'id' struct.
Chris Lattnerc8629632007-07-31 19:29:30 +00001199 if (const RecordType *RTy = BaseType->getAsRecordType()) {
Steve Naroffdfa6aae2007-07-26 03:11:44 +00001200 RecordDecl *RDecl = RTy->getDecl();
1201 if (RTy->isIncompleteType())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001202 return Diag(OpLoc, diag::err_typecheck_incomplete_tag)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00001203 << RDecl->getDeclName() << BaseExpr->getSourceRange();
Steve Naroffdfa6aae2007-07-26 03:11:44 +00001204 // The record definition is complete, now make sure the member is valid.
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001205 FieldDecl *MemberDecl = RDecl->getMember(&Member);
1206 if (!MemberDecl)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001207 return Diag(MemberLoc, diag::err_typecheck_no_member)
Chris Lattner3c73c412008-11-19 08:23:25 +00001208 << &Member << BaseExpr->getSourceRange();
Eli Friedman51019072008-02-06 22:48:16 +00001209
1210 // Figure out the type of the member; see C99 6.5.2.3p3
Eli Friedman64ec0cc2008-02-07 05:24:51 +00001211 // FIXME: Handle address space modifiers
Eli Friedman51019072008-02-06 22:48:16 +00001212 QualType MemberType = MemberDecl->getType();
1213 unsigned combinedQualifiers =
Chris Lattnerf46699c2008-02-20 20:55:12 +00001214 MemberType.getCVRQualifiers() | BaseType.getCVRQualifiers();
Sebastian Redla11f42f2008-11-17 23:24:37 +00001215 if (CXXFieldDecl *CXXMember = dyn_cast<CXXFieldDecl>(MemberDecl)) {
1216 if (CXXMember->isMutable())
1217 combinedQualifiers &= ~QualType::Const;
1218 }
Eli Friedman51019072008-02-06 22:48:16 +00001219 MemberType = MemberType.getQualifiedType(combinedQualifiers);
1220
Chris Lattner68a057b2008-07-21 04:36:39 +00001221 return new MemberExpr(BaseExpr, OpKind == tok::arrow, MemberDecl,
Eli Friedman51019072008-02-06 22:48:16 +00001222 MemberLoc, MemberType);
Chris Lattnerfb173ec2008-07-21 04:28:12 +00001223 }
1224
Chris Lattnera38e6b12008-07-21 04:59:05 +00001225 // Handle access to Objective-C instance variables, such as "Obj->ivar" and
1226 // (*Obj).ivar.
Chris Lattner68a057b2008-07-21 04:36:39 +00001227 if (const ObjCInterfaceType *IFTy = BaseType->getAsObjCInterfaceType()) {
1228 if (ObjCIvarDecl *IV = IFTy->getDecl()->lookupInstanceVariable(&Member))
Fariborz Jahanian232220c2007-11-12 22:29:28 +00001229 return new ObjCIvarRefExpr(IV, IV->getType(), MemberLoc, BaseExpr,
Chris Lattnerfb173ec2008-07-21 04:28:12 +00001230 OpKind == tok::arrow);
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001231 return Diag(MemberLoc, diag::err_typecheck_member_reference_ivar)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00001232 << IFTy->getDecl()->getDeclName() << &Member
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001233 << BaseExpr->getSourceRange();
Chris Lattnerfb173ec2008-07-21 04:28:12 +00001234 }
1235
Chris Lattnera38e6b12008-07-21 04:59:05 +00001236 // Handle Objective-C property access, which is "Obj.property" where Obj is a
1237 // pointer to a (potentially qualified) interface type.
1238 const PointerType *PTy;
1239 const ObjCInterfaceType *IFTy;
1240 if (OpKind == tok::period && (PTy = BaseType->getAsPointerType()) &&
1241 (IFTy = PTy->getPointeeType()->getAsObjCInterfaceType())) {
1242 ObjCInterfaceDecl *IFace = IFTy->getDecl();
Daniel Dunbar7f8ea5c2008-08-30 05:35:15 +00001243
Daniel Dunbar2307d312008-09-03 01:05:41 +00001244 // Search for a declared property first.
Chris Lattnera38e6b12008-07-21 04:59:05 +00001245 if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(&Member))
1246 return new ObjCPropertyRefExpr(PD, PD->getType(), MemberLoc, BaseExpr);
1247
Daniel Dunbar2307d312008-09-03 01:05:41 +00001248 // Check protocols on qualified interfaces.
Chris Lattner9baefc22008-07-21 05:20:01 +00001249 for (ObjCInterfaceType::qual_iterator I = IFTy->qual_begin(),
1250 E = IFTy->qual_end(); I != E; ++I)
1251 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(&Member))
1252 return new ObjCPropertyRefExpr(PD, PD->getType(), MemberLoc, BaseExpr);
Daniel Dunbar2307d312008-09-03 01:05:41 +00001253
1254 // If that failed, look for an "implicit" property by seeing if the nullary
1255 // selector is implemented.
1256
1257 // FIXME: The logic for looking up nullary and unary selectors should be
1258 // shared with the code in ActOnInstanceMessage.
1259
1260 Selector Sel = PP.getSelectorTable().getNullarySelector(&Member);
1261 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
1262
1263 // If this reference is in an @implementation, check for 'private' methods.
1264 if (!Getter)
1265 if (ObjCMethodDecl *CurMeth = getCurMethodDecl())
1266 if (ObjCInterfaceDecl *ClassDecl = CurMeth->getClassInterface())
1267 if (ObjCImplementationDecl *ImpDecl =
1268 ObjCImplementations[ClassDecl->getIdentifier()])
1269 Getter = ImpDecl->getInstanceMethod(Sel);
1270
Steve Naroff7692ed62008-10-22 19:16:27 +00001271 // Look through local category implementations associated with the class.
1272 if (!Getter) {
1273 for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Getter; i++) {
1274 if (ObjCCategoryImpls[i]->getClassInterface() == IFace)
1275 Getter = ObjCCategoryImpls[i]->getInstanceMethod(Sel);
1276 }
1277 }
Daniel Dunbar2307d312008-09-03 01:05:41 +00001278 if (Getter) {
1279 // If we found a getter then this may be a valid dot-reference, we
Fariborz Jahanianba8d2d62008-11-22 20:25:50 +00001280 // will look for the matching setter, in case it is needed.
1281 IdentifierInfo *SetterName = constructSetterName(PP.getIdentifierTable(),
1282 &Member);
1283 Selector SetterSel = PP.getSelectorTable().getUnarySelector(SetterName);
1284 ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel);
1285 if (!Setter) {
1286 // If this reference is in an @implementation, also check for 'private'
1287 // methods.
1288 if (ObjCMethodDecl *CurMeth = getCurMethodDecl())
1289 if (ObjCInterfaceDecl *ClassDecl = CurMeth->getClassInterface())
1290 if (ObjCImplementationDecl *ImpDecl =
1291 ObjCImplementations[ClassDecl->getIdentifier()])
1292 Setter = ImpDecl->getInstanceMethod(SetterSel);
1293 }
1294 // Look through local category implementations associated with the class.
1295 if (!Setter) {
1296 for (unsigned i = 0; i < ObjCCategoryImpls.size() && !Setter; i++) {
1297 if (ObjCCategoryImpls[i]->getClassInterface() == IFace)
1298 Setter = ObjCCategoryImpls[i]->getInstanceMethod(SetterSel);
1299 }
1300 }
1301
1302 // FIXME: we must check that the setter has property type.
1303 return new ObjCKVCRefExpr(Getter, Getter->getResultType(), Setter,
Fariborz Jahanian5daf5702008-11-22 18:39:36 +00001304 MemberLoc, BaseExpr);
Daniel Dunbar2307d312008-09-03 01:05:41 +00001305 }
Fariborz Jahanian232220c2007-11-12 22:29:28 +00001306 }
Steve Naroff18bc1642008-10-20 22:53:06 +00001307 // Handle properties on qualified "id" protocols.
1308 const ObjCQualifiedIdType *QIdTy;
1309 if (OpKind == tok::period && (QIdTy = BaseType->getAsObjCQualifiedIdType())) {
1310 // Check protocols on qualified interfaces.
1311 for (ObjCQualifiedIdType::qual_iterator I = QIdTy->qual_begin(),
Fariborz Jahanian391d8952008-12-10 00:21:50 +00001312 E = QIdTy->qual_end(); I != E; ++I) {
Steve Naroff18bc1642008-10-20 22:53:06 +00001313 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(&Member))
1314 return new ObjCPropertyRefExpr(PD, PD->getType(), MemberLoc, BaseExpr);
Fariborz Jahanian391d8952008-12-10 00:21:50 +00001315 // Also must look for a getter name which uses property syntax.
1316 Selector Sel = PP.getSelectorTable().getNullarySelector(&Member);
1317 if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Sel)) {
1318 return new ObjCMessageExpr(BaseExpr, Sel, OMD->getResultType(), OMD,
1319 OpLoc, MemberLoc, NULL, 0);
1320 }
1321 }
Steve Naroff18bc1642008-10-20 22:53:06 +00001322 }
Chris Lattnerfb173ec2008-07-21 04:28:12 +00001323 // Handle 'field access' to vectors, such as 'V.xx'.
1324 if (BaseType->isExtVectorType() && OpKind == tok::period) {
1325 // Component access limited to variables (reject vec4.rg.g).
1326 if (!isa<DeclRefExpr>(BaseExpr) && !isa<ArraySubscriptExpr>(BaseExpr) &&
1327 !isa<ExtVectorElementExpr>(BaseExpr))
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001328 return Diag(MemberLoc, diag::err_ext_vector_component_access)
1329 << BaseExpr->getSourceRange();
Chris Lattnerfb173ec2008-07-21 04:28:12 +00001330 QualType ret = CheckExtVectorComponent(BaseType, OpLoc, Member, MemberLoc);
1331 if (ret.isNull())
1332 return true;
1333 return new ExtVectorElementExpr(ret, BaseExpr, Member, MemberLoc);
1334 }
1335
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001336 return Diag(MemberLoc, diag::err_typecheck_member_reference_struct_union)
Chris Lattnerd1625842008-11-24 06:25:27 +00001337 << BaseType << BaseExpr->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00001338}
1339
Steve Narofff69936d2007-09-16 03:34:24 +00001340/// ActOnCallExpr - Handle a call to Fn with the specified array of arguments.
Reid Spencer5f016e22007-07-11 17:01:13 +00001341/// This provides the location of the left/right parens and a list of comma
1342/// locations.
1343Action::ExprResult Sema::
Douglas Gregor5c37de72008-12-06 00:22:45 +00001344ActOnCallExpr(Scope *S, ExprTy *fn, SourceLocation LParenLoc,
Chris Lattner925e60d2007-12-28 05:29:59 +00001345 ExprTy **args, unsigned NumArgs,
Reid Spencer5f016e22007-07-11 17:01:13 +00001346 SourceLocation *CommaLocs, SourceLocation RParenLoc) {
Chris Lattner74c469f2007-07-21 03:03:59 +00001347 Expr *Fn = static_cast<Expr *>(fn);
1348 Expr **Args = reinterpret_cast<Expr**>(args);
1349 assert(Fn && "no function call expression");
Chris Lattner04421082008-04-08 04:40:51 +00001350 FunctionDecl *FDecl = NULL;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001351 OverloadedFunctionDecl *Ovl = NULL;
1352
Douglas Gregor5c37de72008-12-06 00:22:45 +00001353 // Determine whether this is a dependent call inside a C++ template,
1354 // in which case we won't do any semantic analysis now.
1355 bool Dependent = false;
1356 if (Fn->isTypeDependent()) {
1357 if (CXXDependentNameExpr *FnName = dyn_cast<CXXDependentNameExpr>(Fn)) {
1358 if (Expr::hasAnyTypeDependentArguments(Args, NumArgs))
1359 Dependent = true;
1360 else {
1361 // Resolve the CXXDependentNameExpr to an actual identifier;
1362 // it wasn't really a dependent name after all.
1363 ExprResult Resolved
1364 = ActOnDeclarationNameExpr(S, FnName->getLocation(), FnName->getName(),
1365 /*HasTrailingLParen=*/true,
1366 /*SS=*/0,
1367 /*ForceResolution=*/true);
1368 if (Resolved.isInvalid)
1369 return true;
1370 else {
1371 delete Fn;
1372 Fn = (Expr *)Resolved.Val;
1373 }
1374 }
1375 } else
1376 Dependent = true;
1377 } else
1378 Dependent = Expr::hasAnyTypeDependentArguments(Args, NumArgs);
1379
Douglas Gregor898574e2008-12-05 23:32:09 +00001380 // FIXME: Will need to cache the results of name lookup (including
1381 // ADL) in Fn.
Douglas Gregor5c37de72008-12-06 00:22:45 +00001382 if (Dependent)
Douglas Gregor898574e2008-12-05 23:32:09 +00001383 return new CallExpr(Fn, Args, NumArgs, Context.DependentTy, RParenLoc);
1384
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001385 // If we're directly calling a function or a set of overloaded
1386 // functions, get the appropriate declaration.
1387 {
1388 DeclRefExpr *DRExpr = NULL;
1389 if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(Fn))
1390 DRExpr = dyn_cast<DeclRefExpr>(IcExpr->getSubExpr());
1391 else
1392 DRExpr = dyn_cast<DeclRefExpr>(Fn);
1393
1394 if (DRExpr) {
1395 FDecl = dyn_cast<FunctionDecl>(DRExpr->getDecl());
1396 Ovl = dyn_cast<OverloadedFunctionDecl>(DRExpr->getDecl());
1397 }
1398 }
1399
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001400 if (Ovl) {
Douglas Gregor0a396682008-11-26 06:01:48 +00001401 FDecl = ResolveOverloadedCallFn(Fn, Ovl, LParenLoc, Args, NumArgs, CommaLocs,
1402 RParenLoc);
1403 if (!FDecl)
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001404 return true;
1405
Douglas Gregor0a396682008-11-26 06:01:48 +00001406 // Update Fn to refer to the actual function selected.
1407 Expr *NewFn = new DeclRefExpr(FDecl, FDecl->getType(),
1408 Fn->getSourceRange().getBegin());
1409 Fn->Destroy(Context);
1410 Fn = NewFn;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001411 }
Chris Lattner04421082008-04-08 04:40:51 +00001412
Douglas Gregorf9eb9052008-11-19 21:05:33 +00001413 if (getLangOptions().CPlusPlus && Fn->getType()->isRecordType())
Douglas Gregor5c37de72008-12-06 00:22:45 +00001414 return BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs,
Douglas Gregorf9eb9052008-11-19 21:05:33 +00001415 CommaLocs, RParenLoc);
1416
Chris Lattner04421082008-04-08 04:40:51 +00001417 // Promote the function operand.
1418 UsualUnaryConversions(Fn);
1419
Chris Lattner925e60d2007-12-28 05:29:59 +00001420 // Make the call expr early, before semantic checks. This guarantees cleanup
1421 // of arguments and function on error.
Chris Lattner8123a952008-04-10 02:22:51 +00001422 llvm::OwningPtr<CallExpr> TheCall(new CallExpr(Fn, Args, NumArgs,
Chris Lattner925e60d2007-12-28 05:29:59 +00001423 Context.BoolTy, RParenLoc));
Douglas Gregor898574e2008-12-05 23:32:09 +00001424
Steve Naroffdd972f22008-09-05 22:11:13 +00001425 const FunctionType *FuncT;
1426 if (!Fn->getType()->isBlockPointerType()) {
1427 // C99 6.5.2.2p1 - "The expression that denotes the called function shall
1428 // have type pointer to function".
1429 const PointerType *PT = Fn->getType()->getAsPointerType();
1430 if (PT == 0)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001431 return Diag(LParenLoc, diag::err_typecheck_call_not_function)
Chris Lattnerd1625842008-11-24 06:25:27 +00001432 << Fn->getType() << Fn->getSourceRange();
Steve Naroffdd972f22008-09-05 22:11:13 +00001433 FuncT = PT->getPointeeType()->getAsFunctionType();
1434 } else { // This is a block call.
1435 FuncT = Fn->getType()->getAsBlockPointerType()->getPointeeType()->
1436 getAsFunctionType();
1437 }
Chris Lattner925e60d2007-12-28 05:29:59 +00001438 if (FuncT == 0)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001439 return Diag(LParenLoc, diag::err_typecheck_call_not_function)
Chris Lattnerd1625842008-11-24 06:25:27 +00001440 << Fn->getType() << Fn->getSourceRange();
Chris Lattner925e60d2007-12-28 05:29:59 +00001441
1442 // We know the result type of the call, set it.
Douglas Gregor15da57e2008-10-29 02:00:59 +00001443 TheCall->setType(FuncT->getResultType().getNonReferenceType());
Reid Spencer5f016e22007-07-11 17:01:13 +00001444
Chris Lattner925e60d2007-12-28 05:29:59 +00001445 if (const FunctionTypeProto *Proto = dyn_cast<FunctionTypeProto>(FuncT)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001446 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by
1447 // assignment, to the types of the corresponding parameter, ...
Chris Lattner925e60d2007-12-28 05:29:59 +00001448 unsigned NumArgsInProto = Proto->getNumArgs();
1449 unsigned NumArgsToCheck = NumArgs;
Reid Spencer5f016e22007-07-11 17:01:13 +00001450
Chris Lattner04421082008-04-08 04:40:51 +00001451 // If too few arguments are available (and we don't have default
1452 // arguments for the remaining parameters), don't make the call.
1453 if (NumArgs < NumArgsInProto) {
Chris Lattner2c21a072008-11-21 18:44:24 +00001454 if (!FDecl || NumArgs < FDecl->getMinRequiredArguments())
1455 return Diag(RParenLoc, diag::err_typecheck_call_too_few_args)
1456 << Fn->getType()->isBlockPointerType() << Fn->getSourceRange();
1457 // Use default arguments for missing arguments
1458 NumArgsToCheck = NumArgsInProto;
1459 TheCall->setNumArgs(NumArgsInProto);
Chris Lattner04421082008-04-08 04:40:51 +00001460 }
1461
Chris Lattner925e60d2007-12-28 05:29:59 +00001462 // If too many are passed and not variadic, error on the extras and drop
1463 // them.
1464 if (NumArgs > NumArgsInProto) {
1465 if (!Proto->isVariadic()) {
Chris Lattner2c21a072008-11-21 18:44:24 +00001466 Diag(Args[NumArgsInProto]->getLocStart(),
1467 diag::err_typecheck_call_too_many_args)
1468 << Fn->getType()->isBlockPointerType() << Fn->getSourceRange()
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001469 << SourceRange(Args[NumArgsInProto]->getLocStart(),
1470 Args[NumArgs-1]->getLocEnd());
Chris Lattner925e60d2007-12-28 05:29:59 +00001471 // This deletes the extra arguments.
1472 TheCall->setNumArgs(NumArgsInProto);
Reid Spencer5f016e22007-07-11 17:01:13 +00001473 }
1474 NumArgsToCheck = NumArgsInProto;
1475 }
Chris Lattner925e60d2007-12-28 05:29:59 +00001476
Reid Spencer5f016e22007-07-11 17:01:13 +00001477 // Continue to check argument types (even if we have too few/many args).
Chris Lattner925e60d2007-12-28 05:29:59 +00001478 for (unsigned i = 0; i != NumArgsToCheck; i++) {
Chris Lattner5cf216b2008-01-04 18:04:52 +00001479 QualType ProtoArgType = Proto->getArgType(i);
Chris Lattner04421082008-04-08 04:40:51 +00001480
1481 Expr *Arg;
1482 if (i < NumArgs)
1483 Arg = Args[i];
1484 else
1485 Arg = new CXXDefaultArgExpr(FDecl->getParamDecl(i));
Chris Lattner5cf216b2008-01-04 18:04:52 +00001486 QualType ArgType = Arg->getType();
Steve Naroff700204c2007-07-24 21:46:40 +00001487
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001488 // Pass the argument.
1489 if (PerformCopyInitialization(Arg, ProtoArgType, "passing"))
Chris Lattner5cf216b2008-01-04 18:04:52 +00001490 return true;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001491
1492 TheCall->setArg(i, Arg);
Reid Spencer5f016e22007-07-11 17:01:13 +00001493 }
Chris Lattner925e60d2007-12-28 05:29:59 +00001494
1495 // If this is a variadic call, handle args passed through "...".
1496 if (Proto->isVariadic()) {
Steve Naroffb291ab62007-08-28 23:30:39 +00001497 // Promote the arguments (C99 6.5.2.2p7).
Chris Lattner925e60d2007-12-28 05:29:59 +00001498 for (unsigned i = NumArgsInProto; i != NumArgs; i++) {
1499 Expr *Arg = Args[i];
1500 DefaultArgumentPromotion(Arg);
1501 TheCall->setArg(i, Arg);
Steve Naroffb291ab62007-08-28 23:30:39 +00001502 }
Steve Naroffb291ab62007-08-28 23:30:39 +00001503 }
Chris Lattner925e60d2007-12-28 05:29:59 +00001504 } else {
1505 assert(isa<FunctionTypeNoProto>(FuncT) && "Unknown FunctionType!");
1506
Steve Naroffb291ab62007-08-28 23:30:39 +00001507 // Promote the arguments (C99 6.5.2.2p6).
Chris Lattner925e60d2007-12-28 05:29:59 +00001508 for (unsigned i = 0; i != NumArgs; i++) {
1509 Expr *Arg = Args[i];
1510 DefaultArgumentPromotion(Arg);
1511 TheCall->setArg(i, Arg);
Steve Naroffb291ab62007-08-28 23:30:39 +00001512 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001513 }
Chris Lattner925e60d2007-12-28 05:29:59 +00001514
Chris Lattner59907c42007-08-10 20:18:51 +00001515 // Do special checking on direct calls to functions.
Eli Friedmand38617c2008-05-14 19:38:39 +00001516 if (FDecl)
1517 return CheckFunctionCall(FDecl, TheCall.take());
Chris Lattner59907c42007-08-10 20:18:51 +00001518
Chris Lattner925e60d2007-12-28 05:29:59 +00001519 return TheCall.take();
Reid Spencer5f016e22007-07-11 17:01:13 +00001520}
1521
1522Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +00001523ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty,
Steve Naroffaff1edd2007-07-19 21:32:11 +00001524 SourceLocation RParenLoc, ExprTy *InitExpr) {
Steve Narofff69936d2007-09-16 03:34:24 +00001525 assert((Ty != 0) && "ActOnCompoundLiteral(): missing type");
Steve Naroff4aa88f82007-07-19 01:06:55 +00001526 QualType literalType = QualType::getFromOpaquePtr(Ty);
Steve Naroffaff1edd2007-07-19 21:32:11 +00001527 // FIXME: put back this assert when initializers are worked out.
Steve Narofff69936d2007-09-16 03:34:24 +00001528 //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression");
Steve Naroffaff1edd2007-07-19 21:32:11 +00001529 Expr *literalExpr = static_cast<Expr*>(InitExpr);
Anders Carlssond35c8322007-12-05 07:24:19 +00001530
Eli Friedman6223c222008-05-20 05:22:08 +00001531 if (literalType->isArrayType()) {
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001532 if (literalType->isVariableArrayType())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001533 return Diag(LParenLoc, diag::err_variable_object_no_init)
1534 << SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd());
Eli Friedman6223c222008-05-20 05:22:08 +00001535 } else if (literalType->isIncompleteType()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001536 return Diag(LParenLoc, diag::err_typecheck_decl_incomplete_type)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00001537 << literalType
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001538 << SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd());
Eli Friedman6223c222008-05-20 05:22:08 +00001539 }
1540
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001541 if (CheckInitializerTypes(literalExpr, literalType, LParenLoc,
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00001542 DeclarationName()))
Steve Naroff58d18212008-01-09 20:58:06 +00001543 return true;
Steve Naroffe9b12192008-01-14 18:19:28 +00001544
Chris Lattner371f2582008-12-04 23:50:19 +00001545 bool isFileScope = getCurFunctionOrMethodDecl() == 0;
Steve Naroffe9b12192008-01-14 18:19:28 +00001546 if (isFileScope) { // 6.5.2.5p3
Steve Naroffd0091aa2008-01-10 22:15:12 +00001547 if (CheckForConstantInitializer(literalExpr, literalType))
1548 return true;
1549 }
Chris Lattner220ad7c2008-10-26 23:35:51 +00001550 return new CompoundLiteralExpr(LParenLoc, literalType, literalExpr,
1551 isFileScope);
Steve Naroff4aa88f82007-07-19 01:06:55 +00001552}
1553
1554Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +00001555ActOnInitList(SourceLocation LBraceLoc, ExprTy **initlist, unsigned NumInit,
Chris Lattner220ad7c2008-10-26 23:35:51 +00001556 InitListDesignations &Designators,
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001557 SourceLocation RBraceLoc) {
Steve Narofff0090632007-09-02 02:04:30 +00001558 Expr **InitList = reinterpret_cast<Expr**>(initlist);
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001559
Steve Naroff08d92e42007-09-15 18:49:24 +00001560 // Semantic analysis for initializers is done by ActOnDeclarator() and
Steve Naroffd35005e2007-09-03 01:24:23 +00001561 // CheckInitializer() - it requires knowledge of the object being intialized.
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001562
Chris Lattner418f6c72008-10-26 23:43:26 +00001563 InitListExpr *E = new InitListExpr(LBraceLoc, InitList, NumInit, RBraceLoc,
1564 Designators.hasAnyDesignators());
Chris Lattnerf0467b32008-04-02 04:24:33 +00001565 E->setType(Context.VoidTy); // FIXME: just a place holder for now.
1566 return E;
Steve Naroff4aa88f82007-07-19 01:06:55 +00001567}
1568
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00001569/// CheckCastTypes - Check type constraints for casting between types.
Daniel Dunbar58d5ebb2008-08-20 03:55:42 +00001570bool Sema::CheckCastTypes(SourceRange TyR, QualType castType, Expr *&castExpr) {
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00001571 UsualUnaryConversions(castExpr);
1572
1573 // C99 6.5.4p2: the cast type needs to be void or scalar and the expression
1574 // type needs to be scalar.
1575 if (castType->isVoidType()) {
1576 // Cast to void allows any expr type.
Douglas Gregor898574e2008-12-05 23:32:09 +00001577 } else if (castType->isDependentType() || castExpr->isTypeDependent()) {
1578 // We can't check any more until template instantiation time.
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00001579 } else if (!castType->isScalarType() && !castType->isVectorType()) {
1580 // GCC struct/union extension: allow cast to self.
1581 if (Context.getCanonicalType(castType) !=
1582 Context.getCanonicalType(castExpr->getType()) ||
1583 (!castType->isStructureType() && !castType->isUnionType())) {
1584 // Reject any other conversions to non-scalar types.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001585 return Diag(TyR.getBegin(), diag::err_typecheck_cond_expect_scalar)
Chris Lattnerd1625842008-11-24 06:25:27 +00001586 << castType << castExpr->getSourceRange();
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00001587 }
1588
1589 // accept this, but emit an ext-warn.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001590 Diag(TyR.getBegin(), diag::ext_typecheck_cast_nonscalar)
Chris Lattnerd1625842008-11-24 06:25:27 +00001591 << castType << castExpr->getSourceRange();
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00001592 } else if (!castExpr->getType()->isScalarType() &&
1593 !castExpr->getType()->isVectorType()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001594 return Diag(castExpr->getLocStart(),
1595 diag::err_typecheck_expect_scalar_operand)
Chris Lattnerd1625842008-11-24 06:25:27 +00001596 << castExpr->getType() << castExpr->getSourceRange();
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00001597 } else if (castExpr->getType()->isVectorType()) {
1598 if (CheckVectorCast(TyR, castExpr->getType(), castType))
1599 return true;
1600 } else if (castType->isVectorType()) {
1601 if (CheckVectorCast(TyR, castType, castExpr->getType()))
1602 return true;
1603 }
1604 return false;
1605}
1606
Chris Lattnerfe23e212007-12-20 00:44:32 +00001607bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty) {
Anders Carlssona64db8f2007-11-27 05:51:55 +00001608 assert(VectorTy->isVectorType() && "Not a vector type!");
1609
1610 if (Ty->isVectorType() || Ty->isIntegerType()) {
Chris Lattner98be4942008-03-05 18:54:05 +00001611 if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty))
Anders Carlssona64db8f2007-11-27 05:51:55 +00001612 return Diag(R.getBegin(),
1613 Ty->isVectorType() ?
1614 diag::err_invalid_conversion_between_vectors :
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001615 diag::err_invalid_conversion_between_vector_and_integer)
Chris Lattnerd1625842008-11-24 06:25:27 +00001616 << VectorTy << Ty << R;
Anders Carlssona64db8f2007-11-27 05:51:55 +00001617 } else
1618 return Diag(R.getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001619 diag::err_invalid_conversion_between_vector_and_scalar)
Chris Lattnerd1625842008-11-24 06:25:27 +00001620 << VectorTy << Ty << R;
Anders Carlssona64db8f2007-11-27 05:51:55 +00001621
1622 return false;
1623}
1624
Steve Naroff4aa88f82007-07-19 01:06:55 +00001625Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +00001626ActOnCastExpr(SourceLocation LParenLoc, TypeTy *Ty,
Reid Spencer5f016e22007-07-11 17:01:13 +00001627 SourceLocation RParenLoc, ExprTy *Op) {
Steve Narofff69936d2007-09-16 03:34:24 +00001628 assert((Ty != 0) && (Op != 0) && "ActOnCastExpr(): missing type or expr");
Steve Naroff16beff82007-07-16 23:25:18 +00001629
1630 Expr *castExpr = static_cast<Expr*>(Op);
1631 QualType castType = QualType::getFromOpaquePtr(Ty);
1632
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00001633 if (CheckCastTypes(SourceRange(LParenLoc, RParenLoc), castType, castExpr))
1634 return true;
Steve Naroffb2f9e512008-11-03 23:29:32 +00001635 return new CStyleCastExpr(castType, castExpr, castType, LParenLoc, RParenLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001636}
1637
Chris Lattnera21ddb32007-11-26 01:40:58 +00001638/// Note that lex is not null here, even if this is the gnu "x ?: y" extension.
1639/// In that case, lex = cond.
Reid Spencer5f016e22007-07-11 17:01:13 +00001640inline QualType Sema::CheckConditionalOperands( // C99 6.5.15
Steve Naroff49b45262007-07-13 16:58:59 +00001641 Expr *&cond, Expr *&lex, Expr *&rex, SourceLocation questionLoc) {
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001642 UsualUnaryConversions(cond);
1643 UsualUnaryConversions(lex);
1644 UsualUnaryConversions(rex);
1645 QualType condT = cond->getType();
1646 QualType lexT = lex->getType();
1647 QualType rexT = rex->getType();
1648
Reid Spencer5f016e22007-07-11 17:01:13 +00001649 // first, check the condition.
Douglas Gregor898574e2008-12-05 23:32:09 +00001650 if (!cond->isTypeDependent()) {
1651 if (!condT->isScalarType()) { // C99 6.5.15p2
1652 Diag(cond->getLocStart(), diag::err_typecheck_cond_expect_scalar) << condT;
1653 return QualType();
1654 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001655 }
Chris Lattner70d67a92008-01-06 22:42:25 +00001656
1657 // Now check the two expressions.
Douglas Gregor898574e2008-12-05 23:32:09 +00001658 if ((lex && lex->isTypeDependent()) || (rex && rex->isTypeDependent()))
1659 return Context.DependentTy;
1660
Chris Lattner70d67a92008-01-06 22:42:25 +00001661 // If both operands have arithmetic type, do the usual arithmetic conversions
1662 // to find a common type: C99 6.5.15p3,5.
1663 if (lexT->isArithmeticType() && rexT->isArithmeticType()) {
Steve Naroffa4332e22007-07-17 00:58:39 +00001664 UsualArithmeticConversions(lex, rex);
1665 return lex->getType();
1666 }
Chris Lattner70d67a92008-01-06 22:42:25 +00001667
1668 // If both operands are the same structure or union type, the result is that
1669 // type.
Chris Lattner2dcb6bb2007-07-31 21:27:01 +00001670 if (const RecordType *LHSRT = lexT->getAsRecordType()) { // C99 6.5.15p3
Chris Lattner70d67a92008-01-06 22:42:25 +00001671 if (const RecordType *RHSRT = rexT->getAsRecordType())
Chris Lattnera21ddb32007-11-26 01:40:58 +00001672 if (LHSRT->getDecl() == RHSRT->getDecl())
Chris Lattner70d67a92008-01-06 22:42:25 +00001673 // "If both the operands have structure or union type, the result has
1674 // that type." This implies that CV qualifiers are dropped.
1675 return lexT.getUnqualifiedType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001676 }
Chris Lattner70d67a92008-01-06 22:42:25 +00001677
1678 // C99 6.5.15p5: "If both operands have void type, the result has void type."
Steve Naroffe701c0a2008-05-12 21:44:38 +00001679 // The following || allows only one side to be void (a GCC-ism).
1680 if (lexT->isVoidType() || rexT->isVoidType()) {
Eli Friedman0e724012008-06-04 19:47:51 +00001681 if (!lexT->isVoidType())
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001682 Diag(rex->getLocStart(), diag::ext_typecheck_cond_one_void)
1683 << rex->getSourceRange();
Steve Naroffe701c0a2008-05-12 21:44:38 +00001684 if (!rexT->isVoidType())
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001685 Diag(lex->getLocStart(), diag::ext_typecheck_cond_one_void)
1686 << lex->getSourceRange();
Eli Friedman0e724012008-06-04 19:47:51 +00001687 ImpCastExprToType(lex, Context.VoidTy);
1688 ImpCastExprToType(rex, Context.VoidTy);
1689 return Context.VoidTy;
Steve Naroffe701c0a2008-05-12 21:44:38 +00001690 }
Steve Naroffb6d54e52008-01-08 01:11:38 +00001691 // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has
1692 // the type of the other operand."
Daniel Dunbar5e155f02008-09-11 23:12:46 +00001693 if ((lexT->isPointerType() || lexT->isBlockPointerType() ||
1694 Context.isObjCObjectPointerType(lexT)) &&
Anders Carlssond2652772008-12-01 06:28:23 +00001695 rex->isNullPointerConstant(Context)) {
Chris Lattner1e0a3902008-01-16 19:17:22 +00001696 ImpCastExprToType(rex, lexT); // promote the null to a pointer.
Steve Naroffb6d54e52008-01-08 01:11:38 +00001697 return lexT;
1698 }
Daniel Dunbar5e155f02008-09-11 23:12:46 +00001699 if ((rexT->isPointerType() || rexT->isBlockPointerType() ||
1700 Context.isObjCObjectPointerType(rexT)) &&
Anders Carlssond2652772008-12-01 06:28:23 +00001701 lex->isNullPointerConstant(Context)) {
Chris Lattner1e0a3902008-01-16 19:17:22 +00001702 ImpCastExprToType(lex, rexT); // promote the null to a pointer.
Steve Naroffb6d54e52008-01-08 01:11:38 +00001703 return rexT;
1704 }
Chris Lattnerbd57d362008-01-06 22:50:31 +00001705 // Handle the case where both operands are pointers before we handle null
1706 // pointer constants in case both operands are null pointer constants.
Chris Lattner2dcb6bb2007-07-31 21:27:01 +00001707 if (const PointerType *LHSPT = lexT->getAsPointerType()) { // C99 6.5.15p3,6
1708 if (const PointerType *RHSPT = rexT->getAsPointerType()) {
1709 // get the "pointed to" types
1710 QualType lhptee = LHSPT->getPointeeType();
1711 QualType rhptee = RHSPT->getPointeeType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001712
Chris Lattner2dcb6bb2007-07-31 21:27:01 +00001713 // ignore qualifiers on void (C99 6.5.15p3, clause 6)
1714 if (lhptee->isVoidType() &&
Chris Lattnerd805bec2008-04-02 06:59:01 +00001715 rhptee->isIncompleteOrObjectType()) {
Chris Lattnerf46699c2008-02-20 20:55:12 +00001716 // Figure out necessary qualifiers (C99 6.5.15p6)
1717 QualType destPointee=lhptee.getQualifiedType(rhptee.getCVRQualifiers());
Eli Friedmana541d532008-02-10 22:59:36 +00001718 QualType destType = Context.getPointerType(destPointee);
1719 ImpCastExprToType(lex, destType); // add qualifiers if necessary
1720 ImpCastExprToType(rex, destType); // promote to void*
1721 return destType;
1722 }
Chris Lattnerd805bec2008-04-02 06:59:01 +00001723 if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) {
Chris Lattnerf46699c2008-02-20 20:55:12 +00001724 QualType destPointee=rhptee.getQualifiedType(lhptee.getCVRQualifiers());
Eli Friedmana541d532008-02-10 22:59:36 +00001725 QualType destType = Context.getPointerType(destPointee);
1726 ImpCastExprToType(lex, destType); // add qualifiers if necessary
1727 ImpCastExprToType(rex, destType); // promote to void*
1728 return destType;
1729 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001730
Daniel Dunbar5e155f02008-09-11 23:12:46 +00001731 QualType compositeType = lexT;
1732
1733 // If either type is an Objective-C object type then check
1734 // compatibility according to Objective-C.
1735 if (Context.isObjCObjectPointerType(lexT) ||
1736 Context.isObjCObjectPointerType(rexT)) {
1737 // If both operands are interfaces and either operand can be
1738 // assigned to the other, use that type as the composite
1739 // type. This allows
1740 // xxx ? (A*) a : (B*) b
1741 // where B is a subclass of A.
1742 //
1743 // Additionally, as for assignment, if either type is 'id'
1744 // allow silent coercion. Finally, if the types are
1745 // incompatible then make sure to use 'id' as the composite
1746 // type so the result is acceptable for sending messages to.
1747
1748 // FIXME: This code should not be localized to here. Also this
1749 // should use a compatible check instead of abusing the
1750 // canAssignObjCInterfaces code.
1751 const ObjCInterfaceType* LHSIface = lhptee->getAsObjCInterfaceType();
1752 const ObjCInterfaceType* RHSIface = rhptee->getAsObjCInterfaceType();
1753 if (LHSIface && RHSIface &&
1754 Context.canAssignObjCInterfaces(LHSIface, RHSIface)) {
1755 compositeType = lexT;
1756 } else if (LHSIface && RHSIface &&
Douglas Gregor7ffd0de2008-11-26 06:43:45 +00001757 Context.canAssignObjCInterfaces(RHSIface, LHSIface)) {
Daniel Dunbar5e155f02008-09-11 23:12:46 +00001758 compositeType = rexT;
1759 } else if (Context.isObjCIdType(lhptee) ||
1760 Context.isObjCIdType(rhptee)) {
1761 // FIXME: This code looks wrong, because isObjCIdType checks
1762 // the struct but getObjCIdType returns the pointer to
1763 // struct. This is horrible and should be fixed.
1764 compositeType = Context.getObjCIdType();
1765 } else {
1766 QualType incompatTy = Context.getObjCIdType();
1767 ImpCastExprToType(lex, incompatTy);
1768 ImpCastExprToType(rex, incompatTy);
1769 return incompatTy;
1770 }
1771 } else if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
1772 rhptee.getUnqualifiedType())) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00001773 Diag(questionLoc, diag::warn_typecheck_cond_incompatible_pointers)
Chris Lattnerd1625842008-11-24 06:25:27 +00001774 << lexT << rexT << lex->getSourceRange() << rex->getSourceRange();
Daniel Dunbar5e155f02008-09-11 23:12:46 +00001775 // In this situation, we assume void* type. No especially good
1776 // reason, but this is what gcc does, and we do have to pick
1777 // to get a consistent AST.
1778 QualType incompatTy = Context.getPointerType(Context.VoidTy);
Daniel Dunbara56f7462008-08-26 00:41:39 +00001779 ImpCastExprToType(lex, incompatTy);
1780 ImpCastExprToType(rex, incompatTy);
1781 return incompatTy;
Chris Lattner2dcb6bb2007-07-31 21:27:01 +00001782 }
1783 // The pointer types are compatible.
Chris Lattner73d0d4f2007-08-30 17:45:32 +00001784 // C99 6.5.15p6: If both operands are pointers to compatible types *or* to
1785 // differently qualified versions of compatible types, the result type is
1786 // a pointer to an appropriately qualified version of the *composite*
1787 // type.
Eli Friedman5835ea22008-05-16 20:37:07 +00001788 // FIXME: Need to calculate the composite type.
Eli Friedmana541d532008-02-10 22:59:36 +00001789 // FIXME: Need to add qualifiers
Eli Friedman5835ea22008-05-16 20:37:07 +00001790 ImpCastExprToType(lex, compositeType);
1791 ImpCastExprToType(rex, compositeType);
1792 return compositeType;
Reid Spencer5f016e22007-07-11 17:01:13 +00001793 }
1794 }
Daniel Dunbar5e155f02008-09-11 23:12:46 +00001795 // Need to handle "id<xx>" explicitly. Unlike "id", whose canonical type
1796 // evaluates to "struct objc_object *" (and is handled above when comparing
1797 // id with statically typed objects).
1798 if (lexT->isObjCQualifiedIdType() || rexT->isObjCQualifiedIdType()) {
1799 // GCC allows qualified id and any Objective-C type to devolve to
1800 // id. Currently localizing to here until clear this should be
1801 // part of ObjCQualifiedIdTypesAreCompatible.
1802 if (ObjCQualifiedIdTypesAreCompatible(lexT, rexT, true) ||
1803 (lexT->isObjCQualifiedIdType() &&
1804 Context.isObjCObjectPointerType(rexT)) ||
1805 (rexT->isObjCQualifiedIdType() &&
1806 Context.isObjCObjectPointerType(lexT))) {
1807 // FIXME: This is not the correct composite type. This only
1808 // happens to work because id can more or less be used anywhere,
1809 // however this may change the type of method sends.
1810 // FIXME: gcc adds some type-checking of the arguments and emits
1811 // (confusing) incompatible comparison warnings in some
1812 // cases. Investigate.
1813 QualType compositeType = Context.getObjCIdType();
1814 ImpCastExprToType(lex, compositeType);
1815 ImpCastExprToType(rex, compositeType);
1816 return compositeType;
1817 }
1818 }
1819
Steve Naroff61f40a22008-09-10 19:17:48 +00001820 // Selection between block pointer types is ok as long as they are the same.
1821 if (lexT->isBlockPointerType() && rexT->isBlockPointerType() &&
1822 Context.getCanonicalType(lexT) == Context.getCanonicalType(rexT))
1823 return lexT;
1824
Chris Lattner70d67a92008-01-06 22:42:25 +00001825 // Otherwise, the operands are not compatible.
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00001826 Diag(questionLoc, diag::err_typecheck_cond_incompatible_operands)
Chris Lattnerd1625842008-11-24 06:25:27 +00001827 << lexT << rexT << lex->getSourceRange() << rex->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00001828 return QualType();
1829}
1830
Steve Narofff69936d2007-09-16 03:34:24 +00001831/// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null
Reid Spencer5f016e22007-07-11 17:01:13 +00001832/// in the case of a the GNU conditional expr extension.
Steve Narofff69936d2007-09-16 03:34:24 +00001833Action::ExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +00001834 SourceLocation ColonLoc,
1835 ExprTy *Cond, ExprTy *LHS,
1836 ExprTy *RHS) {
Chris Lattner26824902007-07-16 21:39:03 +00001837 Expr *CondExpr = (Expr *) Cond;
1838 Expr *LHSExpr = (Expr *) LHS, *RHSExpr = (Expr *) RHS;
Chris Lattnera21ddb32007-11-26 01:40:58 +00001839
1840 // If this is the gnu "x ?: y" extension, analyze the types as though the LHS
1841 // was the condition.
1842 bool isLHSNull = LHSExpr == 0;
1843 if (isLHSNull)
1844 LHSExpr = CondExpr;
1845
Chris Lattner26824902007-07-16 21:39:03 +00001846 QualType result = CheckConditionalOperands(CondExpr, LHSExpr,
1847 RHSExpr, QuestionLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001848 if (result.isNull())
1849 return true;
Chris Lattnera21ddb32007-11-26 01:40:58 +00001850 return new ConditionalOperator(CondExpr, isLHSNull ? 0 : LHSExpr,
1851 RHSExpr, result);
Reid Spencer5f016e22007-07-11 17:01:13 +00001852}
1853
Reid Spencer5f016e22007-07-11 17:01:13 +00001854
1855// CheckPointerTypesForAssignment - This is a very tricky routine (despite
1856// being closely modeled after the C99 spec:-). The odd characteristic of this
1857// routine is it effectively iqnores the qualifiers on the top level pointee.
1858// This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3].
1859// FIXME: add a couple examples in this comment.
Chris Lattner5cf216b2008-01-04 18:04:52 +00001860Sema::AssignConvertType
Reid Spencer5f016e22007-07-11 17:01:13 +00001861Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) {
1862 QualType lhptee, rhptee;
1863
1864 // get the "pointed to" type (ignoring qualifiers at the top level)
Chris Lattner2dcb6bb2007-07-31 21:27:01 +00001865 lhptee = lhsType->getAsPointerType()->getPointeeType();
1866 rhptee = rhsType->getAsPointerType()->getPointeeType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001867
1868 // make sure we operate on the canonical type
Chris Lattnerb77792e2008-07-26 22:17:49 +00001869 lhptee = Context.getCanonicalType(lhptee);
1870 rhptee = Context.getCanonicalType(rhptee);
Reid Spencer5f016e22007-07-11 17:01:13 +00001871
Chris Lattner5cf216b2008-01-04 18:04:52 +00001872 AssignConvertType ConvTy = Compatible;
Reid Spencer5f016e22007-07-11 17:01:13 +00001873
1874 // C99 6.5.16.1p1: This following citation is common to constraints
1875 // 3 & 4 (below). ...and the type *pointed to* by the left has all the
1876 // qualifiers of the type *pointed to* by the right;
Chris Lattnerf46699c2008-02-20 20:55:12 +00001877 // FIXME: Handle ASQualType
Douglas Gregor98cd5992008-10-21 23:43:52 +00001878 if (!lhptee.isAtLeastAsQualifiedAs(rhptee))
Chris Lattner5cf216b2008-01-04 18:04:52 +00001879 ConvTy = CompatiblePointerDiscardsQualifiers;
Reid Spencer5f016e22007-07-11 17:01:13 +00001880
1881 // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or
1882 // incomplete type and the other is a pointer to a qualified or unqualified
1883 // version of void...
Chris Lattnerbfe639e2008-01-03 22:56:36 +00001884 if (lhptee->isVoidType()) {
Chris Lattnerd805bec2008-04-02 06:59:01 +00001885 if (rhptee->isIncompleteOrObjectType())
Chris Lattner5cf216b2008-01-04 18:04:52 +00001886 return ConvTy;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00001887
1888 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattnerd805bec2008-04-02 06:59:01 +00001889 assert(rhptee->isFunctionType());
1890 return FunctionVoidPointer;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00001891 }
1892
1893 if (rhptee->isVoidType()) {
Chris Lattnerd805bec2008-04-02 06:59:01 +00001894 if (lhptee->isIncompleteOrObjectType())
Chris Lattner5cf216b2008-01-04 18:04:52 +00001895 return ConvTy;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00001896
1897 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattnerd805bec2008-04-02 06:59:01 +00001898 assert(lhptee->isFunctionType());
1899 return FunctionVoidPointer;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00001900 }
Eli Friedman3d815e72008-08-22 00:56:42 +00001901
1902 // Check for ObjC interfaces
1903 const ObjCInterfaceType* LHSIface = lhptee->getAsObjCInterfaceType();
1904 const ObjCInterfaceType* RHSIface = rhptee->getAsObjCInterfaceType();
1905 if (LHSIface && RHSIface &&
1906 Context.canAssignObjCInterfaces(LHSIface, RHSIface))
1907 return ConvTy;
1908
1909 // ID acts sort of like void* for ObjC interfaces
1910 if (LHSIface && Context.isObjCIdType(rhptee))
1911 return ConvTy;
1912 if (RHSIface && Context.isObjCIdType(lhptee))
1913 return ConvTy;
1914
Reid Spencer5f016e22007-07-11 17:01:13 +00001915 // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or
1916 // unqualified versions of compatible types, ...
Chris Lattnerbfe639e2008-01-03 22:56:36 +00001917 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
1918 rhptee.getUnqualifiedType()))
1919 return IncompatiblePointer; // this "trumps" PointerAssignDiscardsQualifiers
Chris Lattner5cf216b2008-01-04 18:04:52 +00001920 return ConvTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00001921}
1922
Steve Naroff1c7d0672008-09-04 15:10:53 +00001923/// CheckBlockPointerTypesForAssignment - This routine determines whether two
1924/// block pointer types are compatible or whether a block and normal pointer
1925/// are compatible. It is more restrict than comparing two function pointer
1926// types.
1927Sema::AssignConvertType
1928Sema::CheckBlockPointerTypesForAssignment(QualType lhsType,
1929 QualType rhsType) {
1930 QualType lhptee, rhptee;
1931
1932 // get the "pointed to" type (ignoring qualifiers at the top level)
1933 lhptee = lhsType->getAsBlockPointerType()->getPointeeType();
1934 rhptee = rhsType->getAsBlockPointerType()->getPointeeType();
1935
1936 // make sure we operate on the canonical type
1937 lhptee = Context.getCanonicalType(lhptee);
1938 rhptee = Context.getCanonicalType(rhptee);
1939
1940 AssignConvertType ConvTy = Compatible;
1941
1942 // For blocks we enforce that qualifiers are identical.
1943 if (lhptee.getCVRQualifiers() != rhptee.getCVRQualifiers())
1944 ConvTy = CompatiblePointerDiscardsQualifiers;
1945
1946 if (!Context.typesAreBlockCompatible(lhptee, rhptee))
1947 return IncompatibleBlockPointer;
1948 return ConvTy;
1949}
1950
Reid Spencer5f016e22007-07-11 17:01:13 +00001951/// CheckAssignmentConstraints (C99 6.5.16) - This routine currently
1952/// has code to accommodate several GCC extensions when type checking
1953/// pointers. Here are some objectionable examples that GCC considers warnings:
1954///
1955/// int a, *pint;
1956/// short *pshort;
1957/// struct foo *pfoo;
1958///
1959/// pint = pshort; // warning: assignment from incompatible pointer type
1960/// a = pint; // warning: assignment makes integer from pointer without a cast
1961/// pint = a; // warning: assignment makes pointer from integer without a cast
1962/// pint = pfoo; // warning: assignment from incompatible pointer type
1963///
1964/// As a result, the code for dealing with pointers is more complex than the
1965/// C99 spec dictates.
Reid Spencer5f016e22007-07-11 17:01:13 +00001966///
Chris Lattner5cf216b2008-01-04 18:04:52 +00001967Sema::AssignConvertType
Reid Spencer5f016e22007-07-11 17:01:13 +00001968Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) {
Chris Lattnerfc144e22008-01-04 23:18:45 +00001969 // Get canonical types. We're not formatting these types, just comparing
1970 // them.
Chris Lattnerb77792e2008-07-26 22:17:49 +00001971 lhsType = Context.getCanonicalType(lhsType).getUnqualifiedType();
1972 rhsType = Context.getCanonicalType(rhsType).getUnqualifiedType();
Eli Friedmanf8f873d2008-05-30 18:07:22 +00001973
1974 if (lhsType == rhsType)
Chris Lattnerd2656dd2008-01-07 17:51:46 +00001975 return Compatible; // Common case: fast path an exact match.
Steve Naroff700204c2007-07-24 21:46:40 +00001976
Douglas Gregor9d293df2008-10-28 00:22:11 +00001977 // If the left-hand side is a reference type, then we are in a
1978 // (rare!) case where we've allowed the use of references in C,
1979 // e.g., as a parameter type in a built-in function. In this case,
1980 // just make sure that the type referenced is compatible with the
1981 // right-hand side type. The caller is responsible for adjusting
1982 // lhsType so that the resulting expression does not have reference
1983 // type.
1984 if (const ReferenceType *lhsTypeRef = lhsType->getAsReferenceType()) {
1985 if (Context.typesAreCompatible(lhsTypeRef->getPointeeType(), rhsType))
Anders Carlsson793680e2007-10-12 23:56:29 +00001986 return Compatible;
Chris Lattnerfc144e22008-01-04 23:18:45 +00001987 return Incompatible;
Fariborz Jahanian411f3732007-12-19 17:45:58 +00001988 }
Eli Friedmanf8f873d2008-05-30 18:07:22 +00001989
Chris Lattnereca7be62008-04-07 05:30:13 +00001990 if (lhsType->isObjCQualifiedIdType() || rhsType->isObjCQualifiedIdType()) {
1991 if (ObjCQualifiedIdTypesAreCompatible(lhsType, rhsType, false))
Fariborz Jahanian411f3732007-12-19 17:45:58 +00001992 return Compatible;
Steve Naroff20373222008-06-03 14:04:54 +00001993 // Relax integer conversions like we do for pointers below.
1994 if (rhsType->isIntegerType())
1995 return IntToPointer;
1996 if (lhsType->isIntegerType())
1997 return PointerToInt;
Steve Naroff39579072008-10-14 22:18:38 +00001998 return IncompatibleObjCQualifiedId;
Fariborz Jahanian411f3732007-12-19 17:45:58 +00001999 }
Chris Lattnere8b3e962008-01-04 23:32:24 +00002000
Nate Begemanbe2341d2008-07-14 18:02:46 +00002001 if (lhsType->isVectorType() || rhsType->isVectorType()) {
Nate Begeman213541a2008-04-18 23:10:10 +00002002 // For ExtVector, allow vector splats; float -> <n x float>
Nate Begemanbe2341d2008-07-14 18:02:46 +00002003 if (const ExtVectorType *LV = lhsType->getAsExtVectorType())
2004 if (LV->getElementType() == rhsType)
Chris Lattnere8b3e962008-01-04 23:32:24 +00002005 return Compatible;
Eli Friedmanf8f873d2008-05-30 18:07:22 +00002006
Nate Begemanbe2341d2008-07-14 18:02:46 +00002007 // If we are allowing lax vector conversions, and LHS and RHS are both
2008 // vectors, the total size only needs to be the same. This is a bitcast;
2009 // no bits are changed but the result type is different.
Chris Lattnere8b3e962008-01-04 23:32:24 +00002010 if (getLangOptions().LaxVectorConversions &&
2011 lhsType->isVectorType() && rhsType->isVectorType()) {
Nate Begemanbe2341d2008-07-14 18:02:46 +00002012 if (Context.getTypeSize(lhsType) == Context.getTypeSize(rhsType))
2013 return Compatible;
Chris Lattnere8b3e962008-01-04 23:32:24 +00002014 }
2015 return Incompatible;
2016 }
Eli Friedmanf8f873d2008-05-30 18:07:22 +00002017
Chris Lattnere8b3e962008-01-04 23:32:24 +00002018 if (lhsType->isArithmeticType() && rhsType->isArithmeticType())
Reid Spencer5f016e22007-07-11 17:01:13 +00002019 return Compatible;
Eli Friedmanf8f873d2008-05-30 18:07:22 +00002020
Chris Lattner78eca282008-04-07 06:49:41 +00002021 if (isa<PointerType>(lhsType)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002022 if (rhsType->isIntegerType())
Chris Lattnerb7b61152008-01-04 18:22:42 +00002023 return IntToPointer;
Eli Friedmanf8f873d2008-05-30 18:07:22 +00002024
Chris Lattner78eca282008-04-07 06:49:41 +00002025 if (isa<PointerType>(rhsType))
Reid Spencer5f016e22007-07-11 17:01:13 +00002026 return CheckPointerTypesForAssignment(lhsType, rhsType);
Steve Naroff1c7d0672008-09-04 15:10:53 +00002027
Steve Naroffb4406862008-09-29 18:10:17 +00002028 if (rhsType->getAsBlockPointerType()) {
Steve Naroffdd972f22008-09-05 22:11:13 +00002029 if (lhsType->getAsPointerType()->getPointeeType()->isVoidType())
Douglas Gregor63a94902008-11-27 00:44:28 +00002030 return Compatible;
Steve Naroffb4406862008-09-29 18:10:17 +00002031
2032 // Treat block pointers as objects.
2033 if (getLangOptions().ObjC1 &&
2034 lhsType == Context.getCanonicalType(Context.getObjCIdType()))
2035 return Compatible;
2036 }
Steve Naroff1c7d0672008-09-04 15:10:53 +00002037 return Incompatible;
2038 }
2039
2040 if (isa<BlockPointerType>(lhsType)) {
2041 if (rhsType->isIntegerType())
2042 return IntToPointer;
2043
Steve Naroffb4406862008-09-29 18:10:17 +00002044 // Treat block pointers as objects.
2045 if (getLangOptions().ObjC1 &&
2046 rhsType == Context.getCanonicalType(Context.getObjCIdType()))
2047 return Compatible;
2048
Steve Naroff1c7d0672008-09-04 15:10:53 +00002049 if (rhsType->isBlockPointerType())
2050 return CheckBlockPointerTypesForAssignment(lhsType, rhsType);
2051
2052 if (const PointerType *RHSPT = rhsType->getAsPointerType()) {
2053 if (RHSPT->getPointeeType()->isVoidType())
Douglas Gregor63a94902008-11-27 00:44:28 +00002054 return Compatible;
Steve Naroff1c7d0672008-09-04 15:10:53 +00002055 }
Chris Lattnerfc144e22008-01-04 23:18:45 +00002056 return Incompatible;
2057 }
2058
Chris Lattner78eca282008-04-07 06:49:41 +00002059 if (isa<PointerType>(rhsType)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002060 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer.
Eli Friedmanf8f873d2008-05-30 18:07:22 +00002061 if (lhsType == Context.BoolTy)
2062 return Compatible;
2063
2064 if (lhsType->isIntegerType())
Chris Lattnerb7b61152008-01-04 18:22:42 +00002065 return PointerToInt;
Reid Spencer5f016e22007-07-11 17:01:13 +00002066
Chris Lattner78eca282008-04-07 06:49:41 +00002067 if (isa<PointerType>(lhsType))
Reid Spencer5f016e22007-07-11 17:01:13 +00002068 return CheckPointerTypesForAssignment(lhsType, rhsType);
Steve Naroff1c7d0672008-09-04 15:10:53 +00002069
2070 if (isa<BlockPointerType>(lhsType) &&
2071 rhsType->getAsPointerType()->getPointeeType()->isVoidType())
Douglas Gregor63a94902008-11-27 00:44:28 +00002072 return Compatible;
Chris Lattnerfc144e22008-01-04 23:18:45 +00002073 return Incompatible;
Chris Lattnerfc144e22008-01-04 23:18:45 +00002074 }
Eli Friedmanf8f873d2008-05-30 18:07:22 +00002075
Chris Lattnerfc144e22008-01-04 23:18:45 +00002076 if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) {
Chris Lattner78eca282008-04-07 06:49:41 +00002077 if (Context.typesAreCompatible(lhsType, rhsType))
Reid Spencer5f016e22007-07-11 17:01:13 +00002078 return Compatible;
Reid Spencer5f016e22007-07-11 17:01:13 +00002079 }
2080 return Incompatible;
2081}
2082
Chris Lattner5cf216b2008-01-04 18:04:52 +00002083Sema::AssignConvertType
Steve Naroff90045e82007-07-13 23:32:42 +00002084Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) {
Douglas Gregor98cd5992008-10-21 23:43:52 +00002085 if (getLangOptions().CPlusPlus) {
2086 if (!lhsType->isRecordType()) {
2087 // C++ 5.17p3: If the left operand is not of class type, the
2088 // expression is implicitly converted (C++ 4) to the
2089 // cv-unqualified type of the left operand.
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002090 if (PerformImplicitConversion(rExpr, lhsType.getUnqualifiedType()))
Douglas Gregor98cd5992008-10-21 23:43:52 +00002091 return Incompatible;
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002092 else
Douglas Gregor98cd5992008-10-21 23:43:52 +00002093 return Compatible;
Douglas Gregor98cd5992008-10-21 23:43:52 +00002094 }
2095
2096 // FIXME: Currently, we fall through and treat C++ classes like C
2097 // structures.
2098 }
2099
Steve Naroff529a4ad2007-11-27 17:58:44 +00002100 // C99 6.5.16.1p1: the left operand is a pointer and the right is
2101 // a null pointer constant.
Steve Naroff39218df2008-09-04 16:56:14 +00002102 if ((lhsType->isPointerType() || lhsType->isObjCQualifiedIdType() ||
2103 lhsType->isBlockPointerType())
Fariborz Jahanian9d3185e2008-01-03 18:46:52 +00002104 && rExpr->isNullPointerConstant(Context)) {
Chris Lattner1e0a3902008-01-16 19:17:22 +00002105 ImpCastExprToType(rExpr, lhsType);
Steve Naroff529a4ad2007-11-27 17:58:44 +00002106 return Compatible;
2107 }
Steve Naroff1c7d0672008-09-04 15:10:53 +00002108
2109 // We don't allow conversion of non-null-pointer constants to integers.
2110 if (lhsType->isBlockPointerType() && rExpr->getType()->isIntegerType())
2111 return IntToBlockPointer;
2112
Chris Lattner943140e2007-10-16 02:55:40 +00002113 // This check seems unnatural, however it is necessary to ensure the proper
Steve Naroff90045e82007-07-13 23:32:42 +00002114 // conversion of functions/arrays. If the conversion were done for all
Steve Naroff08d92e42007-09-15 18:49:24 +00002115 // DeclExpr's (created by ActOnIdentifierExpr), it would mess up the unary
Steve Naroff90045e82007-07-13 23:32:42 +00002116 // expressions that surpress this implicit conversion (&, sizeof).
Chris Lattner943140e2007-10-16 02:55:40 +00002117 //
Douglas Gregor9d293df2008-10-28 00:22:11 +00002118 // Suppress this for references: C++ 8.5.3p5.
Chris Lattner943140e2007-10-16 02:55:40 +00002119 if (!lhsType->isReferenceType())
2120 DefaultFunctionArrayConversion(rExpr);
Steve Narofff1120de2007-08-24 22:33:52 +00002121
Chris Lattner5cf216b2008-01-04 18:04:52 +00002122 Sema::AssignConvertType result =
2123 CheckAssignmentConstraints(lhsType, rExpr->getType());
Steve Narofff1120de2007-08-24 22:33:52 +00002124
2125 // C99 6.5.16.1p2: The value of the right operand is converted to the
2126 // type of the assignment expression.
Douglas Gregor9d293df2008-10-28 00:22:11 +00002127 // CheckAssignmentConstraints allows the left-hand side to be a reference,
2128 // so that we can use references in built-in functions even in C.
2129 // The getNonReferenceType() call makes sure that the resulting expression
2130 // does not have reference type.
Steve Narofff1120de2007-08-24 22:33:52 +00002131 if (rExpr->getType() != lhsType)
Douglas Gregor9d293df2008-10-28 00:22:11 +00002132 ImpCastExprToType(rExpr, lhsType.getNonReferenceType());
Steve Narofff1120de2007-08-24 22:33:52 +00002133 return result;
Steve Naroff90045e82007-07-13 23:32:42 +00002134}
2135
Chris Lattner5cf216b2008-01-04 18:04:52 +00002136Sema::AssignConvertType
Steve Naroff90045e82007-07-13 23:32:42 +00002137Sema::CheckCompoundAssignmentConstraints(QualType lhsType, QualType rhsType) {
2138 return CheckAssignmentConstraints(lhsType, rhsType);
2139}
2140
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002141QualType Sema::InvalidOperands(SourceLocation Loc, Expr *&lex, Expr *&rex) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00002142 Diag(Loc, diag::err_typecheck_invalid_operands)
Chris Lattner22caddc2008-11-23 09:13:29 +00002143 << lex->getType() << rex->getType()
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00002144 << lex->getSourceRange() << rex->getSourceRange();
Chris Lattnerca5eede2007-12-12 05:47:28 +00002145 return QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00002146}
2147
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002148inline QualType Sema::CheckVectorOperands(SourceLocation Loc, Expr *&lex,
Steve Naroff49b45262007-07-13 16:58:59 +00002149 Expr *&rex) {
Nate Begeman1330b0e2008-04-04 01:30:25 +00002150 // For conversion purposes, we ignore any qualifiers.
2151 // For example, "const float" and "float" are equivalent.
Chris Lattnerb77792e2008-07-26 22:17:49 +00002152 QualType lhsType =
2153 Context.getCanonicalType(lex->getType()).getUnqualifiedType();
2154 QualType rhsType =
2155 Context.getCanonicalType(rex->getType()).getUnqualifiedType();
Reid Spencer5f016e22007-07-11 17:01:13 +00002156
Nate Begemanbe2341d2008-07-14 18:02:46 +00002157 // If the vector types are identical, return.
Nate Begeman1330b0e2008-04-04 01:30:25 +00002158 if (lhsType == rhsType)
Reid Spencer5f016e22007-07-11 17:01:13 +00002159 return lhsType;
Nate Begeman4119d1a2007-12-30 02:59:45 +00002160
Nate Begemanbe2341d2008-07-14 18:02:46 +00002161 // Handle the case of a vector & extvector type of the same size and element
2162 // type. It would be nice if we only had one vector type someday.
2163 if (getLangOptions().LaxVectorConversions)
2164 if (const VectorType *LV = lhsType->getAsVectorType())
2165 if (const VectorType *RV = rhsType->getAsVectorType())
2166 if (LV->getElementType() == RV->getElementType() &&
2167 LV->getNumElements() == RV->getNumElements())
2168 return lhsType->isExtVectorType() ? lhsType : rhsType;
2169
2170 // If the lhs is an extended vector and the rhs is a scalar of the same type
2171 // or a literal, promote the rhs to the vector type.
Nate Begeman213541a2008-04-18 23:10:10 +00002172 if (const ExtVectorType *V = lhsType->getAsExtVectorType()) {
Nate Begemanbe2341d2008-07-14 18:02:46 +00002173 QualType eltType = V->getElementType();
2174
2175 if ((eltType->getAsBuiltinType() == rhsType->getAsBuiltinType()) ||
2176 (eltType->isIntegerType() && isa<IntegerLiteral>(rex)) ||
2177 (eltType->isFloatingType() && isa<FloatingLiteral>(rex))) {
Chris Lattner1e0a3902008-01-16 19:17:22 +00002178 ImpCastExprToType(rex, lhsType);
Nate Begeman4119d1a2007-12-30 02:59:45 +00002179 return lhsType;
2180 }
2181 }
2182
Nate Begemanbe2341d2008-07-14 18:02:46 +00002183 // If the rhs is an extended vector and the lhs is a scalar of the same type,
Nate Begeman4119d1a2007-12-30 02:59:45 +00002184 // promote the lhs to the vector type.
Nate Begeman213541a2008-04-18 23:10:10 +00002185 if (const ExtVectorType *V = rhsType->getAsExtVectorType()) {
Nate Begemanbe2341d2008-07-14 18:02:46 +00002186 QualType eltType = V->getElementType();
2187
2188 if ((eltType->getAsBuiltinType() == lhsType->getAsBuiltinType()) ||
2189 (eltType->isIntegerType() && isa<IntegerLiteral>(lex)) ||
2190 (eltType->isFloatingType() && isa<FloatingLiteral>(lex))) {
Chris Lattner1e0a3902008-01-16 19:17:22 +00002191 ImpCastExprToType(lex, rhsType);
Nate Begeman4119d1a2007-12-30 02:59:45 +00002192 return rhsType;
2193 }
2194 }
2195
Reid Spencer5f016e22007-07-11 17:01:13 +00002196 // You cannot convert between vector values of different size.
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00002197 Diag(Loc, diag::err_typecheck_vector_not_convertable)
Chris Lattnerd1625842008-11-24 06:25:27 +00002198 << lex->getType() << rex->getType()
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00002199 << lex->getSourceRange() << rex->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00002200 return QualType();
2201}
2202
2203inline QualType Sema::CheckMultiplyDivideOperands(
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002204 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00002205{
Steve Naroff90045e82007-07-13 23:32:42 +00002206 QualType lhsType = lex->getType(), rhsType = rex->getType();
2207
2208 if (lhsType->isVectorType() || rhsType->isVectorType())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002209 return CheckVectorOperands(Loc, lex, rex);
Steve Naroff49b45262007-07-13 16:58:59 +00002210
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00002211 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Reid Spencer5f016e22007-07-11 17:01:13 +00002212
Steve Naroffa4332e22007-07-17 00:58:39 +00002213 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00002214 return compType;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002215 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00002216}
2217
2218inline QualType Sema::CheckRemainderOperands(
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002219 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00002220{
Steve Naroff90045e82007-07-13 23:32:42 +00002221 QualType lhsType = lex->getType(), rhsType = rex->getType();
2222
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00002223 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Reid Spencer5f016e22007-07-11 17:01:13 +00002224
Steve Naroffa4332e22007-07-17 00:58:39 +00002225 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00002226 return compType;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002227 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00002228}
2229
2230inline QualType Sema::CheckAdditionOperands( // C99 6.5.6
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002231 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00002232{
Steve Naroff3e5e5562007-07-16 22:23:01 +00002233 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002234 return CheckVectorOperands(Loc, lex, rex);
Steve Naroff49b45262007-07-13 16:58:59 +00002235
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00002236 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Eli Friedmand72d16e2008-05-18 18:08:51 +00002237
Reid Spencer5f016e22007-07-11 17:01:13 +00002238 // handle the common case first (both operands are arithmetic).
Steve Naroffa4332e22007-07-17 00:58:39 +00002239 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00002240 return compType;
Reid Spencer5f016e22007-07-11 17:01:13 +00002241
Eli Friedmand72d16e2008-05-18 18:08:51 +00002242 // Put any potential pointer into PExp
2243 Expr* PExp = lex, *IExp = rex;
2244 if (IExp->getType()->isPointerType())
2245 std::swap(PExp, IExp);
2246
2247 if (const PointerType* PTy = PExp->getType()->getAsPointerType()) {
2248 if (IExp->getType()->isIntegerType()) {
2249 // Check for arithmetic on pointers to incomplete types
2250 if (!PTy->getPointeeType()->isObjectType()) {
2251 if (PTy->getPointeeType()->isVoidType()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002252 Diag(Loc, diag::ext_gnu_void_ptr)
2253 << lex->getSourceRange() << rex->getSourceRange();
Eli Friedmand72d16e2008-05-18 18:08:51 +00002254 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002255 Diag(Loc, diag::err_typecheck_arithmetic_incomplete_type)
Chris Lattnerd1625842008-11-24 06:25:27 +00002256 << lex->getType() << lex->getSourceRange();
Eli Friedmand72d16e2008-05-18 18:08:51 +00002257 return QualType();
2258 }
2259 }
2260 return PExp->getType();
2261 }
2262 }
2263
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002264 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00002265}
2266
Chris Lattnereca7be62008-04-07 05:30:13 +00002267// C99 6.5.6
2268QualType Sema::CheckSubtractionOperands(Expr *&lex, Expr *&rex,
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002269 SourceLocation Loc, bool isCompAssign) {
Steve Naroff3e5e5562007-07-16 22:23:01 +00002270 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002271 return CheckVectorOperands(Loc, lex, rex);
Steve Naroff90045e82007-07-13 23:32:42 +00002272
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00002273 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Reid Spencer5f016e22007-07-11 17:01:13 +00002274
Chris Lattner6e4ab612007-12-09 21:53:25 +00002275 // Enforce type constraints: C99 6.5.6p3.
2276
2277 // Handle the common case first (both operands are arithmetic).
Steve Naroffa4332e22007-07-17 00:58:39 +00002278 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00002279 return compType;
Chris Lattner6e4ab612007-12-09 21:53:25 +00002280
2281 // Either ptr - int or ptr - ptr.
2282 if (const PointerType *LHSPTy = lex->getType()->getAsPointerType()) {
Steve Naroff2565eef2008-01-29 18:58:14 +00002283 QualType lpointee = LHSPTy->getPointeeType();
Eli Friedman8e54ad02008-02-08 01:19:44 +00002284
Chris Lattner6e4ab612007-12-09 21:53:25 +00002285 // The LHS must be an object type, not incomplete, function, etc.
Steve Naroff2565eef2008-01-29 18:58:14 +00002286 if (!lpointee->isObjectType()) {
Chris Lattner6e4ab612007-12-09 21:53:25 +00002287 // Handle the GNU void* extension.
Steve Naroff2565eef2008-01-29 18:58:14 +00002288 if (lpointee->isVoidType()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002289 Diag(Loc, diag::ext_gnu_void_ptr)
2290 << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner6e4ab612007-12-09 21:53:25 +00002291 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002292 Diag(Loc, diag::err_typecheck_sub_ptr_object)
Chris Lattnerd1625842008-11-24 06:25:27 +00002293 << lex->getType() << lex->getSourceRange();
Chris Lattner6e4ab612007-12-09 21:53:25 +00002294 return QualType();
2295 }
2296 }
2297
2298 // The result type of a pointer-int computation is the pointer type.
2299 if (rex->getType()->isIntegerType())
2300 return lex->getType();
Steve Naroff3e5e5562007-07-16 22:23:01 +00002301
Chris Lattner6e4ab612007-12-09 21:53:25 +00002302 // Handle pointer-pointer subtractions.
2303 if (const PointerType *RHSPTy = rex->getType()->getAsPointerType()) {
Eli Friedman8e54ad02008-02-08 01:19:44 +00002304 QualType rpointee = RHSPTy->getPointeeType();
2305
Chris Lattner6e4ab612007-12-09 21:53:25 +00002306 // RHS must be an object type, unless void (GNU).
Steve Naroff2565eef2008-01-29 18:58:14 +00002307 if (!rpointee->isObjectType()) {
Chris Lattner6e4ab612007-12-09 21:53:25 +00002308 // Handle the GNU void* extension.
Steve Naroff2565eef2008-01-29 18:58:14 +00002309 if (rpointee->isVoidType()) {
2310 if (!lpointee->isVoidType())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002311 Diag(Loc, diag::ext_gnu_void_ptr)
2312 << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner6e4ab612007-12-09 21:53:25 +00002313 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002314 Diag(Loc, diag::err_typecheck_sub_ptr_object)
Chris Lattnerd1625842008-11-24 06:25:27 +00002315 << rex->getType() << rex->getSourceRange();
Chris Lattner6e4ab612007-12-09 21:53:25 +00002316 return QualType();
2317 }
2318 }
2319
2320 // Pointee types must be compatible.
Eli Friedmanf1c7b482008-09-02 05:09:35 +00002321 if (!Context.typesAreCompatible(
2322 Context.getCanonicalType(lpointee).getUnqualifiedType(),
2323 Context.getCanonicalType(rpointee).getUnqualifiedType())) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00002324 Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
Chris Lattnerd1625842008-11-24 06:25:27 +00002325 << lex->getType() << rex->getType()
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00002326 << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner6e4ab612007-12-09 21:53:25 +00002327 return QualType();
2328 }
2329
2330 return Context.getPointerDiffType();
2331 }
2332 }
2333
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002334 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00002335}
2336
Chris Lattnereca7be62008-04-07 05:30:13 +00002337// C99 6.5.7
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002338QualType Sema::CheckShiftOperands(Expr *&lex, Expr *&rex, SourceLocation Loc,
Chris Lattnereca7be62008-04-07 05:30:13 +00002339 bool isCompAssign) {
Chris Lattnerca5eede2007-12-12 05:47:28 +00002340 // C99 6.5.7p2: Each of the operands shall have integer type.
2341 if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002342 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00002343
Chris Lattnerca5eede2007-12-12 05:47:28 +00002344 // Shifts don't perform usual arithmetic conversions, they just do integer
2345 // promotions on each operand. C99 6.5.7p3
Chris Lattner1dcf2c82007-12-13 07:28:16 +00002346 if (!isCompAssign)
2347 UsualUnaryConversions(lex);
Chris Lattnerca5eede2007-12-12 05:47:28 +00002348 UsualUnaryConversions(rex);
2349
2350 // "The type of the result is that of the promoted left operand."
2351 return lex->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00002352}
2353
Eli Friedman3d815e72008-08-22 00:56:42 +00002354static bool areComparableObjCInterfaces(QualType LHS, QualType RHS,
2355 ASTContext& Context) {
2356 const ObjCInterfaceType* LHSIface = LHS->getAsObjCInterfaceType();
2357 const ObjCInterfaceType* RHSIface = RHS->getAsObjCInterfaceType();
2358 // ID acts sort of like void* for ObjC interfaces
2359 if (LHSIface && Context.isObjCIdType(RHS))
2360 return true;
2361 if (RHSIface && Context.isObjCIdType(LHS))
2362 return true;
2363 if (!LHSIface || !RHSIface)
2364 return false;
2365 return Context.canAssignObjCInterfaces(LHSIface, RHSIface) ||
2366 Context.canAssignObjCInterfaces(RHSIface, LHSIface);
2367}
2368
Chris Lattnereca7be62008-04-07 05:30:13 +00002369// C99 6.5.8
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002370QualType Sema::CheckCompareOperands(Expr *&lex, Expr *&rex, SourceLocation Loc,
Chris Lattnereca7be62008-04-07 05:30:13 +00002371 bool isRelational) {
Nate Begemanbe2341d2008-07-14 18:02:46 +00002372 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002373 return CheckVectorCompareOperands(lex, rex, Loc, isRelational);
Nate Begemanbe2341d2008-07-14 18:02:46 +00002374
Chris Lattnera5937dd2007-08-26 01:18:55 +00002375 // C99 6.5.8p3 / C99 6.5.9p4
Steve Naroff30bf7712007-08-10 18:26:40 +00002376 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
2377 UsualArithmeticConversions(lex, rex);
2378 else {
2379 UsualUnaryConversions(lex);
2380 UsualUnaryConversions(rex);
2381 }
Steve Naroffc80b4ee2007-07-16 21:54:35 +00002382 QualType lType = lex->getType();
2383 QualType rType = rex->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00002384
Ted Kremenek72cb1ae2007-10-29 17:13:39 +00002385 // For non-floating point types, check for self-comparisons of the form
2386 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
2387 // often indicate logic errors in the program.
Ted Kremenek3ca0bf22007-10-29 16:58:49 +00002388 if (!lType->isFloatingType()) {
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00002389 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex->IgnoreParens()))
2390 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex->IgnoreParens()))
Ted Kremenek3ca0bf22007-10-29 16:58:49 +00002391 if (DRL->getDecl() == DRR->getDecl())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002392 Diag(Loc, diag::warn_selfcomparison);
Ted Kremenek3ca0bf22007-10-29 16:58:49 +00002393 }
2394
Douglas Gregor447b69e2008-11-19 03:25:36 +00002395 // The result of comparisons is 'bool' in C++, 'int' in C.
2396 QualType ResultTy = getLangOptions().CPlusPlus? Context.BoolTy : Context.IntTy;
2397
Chris Lattnera5937dd2007-08-26 01:18:55 +00002398 if (isRelational) {
2399 if (lType->isRealType() && rType->isRealType())
Douglas Gregor447b69e2008-11-19 03:25:36 +00002400 return ResultTy;
Chris Lattnera5937dd2007-08-26 01:18:55 +00002401 } else {
Ted Kremenek72cb1ae2007-10-29 17:13:39 +00002402 // Check for comparisons of floating point operands using != and ==.
Ted Kremenek72cb1ae2007-10-29 17:13:39 +00002403 if (lType->isFloatingType()) {
2404 assert (rType->isFloatingType());
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002405 CheckFloatComparison(Loc,lex,rex);
Ted Kremenek6a261552007-10-29 16:40:01 +00002406 }
2407
Chris Lattnera5937dd2007-08-26 01:18:55 +00002408 if (lType->isArithmeticType() && rType->isArithmeticType())
Douglas Gregor447b69e2008-11-19 03:25:36 +00002409 return ResultTy;
Chris Lattnera5937dd2007-08-26 01:18:55 +00002410 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002411
Chris Lattnerd28f8152007-08-26 01:10:14 +00002412 bool LHSIsNull = lex->isNullPointerConstant(Context);
2413 bool RHSIsNull = rex->isNullPointerConstant(Context);
2414
Chris Lattnera5937dd2007-08-26 01:18:55 +00002415 // All of the following pointer related warnings are GCC extensions, except
2416 // when handling null pointer constants. One day, we can consider making them
2417 // errors (when -pedantic-errors is enabled).
Steve Naroff77878cc2007-08-27 04:08:11 +00002418 if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2
Chris Lattnerbc896f52008-04-03 05:07:25 +00002419 QualType LCanPointeeTy =
Chris Lattnerb77792e2008-07-26 22:17:49 +00002420 Context.getCanonicalType(lType->getAsPointerType()->getPointeeType());
Chris Lattnerbc896f52008-04-03 05:07:25 +00002421 QualType RCanPointeeTy =
Chris Lattnerb77792e2008-07-26 22:17:49 +00002422 Context.getCanonicalType(rType->getAsPointerType()->getPointeeType());
Eli Friedman8e54ad02008-02-08 01:19:44 +00002423
Steve Naroff66296cb2007-11-13 14:57:38 +00002424 if (!LHSIsNull && !RHSIsNull && // C99 6.5.9p2
Chris Lattnerbc896f52008-04-03 05:07:25 +00002425 !LCanPointeeTy->isVoidType() && !RCanPointeeTy->isVoidType() &&
2426 !Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(),
Eli Friedman3d815e72008-08-22 00:56:42 +00002427 RCanPointeeTy.getUnqualifiedType()) &&
2428 !areComparableObjCInterfaces(LCanPointeeTy, RCanPointeeTy, Context)) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00002429 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
Chris Lattnerd1625842008-11-24 06:25:27 +00002430 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00002431 }
Chris Lattner1e0a3902008-01-16 19:17:22 +00002432 ImpCastExprToType(rex, lType); // promote the pointer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00002433 return ResultTy;
Steve Naroffe77fd3c2007-08-16 21:48:38 +00002434 }
Steve Naroff1c7d0672008-09-04 15:10:53 +00002435 // Handle block pointer types.
2436 if (lType->isBlockPointerType() && rType->isBlockPointerType()) {
2437 QualType lpointee = lType->getAsBlockPointerType()->getPointeeType();
2438 QualType rpointee = rType->getAsBlockPointerType()->getPointeeType();
2439
2440 if (!LHSIsNull && !RHSIsNull &&
2441 !Context.typesAreBlockCompatible(lpointee, rpointee)) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00002442 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
Chris Lattnerd1625842008-11-24 06:25:27 +00002443 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff1c7d0672008-09-04 15:10:53 +00002444 }
2445 ImpCastExprToType(rex, lType); // promote the pointer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00002446 return ResultTy;
Steve Naroff1c7d0672008-09-04 15:10:53 +00002447 }
Steve Naroff59f53942008-09-28 01:11:11 +00002448 // Allow block pointers to be compared with null pointer constants.
2449 if ((lType->isBlockPointerType() && rType->isPointerType()) ||
2450 (lType->isPointerType() && rType->isBlockPointerType())) {
2451 if (!LHSIsNull && !RHSIsNull) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00002452 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
Chris Lattnerd1625842008-11-24 06:25:27 +00002453 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff59f53942008-09-28 01:11:11 +00002454 }
2455 ImpCastExprToType(rex, lType); // promote the pointer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00002456 return ResultTy;
Steve Naroff59f53942008-09-28 01:11:11 +00002457 }
Steve Naroff1c7d0672008-09-04 15:10:53 +00002458
Steve Naroff20373222008-06-03 14:04:54 +00002459 if ((lType->isObjCQualifiedIdType() || rType->isObjCQualifiedIdType())) {
Steve Naroffa5ad8632008-10-27 10:33:19 +00002460 if (lType->isPointerType() || rType->isPointerType()) {
Steve Naroffa8069f12008-11-17 19:49:16 +00002461 const PointerType *LPT = lType->getAsPointerType();
2462 const PointerType *RPT = rType->getAsPointerType();
2463 bool LPtrToVoid = LPT ?
2464 Context.getCanonicalType(LPT->getPointeeType())->isVoidType() : false;
2465 bool RPtrToVoid = RPT ?
2466 Context.getCanonicalType(RPT->getPointeeType())->isVoidType() : false;
2467
2468 if (!LPtrToVoid && !RPtrToVoid &&
2469 !Context.typesAreCompatible(lType, rType)) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00002470 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
Chris Lattnerd1625842008-11-24 06:25:27 +00002471 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroffa5ad8632008-10-27 10:33:19 +00002472 ImpCastExprToType(rex, lType);
Douglas Gregor447b69e2008-11-19 03:25:36 +00002473 return ResultTy;
Steve Naroffa5ad8632008-10-27 10:33:19 +00002474 }
Daniel Dunbarc6cb77f2008-10-23 23:30:52 +00002475 ImpCastExprToType(rex, lType);
Douglas Gregor447b69e2008-11-19 03:25:36 +00002476 return ResultTy;
Steve Naroff87f3b932008-10-20 18:19:10 +00002477 }
Steve Naroff20373222008-06-03 14:04:54 +00002478 if (ObjCQualifiedIdTypesAreCompatible(lType, rType, true)) {
2479 ImpCastExprToType(rex, lType);
Douglas Gregor447b69e2008-11-19 03:25:36 +00002480 return ResultTy;
Steve Naroff39579072008-10-14 22:18:38 +00002481 } else {
2482 if ((lType->isObjCQualifiedIdType() && rType->isObjCQualifiedIdType())) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00002483 Diag(Loc, diag::warn_incompatible_qualified_id_operands)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002484 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Daniel Dunbarc6cb77f2008-10-23 23:30:52 +00002485 ImpCastExprToType(rex, lType);
Douglas Gregor447b69e2008-11-19 03:25:36 +00002486 return ResultTy;
Steve Naroff39579072008-10-14 22:18:38 +00002487 }
Steve Naroff20373222008-06-03 14:04:54 +00002488 }
Fariborz Jahanian7359f042007-12-20 01:06:58 +00002489 }
Steve Naroff20373222008-06-03 14:04:54 +00002490 if ((lType->isPointerType() || lType->isObjCQualifiedIdType()) &&
2491 rType->isIntegerType()) {
Chris Lattnerd28f8152007-08-26 01:10:14 +00002492 if (!RHSIsNull)
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00002493 Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer)
Chris Lattnerd1625842008-11-24 06:25:27 +00002494 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner1e0a3902008-01-16 19:17:22 +00002495 ImpCastExprToType(rex, lType); // promote the integer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00002496 return ResultTy;
Steve Naroffe77fd3c2007-08-16 21:48:38 +00002497 }
Steve Naroff20373222008-06-03 14:04:54 +00002498 if (lType->isIntegerType() &&
2499 (rType->isPointerType() || rType->isObjCQualifiedIdType())) {
Chris Lattnerd28f8152007-08-26 01:10:14 +00002500 if (!LHSIsNull)
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00002501 Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer)
Chris Lattnerd1625842008-11-24 06:25:27 +00002502 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner1e0a3902008-01-16 19:17:22 +00002503 ImpCastExprToType(lex, rType); // promote the integer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00002504 return ResultTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00002505 }
Steve Naroff39218df2008-09-04 16:56:14 +00002506 // Handle block pointers.
2507 if (lType->isBlockPointerType() && rType->isIntegerType()) {
2508 if (!RHSIsNull)
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00002509 Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer)
Chris Lattnerd1625842008-11-24 06:25:27 +00002510 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff39218df2008-09-04 16:56:14 +00002511 ImpCastExprToType(rex, lType); // promote the integer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00002512 return ResultTy;
Steve Naroff39218df2008-09-04 16:56:14 +00002513 }
2514 if (lType->isIntegerType() && rType->isBlockPointerType()) {
2515 if (!LHSIsNull)
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00002516 Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer)
Chris Lattnerd1625842008-11-24 06:25:27 +00002517 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff39218df2008-09-04 16:56:14 +00002518 ImpCastExprToType(lex, rType); // promote the integer to pointer
Douglas Gregor447b69e2008-11-19 03:25:36 +00002519 return ResultTy;
Steve Naroff39218df2008-09-04 16:56:14 +00002520 }
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002521 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00002522}
2523
Nate Begemanbe2341d2008-07-14 18:02:46 +00002524/// CheckVectorCompareOperands - vector comparisons are a clang extension that
2525/// operates on extended vector types. Instead of producing an IntTy result,
2526/// like a scalar comparison, a vector comparison produces a vector of integer
2527/// types.
2528QualType Sema::CheckVectorCompareOperands(Expr *&lex, Expr *&rex,
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002529 SourceLocation Loc,
Nate Begemanbe2341d2008-07-14 18:02:46 +00002530 bool isRelational) {
2531 // Check to make sure we're operating on vectors of the same type and width,
2532 // Allowing one side to be a scalar of element type.
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002533 QualType vType = CheckVectorOperands(Loc, lex, rex);
Nate Begemanbe2341d2008-07-14 18:02:46 +00002534 if (vType.isNull())
2535 return vType;
2536
2537 QualType lType = lex->getType();
2538 QualType rType = rex->getType();
2539
2540 // For non-floating point types, check for self-comparisons of the form
2541 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
2542 // often indicate logic errors in the program.
2543 if (!lType->isFloatingType()) {
2544 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex->IgnoreParens()))
2545 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex->IgnoreParens()))
2546 if (DRL->getDecl() == DRR->getDecl())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002547 Diag(Loc, diag::warn_selfcomparison);
Nate Begemanbe2341d2008-07-14 18:02:46 +00002548 }
2549
2550 // Check for comparisons of floating point operands using != and ==.
2551 if (!isRelational && lType->isFloatingType()) {
2552 assert (rType->isFloatingType());
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002553 CheckFloatComparison(Loc,lex,rex);
Nate Begemanbe2341d2008-07-14 18:02:46 +00002554 }
2555
2556 // Return the type for the comparison, which is the same as vector type for
2557 // integer vectors, or an integer type of identical size and number of
2558 // elements for floating point vectors.
2559 if (lType->isIntegerType())
2560 return lType;
2561
2562 const VectorType *VTy = lType->getAsVectorType();
2563
2564 // FIXME: need to deal with non-32b int / non-64b long long
2565 unsigned TypeSize = Context.getTypeSize(VTy->getElementType());
2566 if (TypeSize == 32) {
2567 return Context.getExtVectorType(Context.IntTy, VTy->getNumElements());
2568 }
2569 assert(TypeSize == 64 && "Unhandled vector element size in vector compare");
2570 return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements());
2571}
2572
Reid Spencer5f016e22007-07-11 17:01:13 +00002573inline QualType Sema::CheckBitwiseOperands(
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002574 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00002575{
Steve Naroff3e5e5562007-07-16 22:23:01 +00002576 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002577 return CheckVectorOperands(Loc, lex, rex);
Steve Naroff90045e82007-07-13 23:32:42 +00002578
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00002579 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Reid Spencer5f016e22007-07-11 17:01:13 +00002580
Steve Naroffa4332e22007-07-17 00:58:39 +00002581 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00002582 return compType;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002583 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00002584}
2585
2586inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14]
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002587 Expr *&lex, Expr *&rex, SourceLocation Loc)
Reid Spencer5f016e22007-07-11 17:01:13 +00002588{
Steve Naroffc80b4ee2007-07-16 21:54:35 +00002589 UsualUnaryConversions(lex);
2590 UsualUnaryConversions(rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00002591
Eli Friedman5773a6c2008-05-13 20:16:47 +00002592 if (lex->getType()->isScalarType() && rex->getType()->isScalarType())
Reid Spencer5f016e22007-07-11 17:01:13 +00002593 return Context.IntTy;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002594 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00002595}
2596
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00002597/// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not,
2598/// emit an error and return true. If so, return false.
2599static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) {
2600 Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context);
2601 if (IsLV == Expr::MLV_Valid)
2602 return false;
2603
2604 unsigned Diag = 0;
2605 bool NeedType = false;
2606 switch (IsLV) { // C99 6.5.16p2
2607 default: assert(0 && "Unknown result from isModifiableLvalue!");
2608 case Expr::MLV_ConstQualified: Diag = diag::err_typecheck_assign_const; break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00002609 case Expr::MLV_ArrayType:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00002610 Diag = diag::err_typecheck_array_not_modifiable_lvalue;
2611 NeedType = true;
2612 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00002613 case Expr::MLV_NotObjectType:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00002614 Diag = diag::err_typecheck_non_object_not_modifiable_lvalue;
2615 NeedType = true;
2616 break;
Chris Lattnerca354fa2008-11-17 19:51:54 +00002617 case Expr::MLV_LValueCast:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00002618 Diag = diag::err_typecheck_lvalue_casts_not_supported;
2619 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00002620 case Expr::MLV_InvalidExpression:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00002621 Diag = diag::err_typecheck_expression_not_modifiable_lvalue;
2622 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00002623 case Expr::MLV_IncompleteType:
2624 case Expr::MLV_IncompleteVoidType:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00002625 Diag = diag::err_typecheck_incomplete_type_not_modifiable_lvalue;
2626 NeedType = true;
2627 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00002628 case Expr::MLV_DuplicateVectorComponents:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00002629 Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue;
2630 break;
Steve Naroff4f6a7d72008-09-26 14:41:28 +00002631 case Expr::MLV_NotBlockQualified:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00002632 Diag = diag::err_block_decl_ref_not_modifiable_lvalue;
2633 break;
Fariborz Jahanian5daf5702008-11-22 18:39:36 +00002634 case Expr::MLV_ReadonlyProperty:
2635 Diag = diag::error_readonly_property_assignment;
2636 break;
Fariborz Jahanianba8d2d62008-11-22 20:25:50 +00002637 case Expr::MLV_NoSetterProperty:
2638 Diag = diag::error_nosetter_property_assignment;
2639 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00002640 }
Steve Naroffd1861fd2007-07-31 12:34:36 +00002641
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00002642 if (NeedType)
Chris Lattnerd1625842008-11-24 06:25:27 +00002643 S.Diag(Loc, Diag) << E->getType() << E->getSourceRange();
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00002644 else
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00002645 S.Diag(Loc, Diag) << E->getSourceRange();
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00002646 return true;
2647}
2648
2649
2650
2651// C99 6.5.16.1
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002652QualType Sema::CheckAssignmentOperands(Expr *LHS, Expr *&RHS,
2653 SourceLocation Loc,
2654 QualType CompoundType) {
2655 // Verify that LHS is a modifiable lvalue, and emit error if not.
2656 if (CheckForModifiableLvalue(LHS, Loc, *this))
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00002657 return QualType();
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002658
2659 QualType LHSType = LHS->getType();
2660 QualType RHSType = CompoundType.isNull() ? RHS->getType() : CompoundType;
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00002661
Chris Lattner5cf216b2008-01-04 18:04:52 +00002662 AssignConvertType ConvTy;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002663 if (CompoundType.isNull()) {
Chris Lattner2c156472008-08-21 18:04:13 +00002664 // Simple assignment "x = y".
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002665 ConvTy = CheckSingleAssignmentConstraints(LHSType, RHS);
Chris Lattner2c156472008-08-21 18:04:13 +00002666
2667 // If the RHS is a unary plus or minus, check to see if they = and + are
2668 // right next to each other. If so, the user may have typo'd "x =+ 4"
2669 // instead of "x += 4".
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002670 Expr *RHSCheck = RHS;
Chris Lattner2c156472008-08-21 18:04:13 +00002671 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck))
2672 RHSCheck = ICE->getSubExpr();
2673 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) {
2674 if ((UO->getOpcode() == UnaryOperator::Plus ||
2675 UO->getOpcode() == UnaryOperator::Minus) &&
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002676 Loc.isFileID() && UO->getOperatorLoc().isFileID() &&
Chris Lattner2c156472008-08-21 18:04:13 +00002677 // Only if the two operators are exactly adjacent.
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002678 Loc.getFileLocWithOffset(1) == UO->getOperatorLoc())
Chris Lattnerd3a94e22008-11-20 06:06:08 +00002679 Diag(Loc, diag::warn_not_compound_assign)
2680 << (UO->getOpcode() == UnaryOperator::Plus ? "+" : "-")
2681 << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc());
Chris Lattner2c156472008-08-21 18:04:13 +00002682 }
2683 } else {
2684 // Compound assignment "x += y"
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002685 ConvTy = CheckCompoundAssignmentConstraints(LHSType, RHSType);
Chris Lattner2c156472008-08-21 18:04:13 +00002686 }
Chris Lattner5cf216b2008-01-04 18:04:52 +00002687
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002688 if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType,
2689 RHS, "assigning"))
Chris Lattner5cf216b2008-01-04 18:04:52 +00002690 return QualType();
2691
Reid Spencer5f016e22007-07-11 17:01:13 +00002692 // C99 6.5.16p3: The type of an assignment expression is the type of the
2693 // left operand unless the left operand has qualified type, in which case
2694 // it is the unqualified version of the type of the left operand.
2695 // C99 6.5.16.1p2: In simple assignment, the value of the right operand
2696 // is converted to the type of the assignment expression (above).
Chris Lattner73d0d4f2007-08-30 17:45:32 +00002697 // C++ 5.17p1: the type of the assignment expression is that of its left
2698 // oprdu.
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002699 return LHSType.getUnqualifiedType();
Reid Spencer5f016e22007-07-11 17:01:13 +00002700}
2701
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002702// C99 6.5.17
2703QualType Sema::CheckCommaOperands(Expr *LHS, Expr *&RHS, SourceLocation Loc) {
2704 // FIXME: what is required for LHS?
Chris Lattner53fcaa92008-07-25 20:54:07 +00002705
2706 // Comma performs lvalue conversion (C99 6.3.2.1), but not unary conversions.
Chris Lattner29a1cfb2008-11-18 01:30:42 +00002707 DefaultFunctionArrayConversion(RHS);
2708 return RHS->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00002709}
2710
Steve Naroff49b45262007-07-13 16:58:59 +00002711/// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine
2712/// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions.
Chris Lattner3528d352008-11-21 07:05:48 +00002713QualType Sema::CheckIncrementDecrementOperand(Expr *Op, SourceLocation OpLoc) {
2714 QualType ResType = Op->getType();
2715 assert(!ResType.isNull() && "no type for increment/decrement expression");
Reid Spencer5f016e22007-07-11 17:01:13 +00002716
Steve Naroff084f9ed2007-08-24 17:20:07 +00002717 // C99 6.5.2.4p1: We allow complex as a GCC extension.
Chris Lattner3528d352008-11-21 07:05:48 +00002718 if (ResType->isRealType()) {
2719 // OK!
2720 } else if (const PointerType *PT = ResType->getAsPointerType()) {
2721 // C99 6.5.2.4p2, 6.5.6p2
2722 if (PT->getPointeeType()->isObjectType()) {
2723 // Pointer to object is ok!
2724 } else if (PT->getPointeeType()->isVoidType()) {
2725 // Pointer to void is extension.
2726 Diag(OpLoc, diag::ext_gnu_void_ptr) << Op->getSourceRange();
2727 } else {
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00002728 Diag(OpLoc, diag::err_typecheck_arithmetic_incomplete_type)
Chris Lattnerd1625842008-11-24 06:25:27 +00002729 << ResType << Op->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00002730 return QualType();
2731 }
Chris Lattner3528d352008-11-21 07:05:48 +00002732 } else if (ResType->isComplexType()) {
2733 // C99 does not support ++/-- on complex types, we allow as an extension.
2734 Diag(OpLoc, diag::ext_integer_increment_complex)
Chris Lattnerd1625842008-11-24 06:25:27 +00002735 << ResType << Op->getSourceRange();
Chris Lattner3528d352008-11-21 07:05:48 +00002736 } else {
2737 Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement)
Chris Lattnerd1625842008-11-24 06:25:27 +00002738 << ResType << Op->getSourceRange();
Chris Lattner3528d352008-11-21 07:05:48 +00002739 return QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00002740 }
Steve Naroffdd10e022007-08-23 21:37:33 +00002741 // At this point, we know we have a real, complex or pointer type.
2742 // Now make sure the operand is a modifiable lvalue.
Chris Lattner3528d352008-11-21 07:05:48 +00002743 if (CheckForModifiableLvalue(Op, OpLoc, *this))
Reid Spencer5f016e22007-07-11 17:01:13 +00002744 return QualType();
Chris Lattner3528d352008-11-21 07:05:48 +00002745 return ResType;
Reid Spencer5f016e22007-07-11 17:01:13 +00002746}
2747
Anders Carlsson369dee42008-02-01 07:15:58 +00002748/// getPrimaryDecl - Helper function for CheckAddressOfOperand().
Reid Spencer5f016e22007-07-11 17:01:13 +00002749/// This routine allows us to typecheck complex/recursive expressions
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00002750/// where the declaration is needed for type checking. We only need to
2751/// handle cases when the expression references a function designator
2752/// or is an lvalue. Here are some examples:
2753/// - &(x) => x
2754/// - &*****f => f for f a function designator.
2755/// - &s.xx => s
2756/// - &s.zz[1].yy -> s, if zz is an array
2757/// - *(x + 1) -> x, if x is an array
2758/// - &"123"[2] -> 0
2759/// - & __real__ x -> x
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002760static NamedDecl *getPrimaryDecl(Expr *E) {
Chris Lattnerf0467b32008-04-02 04:24:33 +00002761 switch (E->getStmtClass()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002762 case Stmt::DeclRefExprClass:
Chris Lattnerf0467b32008-04-02 04:24:33 +00002763 return cast<DeclRefExpr>(E)->getDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00002764 case Stmt::MemberExprClass:
Chris Lattnerf82228f2007-11-16 17:46:48 +00002765 // Fields cannot be declared with a 'register' storage class.
2766 // &X->f is always ok, even if X is declared register.
Chris Lattnerf0467b32008-04-02 04:24:33 +00002767 if (cast<MemberExpr>(E)->isArrow())
Chris Lattnerf82228f2007-11-16 17:46:48 +00002768 return 0;
Chris Lattnerf0467b32008-04-02 04:24:33 +00002769 return getPrimaryDecl(cast<MemberExpr>(E)->getBase());
Anders Carlsson369dee42008-02-01 07:15:58 +00002770 case Stmt::ArraySubscriptExprClass: {
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00002771 // &X[4] and &4[X] refers to X if X is not a pointer.
Anders Carlsson369dee42008-02-01 07:15:58 +00002772
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002773 NamedDecl *D = getPrimaryDecl(cast<ArraySubscriptExpr>(E)->getBase());
Daniel Dunbar48d04ae2008-10-21 21:22:32 +00002774 ValueDecl *VD = dyn_cast_or_null<ValueDecl>(D);
Anders Carlssonf2a4b842008-02-01 16:01:31 +00002775 if (!VD || VD->getType()->isPointerType())
Anders Carlsson369dee42008-02-01 07:15:58 +00002776 return 0;
2777 else
2778 return VD;
2779 }
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00002780 case Stmt::UnaryOperatorClass: {
2781 UnaryOperator *UO = cast<UnaryOperator>(E);
2782
2783 switch(UO->getOpcode()) {
2784 case UnaryOperator::Deref: {
2785 // *(X + 1) refers to X if X is not a pointer.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002786 if (NamedDecl *D = getPrimaryDecl(UO->getSubExpr())) {
2787 ValueDecl *VD = dyn_cast<ValueDecl>(D);
2788 if (!VD || VD->getType()->isPointerType())
2789 return 0;
2790 return VD;
2791 }
2792 return 0;
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00002793 }
2794 case UnaryOperator::Real:
2795 case UnaryOperator::Imag:
2796 case UnaryOperator::Extension:
2797 return getPrimaryDecl(UO->getSubExpr());
2798 default:
2799 return 0;
2800 }
2801 }
2802 case Stmt::BinaryOperatorClass: {
2803 BinaryOperator *BO = cast<BinaryOperator>(E);
2804
2805 // Handle cases involving pointer arithmetic. The result of an
2806 // Assign or AddAssign is not an lvalue so they can be ignored.
2807
2808 // (x + n) or (n + x) => x
2809 if (BO->getOpcode() == BinaryOperator::Add) {
2810 if (BO->getLHS()->getType()->isPointerType()) {
2811 return getPrimaryDecl(BO->getLHS());
2812 } else if (BO->getRHS()->getType()->isPointerType()) {
2813 return getPrimaryDecl(BO->getRHS());
2814 }
2815 }
2816
2817 return 0;
2818 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002819 case Stmt::ParenExprClass:
Chris Lattnerf0467b32008-04-02 04:24:33 +00002820 return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerf82228f2007-11-16 17:46:48 +00002821 case Stmt::ImplicitCastExprClass:
2822 // &X[4] when X is an array, has an implicit cast from array to pointer.
Chris Lattnerf0467b32008-04-02 04:24:33 +00002823 return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr());
Reid Spencer5f016e22007-07-11 17:01:13 +00002824 default:
2825 return 0;
2826 }
2827}
2828
2829/// CheckAddressOfOperand - The operand of & must be either a function
2830/// designator or an lvalue designating an object. If it is an lvalue, the
2831/// object cannot be declared with storage class register or be a bit field.
2832/// Note: The usual conversions are *not* applied to the operand of the &
2833/// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue.
Douglas Gregor904eed32008-11-10 20:40:00 +00002834/// In C++, the operand might be an overloaded function name, in which case
2835/// we allow the '&' but retain the overloaded-function type.
Reid Spencer5f016e22007-07-11 17:01:13 +00002836QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) {
Steve Naroff08f19672008-01-13 17:10:08 +00002837 if (getLangOptions().C99) {
2838 // Implement C99-only parts of addressof rules.
2839 if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) {
2840 if (uOp->getOpcode() == UnaryOperator::Deref)
2841 // Per C99 6.5.3.2, the address of a deref always returns a valid result
2842 // (assuming the deref expression is valid).
2843 return uOp->getSubExpr()->getType();
2844 }
2845 // Technically, there should be a check for array subscript
2846 // expressions here, but the result of one is always an lvalue anyway.
2847 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002848 NamedDecl *dcl = getPrimaryDecl(op);
Chris Lattner28be73f2008-07-26 21:30:36 +00002849 Expr::isLvalueResult lval = op->isLvalue(Context);
Reid Spencer5f016e22007-07-11 17:01:13 +00002850
2851 if (lval != Expr::LV_Valid) { // C99 6.5.3.2p1
Chris Lattnerf82228f2007-11-16 17:46:48 +00002852 if (!dcl || !isa<FunctionDecl>(dcl)) {// allow function designators
2853 // FIXME: emit more specific diag...
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00002854 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof)
2855 << op->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00002856 return QualType();
2857 }
Steve Naroffbcb2b612008-02-29 23:30:25 +00002858 } else if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(op)) { // C99 6.5.3.2p1
2859 if (MemExpr->getMemberDecl()->isBitField()) {
Chris Lattnerd3a94e22008-11-20 06:06:08 +00002860 Diag(OpLoc, diag::err_typecheck_address_of)
2861 << "bit-field" << op->getSourceRange();
Steve Naroffbcb2b612008-02-29 23:30:25 +00002862 return QualType();
2863 }
2864 // Check for Apple extension for accessing vector components.
2865 } else if (isa<ArraySubscriptExpr>(op) &&
2866 cast<ArraySubscriptExpr>(op)->getBase()->getType()->isVectorType()) {
Chris Lattnerd3a94e22008-11-20 06:06:08 +00002867 Diag(OpLoc, diag::err_typecheck_address_of)
2868 << "vector" << op->getSourceRange();
Steve Naroffbcb2b612008-02-29 23:30:25 +00002869 return QualType();
2870 } else if (dcl) { // C99 6.5.3.2p1
Reid Spencer5f016e22007-07-11 17:01:13 +00002871 // We have an lvalue with a decl. Make sure the decl is not declared
2872 // with the register storage-class specifier.
2873 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) {
2874 if (vd->getStorageClass() == VarDecl::Register) {
Chris Lattnerd3a94e22008-11-20 06:06:08 +00002875 Diag(OpLoc, diag::err_typecheck_address_of)
2876 << "register variable" << op->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00002877 return QualType();
2878 }
Douglas Gregor904eed32008-11-10 20:40:00 +00002879 } else if (isa<OverloadedFunctionDecl>(dcl))
2880 return Context.OverloadTy;
2881 else
Reid Spencer5f016e22007-07-11 17:01:13 +00002882 assert(0 && "Unknown/unexpected decl type");
Reid Spencer5f016e22007-07-11 17:01:13 +00002883 }
Chris Lattnerc36d4052008-07-27 00:48:22 +00002884
Reid Spencer5f016e22007-07-11 17:01:13 +00002885 // If the operand has type "type", the result has type "pointer to type".
2886 return Context.getPointerType(op->getType());
2887}
2888
Chris Lattner22caddc2008-11-23 09:13:29 +00002889QualType Sema::CheckIndirectionOperand(Expr *Op, SourceLocation OpLoc) {
2890 UsualUnaryConversions(Op);
2891 QualType Ty = Op->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00002892
Chris Lattner22caddc2008-11-23 09:13:29 +00002893 // Note that per both C89 and C99, this is always legal, even if ptype is an
2894 // incomplete type or void. It would be possible to warn about dereferencing
2895 // a void pointer, but it's completely well-defined, and such a warning is
2896 // unlikely to catch any mistakes.
2897 if (const PointerType *PT = Ty->getAsPointerType())
Steve Naroff08f19672008-01-13 17:10:08 +00002898 return PT->getPointeeType();
Chris Lattner22caddc2008-11-23 09:13:29 +00002899
Chris Lattnerd3a94e22008-11-20 06:06:08 +00002900 Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer)
Chris Lattner22caddc2008-11-23 09:13:29 +00002901 << Ty << Op->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00002902 return QualType();
2903}
2904
2905static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode(
2906 tok::TokenKind Kind) {
2907 BinaryOperator::Opcode Opc;
2908 switch (Kind) {
2909 default: assert(0 && "Unknown binop!");
2910 case tok::star: Opc = BinaryOperator::Mul; break;
2911 case tok::slash: Opc = BinaryOperator::Div; break;
2912 case tok::percent: Opc = BinaryOperator::Rem; break;
2913 case tok::plus: Opc = BinaryOperator::Add; break;
2914 case tok::minus: Opc = BinaryOperator::Sub; break;
2915 case tok::lessless: Opc = BinaryOperator::Shl; break;
2916 case tok::greatergreater: Opc = BinaryOperator::Shr; break;
2917 case tok::lessequal: Opc = BinaryOperator::LE; break;
2918 case tok::less: Opc = BinaryOperator::LT; break;
2919 case tok::greaterequal: Opc = BinaryOperator::GE; break;
2920 case tok::greater: Opc = BinaryOperator::GT; break;
2921 case tok::exclaimequal: Opc = BinaryOperator::NE; break;
2922 case tok::equalequal: Opc = BinaryOperator::EQ; break;
2923 case tok::amp: Opc = BinaryOperator::And; break;
2924 case tok::caret: Opc = BinaryOperator::Xor; break;
2925 case tok::pipe: Opc = BinaryOperator::Or; break;
2926 case tok::ampamp: Opc = BinaryOperator::LAnd; break;
2927 case tok::pipepipe: Opc = BinaryOperator::LOr; break;
2928 case tok::equal: Opc = BinaryOperator::Assign; break;
2929 case tok::starequal: Opc = BinaryOperator::MulAssign; break;
2930 case tok::slashequal: Opc = BinaryOperator::DivAssign; break;
2931 case tok::percentequal: Opc = BinaryOperator::RemAssign; break;
2932 case tok::plusequal: Opc = BinaryOperator::AddAssign; break;
2933 case tok::minusequal: Opc = BinaryOperator::SubAssign; break;
2934 case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break;
2935 case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break;
2936 case tok::ampequal: Opc = BinaryOperator::AndAssign; break;
2937 case tok::caretequal: Opc = BinaryOperator::XorAssign; break;
2938 case tok::pipeequal: Opc = BinaryOperator::OrAssign; break;
2939 case tok::comma: Opc = BinaryOperator::Comma; break;
2940 }
2941 return Opc;
2942}
2943
2944static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode(
2945 tok::TokenKind Kind) {
2946 UnaryOperator::Opcode Opc;
2947 switch (Kind) {
2948 default: assert(0 && "Unknown unary op!");
2949 case tok::plusplus: Opc = UnaryOperator::PreInc; break;
2950 case tok::minusminus: Opc = UnaryOperator::PreDec; break;
2951 case tok::amp: Opc = UnaryOperator::AddrOf; break;
2952 case tok::star: Opc = UnaryOperator::Deref; break;
2953 case tok::plus: Opc = UnaryOperator::Plus; break;
2954 case tok::minus: Opc = UnaryOperator::Minus; break;
2955 case tok::tilde: Opc = UnaryOperator::Not; break;
2956 case tok::exclaim: Opc = UnaryOperator::LNot; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00002957 case tok::kw___real: Opc = UnaryOperator::Real; break;
2958 case tok::kw___imag: Opc = UnaryOperator::Imag; break;
2959 case tok::kw___extension__: Opc = UnaryOperator::Extension; break;
2960 }
2961 return Opc;
2962}
2963
Douglas Gregoreaebc752008-11-06 23:29:22 +00002964/// CreateBuiltinBinOp - Creates a new built-in binary operation with
2965/// operator @p Opc at location @c TokLoc. This routine only supports
2966/// built-in operations; ActOnBinOp handles overloaded operators.
2967Action::ExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc,
2968 unsigned Op,
2969 Expr *lhs, Expr *rhs) {
2970 QualType ResultTy; // Result type of the binary operator.
2971 QualType CompTy; // Computation type for compound assignments (e.g. '+=')
2972 BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)Op;
2973
2974 switch (Opc) {
2975 default:
2976 assert(0 && "Unknown binary expr!");
2977 case BinaryOperator::Assign:
2978 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, QualType());
2979 break;
2980 case BinaryOperator::Mul:
2981 case BinaryOperator::Div:
2982 ResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc);
2983 break;
2984 case BinaryOperator::Rem:
2985 ResultTy = CheckRemainderOperands(lhs, rhs, OpLoc);
2986 break;
2987 case BinaryOperator::Add:
2988 ResultTy = CheckAdditionOperands(lhs, rhs, OpLoc);
2989 break;
2990 case BinaryOperator::Sub:
2991 ResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc);
2992 break;
2993 case BinaryOperator::Shl:
2994 case BinaryOperator::Shr:
2995 ResultTy = CheckShiftOperands(lhs, rhs, OpLoc);
2996 break;
2997 case BinaryOperator::LE:
2998 case BinaryOperator::LT:
2999 case BinaryOperator::GE:
3000 case BinaryOperator::GT:
3001 ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, true);
3002 break;
3003 case BinaryOperator::EQ:
3004 case BinaryOperator::NE:
3005 ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, false);
3006 break;
3007 case BinaryOperator::And:
3008 case BinaryOperator::Xor:
3009 case BinaryOperator::Or:
3010 ResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc);
3011 break;
3012 case BinaryOperator::LAnd:
3013 case BinaryOperator::LOr:
3014 ResultTy = CheckLogicalOperands(lhs, rhs, OpLoc);
3015 break;
3016 case BinaryOperator::MulAssign:
3017 case BinaryOperator::DivAssign:
3018 CompTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc, true);
3019 if (!CompTy.isNull())
3020 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompTy);
3021 break;
3022 case BinaryOperator::RemAssign:
3023 CompTy = CheckRemainderOperands(lhs, rhs, OpLoc, true);
3024 if (!CompTy.isNull())
3025 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompTy);
3026 break;
3027 case BinaryOperator::AddAssign:
3028 CompTy = CheckAdditionOperands(lhs, rhs, OpLoc, true);
3029 if (!CompTy.isNull())
3030 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompTy);
3031 break;
3032 case BinaryOperator::SubAssign:
3033 CompTy = CheckSubtractionOperands(lhs, rhs, OpLoc, true);
3034 if (!CompTy.isNull())
3035 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompTy);
3036 break;
3037 case BinaryOperator::ShlAssign:
3038 case BinaryOperator::ShrAssign:
3039 CompTy = CheckShiftOperands(lhs, rhs, OpLoc, true);
3040 if (!CompTy.isNull())
3041 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompTy);
3042 break;
3043 case BinaryOperator::AndAssign:
3044 case BinaryOperator::XorAssign:
3045 case BinaryOperator::OrAssign:
3046 CompTy = CheckBitwiseOperands(lhs, rhs, OpLoc, true);
3047 if (!CompTy.isNull())
3048 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompTy);
3049 break;
3050 case BinaryOperator::Comma:
3051 ResultTy = CheckCommaOperands(lhs, rhs, OpLoc);
3052 break;
3053 }
3054 if (ResultTy.isNull())
3055 return true;
3056 if (CompTy.isNull())
3057 return new BinaryOperator(lhs, rhs, Opc, ResultTy, OpLoc);
3058 else
3059 return new CompoundAssignOperator(lhs, rhs, Opc, ResultTy, CompTy, OpLoc);
3060}
3061
Reid Spencer5f016e22007-07-11 17:01:13 +00003062// Binary Operators. 'Tok' is the token for the operator.
Douglas Gregoreaebc752008-11-06 23:29:22 +00003063Action::ExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc,
3064 tok::TokenKind Kind,
Reid Spencer5f016e22007-07-11 17:01:13 +00003065 ExprTy *LHS, ExprTy *RHS) {
3066 BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind);
3067 Expr *lhs = (Expr *)LHS, *rhs = (Expr*)RHS;
3068
Steve Narofff69936d2007-09-16 03:34:24 +00003069 assert((lhs != 0) && "ActOnBinOp(): missing left expression");
3070 assert((rhs != 0) && "ActOnBinOp(): missing right expression");
Reid Spencer5f016e22007-07-11 17:01:13 +00003071
Douglas Gregor898574e2008-12-05 23:32:09 +00003072 // If either expression is type-dependent, just build the AST.
3073 // FIXME: We'll need to perform some caching of the result of name
3074 // lookup for operator+.
3075 if (lhs->isTypeDependent() || rhs->isTypeDependent()) {
3076 if (Opc > BinaryOperator::Assign && Opc <= BinaryOperator::OrAssign)
3077 return new CompoundAssignOperator(lhs, rhs, Opc, Context.DependentTy,
3078 Context.DependentTy, TokLoc);
3079 else
3080 return new BinaryOperator(lhs, rhs, Opc, Context.DependentTy, TokLoc);
3081 }
3082
Douglas Gregoreaebc752008-11-06 23:29:22 +00003083 if (getLangOptions().CPlusPlus &&
3084 (lhs->getType()->isRecordType() || lhs->getType()->isEnumeralType() ||
3085 rhs->getType()->isRecordType() || rhs->getType()->isEnumeralType())) {
Douglas Gregoreb8f3062008-11-12 17:17:38 +00003086 // If this is one of the assignment operators, we only perform
3087 // overload resolution if the left-hand side is a class or
3088 // enumeration type (C++ [expr.ass]p3).
3089 if (Opc >= BinaryOperator::Assign && Opc <= BinaryOperator::OrAssign &&
3090 !(lhs->getType()->isRecordType() || lhs->getType()->isEnumeralType())) {
3091 return CreateBuiltinBinOp(TokLoc, Opc, lhs, rhs);
3092 }
Douglas Gregoreaebc752008-11-06 23:29:22 +00003093
3094 // Determine which overloaded operator we're dealing with.
3095 static const OverloadedOperatorKind OverOps[] = {
3096 OO_Star, OO_Slash, OO_Percent,
3097 OO_Plus, OO_Minus,
3098 OO_LessLess, OO_GreaterGreater,
3099 OO_Less, OO_Greater, OO_LessEqual, OO_GreaterEqual,
3100 OO_EqualEqual, OO_ExclaimEqual,
3101 OO_Amp,
3102 OO_Caret,
3103 OO_Pipe,
3104 OO_AmpAmp,
3105 OO_PipePipe,
3106 OO_Equal, OO_StarEqual,
3107 OO_SlashEqual, OO_PercentEqual,
3108 OO_PlusEqual, OO_MinusEqual,
3109 OO_LessLessEqual, OO_GreaterGreaterEqual,
3110 OO_AmpEqual, OO_CaretEqual,
3111 OO_PipeEqual,
3112 OO_Comma
3113 };
3114 OverloadedOperatorKind OverOp = OverOps[Opc];
3115
Douglas Gregor96176b32008-11-18 23:14:02 +00003116 // Add the appropriate overloaded operators (C++ [over.match.oper])
3117 // to the candidate set.
Douglas Gregor74253732008-11-19 15:42:04 +00003118 OverloadCandidateSet CandidateSet;
Douglas Gregoreaebc752008-11-06 23:29:22 +00003119 Expr *Args[2] = { lhs, rhs };
Douglas Gregor96176b32008-11-18 23:14:02 +00003120 AddOperatorCandidates(OverOp, S, Args, 2, CandidateSet);
Douglas Gregoreaebc752008-11-06 23:29:22 +00003121
3122 // Perform overload resolution.
3123 OverloadCandidateSet::iterator Best;
3124 switch (BestViableFunction(CandidateSet, Best)) {
3125 case OR_Success: {
Douglas Gregoreb8f3062008-11-12 17:17:38 +00003126 // We found a built-in operator or an overloaded operator.
Douglas Gregoreaebc752008-11-06 23:29:22 +00003127 FunctionDecl *FnDecl = Best->Function;
3128
Douglas Gregoreb8f3062008-11-12 17:17:38 +00003129 if (FnDecl) {
3130 // We matched an overloaded operator. Build a call to that
3131 // operator.
Douglas Gregoreaebc752008-11-06 23:29:22 +00003132
Douglas Gregoreb8f3062008-11-12 17:17:38 +00003133 // Convert the arguments.
Douglas Gregor96176b32008-11-18 23:14:02 +00003134 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) {
3135 if (PerformObjectArgumentInitialization(lhs, Method) ||
3136 PerformCopyInitialization(rhs, FnDecl->getParamDecl(0)->getType(),
3137 "passing"))
3138 return true;
3139 } else {
3140 // Convert the arguments.
3141 if (PerformCopyInitialization(lhs, FnDecl->getParamDecl(0)->getType(),
3142 "passing") ||
3143 PerformCopyInitialization(rhs, FnDecl->getParamDecl(1)->getType(),
3144 "passing"))
3145 return true;
3146 }
Douglas Gregoreaebc752008-11-06 23:29:22 +00003147
Douglas Gregoreb8f3062008-11-12 17:17:38 +00003148 // Determine the result type
3149 QualType ResultTy
3150 = FnDecl->getType()->getAsFunctionType()->getResultType();
3151 ResultTy = ResultTy.getNonReferenceType();
3152
3153 // Build the actual expression node.
Douglas Gregorb4609802008-11-14 16:09:21 +00003154 Expr *FnExpr = new DeclRefExpr(FnDecl, FnDecl->getType(),
3155 SourceLocation());
3156 UsualUnaryConversions(FnExpr);
3157
Douglas Gregorb4609802008-11-14 16:09:21 +00003158 return new CXXOperatorCallExpr(FnExpr, Args, 2, ResultTy, TokLoc);
Douglas Gregoreb8f3062008-11-12 17:17:38 +00003159 } else {
3160 // We matched a built-in operator. Convert the arguments, then
3161 // break out so that we will build the appropriate built-in
3162 // operator node.
3163 if (PerformCopyInitialization(lhs, Best->BuiltinTypes.ParamTypes[0],
3164 "passing") ||
3165 PerformCopyInitialization(rhs, Best->BuiltinTypes.ParamTypes[1],
3166 "passing"))
3167 return true;
3168
3169 break;
3170 }
Douglas Gregoreaebc752008-11-06 23:29:22 +00003171 }
3172
3173 case OR_No_Viable_Function:
3174 // No viable function; fall through to handling this as a
Douglas Gregoreb8f3062008-11-12 17:17:38 +00003175 // built-in operator, which will produce an error message for us.
Douglas Gregoreaebc752008-11-06 23:29:22 +00003176 break;
3177
3178 case OR_Ambiguous:
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003179 Diag(TokLoc, diag::err_ovl_ambiguous_oper)
3180 << BinaryOperator::getOpcodeStr(Opc)
3181 << lhs->getSourceRange() << rhs->getSourceRange();
Douglas Gregoreaebc752008-11-06 23:29:22 +00003182 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
3183 return true;
3184 }
3185
Douglas Gregoreb8f3062008-11-12 17:17:38 +00003186 // Either we found no viable overloaded operator or we matched a
3187 // built-in operator. In either case, fall through to trying to
3188 // build a built-in operation.
Douglas Gregoreaebc752008-11-06 23:29:22 +00003189 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003190
Douglas Gregoreaebc752008-11-06 23:29:22 +00003191 // Build a built-in binary operation.
3192 return CreateBuiltinBinOp(TokLoc, Opc, lhs, rhs);
Reid Spencer5f016e22007-07-11 17:01:13 +00003193}
3194
3195// Unary Operators. 'Tok' is the token for the operator.
Douglas Gregor74253732008-11-19 15:42:04 +00003196Action::ExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc,
3197 tok::TokenKind Op, ExprTy *input) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003198 Expr *Input = (Expr*)input;
3199 UnaryOperator::Opcode Opc = ConvertTokenKindToUnaryOpcode(Op);
Douglas Gregor74253732008-11-19 15:42:04 +00003200
3201 if (getLangOptions().CPlusPlus &&
3202 (Input->getType()->isRecordType()
3203 || Input->getType()->isEnumeralType())) {
3204 // Determine which overloaded operator we're dealing with.
3205 static const OverloadedOperatorKind OverOps[] = {
3206 OO_None, OO_None,
3207 OO_PlusPlus, OO_MinusMinus,
3208 OO_Amp, OO_Star,
3209 OO_Plus, OO_Minus,
3210 OO_Tilde, OO_Exclaim,
3211 OO_None, OO_None,
3212 OO_None,
3213 OO_None
3214 };
3215 OverloadedOperatorKind OverOp = OverOps[Opc];
3216
3217 // Add the appropriate overloaded operators (C++ [over.match.oper])
3218 // to the candidate set.
3219 OverloadCandidateSet CandidateSet;
3220 if (OverOp != OO_None)
3221 AddOperatorCandidates(OverOp, S, &Input, 1, CandidateSet);
3222
3223 // Perform overload resolution.
3224 OverloadCandidateSet::iterator Best;
3225 switch (BestViableFunction(CandidateSet, Best)) {
3226 case OR_Success: {
3227 // We found a built-in operator or an overloaded operator.
3228 FunctionDecl *FnDecl = Best->Function;
3229
3230 if (FnDecl) {
3231 // We matched an overloaded operator. Build a call to that
3232 // operator.
3233
3234 // Convert the arguments.
3235 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) {
3236 if (PerformObjectArgumentInitialization(Input, Method))
3237 return true;
3238 } else {
3239 // Convert the arguments.
3240 if (PerformCopyInitialization(Input,
3241 FnDecl->getParamDecl(0)->getType(),
3242 "passing"))
3243 return true;
3244 }
3245
3246 // Determine the result type
3247 QualType ResultTy
3248 = FnDecl->getType()->getAsFunctionType()->getResultType();
3249 ResultTy = ResultTy.getNonReferenceType();
3250
3251 // Build the actual expression node.
3252 Expr *FnExpr = new DeclRefExpr(FnDecl, FnDecl->getType(),
3253 SourceLocation());
3254 UsualUnaryConversions(FnExpr);
3255
3256 return new CXXOperatorCallExpr(FnExpr, &Input, 1, ResultTy, OpLoc);
3257 } else {
3258 // We matched a built-in operator. Convert the arguments, then
3259 // break out so that we will build the appropriate built-in
3260 // operator node.
3261 if (PerformCopyInitialization(Input, Best->BuiltinTypes.ParamTypes[0],
3262 "passing"))
3263 return true;
3264
3265 break;
3266 }
3267 }
3268
3269 case OR_No_Viable_Function:
3270 // No viable function; fall through to handling this as a
3271 // built-in operator, which will produce an error message for us.
3272 break;
3273
3274 case OR_Ambiguous:
3275 Diag(OpLoc, diag::err_ovl_ambiguous_oper)
3276 << UnaryOperator::getOpcodeStr(Opc)
3277 << Input->getSourceRange();
3278 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
3279 return true;
3280 }
3281
3282 // Either we found no viable overloaded operator or we matched a
3283 // built-in operator. In either case, fall through to trying to
3284 // build a built-in operation.
3285 }
3286
Reid Spencer5f016e22007-07-11 17:01:13 +00003287 QualType resultType;
3288 switch (Opc) {
3289 default:
3290 assert(0 && "Unimplemented unary expr!");
3291 case UnaryOperator::PreInc:
3292 case UnaryOperator::PreDec:
3293 resultType = CheckIncrementDecrementOperand(Input, OpLoc);
3294 break;
3295 case UnaryOperator::AddrOf:
3296 resultType = CheckAddressOfOperand(Input, OpLoc);
3297 break;
3298 case UnaryOperator::Deref:
Steve Naroff1ca9b112007-12-18 04:06:57 +00003299 DefaultFunctionArrayConversion(Input);
Reid Spencer5f016e22007-07-11 17:01:13 +00003300 resultType = CheckIndirectionOperand(Input, OpLoc);
3301 break;
3302 case UnaryOperator::Plus:
3303 case UnaryOperator::Minus:
Steve Naroffc80b4ee2007-07-16 21:54:35 +00003304 UsualUnaryConversions(Input);
3305 resultType = Input->getType();
Douglas Gregor74253732008-11-19 15:42:04 +00003306 if (resultType->isArithmeticType()) // C99 6.5.3.3p1
3307 break;
3308 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6-7
3309 resultType->isEnumeralType())
3310 break;
3311 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6
3312 Opc == UnaryOperator::Plus &&
3313 resultType->isPointerType())
3314 break;
3315
Chris Lattnerd3a94e22008-11-20 06:06:08 +00003316 return Diag(OpLoc, diag::err_typecheck_unary_expr)
Chris Lattnerd1625842008-11-24 06:25:27 +00003317 << resultType << Input->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00003318 case UnaryOperator::Not: // bitwise complement
Steve Naroffc80b4ee2007-07-16 21:54:35 +00003319 UsualUnaryConversions(Input);
3320 resultType = Input->getType();
Chris Lattner02a65142008-07-25 23:52:49 +00003321 // C99 6.5.3.3p1. We allow complex int and float as a GCC extension.
3322 if (resultType->isComplexType() || resultType->isComplexIntegerType())
3323 // C99 does not support '~' for complex conjugation.
Chris Lattnerd3a94e22008-11-20 06:06:08 +00003324 Diag(OpLoc, diag::ext_integer_complement_complex)
Chris Lattnerd1625842008-11-24 06:25:27 +00003325 << resultType << Input->getSourceRange();
Chris Lattner02a65142008-07-25 23:52:49 +00003326 else if (!resultType->isIntegerType())
Chris Lattnerd3a94e22008-11-20 06:06:08 +00003327 return Diag(OpLoc, diag::err_typecheck_unary_expr)
Chris Lattnerd1625842008-11-24 06:25:27 +00003328 << resultType << Input->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00003329 break;
3330 case UnaryOperator::LNot: // logical negation
3331 // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5).
Steve Naroffc80b4ee2007-07-16 21:54:35 +00003332 DefaultFunctionArrayConversion(Input);
3333 resultType = Input->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00003334 if (!resultType->isScalarType()) // C99 6.5.3.3p1
Chris Lattnerd3a94e22008-11-20 06:06:08 +00003335 return Diag(OpLoc, diag::err_typecheck_unary_expr)
Chris Lattnerd1625842008-11-24 06:25:27 +00003336 << resultType << Input->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00003337 // LNot always has type int. C99 6.5.3.3p5.
3338 resultType = Context.IntTy;
3339 break;
Chris Lattnerdbb36972007-08-24 21:16:53 +00003340 case UnaryOperator::Real:
Chris Lattnerdbb36972007-08-24 21:16:53 +00003341 case UnaryOperator::Imag:
Chris Lattner5d794252007-08-24 21:41:10 +00003342 resultType = CheckRealImagOperand(Input, OpLoc);
Chris Lattnerdbb36972007-08-24 21:16:53 +00003343 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00003344 case UnaryOperator::Extension:
Reid Spencer5f016e22007-07-11 17:01:13 +00003345 resultType = Input->getType();
3346 break;
3347 }
3348 if (resultType.isNull())
3349 return true;
3350 return new UnaryOperator(Input, Opc, resultType, OpLoc);
3351}
3352
Steve Naroff1b273c42007-09-16 14:56:35 +00003353/// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo".
3354Sema::ExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +00003355 SourceLocation LabLoc,
3356 IdentifierInfo *LabelII) {
3357 // Look up the record for this label identifier.
3358 LabelStmt *&LabelDecl = LabelMap[LabelII];
3359
Daniel Dunbar0ffb1252008-08-04 16:51:22 +00003360 // If we haven't seen this label yet, create a forward reference. It
3361 // will be validated and/or cleaned up in ActOnFinishFunctionBody.
Reid Spencer5f016e22007-07-11 17:01:13 +00003362 if (LabelDecl == 0)
3363 LabelDecl = new LabelStmt(LabLoc, LabelII, 0);
3364
3365 // Create the AST node. The address of a label always has type 'void*'.
Chris Lattner6481a572007-08-03 17:31:20 +00003366 return new AddrLabelExpr(OpLoc, LabLoc, LabelDecl,
3367 Context.getPointerType(Context.VoidTy));
Reid Spencer5f016e22007-07-11 17:01:13 +00003368}
3369
Steve Naroff1b273c42007-09-16 14:56:35 +00003370Sema::ExprResult Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtTy *substmt,
Chris Lattnerab18c4c2007-07-24 16:58:17 +00003371 SourceLocation RPLoc) { // "({..})"
3372 Stmt *SubStmt = static_cast<Stmt*>(substmt);
3373 assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!");
3374 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt);
3375
3376 // FIXME: there are a variety of strange constraints to enforce here, for
3377 // example, it is not possible to goto into a stmt expression apparently.
3378 // More semantic analysis is needed.
3379
3380 // FIXME: the last statement in the compount stmt has its value used. We
3381 // should not warn about it being unused.
3382
3383 // If there are sub stmts in the compound stmt, take the type of the last one
3384 // as the type of the stmtexpr.
3385 QualType Ty = Context.VoidTy;
3386
Chris Lattner611b2ec2008-07-26 19:51:01 +00003387 if (!Compound->body_empty()) {
3388 Stmt *LastStmt = Compound->body_back();
3389 // If LastStmt is a label, skip down through into the body.
3390 while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt))
3391 LastStmt = Label->getSubStmt();
3392
3393 if (Expr *LastExpr = dyn_cast<Expr>(LastStmt))
Chris Lattnerab18c4c2007-07-24 16:58:17 +00003394 Ty = LastExpr->getType();
Chris Lattner611b2ec2008-07-26 19:51:01 +00003395 }
Chris Lattnerab18c4c2007-07-24 16:58:17 +00003396
3397 return new StmtExpr(Compound, Ty, LPLoc, RPLoc);
3398}
Steve Naroffd34e9152007-08-01 22:05:33 +00003399
Steve Naroff1b273c42007-09-16 14:56:35 +00003400Sema::ExprResult Sema::ActOnBuiltinOffsetOf(SourceLocation BuiltinLoc,
Chris Lattner73d0d4f2007-08-30 17:45:32 +00003401 SourceLocation TypeLoc,
3402 TypeTy *argty,
3403 OffsetOfComponent *CompPtr,
3404 unsigned NumComponents,
3405 SourceLocation RPLoc) {
3406 QualType ArgTy = QualType::getFromOpaquePtr(argty);
3407 assert(!ArgTy.isNull() && "Missing type argument!");
3408
3409 // We must have at least one component that refers to the type, and the first
3410 // one is known to be a field designator. Verify that the ArgTy represents
3411 // a struct/union/class.
3412 if (!ArgTy->isRecordType())
Chris Lattnerd1625842008-11-24 06:25:27 +00003413 return Diag(TypeLoc, diag::err_offsetof_record_type) << ArgTy;
Chris Lattner73d0d4f2007-08-30 17:45:32 +00003414
3415 // Otherwise, create a compound literal expression as the base, and
3416 // iteratively process the offsetof designators.
Steve Naroffe9b12192008-01-14 18:19:28 +00003417 Expr *Res = new CompoundLiteralExpr(SourceLocation(), ArgTy, 0, false);
Chris Lattner73d0d4f2007-08-30 17:45:32 +00003418
Chris Lattner9e2b75c2007-08-31 21:49:13 +00003419 // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a
3420 // GCC extension, diagnose them.
3421 if (NumComponents != 1)
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00003422 Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator)
3423 << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd);
Chris Lattner9e2b75c2007-08-31 21:49:13 +00003424
Chris Lattner73d0d4f2007-08-30 17:45:32 +00003425 for (unsigned i = 0; i != NumComponents; ++i) {
3426 const OffsetOfComponent &OC = CompPtr[i];
3427 if (OC.isBrackets) {
3428 // Offset of an array sub-field. TODO: Should we allow vector elements?
Chris Lattnerc63a1f22008-08-04 07:31:14 +00003429 const ArrayType *AT = Context.getAsArrayType(Res->getType());
Chris Lattner73d0d4f2007-08-30 17:45:32 +00003430 if (!AT) {
3431 delete Res;
Chris Lattnerd1625842008-11-24 06:25:27 +00003432 return Diag(OC.LocEnd, diag::err_offsetof_array_type) << Res->getType();
Chris Lattner73d0d4f2007-08-30 17:45:32 +00003433 }
3434
Chris Lattner704fe352007-08-30 17:59:59 +00003435 // FIXME: C++: Verify that operator[] isn't overloaded.
3436
Chris Lattner73d0d4f2007-08-30 17:45:32 +00003437 // C99 6.5.2.1p1
3438 Expr *Idx = static_cast<Expr*>(OC.U.E);
3439 if (!Idx->getType()->isIntegerType())
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00003440 return Diag(Idx->getLocStart(), diag::err_typecheck_subscript)
3441 << Idx->getSourceRange();
Chris Lattner73d0d4f2007-08-30 17:45:32 +00003442
3443 Res = new ArraySubscriptExpr(Res, Idx, AT->getElementType(), OC.LocEnd);
3444 continue;
3445 }
3446
3447 const RecordType *RC = Res->getType()->getAsRecordType();
3448 if (!RC) {
3449 delete Res;
Chris Lattnerd1625842008-11-24 06:25:27 +00003450 return Diag(OC.LocEnd, diag::err_offsetof_record_type) << Res->getType();
Chris Lattner73d0d4f2007-08-30 17:45:32 +00003451 }
3452
3453 // Get the decl corresponding to this.
3454 RecordDecl *RD = RC->getDecl();
3455 FieldDecl *MemberDecl = RD->getMember(OC.U.IdentInfo);
3456 if (!MemberDecl)
Chris Lattner3c73c412008-11-19 08:23:25 +00003457 return Diag(BuiltinLoc, diag::err_typecheck_no_member)
3458 << OC.U.IdentInfo << SourceRange(OC.LocStart, OC.LocEnd);
Chris Lattner704fe352007-08-30 17:59:59 +00003459
3460 // FIXME: C++: Verify that MemberDecl isn't a static field.
3461 // FIXME: Verify that MemberDecl isn't a bitfield.
Eli Friedman51019072008-02-06 22:48:16 +00003462 // MemberDecl->getType() doesn't get the right qualifiers, but it doesn't
3463 // matter here.
Douglas Gregor9d293df2008-10-28 00:22:11 +00003464 Res = new MemberExpr(Res, false, MemberDecl, OC.LocEnd,
3465 MemberDecl->getType().getNonReferenceType());
Chris Lattner73d0d4f2007-08-30 17:45:32 +00003466 }
3467
3468 return new UnaryOperator(Res, UnaryOperator::OffsetOf, Context.getSizeType(),
3469 BuiltinLoc);
3470}
3471
3472
Steve Naroff1b273c42007-09-16 14:56:35 +00003473Sema::ExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc,
Steve Naroffd34e9152007-08-01 22:05:33 +00003474 TypeTy *arg1, TypeTy *arg2,
3475 SourceLocation RPLoc) {
3476 QualType argT1 = QualType::getFromOpaquePtr(arg1);
3477 QualType argT2 = QualType::getFromOpaquePtr(arg2);
3478
3479 assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)");
3480
Chris Lattner73d0d4f2007-08-30 17:45:32 +00003481 return new TypesCompatibleExpr(Context.IntTy, BuiltinLoc, argT1, argT2,RPLoc);
Steve Naroffd34e9152007-08-01 22:05:33 +00003482}
3483
Steve Naroff1b273c42007-09-16 14:56:35 +00003484Sema::ExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, ExprTy *cond,
Steve Naroffd04fdd52007-08-03 21:21:27 +00003485 ExprTy *expr1, ExprTy *expr2,
3486 SourceLocation RPLoc) {
3487 Expr *CondExpr = static_cast<Expr*>(cond);
3488 Expr *LHSExpr = static_cast<Expr*>(expr1);
3489 Expr *RHSExpr = static_cast<Expr*>(expr2);
3490
3491 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)");
3492
3493 // The conditional expression is required to be a constant expression.
3494 llvm::APSInt condEval(32);
3495 SourceLocation ExpLoc;
3496 if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc))
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00003497 return Diag(ExpLoc, diag::err_typecheck_choose_expr_requires_constant)
3498 << CondExpr->getSourceRange();
Steve Naroffd04fdd52007-08-03 21:21:27 +00003499
3500 // If the condition is > zero, then the AST type is the same as the LSHExpr.
3501 QualType resType = condEval.getZExtValue() ? LHSExpr->getType() :
3502 RHSExpr->getType();
3503 return new ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, resType, RPLoc);
3504}
3505
Steve Naroff4eb206b2008-09-03 18:15:37 +00003506//===----------------------------------------------------------------------===//
3507// Clang Extensions.
3508//===----------------------------------------------------------------------===//
3509
3510/// ActOnBlockStart - This callback is invoked when a block literal is started.
Steve Naroff090276f2008-10-10 01:28:17 +00003511void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *BlockScope) {
Steve Naroff4eb206b2008-09-03 18:15:37 +00003512 // Analyze block parameters.
3513 BlockSemaInfo *BSI = new BlockSemaInfo();
3514
3515 // Add BSI to CurBlock.
3516 BSI->PrevBlockInfo = CurBlock;
3517 CurBlock = BSI;
3518
3519 BSI->ReturnType = 0;
3520 BSI->TheScope = BlockScope;
3521
Steve Naroff090276f2008-10-10 01:28:17 +00003522 BSI->TheDecl = BlockDecl::Create(Context, CurContext, CaretLoc);
3523 PushDeclContext(BSI->TheDecl);
3524}
3525
3526void Sema::ActOnBlockArguments(Declarator &ParamInfo) {
Steve Naroff4eb206b2008-09-03 18:15:37 +00003527 // Analyze arguments to block.
3528 assert(ParamInfo.getTypeObject(0).Kind == DeclaratorChunk::Function &&
3529 "Not a function declarator!");
3530 DeclaratorChunk::FunctionTypeInfo &FTI = ParamInfo.getTypeObject(0).Fun;
3531
Steve Naroff090276f2008-10-10 01:28:17 +00003532 CurBlock->hasPrototype = FTI.hasPrototype;
3533 CurBlock->isVariadic = true;
Steve Naroff4eb206b2008-09-03 18:15:37 +00003534
3535 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes
3536 // no arguments, not a function that takes a single void argument.
3537 if (FTI.hasPrototype &&
3538 FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
3539 (!((ParmVarDecl *)FTI.ArgInfo[0].Param)->getType().getCVRQualifiers() &&
3540 ((ParmVarDecl *)FTI.ArgInfo[0].Param)->getType()->isVoidType())) {
3541 // empty arg list, don't push any params.
Steve Naroff090276f2008-10-10 01:28:17 +00003542 CurBlock->isVariadic = false;
Steve Naroff4eb206b2008-09-03 18:15:37 +00003543 } else if (FTI.hasPrototype) {
3544 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
Steve Naroff090276f2008-10-10 01:28:17 +00003545 CurBlock->Params.push_back((ParmVarDecl *)FTI.ArgInfo[i].Param);
3546 CurBlock->isVariadic = FTI.isVariadic;
Steve Naroff4eb206b2008-09-03 18:15:37 +00003547 }
Steve Naroff090276f2008-10-10 01:28:17 +00003548 CurBlock->TheDecl->setArgs(&CurBlock->Params[0], CurBlock->Params.size());
3549
3550 for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(),
3551 E = CurBlock->TheDecl->param_end(); AI != E; ++AI)
3552 // If this has an identifier, add it to the scope stack.
3553 if ((*AI)->getIdentifier())
3554 PushOnScopeChains(*AI, CurBlock->TheScope);
Steve Naroff4eb206b2008-09-03 18:15:37 +00003555}
3556
3557/// ActOnBlockError - If there is an error parsing a block, this callback
3558/// is invoked to pop the information about the block from the action impl.
3559void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) {
3560 // Ensure that CurBlock is deleted.
3561 llvm::OwningPtr<BlockSemaInfo> CC(CurBlock);
3562
3563 // Pop off CurBlock, handle nested blocks.
3564 CurBlock = CurBlock->PrevBlockInfo;
3565
3566 // FIXME: Delete the ParmVarDecl objects as well???
3567
3568}
3569
3570/// ActOnBlockStmtExpr - This is called when the body of a block statement
3571/// literal was successfully completed. ^(int x){...}
3572Sema::ExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc, StmtTy *body,
3573 Scope *CurScope) {
3574 // Ensure that CurBlock is deleted.
3575 llvm::OwningPtr<BlockSemaInfo> BSI(CurBlock);
3576 llvm::OwningPtr<CompoundStmt> Body(static_cast<CompoundStmt*>(body));
3577
Steve Naroff090276f2008-10-10 01:28:17 +00003578 PopDeclContext();
3579
Steve Naroff4eb206b2008-09-03 18:15:37 +00003580 // Pop off CurBlock, handle nested blocks.
3581 CurBlock = CurBlock->PrevBlockInfo;
3582
3583 QualType RetTy = Context.VoidTy;
3584 if (BSI->ReturnType)
3585 RetTy = QualType(BSI->ReturnType, 0);
3586
3587 llvm::SmallVector<QualType, 8> ArgTypes;
3588 for (unsigned i = 0, e = BSI->Params.size(); i != e; ++i)
3589 ArgTypes.push_back(BSI->Params[i]->getType());
3590
3591 QualType BlockTy;
3592 if (!BSI->hasPrototype)
3593 BlockTy = Context.getFunctionTypeNoProto(RetTy);
3594 else
3595 BlockTy = Context.getFunctionType(RetTy, &ArgTypes[0], ArgTypes.size(),
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00003596 BSI->isVariadic, 0);
Steve Naroff4eb206b2008-09-03 18:15:37 +00003597
3598 BlockTy = Context.getBlockPointerType(BlockTy);
Steve Naroff56ee6892008-10-08 17:01:13 +00003599
Steve Naroff1c90bfc2008-10-08 18:44:00 +00003600 BSI->TheDecl->setBody(Body.take());
3601 return new BlockExpr(BSI->TheDecl, BlockTy);
Steve Naroff4eb206b2008-09-03 18:15:37 +00003602}
3603
Nate Begeman67295d02008-01-30 20:50:20 +00003604/// ExprsMatchFnType - return true if the Exprs in array Args have
Nate Begemane2ce1d92008-01-17 17:46:27 +00003605/// QualTypes that match the QualTypes of the arguments of the FnType.
Nate Begeman67295d02008-01-30 20:50:20 +00003606/// The number of arguments has already been validated to match the number of
3607/// arguments in FnType.
Chris Lattnerb77792e2008-07-26 22:17:49 +00003608static bool ExprsMatchFnType(Expr **Args, const FunctionTypeProto *FnType,
3609 ASTContext &Context) {
Nate Begemane2ce1d92008-01-17 17:46:27 +00003610 unsigned NumParams = FnType->getNumArgs();
Nate Begemand6595fa2008-04-18 23:35:14 +00003611 for (unsigned i = 0; i != NumParams; ++i) {
Chris Lattnerb77792e2008-07-26 22:17:49 +00003612 QualType ExprTy = Context.getCanonicalType(Args[i]->getType());
3613 QualType ParmTy = Context.getCanonicalType(FnType->getArgType(i));
Nate Begemand6595fa2008-04-18 23:35:14 +00003614
3615 if (ExprTy.getUnqualifiedType() != ParmTy.getUnqualifiedType())
Nate Begemane2ce1d92008-01-17 17:46:27 +00003616 return false;
Nate Begemand6595fa2008-04-18 23:35:14 +00003617 }
Nate Begemane2ce1d92008-01-17 17:46:27 +00003618 return true;
3619}
3620
3621Sema::ExprResult Sema::ActOnOverloadExpr(ExprTy **args, unsigned NumArgs,
3622 SourceLocation *CommaLocs,
3623 SourceLocation BuiltinLoc,
3624 SourceLocation RParenLoc) {
Nate Begeman796ef3d2008-01-31 05:38:29 +00003625 // __builtin_overload requires at least 2 arguments
3626 if (NumArgs < 2)
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00003627 return Diag(RParenLoc, diag::err_typecheck_call_too_few_args)
3628 << SourceRange(BuiltinLoc, RParenLoc);
Nate Begemane2ce1d92008-01-17 17:46:27 +00003629
Nate Begemane2ce1d92008-01-17 17:46:27 +00003630 // The first argument is required to be a constant expression. It tells us
3631 // the number of arguments to pass to each of the functions to be overloaded.
Nate Begeman796ef3d2008-01-31 05:38:29 +00003632 Expr **Args = reinterpret_cast<Expr**>(args);
Nate Begemane2ce1d92008-01-17 17:46:27 +00003633 Expr *NParamsExpr = Args[0];
3634 llvm::APSInt constEval(32);
3635 SourceLocation ExpLoc;
3636 if (!NParamsExpr->isIntegerConstantExpr(constEval, Context, &ExpLoc))
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00003637 return Diag(ExpLoc, diag::err_overload_expr_requires_non_zero_constant)
3638 << NParamsExpr->getSourceRange();
Nate Begemane2ce1d92008-01-17 17:46:27 +00003639
3640 // Verify that the number of parameters is > 0
3641 unsigned NumParams = constEval.getZExtValue();
3642 if (NumParams == 0)
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00003643 return Diag(ExpLoc, diag::err_overload_expr_requires_non_zero_constant)
3644 << NParamsExpr->getSourceRange();
Nate Begemane2ce1d92008-01-17 17:46:27 +00003645 // Verify that we have at least 1 + NumParams arguments to the builtin.
3646 if ((NumParams + 1) > NumArgs)
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00003647 return Diag(RParenLoc, diag::err_typecheck_call_too_few_args)
3648 << SourceRange(BuiltinLoc, RParenLoc);
Nate Begemane2ce1d92008-01-17 17:46:27 +00003649
3650 // Figure out the return type, by matching the args to one of the functions
Nate Begeman67295d02008-01-30 20:50:20 +00003651 // listed after the parameters.
Nate Begeman796ef3d2008-01-31 05:38:29 +00003652 OverloadExpr *OE = 0;
Nate Begemane2ce1d92008-01-17 17:46:27 +00003653 for (unsigned i = NumParams + 1; i < NumArgs; ++i) {
3654 // UsualUnaryConversions will convert the function DeclRefExpr into a
3655 // pointer to function.
3656 Expr *Fn = UsualUnaryConversions(Args[i]);
Chris Lattnerb77792e2008-07-26 22:17:49 +00003657 const FunctionTypeProto *FnType = 0;
3658 if (const PointerType *PT = Fn->getType()->getAsPointerType())
3659 FnType = PT->getPointeeType()->getAsFunctionTypeProto();
Nate Begemane2ce1d92008-01-17 17:46:27 +00003660
3661 // The Expr type must be FunctionTypeProto, since FunctionTypeProto has no
3662 // parameters, and the number of parameters must match the value passed to
3663 // the builtin.
3664 if (!FnType || (FnType->getNumArgs() != NumParams))
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00003665 return Diag(Fn->getExprLoc(), diag::err_overload_incorrect_fntype)
3666 << Fn->getSourceRange();
Nate Begemane2ce1d92008-01-17 17:46:27 +00003667
3668 // Scan the parameter list for the FunctionType, checking the QualType of
Nate Begeman67295d02008-01-30 20:50:20 +00003669 // each parameter against the QualTypes of the arguments to the builtin.
Nate Begemane2ce1d92008-01-17 17:46:27 +00003670 // If they match, return a new OverloadExpr.
Chris Lattnerb77792e2008-07-26 22:17:49 +00003671 if (ExprsMatchFnType(Args+1, FnType, Context)) {
Nate Begeman796ef3d2008-01-31 05:38:29 +00003672 if (OE)
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00003673 return Diag(Fn->getExprLoc(), diag::err_overload_multiple_match)
3674 << OE->getFn()->getSourceRange();
Nate Begeman796ef3d2008-01-31 05:38:29 +00003675 // Remember our match, and continue processing the remaining arguments
3676 // to catch any errors.
Douglas Gregor9d293df2008-10-28 00:22:11 +00003677 OE = new OverloadExpr(Args, NumArgs, i,
3678 FnType->getResultType().getNonReferenceType(),
Nate Begeman796ef3d2008-01-31 05:38:29 +00003679 BuiltinLoc, RParenLoc);
3680 }
Nate Begemane2ce1d92008-01-17 17:46:27 +00003681 }
Nate Begeman796ef3d2008-01-31 05:38:29 +00003682 // Return the newly created OverloadExpr node, if we succeded in matching
3683 // exactly one of the candidate functions.
3684 if (OE)
3685 return OE;
Nate Begemane2ce1d92008-01-17 17:46:27 +00003686
3687 // If we didn't find a matching function Expr in the __builtin_overload list
3688 // the return an error.
3689 std::string typeNames;
Nate Begeman67295d02008-01-30 20:50:20 +00003690 for (unsigned i = 0; i != NumParams; ++i) {
3691 if (i != 0) typeNames += ", ";
3692 typeNames += Args[i+1]->getType().getAsString();
3693 }
Nate Begemane2ce1d92008-01-17 17:46:27 +00003694
Chris Lattnerd3a94e22008-11-20 06:06:08 +00003695 return Diag(BuiltinLoc, diag::err_overload_no_match)
3696 << typeNames << SourceRange(BuiltinLoc, RParenLoc);
Nate Begemane2ce1d92008-01-17 17:46:27 +00003697}
3698
Anders Carlsson7c50aca2007-10-15 20:28:48 +00003699Sema::ExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc,
3700 ExprTy *expr, TypeTy *type,
Chris Lattner5cf216b2008-01-04 18:04:52 +00003701 SourceLocation RPLoc) {
Anders Carlsson7c50aca2007-10-15 20:28:48 +00003702 Expr *E = static_cast<Expr*>(expr);
3703 QualType T = QualType::getFromOpaquePtr(type);
3704
3705 InitBuiltinVaListType();
Eli Friedmanc34bcde2008-08-09 23:32:40 +00003706
3707 // Get the va_list type
3708 QualType VaListType = Context.getBuiltinVaListType();
3709 // Deal with implicit array decay; for example, on x86-64,
3710 // va_list is an array, but it's supposed to decay to
3711 // a pointer for va_arg.
3712 if (VaListType->isArrayType())
3713 VaListType = Context.getArrayDecayedType(VaListType);
Eli Friedmanefbe85c2008-08-20 22:17:17 +00003714 // Make sure the input expression also decays appropriately.
3715 UsualUnaryConversions(E);
Eli Friedmanc34bcde2008-08-09 23:32:40 +00003716
3717 if (CheckAssignmentConstraints(VaListType, E->getType()) != Compatible)
Anders Carlsson7c50aca2007-10-15 20:28:48 +00003718 return Diag(E->getLocStart(),
Chris Lattnerd3a94e22008-11-20 06:06:08 +00003719 diag::err_first_argument_to_va_arg_not_of_type_va_list)
Chris Lattnerd1625842008-11-24 06:25:27 +00003720 << E->getType() << E->getSourceRange();
Anders Carlsson7c50aca2007-10-15 20:28:48 +00003721
3722 // FIXME: Warn if a non-POD type is passed in.
3723
Douglas Gregor9d293df2008-10-28 00:22:11 +00003724 return new VAArgExpr(BuiltinLoc, E, T.getNonReferenceType(), RPLoc);
Anders Carlsson7c50aca2007-10-15 20:28:48 +00003725}
3726
Douglas Gregor2d8b2732008-11-29 04:51:27 +00003727Sema::ExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) {
3728 // The type of __null will be int or long, depending on the size of
3729 // pointers on the target.
3730 QualType Ty;
3731 if (Context.Target.getPointerWidth(0) == Context.Target.getIntWidth())
3732 Ty = Context.IntTy;
3733 else
3734 Ty = Context.LongTy;
3735
3736 return new GNUNullExpr(Ty, TokenLoc);
3737}
3738
Chris Lattner5cf216b2008-01-04 18:04:52 +00003739bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy,
3740 SourceLocation Loc,
3741 QualType DstType, QualType SrcType,
3742 Expr *SrcExpr, const char *Flavor) {
3743 // Decode the result (notice that AST's are still created for extensions).
3744 bool isInvalid = false;
3745 unsigned DiagKind;
3746 switch (ConvTy) {
3747 default: assert(0 && "Unknown conversion type");
3748 case Compatible: return false;
Chris Lattnerb7b61152008-01-04 18:22:42 +00003749 case PointerToInt:
Chris Lattner5cf216b2008-01-04 18:04:52 +00003750 DiagKind = diag::ext_typecheck_convert_pointer_int;
3751 break;
Chris Lattnerb7b61152008-01-04 18:22:42 +00003752 case IntToPointer:
3753 DiagKind = diag::ext_typecheck_convert_int_pointer;
3754 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00003755 case IncompatiblePointer:
3756 DiagKind = diag::ext_typecheck_convert_incompatible_pointer;
3757 break;
3758 case FunctionVoidPointer:
3759 DiagKind = diag::ext_typecheck_convert_pointer_void_func;
3760 break;
3761 case CompatiblePointerDiscardsQualifiers:
Douglas Gregor77a52232008-09-12 00:47:35 +00003762 // If the qualifiers lost were because we were applying the
3763 // (deprecated) C++ conversion from a string literal to a char*
3764 // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME:
3765 // Ideally, this check would be performed in
3766 // CheckPointerTypesForAssignment. However, that would require a
3767 // bit of refactoring (so that the second argument is an
3768 // expression, rather than a type), which should be done as part
3769 // of a larger effort to fix CheckPointerTypesForAssignment for
3770 // C++ semantics.
3771 if (getLangOptions().CPlusPlus &&
3772 IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType))
3773 return false;
Chris Lattner5cf216b2008-01-04 18:04:52 +00003774 DiagKind = diag::ext_typecheck_convert_discards_qualifiers;
3775 break;
Steve Naroff1c7d0672008-09-04 15:10:53 +00003776 case IntToBlockPointer:
3777 DiagKind = diag::err_int_to_block_pointer;
3778 break;
3779 case IncompatibleBlockPointer:
Steve Naroffba80c9a2008-09-24 23:31:10 +00003780 DiagKind = diag::ext_typecheck_convert_incompatible_block_pointer;
Steve Naroff1c7d0672008-09-04 15:10:53 +00003781 break;
Steve Naroff39579072008-10-14 22:18:38 +00003782 case IncompatibleObjCQualifiedId:
3783 // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since
3784 // it can give a more specific diagnostic.
3785 DiagKind = diag::warn_incompatible_qualified_id;
3786 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00003787 case Incompatible:
3788 DiagKind = diag::err_typecheck_convert_incompatible;
3789 isInvalid = true;
3790 break;
3791 }
3792
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003793 Diag(Loc, DiagKind) << DstType << SrcType << Flavor
3794 << SrcExpr->getSourceRange();
Chris Lattner5cf216b2008-01-04 18:04:52 +00003795 return isInvalid;
3796}
Anders Carlssone21555e2008-11-30 19:50:32 +00003797
3798bool Sema::VerifyIntegerConstantExpression(const Expr* E, llvm::APSInt *Result)
3799{
3800 Expr::EvalResult EvalResult;
3801
3802 if (!E->Evaluate(EvalResult, Context) || !EvalResult.Val.isInt() ||
3803 EvalResult.HasSideEffects) {
3804 Diag(E->getExprLoc(), diag::err_expr_not_ice) << E->getSourceRange();
3805
3806 if (EvalResult.Diag) {
3807 // We only show the note if it's not the usual "invalid subexpression"
3808 // or if it's actually in a subexpression.
3809 if (EvalResult.Diag != diag::note_invalid_subexpr_in_ice ||
3810 E->IgnoreParens() != EvalResult.DiagExpr->IgnoreParens())
3811 Diag(EvalResult.DiagLoc, EvalResult.Diag);
3812 }
3813
3814 return true;
3815 }
3816
3817 if (EvalResult.Diag) {
3818 Diag(E->getExprLoc(), diag::ext_expr_not_ice) <<
3819 E->getSourceRange();
3820
3821 // Print the reason it's not a constant.
3822 if (Diags.getDiagnosticLevel(diag::ext_expr_not_ice) != Diagnostic::Ignored)
3823 Diag(EvalResult.DiagLoc, EvalResult.Diag);
3824 }
3825
3826 if (Result)
3827 *Result = EvalResult.Val.getInt();
3828 return false;
3829}