blob: aba6f6790278c76d6b92a359dbdb49b99b781a66 [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"
Ted Kremenek588e5eb2007-11-25 00:58:00 +000015#include "SemaUtil.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000016#include "clang/AST/ASTContext.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000017#include "clang/AST/Expr.h"
Steve Naroff563477d2007-09-18 23:55:05 +000018#include "clang/Parse/DeclSpec.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000019#include "clang/Lex/Preprocessor.h"
20#include "clang/Lex/LiteralSupport.h"
21#include "clang/Basic/SourceManager.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022#include "clang/Basic/TargetInfo.h"
Chris Lattner925e60d2007-12-28 05:29:59 +000023#include "llvm/ADT/OwningPtr.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000024#include "llvm/ADT/SmallString.h"
Chris Lattner59907c42007-08-10 20:18:51 +000025#include "llvm/ADT/StringExtras.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000026using namespace clang;
27
Steve Narofff69936d2007-09-16 03:34:24 +000028/// ActOnStringLiteral - The specified tokens were lexed as pasted string
Reid Spencer5f016e22007-07-11 17:01:13 +000029/// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string
30/// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from
31/// multiple tokens. However, the common case is that StringToks points to one
32/// string.
33///
34Action::ExprResult
Steve Narofff69936d2007-09-16 03:34:24 +000035Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) {
Reid Spencer5f016e22007-07-11 17:01:13 +000036 assert(NumStringToks && "Must have at least one string!");
37
38 StringLiteralParser Literal(StringToks, NumStringToks, PP, Context.Target);
39 if (Literal.hadError)
40 return ExprResult(true);
41
42 llvm::SmallVector<SourceLocation, 4> StringTokLocs;
43 for (unsigned i = 0; i != NumStringToks; ++i)
44 StringTokLocs.push_back(StringToks[i].getLocation());
45
46 // FIXME: handle wchar_t
Anders Carlssonee98ac52007-10-15 02:50:23 +000047 QualType t;
48
49 if (Literal.Pascal)
50 t = Context.getPointerType(Context.UnsignedCharTy);
51 else
52 t = Context.getPointerType(Context.CharTy);
53
54 if (Literal.Pascal && Literal.GetStringLength() > 256)
55 return Diag(StringToks[0].getLocation(), diag::err_pascal_string_too_long,
56 SourceRange(StringToks[0].getLocation(),
57 StringToks[NumStringToks-1].getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +000058
59 // Pass &StringTokLocs[0], StringTokLocs.size() to factory!
60 return new StringLiteral(Literal.GetString(), Literal.GetStringLength(),
Anders Carlssonee98ac52007-10-15 02:50:23 +000061 Literal.AnyWide, t,
62 StringToks[0].getLocation(),
Reid Spencer5f016e22007-07-11 17:01:13 +000063 StringToks[NumStringToks-1].getLocation());
64}
65
66
Steve Naroff08d92e42007-09-15 18:49:24 +000067/// ActOnIdentifierExpr - The parser read an identifier in expression context,
Reid Spencer5f016e22007-07-11 17:01:13 +000068/// validate it per-C99 6.5.1. HasTrailingLParen indicates whether this
69/// identifier is used in an function call context.
Steve Naroff08d92e42007-09-15 18:49:24 +000070Sema::ExprResult Sema::ActOnIdentifierExpr(Scope *S, SourceLocation Loc,
Reid Spencer5f016e22007-07-11 17:01:13 +000071 IdentifierInfo &II,
72 bool HasTrailingLParen) {
73 // Could be enum-constant or decl.
Steve Naroff8c9f13e2007-09-16 16:16:00 +000074 ScopedDecl *D = LookupScopedDecl(&II, Decl::IDNS_Ordinary, Loc, S);
Reid Spencer5f016e22007-07-11 17:01:13 +000075 if (D == 0) {
76 // Otherwise, this could be an implicitly declared function reference (legal
77 // in C90, extension in C99).
78 if (HasTrailingLParen &&
79 // Not in C++.
80 !getLangOptions().CPlusPlus)
81 D = ImplicitlyDefineFunction(Loc, II, S);
82 else {
Steve Naroff7779db42007-11-12 14:29:37 +000083 if (CurMethodDecl) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +000084 ObjCInterfaceDecl *IFace = CurMethodDecl->getClassInterface();
85 ObjCInterfaceDecl *clsDeclared;
86 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(&II, clsDeclared)) {
Steve Naroff7e3411b2007-11-15 02:58:25 +000087 IdentifierInfo &II = Context.Idents.get("self");
88 ExprResult SelfExpr = ActOnIdentifierExpr(S, Loc, II, false);
89 return new ObjCIvarRefExpr(IV, IV->getType(), Loc,
90 static_cast<Expr*>(SelfExpr.Val), true, true);
91 }
Steve Naroff7779db42007-11-12 14:29:37 +000092 }
Reid Spencer5f016e22007-07-11 17:01:13 +000093 // If this name wasn't predeclared and if this is not a function call,
94 // diagnose the problem.
95 return Diag(Loc, diag::err_undeclared_var_use, II.getName());
96 }
97 }
Steve Naroffe1223f72007-08-28 03:03:08 +000098 if (ValueDecl *VD = dyn_cast<ValueDecl>(D)) {
Steve Naroff53a32342007-08-28 18:45:29 +000099 // Only create DeclRefExpr's for valid Decl's.
Steve Naroff5912a352007-08-28 20:14:24 +0000100 if (VD->isInvalidDecl())
Steve Naroffe1223f72007-08-28 03:03:08 +0000101 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000102 return new DeclRefExpr(VD, VD->getType(), Loc);
Steve Naroffe1223f72007-08-28 03:03:08 +0000103 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000104 if (isa<TypedefDecl>(D))
105 return Diag(Loc, diag::err_unexpected_typedef, II.getName());
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000106 if (isa<ObjCInterfaceDecl>(D))
Fariborz Jahanian5ef404f2007-12-05 18:16:33 +0000107 return Diag(Loc, diag::err_unexpected_interface, II.getName());
Reid Spencer5f016e22007-07-11 17:01:13 +0000108
109 assert(0 && "Invalid decl");
Chris Lattnereddbe032007-07-21 04:57:45 +0000110 abort();
Reid Spencer5f016e22007-07-11 17:01:13 +0000111}
112
Steve Narofff69936d2007-09-16 03:34:24 +0000113Sema::ExprResult Sema::ActOnPreDefinedExpr(SourceLocation Loc,
Anders Carlsson22742662007-07-21 05:21:51 +0000114 tok::TokenKind Kind) {
115 PreDefinedExpr::IdentType IT;
116
Reid Spencer5f016e22007-07-11 17:01:13 +0000117 switch (Kind) {
Chris Lattner1423ea42008-01-12 18:39:25 +0000118 default: assert(0 && "Unknown simple primary expr!");
119 case tok::kw___func__: IT = PreDefinedExpr::Func; break; // [C99 6.4.2.2]
120 case tok::kw___FUNCTION__: IT = PreDefinedExpr::Function; break;
121 case tok::kw___PRETTY_FUNCTION__: IT = PreDefinedExpr::PrettyFunction; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000122 }
Chris Lattner1423ea42008-01-12 18:39:25 +0000123
124 // Verify that this is in a function context.
Chris Lattner8f978d52008-01-12 19:32:28 +0000125 if (CurFunctionDecl == 0 && CurMethodDecl == 0)
Chris Lattner1423ea42008-01-12 18:39:25 +0000126 return Diag(Loc, diag::err_predef_outside_function);
Anders Carlsson22742662007-07-21 05:21:51 +0000127
Chris Lattnerfa28b302008-01-12 08:14:25 +0000128 // Pre-defined identifiers are of type char[x], where x is the length of the
129 // string.
Chris Lattner8f978d52008-01-12 19:32:28 +0000130 unsigned Length;
131 if (CurFunctionDecl)
132 Length = CurFunctionDecl->getIdentifier()->getLength();
133 else
Fariborz Jahanianfaf5e772008-01-17 17:37:26 +0000134 Length = CurMethodDecl->getSynthesizedMethodSize();
Chris Lattner1423ea42008-01-12 18:39:25 +0000135
Chris Lattner8f978d52008-01-12 19:32:28 +0000136 llvm::APInt LengthI(32, Length + 1);
Chris Lattner1423ea42008-01-12 18:39:25 +0000137 QualType ResTy = Context.CharTy.getQualifiedType(QualType::Const);
Chris Lattner8f978d52008-01-12 19:32:28 +0000138 ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0);
Chris Lattnerfa28b302008-01-12 08:14:25 +0000139 return new PreDefinedExpr(Loc, ResTy, IT);
Reid Spencer5f016e22007-07-11 17:01:13 +0000140}
141
Steve Narofff69936d2007-09-16 03:34:24 +0000142Sema::ExprResult Sema::ActOnCharacterConstant(const Token &Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000143 llvm::SmallString<16> CharBuffer;
144 CharBuffer.resize(Tok.getLength());
145 const char *ThisTokBegin = &CharBuffer[0];
146 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
147
148 CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
149 Tok.getLocation(), PP);
150 if (Literal.hadError())
151 return ExprResult(true);
152 return new CharacterLiteral(Literal.getValue(), Context.IntTy,
153 Tok.getLocation());
154}
155
Steve Narofff69936d2007-09-16 03:34:24 +0000156Action::ExprResult Sema::ActOnNumericConstant(const Token &Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000157 // fast path for a single digit (which is quite common). A single digit
158 // cannot have a trigraph, escaped newline, radix prefix, or type suffix.
159 if (Tok.getLength() == 1) {
160 const char *t = PP.getSourceManager().getCharacterData(Tok.getLocation());
161
Chris Lattner701e5eb2007-09-04 02:45:27 +0000162 unsigned IntSize = static_cast<unsigned>(
163 Context.getTypeSize(Context.IntTy, Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000164 return ExprResult(new IntegerLiteral(llvm::APInt(IntSize, *t-'0'),
165 Context.IntTy,
166 Tok.getLocation()));
167 }
168 llvm::SmallString<512> IntegerBuffer;
169 IntegerBuffer.resize(Tok.getLength());
170 const char *ThisTokBegin = &IntegerBuffer[0];
171
172 // Get the spelling of the token, which eliminates trigraphs, etc.
173 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
174 NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
175 Tok.getLocation(), PP);
176 if (Literal.hadError)
177 return ExprResult(true);
178
Chris Lattner5d661452007-08-26 03:42:43 +0000179 Expr *Res;
180
181 if (Literal.isFloatingLiteral()) {
Chris Lattner525a0502007-09-22 18:29:59 +0000182 QualType Ty;
183 const llvm::fltSemantics *Format;
184 uint64_t Size; unsigned Align;
185
186 if (Literal.isFloat) {
187 Ty = Context.FloatTy;
Ted Kremenek9c728dc2007-12-12 22:39:36 +0000188 Context.Target.getFloatInfo(Size, Align, Format,
189 Context.getFullLoc(Tok.getLocation()));
190
Chris Lattner525a0502007-09-22 18:29:59 +0000191 } else if (Literal.isLong) {
192 Ty = Context.LongDoubleTy;
Ted Kremenek9c728dc2007-12-12 22:39:36 +0000193 Context.Target.getLongDoubleInfo(Size, Align, Format,
194 Context.getFullLoc(Tok.getLocation()));
Chris Lattner525a0502007-09-22 18:29:59 +0000195 } else {
196 Ty = Context.DoubleTy;
Ted Kremenek9c728dc2007-12-12 22:39:36 +0000197 Context.Target.getDoubleInfo(Size, Align, Format,
198 Context.getFullLoc(Tok.getLocation()));
Chris Lattner525a0502007-09-22 18:29:59 +0000199 }
200
Ted Kremenek720c4ec2007-11-29 00:56:49 +0000201 // isExact will be set by GetFloatValue().
202 bool isExact = false;
203
204 Res = new FloatingLiteral(Literal.GetFloatValue(*Format,&isExact), &isExact,
205 Ty, Tok.getLocation());
206
Chris Lattner5d661452007-08-26 03:42:43 +0000207 } else if (!Literal.isIntegerLiteral()) {
208 return ExprResult(true);
209 } else {
Reid Spencer5f016e22007-07-11 17:01:13 +0000210 QualType t;
211
Neil Boothb9449512007-08-29 22:00:19 +0000212 // long long is a C99 feature.
213 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
Neil Booth79859c32007-08-29 22:13:52 +0000214 Literal.isLongLong)
Neil Boothb9449512007-08-29 22:00:19 +0000215 Diag(Tok.getLocation(), diag::ext_longlong);
216
Reid Spencer5f016e22007-07-11 17:01:13 +0000217 // Get the value in the widest-possible width.
Ted Kremenek9c728dc2007-12-12 22:39:36 +0000218 llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(
219 Context.getFullLoc(Tok.getLocation())), 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000220
221 if (Literal.GetIntegerValue(ResultVal)) {
222 // If this value didn't fit into uintmax_t, warn and force to ull.
223 Diag(Tok.getLocation(), diag::warn_integer_too_large);
224 t = Context.UnsignedLongLongTy;
Chris Lattnerd2d2a112007-07-14 01:29:45 +0000225 assert(Context.getTypeSize(t, Tok.getLocation()) ==
Reid Spencer5f016e22007-07-11 17:01:13 +0000226 ResultVal.getBitWidth() && "long long is not intmax_t?");
227 } else {
228 // If this value fits into a ULL, try to figure out what else it fits into
229 // according to the rules of C99 6.4.4.1p5.
230
231 // Octal, Hexadecimal, and integers with a U suffix are allowed to
232 // be an unsigned int.
233 bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10;
234
235 // Check from smallest to largest, picking the smallest type we can.
Chris Lattner97c51562007-08-23 21:58:08 +0000236 if (!Literal.isLong && !Literal.isLongLong) {
237 // Are int/unsigned possibilities?
Chris Lattner701e5eb2007-09-04 02:45:27 +0000238 unsigned IntSize = static_cast<unsigned>(
239 Context.getTypeSize(Context.IntTy,Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000240 // Does it fit in a unsigned int?
241 if (ResultVal.isIntN(IntSize)) {
242 // Does it fit in a signed int?
243 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0)
244 t = Context.IntTy;
245 else if (AllowUnsigned)
246 t = Context.UnsignedIntTy;
247 }
248
249 if (!t.isNull())
250 ResultVal.trunc(IntSize);
251 }
252
253 // Are long/unsigned long possibilities?
254 if (t.isNull() && !Literal.isLongLong) {
Chris Lattner701e5eb2007-09-04 02:45:27 +0000255 unsigned LongSize = static_cast<unsigned>(
256 Context.getTypeSize(Context.LongTy, Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000257
258 // Does it fit in a unsigned long?
259 if (ResultVal.isIntN(LongSize)) {
260 // Does it fit in a signed long?
261 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0)
262 t = Context.LongTy;
263 else if (AllowUnsigned)
264 t = Context.UnsignedLongTy;
265 }
266 if (!t.isNull())
267 ResultVal.trunc(LongSize);
268 }
269
270 // Finally, check long long if needed.
271 if (t.isNull()) {
Chris Lattner701e5eb2007-09-04 02:45:27 +0000272 unsigned LongLongSize = static_cast<unsigned>(
273 Context.getTypeSize(Context.LongLongTy, Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000274
275 // Does it fit in a unsigned long long?
276 if (ResultVal.isIntN(LongLongSize)) {
277 // Does it fit in a signed long long?
278 if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0)
279 t = Context.LongLongTy;
280 else if (AllowUnsigned)
281 t = Context.UnsignedLongLongTy;
282 }
283 }
284
285 // If we still couldn't decide a type, we probably have something that
286 // does not fit in a signed long long, but has no U suffix.
287 if (t.isNull()) {
288 Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed);
289 t = Context.UnsignedLongLongTy;
290 }
291 }
292
Chris Lattner5d661452007-08-26 03:42:43 +0000293 Res = new IntegerLiteral(ResultVal, t, Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000294 }
Chris Lattner5d661452007-08-26 03:42:43 +0000295
296 // If this is an imaginary literal, create the ImaginaryLiteral wrapper.
297 if (Literal.isImaginary)
298 Res = new ImaginaryLiteral(Res, Context.getComplexType(Res->getType()));
299
300 return Res;
Reid Spencer5f016e22007-07-11 17:01:13 +0000301}
302
Steve Narofff69936d2007-09-16 03:34:24 +0000303Action::ExprResult Sema::ActOnParenExpr(SourceLocation L, SourceLocation R,
Reid Spencer5f016e22007-07-11 17:01:13 +0000304 ExprTy *Val) {
305 Expr *e = (Expr *)Val;
Steve Narofff69936d2007-09-16 03:34:24 +0000306 assert((e != 0) && "ActOnParenExpr() missing expr");
Reid Spencer5f016e22007-07-11 17:01:13 +0000307 return new ParenExpr(L, R, e);
308}
309
310/// The UsualUnaryConversions() function is *not* called by this routine.
311/// See C99 6.3.2.1p[2-4] for more details.
312QualType Sema::CheckSizeOfAlignOfOperand(QualType exprType,
313 SourceLocation OpLoc, bool isSizeof) {
314 // C99 6.5.3.4p1:
315 if (isa<FunctionType>(exprType) && isSizeof)
316 // alignof(function) is allowed.
317 Diag(OpLoc, diag::ext_sizeof_function_type);
318 else if (exprType->isVoidType())
319 Diag(OpLoc, diag::ext_sizeof_void_type, isSizeof ? "sizeof" : "__alignof");
320 else if (exprType->isIncompleteType()) {
321 Diag(OpLoc, isSizeof ? diag::err_sizeof_incomplete_type :
322 diag::err_alignof_incomplete_type,
323 exprType.getAsString());
324 return QualType(); // error
325 }
326 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
327 return Context.getSizeType();
328}
329
330Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +0000331ActOnSizeOfAlignOfTypeExpr(SourceLocation OpLoc, bool isSizeof,
Reid Spencer5f016e22007-07-11 17:01:13 +0000332 SourceLocation LPLoc, TypeTy *Ty,
333 SourceLocation RPLoc) {
334 // If error parsing type, ignore.
335 if (Ty == 0) return true;
336
337 // Verify that this is a valid expression.
338 QualType ArgTy = QualType::getFromOpaquePtr(Ty);
339
340 QualType resultType = CheckSizeOfAlignOfOperand(ArgTy, OpLoc, isSizeof);
341
342 if (resultType.isNull())
343 return true;
344 return new SizeOfAlignOfTypeExpr(isSizeof, ArgTy, resultType, OpLoc, RPLoc);
345}
346
Chris Lattner5d794252007-08-24 21:41:10 +0000347QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc) {
Chris Lattnerdbb36972007-08-24 21:16:53 +0000348 DefaultFunctionArrayConversion(V);
349
Chris Lattnercc26ed72007-08-26 05:39:26 +0000350 // These operators return the element type of a complex type.
Chris Lattnerdbb36972007-08-24 21:16:53 +0000351 if (const ComplexType *CT = V->getType()->getAsComplexType())
352 return CT->getElementType();
Chris Lattnercc26ed72007-08-26 05:39:26 +0000353
354 // Otherwise they pass through real integer and floating point types here.
355 if (V->getType()->isArithmeticType())
356 return V->getType();
357
358 // Reject anything else.
359 Diag(Loc, diag::err_realimag_invalid_type, V->getType().getAsString());
360 return QualType();
Chris Lattnerdbb36972007-08-24 21:16:53 +0000361}
362
363
Reid Spencer5f016e22007-07-11 17:01:13 +0000364
Steve Narofff69936d2007-09-16 03:34:24 +0000365Action::ExprResult Sema::ActOnPostfixUnaryOp(SourceLocation OpLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000366 tok::TokenKind Kind,
367 ExprTy *Input) {
368 UnaryOperator::Opcode Opc;
369 switch (Kind) {
370 default: assert(0 && "Unknown unary op!");
371 case tok::plusplus: Opc = UnaryOperator::PostInc; break;
372 case tok::minusminus: Opc = UnaryOperator::PostDec; break;
373 }
374 QualType result = CheckIncrementDecrementOperand((Expr *)Input, OpLoc);
375 if (result.isNull())
376 return true;
377 return new UnaryOperator((Expr *)Input, Opc, result, OpLoc);
378}
379
380Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +0000381ActOnArraySubscriptExpr(ExprTy *Base, SourceLocation LLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000382 ExprTy *Idx, SourceLocation RLoc) {
Chris Lattner727a80d2007-07-15 23:59:53 +0000383 Expr *LHSExp = static_cast<Expr*>(Base), *RHSExp = static_cast<Expr*>(Idx);
Chris Lattner12d9ff62007-07-16 00:14:47 +0000384
385 // Perform default conversions.
386 DefaultFunctionArrayConversion(LHSExp);
387 DefaultFunctionArrayConversion(RHSExp);
Chris Lattner727a80d2007-07-15 23:59:53 +0000388
Chris Lattner12d9ff62007-07-16 00:14:47 +0000389 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000390
Reid Spencer5f016e22007-07-11 17:01:13 +0000391 // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent
Chris Lattner73d0d4f2007-08-30 17:45:32 +0000392 // to the expression *((e1)+(e2)). This means the array "Base" may actually be
Reid Spencer5f016e22007-07-11 17:01:13 +0000393 // in the subscript position. As a result, we need to derive the array base
394 // and index from the expression types.
Chris Lattner12d9ff62007-07-16 00:14:47 +0000395 Expr *BaseExpr, *IndexExpr;
396 QualType ResultType;
Chris Lattnerbefee482007-07-31 16:53:04 +0000397 if (const PointerType *PTy = LHSTy->getAsPointerType()) {
Chris Lattner12d9ff62007-07-16 00:14:47 +0000398 BaseExpr = LHSExp;
399 IndexExpr = RHSExp;
400 // FIXME: need to deal with const...
401 ResultType = PTy->getPointeeType();
Chris Lattnerbefee482007-07-31 16:53:04 +0000402 } else if (const PointerType *PTy = RHSTy->getAsPointerType()) {
Chris Lattner7a2e0472007-07-16 00:23:25 +0000403 // Handle the uncommon case of "123[Ptr]".
Chris Lattner12d9ff62007-07-16 00:14:47 +0000404 BaseExpr = RHSExp;
405 IndexExpr = LHSExp;
406 // FIXME: need to deal with const...
407 ResultType = PTy->getPointeeType();
Chris Lattnerc8629632007-07-31 19:29:30 +0000408 } else if (const VectorType *VTy = LHSTy->getAsVectorType()) {
409 BaseExpr = LHSExp; // vectors: V[123]
Chris Lattner12d9ff62007-07-16 00:14:47 +0000410 IndexExpr = RHSExp;
Steve Naroff608e0ee2007-08-03 22:40:33 +0000411
412 // Component access limited to variables (reject vec4.rg[1]).
413 if (!isa<DeclRefExpr>(BaseExpr))
414 return Diag(LLoc, diag::err_ocuvector_component_access,
415 SourceRange(LLoc, RLoc));
Chris Lattner12d9ff62007-07-16 00:14:47 +0000416 // FIXME: need to deal with const...
417 ResultType = VTy->getElementType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000418 } else {
Chris Lattner727a80d2007-07-15 23:59:53 +0000419 return Diag(LHSExp->getLocStart(), diag::err_typecheck_subscript_value,
420 RHSExp->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000421 }
422 // C99 6.5.2.1p1
Chris Lattner12d9ff62007-07-16 00:14:47 +0000423 if (!IndexExpr->getType()->isIntegerType())
424 return Diag(IndexExpr->getLocStart(), diag::err_typecheck_subscript,
425 IndexExpr->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000426
Chris Lattner12d9ff62007-07-16 00:14:47 +0000427 // C99 6.5.2.1p1: "shall have type "pointer to *object* type". In practice,
428 // the following check catches trying to index a pointer to a function (e.g.
429 // void (*)(int)). Functions are not objects in C99.
430 if (!ResultType->isObjectType())
431 return Diag(BaseExpr->getLocStart(),
432 diag::err_typecheck_subscript_not_object,
433 BaseExpr->getType().getAsString(), BaseExpr->getSourceRange());
434
435 return new ArraySubscriptExpr(LHSExp, RHSExp, ResultType, RLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000436}
437
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000438QualType Sema::
439CheckOCUVectorComponent(QualType baseType, SourceLocation OpLoc,
440 IdentifierInfo &CompName, SourceLocation CompLoc) {
Chris Lattnerc8629632007-07-31 19:29:30 +0000441 const OCUVectorType *vecType = baseType->getAsOCUVectorType();
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000442
443 // The vector accessor can't exceed the number of elements.
444 const char *compStr = CompName.getName();
445 if (strlen(compStr) > vecType->getNumElements()) {
446 Diag(OpLoc, diag::err_ocuvector_component_exceeds_length,
447 baseType.getAsString(), SourceRange(CompLoc));
448 return QualType();
449 }
450 // The component names must come from the same set.
Chris Lattner88dca042007-08-02 22:33:49 +0000451 if (vecType->getPointAccessorIdx(*compStr) != -1) {
452 do
453 compStr++;
454 while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1);
455 } else if (vecType->getColorAccessorIdx(*compStr) != -1) {
456 do
457 compStr++;
458 while (*compStr && vecType->getColorAccessorIdx(*compStr) != -1);
459 } else if (vecType->getTextureAccessorIdx(*compStr) != -1) {
460 do
461 compStr++;
462 while (*compStr && vecType->getTextureAccessorIdx(*compStr) != -1);
463 }
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000464
465 if (*compStr) {
466 // We didn't get to the end of the string. This means the component names
467 // didn't come from the same set *or* we encountered an illegal name.
468 Diag(OpLoc, diag::err_ocuvector_component_name_illegal,
469 std::string(compStr,compStr+1), SourceRange(CompLoc));
470 return QualType();
471 }
472 // Each component accessor can't exceed the vector type.
473 compStr = CompName.getName();
474 while (*compStr) {
475 if (vecType->isAccessorWithinNumElements(*compStr))
476 compStr++;
477 else
478 break;
479 }
480 if (*compStr) {
481 // We didn't get to the end of the string. This means a component accessor
482 // exceeds the number of elements in the vector.
483 Diag(OpLoc, diag::err_ocuvector_component_exceeds_length,
484 baseType.getAsString(), SourceRange(CompLoc));
485 return QualType();
486 }
487 // The component accessor looks fine - now we need to compute the actual type.
488 // The vector type is implied by the component accessor. For example,
489 // vec4.b is a float, vec4.xy is a vec2, vec4.rgb is a vec3, etc.
490 unsigned CompSize = strlen(CompName.getName());
491 if (CompSize == 1)
492 return vecType->getElementType();
Steve Naroffbea0b342007-07-29 16:33:31 +0000493
494 QualType VT = Context.getOCUVectorType(vecType->getElementType(), CompSize);
495 // Now look up the TypeDefDecl from the vector type. Without this,
496 // diagostics look bad. We want OCU vector types to appear built-in.
497 for (unsigned i = 0, e = OCUVectorDecls.size(); i != e; ++i) {
498 if (OCUVectorDecls[i]->getUnderlyingType() == VT)
499 return Context.getTypedefType(OCUVectorDecls[i]);
500 }
501 return VT; // should never get here (a typedef type should always be found).
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000502}
503
Reid Spencer5f016e22007-07-11 17:01:13 +0000504Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +0000505ActOnMemberReferenceExpr(ExprTy *Base, SourceLocation OpLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000506 tok::TokenKind OpKind, SourceLocation MemberLoc,
507 IdentifierInfo &Member) {
Steve Naroffdfa6aae2007-07-26 03:11:44 +0000508 Expr *BaseExpr = static_cast<Expr *>(Base);
509 assert(BaseExpr && "no record expression");
Steve Naroff3cc4af82007-12-16 21:42:28 +0000510
511 // Perform default conversions.
512 DefaultFunctionArrayConversion(BaseExpr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000513
Steve Naroffdfa6aae2007-07-26 03:11:44 +0000514 QualType BaseType = BaseExpr->getType();
515 assert(!BaseType.isNull() && "no type for member expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000516
Reid Spencer5f016e22007-07-11 17:01:13 +0000517 if (OpKind == tok::arrow) {
Chris Lattnerbefee482007-07-31 16:53:04 +0000518 if (const PointerType *PT = BaseType->getAsPointerType())
Steve Naroffdfa6aae2007-07-26 03:11:44 +0000519 BaseType = PT->getPointeeType();
520 else
521 return Diag(OpLoc, diag::err_typecheck_member_reference_arrow,
522 SourceRange(MemberLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000523 }
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000524 // The base type is either a record or an OCUVectorType.
Chris Lattnerc8629632007-07-31 19:29:30 +0000525 if (const RecordType *RTy = BaseType->getAsRecordType()) {
Steve Naroffdfa6aae2007-07-26 03:11:44 +0000526 RecordDecl *RDecl = RTy->getDecl();
527 if (RTy->isIncompleteType())
528 return Diag(OpLoc, diag::err_typecheck_incomplete_tag, RDecl->getName(),
529 BaseExpr->getSourceRange());
530 // The record definition is complete, now make sure the member is valid.
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000531 FieldDecl *MemberDecl = RDecl->getMember(&Member);
532 if (!MemberDecl)
Steve Naroffdfa6aae2007-07-26 03:11:44 +0000533 return Diag(OpLoc, diag::err_typecheck_no_member, Member.getName(),
534 SourceRange(MemberLoc));
Eli Friedman51019072008-02-06 22:48:16 +0000535
536 // Figure out the type of the member; see C99 6.5.2.3p3
Eli Friedman64ec0cc2008-02-07 05:24:51 +0000537 // FIXME: Handle address space modifiers
Eli Friedman51019072008-02-06 22:48:16 +0000538 QualType MemberType = MemberDecl->getType();
539 unsigned combinedQualifiers =
540 MemberType.getQualifiers() | BaseType.getQualifiers();
541 MemberType = MemberType.getQualifiedType(combinedQualifiers);
542
543 return new MemberExpr(BaseExpr, OpKind==tok::arrow, MemberDecl,
544 MemberLoc, MemberType);
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000545 } else if (BaseType->isOCUVectorType() && OpKind == tok::period) {
Steve Naroff608e0ee2007-08-03 22:40:33 +0000546 // Component access limited to variables (reject vec4.rg.g).
547 if (!isa<DeclRefExpr>(BaseExpr))
548 return Diag(OpLoc, diag::err_ocuvector_component_access,
549 SourceRange(MemberLoc));
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000550 QualType ret = CheckOCUVectorComponent(BaseType, OpLoc, Member, MemberLoc);
551 if (ret.isNull())
552 return true;
Chris Lattner6481a572007-08-03 17:31:20 +0000553 return new OCUVectorElementExpr(ret, BaseExpr, Member, MemberLoc);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000554 } else if (BaseType->isObjCInterfaceType()) {
555 ObjCInterfaceDecl *IFace;
556 if (isa<ObjCInterfaceType>(BaseType.getCanonicalType()))
557 IFace = dyn_cast<ObjCInterfaceType>(BaseType)->getDecl();
Fariborz Jahanian232220c2007-11-12 22:29:28 +0000558 else
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000559 IFace = dyn_cast<ObjCQualifiedInterfaceType>(BaseType)->getDecl();
560 ObjCInterfaceDecl *clsDeclared;
561 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(&Member, clsDeclared))
Fariborz Jahanian232220c2007-11-12 22:29:28 +0000562 return new ObjCIvarRefExpr(IV, IV->getType(), MemberLoc, BaseExpr,
563 OpKind==tok::arrow);
564 }
565 return Diag(OpLoc, diag::err_typecheck_member_reference_structUnion,
566 SourceRange(MemberLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000567}
568
Steve Narofff69936d2007-09-16 03:34:24 +0000569/// ActOnCallExpr - Handle a call to Fn with the specified array of arguments.
Reid Spencer5f016e22007-07-11 17:01:13 +0000570/// This provides the location of the left/right parens and a list of comma
571/// locations.
572Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +0000573ActOnCallExpr(ExprTy *fn, SourceLocation LParenLoc,
Chris Lattner925e60d2007-12-28 05:29:59 +0000574 ExprTy **args, unsigned NumArgs,
Reid Spencer5f016e22007-07-11 17:01:13 +0000575 SourceLocation *CommaLocs, SourceLocation RParenLoc) {
Chris Lattner74c469f2007-07-21 03:03:59 +0000576 Expr *Fn = static_cast<Expr *>(fn);
577 Expr **Args = reinterpret_cast<Expr**>(args);
578 assert(Fn && "no function call expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000579
Chris Lattner925e60d2007-12-28 05:29:59 +0000580 // Make the call expr early, before semantic checks. This guarantees cleanup
581 // of arguments and function on error.
582 llvm::OwningPtr<CallExpr> TheCall(new CallExpr(Fn, Args, NumArgs,
583 Context.BoolTy, RParenLoc));
584
585 // Promote the function operand.
586 TheCall->setCallee(UsualUnaryConversions(Fn));
587
Reid Spencer5f016e22007-07-11 17:01:13 +0000588 // C99 6.5.2.2p1 - "The expression that denotes the called function shall have
589 // type pointer to function".
Chris Lattner925e60d2007-12-28 05:29:59 +0000590 const PointerType *PT = Fn->getType()->getAsPointerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000591 if (PT == 0)
Chris Lattner74c469f2007-07-21 03:03:59 +0000592 return Diag(Fn->getLocStart(), diag::err_typecheck_call_not_function,
593 SourceRange(Fn->getLocStart(), RParenLoc));
Chris Lattner925e60d2007-12-28 05:29:59 +0000594 const FunctionType *FuncT = PT->getPointeeType()->getAsFunctionType();
595 if (FuncT == 0)
Chris Lattner74c469f2007-07-21 03:03:59 +0000596 return Diag(Fn->getLocStart(), diag::err_typecheck_call_not_function,
597 SourceRange(Fn->getLocStart(), RParenLoc));
Chris Lattner925e60d2007-12-28 05:29:59 +0000598
599 // We know the result type of the call, set it.
600 TheCall->setType(FuncT->getResultType());
Reid Spencer5f016e22007-07-11 17:01:13 +0000601
Chris Lattner925e60d2007-12-28 05:29:59 +0000602 if (const FunctionTypeProto *Proto = dyn_cast<FunctionTypeProto>(FuncT)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000603 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by
604 // assignment, to the types of the corresponding parameter, ...
Chris Lattner925e60d2007-12-28 05:29:59 +0000605 unsigned NumArgsInProto = Proto->getNumArgs();
606 unsigned NumArgsToCheck = NumArgs;
Reid Spencer5f016e22007-07-11 17:01:13 +0000607
Chris Lattner925e60d2007-12-28 05:29:59 +0000608 // If too few arguments are available, don't make the call.
609 if (NumArgs < NumArgsInProto)
610 return Diag(RParenLoc, diag::err_typecheck_call_too_few_args,
611 Fn->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000612
Chris Lattner925e60d2007-12-28 05:29:59 +0000613 // If too many are passed and not variadic, error on the extras and drop
614 // them.
615 if (NumArgs > NumArgsInProto) {
616 if (!Proto->isVariadic()) {
Chris Lattnerd472b312007-07-21 03:09:58 +0000617 Diag(Args[NumArgsInProto]->getLocStart(),
Chris Lattner74c469f2007-07-21 03:03:59 +0000618 diag::err_typecheck_call_too_many_args, Fn->getSourceRange(),
Chris Lattnerd472b312007-07-21 03:09:58 +0000619 SourceRange(Args[NumArgsInProto]->getLocStart(),
Chris Lattner925e60d2007-12-28 05:29:59 +0000620 Args[NumArgs-1]->getLocEnd()));
621 // This deletes the extra arguments.
622 TheCall->setNumArgs(NumArgsInProto);
Reid Spencer5f016e22007-07-11 17:01:13 +0000623 }
624 NumArgsToCheck = NumArgsInProto;
625 }
Chris Lattner925e60d2007-12-28 05:29:59 +0000626
Reid Spencer5f016e22007-07-11 17:01:13 +0000627 // Continue to check argument types (even if we have too few/many args).
Chris Lattner925e60d2007-12-28 05:29:59 +0000628 for (unsigned i = 0; i != NumArgsToCheck; i++) {
629 Expr *Arg = Args[i];
Chris Lattner5cf216b2008-01-04 18:04:52 +0000630 QualType ProtoArgType = Proto->getArgType(i);
631 QualType ArgType = Arg->getType();
Steve Naroff700204c2007-07-24 21:46:40 +0000632
Chris Lattner925e60d2007-12-28 05:29:59 +0000633 // Compute implicit casts from the operand to the formal argument type.
Chris Lattner5cf216b2008-01-04 18:04:52 +0000634 AssignConvertType ConvTy =
635 CheckSingleAssignmentConstraints(ProtoArgType, Arg);
Chris Lattner925e60d2007-12-28 05:29:59 +0000636 TheCall->setArg(i, Arg);
637
Chris Lattner5cf216b2008-01-04 18:04:52 +0000638 if (DiagnoseAssignmentResult(ConvTy, Arg->getLocStart(), ProtoArgType,
639 ArgType, Arg, "passing"))
640 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000641 }
Chris Lattner925e60d2007-12-28 05:29:59 +0000642
643 // If this is a variadic call, handle args passed through "...".
644 if (Proto->isVariadic()) {
Steve Naroffb291ab62007-08-28 23:30:39 +0000645 // Promote the arguments (C99 6.5.2.2p7).
Chris Lattner925e60d2007-12-28 05:29:59 +0000646 for (unsigned i = NumArgsInProto; i != NumArgs; i++) {
647 Expr *Arg = Args[i];
648 DefaultArgumentPromotion(Arg);
649 TheCall->setArg(i, Arg);
Steve Naroffb291ab62007-08-28 23:30:39 +0000650 }
Steve Naroffb291ab62007-08-28 23:30:39 +0000651 }
Chris Lattner925e60d2007-12-28 05:29:59 +0000652 } else {
653 assert(isa<FunctionTypeNoProto>(FuncT) && "Unknown FunctionType!");
654
Steve Naroffb291ab62007-08-28 23:30:39 +0000655 // Promote the arguments (C99 6.5.2.2p6).
Chris Lattner925e60d2007-12-28 05:29:59 +0000656 for (unsigned i = 0; i != NumArgs; i++) {
657 Expr *Arg = Args[i];
658 DefaultArgumentPromotion(Arg);
659 TheCall->setArg(i, Arg);
Steve Naroffb291ab62007-08-28 23:30:39 +0000660 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000661 }
Chris Lattner925e60d2007-12-28 05:29:59 +0000662
Chris Lattner59907c42007-08-10 20:18:51 +0000663 // Do special checking on direct calls to functions.
664 if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(Fn))
665 if (DeclRefExpr *DRExpr = dyn_cast<DeclRefExpr>(IcExpr->getSubExpr()))
666 if (FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRExpr->getDecl()))
Chris Lattner925e60d2007-12-28 05:29:59 +0000667 if (CheckFunctionCall(FDecl, TheCall.get()))
Anders Carlsson71993dd2007-08-17 05:31:46 +0000668 return true;
Chris Lattner59907c42007-08-10 20:18:51 +0000669
Chris Lattner925e60d2007-12-28 05:29:59 +0000670 return TheCall.take();
Reid Spencer5f016e22007-07-11 17:01:13 +0000671}
672
673Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +0000674ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty,
Steve Naroffaff1edd2007-07-19 21:32:11 +0000675 SourceLocation RParenLoc, ExprTy *InitExpr) {
Steve Narofff69936d2007-09-16 03:34:24 +0000676 assert((Ty != 0) && "ActOnCompoundLiteral(): missing type");
Steve Naroff4aa88f82007-07-19 01:06:55 +0000677 QualType literalType = QualType::getFromOpaquePtr(Ty);
Steve Naroffaff1edd2007-07-19 21:32:11 +0000678 // FIXME: put back this assert when initializers are worked out.
Steve Narofff69936d2007-09-16 03:34:24 +0000679 //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression");
Steve Naroffaff1edd2007-07-19 21:32:11 +0000680 Expr *literalExpr = static_cast<Expr*>(InitExpr);
Anders Carlssond35c8322007-12-05 07:24:19 +0000681
Steve Naroff2fdc3742007-12-10 22:44:33 +0000682 // FIXME: add more semantic analysis (C99 6.5.2.5).
Steve Naroffd0091aa2008-01-10 22:15:12 +0000683 if (CheckInitializerTypes(literalExpr, literalType))
Steve Naroff58d18212008-01-09 20:58:06 +0000684 return true;
Steve Naroffe9b12192008-01-14 18:19:28 +0000685
686 bool isFileScope = !CurFunctionDecl && !CurMethodDecl;
687 if (isFileScope) { // 6.5.2.5p3
Steve Naroffd0091aa2008-01-10 22:15:12 +0000688 if (CheckForConstantInitializer(literalExpr, literalType))
689 return true;
690 }
Steve Naroffe9b12192008-01-14 18:19:28 +0000691 return new CompoundLiteralExpr(LParenLoc, literalType, literalExpr, isFileScope);
Steve Naroff4aa88f82007-07-19 01:06:55 +0000692}
693
694Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +0000695ActOnInitList(SourceLocation LBraceLoc, ExprTy **initlist, unsigned NumInit,
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000696 SourceLocation RBraceLoc) {
Steve Narofff0090632007-09-02 02:04:30 +0000697 Expr **InitList = reinterpret_cast<Expr**>(initlist);
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000698
Steve Naroff08d92e42007-09-15 18:49:24 +0000699 // Semantic analysis for initializers is done by ActOnDeclarator() and
Steve Naroffd35005e2007-09-03 01:24:23 +0000700 // CheckInitializer() - it requires knowledge of the object being intialized.
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000701
Steve Naroff38374b02007-09-02 20:30:18 +0000702 InitListExpr *e = new InitListExpr(LBraceLoc, InitList, NumInit, RBraceLoc);
703 e->setType(Context.VoidTy); // FIXME: just a place holder for now.
704 return e;
Steve Naroff4aa88f82007-07-19 01:06:55 +0000705}
706
Chris Lattnerfe23e212007-12-20 00:44:32 +0000707bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty) {
Anders Carlssona64db8f2007-11-27 05:51:55 +0000708 assert(VectorTy->isVectorType() && "Not a vector type!");
709
710 if (Ty->isVectorType() || Ty->isIntegerType()) {
711 if (Context.getTypeSize(VectorTy, SourceLocation()) !=
712 Context.getTypeSize(Ty, SourceLocation()))
713 return Diag(R.getBegin(),
714 Ty->isVectorType() ?
715 diag::err_invalid_conversion_between_vectors :
716 diag::err_invalid_conversion_between_vector_and_integer,
717 VectorTy.getAsString().c_str(),
718 Ty.getAsString().c_str(), R);
719 } else
720 return Diag(R.getBegin(),
721 diag::err_invalid_conversion_between_vector_and_scalar,
722 VectorTy.getAsString().c_str(),
723 Ty.getAsString().c_str(), R);
724
725 return false;
726}
727
Steve Naroff4aa88f82007-07-19 01:06:55 +0000728Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +0000729ActOnCastExpr(SourceLocation LParenLoc, TypeTy *Ty,
Reid Spencer5f016e22007-07-11 17:01:13 +0000730 SourceLocation RParenLoc, ExprTy *Op) {
Steve Narofff69936d2007-09-16 03:34:24 +0000731 assert((Ty != 0) && (Op != 0) && "ActOnCastExpr(): missing type or expr");
Steve Naroff16beff82007-07-16 23:25:18 +0000732
733 Expr *castExpr = static_cast<Expr*>(Op);
734 QualType castType = QualType::getFromOpaquePtr(Ty);
735
Steve Naroff711602b2007-08-31 00:32:44 +0000736 UsualUnaryConversions(castExpr);
737
Chris Lattner75af4802007-07-18 16:00:06 +0000738 // C99 6.5.4p2: the cast type needs to be void or scalar and the expression
739 // type needs to be scalar.
Chris Lattner3da2db42007-10-29 04:26:44 +0000740 if (!castType->isVoidType()) { // Cast to void allows any expr type.
Steve Naroff9412d682008-01-24 22:55:05 +0000741 if (!castType->isScalarType() && !castType->isVectorType())
Chris Lattner3da2db42007-10-29 04:26:44 +0000742 return Diag(LParenLoc, diag::err_typecheck_cond_expect_scalar,
743 castType.getAsString(), SourceRange(LParenLoc, RParenLoc));
Steve Naroff9412d682008-01-24 22:55:05 +0000744 if (!castExpr->getType()->isScalarType() &&
745 !castExpr->getType()->isVectorType())
Chris Lattner3da2db42007-10-29 04:26:44 +0000746 return Diag(castExpr->getLocStart(),
747 diag::err_typecheck_expect_scalar_operand,
748 castExpr->getType().getAsString(),castExpr->getSourceRange());
Anders Carlssona64db8f2007-11-27 05:51:55 +0000749
750 if (castExpr->getType()->isVectorType()) {
751 if (CheckVectorCast(SourceRange(LParenLoc, RParenLoc),
752 castExpr->getType(), castType))
753 return true;
754 } else if (castType->isVectorType()) {
755 if (CheckVectorCast(SourceRange(LParenLoc, RParenLoc),
756 castType, castExpr->getType()))
757 return true;
Chris Lattner3da2db42007-10-29 04:26:44 +0000758 }
Steve Naroff16beff82007-07-16 23:25:18 +0000759 }
760 return new CastExpr(castType, castExpr, LParenLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000761}
762
Chris Lattnera21ddb32007-11-26 01:40:58 +0000763/// Note that lex is not null here, even if this is the gnu "x ?: y" extension.
764/// In that case, lex = cond.
Reid Spencer5f016e22007-07-11 17:01:13 +0000765inline QualType Sema::CheckConditionalOperands( // C99 6.5.15
Steve Naroff49b45262007-07-13 16:58:59 +0000766 Expr *&cond, Expr *&lex, Expr *&rex, SourceLocation questionLoc) {
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000767 UsualUnaryConversions(cond);
768 UsualUnaryConversions(lex);
769 UsualUnaryConversions(rex);
770 QualType condT = cond->getType();
771 QualType lexT = lex->getType();
772 QualType rexT = rex->getType();
773
Reid Spencer5f016e22007-07-11 17:01:13 +0000774 // first, check the condition.
Steve Naroff49b45262007-07-13 16:58:59 +0000775 if (!condT->isScalarType()) { // C99 6.5.15p2
776 Diag(cond->getLocStart(), diag::err_typecheck_cond_expect_scalar,
777 condT.getAsString());
Reid Spencer5f016e22007-07-11 17:01:13 +0000778 return QualType();
779 }
Chris Lattner70d67a92008-01-06 22:42:25 +0000780
781 // Now check the two expressions.
782
783 // If both operands have arithmetic type, do the usual arithmetic conversions
784 // to find a common type: C99 6.5.15p3,5.
785 if (lexT->isArithmeticType() && rexT->isArithmeticType()) {
Steve Naroffa4332e22007-07-17 00:58:39 +0000786 UsualArithmeticConversions(lex, rex);
787 return lex->getType();
788 }
Chris Lattner70d67a92008-01-06 22:42:25 +0000789
790 // If both operands are the same structure or union type, the result is that
791 // type.
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000792 if (const RecordType *LHSRT = lexT->getAsRecordType()) { // C99 6.5.15p3
Chris Lattner70d67a92008-01-06 22:42:25 +0000793 if (const RecordType *RHSRT = rexT->getAsRecordType())
Chris Lattnera21ddb32007-11-26 01:40:58 +0000794 if (LHSRT->getDecl() == RHSRT->getDecl())
Chris Lattner70d67a92008-01-06 22:42:25 +0000795 // "If both the operands have structure or union type, the result has
796 // that type." This implies that CV qualifiers are dropped.
797 return lexT.getUnqualifiedType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000798 }
Chris Lattner70d67a92008-01-06 22:42:25 +0000799
800 // C99 6.5.15p5: "If both operands have void type, the result has void type."
801 if (lexT->isVoidType() && rexT->isVoidType())
802 return lexT.getUnqualifiedType();
Steve Naroffb6d54e52008-01-08 01:11:38 +0000803
804 // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has
805 // the type of the other operand."
806 if (lexT->isPointerType() && rex->isNullPointerConstant(Context)) {
Chris Lattner1e0a3902008-01-16 19:17:22 +0000807 ImpCastExprToType(rex, lexT); // promote the null to a pointer.
Steve Naroffb6d54e52008-01-08 01:11:38 +0000808 return lexT;
809 }
810 if (rexT->isPointerType() && lex->isNullPointerConstant(Context)) {
Chris Lattner1e0a3902008-01-16 19:17:22 +0000811 ImpCastExprToType(lex, rexT); // promote the null to a pointer.
Steve Naroffb6d54e52008-01-08 01:11:38 +0000812 return rexT;
813 }
Chris Lattnerbd57d362008-01-06 22:50:31 +0000814 // Handle the case where both operands are pointers before we handle null
815 // pointer constants in case both operands are null pointer constants.
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000816 if (const PointerType *LHSPT = lexT->getAsPointerType()) { // C99 6.5.15p3,6
817 if (const PointerType *RHSPT = rexT->getAsPointerType()) {
818 // get the "pointed to" types
819 QualType lhptee = LHSPT->getPointeeType();
820 QualType rhptee = RHSPT->getPointeeType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000821
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000822 // ignore qualifiers on void (C99 6.5.15p3, clause 6)
823 if (lhptee->isVoidType() &&
824 (rhptee->isObjectType() || rhptee->isIncompleteType()))
825 return lexT;
826 if (rhptee->isVoidType() &&
827 (lhptee->isObjectType() || lhptee->isIncompleteType()))
828 return rexT;
Reid Spencer5f016e22007-07-11 17:01:13 +0000829
Steve Naroffec0550f2007-10-15 20:41:53 +0000830 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
831 rhptee.getUnqualifiedType())) {
Steve Naroffc0ff1ca2008-02-01 22:44:48 +0000832 Diag(questionLoc, diag::warn_typecheck_cond_incompatible_pointers,
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000833 lexT.getAsString(), rexT.getAsString(),
834 lex->getSourceRange(), rex->getSourceRange());
Eli Friedmanb1284ac2008-01-30 17:02:03 +0000835 // In this situation, we assume void* type. No especially good
836 // reason, but this is what gcc does, and we do have to pick
837 // to get a consistent AST.
838 QualType voidPtrTy = Context.getPointerType(Context.VoidTy);
839 ImpCastExprToType(lex, voidPtrTy);
840 ImpCastExprToType(rex, voidPtrTy);
841 return voidPtrTy;
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000842 }
843 // The pointer types are compatible.
Chris Lattner73d0d4f2007-08-30 17:45:32 +0000844 // C99 6.5.15p6: If both operands are pointers to compatible types *or* to
845 // differently qualified versions of compatible types, the result type is
846 // a pointer to an appropriately qualified version of the *composite*
847 // type.
Chris Lattnerbd57d362008-01-06 22:50:31 +0000848 // FIXME: Need to return the composite type.
849 return lexT;
Reid Spencer5f016e22007-07-11 17:01:13 +0000850 }
851 }
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000852
Chris Lattner70d67a92008-01-06 22:42:25 +0000853 // Otherwise, the operands are not compatible.
Reid Spencer5f016e22007-07-11 17:01:13 +0000854 Diag(questionLoc, diag::err_typecheck_cond_incompatible_operands,
Steve Naroff49b45262007-07-13 16:58:59 +0000855 lexT.getAsString(), rexT.getAsString(),
856 lex->getSourceRange(), rex->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000857 return QualType();
858}
859
Steve Narofff69936d2007-09-16 03:34:24 +0000860/// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null
Reid Spencer5f016e22007-07-11 17:01:13 +0000861/// in the case of a the GNU conditional expr extension.
Steve Narofff69936d2007-09-16 03:34:24 +0000862Action::ExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000863 SourceLocation ColonLoc,
864 ExprTy *Cond, ExprTy *LHS,
865 ExprTy *RHS) {
Chris Lattner26824902007-07-16 21:39:03 +0000866 Expr *CondExpr = (Expr *) Cond;
867 Expr *LHSExpr = (Expr *) LHS, *RHSExpr = (Expr *) RHS;
Chris Lattnera21ddb32007-11-26 01:40:58 +0000868
869 // If this is the gnu "x ?: y" extension, analyze the types as though the LHS
870 // was the condition.
871 bool isLHSNull = LHSExpr == 0;
872 if (isLHSNull)
873 LHSExpr = CondExpr;
874
Chris Lattner26824902007-07-16 21:39:03 +0000875 QualType result = CheckConditionalOperands(CondExpr, LHSExpr,
876 RHSExpr, QuestionLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000877 if (result.isNull())
878 return true;
Chris Lattnera21ddb32007-11-26 01:40:58 +0000879 return new ConditionalOperator(CondExpr, isLHSNull ? 0 : LHSExpr,
880 RHSExpr, result);
Reid Spencer5f016e22007-07-11 17:01:13 +0000881}
882
Steve Naroffb291ab62007-08-28 23:30:39 +0000883/// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that
Steve Naroffb3c2b882008-01-29 02:42:22 +0000884/// do not have a prototype. Arguments that have type float are promoted to
885/// double. All other argument types are converted by UsualUnaryConversions().
Chris Lattner925e60d2007-12-28 05:29:59 +0000886void Sema::DefaultArgumentPromotion(Expr *&Expr) {
887 QualType Ty = Expr->getType();
888 assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type");
Steve Naroffb291ab62007-08-28 23:30:39 +0000889
Chris Lattner925e60d2007-12-28 05:29:59 +0000890 if (Ty == Context.FloatTy)
Chris Lattner1e0a3902008-01-16 19:17:22 +0000891 ImpCastExprToType(Expr, Context.DoubleTy);
Steve Naroffb3c2b882008-01-29 02:42:22 +0000892 else
893 UsualUnaryConversions(Expr);
Steve Naroffb291ab62007-08-28 23:30:39 +0000894}
895
Steve Narofffa2eaab2007-07-15 02:02:06 +0000896/// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4).
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000897void Sema::DefaultFunctionArrayConversion(Expr *&e) {
Steve Narofffa2eaab2007-07-15 02:02:06 +0000898 QualType t = e->getType();
Steve Naroff90045e82007-07-13 23:32:42 +0000899 assert(!t.isNull() && "DefaultFunctionArrayConversion - missing type");
Bill Wendling08ad47c2007-07-17 03:52:31 +0000900
Chris Lattnera1d9fde2007-07-31 16:56:34 +0000901 if (const ReferenceType *ref = t->getAsReferenceType()) {
Chris Lattner1e0a3902008-01-16 19:17:22 +0000902 ImpCastExprToType(e, ref->getReferenceeType()); // C++ [expr]
Bill Wendlingea5e79f2007-07-17 04:16:47 +0000903 t = e->getType();
904 }
Steve Narofffa2eaab2007-07-15 02:02:06 +0000905 if (t->isFunctionType())
Chris Lattner1e0a3902008-01-16 19:17:22 +0000906 ImpCastExprToType(e, Context.getPointerType(t));
Chris Lattnerc8629632007-07-31 19:29:30 +0000907 else if (const ArrayType *ary = t->getAsArrayType())
Chris Lattner1e0a3902008-01-16 19:17:22 +0000908 ImpCastExprToType(e, Context.getPointerType(ary->getElementType()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000909}
910
Nate Begemane2ce1d92008-01-17 17:46:27 +0000911/// UsualUnaryConversions - Performs various conversions that are common to most
Reid Spencer5f016e22007-07-11 17:01:13 +0000912/// operators (C99 6.3). The conversions of array and function types are
913/// sometimes surpressed. For example, the array->pointer conversion doesn't
914/// apply if the array is an argument to the sizeof or address (&) operators.
915/// In these instances, this routine should *not* be called.
Chris Lattner925e60d2007-12-28 05:29:59 +0000916Expr *Sema::UsualUnaryConversions(Expr *&Expr) {
917 QualType Ty = Expr->getType();
918 assert(!Ty.isNull() && "UsualUnaryConversions - missing type");
Reid Spencer5f016e22007-07-11 17:01:13 +0000919
Chris Lattner925e60d2007-12-28 05:29:59 +0000920 if (const ReferenceType *Ref = Ty->getAsReferenceType()) {
Chris Lattner1e0a3902008-01-16 19:17:22 +0000921 ImpCastExprToType(Expr, Ref->getReferenceeType()); // C++ [expr]
Chris Lattner925e60d2007-12-28 05:29:59 +0000922 Ty = Expr->getType();
Bill Wendlingea5e79f2007-07-17 04:16:47 +0000923 }
Chris Lattner925e60d2007-12-28 05:29:59 +0000924 if (Ty->isPromotableIntegerType()) // C99 6.3.1.1p2
Chris Lattner1e0a3902008-01-16 19:17:22 +0000925 ImpCastExprToType(Expr, Context.IntTy);
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000926 else
Chris Lattner925e60d2007-12-28 05:29:59 +0000927 DefaultFunctionArrayConversion(Expr);
928
929 return Expr;
Reid Spencer5f016e22007-07-11 17:01:13 +0000930}
931
Chris Lattner73d0d4f2007-08-30 17:45:32 +0000932/// UsualArithmeticConversions - Performs various conversions that are common to
Reid Spencer5f016e22007-07-11 17:01:13 +0000933/// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this
934/// routine returns the first non-arithmetic type found. The client is
935/// responsible for emitting appropriate error diagnostics.
Steve Naroffdfb9bbb2008-01-15 22:21:49 +0000936/// FIXME: verify the conversion rules for "complex int" are consistent with GCC.
Steve Naroff9f5fa9b2007-08-24 19:07:16 +0000937QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr,
938 bool isCompAssign) {
Steve Naroff8702a0f2007-08-25 19:54:59 +0000939 if (!isCompAssign) {
940 UsualUnaryConversions(lhsExpr);
941 UsualUnaryConversions(rhsExpr);
942 }
Steve Naroff3187e202007-10-18 18:55:53 +0000943 // For conversion purposes, we ignore any qualifiers.
944 // For example, "const float" and "float" are equivalent.
Steve Narofff68a63f2007-11-10 19:45:54 +0000945 QualType lhs = lhsExpr->getType().getCanonicalType().getUnqualifiedType();
946 QualType rhs = rhsExpr->getType().getCanonicalType().getUnqualifiedType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000947
948 // If both types are identical, no conversion is needed.
Steve Naroff3187e202007-10-18 18:55:53 +0000949 if (lhs == rhs)
950 return lhs;
Reid Spencer5f016e22007-07-11 17:01:13 +0000951
952 // If either side is a non-arithmetic type (e.g. a pointer), we are done.
953 // The caller can deal with this (e.g. pointer + int).
Steve Naroffa4332e22007-07-17 00:58:39 +0000954 if (!lhs->isArithmeticType() || !rhs->isArithmeticType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +0000955 return lhs;
Reid Spencer5f016e22007-07-11 17:01:13 +0000956
957 // At this point, we have two different arithmetic types.
958
959 // Handle complex types first (C99 6.3.1.8p1).
960 if (lhs->isComplexType() || rhs->isComplexType()) {
Steve Naroff02f62a92008-01-15 19:36:10 +0000961 // if we have an integer operand, the result is the complex type.
Steve Naroffdfb9bbb2008-01-15 22:21:49 +0000962 if (rhs->isIntegerType() || rhs->isComplexIntegerType()) {
Eli Friedman8e54ad02008-02-08 01:19:44 +0000963 // convert the rhs to the lhs complex type.
Chris Lattner1e0a3902008-01-16 19:17:22 +0000964 if (!isCompAssign) ImpCastExprToType(rhsExpr, lhs);
Steve Naroff9f5fa9b2007-08-24 19:07:16 +0000965 return lhs;
Steve Naroff02f62a92008-01-15 19:36:10 +0000966 }
Steve Naroffdfb9bbb2008-01-15 22:21:49 +0000967 if (lhs->isIntegerType() || lhs->isComplexIntegerType()) {
Eli Friedman8e54ad02008-02-08 01:19:44 +0000968 // convert the lhs to the rhs complex type.
Chris Lattner1e0a3902008-01-16 19:17:22 +0000969 if (!isCompAssign) ImpCastExprToType(lhsExpr, rhs);
Steve Naroff9f5fa9b2007-08-24 19:07:16 +0000970 return rhs;
Steve Naroffa4332e22007-07-17 00:58:39 +0000971 }
Steve Narofff1448a02007-08-27 01:27:54 +0000972 // This handles complex/complex, complex/float, or float/complex.
973 // When both operands are complex, the shorter operand is converted to the
974 // type of the longer, and that is the type of the result. This corresponds
975 // to what is done when combining two real floating-point operands.
976 // The fun begins when size promotion occur across type domains.
977 // From H&S 6.3.4: When one operand is complex and the other is a real
978 // floating-point type, the less precise type is converted, within it's
979 // real or complex domain, to the precision of the other type. For example,
980 // when combining a "long double" with a "double _Complex", the
981 // "double _Complex" is promoted to "long double _Complex".
Steve Narofffb0d4962007-08-27 15:30:22 +0000982 int result = Context.compareFloatingType(lhs, rhs);
983
984 if (result > 0) { // The left side is bigger, convert rhs.
Steve Naroff55fe4552007-08-27 21:32:55 +0000985 rhs = Context.getFloatingTypeOfSizeWithinDomain(lhs, rhs);
986 if (!isCompAssign)
Chris Lattner1e0a3902008-01-16 19:17:22 +0000987 ImpCastExprToType(rhsExpr, rhs);
Steve Naroff55fe4552007-08-27 21:32:55 +0000988 } else if (result < 0) { // The right side is bigger, convert lhs.
989 lhs = Context.getFloatingTypeOfSizeWithinDomain(rhs, lhs);
990 if (!isCompAssign)
Chris Lattner1e0a3902008-01-16 19:17:22 +0000991 ImpCastExprToType(lhsExpr, lhs);
Steve Naroff55fe4552007-08-27 21:32:55 +0000992 }
993 // At this point, lhs and rhs have the same rank/size. Now, make sure the
994 // domains match. This is a requirement for our implementation, C99
995 // does not require this promotion.
996 if (lhs != rhs) { // Domains don't match, we have complex/float mix.
997 if (lhs->isRealFloatingType()) { // handle "double, _Complex double".
Steve Naroff29960362007-08-27 21:43:43 +0000998 if (!isCompAssign)
Chris Lattner1e0a3902008-01-16 19:17:22 +0000999 ImpCastExprToType(lhsExpr, rhs);
Steve Naroff29960362007-08-27 21:43:43 +00001000 return rhs;
Steve Naroff55fe4552007-08-27 21:32:55 +00001001 } else { // handle "_Complex double, double".
Steve Naroff29960362007-08-27 21:43:43 +00001002 if (!isCompAssign)
Chris Lattner1e0a3902008-01-16 19:17:22 +00001003 ImpCastExprToType(rhsExpr, lhs);
Steve Naroff29960362007-08-27 21:43:43 +00001004 return lhs;
Steve Naroff55fe4552007-08-27 21:32:55 +00001005 }
Steve Naroffa4332e22007-07-17 00:58:39 +00001006 }
Steve Naroff29960362007-08-27 21:43:43 +00001007 return lhs; // The domain/size match exactly.
Reid Spencer5f016e22007-07-11 17:01:13 +00001008 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001009 // Now handle "real" floating types (i.e. float, double, long double).
1010 if (lhs->isRealFloatingType() || rhs->isRealFloatingType()) {
1011 // if we have an integer operand, the result is the real floating type.
Steve Naroffdfb9bbb2008-01-15 22:21:49 +00001012 if (rhs->isIntegerType() || rhs->isComplexIntegerType()) {
Eli Friedman8e54ad02008-02-08 01:19:44 +00001013 // convert rhs to the lhs floating point type.
Chris Lattner1e0a3902008-01-16 19:17:22 +00001014 if (!isCompAssign) ImpCastExprToType(rhsExpr, lhs);
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001015 return lhs;
Steve Naroffa4332e22007-07-17 00:58:39 +00001016 }
Steve Naroffdfb9bbb2008-01-15 22:21:49 +00001017 if (lhs->isIntegerType() || lhs->isComplexIntegerType()) {
Eli Friedman8e54ad02008-02-08 01:19:44 +00001018 // convert lhs to the rhs floating point type.
Chris Lattner1e0a3902008-01-16 19:17:22 +00001019 if (!isCompAssign) ImpCastExprToType(lhsExpr, rhs);
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001020 return rhs;
Steve Naroffa4332e22007-07-17 00:58:39 +00001021 }
Steve Narofffa2eaab2007-07-15 02:02:06 +00001022 // We have two real floating types, float/complex combos were handled above.
1023 // Convert the smaller operand to the bigger result.
Steve Narofffb0d4962007-08-27 15:30:22 +00001024 int result = Context.compareFloatingType(lhs, rhs);
1025
1026 if (result > 0) { // convert the rhs
Chris Lattner1e0a3902008-01-16 19:17:22 +00001027 if (!isCompAssign) ImpCastExprToType(rhsExpr, lhs);
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001028 return lhs;
Steve Naroffa4332e22007-07-17 00:58:39 +00001029 }
Steve Narofffb0d4962007-08-27 15:30:22 +00001030 if (result < 0) { // convert the lhs
Chris Lattner1e0a3902008-01-16 19:17:22 +00001031 if (!isCompAssign) ImpCastExprToType(lhsExpr, rhs); // convert the lhs
Steve Narofffb0d4962007-08-27 15:30:22 +00001032 return rhs;
1033 }
1034 assert(0 && "Sema::UsualArithmeticConversions(): illegal float comparison");
Reid Spencer5f016e22007-07-11 17:01:13 +00001035 }
Steve Naroff02f62a92008-01-15 19:36:10 +00001036 if (lhs->isComplexIntegerType() || rhs->isComplexIntegerType()) {
1037 // Handle GCC complex int extension.
Steve Naroff02f62a92008-01-15 19:36:10 +00001038 const ComplexType *lhsComplexInt = lhs->getAsComplexIntegerType();
Eli Friedman8e54ad02008-02-08 01:19:44 +00001039 const ComplexType *rhsComplexInt = rhs->getAsComplexIntegerType();
Steve Naroff02f62a92008-01-15 19:36:10 +00001040
Eli Friedman8e54ad02008-02-08 01:19:44 +00001041 if (lhsComplexInt && rhsComplexInt) {
1042 if (Context.maxIntegerType(lhsComplexInt->getElementType(),
Chris Lattner1e0a3902008-01-16 19:17:22 +00001043 rhsComplexInt->getElementType()) == lhs) {
1044 // convert the rhs
1045 if (!isCompAssign) ImpCastExprToType(rhsExpr, lhs);
1046 return lhs;
Eli Friedman8e54ad02008-02-08 01:19:44 +00001047 }
1048 if (!isCompAssign)
Chris Lattner1e0a3902008-01-16 19:17:22 +00001049 ImpCastExprToType(lhsExpr, rhs); // convert the lhs
Eli Friedman8e54ad02008-02-08 01:19:44 +00001050 return rhs;
1051 } else if (lhsComplexInt && rhs->isIntegerType()) {
1052 // convert the rhs to the lhs complex type.
1053 if (!isCompAssign) ImpCastExprToType(rhsExpr, lhs);
1054 return lhs;
1055 } else if (rhsComplexInt && lhs->isIntegerType()) {
1056 // convert the lhs to the rhs complex type.
1057 if (!isCompAssign) ImpCastExprToType(lhsExpr, rhs);
1058 return rhs;
1059 }
Steve Naroff02f62a92008-01-15 19:36:10 +00001060 }
Steve Narofffa2eaab2007-07-15 02:02:06 +00001061 // Finally, we have two differing integer types.
Steve Naroffa4332e22007-07-17 00:58:39 +00001062 if (Context.maxIntegerType(lhs, rhs) == lhs) { // convert the rhs
Chris Lattner1e0a3902008-01-16 19:17:22 +00001063 if (!isCompAssign) ImpCastExprToType(rhsExpr, lhs);
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001064 return lhs;
Steve Naroffa4332e22007-07-17 00:58:39 +00001065 }
Chris Lattner1e0a3902008-01-16 19:17:22 +00001066 if (!isCompAssign) ImpCastExprToType(lhsExpr, rhs); // convert the lhs
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001067 return rhs;
Reid Spencer5f016e22007-07-11 17:01:13 +00001068}
1069
1070// CheckPointerTypesForAssignment - This is a very tricky routine (despite
1071// being closely modeled after the C99 spec:-). The odd characteristic of this
1072// routine is it effectively iqnores the qualifiers on the top level pointee.
1073// This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3].
1074// FIXME: add a couple examples in this comment.
Chris Lattner5cf216b2008-01-04 18:04:52 +00001075Sema::AssignConvertType
Reid Spencer5f016e22007-07-11 17:01:13 +00001076Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) {
1077 QualType lhptee, rhptee;
1078
1079 // get the "pointed to" type (ignoring qualifiers at the top level)
Chris Lattner2dcb6bb2007-07-31 21:27:01 +00001080 lhptee = lhsType->getAsPointerType()->getPointeeType();
1081 rhptee = rhsType->getAsPointerType()->getPointeeType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001082
1083 // make sure we operate on the canonical type
1084 lhptee = lhptee.getCanonicalType();
1085 rhptee = rhptee.getCanonicalType();
1086
Chris Lattner5cf216b2008-01-04 18:04:52 +00001087 AssignConvertType ConvTy = Compatible;
Reid Spencer5f016e22007-07-11 17:01:13 +00001088
1089 // C99 6.5.16.1p1: This following citation is common to constraints
1090 // 3 & 4 (below). ...and the type *pointed to* by the left has all the
1091 // qualifiers of the type *pointed to* by the right;
1092 if ((lhptee.getQualifiers() & rhptee.getQualifiers()) !=
1093 rhptee.getQualifiers())
Chris Lattner5cf216b2008-01-04 18:04:52 +00001094 ConvTy = CompatiblePointerDiscardsQualifiers;
Reid Spencer5f016e22007-07-11 17:01:13 +00001095
1096 // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or
1097 // incomplete type and the other is a pointer to a qualified or unqualified
1098 // version of void...
Chris Lattnerbfe639e2008-01-03 22:56:36 +00001099 if (lhptee->isVoidType()) {
1100 if (rhptee->isObjectType() || rhptee->isIncompleteType())
Chris Lattner5cf216b2008-01-04 18:04:52 +00001101 return ConvTy;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00001102
1103 // As an extension, we allow cast to/from void* to function pointer.
1104 if (rhptee->isFunctionType())
1105 return FunctionVoidPointer;
1106 }
1107
1108 if (rhptee->isVoidType()) {
1109 if (lhptee->isObjectType() || lhptee->isIncompleteType())
Chris Lattner5cf216b2008-01-04 18:04:52 +00001110 return ConvTy;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00001111
1112 // As an extension, we allow cast to/from void* to function pointer.
1113 if (lhptee->isFunctionType())
1114 return FunctionVoidPointer;
1115 }
1116
Reid Spencer5f016e22007-07-11 17:01:13 +00001117 // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or
1118 // unqualified versions of compatible types, ...
Chris Lattnerbfe639e2008-01-03 22:56:36 +00001119 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
1120 rhptee.getUnqualifiedType()))
1121 return IncompatiblePointer; // this "trumps" PointerAssignDiscardsQualifiers
Chris Lattner5cf216b2008-01-04 18:04:52 +00001122 return ConvTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00001123}
1124
1125/// CheckAssignmentConstraints (C99 6.5.16) - This routine currently
1126/// has code to accommodate several GCC extensions when type checking
1127/// pointers. Here are some objectionable examples that GCC considers warnings:
1128///
1129/// int a, *pint;
1130/// short *pshort;
1131/// struct foo *pfoo;
1132///
1133/// pint = pshort; // warning: assignment from incompatible pointer type
1134/// a = pint; // warning: assignment makes integer from pointer without a cast
1135/// pint = a; // warning: assignment makes pointer from integer without a cast
1136/// pint = pfoo; // warning: assignment from incompatible pointer type
1137///
1138/// As a result, the code for dealing with pointers is more complex than the
1139/// C99 spec dictates.
1140/// Note: the warning above turn into errors when -pedantic-errors is enabled.
1141///
Chris Lattner5cf216b2008-01-04 18:04:52 +00001142Sema::AssignConvertType
Reid Spencer5f016e22007-07-11 17:01:13 +00001143Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) {
Chris Lattnerfc144e22008-01-04 23:18:45 +00001144 // Get canonical types. We're not formatting these types, just comparing
1145 // them.
1146 lhsType = lhsType.getCanonicalType();
1147 rhsType = rhsType.getCanonicalType();
1148
1149 if (lhsType.getUnqualifiedType() == rhsType.getUnqualifiedType())
Chris Lattnerd2656dd2008-01-07 17:51:46 +00001150 return Compatible; // Common case: fast path an exact match.
Steve Naroff700204c2007-07-24 21:46:40 +00001151
Anders Carlsson793680e2007-10-12 23:56:29 +00001152 if (lhsType->isReferenceType() || rhsType->isReferenceType()) {
Steve Naroffec0550f2007-10-15 20:41:53 +00001153 if (Context.referenceTypesAreCompatible(lhsType, rhsType))
Anders Carlsson793680e2007-10-12 23:56:29 +00001154 return Compatible;
Chris Lattnerfc144e22008-01-04 23:18:45 +00001155 return Incompatible;
Fariborz Jahanian411f3732007-12-19 17:45:58 +00001156 }
Chris Lattnerfc144e22008-01-04 23:18:45 +00001157
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001158 if (lhsType->isObjCQualifiedIdType()
1159 || rhsType->isObjCQualifiedIdType()) {
1160 if (Context.ObjCQualifiedIdTypesAreCompatible(lhsType, rhsType))
Fariborz Jahanian411f3732007-12-19 17:45:58 +00001161 return Compatible;
Chris Lattnerfc144e22008-01-04 23:18:45 +00001162 return Incompatible;
Fariborz Jahanian411f3732007-12-19 17:45:58 +00001163 }
Chris Lattnere8b3e962008-01-04 23:32:24 +00001164
1165 if (lhsType->isVectorType() || rhsType->isVectorType()) {
1166 // For OCUVector, allow vector splats; float -> <n x float>
1167 if (const OCUVectorType *LV = lhsType->getAsOCUVectorType()) {
1168 if (LV->getElementType().getTypePtr() == rhsType.getTypePtr())
1169 return Compatible;
1170 }
1171
1172 // If LHS and RHS are both vectors of integer or both vectors of floating
1173 // point types, and the total vector length is the same, allow the
1174 // conversion. This is a bitcast; no bits are changed but the result type
1175 // is different.
1176 if (getLangOptions().LaxVectorConversions &&
1177 lhsType->isVectorType() && rhsType->isVectorType()) {
1178 if ((lhsType->isIntegerType() && rhsType->isIntegerType()) ||
1179 (lhsType->isRealFloatingType() && rhsType->isRealFloatingType())) {
1180 if (Context.getTypeSize(lhsType, SourceLocation()) ==
1181 Context.getTypeSize(rhsType, SourceLocation()))
Nate Begeman4119d1a2007-12-30 02:59:45 +00001182 return Compatible;
1183 }
Chris Lattnere8b3e962008-01-04 23:32:24 +00001184 }
1185 return Incompatible;
1186 }
1187
1188 if (lhsType->isArithmeticType() && rhsType->isArithmeticType())
Reid Spencer5f016e22007-07-11 17:01:13 +00001189 return Compatible;
Chris Lattnerfc144e22008-01-04 23:18:45 +00001190
1191 if (lhsType->isPointerType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001192 if (rhsType->isIntegerType())
Chris Lattnerb7b61152008-01-04 18:22:42 +00001193 return IntToPointer;
Reid Spencer5f016e22007-07-11 17:01:13 +00001194
1195 if (rhsType->isPointerType())
1196 return CheckPointerTypesForAssignment(lhsType, rhsType);
Chris Lattnerfc144e22008-01-04 23:18:45 +00001197 return Incompatible;
1198 }
1199
1200 if (rhsType->isPointerType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001201 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer.
1202 if ((lhsType->isIntegerType()) && (lhsType != Context.BoolTy))
Chris Lattnerb7b61152008-01-04 18:22:42 +00001203 return PointerToInt;
Reid Spencer5f016e22007-07-11 17:01:13 +00001204
1205 if (lhsType->isPointerType())
1206 return CheckPointerTypesForAssignment(lhsType, rhsType);
Chris Lattnerfc144e22008-01-04 23:18:45 +00001207 return Incompatible;
Chris Lattnerfc144e22008-01-04 23:18:45 +00001208 }
1209
1210 if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) {
Steve Naroffec0550f2007-10-15 20:41:53 +00001211 if (Context.tagTypesAreCompatible(lhsType, rhsType))
Reid Spencer5f016e22007-07-11 17:01:13 +00001212 return Compatible;
Reid Spencer5f016e22007-07-11 17:01:13 +00001213 }
1214 return Incompatible;
1215}
1216
Chris Lattner5cf216b2008-01-04 18:04:52 +00001217Sema::AssignConvertType
Steve Naroff90045e82007-07-13 23:32:42 +00001218Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) {
Steve Naroff529a4ad2007-11-27 17:58:44 +00001219 // C99 6.5.16.1p1: the left operand is a pointer and the right is
1220 // a null pointer constant.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001221 if ((lhsType->isPointerType() || lhsType->isObjCQualifiedIdType())
Fariborz Jahanian9d3185e2008-01-03 18:46:52 +00001222 && rExpr->isNullPointerConstant(Context)) {
Chris Lattner1e0a3902008-01-16 19:17:22 +00001223 ImpCastExprToType(rExpr, lhsType);
Steve Naroff529a4ad2007-11-27 17:58:44 +00001224 return Compatible;
1225 }
Chris Lattner943140e2007-10-16 02:55:40 +00001226 // This check seems unnatural, however it is necessary to ensure the proper
Steve Naroff90045e82007-07-13 23:32:42 +00001227 // conversion of functions/arrays. If the conversion were done for all
Steve Naroff08d92e42007-09-15 18:49:24 +00001228 // DeclExpr's (created by ActOnIdentifierExpr), it would mess up the unary
Steve Naroff90045e82007-07-13 23:32:42 +00001229 // expressions that surpress this implicit conversion (&, sizeof).
Chris Lattner943140e2007-10-16 02:55:40 +00001230 //
1231 // Suppress this for references: C99 8.5.3p5. FIXME: revisit when references
1232 // are better understood.
1233 if (!lhsType->isReferenceType())
1234 DefaultFunctionArrayConversion(rExpr);
Steve Narofff1120de2007-08-24 22:33:52 +00001235
Chris Lattner5cf216b2008-01-04 18:04:52 +00001236 Sema::AssignConvertType result =
1237 CheckAssignmentConstraints(lhsType, rExpr->getType());
Steve Narofff1120de2007-08-24 22:33:52 +00001238
1239 // C99 6.5.16.1p2: The value of the right operand is converted to the
1240 // type of the assignment expression.
1241 if (rExpr->getType() != lhsType)
Chris Lattner1e0a3902008-01-16 19:17:22 +00001242 ImpCastExprToType(rExpr, lhsType);
Steve Narofff1120de2007-08-24 22:33:52 +00001243 return result;
Steve Naroff90045e82007-07-13 23:32:42 +00001244}
1245
Chris Lattner5cf216b2008-01-04 18:04:52 +00001246Sema::AssignConvertType
Steve Naroff90045e82007-07-13 23:32:42 +00001247Sema::CheckCompoundAssignmentConstraints(QualType lhsType, QualType rhsType) {
1248 return CheckAssignmentConstraints(lhsType, rhsType);
1249}
1250
Chris Lattnerca5eede2007-12-12 05:47:28 +00001251QualType Sema::InvalidOperands(SourceLocation loc, Expr *&lex, Expr *&rex) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001252 Diag(loc, diag::err_typecheck_invalid_operands,
1253 lex->getType().getAsString(), rex->getType().getAsString(),
1254 lex->getSourceRange(), rex->getSourceRange());
Chris Lattnerca5eede2007-12-12 05:47:28 +00001255 return QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001256}
1257
Steve Naroff49b45262007-07-13 16:58:59 +00001258inline QualType Sema::CheckVectorOperands(SourceLocation loc, Expr *&lex,
1259 Expr *&rex) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001260 QualType lhsType = lex->getType(), rhsType = rex->getType();
1261
1262 // make sure the vector types are identical.
1263 if (lhsType == rhsType)
1264 return lhsType;
Nate Begeman4119d1a2007-12-30 02:59:45 +00001265
1266 // if the lhs is an ocu vector and the rhs is a scalar of the same type,
1267 // promote the rhs to the vector type.
1268 if (const OCUVectorType *V = lhsType->getAsOCUVectorType()) {
1269 if (V->getElementType().getCanonicalType().getTypePtr()
1270 == rhsType.getCanonicalType().getTypePtr()) {
Chris Lattner1e0a3902008-01-16 19:17:22 +00001271 ImpCastExprToType(rex, lhsType);
Nate Begeman4119d1a2007-12-30 02:59:45 +00001272 return lhsType;
1273 }
1274 }
1275
1276 // if the rhs is an ocu vector and the lhs is a scalar of the same type,
1277 // promote the lhs to the vector type.
1278 if (const OCUVectorType *V = rhsType->getAsOCUVectorType()) {
1279 if (V->getElementType().getCanonicalType().getTypePtr()
1280 == lhsType.getCanonicalType().getTypePtr()) {
Chris Lattner1e0a3902008-01-16 19:17:22 +00001281 ImpCastExprToType(lex, rhsType);
Nate Begeman4119d1a2007-12-30 02:59:45 +00001282 return rhsType;
1283 }
1284 }
1285
Reid Spencer5f016e22007-07-11 17:01:13 +00001286 // You cannot convert between vector values of different size.
1287 Diag(loc, diag::err_typecheck_vector_not_convertable,
1288 lex->getType().getAsString(), rex->getType().getAsString(),
1289 lex->getSourceRange(), rex->getSourceRange());
1290 return QualType();
1291}
1292
1293inline QualType Sema::CheckMultiplyDivideOperands(
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001294 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00001295{
Steve Naroff90045e82007-07-13 23:32:42 +00001296 QualType lhsType = lex->getType(), rhsType = rex->getType();
1297
1298 if (lhsType->isVectorType() || rhsType->isVectorType())
Reid Spencer5f016e22007-07-11 17:01:13 +00001299 return CheckVectorOperands(loc, lex, rex);
Steve Naroff49b45262007-07-13 16:58:59 +00001300
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001301 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Reid Spencer5f016e22007-07-11 17:01:13 +00001302
Steve Naroffa4332e22007-07-17 00:58:39 +00001303 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001304 return compType;
Chris Lattnerca5eede2007-12-12 05:47:28 +00001305 return InvalidOperands(loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001306}
1307
1308inline QualType Sema::CheckRemainderOperands(
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001309 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00001310{
Steve Naroff90045e82007-07-13 23:32:42 +00001311 QualType lhsType = lex->getType(), rhsType = rex->getType();
1312
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001313 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Reid Spencer5f016e22007-07-11 17:01:13 +00001314
Steve Naroffa4332e22007-07-17 00:58:39 +00001315 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001316 return compType;
Chris Lattnerca5eede2007-12-12 05:47:28 +00001317 return InvalidOperands(loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001318}
1319
1320inline QualType Sema::CheckAdditionOperands( // C99 6.5.6
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001321 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00001322{
Steve Naroff3e5e5562007-07-16 22:23:01 +00001323 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Steve Naroff49b45262007-07-13 16:58:59 +00001324 return CheckVectorOperands(loc, lex, rex);
1325
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001326 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Steve Naroff3e5e5562007-07-16 22:23:01 +00001327
Reid Spencer5f016e22007-07-11 17:01:13 +00001328 // handle the common case first (both operands are arithmetic).
Steve Naroffa4332e22007-07-17 00:58:39 +00001329 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001330 return compType;
Reid Spencer5f016e22007-07-11 17:01:13 +00001331
Steve Naroffa4332e22007-07-17 00:58:39 +00001332 if (lex->getType()->isPointerType() && rex->getType()->isIntegerType())
1333 return lex->getType();
1334 if (lex->getType()->isIntegerType() && rex->getType()->isPointerType())
1335 return rex->getType();
Chris Lattnerca5eede2007-12-12 05:47:28 +00001336 return InvalidOperands(loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001337}
1338
1339inline QualType Sema::CheckSubtractionOperands( // C99 6.5.6
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001340 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00001341{
Steve Naroff3e5e5562007-07-16 22:23:01 +00001342 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Reid Spencer5f016e22007-07-11 17:01:13 +00001343 return CheckVectorOperands(loc, lex, rex);
Steve Naroff90045e82007-07-13 23:32:42 +00001344
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001345 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Reid Spencer5f016e22007-07-11 17:01:13 +00001346
Chris Lattner6e4ab612007-12-09 21:53:25 +00001347 // Enforce type constraints: C99 6.5.6p3.
1348
1349 // Handle the common case first (both operands are arithmetic).
Steve Naroffa4332e22007-07-17 00:58:39 +00001350 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001351 return compType;
Chris Lattner6e4ab612007-12-09 21:53:25 +00001352
1353 // Either ptr - int or ptr - ptr.
1354 if (const PointerType *LHSPTy = lex->getType()->getAsPointerType()) {
Steve Naroff2565eef2008-01-29 18:58:14 +00001355 QualType lpointee = LHSPTy->getPointeeType();
Eli Friedman8e54ad02008-02-08 01:19:44 +00001356
Chris Lattner6e4ab612007-12-09 21:53:25 +00001357 // The LHS must be an object type, not incomplete, function, etc.
Steve Naroff2565eef2008-01-29 18:58:14 +00001358 if (!lpointee->isObjectType()) {
Chris Lattner6e4ab612007-12-09 21:53:25 +00001359 // Handle the GNU void* extension.
Steve Naroff2565eef2008-01-29 18:58:14 +00001360 if (lpointee->isVoidType()) {
Chris Lattner6e4ab612007-12-09 21:53:25 +00001361 Diag(loc, diag::ext_gnu_void_ptr,
1362 lex->getSourceRange(), rex->getSourceRange());
1363 } else {
1364 Diag(loc, diag::err_typecheck_sub_ptr_object,
1365 lex->getType().getAsString(), lex->getSourceRange());
1366 return QualType();
1367 }
1368 }
1369
1370 // The result type of a pointer-int computation is the pointer type.
1371 if (rex->getType()->isIntegerType())
1372 return lex->getType();
Steve Naroff3e5e5562007-07-16 22:23:01 +00001373
Chris Lattner6e4ab612007-12-09 21:53:25 +00001374 // Handle pointer-pointer subtractions.
1375 if (const PointerType *RHSPTy = rex->getType()->getAsPointerType()) {
Eli Friedman8e54ad02008-02-08 01:19:44 +00001376 QualType rpointee = RHSPTy->getPointeeType();
1377
Chris Lattner6e4ab612007-12-09 21:53:25 +00001378 // RHS must be an object type, unless void (GNU).
Steve Naroff2565eef2008-01-29 18:58:14 +00001379 if (!rpointee->isObjectType()) {
Chris Lattner6e4ab612007-12-09 21:53:25 +00001380 // Handle the GNU void* extension.
Steve Naroff2565eef2008-01-29 18:58:14 +00001381 if (rpointee->isVoidType()) {
1382 if (!lpointee->isVoidType())
Chris Lattner6e4ab612007-12-09 21:53:25 +00001383 Diag(loc, diag::ext_gnu_void_ptr,
1384 lex->getSourceRange(), rex->getSourceRange());
1385 } else {
1386 Diag(loc, diag::err_typecheck_sub_ptr_object,
1387 rex->getType().getAsString(), rex->getSourceRange());
1388 return QualType();
1389 }
1390 }
1391
1392 // Pointee types must be compatible.
Steve Naroff2565eef2008-01-29 18:58:14 +00001393 if (!Context.typesAreCompatible(lpointee.getUnqualifiedType(),
1394 rpointee.getUnqualifiedType())) {
Chris Lattner6e4ab612007-12-09 21:53:25 +00001395 Diag(loc, diag::err_typecheck_sub_ptr_compatible,
1396 lex->getType().getAsString(), rex->getType().getAsString(),
1397 lex->getSourceRange(), rex->getSourceRange());
1398 return QualType();
1399 }
1400
1401 return Context.getPointerDiffType();
1402 }
1403 }
1404
Chris Lattnerca5eede2007-12-12 05:47:28 +00001405 return InvalidOperands(loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001406}
1407
1408inline QualType Sema::CheckShiftOperands( // C99 6.5.7
Chris Lattnerca5eede2007-12-12 05:47:28 +00001409 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign) {
1410 // C99 6.5.7p2: Each of the operands shall have integer type.
1411 if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType())
1412 return InvalidOperands(loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001413
Chris Lattnerca5eede2007-12-12 05:47:28 +00001414 // Shifts don't perform usual arithmetic conversions, they just do integer
1415 // promotions on each operand. C99 6.5.7p3
Chris Lattner1dcf2c82007-12-13 07:28:16 +00001416 if (!isCompAssign)
1417 UsualUnaryConversions(lex);
Chris Lattnerca5eede2007-12-12 05:47:28 +00001418 UsualUnaryConversions(rex);
1419
1420 // "The type of the result is that of the promoted left operand."
1421 return lex->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001422}
1423
Chris Lattnera5937dd2007-08-26 01:18:55 +00001424inline QualType Sema::CheckCompareOperands( // C99 6.5.8
1425 Expr *&lex, Expr *&rex, SourceLocation loc, bool isRelational)
Reid Spencer5f016e22007-07-11 17:01:13 +00001426{
Chris Lattnera5937dd2007-08-26 01:18:55 +00001427 // C99 6.5.8p3 / C99 6.5.9p4
Steve Naroff30bf7712007-08-10 18:26:40 +00001428 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
1429 UsualArithmeticConversions(lex, rex);
1430 else {
1431 UsualUnaryConversions(lex);
1432 UsualUnaryConversions(rex);
1433 }
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001434 QualType lType = lex->getType();
1435 QualType rType = rex->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001436
Ted Kremenek72cb1ae2007-10-29 17:13:39 +00001437 // For non-floating point types, check for self-comparisons of the form
1438 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
1439 // often indicate logic errors in the program.
Ted Kremenek3ca0bf22007-10-29 16:58:49 +00001440 if (!lType->isFloatingType()) {
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00001441 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex->IgnoreParens()))
1442 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex->IgnoreParens()))
Ted Kremenek3ca0bf22007-10-29 16:58:49 +00001443 if (DRL->getDecl() == DRR->getDecl())
1444 Diag(loc, diag::warn_selfcomparison);
1445 }
1446
Chris Lattnera5937dd2007-08-26 01:18:55 +00001447 if (isRelational) {
1448 if (lType->isRealType() && rType->isRealType())
1449 return Context.IntTy;
1450 } else {
Ted Kremenek72cb1ae2007-10-29 17:13:39 +00001451 // Check for comparisons of floating point operands using != and ==.
Ted Kremenek72cb1ae2007-10-29 17:13:39 +00001452 if (lType->isFloatingType()) {
1453 assert (rType->isFloatingType());
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001454 CheckFloatComparison(loc,lex,rex);
Ted Kremenek6a261552007-10-29 16:40:01 +00001455 }
1456
Chris Lattnera5937dd2007-08-26 01:18:55 +00001457 if (lType->isArithmeticType() && rType->isArithmeticType())
1458 return Context.IntTy;
1459 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001460
Chris Lattnerd28f8152007-08-26 01:10:14 +00001461 bool LHSIsNull = lex->isNullPointerConstant(Context);
1462 bool RHSIsNull = rex->isNullPointerConstant(Context);
1463
Chris Lattnera5937dd2007-08-26 01:18:55 +00001464 // All of the following pointer related warnings are GCC extensions, except
1465 // when handling null pointer constants. One day, we can consider making them
1466 // errors (when -pedantic-errors is enabled).
Steve Naroff77878cc2007-08-27 04:08:11 +00001467 if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2
Eli Friedman8e54ad02008-02-08 01:19:44 +00001468 QualType lpointee = lType->getAsPointerType()->getPointeeType();
1469 QualType rpointee = rType->getAsPointerType()->getPointeeType();
1470
Steve Naroff66296cb2007-11-13 14:57:38 +00001471 if (!LHSIsNull && !RHSIsNull && // C99 6.5.9p2
Steve Naroff2565eef2008-01-29 18:58:14 +00001472 !lpointee->isVoidType() && !lpointee->isVoidType() &&
1473 !Context.typesAreCompatible(lpointee.getUnqualifiedType(),
Eli Friedman8e54ad02008-02-08 01:19:44 +00001474 rpointee.getUnqualifiedType())) {
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001475 Diag(loc, diag::ext_typecheck_comparison_of_distinct_pointers,
1476 lType.getAsString(), rType.getAsString(),
1477 lex->getSourceRange(), rex->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +00001478 }
Chris Lattner1e0a3902008-01-16 19:17:22 +00001479 ImpCastExprToType(rex, lType); // promote the pointer to pointer
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001480 return Context.IntTy;
1481 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001482 if ((lType->isObjCQualifiedIdType() || rType->isObjCQualifiedIdType())
1483 && Context.ObjCQualifiedIdTypesAreCompatible(lType, rType, true)) {
Chris Lattner1e0a3902008-01-16 19:17:22 +00001484 ImpCastExprToType(rex, lType);
Fariborz Jahanian7359f042007-12-20 01:06:58 +00001485 return Context.IntTy;
1486 }
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001487 if (lType->isPointerType() && rType->isIntegerType()) {
Chris Lattnerd28f8152007-08-26 01:10:14 +00001488 if (!RHSIsNull)
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001489 Diag(loc, diag::ext_typecheck_comparison_of_pointer_integer,
1490 lType.getAsString(), rType.getAsString(),
1491 lex->getSourceRange(), rex->getSourceRange());
Chris Lattner1e0a3902008-01-16 19:17:22 +00001492 ImpCastExprToType(rex, lType); // promote the integer to pointer
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001493 return Context.IntTy;
1494 }
1495 if (lType->isIntegerType() && rType->isPointerType()) {
Chris Lattnerd28f8152007-08-26 01:10:14 +00001496 if (!LHSIsNull)
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001497 Diag(loc, diag::ext_typecheck_comparison_of_pointer_integer,
1498 lType.getAsString(), rType.getAsString(),
1499 lex->getSourceRange(), rex->getSourceRange());
Chris Lattner1e0a3902008-01-16 19:17:22 +00001500 ImpCastExprToType(lex, rType); // promote the integer to pointer
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001501 return Context.IntTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00001502 }
Chris Lattnerca5eede2007-12-12 05:47:28 +00001503 return InvalidOperands(loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001504}
1505
Reid Spencer5f016e22007-07-11 17:01:13 +00001506inline QualType Sema::CheckBitwiseOperands(
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001507 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00001508{
Steve Naroff3e5e5562007-07-16 22:23:01 +00001509 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Reid Spencer5f016e22007-07-11 17:01:13 +00001510 return CheckVectorOperands(loc, lex, rex);
Steve Naroff90045e82007-07-13 23:32:42 +00001511
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001512 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Reid Spencer5f016e22007-07-11 17:01:13 +00001513
Steve Naroffa4332e22007-07-17 00:58:39 +00001514 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001515 return compType;
Chris Lattnerca5eede2007-12-12 05:47:28 +00001516 return InvalidOperands(loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001517}
1518
1519inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14]
Steve Naroff49b45262007-07-13 16:58:59 +00001520 Expr *&lex, Expr *&rex, SourceLocation loc)
Reid Spencer5f016e22007-07-11 17:01:13 +00001521{
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001522 UsualUnaryConversions(lex);
1523 UsualUnaryConversions(rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001524
Steve Naroffa4332e22007-07-17 00:58:39 +00001525 if (lex->getType()->isScalarType() || rex->getType()->isScalarType())
Reid Spencer5f016e22007-07-11 17:01:13 +00001526 return Context.IntTy;
Chris Lattnerca5eede2007-12-12 05:47:28 +00001527 return InvalidOperands(loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001528}
1529
1530inline QualType Sema::CheckAssignmentOperands( // C99 6.5.16.1
Steve Narofff1120de2007-08-24 22:33:52 +00001531 Expr *lex, Expr *&rex, SourceLocation loc, QualType compoundType)
Reid Spencer5f016e22007-07-11 17:01:13 +00001532{
1533 QualType lhsType = lex->getType();
1534 QualType rhsType = compoundType.isNull() ? rex->getType() : compoundType;
Reid Spencer5f016e22007-07-11 17:01:13 +00001535 Expr::isModifiableLvalueResult mlval = lex->isModifiableLvalue();
1536
1537 switch (mlval) { // C99 6.5.16p2
Chris Lattner5cf216b2008-01-04 18:04:52 +00001538 case Expr::MLV_Valid:
1539 break;
1540 case Expr::MLV_ConstQualified:
1541 Diag(loc, diag::err_typecheck_assign_const, lex->getSourceRange());
1542 return QualType();
1543 case Expr::MLV_ArrayType:
1544 Diag(loc, diag::err_typecheck_array_not_modifiable_lvalue,
1545 lhsType.getAsString(), lex->getSourceRange());
1546 return QualType();
1547 case Expr::MLV_NotObjectType:
1548 Diag(loc, diag::err_typecheck_non_object_not_modifiable_lvalue,
1549 lhsType.getAsString(), lex->getSourceRange());
1550 return QualType();
1551 case Expr::MLV_InvalidExpression:
1552 Diag(loc, diag::err_typecheck_expression_not_modifiable_lvalue,
1553 lex->getSourceRange());
1554 return QualType();
1555 case Expr::MLV_IncompleteType:
1556 case Expr::MLV_IncompleteVoidType:
1557 Diag(loc, diag::err_typecheck_incomplete_type_not_modifiable_lvalue,
1558 lhsType.getAsString(), lex->getSourceRange());
1559 return QualType();
1560 case Expr::MLV_DuplicateVectorComponents:
1561 Diag(loc, diag::err_typecheck_duplicate_vector_components_not_mlvalue,
1562 lex->getSourceRange());
1563 return QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001564 }
Steve Naroffd1861fd2007-07-31 12:34:36 +00001565
Chris Lattner5cf216b2008-01-04 18:04:52 +00001566 AssignConvertType ConvTy;
1567 if (compoundType.isNull())
1568 ConvTy = CheckSingleAssignmentConstraints(lhsType, rex);
1569 else
1570 ConvTy = CheckCompoundAssignmentConstraints(lhsType, rhsType);
1571
1572 if (DiagnoseAssignmentResult(ConvTy, loc, lhsType, rhsType,
1573 rex, "assigning"))
1574 return QualType();
1575
Reid Spencer5f016e22007-07-11 17:01:13 +00001576 // C99 6.5.16p3: The type of an assignment expression is the type of the
1577 // left operand unless the left operand has qualified type, in which case
1578 // it is the unqualified version of the type of the left operand.
1579 // C99 6.5.16.1p2: In simple assignment, the value of the right operand
1580 // is converted to the type of the assignment expression (above).
Chris Lattner73d0d4f2007-08-30 17:45:32 +00001581 // C++ 5.17p1: the type of the assignment expression is that of its left
1582 // oprdu.
Chris Lattner5cf216b2008-01-04 18:04:52 +00001583 return lhsType.getUnqualifiedType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001584}
1585
1586inline QualType Sema::CheckCommaOperands( // C99 6.5.17
Steve Naroff49b45262007-07-13 16:58:59 +00001587 Expr *&lex, Expr *&rex, SourceLocation loc) {
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001588 UsualUnaryConversions(rex);
1589 return rex->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001590}
1591
Steve Naroff49b45262007-07-13 16:58:59 +00001592/// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine
1593/// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions.
Reid Spencer5f016e22007-07-11 17:01:13 +00001594QualType Sema::CheckIncrementDecrementOperand(Expr *op, SourceLocation OpLoc) {
Steve Naroff49b45262007-07-13 16:58:59 +00001595 QualType resType = op->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001596 assert(!resType.isNull() && "no type for increment/decrement expression");
1597
Steve Naroff084f9ed2007-08-24 17:20:07 +00001598 // C99 6.5.2.4p1: We allow complex as a GCC extension.
Steve Naroffd848a382007-11-11 14:15:57 +00001599 if (const PointerType *pt = resType->getAsPointerType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001600 if (!pt->getPointeeType()->isObjectType()) { // C99 6.5.2.4p2, 6.5.6p2
1601 Diag(OpLoc, diag::err_typecheck_arithmetic_incomplete_type,
1602 resType.getAsString(), op->getSourceRange());
1603 return QualType();
1604 }
Steve Naroff084f9ed2007-08-24 17:20:07 +00001605 } else if (!resType->isRealType()) {
1606 if (resType->isComplexType())
1607 // C99 does not support ++/-- on complex types.
1608 Diag(OpLoc, diag::ext_integer_increment_complex,
1609 resType.getAsString(), op->getSourceRange());
1610 else {
1611 Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement,
1612 resType.getAsString(), op->getSourceRange());
1613 return QualType();
1614 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001615 }
Steve Naroffdd10e022007-08-23 21:37:33 +00001616 // At this point, we know we have a real, complex or pointer type.
1617 // Now make sure the operand is a modifiable lvalue.
Reid Spencer5f016e22007-07-11 17:01:13 +00001618 Expr::isModifiableLvalueResult mlval = op->isModifiableLvalue();
1619 if (mlval != Expr::MLV_Valid) {
1620 // FIXME: emit a more precise diagnostic...
1621 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_incr_decr,
1622 op->getSourceRange());
1623 return QualType();
1624 }
1625 return resType;
1626}
1627
Anders Carlsson369dee42008-02-01 07:15:58 +00001628/// getPrimaryDecl - Helper function for CheckAddressOfOperand().
Reid Spencer5f016e22007-07-11 17:01:13 +00001629/// This routine allows us to typecheck complex/recursive expressions
1630/// where the declaration is needed for type checking. Here are some
1631/// examples: &s.xx, &s.zz[1].yy, &(1+2), &(XX), &"123"[2].
Anders Carlsson369dee42008-02-01 07:15:58 +00001632static ValueDecl *getPrimaryDecl(Expr *e) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001633 switch (e->getStmtClass()) {
1634 case Stmt::DeclRefExprClass:
1635 return cast<DeclRefExpr>(e)->getDecl();
1636 case Stmt::MemberExprClass:
Chris Lattnerf82228f2007-11-16 17:46:48 +00001637 // Fields cannot be declared with a 'register' storage class.
1638 // &X->f is always ok, even if X is declared register.
1639 if (cast<MemberExpr>(e)->isArrow())
1640 return 0;
Anders Carlsson369dee42008-02-01 07:15:58 +00001641 return getPrimaryDecl(cast<MemberExpr>(e)->getBase());
1642 case Stmt::ArraySubscriptExprClass: {
1643 // &X[4] and &4[X] is invalid if X is invalid and X is not a pointer.
1644
1645 ValueDecl *VD = getPrimaryDecl(cast<ArraySubscriptExpr>(e)->getBase());
Anders Carlssonf2a4b842008-02-01 16:01:31 +00001646 if (!VD || VD->getType()->isPointerType())
Anders Carlsson369dee42008-02-01 07:15:58 +00001647 return 0;
1648 else
1649 return VD;
1650 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001651 case Stmt::UnaryOperatorClass:
Anders Carlsson369dee42008-02-01 07:15:58 +00001652 return getPrimaryDecl(cast<UnaryOperator>(e)->getSubExpr());
Reid Spencer5f016e22007-07-11 17:01:13 +00001653 case Stmt::ParenExprClass:
Anders Carlsson369dee42008-02-01 07:15:58 +00001654 return getPrimaryDecl(cast<ParenExpr>(e)->getSubExpr());
Chris Lattnerf82228f2007-11-16 17:46:48 +00001655 case Stmt::ImplicitCastExprClass:
1656 // &X[4] when X is an array, has an implicit cast from array to pointer.
Anders Carlsson369dee42008-02-01 07:15:58 +00001657 return getPrimaryDecl(cast<ImplicitCastExpr>(e)->getSubExpr());
Reid Spencer5f016e22007-07-11 17:01:13 +00001658 default:
1659 return 0;
1660 }
1661}
1662
1663/// CheckAddressOfOperand - The operand of & must be either a function
1664/// designator or an lvalue designating an object. If it is an lvalue, the
1665/// object cannot be declared with storage class register or be a bit field.
1666/// Note: The usual conversions are *not* applied to the operand of the &
1667/// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue.
1668QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) {
Steve Naroff08f19672008-01-13 17:10:08 +00001669 if (getLangOptions().C99) {
1670 // Implement C99-only parts of addressof rules.
1671 if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) {
1672 if (uOp->getOpcode() == UnaryOperator::Deref)
1673 // Per C99 6.5.3.2, the address of a deref always returns a valid result
1674 // (assuming the deref expression is valid).
1675 return uOp->getSubExpr()->getType();
1676 }
1677 // Technically, there should be a check for array subscript
1678 // expressions here, but the result of one is always an lvalue anyway.
1679 }
Anders Carlsson369dee42008-02-01 07:15:58 +00001680 ValueDecl *dcl = getPrimaryDecl(op);
Reid Spencer5f016e22007-07-11 17:01:13 +00001681 Expr::isLvalueResult lval = op->isLvalue();
1682
1683 if (lval != Expr::LV_Valid) { // C99 6.5.3.2p1
Chris Lattnerf82228f2007-11-16 17:46:48 +00001684 if (!dcl || !isa<FunctionDecl>(dcl)) {// allow function designators
1685 // FIXME: emit more specific diag...
Reid Spencer5f016e22007-07-11 17:01:13 +00001686 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof,
1687 op->getSourceRange());
1688 return QualType();
1689 }
1690 } else if (dcl) {
1691 // We have an lvalue with a decl. Make sure the decl is not declared
1692 // with the register storage-class specifier.
1693 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) {
1694 if (vd->getStorageClass() == VarDecl::Register) {
1695 Diag(OpLoc, diag::err_typecheck_address_of_register,
1696 op->getSourceRange());
1697 return QualType();
1698 }
1699 } else
1700 assert(0 && "Unknown/unexpected decl type");
1701
1702 // FIXME: add check for bitfields!
1703 }
1704 // If the operand has type "type", the result has type "pointer to type".
1705 return Context.getPointerType(op->getType());
1706}
1707
1708QualType Sema::CheckIndirectionOperand(Expr *op, SourceLocation OpLoc) {
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001709 UsualUnaryConversions(op);
1710 QualType qType = op->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001711
Chris Lattnerbefee482007-07-31 16:53:04 +00001712 if (const PointerType *PT = qType->getAsPointerType()) {
Steve Naroff08f19672008-01-13 17:10:08 +00001713 // Note that per both C89 and C99, this is always legal, even
1714 // if ptype is an incomplete type or void.
1715 // It would be possible to warn about dereferencing a
1716 // void pointer, but it's completely well-defined,
1717 // and such a warning is unlikely to catch any mistakes.
1718 return PT->getPointeeType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001719 }
1720 Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer,
1721 qType.getAsString(), op->getSourceRange());
1722 return QualType();
1723}
1724
1725static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode(
1726 tok::TokenKind Kind) {
1727 BinaryOperator::Opcode Opc;
1728 switch (Kind) {
1729 default: assert(0 && "Unknown binop!");
1730 case tok::star: Opc = BinaryOperator::Mul; break;
1731 case tok::slash: Opc = BinaryOperator::Div; break;
1732 case tok::percent: Opc = BinaryOperator::Rem; break;
1733 case tok::plus: Opc = BinaryOperator::Add; break;
1734 case tok::minus: Opc = BinaryOperator::Sub; break;
1735 case tok::lessless: Opc = BinaryOperator::Shl; break;
1736 case tok::greatergreater: Opc = BinaryOperator::Shr; break;
1737 case tok::lessequal: Opc = BinaryOperator::LE; break;
1738 case tok::less: Opc = BinaryOperator::LT; break;
1739 case tok::greaterequal: Opc = BinaryOperator::GE; break;
1740 case tok::greater: Opc = BinaryOperator::GT; break;
1741 case tok::exclaimequal: Opc = BinaryOperator::NE; break;
1742 case tok::equalequal: Opc = BinaryOperator::EQ; break;
1743 case tok::amp: Opc = BinaryOperator::And; break;
1744 case tok::caret: Opc = BinaryOperator::Xor; break;
1745 case tok::pipe: Opc = BinaryOperator::Or; break;
1746 case tok::ampamp: Opc = BinaryOperator::LAnd; break;
1747 case tok::pipepipe: Opc = BinaryOperator::LOr; break;
1748 case tok::equal: Opc = BinaryOperator::Assign; break;
1749 case tok::starequal: Opc = BinaryOperator::MulAssign; break;
1750 case tok::slashequal: Opc = BinaryOperator::DivAssign; break;
1751 case tok::percentequal: Opc = BinaryOperator::RemAssign; break;
1752 case tok::plusequal: Opc = BinaryOperator::AddAssign; break;
1753 case tok::minusequal: Opc = BinaryOperator::SubAssign; break;
1754 case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break;
1755 case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break;
1756 case tok::ampequal: Opc = BinaryOperator::AndAssign; break;
1757 case tok::caretequal: Opc = BinaryOperator::XorAssign; break;
1758 case tok::pipeequal: Opc = BinaryOperator::OrAssign; break;
1759 case tok::comma: Opc = BinaryOperator::Comma; break;
1760 }
1761 return Opc;
1762}
1763
1764static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode(
1765 tok::TokenKind Kind) {
1766 UnaryOperator::Opcode Opc;
1767 switch (Kind) {
1768 default: assert(0 && "Unknown unary op!");
1769 case tok::plusplus: Opc = UnaryOperator::PreInc; break;
1770 case tok::minusminus: Opc = UnaryOperator::PreDec; break;
1771 case tok::amp: Opc = UnaryOperator::AddrOf; break;
1772 case tok::star: Opc = UnaryOperator::Deref; break;
1773 case tok::plus: Opc = UnaryOperator::Plus; break;
1774 case tok::minus: Opc = UnaryOperator::Minus; break;
1775 case tok::tilde: Opc = UnaryOperator::Not; break;
1776 case tok::exclaim: Opc = UnaryOperator::LNot; break;
1777 case tok::kw_sizeof: Opc = UnaryOperator::SizeOf; break;
1778 case tok::kw___alignof: Opc = UnaryOperator::AlignOf; break;
1779 case tok::kw___real: Opc = UnaryOperator::Real; break;
1780 case tok::kw___imag: Opc = UnaryOperator::Imag; break;
1781 case tok::kw___extension__: Opc = UnaryOperator::Extension; break;
1782 }
1783 return Opc;
1784}
1785
1786// Binary Operators. 'Tok' is the token for the operator.
Steve Narofff69936d2007-09-16 03:34:24 +00001787Action::ExprResult Sema::ActOnBinOp(SourceLocation TokLoc, tok::TokenKind Kind,
Reid Spencer5f016e22007-07-11 17:01:13 +00001788 ExprTy *LHS, ExprTy *RHS) {
1789 BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind);
1790 Expr *lhs = (Expr *)LHS, *rhs = (Expr*)RHS;
1791
Steve Narofff69936d2007-09-16 03:34:24 +00001792 assert((lhs != 0) && "ActOnBinOp(): missing left expression");
1793 assert((rhs != 0) && "ActOnBinOp(): missing right expression");
Reid Spencer5f016e22007-07-11 17:01:13 +00001794
1795 QualType ResultTy; // Result type of the binary operator.
1796 QualType CompTy; // Computation type for compound assignments (e.g. '+=')
1797
1798 switch (Opc) {
1799 default:
1800 assert(0 && "Unknown binary expr!");
1801 case BinaryOperator::Assign:
1802 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, QualType());
1803 break;
1804 case BinaryOperator::Mul:
1805 case BinaryOperator::Div:
1806 ResultTy = CheckMultiplyDivideOperands(lhs, rhs, TokLoc);
1807 break;
1808 case BinaryOperator::Rem:
1809 ResultTy = CheckRemainderOperands(lhs, rhs, TokLoc);
1810 break;
1811 case BinaryOperator::Add:
1812 ResultTy = CheckAdditionOperands(lhs, rhs, TokLoc);
1813 break;
1814 case BinaryOperator::Sub:
1815 ResultTy = CheckSubtractionOperands(lhs, rhs, TokLoc);
1816 break;
1817 case BinaryOperator::Shl:
1818 case BinaryOperator::Shr:
1819 ResultTy = CheckShiftOperands(lhs, rhs, TokLoc);
1820 break;
1821 case BinaryOperator::LE:
1822 case BinaryOperator::LT:
1823 case BinaryOperator::GE:
1824 case BinaryOperator::GT:
Chris Lattnera5937dd2007-08-26 01:18:55 +00001825 ResultTy = CheckCompareOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001826 break;
1827 case BinaryOperator::EQ:
1828 case BinaryOperator::NE:
Chris Lattnera5937dd2007-08-26 01:18:55 +00001829 ResultTy = CheckCompareOperands(lhs, rhs, TokLoc, false);
Reid Spencer5f016e22007-07-11 17:01:13 +00001830 break;
1831 case BinaryOperator::And:
1832 case BinaryOperator::Xor:
1833 case BinaryOperator::Or:
1834 ResultTy = CheckBitwiseOperands(lhs, rhs, TokLoc);
1835 break;
1836 case BinaryOperator::LAnd:
1837 case BinaryOperator::LOr:
1838 ResultTy = CheckLogicalOperands(lhs, rhs, TokLoc);
1839 break;
1840 case BinaryOperator::MulAssign:
1841 case BinaryOperator::DivAssign:
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001842 CompTy = CheckMultiplyDivideOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001843 if (!CompTy.isNull())
1844 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1845 break;
1846 case BinaryOperator::RemAssign:
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001847 CompTy = CheckRemainderOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001848 if (!CompTy.isNull())
1849 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1850 break;
1851 case BinaryOperator::AddAssign:
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001852 CompTy = CheckAdditionOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001853 if (!CompTy.isNull())
1854 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1855 break;
1856 case BinaryOperator::SubAssign:
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001857 CompTy = CheckSubtractionOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001858 if (!CompTy.isNull())
1859 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1860 break;
1861 case BinaryOperator::ShlAssign:
1862 case BinaryOperator::ShrAssign:
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001863 CompTy = CheckShiftOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001864 if (!CompTy.isNull())
1865 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1866 break;
1867 case BinaryOperator::AndAssign:
1868 case BinaryOperator::XorAssign:
1869 case BinaryOperator::OrAssign:
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001870 CompTy = CheckBitwiseOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001871 if (!CompTy.isNull())
1872 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1873 break;
1874 case BinaryOperator::Comma:
1875 ResultTy = CheckCommaOperands(lhs, rhs, TokLoc);
1876 break;
1877 }
1878 if (ResultTy.isNull())
1879 return true;
1880 if (CompTy.isNull())
Chris Lattner17d1b2a2007-08-28 18:36:55 +00001881 return new BinaryOperator(lhs, rhs, Opc, ResultTy, TokLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001882 else
Chris Lattner17d1b2a2007-08-28 18:36:55 +00001883 return new CompoundAssignOperator(lhs, rhs, Opc, ResultTy, CompTy, TokLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001884}
1885
1886// Unary Operators. 'Tok' is the token for the operator.
Steve Narofff69936d2007-09-16 03:34:24 +00001887Action::ExprResult Sema::ActOnUnaryOp(SourceLocation OpLoc, tok::TokenKind Op,
Reid Spencer5f016e22007-07-11 17:01:13 +00001888 ExprTy *input) {
1889 Expr *Input = (Expr*)input;
1890 UnaryOperator::Opcode Opc = ConvertTokenKindToUnaryOpcode(Op);
1891 QualType resultType;
1892 switch (Opc) {
1893 default:
1894 assert(0 && "Unimplemented unary expr!");
1895 case UnaryOperator::PreInc:
1896 case UnaryOperator::PreDec:
1897 resultType = CheckIncrementDecrementOperand(Input, OpLoc);
1898 break;
1899 case UnaryOperator::AddrOf:
1900 resultType = CheckAddressOfOperand(Input, OpLoc);
1901 break;
1902 case UnaryOperator::Deref:
Steve Naroff1ca9b112007-12-18 04:06:57 +00001903 DefaultFunctionArrayConversion(Input);
Reid Spencer5f016e22007-07-11 17:01:13 +00001904 resultType = CheckIndirectionOperand(Input, OpLoc);
1905 break;
1906 case UnaryOperator::Plus:
1907 case UnaryOperator::Minus:
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001908 UsualUnaryConversions(Input);
1909 resultType = Input->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001910 if (!resultType->isArithmeticType()) // C99 6.5.3.3p1
1911 return Diag(OpLoc, diag::err_typecheck_unary_expr,
1912 resultType.getAsString());
1913 break;
1914 case UnaryOperator::Not: // bitwise complement
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001915 UsualUnaryConversions(Input);
1916 resultType = Input->getType();
Steve Naroff084f9ed2007-08-24 17:20:07 +00001917 // C99 6.5.3.3p1. We allow complex as a GCC extension.
1918 if (!resultType->isIntegerType()) {
1919 if (resultType->isComplexType())
1920 // C99 does not support '~' for complex conjugation.
1921 Diag(OpLoc, diag::ext_integer_complement_complex,
1922 resultType.getAsString());
1923 else
1924 return Diag(OpLoc, diag::err_typecheck_unary_expr,
1925 resultType.getAsString());
1926 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001927 break;
1928 case UnaryOperator::LNot: // logical negation
1929 // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5).
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001930 DefaultFunctionArrayConversion(Input);
1931 resultType = Input->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001932 if (!resultType->isScalarType()) // C99 6.5.3.3p1
1933 return Diag(OpLoc, diag::err_typecheck_unary_expr,
1934 resultType.getAsString());
1935 // LNot always has type int. C99 6.5.3.3p5.
1936 resultType = Context.IntTy;
1937 break;
1938 case UnaryOperator::SizeOf:
1939 resultType = CheckSizeOfAlignOfOperand(Input->getType(), OpLoc, true);
1940 break;
1941 case UnaryOperator::AlignOf:
1942 resultType = CheckSizeOfAlignOfOperand(Input->getType(), OpLoc, false);
1943 break;
Chris Lattnerdbb36972007-08-24 21:16:53 +00001944 case UnaryOperator::Real:
Chris Lattnerdbb36972007-08-24 21:16:53 +00001945 case UnaryOperator::Imag:
Chris Lattner5d794252007-08-24 21:41:10 +00001946 resultType = CheckRealImagOperand(Input, OpLoc);
Chris Lattnerdbb36972007-08-24 21:16:53 +00001947 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00001948 case UnaryOperator::Extension:
Reid Spencer5f016e22007-07-11 17:01:13 +00001949 resultType = Input->getType();
1950 break;
1951 }
1952 if (resultType.isNull())
1953 return true;
1954 return new UnaryOperator(Input, Opc, resultType, OpLoc);
1955}
1956
Steve Naroff1b273c42007-09-16 14:56:35 +00001957/// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo".
1958Sema::ExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +00001959 SourceLocation LabLoc,
1960 IdentifierInfo *LabelII) {
1961 // Look up the record for this label identifier.
1962 LabelStmt *&LabelDecl = LabelMap[LabelII];
1963
1964 // If we haven't seen this label yet, create a forward reference.
1965 if (LabelDecl == 0)
1966 LabelDecl = new LabelStmt(LabLoc, LabelII, 0);
1967
1968 // Create the AST node. The address of a label always has type 'void*'.
Chris Lattner6481a572007-08-03 17:31:20 +00001969 return new AddrLabelExpr(OpLoc, LabLoc, LabelDecl,
1970 Context.getPointerType(Context.VoidTy));
Reid Spencer5f016e22007-07-11 17:01:13 +00001971}
1972
Steve Naroff1b273c42007-09-16 14:56:35 +00001973Sema::ExprResult Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtTy *substmt,
Chris Lattnerab18c4c2007-07-24 16:58:17 +00001974 SourceLocation RPLoc) { // "({..})"
1975 Stmt *SubStmt = static_cast<Stmt*>(substmt);
1976 assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!");
1977 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt);
1978
1979 // FIXME: there are a variety of strange constraints to enforce here, for
1980 // example, it is not possible to goto into a stmt expression apparently.
1981 // More semantic analysis is needed.
1982
1983 // FIXME: the last statement in the compount stmt has its value used. We
1984 // should not warn about it being unused.
1985
1986 // If there are sub stmts in the compound stmt, take the type of the last one
1987 // as the type of the stmtexpr.
1988 QualType Ty = Context.VoidTy;
1989
1990 if (!Compound->body_empty())
1991 if (Expr *LastExpr = dyn_cast<Expr>(Compound->body_back()))
1992 Ty = LastExpr->getType();
1993
1994 return new StmtExpr(Compound, Ty, LPLoc, RPLoc);
1995}
Steve Naroffd34e9152007-08-01 22:05:33 +00001996
Steve Naroff1b273c42007-09-16 14:56:35 +00001997Sema::ExprResult Sema::ActOnBuiltinOffsetOf(SourceLocation BuiltinLoc,
Chris Lattner73d0d4f2007-08-30 17:45:32 +00001998 SourceLocation TypeLoc,
1999 TypeTy *argty,
2000 OffsetOfComponent *CompPtr,
2001 unsigned NumComponents,
2002 SourceLocation RPLoc) {
2003 QualType ArgTy = QualType::getFromOpaquePtr(argty);
2004 assert(!ArgTy.isNull() && "Missing type argument!");
2005
2006 // We must have at least one component that refers to the type, and the first
2007 // one is known to be a field designator. Verify that the ArgTy represents
2008 // a struct/union/class.
2009 if (!ArgTy->isRecordType())
2010 return Diag(TypeLoc, diag::err_offsetof_record_type,ArgTy.getAsString());
2011
2012 // Otherwise, create a compound literal expression as the base, and
2013 // iteratively process the offsetof designators.
Steve Naroffe9b12192008-01-14 18:19:28 +00002014 Expr *Res = new CompoundLiteralExpr(SourceLocation(), ArgTy, 0, false);
Chris Lattner73d0d4f2007-08-30 17:45:32 +00002015
Chris Lattner9e2b75c2007-08-31 21:49:13 +00002016 // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a
2017 // GCC extension, diagnose them.
2018 if (NumComponents != 1)
2019 Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator,
2020 SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd));
2021
Chris Lattner73d0d4f2007-08-30 17:45:32 +00002022 for (unsigned i = 0; i != NumComponents; ++i) {
2023 const OffsetOfComponent &OC = CompPtr[i];
2024 if (OC.isBrackets) {
2025 // Offset of an array sub-field. TODO: Should we allow vector elements?
2026 const ArrayType *AT = Res->getType()->getAsArrayType();
2027 if (!AT) {
2028 delete Res;
2029 return Diag(OC.LocEnd, diag::err_offsetof_array_type,
2030 Res->getType().getAsString());
2031 }
2032
Chris Lattner704fe352007-08-30 17:59:59 +00002033 // FIXME: C++: Verify that operator[] isn't overloaded.
2034
Chris Lattner73d0d4f2007-08-30 17:45:32 +00002035 // C99 6.5.2.1p1
2036 Expr *Idx = static_cast<Expr*>(OC.U.E);
2037 if (!Idx->getType()->isIntegerType())
2038 return Diag(Idx->getLocStart(), diag::err_typecheck_subscript,
2039 Idx->getSourceRange());
2040
2041 Res = new ArraySubscriptExpr(Res, Idx, AT->getElementType(), OC.LocEnd);
2042 continue;
2043 }
2044
2045 const RecordType *RC = Res->getType()->getAsRecordType();
2046 if (!RC) {
2047 delete Res;
2048 return Diag(OC.LocEnd, diag::err_offsetof_record_type,
2049 Res->getType().getAsString());
2050 }
2051
2052 // Get the decl corresponding to this.
2053 RecordDecl *RD = RC->getDecl();
2054 FieldDecl *MemberDecl = RD->getMember(OC.U.IdentInfo);
2055 if (!MemberDecl)
2056 return Diag(BuiltinLoc, diag::err_typecheck_no_member,
2057 OC.U.IdentInfo->getName(),
2058 SourceRange(OC.LocStart, OC.LocEnd));
Chris Lattner704fe352007-08-30 17:59:59 +00002059
2060 // FIXME: C++: Verify that MemberDecl isn't a static field.
2061 // FIXME: Verify that MemberDecl isn't a bitfield.
Eli Friedman51019072008-02-06 22:48:16 +00002062 // MemberDecl->getType() doesn't get the right qualifiers, but it doesn't
2063 // matter here.
2064 Res = new MemberExpr(Res, false, MemberDecl, OC.LocEnd, MemberDecl->getType());
Chris Lattner73d0d4f2007-08-30 17:45:32 +00002065 }
2066
2067 return new UnaryOperator(Res, UnaryOperator::OffsetOf, Context.getSizeType(),
2068 BuiltinLoc);
2069}
2070
2071
Steve Naroff1b273c42007-09-16 14:56:35 +00002072Sema::ExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc,
Steve Naroffd34e9152007-08-01 22:05:33 +00002073 TypeTy *arg1, TypeTy *arg2,
2074 SourceLocation RPLoc) {
2075 QualType argT1 = QualType::getFromOpaquePtr(arg1);
2076 QualType argT2 = QualType::getFromOpaquePtr(arg2);
2077
2078 assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)");
2079
Chris Lattner73d0d4f2007-08-30 17:45:32 +00002080 return new TypesCompatibleExpr(Context.IntTy, BuiltinLoc, argT1, argT2,RPLoc);
Steve Naroffd34e9152007-08-01 22:05:33 +00002081}
2082
Steve Naroff1b273c42007-09-16 14:56:35 +00002083Sema::ExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, ExprTy *cond,
Steve Naroffd04fdd52007-08-03 21:21:27 +00002084 ExprTy *expr1, ExprTy *expr2,
2085 SourceLocation RPLoc) {
2086 Expr *CondExpr = static_cast<Expr*>(cond);
2087 Expr *LHSExpr = static_cast<Expr*>(expr1);
2088 Expr *RHSExpr = static_cast<Expr*>(expr2);
2089
2090 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)");
2091
2092 // The conditional expression is required to be a constant expression.
2093 llvm::APSInt condEval(32);
2094 SourceLocation ExpLoc;
2095 if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc))
2096 return Diag(ExpLoc, diag::err_typecheck_choose_expr_requires_constant,
2097 CondExpr->getSourceRange());
2098
2099 // If the condition is > zero, then the AST type is the same as the LSHExpr.
2100 QualType resType = condEval.getZExtValue() ? LHSExpr->getType() :
2101 RHSExpr->getType();
2102 return new ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, resType, RPLoc);
2103}
2104
Nate Begeman67295d02008-01-30 20:50:20 +00002105/// ExprsMatchFnType - return true if the Exprs in array Args have
Nate Begemane2ce1d92008-01-17 17:46:27 +00002106/// QualTypes that match the QualTypes of the arguments of the FnType.
Nate Begeman67295d02008-01-30 20:50:20 +00002107/// The number of arguments has already been validated to match the number of
2108/// arguments in FnType.
2109static bool ExprsMatchFnType(Expr **Args, const FunctionTypeProto *FnType) {
Nate Begemane2ce1d92008-01-17 17:46:27 +00002110 unsigned NumParams = FnType->getNumArgs();
2111 for (unsigned i = 0; i != NumParams; ++i)
Nate Begeman67295d02008-01-30 20:50:20 +00002112 if (Args[i]->getType().getCanonicalType() !=
2113 FnType->getArgType(i).getCanonicalType())
Nate Begemane2ce1d92008-01-17 17:46:27 +00002114 return false;
2115 return true;
2116}
2117
2118Sema::ExprResult Sema::ActOnOverloadExpr(ExprTy **args, unsigned NumArgs,
2119 SourceLocation *CommaLocs,
2120 SourceLocation BuiltinLoc,
2121 SourceLocation RParenLoc) {
Nate Begeman796ef3d2008-01-31 05:38:29 +00002122 // __builtin_overload requires at least 2 arguments
2123 if (NumArgs < 2)
2124 return Diag(RParenLoc, diag::err_typecheck_call_too_few_args,
2125 SourceRange(BuiltinLoc, RParenLoc));
Nate Begemane2ce1d92008-01-17 17:46:27 +00002126
Nate Begemane2ce1d92008-01-17 17:46:27 +00002127 // The first argument is required to be a constant expression. It tells us
2128 // the number of arguments to pass to each of the functions to be overloaded.
Nate Begeman796ef3d2008-01-31 05:38:29 +00002129 Expr **Args = reinterpret_cast<Expr**>(args);
Nate Begemane2ce1d92008-01-17 17:46:27 +00002130 Expr *NParamsExpr = Args[0];
2131 llvm::APSInt constEval(32);
2132 SourceLocation ExpLoc;
2133 if (!NParamsExpr->isIntegerConstantExpr(constEval, Context, &ExpLoc))
2134 return Diag(ExpLoc, diag::err_overload_expr_requires_non_zero_constant,
2135 NParamsExpr->getSourceRange());
2136
2137 // Verify that the number of parameters is > 0
2138 unsigned NumParams = constEval.getZExtValue();
2139 if (NumParams == 0)
2140 return Diag(ExpLoc, diag::err_overload_expr_requires_non_zero_constant,
2141 NParamsExpr->getSourceRange());
2142 // Verify that we have at least 1 + NumParams arguments to the builtin.
2143 if ((NumParams + 1) > NumArgs)
2144 return Diag(RParenLoc, diag::err_typecheck_call_too_few_args,
2145 SourceRange(BuiltinLoc, RParenLoc));
2146
2147 // Figure out the return type, by matching the args to one of the functions
Nate Begeman67295d02008-01-30 20:50:20 +00002148 // listed after the parameters.
Nate Begeman796ef3d2008-01-31 05:38:29 +00002149 OverloadExpr *OE = 0;
Nate Begemane2ce1d92008-01-17 17:46:27 +00002150 for (unsigned i = NumParams + 1; i < NumArgs; ++i) {
2151 // UsualUnaryConversions will convert the function DeclRefExpr into a
2152 // pointer to function.
2153 Expr *Fn = UsualUnaryConversions(Args[i]);
2154 FunctionTypeProto *FnType = 0;
Nate Begeman67295d02008-01-30 20:50:20 +00002155 if (const PointerType *PT = Fn->getType()->getAsPointerType()) {
2156 QualType PointeeType = PT->getPointeeType().getCanonicalType();
2157 FnType = dyn_cast<FunctionTypeProto>(PointeeType);
2158 }
Nate Begemane2ce1d92008-01-17 17:46:27 +00002159
2160 // The Expr type must be FunctionTypeProto, since FunctionTypeProto has no
2161 // parameters, and the number of parameters must match the value passed to
2162 // the builtin.
2163 if (!FnType || (FnType->getNumArgs() != NumParams))
Nate Begeman67295d02008-01-30 20:50:20 +00002164 return Diag(Fn->getExprLoc(), diag::err_overload_incorrect_fntype,
2165 Fn->getSourceRange());
Nate Begemane2ce1d92008-01-17 17:46:27 +00002166
2167 // Scan the parameter list for the FunctionType, checking the QualType of
Nate Begeman67295d02008-01-30 20:50:20 +00002168 // each parameter against the QualTypes of the arguments to the builtin.
Nate Begemane2ce1d92008-01-17 17:46:27 +00002169 // If they match, return a new OverloadExpr.
Nate Begeman796ef3d2008-01-31 05:38:29 +00002170 if (ExprsMatchFnType(Args+1, FnType)) {
2171 if (OE)
2172 return Diag(Fn->getExprLoc(), diag::err_overload_multiple_match,
2173 OE->getFn()->getSourceRange());
2174 // Remember our match, and continue processing the remaining arguments
2175 // to catch any errors.
2176 OE = new OverloadExpr(Args, NumArgs, i, FnType->getResultType(),
2177 BuiltinLoc, RParenLoc);
2178 }
Nate Begemane2ce1d92008-01-17 17:46:27 +00002179 }
Nate Begeman796ef3d2008-01-31 05:38:29 +00002180 // Return the newly created OverloadExpr node, if we succeded in matching
2181 // exactly one of the candidate functions.
2182 if (OE)
2183 return OE;
Nate Begemane2ce1d92008-01-17 17:46:27 +00002184
2185 // If we didn't find a matching function Expr in the __builtin_overload list
2186 // the return an error.
2187 std::string typeNames;
Nate Begeman67295d02008-01-30 20:50:20 +00002188 for (unsigned i = 0; i != NumParams; ++i) {
2189 if (i != 0) typeNames += ", ";
2190 typeNames += Args[i+1]->getType().getAsString();
2191 }
Nate Begemane2ce1d92008-01-17 17:46:27 +00002192
2193 return Diag(BuiltinLoc, diag::err_overload_no_match, typeNames,
2194 SourceRange(BuiltinLoc, RParenLoc));
2195}
2196
Anders Carlsson7c50aca2007-10-15 20:28:48 +00002197Sema::ExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc,
2198 ExprTy *expr, TypeTy *type,
Chris Lattner5cf216b2008-01-04 18:04:52 +00002199 SourceLocation RPLoc) {
Anders Carlsson7c50aca2007-10-15 20:28:48 +00002200 Expr *E = static_cast<Expr*>(expr);
2201 QualType T = QualType::getFromOpaquePtr(type);
2202
2203 InitBuiltinVaListType();
2204
Chris Lattner5cf216b2008-01-04 18:04:52 +00002205 if (CheckAssignmentConstraints(Context.getBuiltinVaListType(), E->getType())
2206 != Compatible)
Anders Carlsson7c50aca2007-10-15 20:28:48 +00002207 return Diag(E->getLocStart(),
2208 diag::err_first_argument_to_va_arg_not_of_type_va_list,
2209 E->getType().getAsString(),
2210 E->getSourceRange());
2211
2212 // FIXME: Warn if a non-POD type is passed in.
2213
2214 return new VAArgExpr(BuiltinLoc, E, T, RPLoc);
2215}
2216
Chris Lattner5cf216b2008-01-04 18:04:52 +00002217bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy,
2218 SourceLocation Loc,
2219 QualType DstType, QualType SrcType,
2220 Expr *SrcExpr, const char *Flavor) {
2221 // Decode the result (notice that AST's are still created for extensions).
2222 bool isInvalid = false;
2223 unsigned DiagKind;
2224 switch (ConvTy) {
2225 default: assert(0 && "Unknown conversion type");
2226 case Compatible: return false;
Chris Lattnerb7b61152008-01-04 18:22:42 +00002227 case PointerToInt:
Chris Lattner5cf216b2008-01-04 18:04:52 +00002228 DiagKind = diag::ext_typecheck_convert_pointer_int;
2229 break;
Chris Lattnerb7b61152008-01-04 18:22:42 +00002230 case IntToPointer:
2231 DiagKind = diag::ext_typecheck_convert_int_pointer;
2232 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00002233 case IncompatiblePointer:
2234 DiagKind = diag::ext_typecheck_convert_incompatible_pointer;
2235 break;
2236 case FunctionVoidPointer:
2237 DiagKind = diag::ext_typecheck_convert_pointer_void_func;
2238 break;
2239 case CompatiblePointerDiscardsQualifiers:
2240 DiagKind = diag::ext_typecheck_convert_discards_qualifiers;
2241 break;
2242 case Incompatible:
2243 DiagKind = diag::err_typecheck_convert_incompatible;
2244 isInvalid = true;
2245 break;
2246 }
2247
2248 Diag(Loc, DiagKind, DstType.getAsString(), SrcType.getAsString(), Flavor,
2249 SrcExpr->getSourceRange());
2250 return isInvalid;
2251}
2252