blob: c88985f75a8d40661bf729dd56bb7861fd18a599 [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
134 Length = CurMethodDecl->getSelector().getName().size();
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));
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000535 return new MemberExpr(BaseExpr, OpKind==tok::arrow, MemberDecl, MemberLoc);
536 } else if (BaseType->isOCUVectorType() && OpKind == tok::period) {
Steve Naroff608e0ee2007-08-03 22:40:33 +0000537 // Component access limited to variables (reject vec4.rg.g).
538 if (!isa<DeclRefExpr>(BaseExpr))
539 return Diag(OpLoc, diag::err_ocuvector_component_access,
540 SourceRange(MemberLoc));
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000541 QualType ret = CheckOCUVectorComponent(BaseType, OpLoc, Member, MemberLoc);
542 if (ret.isNull())
543 return true;
Chris Lattner6481a572007-08-03 17:31:20 +0000544 return new OCUVectorElementExpr(ret, BaseExpr, Member, MemberLoc);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000545 } else if (BaseType->isObjCInterfaceType()) {
546 ObjCInterfaceDecl *IFace;
547 if (isa<ObjCInterfaceType>(BaseType.getCanonicalType()))
548 IFace = dyn_cast<ObjCInterfaceType>(BaseType)->getDecl();
Fariborz Jahanian232220c2007-11-12 22:29:28 +0000549 else
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000550 IFace = dyn_cast<ObjCQualifiedInterfaceType>(BaseType)->getDecl();
551 ObjCInterfaceDecl *clsDeclared;
552 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(&Member, clsDeclared))
Fariborz Jahanian232220c2007-11-12 22:29:28 +0000553 return new ObjCIvarRefExpr(IV, IV->getType(), MemberLoc, BaseExpr,
554 OpKind==tok::arrow);
555 }
556 return Diag(OpLoc, diag::err_typecheck_member_reference_structUnion,
557 SourceRange(MemberLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000558}
559
Steve Narofff69936d2007-09-16 03:34:24 +0000560/// ActOnCallExpr - Handle a call to Fn with the specified array of arguments.
Reid Spencer5f016e22007-07-11 17:01:13 +0000561/// This provides the location of the left/right parens and a list of comma
562/// locations.
563Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +0000564ActOnCallExpr(ExprTy *fn, SourceLocation LParenLoc,
Chris Lattner925e60d2007-12-28 05:29:59 +0000565 ExprTy **args, unsigned NumArgs,
Reid Spencer5f016e22007-07-11 17:01:13 +0000566 SourceLocation *CommaLocs, SourceLocation RParenLoc) {
Chris Lattner74c469f2007-07-21 03:03:59 +0000567 Expr *Fn = static_cast<Expr *>(fn);
568 Expr **Args = reinterpret_cast<Expr**>(args);
569 assert(Fn && "no function call expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000570
Chris Lattner925e60d2007-12-28 05:29:59 +0000571 // Make the call expr early, before semantic checks. This guarantees cleanup
572 // of arguments and function on error.
573 llvm::OwningPtr<CallExpr> TheCall(new CallExpr(Fn, Args, NumArgs,
574 Context.BoolTy, RParenLoc));
575
576 // Promote the function operand.
577 TheCall->setCallee(UsualUnaryConversions(Fn));
578
Reid Spencer5f016e22007-07-11 17:01:13 +0000579 // C99 6.5.2.2p1 - "The expression that denotes the called function shall have
580 // type pointer to function".
Chris Lattner925e60d2007-12-28 05:29:59 +0000581 const PointerType *PT = Fn->getType()->getAsPointerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000582 if (PT == 0)
Chris Lattner74c469f2007-07-21 03:03:59 +0000583 return Diag(Fn->getLocStart(), diag::err_typecheck_call_not_function,
584 SourceRange(Fn->getLocStart(), RParenLoc));
Chris Lattner925e60d2007-12-28 05:29:59 +0000585 const FunctionType *FuncT = PT->getPointeeType()->getAsFunctionType();
586 if (FuncT == 0)
Chris Lattner74c469f2007-07-21 03:03:59 +0000587 return Diag(Fn->getLocStart(), diag::err_typecheck_call_not_function,
588 SourceRange(Fn->getLocStart(), RParenLoc));
Chris Lattner925e60d2007-12-28 05:29:59 +0000589
590 // We know the result type of the call, set it.
591 TheCall->setType(FuncT->getResultType());
Reid Spencer5f016e22007-07-11 17:01:13 +0000592
Chris Lattner925e60d2007-12-28 05:29:59 +0000593 if (const FunctionTypeProto *Proto = dyn_cast<FunctionTypeProto>(FuncT)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000594 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by
595 // assignment, to the types of the corresponding parameter, ...
Chris Lattner925e60d2007-12-28 05:29:59 +0000596 unsigned NumArgsInProto = Proto->getNumArgs();
597 unsigned NumArgsToCheck = NumArgs;
Reid Spencer5f016e22007-07-11 17:01:13 +0000598
Chris Lattner925e60d2007-12-28 05:29:59 +0000599 // If too few arguments are available, don't make the call.
600 if (NumArgs < NumArgsInProto)
601 return Diag(RParenLoc, diag::err_typecheck_call_too_few_args,
602 Fn->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000603
Chris Lattner925e60d2007-12-28 05:29:59 +0000604 // If too many are passed and not variadic, error on the extras and drop
605 // them.
606 if (NumArgs > NumArgsInProto) {
607 if (!Proto->isVariadic()) {
Chris Lattnerd472b312007-07-21 03:09:58 +0000608 Diag(Args[NumArgsInProto]->getLocStart(),
Chris Lattner74c469f2007-07-21 03:03:59 +0000609 diag::err_typecheck_call_too_many_args, Fn->getSourceRange(),
Chris Lattnerd472b312007-07-21 03:09:58 +0000610 SourceRange(Args[NumArgsInProto]->getLocStart(),
Chris Lattner925e60d2007-12-28 05:29:59 +0000611 Args[NumArgs-1]->getLocEnd()));
612 // This deletes the extra arguments.
613 TheCall->setNumArgs(NumArgsInProto);
Reid Spencer5f016e22007-07-11 17:01:13 +0000614 }
615 NumArgsToCheck = NumArgsInProto;
616 }
Chris Lattner925e60d2007-12-28 05:29:59 +0000617
Reid Spencer5f016e22007-07-11 17:01:13 +0000618 // Continue to check argument types (even if we have too few/many args).
Chris Lattner925e60d2007-12-28 05:29:59 +0000619 for (unsigned i = 0; i != NumArgsToCheck; i++) {
620 Expr *Arg = Args[i];
Chris Lattner5cf216b2008-01-04 18:04:52 +0000621 QualType ProtoArgType = Proto->getArgType(i);
622 QualType ArgType = Arg->getType();
Steve Naroff700204c2007-07-24 21:46:40 +0000623
Chris Lattner925e60d2007-12-28 05:29:59 +0000624 // Compute implicit casts from the operand to the formal argument type.
Chris Lattner5cf216b2008-01-04 18:04:52 +0000625 AssignConvertType ConvTy =
626 CheckSingleAssignmentConstraints(ProtoArgType, Arg);
Chris Lattner925e60d2007-12-28 05:29:59 +0000627 TheCall->setArg(i, Arg);
628
Chris Lattner5cf216b2008-01-04 18:04:52 +0000629 if (DiagnoseAssignmentResult(ConvTy, Arg->getLocStart(), ProtoArgType,
630 ArgType, Arg, "passing"))
631 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000632 }
Chris Lattner925e60d2007-12-28 05:29:59 +0000633
634 // If this is a variadic call, handle args passed through "...".
635 if (Proto->isVariadic()) {
Steve Naroffb291ab62007-08-28 23:30:39 +0000636 // Promote the arguments (C99 6.5.2.2p7).
Chris Lattner925e60d2007-12-28 05:29:59 +0000637 for (unsigned i = NumArgsInProto; i != NumArgs; i++) {
638 Expr *Arg = Args[i];
639 DefaultArgumentPromotion(Arg);
640 TheCall->setArg(i, Arg);
Steve Naroffb291ab62007-08-28 23:30:39 +0000641 }
Steve Naroffb291ab62007-08-28 23:30:39 +0000642 }
Chris Lattner925e60d2007-12-28 05:29:59 +0000643 } else {
644 assert(isa<FunctionTypeNoProto>(FuncT) && "Unknown FunctionType!");
645
Steve Naroffb291ab62007-08-28 23:30:39 +0000646 // Promote the arguments (C99 6.5.2.2p6).
Chris Lattner925e60d2007-12-28 05:29:59 +0000647 for (unsigned i = 0; i != NumArgs; i++) {
648 Expr *Arg = Args[i];
649 DefaultArgumentPromotion(Arg);
650 TheCall->setArg(i, Arg);
Steve Naroffb291ab62007-08-28 23:30:39 +0000651 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000652 }
Chris Lattner925e60d2007-12-28 05:29:59 +0000653
Chris Lattner59907c42007-08-10 20:18:51 +0000654 // Do special checking on direct calls to functions.
655 if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(Fn))
656 if (DeclRefExpr *DRExpr = dyn_cast<DeclRefExpr>(IcExpr->getSubExpr()))
657 if (FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRExpr->getDecl()))
Chris Lattner925e60d2007-12-28 05:29:59 +0000658 if (CheckFunctionCall(FDecl, TheCall.get()))
Anders Carlsson71993dd2007-08-17 05:31:46 +0000659 return true;
Chris Lattner59907c42007-08-10 20:18:51 +0000660
Chris Lattner925e60d2007-12-28 05:29:59 +0000661 return TheCall.take();
Reid Spencer5f016e22007-07-11 17:01:13 +0000662}
663
664Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +0000665ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty,
Steve Naroffaff1edd2007-07-19 21:32:11 +0000666 SourceLocation RParenLoc, ExprTy *InitExpr) {
Steve Narofff69936d2007-09-16 03:34:24 +0000667 assert((Ty != 0) && "ActOnCompoundLiteral(): missing type");
Steve Naroff4aa88f82007-07-19 01:06:55 +0000668 QualType literalType = QualType::getFromOpaquePtr(Ty);
Steve Naroffaff1edd2007-07-19 21:32:11 +0000669 // FIXME: put back this assert when initializers are worked out.
Steve Narofff69936d2007-09-16 03:34:24 +0000670 //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression");
Steve Naroffaff1edd2007-07-19 21:32:11 +0000671 Expr *literalExpr = static_cast<Expr*>(InitExpr);
Anders Carlssond35c8322007-12-05 07:24:19 +0000672
Steve Naroff2fdc3742007-12-10 22:44:33 +0000673 // FIXME: add more semantic analysis (C99 6.5.2.5).
Steve Naroffd0091aa2008-01-10 22:15:12 +0000674 if (CheckInitializerTypes(literalExpr, literalType))
Steve Naroff58d18212008-01-09 20:58:06 +0000675 return true;
Steve Naroffe9b12192008-01-14 18:19:28 +0000676
677 bool isFileScope = !CurFunctionDecl && !CurMethodDecl;
678 if (isFileScope) { // 6.5.2.5p3
Steve Naroffd0091aa2008-01-10 22:15:12 +0000679 if (CheckForConstantInitializer(literalExpr, literalType))
680 return true;
681 }
Steve Naroffe9b12192008-01-14 18:19:28 +0000682 return new CompoundLiteralExpr(LParenLoc, literalType, literalExpr, isFileScope);
Steve Naroff4aa88f82007-07-19 01:06:55 +0000683}
684
685Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +0000686ActOnInitList(SourceLocation LBraceLoc, ExprTy **initlist, unsigned NumInit,
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000687 SourceLocation RBraceLoc) {
Steve Narofff0090632007-09-02 02:04:30 +0000688 Expr **InitList = reinterpret_cast<Expr**>(initlist);
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000689
Steve Naroff08d92e42007-09-15 18:49:24 +0000690 // Semantic analysis for initializers is done by ActOnDeclarator() and
Steve Naroffd35005e2007-09-03 01:24:23 +0000691 // CheckInitializer() - it requires knowledge of the object being intialized.
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000692
Steve Naroff38374b02007-09-02 20:30:18 +0000693 InitListExpr *e = new InitListExpr(LBraceLoc, InitList, NumInit, RBraceLoc);
694 e->setType(Context.VoidTy); // FIXME: just a place holder for now.
695 return e;
Steve Naroff4aa88f82007-07-19 01:06:55 +0000696}
697
Chris Lattnerfe23e212007-12-20 00:44:32 +0000698bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty) {
Anders Carlssona64db8f2007-11-27 05:51:55 +0000699 assert(VectorTy->isVectorType() && "Not a vector type!");
700
701 if (Ty->isVectorType() || Ty->isIntegerType()) {
702 if (Context.getTypeSize(VectorTy, SourceLocation()) !=
703 Context.getTypeSize(Ty, SourceLocation()))
704 return Diag(R.getBegin(),
705 Ty->isVectorType() ?
706 diag::err_invalid_conversion_between_vectors :
707 diag::err_invalid_conversion_between_vector_and_integer,
708 VectorTy.getAsString().c_str(),
709 Ty.getAsString().c_str(), R);
710 } else
711 return Diag(R.getBegin(),
712 diag::err_invalid_conversion_between_vector_and_scalar,
713 VectorTy.getAsString().c_str(),
714 Ty.getAsString().c_str(), R);
715
716 return false;
717}
718
Steve Naroff4aa88f82007-07-19 01:06:55 +0000719Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +0000720ActOnCastExpr(SourceLocation LParenLoc, TypeTy *Ty,
Reid Spencer5f016e22007-07-11 17:01:13 +0000721 SourceLocation RParenLoc, ExprTy *Op) {
Steve Narofff69936d2007-09-16 03:34:24 +0000722 assert((Ty != 0) && (Op != 0) && "ActOnCastExpr(): missing type or expr");
Steve Naroff16beff82007-07-16 23:25:18 +0000723
724 Expr *castExpr = static_cast<Expr*>(Op);
725 QualType castType = QualType::getFromOpaquePtr(Ty);
726
Steve Naroff711602b2007-08-31 00:32:44 +0000727 UsualUnaryConversions(castExpr);
728
Chris Lattner75af4802007-07-18 16:00:06 +0000729 // C99 6.5.4p2: the cast type needs to be void or scalar and the expression
730 // type needs to be scalar.
Chris Lattner3da2db42007-10-29 04:26:44 +0000731 if (!castType->isVoidType()) { // Cast to void allows any expr type.
732 if (!castType->isScalarType())
733 return Diag(LParenLoc, diag::err_typecheck_cond_expect_scalar,
734 castType.getAsString(), SourceRange(LParenLoc, RParenLoc));
Anders Carlssona64db8f2007-11-27 05:51:55 +0000735 if (!castExpr->getType()->isScalarType())
Chris Lattner3da2db42007-10-29 04:26:44 +0000736 return Diag(castExpr->getLocStart(),
737 diag::err_typecheck_expect_scalar_operand,
738 castExpr->getType().getAsString(),castExpr->getSourceRange());
Anders Carlssona64db8f2007-11-27 05:51:55 +0000739
740 if (castExpr->getType()->isVectorType()) {
741 if (CheckVectorCast(SourceRange(LParenLoc, RParenLoc),
742 castExpr->getType(), castType))
743 return true;
744 } else if (castType->isVectorType()) {
745 if (CheckVectorCast(SourceRange(LParenLoc, RParenLoc),
746 castType, castExpr->getType()))
747 return true;
Chris Lattner3da2db42007-10-29 04:26:44 +0000748 }
Steve Naroff16beff82007-07-16 23:25:18 +0000749 }
750 return new CastExpr(castType, castExpr, LParenLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000751}
752
Chris Lattnera21ddb32007-11-26 01:40:58 +0000753/// Note that lex is not null here, even if this is the gnu "x ?: y" extension.
754/// In that case, lex = cond.
Reid Spencer5f016e22007-07-11 17:01:13 +0000755inline QualType Sema::CheckConditionalOperands( // C99 6.5.15
Steve Naroff49b45262007-07-13 16:58:59 +0000756 Expr *&cond, Expr *&lex, Expr *&rex, SourceLocation questionLoc) {
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000757 UsualUnaryConversions(cond);
758 UsualUnaryConversions(lex);
759 UsualUnaryConversions(rex);
760 QualType condT = cond->getType();
761 QualType lexT = lex->getType();
762 QualType rexT = rex->getType();
763
Reid Spencer5f016e22007-07-11 17:01:13 +0000764 // first, check the condition.
Steve Naroff49b45262007-07-13 16:58:59 +0000765 if (!condT->isScalarType()) { // C99 6.5.15p2
766 Diag(cond->getLocStart(), diag::err_typecheck_cond_expect_scalar,
767 condT.getAsString());
Reid Spencer5f016e22007-07-11 17:01:13 +0000768 return QualType();
769 }
Chris Lattner70d67a92008-01-06 22:42:25 +0000770
771 // Now check the two expressions.
772
773 // If both operands have arithmetic type, do the usual arithmetic conversions
774 // to find a common type: C99 6.5.15p3,5.
775 if (lexT->isArithmeticType() && rexT->isArithmeticType()) {
Steve Naroffa4332e22007-07-17 00:58:39 +0000776 UsualArithmeticConversions(lex, rex);
777 return lex->getType();
778 }
Chris Lattner70d67a92008-01-06 22:42:25 +0000779
780 // If both operands are the same structure or union type, the result is that
781 // type.
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000782 if (const RecordType *LHSRT = lexT->getAsRecordType()) { // C99 6.5.15p3
Chris Lattner70d67a92008-01-06 22:42:25 +0000783 if (const RecordType *RHSRT = rexT->getAsRecordType())
Chris Lattnera21ddb32007-11-26 01:40:58 +0000784 if (LHSRT->getDecl() == RHSRT->getDecl())
Chris Lattner70d67a92008-01-06 22:42:25 +0000785 // "If both the operands have structure or union type, the result has
786 // that type." This implies that CV qualifiers are dropped.
787 return lexT.getUnqualifiedType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000788 }
Chris Lattner70d67a92008-01-06 22:42:25 +0000789
790 // C99 6.5.15p5: "If both operands have void type, the result has void type."
791 if (lexT->isVoidType() && rexT->isVoidType())
792 return lexT.getUnqualifiedType();
Steve Naroffb6d54e52008-01-08 01:11:38 +0000793
794 // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has
795 // the type of the other operand."
796 if (lexT->isPointerType() && rex->isNullPointerConstant(Context)) {
Chris Lattner1e0a3902008-01-16 19:17:22 +0000797 ImpCastExprToType(rex, lexT); // promote the null to a pointer.
Steve Naroffb6d54e52008-01-08 01:11:38 +0000798 return lexT;
799 }
800 if (rexT->isPointerType() && lex->isNullPointerConstant(Context)) {
Chris Lattner1e0a3902008-01-16 19:17:22 +0000801 ImpCastExprToType(lex, rexT); // promote the null to a pointer.
Steve Naroffb6d54e52008-01-08 01:11:38 +0000802 return rexT;
803 }
Chris Lattnerbd57d362008-01-06 22:50:31 +0000804 // Handle the case where both operands are pointers before we handle null
805 // pointer constants in case both operands are null pointer constants.
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000806 if (const PointerType *LHSPT = lexT->getAsPointerType()) { // C99 6.5.15p3,6
807 if (const PointerType *RHSPT = rexT->getAsPointerType()) {
808 // get the "pointed to" types
809 QualType lhptee = LHSPT->getPointeeType();
810 QualType rhptee = RHSPT->getPointeeType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000811
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000812 // ignore qualifiers on void (C99 6.5.15p3, clause 6)
813 if (lhptee->isVoidType() &&
814 (rhptee->isObjectType() || rhptee->isIncompleteType()))
815 return lexT;
816 if (rhptee->isVoidType() &&
817 (lhptee->isObjectType() || lhptee->isIncompleteType()))
818 return rexT;
Reid Spencer5f016e22007-07-11 17:01:13 +0000819
Steve Naroffec0550f2007-10-15 20:41:53 +0000820 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
821 rhptee.getUnqualifiedType())) {
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000822 Diag(questionLoc, diag::ext_typecheck_cond_incompatible_pointers,
823 lexT.getAsString(), rexT.getAsString(),
824 lex->getSourceRange(), rex->getSourceRange());
825 return lexT; // FIXME: this is an _ext - is this return o.k?
826 }
827 // The pointer types are compatible.
Chris Lattner73d0d4f2007-08-30 17:45:32 +0000828 // C99 6.5.15p6: If both operands are pointers to compatible types *or* to
829 // differently qualified versions of compatible types, the result type is
830 // a pointer to an appropriately qualified version of the *composite*
831 // type.
Chris Lattnerbd57d362008-01-06 22:50:31 +0000832 // FIXME: Need to return the composite type.
833 return lexT;
Reid Spencer5f016e22007-07-11 17:01:13 +0000834 }
835 }
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000836
Chris Lattner70d67a92008-01-06 22:42:25 +0000837 // Otherwise, the operands are not compatible.
Reid Spencer5f016e22007-07-11 17:01:13 +0000838 Diag(questionLoc, diag::err_typecheck_cond_incompatible_operands,
Steve Naroff49b45262007-07-13 16:58:59 +0000839 lexT.getAsString(), rexT.getAsString(),
840 lex->getSourceRange(), rex->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000841 return QualType();
842}
843
Steve Narofff69936d2007-09-16 03:34:24 +0000844/// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null
Reid Spencer5f016e22007-07-11 17:01:13 +0000845/// in the case of a the GNU conditional expr extension.
Steve Narofff69936d2007-09-16 03:34:24 +0000846Action::ExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000847 SourceLocation ColonLoc,
848 ExprTy *Cond, ExprTy *LHS,
849 ExprTy *RHS) {
Chris Lattner26824902007-07-16 21:39:03 +0000850 Expr *CondExpr = (Expr *) Cond;
851 Expr *LHSExpr = (Expr *) LHS, *RHSExpr = (Expr *) RHS;
Chris Lattnera21ddb32007-11-26 01:40:58 +0000852
853 // If this is the gnu "x ?: y" extension, analyze the types as though the LHS
854 // was the condition.
855 bool isLHSNull = LHSExpr == 0;
856 if (isLHSNull)
857 LHSExpr = CondExpr;
858
Chris Lattner26824902007-07-16 21:39:03 +0000859 QualType result = CheckConditionalOperands(CondExpr, LHSExpr,
860 RHSExpr, QuestionLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000861 if (result.isNull())
862 return true;
Chris Lattnera21ddb32007-11-26 01:40:58 +0000863 return new ConditionalOperator(CondExpr, isLHSNull ? 0 : LHSExpr,
864 RHSExpr, result);
Reid Spencer5f016e22007-07-11 17:01:13 +0000865}
866
Steve Naroffb291ab62007-08-28 23:30:39 +0000867/// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that
868/// do not have a prototype. Integer promotions are performed on each
869/// argument, and arguments that have type float are promoted to double.
Chris Lattner925e60d2007-12-28 05:29:59 +0000870void Sema::DefaultArgumentPromotion(Expr *&Expr) {
871 QualType Ty = Expr->getType();
872 assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type");
Steve Naroffb291ab62007-08-28 23:30:39 +0000873
Chris Lattner925e60d2007-12-28 05:29:59 +0000874 if (Ty->isPromotableIntegerType()) // C99 6.3.1.1p2
Chris Lattner1e0a3902008-01-16 19:17:22 +0000875 ImpCastExprToType(Expr, Context.IntTy);
Chris Lattner925e60d2007-12-28 05:29:59 +0000876 if (Ty == Context.FloatTy)
Chris Lattner1e0a3902008-01-16 19:17:22 +0000877 ImpCastExprToType(Expr, Context.DoubleTy);
Steve Naroffb291ab62007-08-28 23:30:39 +0000878}
879
Steve Narofffa2eaab2007-07-15 02:02:06 +0000880/// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4).
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000881void Sema::DefaultFunctionArrayConversion(Expr *&e) {
Steve Narofffa2eaab2007-07-15 02:02:06 +0000882 QualType t = e->getType();
Steve Naroff90045e82007-07-13 23:32:42 +0000883 assert(!t.isNull() && "DefaultFunctionArrayConversion - missing type");
Bill Wendling08ad47c2007-07-17 03:52:31 +0000884
Chris Lattnera1d9fde2007-07-31 16:56:34 +0000885 if (const ReferenceType *ref = t->getAsReferenceType()) {
Chris Lattner1e0a3902008-01-16 19:17:22 +0000886 ImpCastExprToType(e, ref->getReferenceeType()); // C++ [expr]
Bill Wendlingea5e79f2007-07-17 04:16:47 +0000887 t = e->getType();
888 }
Steve Narofffa2eaab2007-07-15 02:02:06 +0000889 if (t->isFunctionType())
Chris Lattner1e0a3902008-01-16 19:17:22 +0000890 ImpCastExprToType(e, Context.getPointerType(t));
Chris Lattnerc8629632007-07-31 19:29:30 +0000891 else if (const ArrayType *ary = t->getAsArrayType())
Chris Lattner1e0a3902008-01-16 19:17:22 +0000892 ImpCastExprToType(e, Context.getPointerType(ary->getElementType()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000893}
894
895/// UsualUnaryConversion - Performs various conversions that are common to most
896/// operators (C99 6.3). The conversions of array and function types are
897/// sometimes surpressed. For example, the array->pointer conversion doesn't
898/// apply if the array is an argument to the sizeof or address (&) operators.
899/// In these instances, this routine should *not* be called.
Chris Lattner925e60d2007-12-28 05:29:59 +0000900Expr *Sema::UsualUnaryConversions(Expr *&Expr) {
901 QualType Ty = Expr->getType();
902 assert(!Ty.isNull() && "UsualUnaryConversions - missing type");
Reid Spencer5f016e22007-07-11 17:01:13 +0000903
Chris Lattner925e60d2007-12-28 05:29:59 +0000904 if (const ReferenceType *Ref = Ty->getAsReferenceType()) {
Chris Lattner1e0a3902008-01-16 19:17:22 +0000905 ImpCastExprToType(Expr, Ref->getReferenceeType()); // C++ [expr]
Chris Lattner925e60d2007-12-28 05:29:59 +0000906 Ty = Expr->getType();
Bill Wendlingea5e79f2007-07-17 04:16:47 +0000907 }
Chris Lattner925e60d2007-12-28 05:29:59 +0000908 if (Ty->isPromotableIntegerType()) // C99 6.3.1.1p2
Chris Lattner1e0a3902008-01-16 19:17:22 +0000909 ImpCastExprToType(Expr, Context.IntTy);
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000910 else
Chris Lattner925e60d2007-12-28 05:29:59 +0000911 DefaultFunctionArrayConversion(Expr);
912
913 return Expr;
Reid Spencer5f016e22007-07-11 17:01:13 +0000914}
915
Chris Lattner73d0d4f2007-08-30 17:45:32 +0000916/// UsualArithmeticConversions - Performs various conversions that are common to
Reid Spencer5f016e22007-07-11 17:01:13 +0000917/// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this
918/// routine returns the first non-arithmetic type found. The client is
919/// responsible for emitting appropriate error diagnostics.
Steve Naroffdfb9bbb2008-01-15 22:21:49 +0000920/// FIXME: verify the conversion rules for "complex int" are consistent with GCC.
Steve Naroff9f5fa9b2007-08-24 19:07:16 +0000921QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr,
922 bool isCompAssign) {
Steve Naroff8702a0f2007-08-25 19:54:59 +0000923 if (!isCompAssign) {
924 UsualUnaryConversions(lhsExpr);
925 UsualUnaryConversions(rhsExpr);
926 }
Steve Naroff3187e202007-10-18 18:55:53 +0000927 // For conversion purposes, we ignore any qualifiers.
928 // For example, "const float" and "float" are equivalent.
Steve Narofff68a63f2007-11-10 19:45:54 +0000929 QualType lhs = lhsExpr->getType().getCanonicalType().getUnqualifiedType();
930 QualType rhs = rhsExpr->getType().getCanonicalType().getUnqualifiedType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000931
932 // If both types are identical, no conversion is needed.
Steve Naroff3187e202007-10-18 18:55:53 +0000933 if (lhs == rhs)
934 return lhs;
Reid Spencer5f016e22007-07-11 17:01:13 +0000935
936 // If either side is a non-arithmetic type (e.g. a pointer), we are done.
937 // The caller can deal with this (e.g. pointer + int).
Steve Naroffa4332e22007-07-17 00:58:39 +0000938 if (!lhs->isArithmeticType() || !rhs->isArithmeticType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +0000939 return lhs;
Reid Spencer5f016e22007-07-11 17:01:13 +0000940
941 // At this point, we have two different arithmetic types.
942
943 // Handle complex types first (C99 6.3.1.8p1).
944 if (lhs->isComplexType() || rhs->isComplexType()) {
Steve Naroff02f62a92008-01-15 19:36:10 +0000945 // if we have an integer operand, the result is the complex type.
Steve Naroffdfb9bbb2008-01-15 22:21:49 +0000946 if (rhs->isIntegerType() || rhs->isComplexIntegerType()) {
947 // convert the rhs to the lhs complex type.
Chris Lattner1e0a3902008-01-16 19:17:22 +0000948 if (!isCompAssign) ImpCastExprToType(rhsExpr, lhs);
Steve Naroff9f5fa9b2007-08-24 19:07:16 +0000949 return lhs;
Steve Naroff02f62a92008-01-15 19:36:10 +0000950 }
Steve Naroffdfb9bbb2008-01-15 22:21:49 +0000951 if (lhs->isIntegerType() || lhs->isComplexIntegerType()) {
952 // convert the lhs to the rhs complex type.
Chris Lattner1e0a3902008-01-16 19:17:22 +0000953 if (!isCompAssign) ImpCastExprToType(lhsExpr, rhs);
Steve Naroff9f5fa9b2007-08-24 19:07:16 +0000954 return rhs;
Steve Naroffa4332e22007-07-17 00:58:39 +0000955 }
Steve Narofff1448a02007-08-27 01:27:54 +0000956 // This handles complex/complex, complex/float, or float/complex.
957 // When both operands are complex, the shorter operand is converted to the
958 // type of the longer, and that is the type of the result. This corresponds
959 // to what is done when combining two real floating-point operands.
960 // The fun begins when size promotion occur across type domains.
961 // From H&S 6.3.4: When one operand is complex and the other is a real
962 // floating-point type, the less precise type is converted, within it's
963 // real or complex domain, to the precision of the other type. For example,
964 // when combining a "long double" with a "double _Complex", the
965 // "double _Complex" is promoted to "long double _Complex".
Steve Narofffb0d4962007-08-27 15:30:22 +0000966 int result = Context.compareFloatingType(lhs, rhs);
967
968 if (result > 0) { // The left side is bigger, convert rhs.
Steve Naroff55fe4552007-08-27 21:32:55 +0000969 rhs = Context.getFloatingTypeOfSizeWithinDomain(lhs, rhs);
970 if (!isCompAssign)
Chris Lattner1e0a3902008-01-16 19:17:22 +0000971 ImpCastExprToType(rhsExpr, rhs);
Steve Naroff55fe4552007-08-27 21:32:55 +0000972 } else if (result < 0) { // The right side is bigger, convert lhs.
973 lhs = Context.getFloatingTypeOfSizeWithinDomain(rhs, lhs);
974 if (!isCompAssign)
Chris Lattner1e0a3902008-01-16 19:17:22 +0000975 ImpCastExprToType(lhsExpr, lhs);
Steve Naroff55fe4552007-08-27 21:32:55 +0000976 }
977 // At this point, lhs and rhs have the same rank/size. Now, make sure the
978 // domains match. This is a requirement for our implementation, C99
979 // does not require this promotion.
980 if (lhs != rhs) { // Domains don't match, we have complex/float mix.
981 if (lhs->isRealFloatingType()) { // handle "double, _Complex double".
Steve Naroff29960362007-08-27 21:43:43 +0000982 if (!isCompAssign)
Chris Lattner1e0a3902008-01-16 19:17:22 +0000983 ImpCastExprToType(lhsExpr, rhs);
Steve Naroff29960362007-08-27 21:43:43 +0000984 return rhs;
Steve Naroff55fe4552007-08-27 21:32:55 +0000985 } else { // handle "_Complex double, double".
Steve Naroff29960362007-08-27 21:43:43 +0000986 if (!isCompAssign)
Chris Lattner1e0a3902008-01-16 19:17:22 +0000987 ImpCastExprToType(rhsExpr, lhs);
Steve Naroff29960362007-08-27 21:43:43 +0000988 return lhs;
Steve Naroff55fe4552007-08-27 21:32:55 +0000989 }
Steve Naroffa4332e22007-07-17 00:58:39 +0000990 }
Steve Naroff29960362007-08-27 21:43:43 +0000991 return lhs; // The domain/size match exactly.
Reid Spencer5f016e22007-07-11 17:01:13 +0000992 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000993 // Now handle "real" floating types (i.e. float, double, long double).
994 if (lhs->isRealFloatingType() || rhs->isRealFloatingType()) {
995 // if we have an integer operand, the result is the real floating type.
Steve Naroffdfb9bbb2008-01-15 22:21:49 +0000996 if (rhs->isIntegerType() || rhs->isComplexIntegerType()) {
997 // convert rhs to the lhs floating point type.
Chris Lattner1e0a3902008-01-16 19:17:22 +0000998 if (!isCompAssign) ImpCastExprToType(rhsExpr, lhs);
Steve Naroff9f5fa9b2007-08-24 19:07:16 +0000999 return lhs;
Steve Naroffa4332e22007-07-17 00:58:39 +00001000 }
Steve Naroffdfb9bbb2008-01-15 22:21:49 +00001001 if (lhs->isIntegerType() || lhs->isComplexIntegerType()) {
1002 // convert lhs to the rhs floating point type.
Chris Lattner1e0a3902008-01-16 19:17:22 +00001003 if (!isCompAssign) ImpCastExprToType(lhsExpr, rhs);
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001004 return rhs;
Steve Naroffa4332e22007-07-17 00:58:39 +00001005 }
Steve Narofffa2eaab2007-07-15 02:02:06 +00001006 // We have two real floating types, float/complex combos were handled above.
1007 // Convert the smaller operand to the bigger result.
Steve Narofffb0d4962007-08-27 15:30:22 +00001008 int result = Context.compareFloatingType(lhs, rhs);
1009
1010 if (result > 0) { // convert the rhs
Chris Lattner1e0a3902008-01-16 19:17:22 +00001011 if (!isCompAssign) ImpCastExprToType(rhsExpr, lhs);
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001012 return lhs;
Steve Naroffa4332e22007-07-17 00:58:39 +00001013 }
Steve Narofffb0d4962007-08-27 15:30:22 +00001014 if (result < 0) { // convert the lhs
Chris Lattner1e0a3902008-01-16 19:17:22 +00001015 if (!isCompAssign) ImpCastExprToType(lhsExpr, rhs); // convert the lhs
Steve Narofffb0d4962007-08-27 15:30:22 +00001016 return rhs;
1017 }
1018 assert(0 && "Sema::UsualArithmeticConversions(): illegal float comparison");
Reid Spencer5f016e22007-07-11 17:01:13 +00001019 }
Steve Naroff02f62a92008-01-15 19:36:10 +00001020 if (lhs->isComplexIntegerType() || rhs->isComplexIntegerType()) {
1021 // Handle GCC complex int extension.
Steve Naroff02f62a92008-01-15 19:36:10 +00001022 const ComplexType *lhsComplexInt = lhs->getAsComplexIntegerType();
1023 const ComplexType *rhsComplexInt = rhs->getAsComplexIntegerType();
1024
1025 if (lhsComplexInt && rhsComplexInt) {
1026 if (Context.maxIntegerType(lhsComplexInt->getElementType(),
Chris Lattner1e0a3902008-01-16 19:17:22 +00001027 rhsComplexInt->getElementType()) == lhs) {
1028 // convert the rhs
1029 if (!isCompAssign) ImpCastExprToType(rhsExpr, lhs);
1030 return lhs;
Steve Naroff02f62a92008-01-15 19:36:10 +00001031 }
Chris Lattner1e0a3902008-01-16 19:17:22 +00001032 if (!isCompAssign)
1033 ImpCastExprToType(lhsExpr, rhs); // convert the lhs
Steve Naroff02f62a92008-01-15 19:36:10 +00001034 return rhs;
1035 } else if (lhsComplexInt && rhs->isIntegerType()) {
1036 // convert the rhs to the lhs complex type.
Chris Lattner1e0a3902008-01-16 19:17:22 +00001037 if (!isCompAssign) ImpCastExprToType(rhsExpr, lhs);
Steve Naroff02f62a92008-01-15 19:36:10 +00001038 return lhs;
1039 } else if (rhsComplexInt && lhs->isIntegerType()) {
1040 // convert the lhs to the rhs complex type.
Chris Lattner1e0a3902008-01-16 19:17:22 +00001041 if (!isCompAssign) ImpCastExprToType(lhsExpr, rhs);
Steve Naroff02f62a92008-01-15 19:36:10 +00001042 return rhs;
1043 }
1044 }
Steve Narofffa2eaab2007-07-15 02:02:06 +00001045 // Finally, we have two differing integer types.
Steve Naroffa4332e22007-07-17 00:58:39 +00001046 if (Context.maxIntegerType(lhs, rhs) == lhs) { // convert the rhs
Chris Lattner1e0a3902008-01-16 19:17:22 +00001047 if (!isCompAssign) ImpCastExprToType(rhsExpr, lhs);
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001048 return lhs;
Steve Naroffa4332e22007-07-17 00:58:39 +00001049 }
Chris Lattner1e0a3902008-01-16 19:17:22 +00001050 if (!isCompAssign) ImpCastExprToType(lhsExpr, rhs); // convert the lhs
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001051 return rhs;
Reid Spencer5f016e22007-07-11 17:01:13 +00001052}
1053
1054// CheckPointerTypesForAssignment - This is a very tricky routine (despite
1055// being closely modeled after the C99 spec:-). The odd characteristic of this
1056// routine is it effectively iqnores the qualifiers on the top level pointee.
1057// This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3].
1058// FIXME: add a couple examples in this comment.
Chris Lattner5cf216b2008-01-04 18:04:52 +00001059Sema::AssignConvertType
Reid Spencer5f016e22007-07-11 17:01:13 +00001060Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) {
1061 QualType lhptee, rhptee;
1062
1063 // get the "pointed to" type (ignoring qualifiers at the top level)
Chris Lattner2dcb6bb2007-07-31 21:27:01 +00001064 lhptee = lhsType->getAsPointerType()->getPointeeType();
1065 rhptee = rhsType->getAsPointerType()->getPointeeType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001066
1067 // make sure we operate on the canonical type
1068 lhptee = lhptee.getCanonicalType();
1069 rhptee = rhptee.getCanonicalType();
1070
Chris Lattner5cf216b2008-01-04 18:04:52 +00001071 AssignConvertType ConvTy = Compatible;
Reid Spencer5f016e22007-07-11 17:01:13 +00001072
1073 // C99 6.5.16.1p1: This following citation is common to constraints
1074 // 3 & 4 (below). ...and the type *pointed to* by the left has all the
1075 // qualifiers of the type *pointed to* by the right;
1076 if ((lhptee.getQualifiers() & rhptee.getQualifiers()) !=
1077 rhptee.getQualifiers())
Chris Lattner5cf216b2008-01-04 18:04:52 +00001078 ConvTy = CompatiblePointerDiscardsQualifiers;
Reid Spencer5f016e22007-07-11 17:01:13 +00001079
1080 // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or
1081 // incomplete type and the other is a pointer to a qualified or unqualified
1082 // version of void...
Chris Lattnerbfe639e2008-01-03 22:56:36 +00001083 if (lhptee->isVoidType()) {
1084 if (rhptee->isObjectType() || rhptee->isIncompleteType())
Chris Lattner5cf216b2008-01-04 18:04:52 +00001085 return ConvTy;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00001086
1087 // As an extension, we allow cast to/from void* to function pointer.
1088 if (rhptee->isFunctionType())
1089 return FunctionVoidPointer;
1090 }
1091
1092 if (rhptee->isVoidType()) {
1093 if (lhptee->isObjectType() || lhptee->isIncompleteType())
Chris Lattner5cf216b2008-01-04 18:04:52 +00001094 return ConvTy;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00001095
1096 // As an extension, we allow cast to/from void* to function pointer.
1097 if (lhptee->isFunctionType())
1098 return FunctionVoidPointer;
1099 }
1100
Reid Spencer5f016e22007-07-11 17:01:13 +00001101 // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or
1102 // unqualified versions of compatible types, ...
Chris Lattnerbfe639e2008-01-03 22:56:36 +00001103 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
1104 rhptee.getUnqualifiedType()))
1105 return IncompatiblePointer; // this "trumps" PointerAssignDiscardsQualifiers
Chris Lattner5cf216b2008-01-04 18:04:52 +00001106 return ConvTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00001107}
1108
1109/// CheckAssignmentConstraints (C99 6.5.16) - This routine currently
1110/// has code to accommodate several GCC extensions when type checking
1111/// pointers. Here are some objectionable examples that GCC considers warnings:
1112///
1113/// int a, *pint;
1114/// short *pshort;
1115/// struct foo *pfoo;
1116///
1117/// pint = pshort; // warning: assignment from incompatible pointer type
1118/// a = pint; // warning: assignment makes integer from pointer without a cast
1119/// pint = a; // warning: assignment makes pointer from integer without a cast
1120/// pint = pfoo; // warning: assignment from incompatible pointer type
1121///
1122/// As a result, the code for dealing with pointers is more complex than the
1123/// C99 spec dictates.
1124/// Note: the warning above turn into errors when -pedantic-errors is enabled.
1125///
Chris Lattner5cf216b2008-01-04 18:04:52 +00001126Sema::AssignConvertType
Reid Spencer5f016e22007-07-11 17:01:13 +00001127Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) {
Chris Lattnerfc144e22008-01-04 23:18:45 +00001128 // Get canonical types. We're not formatting these types, just comparing
1129 // them.
1130 lhsType = lhsType.getCanonicalType();
1131 rhsType = rhsType.getCanonicalType();
1132
1133 if (lhsType.getUnqualifiedType() == rhsType.getUnqualifiedType())
Chris Lattnerd2656dd2008-01-07 17:51:46 +00001134 return Compatible; // Common case: fast path an exact match.
Steve Naroff700204c2007-07-24 21:46:40 +00001135
Anders Carlsson793680e2007-10-12 23:56:29 +00001136 if (lhsType->isReferenceType() || rhsType->isReferenceType()) {
Steve Naroffec0550f2007-10-15 20:41:53 +00001137 if (Context.referenceTypesAreCompatible(lhsType, rhsType))
Anders Carlsson793680e2007-10-12 23:56:29 +00001138 return Compatible;
Chris Lattnerfc144e22008-01-04 23:18:45 +00001139 return Incompatible;
Fariborz Jahanian411f3732007-12-19 17:45:58 +00001140 }
Chris Lattnerfc144e22008-01-04 23:18:45 +00001141
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001142 if (lhsType->isObjCQualifiedIdType()
1143 || rhsType->isObjCQualifiedIdType()) {
1144 if (Context.ObjCQualifiedIdTypesAreCompatible(lhsType, rhsType))
Fariborz Jahanian411f3732007-12-19 17:45:58 +00001145 return Compatible;
Chris Lattnerfc144e22008-01-04 23:18:45 +00001146 return Incompatible;
Fariborz Jahanian411f3732007-12-19 17:45:58 +00001147 }
Chris Lattnere8b3e962008-01-04 23:32:24 +00001148
1149 if (lhsType->isVectorType() || rhsType->isVectorType()) {
1150 // For OCUVector, allow vector splats; float -> <n x float>
1151 if (const OCUVectorType *LV = lhsType->getAsOCUVectorType()) {
1152 if (LV->getElementType().getTypePtr() == rhsType.getTypePtr())
1153 return Compatible;
1154 }
1155
1156 // If LHS and RHS are both vectors of integer or both vectors of floating
1157 // point types, and the total vector length is the same, allow the
1158 // conversion. This is a bitcast; no bits are changed but the result type
1159 // is different.
1160 if (getLangOptions().LaxVectorConversions &&
1161 lhsType->isVectorType() && rhsType->isVectorType()) {
1162 if ((lhsType->isIntegerType() && rhsType->isIntegerType()) ||
1163 (lhsType->isRealFloatingType() && rhsType->isRealFloatingType())) {
1164 if (Context.getTypeSize(lhsType, SourceLocation()) ==
1165 Context.getTypeSize(rhsType, SourceLocation()))
Nate Begeman4119d1a2007-12-30 02:59:45 +00001166 return Compatible;
1167 }
Chris Lattnere8b3e962008-01-04 23:32:24 +00001168 }
1169 return Incompatible;
1170 }
1171
1172 if (lhsType->isArithmeticType() && rhsType->isArithmeticType())
Reid Spencer5f016e22007-07-11 17:01:13 +00001173 return Compatible;
Chris Lattnerfc144e22008-01-04 23:18:45 +00001174
1175 if (lhsType->isPointerType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001176 if (rhsType->isIntegerType())
Chris Lattnerb7b61152008-01-04 18:22:42 +00001177 return IntToPointer;
Reid Spencer5f016e22007-07-11 17:01:13 +00001178
1179 if (rhsType->isPointerType())
1180 return CheckPointerTypesForAssignment(lhsType, rhsType);
Chris Lattnerfc144e22008-01-04 23:18:45 +00001181 return Incompatible;
1182 }
1183
1184 if (rhsType->isPointerType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001185 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer.
1186 if ((lhsType->isIntegerType()) && (lhsType != Context.BoolTy))
Chris Lattnerb7b61152008-01-04 18:22:42 +00001187 return PointerToInt;
Reid Spencer5f016e22007-07-11 17:01:13 +00001188
1189 if (lhsType->isPointerType())
1190 return CheckPointerTypesForAssignment(lhsType, rhsType);
Chris Lattnerfc144e22008-01-04 23:18:45 +00001191 return Incompatible;
Chris Lattnerfc144e22008-01-04 23:18:45 +00001192 }
1193
1194 if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) {
Steve Naroffec0550f2007-10-15 20:41:53 +00001195 if (Context.tagTypesAreCompatible(lhsType, rhsType))
Reid Spencer5f016e22007-07-11 17:01:13 +00001196 return Compatible;
Reid Spencer5f016e22007-07-11 17:01:13 +00001197 }
1198 return Incompatible;
1199}
1200
Chris Lattner5cf216b2008-01-04 18:04:52 +00001201Sema::AssignConvertType
Steve Naroff90045e82007-07-13 23:32:42 +00001202Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) {
Steve Naroff529a4ad2007-11-27 17:58:44 +00001203 // C99 6.5.16.1p1: the left operand is a pointer and the right is
1204 // a null pointer constant.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001205 if ((lhsType->isPointerType() || lhsType->isObjCQualifiedIdType())
Fariborz Jahanian9d3185e2008-01-03 18:46:52 +00001206 && rExpr->isNullPointerConstant(Context)) {
Chris Lattner1e0a3902008-01-16 19:17:22 +00001207 ImpCastExprToType(rExpr, lhsType);
Steve Naroff529a4ad2007-11-27 17:58:44 +00001208 return Compatible;
1209 }
Chris Lattner943140e2007-10-16 02:55:40 +00001210 // This check seems unnatural, however it is necessary to ensure the proper
Steve Naroff90045e82007-07-13 23:32:42 +00001211 // conversion of functions/arrays. If the conversion were done for all
Steve Naroff08d92e42007-09-15 18:49:24 +00001212 // DeclExpr's (created by ActOnIdentifierExpr), it would mess up the unary
Steve Naroff90045e82007-07-13 23:32:42 +00001213 // expressions that surpress this implicit conversion (&, sizeof).
Chris Lattner943140e2007-10-16 02:55:40 +00001214 //
1215 // Suppress this for references: C99 8.5.3p5. FIXME: revisit when references
1216 // are better understood.
1217 if (!lhsType->isReferenceType())
1218 DefaultFunctionArrayConversion(rExpr);
Steve Narofff1120de2007-08-24 22:33:52 +00001219
Chris Lattner5cf216b2008-01-04 18:04:52 +00001220 Sema::AssignConvertType result =
1221 CheckAssignmentConstraints(lhsType, rExpr->getType());
Steve Narofff1120de2007-08-24 22:33:52 +00001222
1223 // C99 6.5.16.1p2: The value of the right operand is converted to the
1224 // type of the assignment expression.
1225 if (rExpr->getType() != lhsType)
Chris Lattner1e0a3902008-01-16 19:17:22 +00001226 ImpCastExprToType(rExpr, lhsType);
Steve Narofff1120de2007-08-24 22:33:52 +00001227 return result;
Steve Naroff90045e82007-07-13 23:32:42 +00001228}
1229
Chris Lattner5cf216b2008-01-04 18:04:52 +00001230Sema::AssignConvertType
Steve Naroff90045e82007-07-13 23:32:42 +00001231Sema::CheckCompoundAssignmentConstraints(QualType lhsType, QualType rhsType) {
1232 return CheckAssignmentConstraints(lhsType, rhsType);
1233}
1234
Chris Lattnerca5eede2007-12-12 05:47:28 +00001235QualType Sema::InvalidOperands(SourceLocation loc, Expr *&lex, Expr *&rex) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001236 Diag(loc, diag::err_typecheck_invalid_operands,
1237 lex->getType().getAsString(), rex->getType().getAsString(),
1238 lex->getSourceRange(), rex->getSourceRange());
Chris Lattnerca5eede2007-12-12 05:47:28 +00001239 return QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001240}
1241
Steve Naroff49b45262007-07-13 16:58:59 +00001242inline QualType Sema::CheckVectorOperands(SourceLocation loc, Expr *&lex,
1243 Expr *&rex) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001244 QualType lhsType = lex->getType(), rhsType = rex->getType();
1245
1246 // make sure the vector types are identical.
1247 if (lhsType == rhsType)
1248 return lhsType;
Nate Begeman4119d1a2007-12-30 02:59:45 +00001249
1250 // if the lhs is an ocu vector and the rhs is a scalar of the same type,
1251 // promote the rhs to the vector type.
1252 if (const OCUVectorType *V = lhsType->getAsOCUVectorType()) {
1253 if (V->getElementType().getCanonicalType().getTypePtr()
1254 == rhsType.getCanonicalType().getTypePtr()) {
Chris Lattner1e0a3902008-01-16 19:17:22 +00001255 ImpCastExprToType(rex, lhsType);
Nate Begeman4119d1a2007-12-30 02:59:45 +00001256 return lhsType;
1257 }
1258 }
1259
1260 // if the rhs is an ocu vector and the lhs is a scalar of the same type,
1261 // promote the lhs to the vector type.
1262 if (const OCUVectorType *V = rhsType->getAsOCUVectorType()) {
1263 if (V->getElementType().getCanonicalType().getTypePtr()
1264 == lhsType.getCanonicalType().getTypePtr()) {
Chris Lattner1e0a3902008-01-16 19:17:22 +00001265 ImpCastExprToType(lex, rhsType);
Nate Begeman4119d1a2007-12-30 02:59:45 +00001266 return rhsType;
1267 }
1268 }
1269
Reid Spencer5f016e22007-07-11 17:01:13 +00001270 // You cannot convert between vector values of different size.
1271 Diag(loc, diag::err_typecheck_vector_not_convertable,
1272 lex->getType().getAsString(), rex->getType().getAsString(),
1273 lex->getSourceRange(), rex->getSourceRange());
1274 return QualType();
1275}
1276
1277inline QualType Sema::CheckMultiplyDivideOperands(
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001278 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00001279{
Steve Naroff90045e82007-07-13 23:32:42 +00001280 QualType lhsType = lex->getType(), rhsType = rex->getType();
1281
1282 if (lhsType->isVectorType() || rhsType->isVectorType())
Reid Spencer5f016e22007-07-11 17:01:13 +00001283 return CheckVectorOperands(loc, lex, rex);
Steve Naroff49b45262007-07-13 16:58:59 +00001284
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001285 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Reid Spencer5f016e22007-07-11 17:01:13 +00001286
Steve Naroffa4332e22007-07-17 00:58:39 +00001287 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001288 return compType;
Chris Lattnerca5eede2007-12-12 05:47:28 +00001289 return InvalidOperands(loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001290}
1291
1292inline QualType Sema::CheckRemainderOperands(
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001293 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00001294{
Steve Naroff90045e82007-07-13 23:32:42 +00001295 QualType lhsType = lex->getType(), rhsType = rex->getType();
1296
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001297 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Reid Spencer5f016e22007-07-11 17:01:13 +00001298
Steve Naroffa4332e22007-07-17 00:58:39 +00001299 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001300 return compType;
Chris Lattnerca5eede2007-12-12 05:47:28 +00001301 return InvalidOperands(loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001302}
1303
1304inline QualType Sema::CheckAdditionOperands( // C99 6.5.6
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001305 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00001306{
Steve Naroff3e5e5562007-07-16 22:23:01 +00001307 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Steve Naroff49b45262007-07-13 16:58:59 +00001308 return CheckVectorOperands(loc, lex, rex);
1309
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001310 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Steve Naroff3e5e5562007-07-16 22:23:01 +00001311
Reid Spencer5f016e22007-07-11 17:01:13 +00001312 // handle the common case first (both operands are arithmetic).
Steve Naroffa4332e22007-07-17 00:58:39 +00001313 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001314 return compType;
Reid Spencer5f016e22007-07-11 17:01:13 +00001315
Steve Naroffa4332e22007-07-17 00:58:39 +00001316 if (lex->getType()->isPointerType() && rex->getType()->isIntegerType())
1317 return lex->getType();
1318 if (lex->getType()->isIntegerType() && rex->getType()->isPointerType())
1319 return rex->getType();
Chris Lattnerca5eede2007-12-12 05:47:28 +00001320 return InvalidOperands(loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001321}
1322
1323inline QualType Sema::CheckSubtractionOperands( // C99 6.5.6
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001324 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00001325{
Steve Naroff3e5e5562007-07-16 22:23:01 +00001326 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Reid Spencer5f016e22007-07-11 17:01:13 +00001327 return CheckVectorOperands(loc, lex, rex);
Steve Naroff90045e82007-07-13 23:32:42 +00001328
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001329 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Reid Spencer5f016e22007-07-11 17:01:13 +00001330
Chris Lattner6e4ab612007-12-09 21:53:25 +00001331 // Enforce type constraints: C99 6.5.6p3.
1332
1333 // Handle the common case first (both operands are arithmetic).
Steve Naroffa4332e22007-07-17 00:58:39 +00001334 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001335 return compType;
Chris Lattner6e4ab612007-12-09 21:53:25 +00001336
1337 // Either ptr - int or ptr - ptr.
1338 if (const PointerType *LHSPTy = lex->getType()->getAsPointerType()) {
1339 // The LHS must be an object type, not incomplete, function, etc.
1340 if (!LHSPTy->getPointeeType()->isObjectType()) {
1341 // Handle the GNU void* extension.
1342 if (LHSPTy->getPointeeType()->isVoidType()) {
1343 Diag(loc, diag::ext_gnu_void_ptr,
1344 lex->getSourceRange(), rex->getSourceRange());
1345 } else {
1346 Diag(loc, diag::err_typecheck_sub_ptr_object,
1347 lex->getType().getAsString(), lex->getSourceRange());
1348 return QualType();
1349 }
1350 }
1351
1352 // The result type of a pointer-int computation is the pointer type.
1353 if (rex->getType()->isIntegerType())
1354 return lex->getType();
Steve Naroff3e5e5562007-07-16 22:23:01 +00001355
Chris Lattner6e4ab612007-12-09 21:53:25 +00001356 // Handle pointer-pointer subtractions.
1357 if (const PointerType *RHSPTy = rex->getType()->getAsPointerType()) {
1358 // RHS must be an object type, unless void (GNU).
1359 if (!RHSPTy->getPointeeType()->isObjectType()) {
1360 // Handle the GNU void* extension.
1361 if (RHSPTy->getPointeeType()->isVoidType()) {
1362 if (!LHSPTy->getPointeeType()->isVoidType())
1363 Diag(loc, diag::ext_gnu_void_ptr,
1364 lex->getSourceRange(), rex->getSourceRange());
1365 } else {
1366 Diag(loc, diag::err_typecheck_sub_ptr_object,
1367 rex->getType().getAsString(), rex->getSourceRange());
1368 return QualType();
1369 }
1370 }
1371
1372 // Pointee types must be compatible.
1373 if (!Context.typesAreCompatible(LHSPTy->getPointeeType(),
1374 RHSPTy->getPointeeType())) {
1375 Diag(loc, diag::err_typecheck_sub_ptr_compatible,
1376 lex->getType().getAsString(), rex->getType().getAsString(),
1377 lex->getSourceRange(), rex->getSourceRange());
1378 return QualType();
1379 }
1380
1381 return Context.getPointerDiffType();
1382 }
1383 }
1384
Chris Lattnerca5eede2007-12-12 05:47:28 +00001385 return InvalidOperands(loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001386}
1387
1388inline QualType Sema::CheckShiftOperands( // C99 6.5.7
Chris Lattnerca5eede2007-12-12 05:47:28 +00001389 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign) {
1390 // C99 6.5.7p2: Each of the operands shall have integer type.
1391 if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType())
1392 return InvalidOperands(loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001393
Chris Lattnerca5eede2007-12-12 05:47:28 +00001394 // Shifts don't perform usual arithmetic conversions, they just do integer
1395 // promotions on each operand. C99 6.5.7p3
Chris Lattner1dcf2c82007-12-13 07:28:16 +00001396 if (!isCompAssign)
1397 UsualUnaryConversions(lex);
Chris Lattnerca5eede2007-12-12 05:47:28 +00001398 UsualUnaryConversions(rex);
1399
1400 // "The type of the result is that of the promoted left operand."
1401 return lex->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001402}
1403
Chris Lattnera5937dd2007-08-26 01:18:55 +00001404inline QualType Sema::CheckCompareOperands( // C99 6.5.8
1405 Expr *&lex, Expr *&rex, SourceLocation loc, bool isRelational)
Reid Spencer5f016e22007-07-11 17:01:13 +00001406{
Chris Lattnera5937dd2007-08-26 01:18:55 +00001407 // C99 6.5.8p3 / C99 6.5.9p4
Steve Naroff30bf7712007-08-10 18:26:40 +00001408 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
1409 UsualArithmeticConversions(lex, rex);
1410 else {
1411 UsualUnaryConversions(lex);
1412 UsualUnaryConversions(rex);
1413 }
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001414 QualType lType = lex->getType();
1415 QualType rType = rex->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001416
Ted Kremenek72cb1ae2007-10-29 17:13:39 +00001417 // For non-floating point types, check for self-comparisons of the form
1418 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
1419 // often indicate logic errors in the program.
Ted Kremenek3ca0bf22007-10-29 16:58:49 +00001420 if (!lType->isFloatingType()) {
1421 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(IgnoreParen(lex)))
1422 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(IgnoreParen(rex)))
1423 if (DRL->getDecl() == DRR->getDecl())
1424 Diag(loc, diag::warn_selfcomparison);
1425 }
1426
Chris Lattnera5937dd2007-08-26 01:18:55 +00001427 if (isRelational) {
1428 if (lType->isRealType() && rType->isRealType())
1429 return Context.IntTy;
1430 } else {
Ted Kremenek72cb1ae2007-10-29 17:13:39 +00001431 // Check for comparisons of floating point operands using != and ==.
Ted Kremenek72cb1ae2007-10-29 17:13:39 +00001432 if (lType->isFloatingType()) {
1433 assert (rType->isFloatingType());
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001434 CheckFloatComparison(loc,lex,rex);
Ted Kremenek6a261552007-10-29 16:40:01 +00001435 }
1436
Chris Lattnera5937dd2007-08-26 01:18:55 +00001437 if (lType->isArithmeticType() && rType->isArithmeticType())
1438 return Context.IntTy;
1439 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001440
Chris Lattnerd28f8152007-08-26 01:10:14 +00001441 bool LHSIsNull = lex->isNullPointerConstant(Context);
1442 bool RHSIsNull = rex->isNullPointerConstant(Context);
1443
Chris Lattnera5937dd2007-08-26 01:18:55 +00001444 // All of the following pointer related warnings are GCC extensions, except
1445 // when handling null pointer constants. One day, we can consider making them
1446 // errors (when -pedantic-errors is enabled).
Steve Naroff77878cc2007-08-27 04:08:11 +00001447 if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2
Steve Naroff66296cb2007-11-13 14:57:38 +00001448
1449 if (!LHSIsNull && !RHSIsNull && // C99 6.5.9p2
1450 !lType->getAsPointerType()->getPointeeType()->isVoidType() &&
1451 !rType->getAsPointerType()->getPointeeType()->isVoidType() &&
Steve Naroffec0550f2007-10-15 20:41:53 +00001452 !Context.pointerTypesAreCompatible(lType.getUnqualifiedType(),
1453 rType.getUnqualifiedType())) {
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001454 Diag(loc, diag::ext_typecheck_comparison_of_distinct_pointers,
1455 lType.getAsString(), rType.getAsString(),
1456 lex->getSourceRange(), rex->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +00001457 }
Chris Lattner1e0a3902008-01-16 19:17:22 +00001458 ImpCastExprToType(rex, lType); // promote the pointer to pointer
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001459 return Context.IntTy;
1460 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001461 if ((lType->isObjCQualifiedIdType() || rType->isObjCQualifiedIdType())
1462 && Context.ObjCQualifiedIdTypesAreCompatible(lType, rType, true)) {
Chris Lattner1e0a3902008-01-16 19:17:22 +00001463 ImpCastExprToType(rex, lType);
Fariborz Jahanian7359f042007-12-20 01:06:58 +00001464 return Context.IntTy;
1465 }
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001466 if (lType->isPointerType() && rType->isIntegerType()) {
Chris Lattnerd28f8152007-08-26 01:10:14 +00001467 if (!RHSIsNull)
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001468 Diag(loc, diag::ext_typecheck_comparison_of_pointer_integer,
1469 lType.getAsString(), rType.getAsString(),
1470 lex->getSourceRange(), rex->getSourceRange());
Chris Lattner1e0a3902008-01-16 19:17:22 +00001471 ImpCastExprToType(rex, lType); // promote the integer to pointer
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001472 return Context.IntTy;
1473 }
1474 if (lType->isIntegerType() && rType->isPointerType()) {
Chris Lattnerd28f8152007-08-26 01:10:14 +00001475 if (!LHSIsNull)
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001476 Diag(loc, diag::ext_typecheck_comparison_of_pointer_integer,
1477 lType.getAsString(), rType.getAsString(),
1478 lex->getSourceRange(), rex->getSourceRange());
Chris Lattner1e0a3902008-01-16 19:17:22 +00001479 ImpCastExprToType(lex, rType); // promote the integer to pointer
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001480 return Context.IntTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00001481 }
Chris Lattnerca5eede2007-12-12 05:47:28 +00001482 return InvalidOperands(loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001483}
1484
Reid Spencer5f016e22007-07-11 17:01:13 +00001485inline QualType Sema::CheckBitwiseOperands(
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001486 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00001487{
Steve Naroff3e5e5562007-07-16 22:23:01 +00001488 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Reid Spencer5f016e22007-07-11 17:01:13 +00001489 return CheckVectorOperands(loc, lex, rex);
Steve Naroff90045e82007-07-13 23:32:42 +00001490
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001491 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Reid Spencer5f016e22007-07-11 17:01:13 +00001492
Steve Naroffa4332e22007-07-17 00:58:39 +00001493 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001494 return compType;
Chris Lattnerca5eede2007-12-12 05:47:28 +00001495 return InvalidOperands(loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001496}
1497
1498inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14]
Steve Naroff49b45262007-07-13 16:58:59 +00001499 Expr *&lex, Expr *&rex, SourceLocation loc)
Reid Spencer5f016e22007-07-11 17:01:13 +00001500{
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001501 UsualUnaryConversions(lex);
1502 UsualUnaryConversions(rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001503
Steve Naroffa4332e22007-07-17 00:58:39 +00001504 if (lex->getType()->isScalarType() || rex->getType()->isScalarType())
Reid Spencer5f016e22007-07-11 17:01:13 +00001505 return Context.IntTy;
Chris Lattnerca5eede2007-12-12 05:47:28 +00001506 return InvalidOperands(loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001507}
1508
1509inline QualType Sema::CheckAssignmentOperands( // C99 6.5.16.1
Steve Narofff1120de2007-08-24 22:33:52 +00001510 Expr *lex, Expr *&rex, SourceLocation loc, QualType compoundType)
Reid Spencer5f016e22007-07-11 17:01:13 +00001511{
1512 QualType lhsType = lex->getType();
1513 QualType rhsType = compoundType.isNull() ? rex->getType() : compoundType;
Reid Spencer5f016e22007-07-11 17:01:13 +00001514 Expr::isModifiableLvalueResult mlval = lex->isModifiableLvalue();
1515
1516 switch (mlval) { // C99 6.5.16p2
Chris Lattner5cf216b2008-01-04 18:04:52 +00001517 case Expr::MLV_Valid:
1518 break;
1519 case Expr::MLV_ConstQualified:
1520 Diag(loc, diag::err_typecheck_assign_const, lex->getSourceRange());
1521 return QualType();
1522 case Expr::MLV_ArrayType:
1523 Diag(loc, diag::err_typecheck_array_not_modifiable_lvalue,
1524 lhsType.getAsString(), lex->getSourceRange());
1525 return QualType();
1526 case Expr::MLV_NotObjectType:
1527 Diag(loc, diag::err_typecheck_non_object_not_modifiable_lvalue,
1528 lhsType.getAsString(), lex->getSourceRange());
1529 return QualType();
1530 case Expr::MLV_InvalidExpression:
1531 Diag(loc, diag::err_typecheck_expression_not_modifiable_lvalue,
1532 lex->getSourceRange());
1533 return QualType();
1534 case Expr::MLV_IncompleteType:
1535 case Expr::MLV_IncompleteVoidType:
1536 Diag(loc, diag::err_typecheck_incomplete_type_not_modifiable_lvalue,
1537 lhsType.getAsString(), lex->getSourceRange());
1538 return QualType();
1539 case Expr::MLV_DuplicateVectorComponents:
1540 Diag(loc, diag::err_typecheck_duplicate_vector_components_not_mlvalue,
1541 lex->getSourceRange());
1542 return QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001543 }
Steve Naroffd1861fd2007-07-31 12:34:36 +00001544
Chris Lattner5cf216b2008-01-04 18:04:52 +00001545 AssignConvertType ConvTy;
1546 if (compoundType.isNull())
1547 ConvTy = CheckSingleAssignmentConstraints(lhsType, rex);
1548 else
1549 ConvTy = CheckCompoundAssignmentConstraints(lhsType, rhsType);
1550
1551 if (DiagnoseAssignmentResult(ConvTy, loc, lhsType, rhsType,
1552 rex, "assigning"))
1553 return QualType();
1554
Reid Spencer5f016e22007-07-11 17:01:13 +00001555 // C99 6.5.16p3: The type of an assignment expression is the type of the
1556 // left operand unless the left operand has qualified type, in which case
1557 // it is the unqualified version of the type of the left operand.
1558 // C99 6.5.16.1p2: In simple assignment, the value of the right operand
1559 // is converted to the type of the assignment expression (above).
Chris Lattner73d0d4f2007-08-30 17:45:32 +00001560 // C++ 5.17p1: the type of the assignment expression is that of its left
1561 // oprdu.
Chris Lattner5cf216b2008-01-04 18:04:52 +00001562 return lhsType.getUnqualifiedType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001563}
1564
1565inline QualType Sema::CheckCommaOperands( // C99 6.5.17
Steve Naroff49b45262007-07-13 16:58:59 +00001566 Expr *&lex, Expr *&rex, SourceLocation loc) {
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001567 UsualUnaryConversions(rex);
1568 return rex->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001569}
1570
Steve Naroff49b45262007-07-13 16:58:59 +00001571/// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine
1572/// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions.
Reid Spencer5f016e22007-07-11 17:01:13 +00001573QualType Sema::CheckIncrementDecrementOperand(Expr *op, SourceLocation OpLoc) {
Steve Naroff49b45262007-07-13 16:58:59 +00001574 QualType resType = op->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001575 assert(!resType.isNull() && "no type for increment/decrement expression");
1576
Steve Naroff084f9ed2007-08-24 17:20:07 +00001577 // C99 6.5.2.4p1: We allow complex as a GCC extension.
Steve Naroffd848a382007-11-11 14:15:57 +00001578 if (const PointerType *pt = resType->getAsPointerType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001579 if (!pt->getPointeeType()->isObjectType()) { // C99 6.5.2.4p2, 6.5.6p2
1580 Diag(OpLoc, diag::err_typecheck_arithmetic_incomplete_type,
1581 resType.getAsString(), op->getSourceRange());
1582 return QualType();
1583 }
Steve Naroff084f9ed2007-08-24 17:20:07 +00001584 } else if (!resType->isRealType()) {
1585 if (resType->isComplexType())
1586 // C99 does not support ++/-- on complex types.
1587 Diag(OpLoc, diag::ext_integer_increment_complex,
1588 resType.getAsString(), op->getSourceRange());
1589 else {
1590 Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement,
1591 resType.getAsString(), op->getSourceRange());
1592 return QualType();
1593 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001594 }
Steve Naroffdd10e022007-08-23 21:37:33 +00001595 // At this point, we know we have a real, complex or pointer type.
1596 // Now make sure the operand is a modifiable lvalue.
Reid Spencer5f016e22007-07-11 17:01:13 +00001597 Expr::isModifiableLvalueResult mlval = op->isModifiableLvalue();
1598 if (mlval != Expr::MLV_Valid) {
1599 // FIXME: emit a more precise diagnostic...
1600 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_incr_decr,
1601 op->getSourceRange());
1602 return QualType();
1603 }
1604 return resType;
1605}
1606
1607/// getPrimaryDeclaration - Helper function for CheckAddressOfOperand().
1608/// This routine allows us to typecheck complex/recursive expressions
1609/// where the declaration is needed for type checking. Here are some
1610/// examples: &s.xx, &s.zz[1].yy, &(1+2), &(XX), &"123"[2].
1611static Decl *getPrimaryDeclaration(Expr *e) {
1612 switch (e->getStmtClass()) {
1613 case Stmt::DeclRefExprClass:
1614 return cast<DeclRefExpr>(e)->getDecl();
1615 case Stmt::MemberExprClass:
Chris Lattnerf82228f2007-11-16 17:46:48 +00001616 // Fields cannot be declared with a 'register' storage class.
1617 // &X->f is always ok, even if X is declared register.
1618 if (cast<MemberExpr>(e)->isArrow())
1619 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001620 return getPrimaryDeclaration(cast<MemberExpr>(e)->getBase());
1621 case Stmt::ArraySubscriptExprClass:
Chris Lattnerf82228f2007-11-16 17:46:48 +00001622 // &X[4] and &4[X] is invalid if X is invalid.
Reid Spencer5f016e22007-07-11 17:01:13 +00001623 return getPrimaryDeclaration(cast<ArraySubscriptExpr>(e)->getBase());
Reid Spencer5f016e22007-07-11 17:01:13 +00001624 case Stmt::UnaryOperatorClass:
1625 return getPrimaryDeclaration(cast<UnaryOperator>(e)->getSubExpr());
1626 case Stmt::ParenExprClass:
1627 return getPrimaryDeclaration(cast<ParenExpr>(e)->getSubExpr());
Chris Lattnerf82228f2007-11-16 17:46:48 +00001628 case Stmt::ImplicitCastExprClass:
1629 // &X[4] when X is an array, has an implicit cast from array to pointer.
1630 return getPrimaryDeclaration(cast<ImplicitCastExpr>(e)->getSubExpr());
Reid Spencer5f016e22007-07-11 17:01:13 +00001631 default:
1632 return 0;
1633 }
1634}
1635
1636/// CheckAddressOfOperand - The operand of & must be either a function
1637/// designator or an lvalue designating an object. If it is an lvalue, the
1638/// object cannot be declared with storage class register or be a bit field.
1639/// Note: The usual conversions are *not* applied to the operand of the &
1640/// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue.
1641QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) {
Steve Naroff08f19672008-01-13 17:10:08 +00001642 if (getLangOptions().C99) {
1643 // Implement C99-only parts of addressof rules.
1644 if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) {
1645 if (uOp->getOpcode() == UnaryOperator::Deref)
1646 // Per C99 6.5.3.2, the address of a deref always returns a valid result
1647 // (assuming the deref expression is valid).
1648 return uOp->getSubExpr()->getType();
1649 }
1650 // Technically, there should be a check for array subscript
1651 // expressions here, but the result of one is always an lvalue anyway.
1652 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001653 Decl *dcl = getPrimaryDeclaration(op);
1654 Expr::isLvalueResult lval = op->isLvalue();
1655
1656 if (lval != Expr::LV_Valid) { // C99 6.5.3.2p1
Chris Lattnerf82228f2007-11-16 17:46:48 +00001657 if (!dcl || !isa<FunctionDecl>(dcl)) {// allow function designators
1658 // FIXME: emit more specific diag...
Reid Spencer5f016e22007-07-11 17:01:13 +00001659 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof,
1660 op->getSourceRange());
1661 return QualType();
1662 }
1663 } else if (dcl) {
1664 // We have an lvalue with a decl. Make sure the decl is not declared
1665 // with the register storage-class specifier.
1666 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) {
1667 if (vd->getStorageClass() == VarDecl::Register) {
1668 Diag(OpLoc, diag::err_typecheck_address_of_register,
1669 op->getSourceRange());
1670 return QualType();
1671 }
1672 } else
1673 assert(0 && "Unknown/unexpected decl type");
1674
1675 // FIXME: add check for bitfields!
1676 }
1677 // If the operand has type "type", the result has type "pointer to type".
1678 return Context.getPointerType(op->getType());
1679}
1680
1681QualType Sema::CheckIndirectionOperand(Expr *op, SourceLocation OpLoc) {
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001682 UsualUnaryConversions(op);
1683 QualType qType = op->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001684
Chris Lattnerbefee482007-07-31 16:53:04 +00001685 if (const PointerType *PT = qType->getAsPointerType()) {
Steve Naroff08f19672008-01-13 17:10:08 +00001686 // Note that per both C89 and C99, this is always legal, even
1687 // if ptype is an incomplete type or void.
1688 // It would be possible to warn about dereferencing a
1689 // void pointer, but it's completely well-defined,
1690 // and such a warning is unlikely to catch any mistakes.
1691 return PT->getPointeeType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001692 }
1693 Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer,
1694 qType.getAsString(), op->getSourceRange());
1695 return QualType();
1696}
1697
1698static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode(
1699 tok::TokenKind Kind) {
1700 BinaryOperator::Opcode Opc;
1701 switch (Kind) {
1702 default: assert(0 && "Unknown binop!");
1703 case tok::star: Opc = BinaryOperator::Mul; break;
1704 case tok::slash: Opc = BinaryOperator::Div; break;
1705 case tok::percent: Opc = BinaryOperator::Rem; break;
1706 case tok::plus: Opc = BinaryOperator::Add; break;
1707 case tok::minus: Opc = BinaryOperator::Sub; break;
1708 case tok::lessless: Opc = BinaryOperator::Shl; break;
1709 case tok::greatergreater: Opc = BinaryOperator::Shr; break;
1710 case tok::lessequal: Opc = BinaryOperator::LE; break;
1711 case tok::less: Opc = BinaryOperator::LT; break;
1712 case tok::greaterequal: Opc = BinaryOperator::GE; break;
1713 case tok::greater: Opc = BinaryOperator::GT; break;
1714 case tok::exclaimequal: Opc = BinaryOperator::NE; break;
1715 case tok::equalequal: Opc = BinaryOperator::EQ; break;
1716 case tok::amp: Opc = BinaryOperator::And; break;
1717 case tok::caret: Opc = BinaryOperator::Xor; break;
1718 case tok::pipe: Opc = BinaryOperator::Or; break;
1719 case tok::ampamp: Opc = BinaryOperator::LAnd; break;
1720 case tok::pipepipe: Opc = BinaryOperator::LOr; break;
1721 case tok::equal: Opc = BinaryOperator::Assign; break;
1722 case tok::starequal: Opc = BinaryOperator::MulAssign; break;
1723 case tok::slashequal: Opc = BinaryOperator::DivAssign; break;
1724 case tok::percentequal: Opc = BinaryOperator::RemAssign; break;
1725 case tok::plusequal: Opc = BinaryOperator::AddAssign; break;
1726 case tok::minusequal: Opc = BinaryOperator::SubAssign; break;
1727 case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break;
1728 case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break;
1729 case tok::ampequal: Opc = BinaryOperator::AndAssign; break;
1730 case tok::caretequal: Opc = BinaryOperator::XorAssign; break;
1731 case tok::pipeequal: Opc = BinaryOperator::OrAssign; break;
1732 case tok::comma: Opc = BinaryOperator::Comma; break;
1733 }
1734 return Opc;
1735}
1736
1737static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode(
1738 tok::TokenKind Kind) {
1739 UnaryOperator::Opcode Opc;
1740 switch (Kind) {
1741 default: assert(0 && "Unknown unary op!");
1742 case tok::plusplus: Opc = UnaryOperator::PreInc; break;
1743 case tok::minusminus: Opc = UnaryOperator::PreDec; break;
1744 case tok::amp: Opc = UnaryOperator::AddrOf; break;
1745 case tok::star: Opc = UnaryOperator::Deref; break;
1746 case tok::plus: Opc = UnaryOperator::Plus; break;
1747 case tok::minus: Opc = UnaryOperator::Minus; break;
1748 case tok::tilde: Opc = UnaryOperator::Not; break;
1749 case tok::exclaim: Opc = UnaryOperator::LNot; break;
1750 case tok::kw_sizeof: Opc = UnaryOperator::SizeOf; break;
1751 case tok::kw___alignof: Opc = UnaryOperator::AlignOf; break;
1752 case tok::kw___real: Opc = UnaryOperator::Real; break;
1753 case tok::kw___imag: Opc = UnaryOperator::Imag; break;
1754 case tok::kw___extension__: Opc = UnaryOperator::Extension; break;
1755 }
1756 return Opc;
1757}
1758
1759// Binary Operators. 'Tok' is the token for the operator.
Steve Narofff69936d2007-09-16 03:34:24 +00001760Action::ExprResult Sema::ActOnBinOp(SourceLocation TokLoc, tok::TokenKind Kind,
Reid Spencer5f016e22007-07-11 17:01:13 +00001761 ExprTy *LHS, ExprTy *RHS) {
1762 BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind);
1763 Expr *lhs = (Expr *)LHS, *rhs = (Expr*)RHS;
1764
Steve Narofff69936d2007-09-16 03:34:24 +00001765 assert((lhs != 0) && "ActOnBinOp(): missing left expression");
1766 assert((rhs != 0) && "ActOnBinOp(): missing right expression");
Reid Spencer5f016e22007-07-11 17:01:13 +00001767
1768 QualType ResultTy; // Result type of the binary operator.
1769 QualType CompTy; // Computation type for compound assignments (e.g. '+=')
1770
1771 switch (Opc) {
1772 default:
1773 assert(0 && "Unknown binary expr!");
1774 case BinaryOperator::Assign:
1775 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, QualType());
1776 break;
1777 case BinaryOperator::Mul:
1778 case BinaryOperator::Div:
1779 ResultTy = CheckMultiplyDivideOperands(lhs, rhs, TokLoc);
1780 break;
1781 case BinaryOperator::Rem:
1782 ResultTy = CheckRemainderOperands(lhs, rhs, TokLoc);
1783 break;
1784 case BinaryOperator::Add:
1785 ResultTy = CheckAdditionOperands(lhs, rhs, TokLoc);
1786 break;
1787 case BinaryOperator::Sub:
1788 ResultTy = CheckSubtractionOperands(lhs, rhs, TokLoc);
1789 break;
1790 case BinaryOperator::Shl:
1791 case BinaryOperator::Shr:
1792 ResultTy = CheckShiftOperands(lhs, rhs, TokLoc);
1793 break;
1794 case BinaryOperator::LE:
1795 case BinaryOperator::LT:
1796 case BinaryOperator::GE:
1797 case BinaryOperator::GT:
Chris Lattnera5937dd2007-08-26 01:18:55 +00001798 ResultTy = CheckCompareOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001799 break;
1800 case BinaryOperator::EQ:
1801 case BinaryOperator::NE:
Chris Lattnera5937dd2007-08-26 01:18:55 +00001802 ResultTy = CheckCompareOperands(lhs, rhs, TokLoc, false);
Reid Spencer5f016e22007-07-11 17:01:13 +00001803 break;
1804 case BinaryOperator::And:
1805 case BinaryOperator::Xor:
1806 case BinaryOperator::Or:
1807 ResultTy = CheckBitwiseOperands(lhs, rhs, TokLoc);
1808 break;
1809 case BinaryOperator::LAnd:
1810 case BinaryOperator::LOr:
1811 ResultTy = CheckLogicalOperands(lhs, rhs, TokLoc);
1812 break;
1813 case BinaryOperator::MulAssign:
1814 case BinaryOperator::DivAssign:
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001815 CompTy = CheckMultiplyDivideOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001816 if (!CompTy.isNull())
1817 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1818 break;
1819 case BinaryOperator::RemAssign:
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001820 CompTy = CheckRemainderOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001821 if (!CompTy.isNull())
1822 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1823 break;
1824 case BinaryOperator::AddAssign:
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001825 CompTy = CheckAdditionOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001826 if (!CompTy.isNull())
1827 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1828 break;
1829 case BinaryOperator::SubAssign:
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001830 CompTy = CheckSubtractionOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001831 if (!CompTy.isNull())
1832 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1833 break;
1834 case BinaryOperator::ShlAssign:
1835 case BinaryOperator::ShrAssign:
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001836 CompTy = CheckShiftOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001837 if (!CompTy.isNull())
1838 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1839 break;
1840 case BinaryOperator::AndAssign:
1841 case BinaryOperator::XorAssign:
1842 case BinaryOperator::OrAssign:
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001843 CompTy = CheckBitwiseOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001844 if (!CompTy.isNull())
1845 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1846 break;
1847 case BinaryOperator::Comma:
1848 ResultTy = CheckCommaOperands(lhs, rhs, TokLoc);
1849 break;
1850 }
1851 if (ResultTy.isNull())
1852 return true;
1853 if (CompTy.isNull())
Chris Lattner17d1b2a2007-08-28 18:36:55 +00001854 return new BinaryOperator(lhs, rhs, Opc, ResultTy, TokLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001855 else
Chris Lattner17d1b2a2007-08-28 18:36:55 +00001856 return new CompoundAssignOperator(lhs, rhs, Opc, ResultTy, CompTy, TokLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001857}
1858
1859// Unary Operators. 'Tok' is the token for the operator.
Steve Narofff69936d2007-09-16 03:34:24 +00001860Action::ExprResult Sema::ActOnUnaryOp(SourceLocation OpLoc, tok::TokenKind Op,
Reid Spencer5f016e22007-07-11 17:01:13 +00001861 ExprTy *input) {
1862 Expr *Input = (Expr*)input;
1863 UnaryOperator::Opcode Opc = ConvertTokenKindToUnaryOpcode(Op);
1864 QualType resultType;
1865 switch (Opc) {
1866 default:
1867 assert(0 && "Unimplemented unary expr!");
1868 case UnaryOperator::PreInc:
1869 case UnaryOperator::PreDec:
1870 resultType = CheckIncrementDecrementOperand(Input, OpLoc);
1871 break;
1872 case UnaryOperator::AddrOf:
1873 resultType = CheckAddressOfOperand(Input, OpLoc);
1874 break;
1875 case UnaryOperator::Deref:
Steve Naroff1ca9b112007-12-18 04:06:57 +00001876 DefaultFunctionArrayConversion(Input);
Reid Spencer5f016e22007-07-11 17:01:13 +00001877 resultType = CheckIndirectionOperand(Input, OpLoc);
1878 break;
1879 case UnaryOperator::Plus:
1880 case UnaryOperator::Minus:
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001881 UsualUnaryConversions(Input);
1882 resultType = Input->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001883 if (!resultType->isArithmeticType()) // C99 6.5.3.3p1
1884 return Diag(OpLoc, diag::err_typecheck_unary_expr,
1885 resultType.getAsString());
1886 break;
1887 case UnaryOperator::Not: // bitwise complement
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001888 UsualUnaryConversions(Input);
1889 resultType = Input->getType();
Steve Naroff084f9ed2007-08-24 17:20:07 +00001890 // C99 6.5.3.3p1. We allow complex as a GCC extension.
1891 if (!resultType->isIntegerType()) {
1892 if (resultType->isComplexType())
1893 // C99 does not support '~' for complex conjugation.
1894 Diag(OpLoc, diag::ext_integer_complement_complex,
1895 resultType.getAsString());
1896 else
1897 return Diag(OpLoc, diag::err_typecheck_unary_expr,
1898 resultType.getAsString());
1899 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001900 break;
1901 case UnaryOperator::LNot: // logical negation
1902 // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5).
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001903 DefaultFunctionArrayConversion(Input);
1904 resultType = Input->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001905 if (!resultType->isScalarType()) // C99 6.5.3.3p1
1906 return Diag(OpLoc, diag::err_typecheck_unary_expr,
1907 resultType.getAsString());
1908 // LNot always has type int. C99 6.5.3.3p5.
1909 resultType = Context.IntTy;
1910 break;
1911 case UnaryOperator::SizeOf:
1912 resultType = CheckSizeOfAlignOfOperand(Input->getType(), OpLoc, true);
1913 break;
1914 case UnaryOperator::AlignOf:
1915 resultType = CheckSizeOfAlignOfOperand(Input->getType(), OpLoc, false);
1916 break;
Chris Lattnerdbb36972007-08-24 21:16:53 +00001917 case UnaryOperator::Real:
Chris Lattnerdbb36972007-08-24 21:16:53 +00001918 case UnaryOperator::Imag:
Chris Lattner5d794252007-08-24 21:41:10 +00001919 resultType = CheckRealImagOperand(Input, OpLoc);
Chris Lattnerdbb36972007-08-24 21:16:53 +00001920 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00001921 case UnaryOperator::Extension:
Reid Spencer5f016e22007-07-11 17:01:13 +00001922 resultType = Input->getType();
1923 break;
1924 }
1925 if (resultType.isNull())
1926 return true;
1927 return new UnaryOperator(Input, Opc, resultType, OpLoc);
1928}
1929
Steve Naroff1b273c42007-09-16 14:56:35 +00001930/// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo".
1931Sema::ExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +00001932 SourceLocation LabLoc,
1933 IdentifierInfo *LabelII) {
1934 // Look up the record for this label identifier.
1935 LabelStmt *&LabelDecl = LabelMap[LabelII];
1936
1937 // If we haven't seen this label yet, create a forward reference.
1938 if (LabelDecl == 0)
1939 LabelDecl = new LabelStmt(LabLoc, LabelII, 0);
1940
1941 // Create the AST node. The address of a label always has type 'void*'.
Chris Lattner6481a572007-08-03 17:31:20 +00001942 return new AddrLabelExpr(OpLoc, LabLoc, LabelDecl,
1943 Context.getPointerType(Context.VoidTy));
Reid Spencer5f016e22007-07-11 17:01:13 +00001944}
1945
Steve Naroff1b273c42007-09-16 14:56:35 +00001946Sema::ExprResult Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtTy *substmt,
Chris Lattnerab18c4c2007-07-24 16:58:17 +00001947 SourceLocation RPLoc) { // "({..})"
1948 Stmt *SubStmt = static_cast<Stmt*>(substmt);
1949 assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!");
1950 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt);
1951
1952 // FIXME: there are a variety of strange constraints to enforce here, for
1953 // example, it is not possible to goto into a stmt expression apparently.
1954 // More semantic analysis is needed.
1955
1956 // FIXME: the last statement in the compount stmt has its value used. We
1957 // should not warn about it being unused.
1958
1959 // If there are sub stmts in the compound stmt, take the type of the last one
1960 // as the type of the stmtexpr.
1961 QualType Ty = Context.VoidTy;
1962
1963 if (!Compound->body_empty())
1964 if (Expr *LastExpr = dyn_cast<Expr>(Compound->body_back()))
1965 Ty = LastExpr->getType();
1966
1967 return new StmtExpr(Compound, Ty, LPLoc, RPLoc);
1968}
Steve Naroffd34e9152007-08-01 22:05:33 +00001969
Steve Naroff1b273c42007-09-16 14:56:35 +00001970Sema::ExprResult Sema::ActOnBuiltinOffsetOf(SourceLocation BuiltinLoc,
Chris Lattner73d0d4f2007-08-30 17:45:32 +00001971 SourceLocation TypeLoc,
1972 TypeTy *argty,
1973 OffsetOfComponent *CompPtr,
1974 unsigned NumComponents,
1975 SourceLocation RPLoc) {
1976 QualType ArgTy = QualType::getFromOpaquePtr(argty);
1977 assert(!ArgTy.isNull() && "Missing type argument!");
1978
1979 // We must have at least one component that refers to the type, and the first
1980 // one is known to be a field designator. Verify that the ArgTy represents
1981 // a struct/union/class.
1982 if (!ArgTy->isRecordType())
1983 return Diag(TypeLoc, diag::err_offsetof_record_type,ArgTy.getAsString());
1984
1985 // Otherwise, create a compound literal expression as the base, and
1986 // iteratively process the offsetof designators.
Steve Naroffe9b12192008-01-14 18:19:28 +00001987 Expr *Res = new CompoundLiteralExpr(SourceLocation(), ArgTy, 0, false);
Chris Lattner73d0d4f2007-08-30 17:45:32 +00001988
Chris Lattner9e2b75c2007-08-31 21:49:13 +00001989 // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a
1990 // GCC extension, diagnose them.
1991 if (NumComponents != 1)
1992 Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator,
1993 SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd));
1994
Chris Lattner73d0d4f2007-08-30 17:45:32 +00001995 for (unsigned i = 0; i != NumComponents; ++i) {
1996 const OffsetOfComponent &OC = CompPtr[i];
1997 if (OC.isBrackets) {
1998 // Offset of an array sub-field. TODO: Should we allow vector elements?
1999 const ArrayType *AT = Res->getType()->getAsArrayType();
2000 if (!AT) {
2001 delete Res;
2002 return Diag(OC.LocEnd, diag::err_offsetof_array_type,
2003 Res->getType().getAsString());
2004 }
2005
Chris Lattner704fe352007-08-30 17:59:59 +00002006 // FIXME: C++: Verify that operator[] isn't overloaded.
2007
Chris Lattner73d0d4f2007-08-30 17:45:32 +00002008 // C99 6.5.2.1p1
2009 Expr *Idx = static_cast<Expr*>(OC.U.E);
2010 if (!Idx->getType()->isIntegerType())
2011 return Diag(Idx->getLocStart(), diag::err_typecheck_subscript,
2012 Idx->getSourceRange());
2013
2014 Res = new ArraySubscriptExpr(Res, Idx, AT->getElementType(), OC.LocEnd);
2015 continue;
2016 }
2017
2018 const RecordType *RC = Res->getType()->getAsRecordType();
2019 if (!RC) {
2020 delete Res;
2021 return Diag(OC.LocEnd, diag::err_offsetof_record_type,
2022 Res->getType().getAsString());
2023 }
2024
2025 // Get the decl corresponding to this.
2026 RecordDecl *RD = RC->getDecl();
2027 FieldDecl *MemberDecl = RD->getMember(OC.U.IdentInfo);
2028 if (!MemberDecl)
2029 return Diag(BuiltinLoc, diag::err_typecheck_no_member,
2030 OC.U.IdentInfo->getName(),
2031 SourceRange(OC.LocStart, OC.LocEnd));
Chris Lattner704fe352007-08-30 17:59:59 +00002032
2033 // FIXME: C++: Verify that MemberDecl isn't a static field.
2034 // FIXME: Verify that MemberDecl isn't a bitfield.
2035
Chris Lattner73d0d4f2007-08-30 17:45:32 +00002036 Res = new MemberExpr(Res, false, MemberDecl, OC.LocEnd);
2037 }
2038
2039 return new UnaryOperator(Res, UnaryOperator::OffsetOf, Context.getSizeType(),
2040 BuiltinLoc);
2041}
2042
2043
Steve Naroff1b273c42007-09-16 14:56:35 +00002044Sema::ExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc,
Steve Naroffd34e9152007-08-01 22:05:33 +00002045 TypeTy *arg1, TypeTy *arg2,
2046 SourceLocation RPLoc) {
2047 QualType argT1 = QualType::getFromOpaquePtr(arg1);
2048 QualType argT2 = QualType::getFromOpaquePtr(arg2);
2049
2050 assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)");
2051
Chris Lattner73d0d4f2007-08-30 17:45:32 +00002052 return new TypesCompatibleExpr(Context.IntTy, BuiltinLoc, argT1, argT2,RPLoc);
Steve Naroffd34e9152007-08-01 22:05:33 +00002053}
2054
Steve Naroff1b273c42007-09-16 14:56:35 +00002055Sema::ExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, ExprTy *cond,
Steve Naroffd04fdd52007-08-03 21:21:27 +00002056 ExprTy *expr1, ExprTy *expr2,
2057 SourceLocation RPLoc) {
2058 Expr *CondExpr = static_cast<Expr*>(cond);
2059 Expr *LHSExpr = static_cast<Expr*>(expr1);
2060 Expr *RHSExpr = static_cast<Expr*>(expr2);
2061
2062 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)");
2063
2064 // The conditional expression is required to be a constant expression.
2065 llvm::APSInt condEval(32);
2066 SourceLocation ExpLoc;
2067 if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc))
2068 return Diag(ExpLoc, diag::err_typecheck_choose_expr_requires_constant,
2069 CondExpr->getSourceRange());
2070
2071 // If the condition is > zero, then the AST type is the same as the LSHExpr.
2072 QualType resType = condEval.getZExtValue() ? LHSExpr->getType() :
2073 RHSExpr->getType();
2074 return new ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, resType, RPLoc);
2075}
2076
Anders Carlsson7c50aca2007-10-15 20:28:48 +00002077Sema::ExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc,
2078 ExprTy *expr, TypeTy *type,
Chris Lattner5cf216b2008-01-04 18:04:52 +00002079 SourceLocation RPLoc) {
Anders Carlsson7c50aca2007-10-15 20:28:48 +00002080 Expr *E = static_cast<Expr*>(expr);
2081 QualType T = QualType::getFromOpaquePtr(type);
2082
2083 InitBuiltinVaListType();
2084
Chris Lattner5cf216b2008-01-04 18:04:52 +00002085 if (CheckAssignmentConstraints(Context.getBuiltinVaListType(), E->getType())
2086 != Compatible)
Anders Carlsson7c50aca2007-10-15 20:28:48 +00002087 return Diag(E->getLocStart(),
2088 diag::err_first_argument_to_va_arg_not_of_type_va_list,
2089 E->getType().getAsString(),
2090 E->getSourceRange());
2091
2092 // FIXME: Warn if a non-POD type is passed in.
2093
2094 return new VAArgExpr(BuiltinLoc, E, T, RPLoc);
2095}
2096
Chris Lattner5cf216b2008-01-04 18:04:52 +00002097bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy,
2098 SourceLocation Loc,
2099 QualType DstType, QualType SrcType,
2100 Expr *SrcExpr, const char *Flavor) {
2101 // Decode the result (notice that AST's are still created for extensions).
2102 bool isInvalid = false;
2103 unsigned DiagKind;
2104 switch (ConvTy) {
2105 default: assert(0 && "Unknown conversion type");
2106 case Compatible: return false;
Chris Lattnerb7b61152008-01-04 18:22:42 +00002107 case PointerToInt:
Chris Lattner5cf216b2008-01-04 18:04:52 +00002108 DiagKind = diag::ext_typecheck_convert_pointer_int;
2109 break;
Chris Lattnerb7b61152008-01-04 18:22:42 +00002110 case IntToPointer:
2111 DiagKind = diag::ext_typecheck_convert_int_pointer;
2112 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00002113 case IncompatiblePointer:
2114 DiagKind = diag::ext_typecheck_convert_incompatible_pointer;
2115 break;
2116 case FunctionVoidPointer:
2117 DiagKind = diag::ext_typecheck_convert_pointer_void_func;
2118 break;
2119 case CompatiblePointerDiscardsQualifiers:
2120 DiagKind = diag::ext_typecheck_convert_discards_qualifiers;
2121 break;
2122 case Incompatible:
2123 DiagKind = diag::err_typecheck_convert_incompatible;
2124 isInvalid = true;
2125 break;
2126 }
2127
2128 Diag(Loc, DiagKind, DstType.getAsString(), SrcType.getAsString(), Flavor,
2129 SrcExpr->getSourceRange());
2130 return isInvalid;
2131}
2132