blob: 59cff7cc7d4bd100300d91151de45489d28a6f2f [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for expressions.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
15#include "clang/AST/ASTContext.h"
16#include "clang/AST/Decl.h"
Steve Naroff6a8a9a42007-10-02 20:01:56 +000017#include "clang/AST/DeclObjC.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000018#include "clang/AST/Expr.h"
Steve Naroff563477d2007-09-18 23:55:05 +000019#include "clang/Parse/DeclSpec.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include "clang/Lex/Preprocessor.h"
21#include "clang/Lex/LiteralSupport.h"
22#include "clang/Basic/SourceManager.h"
23#include "clang/Basic/Diagnostic.h"
24#include "clang/Basic/LangOptions.h"
25#include "clang/Basic/TargetInfo.h"
26#include "llvm/ADT/SmallString.h"
Chris Lattner59907c42007-08-10 20:18:51 +000027#include "llvm/ADT/StringExtras.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000028using namespace clang;
29
Steve Narofff69936d2007-09-16 03:34:24 +000030/// ActOnStringLiteral - The specified tokens were lexed as pasted string
Reid Spencer5f016e22007-07-11 17:01:13 +000031/// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string
32/// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from
33/// multiple tokens. However, the common case is that StringToks points to one
34/// string.
35///
36Action::ExprResult
Steve Narofff69936d2007-09-16 03:34:24 +000037Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) {
Reid Spencer5f016e22007-07-11 17:01:13 +000038 assert(NumStringToks && "Must have at least one string!");
39
40 StringLiteralParser Literal(StringToks, NumStringToks, PP, Context.Target);
41 if (Literal.hadError)
42 return ExprResult(true);
43
44 llvm::SmallVector<SourceLocation, 4> StringTokLocs;
45 for (unsigned i = 0; i != NumStringToks; ++i)
46 StringTokLocs.push_back(StringToks[i].getLocation());
47
48 // FIXME: handle wchar_t
Anders Carlssonee98ac52007-10-15 02:50:23 +000049 QualType t;
50
51 if (Literal.Pascal)
52 t = Context.getPointerType(Context.UnsignedCharTy);
53 else
54 t = Context.getPointerType(Context.CharTy);
55
56 if (Literal.Pascal && Literal.GetStringLength() > 256)
57 return Diag(StringToks[0].getLocation(), diag::err_pascal_string_too_long,
58 SourceRange(StringToks[0].getLocation(),
59 StringToks[NumStringToks-1].getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +000060
61 // Pass &StringTokLocs[0], StringTokLocs.size() to factory!
62 return new StringLiteral(Literal.GetString(), Literal.GetStringLength(),
Anders Carlssonee98ac52007-10-15 02:50:23 +000063 Literal.AnyWide, t,
64 StringToks[0].getLocation(),
Reid Spencer5f016e22007-07-11 17:01:13 +000065 StringToks[NumStringToks-1].getLocation());
66}
67
68
Steve Naroff08d92e42007-09-15 18:49:24 +000069/// ActOnIdentifierExpr - The parser read an identifier in expression context,
Reid Spencer5f016e22007-07-11 17:01:13 +000070/// validate it per-C99 6.5.1. HasTrailingLParen indicates whether this
71/// identifier is used in an function call context.
Steve Naroff08d92e42007-09-15 18:49:24 +000072Sema::ExprResult Sema::ActOnIdentifierExpr(Scope *S, SourceLocation Loc,
Reid Spencer5f016e22007-07-11 17:01:13 +000073 IdentifierInfo &II,
74 bool HasTrailingLParen) {
75 // Could be enum-constant or decl.
Steve Naroff8c9f13e2007-09-16 16:16:00 +000076 ScopedDecl *D = LookupScopedDecl(&II, Decl::IDNS_Ordinary, Loc, S);
Reid Spencer5f016e22007-07-11 17:01:13 +000077 if (D == 0) {
78 // Otherwise, this could be an implicitly declared function reference (legal
79 // in C90, extension in C99).
80 if (HasTrailingLParen &&
81 // Not in C++.
82 !getLangOptions().CPlusPlus)
83 D = ImplicitlyDefineFunction(Loc, II, S);
84 else {
85 // If this name wasn't predeclared and if this is not a function call,
86 // diagnose the problem.
87 return Diag(Loc, diag::err_undeclared_var_use, II.getName());
88 }
89 }
Steve Naroffe1223f72007-08-28 03:03:08 +000090 if (ValueDecl *VD = dyn_cast<ValueDecl>(D)) {
Steve Naroff53a32342007-08-28 18:45:29 +000091 // Only create DeclRefExpr's for valid Decl's.
Steve Naroff5912a352007-08-28 20:14:24 +000092 if (VD->isInvalidDecl())
Steve Naroffe1223f72007-08-28 03:03:08 +000093 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +000094 return new DeclRefExpr(VD, VD->getType(), Loc);
Steve Naroffe1223f72007-08-28 03:03:08 +000095 }
Reid Spencer5f016e22007-07-11 17:01:13 +000096 if (isa<TypedefDecl>(D))
97 return Diag(Loc, diag::err_unexpected_typedef, II.getName());
98
99 assert(0 && "Invalid decl");
Chris Lattnereddbe032007-07-21 04:57:45 +0000100 abort();
Reid Spencer5f016e22007-07-11 17:01:13 +0000101}
102
Steve Narofff69936d2007-09-16 03:34:24 +0000103Sema::ExprResult Sema::ActOnPreDefinedExpr(SourceLocation Loc,
Anders Carlsson22742662007-07-21 05:21:51 +0000104 tok::TokenKind Kind) {
105 PreDefinedExpr::IdentType IT;
106
Reid Spencer5f016e22007-07-11 17:01:13 +0000107 switch (Kind) {
108 default:
109 assert(0 && "Unknown simple primary expr!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000110 case tok::kw___func__: // primary-expression: __func__ [C99 6.4.2.2]
Anders Carlsson22742662007-07-21 05:21:51 +0000111 IT = PreDefinedExpr::Func;
112 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000113 case tok::kw___FUNCTION__: // primary-expression: __FUNCTION__ [GNU]
Anders Carlsson22742662007-07-21 05:21:51 +0000114 IT = PreDefinedExpr::Function;
115 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000116 case tok::kw___PRETTY_FUNCTION__: // primary-expression: __P..Y_F..N__ [GNU]
Anders Carlsson22742662007-07-21 05:21:51 +0000117 IT = PreDefinedExpr::PrettyFunction;
118 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000119 }
Anders Carlsson22742662007-07-21 05:21:51 +0000120
121 // Pre-defined identifiers are always of type char *.
122 return new PreDefinedExpr(Loc, Context.getPointerType(Context.CharTy), IT);
Reid Spencer5f016e22007-07-11 17:01:13 +0000123}
124
Steve Narofff69936d2007-09-16 03:34:24 +0000125Sema::ExprResult Sema::ActOnCharacterConstant(const Token &Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000126 llvm::SmallString<16> CharBuffer;
127 CharBuffer.resize(Tok.getLength());
128 const char *ThisTokBegin = &CharBuffer[0];
129 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
130
131 CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
132 Tok.getLocation(), PP);
133 if (Literal.hadError())
134 return ExprResult(true);
135 return new CharacterLiteral(Literal.getValue(), Context.IntTy,
136 Tok.getLocation());
137}
138
Steve Narofff69936d2007-09-16 03:34:24 +0000139Action::ExprResult Sema::ActOnNumericConstant(const Token &Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000140 // fast path for a single digit (which is quite common). A single digit
141 // cannot have a trigraph, escaped newline, radix prefix, or type suffix.
142 if (Tok.getLength() == 1) {
143 const char *t = PP.getSourceManager().getCharacterData(Tok.getLocation());
144
Chris Lattner701e5eb2007-09-04 02:45:27 +0000145 unsigned IntSize = static_cast<unsigned>(
146 Context.getTypeSize(Context.IntTy, Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000147 return ExprResult(new IntegerLiteral(llvm::APInt(IntSize, *t-'0'),
148 Context.IntTy,
149 Tok.getLocation()));
150 }
151 llvm::SmallString<512> IntegerBuffer;
152 IntegerBuffer.resize(Tok.getLength());
153 const char *ThisTokBegin = &IntegerBuffer[0];
154
155 // Get the spelling of the token, which eliminates trigraphs, etc.
156 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
157 NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
158 Tok.getLocation(), PP);
159 if (Literal.hadError)
160 return ExprResult(true);
161
Chris Lattner5d661452007-08-26 03:42:43 +0000162 Expr *Res;
163
164 if (Literal.isFloatingLiteral()) {
Chris Lattner525a0502007-09-22 18:29:59 +0000165 QualType Ty;
166 const llvm::fltSemantics *Format;
167 uint64_t Size; unsigned Align;
168
169 if (Literal.isFloat) {
170 Ty = Context.FloatTy;
171 Context.Target.getFloatInfo(Size, Align, Format, Tok.getLocation());
172 } else if (Literal.isLong) {
173 Ty = Context.LongDoubleTy;
174 Context.Target.getLongDoubleInfo(Size, Align, Format, Tok.getLocation());
175 } else {
176 Ty = Context.DoubleTy;
177 Context.Target.getDoubleInfo(Size, Align, Format, Tok.getLocation());
178 }
179
180 Res = new FloatingLiteral(Literal.GetFloatValue(*Format), Ty,
181 Tok.getLocation());
Chris Lattner5d661452007-08-26 03:42:43 +0000182 } else if (!Literal.isIntegerLiteral()) {
183 return ExprResult(true);
184 } else {
Reid Spencer5f016e22007-07-11 17:01:13 +0000185 QualType t;
186
Neil Boothb9449512007-08-29 22:00:19 +0000187 // long long is a C99 feature.
188 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
Neil Booth79859c32007-08-29 22:13:52 +0000189 Literal.isLongLong)
Neil Boothb9449512007-08-29 22:00:19 +0000190 Diag(Tok.getLocation(), diag::ext_longlong);
191
Reid Spencer5f016e22007-07-11 17:01:13 +0000192 // Get the value in the widest-possible width.
193 llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(Tok.getLocation()), 0);
194
195 if (Literal.GetIntegerValue(ResultVal)) {
196 // If this value didn't fit into uintmax_t, warn and force to ull.
197 Diag(Tok.getLocation(), diag::warn_integer_too_large);
198 t = Context.UnsignedLongLongTy;
Chris Lattnerd2d2a112007-07-14 01:29:45 +0000199 assert(Context.getTypeSize(t, Tok.getLocation()) ==
Reid Spencer5f016e22007-07-11 17:01:13 +0000200 ResultVal.getBitWidth() && "long long is not intmax_t?");
201 } else {
202 // If this value fits into a ULL, try to figure out what else it fits into
203 // according to the rules of C99 6.4.4.1p5.
204
205 // Octal, Hexadecimal, and integers with a U suffix are allowed to
206 // be an unsigned int.
207 bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10;
208
209 // Check from smallest to largest, picking the smallest type we can.
Chris Lattner97c51562007-08-23 21:58:08 +0000210 if (!Literal.isLong && !Literal.isLongLong) {
211 // Are int/unsigned possibilities?
Chris Lattner701e5eb2007-09-04 02:45:27 +0000212 unsigned IntSize = static_cast<unsigned>(
213 Context.getTypeSize(Context.IntTy,Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000214 // Does it fit in a unsigned int?
215 if (ResultVal.isIntN(IntSize)) {
216 // Does it fit in a signed int?
217 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0)
218 t = Context.IntTy;
219 else if (AllowUnsigned)
220 t = Context.UnsignedIntTy;
221 }
222
223 if (!t.isNull())
224 ResultVal.trunc(IntSize);
225 }
226
227 // Are long/unsigned long possibilities?
228 if (t.isNull() && !Literal.isLongLong) {
Chris Lattner701e5eb2007-09-04 02:45:27 +0000229 unsigned LongSize = static_cast<unsigned>(
230 Context.getTypeSize(Context.LongTy, Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000231
232 // Does it fit in a unsigned long?
233 if (ResultVal.isIntN(LongSize)) {
234 // Does it fit in a signed long?
235 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0)
236 t = Context.LongTy;
237 else if (AllowUnsigned)
238 t = Context.UnsignedLongTy;
239 }
240 if (!t.isNull())
241 ResultVal.trunc(LongSize);
242 }
243
244 // Finally, check long long if needed.
245 if (t.isNull()) {
Chris Lattner701e5eb2007-09-04 02:45:27 +0000246 unsigned LongLongSize = static_cast<unsigned>(
247 Context.getTypeSize(Context.LongLongTy, Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000248
249 // Does it fit in a unsigned long long?
250 if (ResultVal.isIntN(LongLongSize)) {
251 // Does it fit in a signed long long?
252 if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0)
253 t = Context.LongLongTy;
254 else if (AllowUnsigned)
255 t = Context.UnsignedLongLongTy;
256 }
257 }
258
259 // If we still couldn't decide a type, we probably have something that
260 // does not fit in a signed long long, but has no U suffix.
261 if (t.isNull()) {
262 Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed);
263 t = Context.UnsignedLongLongTy;
264 }
265 }
266
Chris Lattner5d661452007-08-26 03:42:43 +0000267 Res = new IntegerLiteral(ResultVal, t, Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000268 }
Chris Lattner5d661452007-08-26 03:42:43 +0000269
270 // If this is an imaginary literal, create the ImaginaryLiteral wrapper.
271 if (Literal.isImaginary)
272 Res = new ImaginaryLiteral(Res, Context.getComplexType(Res->getType()));
273
274 return Res;
Reid Spencer5f016e22007-07-11 17:01:13 +0000275}
276
Steve Narofff69936d2007-09-16 03:34:24 +0000277Action::ExprResult Sema::ActOnParenExpr(SourceLocation L, SourceLocation R,
Reid Spencer5f016e22007-07-11 17:01:13 +0000278 ExprTy *Val) {
279 Expr *e = (Expr *)Val;
Steve Narofff69936d2007-09-16 03:34:24 +0000280 assert((e != 0) && "ActOnParenExpr() missing expr");
Reid Spencer5f016e22007-07-11 17:01:13 +0000281 return new ParenExpr(L, R, e);
282}
283
284/// The UsualUnaryConversions() function is *not* called by this routine.
285/// See C99 6.3.2.1p[2-4] for more details.
286QualType Sema::CheckSizeOfAlignOfOperand(QualType exprType,
287 SourceLocation OpLoc, bool isSizeof) {
288 // C99 6.5.3.4p1:
289 if (isa<FunctionType>(exprType) && isSizeof)
290 // alignof(function) is allowed.
291 Diag(OpLoc, diag::ext_sizeof_function_type);
292 else if (exprType->isVoidType())
293 Diag(OpLoc, diag::ext_sizeof_void_type, isSizeof ? "sizeof" : "__alignof");
294 else if (exprType->isIncompleteType()) {
295 Diag(OpLoc, isSizeof ? diag::err_sizeof_incomplete_type :
296 diag::err_alignof_incomplete_type,
297 exprType.getAsString());
298 return QualType(); // error
299 }
300 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
301 return Context.getSizeType();
302}
303
304Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +0000305ActOnSizeOfAlignOfTypeExpr(SourceLocation OpLoc, bool isSizeof,
Reid Spencer5f016e22007-07-11 17:01:13 +0000306 SourceLocation LPLoc, TypeTy *Ty,
307 SourceLocation RPLoc) {
308 // If error parsing type, ignore.
309 if (Ty == 0) return true;
310
311 // Verify that this is a valid expression.
312 QualType ArgTy = QualType::getFromOpaquePtr(Ty);
313
314 QualType resultType = CheckSizeOfAlignOfOperand(ArgTy, OpLoc, isSizeof);
315
316 if (resultType.isNull())
317 return true;
318 return new SizeOfAlignOfTypeExpr(isSizeof, ArgTy, resultType, OpLoc, RPLoc);
319}
320
Chris Lattner5d794252007-08-24 21:41:10 +0000321QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc) {
Chris Lattnerdbb36972007-08-24 21:16:53 +0000322 DefaultFunctionArrayConversion(V);
323
Chris Lattnercc26ed72007-08-26 05:39:26 +0000324 // These operators return the element type of a complex type.
Chris Lattnerdbb36972007-08-24 21:16:53 +0000325 if (const ComplexType *CT = V->getType()->getAsComplexType())
326 return CT->getElementType();
Chris Lattnercc26ed72007-08-26 05:39:26 +0000327
328 // Otherwise they pass through real integer and floating point types here.
329 if (V->getType()->isArithmeticType())
330 return V->getType();
331
332 // Reject anything else.
333 Diag(Loc, diag::err_realimag_invalid_type, V->getType().getAsString());
334 return QualType();
Chris Lattnerdbb36972007-08-24 21:16:53 +0000335}
336
337
Reid Spencer5f016e22007-07-11 17:01:13 +0000338
Steve Narofff69936d2007-09-16 03:34:24 +0000339Action::ExprResult Sema::ActOnPostfixUnaryOp(SourceLocation OpLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000340 tok::TokenKind Kind,
341 ExprTy *Input) {
342 UnaryOperator::Opcode Opc;
343 switch (Kind) {
344 default: assert(0 && "Unknown unary op!");
345 case tok::plusplus: Opc = UnaryOperator::PostInc; break;
346 case tok::minusminus: Opc = UnaryOperator::PostDec; break;
347 }
348 QualType result = CheckIncrementDecrementOperand((Expr *)Input, OpLoc);
349 if (result.isNull())
350 return true;
351 return new UnaryOperator((Expr *)Input, Opc, result, OpLoc);
352}
353
354Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +0000355ActOnArraySubscriptExpr(ExprTy *Base, SourceLocation LLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000356 ExprTy *Idx, SourceLocation RLoc) {
Chris Lattner727a80d2007-07-15 23:59:53 +0000357 Expr *LHSExp = static_cast<Expr*>(Base), *RHSExp = static_cast<Expr*>(Idx);
Chris Lattner12d9ff62007-07-16 00:14:47 +0000358
359 // Perform default conversions.
360 DefaultFunctionArrayConversion(LHSExp);
361 DefaultFunctionArrayConversion(RHSExp);
Chris Lattner727a80d2007-07-15 23:59:53 +0000362
Chris Lattner12d9ff62007-07-16 00:14:47 +0000363 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000364
Reid Spencer5f016e22007-07-11 17:01:13 +0000365 // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent
Chris Lattner73d0d4f2007-08-30 17:45:32 +0000366 // to the expression *((e1)+(e2)). This means the array "Base" may actually be
Reid Spencer5f016e22007-07-11 17:01:13 +0000367 // in the subscript position. As a result, we need to derive the array base
368 // and index from the expression types.
Chris Lattner12d9ff62007-07-16 00:14:47 +0000369 Expr *BaseExpr, *IndexExpr;
370 QualType ResultType;
Chris Lattnerbefee482007-07-31 16:53:04 +0000371 if (const PointerType *PTy = LHSTy->getAsPointerType()) {
Chris Lattner12d9ff62007-07-16 00:14:47 +0000372 BaseExpr = LHSExp;
373 IndexExpr = RHSExp;
374 // FIXME: need to deal with const...
375 ResultType = PTy->getPointeeType();
Chris Lattnerbefee482007-07-31 16:53:04 +0000376 } else if (const PointerType *PTy = RHSTy->getAsPointerType()) {
Chris Lattner7a2e0472007-07-16 00:23:25 +0000377 // Handle the uncommon case of "123[Ptr]".
Chris Lattner12d9ff62007-07-16 00:14:47 +0000378 BaseExpr = RHSExp;
379 IndexExpr = LHSExp;
380 // FIXME: need to deal with const...
381 ResultType = PTy->getPointeeType();
Chris Lattnerc8629632007-07-31 19:29:30 +0000382 } else if (const VectorType *VTy = LHSTy->getAsVectorType()) {
383 BaseExpr = LHSExp; // vectors: V[123]
Chris Lattner12d9ff62007-07-16 00:14:47 +0000384 IndexExpr = RHSExp;
Steve Naroff608e0ee2007-08-03 22:40:33 +0000385
386 // Component access limited to variables (reject vec4.rg[1]).
387 if (!isa<DeclRefExpr>(BaseExpr))
388 return Diag(LLoc, diag::err_ocuvector_component_access,
389 SourceRange(LLoc, RLoc));
Chris Lattner12d9ff62007-07-16 00:14:47 +0000390 // FIXME: need to deal with const...
391 ResultType = VTy->getElementType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000392 } else {
Chris Lattner727a80d2007-07-15 23:59:53 +0000393 return Diag(LHSExp->getLocStart(), diag::err_typecheck_subscript_value,
394 RHSExp->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000395 }
396 // C99 6.5.2.1p1
Chris Lattner12d9ff62007-07-16 00:14:47 +0000397 if (!IndexExpr->getType()->isIntegerType())
398 return Diag(IndexExpr->getLocStart(), diag::err_typecheck_subscript,
399 IndexExpr->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000400
Chris Lattner12d9ff62007-07-16 00:14:47 +0000401 // C99 6.5.2.1p1: "shall have type "pointer to *object* type". In practice,
402 // the following check catches trying to index a pointer to a function (e.g.
403 // void (*)(int)). Functions are not objects in C99.
404 if (!ResultType->isObjectType())
405 return Diag(BaseExpr->getLocStart(),
406 diag::err_typecheck_subscript_not_object,
407 BaseExpr->getType().getAsString(), BaseExpr->getSourceRange());
408
409 return new ArraySubscriptExpr(LHSExp, RHSExp, ResultType, RLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000410}
411
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000412QualType Sema::
413CheckOCUVectorComponent(QualType baseType, SourceLocation OpLoc,
414 IdentifierInfo &CompName, SourceLocation CompLoc) {
Chris Lattnerc8629632007-07-31 19:29:30 +0000415 const OCUVectorType *vecType = baseType->getAsOCUVectorType();
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000416
417 // The vector accessor can't exceed the number of elements.
418 const char *compStr = CompName.getName();
419 if (strlen(compStr) > vecType->getNumElements()) {
420 Diag(OpLoc, diag::err_ocuvector_component_exceeds_length,
421 baseType.getAsString(), SourceRange(CompLoc));
422 return QualType();
423 }
424 // The component names must come from the same set.
Chris Lattner88dca042007-08-02 22:33:49 +0000425 if (vecType->getPointAccessorIdx(*compStr) != -1) {
426 do
427 compStr++;
428 while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1);
429 } else if (vecType->getColorAccessorIdx(*compStr) != -1) {
430 do
431 compStr++;
432 while (*compStr && vecType->getColorAccessorIdx(*compStr) != -1);
433 } else if (vecType->getTextureAccessorIdx(*compStr) != -1) {
434 do
435 compStr++;
436 while (*compStr && vecType->getTextureAccessorIdx(*compStr) != -1);
437 }
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000438
439 if (*compStr) {
440 // We didn't get to the end of the string. This means the component names
441 // didn't come from the same set *or* we encountered an illegal name.
442 Diag(OpLoc, diag::err_ocuvector_component_name_illegal,
443 std::string(compStr,compStr+1), SourceRange(CompLoc));
444 return QualType();
445 }
446 // Each component accessor can't exceed the vector type.
447 compStr = CompName.getName();
448 while (*compStr) {
449 if (vecType->isAccessorWithinNumElements(*compStr))
450 compStr++;
451 else
452 break;
453 }
454 if (*compStr) {
455 // We didn't get to the end of the string. This means a component accessor
456 // exceeds the number of elements in the vector.
457 Diag(OpLoc, diag::err_ocuvector_component_exceeds_length,
458 baseType.getAsString(), SourceRange(CompLoc));
459 return QualType();
460 }
461 // The component accessor looks fine - now we need to compute the actual type.
462 // The vector type is implied by the component accessor. For example,
463 // vec4.b is a float, vec4.xy is a vec2, vec4.rgb is a vec3, etc.
464 unsigned CompSize = strlen(CompName.getName());
465 if (CompSize == 1)
466 return vecType->getElementType();
Steve Naroffbea0b342007-07-29 16:33:31 +0000467
468 QualType VT = Context.getOCUVectorType(vecType->getElementType(), CompSize);
469 // Now look up the TypeDefDecl from the vector type. Without this,
470 // diagostics look bad. We want OCU vector types to appear built-in.
471 for (unsigned i = 0, e = OCUVectorDecls.size(); i != e; ++i) {
472 if (OCUVectorDecls[i]->getUnderlyingType() == VT)
473 return Context.getTypedefType(OCUVectorDecls[i]);
474 }
475 return VT; // should never get here (a typedef type should always be found).
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000476}
477
Reid Spencer5f016e22007-07-11 17:01:13 +0000478Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +0000479ActOnMemberReferenceExpr(ExprTy *Base, SourceLocation OpLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000480 tok::TokenKind OpKind, SourceLocation MemberLoc,
481 IdentifierInfo &Member) {
Steve Naroffdfa6aae2007-07-26 03:11:44 +0000482 Expr *BaseExpr = static_cast<Expr *>(Base);
483 assert(BaseExpr && "no record expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000484
Steve Naroffdfa6aae2007-07-26 03:11:44 +0000485 QualType BaseType = BaseExpr->getType();
486 assert(!BaseType.isNull() && "no type for member expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000487
Reid Spencer5f016e22007-07-11 17:01:13 +0000488 if (OpKind == tok::arrow) {
Chris Lattnerbefee482007-07-31 16:53:04 +0000489 if (const PointerType *PT = BaseType->getAsPointerType())
Steve Naroffdfa6aae2007-07-26 03:11:44 +0000490 BaseType = PT->getPointeeType();
491 else
492 return Diag(OpLoc, diag::err_typecheck_member_reference_arrow,
493 SourceRange(MemberLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000494 }
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000495 // The base type is either a record or an OCUVectorType.
Chris Lattnerc8629632007-07-31 19:29:30 +0000496 if (const RecordType *RTy = BaseType->getAsRecordType()) {
Steve Naroffdfa6aae2007-07-26 03:11:44 +0000497 RecordDecl *RDecl = RTy->getDecl();
498 if (RTy->isIncompleteType())
499 return Diag(OpLoc, diag::err_typecheck_incomplete_tag, RDecl->getName(),
500 BaseExpr->getSourceRange());
501 // The record definition is complete, now make sure the member is valid.
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000502 FieldDecl *MemberDecl = RDecl->getMember(&Member);
503 if (!MemberDecl)
Steve Naroffdfa6aae2007-07-26 03:11:44 +0000504 return Diag(OpLoc, diag::err_typecheck_no_member, Member.getName(),
505 SourceRange(MemberLoc));
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000506 return new MemberExpr(BaseExpr, OpKind==tok::arrow, MemberDecl, MemberLoc);
507 } else if (BaseType->isOCUVectorType() && OpKind == tok::period) {
Steve Naroff608e0ee2007-08-03 22:40:33 +0000508 // Component access limited to variables (reject vec4.rg.g).
509 if (!isa<DeclRefExpr>(BaseExpr))
510 return Diag(OpLoc, diag::err_ocuvector_component_access,
511 SourceRange(MemberLoc));
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000512 QualType ret = CheckOCUVectorComponent(BaseType, OpLoc, Member, MemberLoc);
513 if (ret.isNull())
514 return true;
Chris Lattner6481a572007-08-03 17:31:20 +0000515 return new OCUVectorElementExpr(ret, BaseExpr, Member, MemberLoc);
Steve Naroffdfa6aae2007-07-26 03:11:44 +0000516 } else
517 return Diag(OpLoc, diag::err_typecheck_member_reference_structUnion,
518 SourceRange(MemberLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000519}
520
Steve Narofff69936d2007-09-16 03:34:24 +0000521/// ActOnCallExpr - Handle a call to Fn with the specified array of arguments.
Reid Spencer5f016e22007-07-11 17:01:13 +0000522/// This provides the location of the left/right parens and a list of comma
523/// locations.
524Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +0000525ActOnCallExpr(ExprTy *fn, SourceLocation LParenLoc,
Chris Lattner74c469f2007-07-21 03:03:59 +0000526 ExprTy **args, unsigned NumArgsInCall,
Reid Spencer5f016e22007-07-11 17:01:13 +0000527 SourceLocation *CommaLocs, SourceLocation RParenLoc) {
Chris Lattner74c469f2007-07-21 03:03:59 +0000528 Expr *Fn = static_cast<Expr *>(fn);
529 Expr **Args = reinterpret_cast<Expr**>(args);
530 assert(Fn && "no function call expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000531
Chris Lattner74c469f2007-07-21 03:03:59 +0000532 UsualUnaryConversions(Fn);
533 QualType funcType = Fn->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000534
535 // C99 6.5.2.2p1 - "The expression that denotes the called function shall have
536 // type pointer to function".
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000537 const PointerType *PT = funcType->getAsPointerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000538 if (PT == 0)
Chris Lattner74c469f2007-07-21 03:03:59 +0000539 return Diag(Fn->getLocStart(), diag::err_typecheck_call_not_function,
540 SourceRange(Fn->getLocStart(), RParenLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000541
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000542 const FunctionType *funcT = PT->getPointeeType()->getAsFunctionType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000543 if (funcT == 0)
Chris Lattner74c469f2007-07-21 03:03:59 +0000544 return Diag(Fn->getLocStart(), diag::err_typecheck_call_not_function,
545 SourceRange(Fn->getLocStart(), RParenLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000546
547 // If a prototype isn't declared, the parser implicitly defines a func decl
548 QualType resultType = funcT->getResultType();
549
550 if (const FunctionTypeProto *proto = dyn_cast<FunctionTypeProto>(funcT)) {
551 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by
552 // assignment, to the types of the corresponding parameter, ...
553
554 unsigned NumArgsInProto = proto->getNumArgs();
555 unsigned NumArgsToCheck = NumArgsInCall;
556
557 if (NumArgsInCall < NumArgsInProto)
558 Diag(RParenLoc, diag::err_typecheck_call_too_few_args,
Chris Lattner74c469f2007-07-21 03:03:59 +0000559 Fn->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000560 else if (NumArgsInCall > NumArgsInProto) {
561 if (!proto->isVariadic()) {
Chris Lattnerd472b312007-07-21 03:09:58 +0000562 Diag(Args[NumArgsInProto]->getLocStart(),
Chris Lattner74c469f2007-07-21 03:03:59 +0000563 diag::err_typecheck_call_too_many_args, Fn->getSourceRange(),
Chris Lattnerd472b312007-07-21 03:09:58 +0000564 SourceRange(Args[NumArgsInProto]->getLocStart(),
565 Args[NumArgsInCall-1]->getLocEnd()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000566 }
567 NumArgsToCheck = NumArgsInProto;
568 }
569 // Continue to check argument types (even if we have too few/many args).
570 for (unsigned i = 0; i < NumArgsToCheck; i++) {
Chris Lattner74c469f2007-07-21 03:03:59 +0000571 Expr *argExpr = Args[i];
Steve Narofff69936d2007-09-16 03:34:24 +0000572 assert(argExpr && "ActOnCallExpr(): missing argument expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000573
574 QualType lhsType = proto->getArgType(i);
575 QualType rhsType = argExpr->getType();
Steve Naroff700204c2007-07-24 21:46:40 +0000576
Steve Naroff82c7e6d2007-07-25 20:45:33 +0000577 // If necessary, apply function/array conversion. C99 6.7.5.3p[7,8].
Chris Lattnerc8629632007-07-31 19:29:30 +0000578 if (const ArrayType *ary = lhsType->getAsArrayType())
Steve Naroff700204c2007-07-24 21:46:40 +0000579 lhsType = Context.getPointerType(ary->getElementType());
Steve Naroff82c7e6d2007-07-25 20:45:33 +0000580 else if (lhsType->isFunctionType())
Steve Naroff700204c2007-07-24 21:46:40 +0000581 lhsType = Context.getPointerType(lhsType);
582
Steve Naroff90045e82007-07-13 23:32:42 +0000583 AssignmentCheckResult result = CheckSingleAssignmentConstraints(lhsType,
584 argExpr);
Steve Narofff1120de2007-08-24 22:33:52 +0000585 if (Args[i] != argExpr) // The expression was converted.
586 Args[i] = argExpr; // Make sure we store the converted expression.
Reid Spencer5f016e22007-07-11 17:01:13 +0000587 SourceLocation l = argExpr->getLocStart();
588
589 // decode the result (notice that AST's are still created for extensions).
590 switch (result) {
591 case Compatible:
592 break;
593 case PointerFromInt:
594 // check for null pointer constant (C99 6.3.2.3p3)
Chris Lattner590b6642007-07-15 23:26:56 +0000595 if (!argExpr->isNullPointerConstant(Context)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000596 Diag(l, diag::ext_typecheck_passing_pointer_int,
597 lhsType.getAsString(), rhsType.getAsString(),
Chris Lattner74c469f2007-07-21 03:03:59 +0000598 Fn->getSourceRange(), argExpr->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000599 }
600 break;
601 case IntFromPointer:
602 Diag(l, diag::ext_typecheck_passing_pointer_int,
603 lhsType.getAsString(), rhsType.getAsString(),
Chris Lattner74c469f2007-07-21 03:03:59 +0000604 Fn->getSourceRange(), argExpr->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000605 break;
606 case IncompatiblePointer:
607 Diag(l, diag::ext_typecheck_passing_incompatible_pointer,
608 rhsType.getAsString(), lhsType.getAsString(),
Chris Lattner74c469f2007-07-21 03:03:59 +0000609 Fn->getSourceRange(), argExpr->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000610 break;
611 case CompatiblePointerDiscardsQualifiers:
612 Diag(l, diag::ext_typecheck_passing_discards_qualifiers,
613 rhsType.getAsString(), lhsType.getAsString(),
Chris Lattner74c469f2007-07-21 03:03:59 +0000614 Fn->getSourceRange(), argExpr->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000615 break;
616 case Incompatible:
617 return Diag(l, diag::err_typecheck_passing_incompatible,
618 rhsType.getAsString(), lhsType.getAsString(),
Chris Lattner74c469f2007-07-21 03:03:59 +0000619 Fn->getSourceRange(), argExpr->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000620 }
621 }
Steve Naroffb291ab62007-08-28 23:30:39 +0000622 if (NumArgsInCall > NumArgsInProto && proto->isVariadic()) {
623 // Promote the arguments (C99 6.5.2.2p7).
624 for (unsigned i = NumArgsInProto; i < NumArgsInCall; i++) {
625 Expr *argExpr = Args[i];
Steve Narofff69936d2007-09-16 03:34:24 +0000626 assert(argExpr && "ActOnCallExpr(): missing argument expression");
Steve Naroffb291ab62007-08-28 23:30:39 +0000627
628 DefaultArgumentPromotion(argExpr);
629 if (Args[i] != argExpr) // The expression was converted.
630 Args[i] = argExpr; // Make sure we store the converted expression.
631 }
632 } else if (NumArgsInCall != NumArgsInProto && !proto->isVariadic()) {
633 // Even if the types checked, bail if the number of arguments don't match.
Reid Spencer5f016e22007-07-11 17:01:13 +0000634 return true;
Steve Naroffb291ab62007-08-28 23:30:39 +0000635 }
636 } else if (isa<FunctionTypeNoProto>(funcT)) {
637 // Promote the arguments (C99 6.5.2.2p6).
638 for (unsigned i = 0; i < NumArgsInCall; i++) {
639 Expr *argExpr = Args[i];
Steve Narofff69936d2007-09-16 03:34:24 +0000640 assert(argExpr && "ActOnCallExpr(): missing argument expression");
Steve Naroffb291ab62007-08-28 23:30:39 +0000641
642 DefaultArgumentPromotion(argExpr);
643 if (Args[i] != argExpr) // The expression was converted.
644 Args[i] = argExpr; // Make sure we store the converted expression.
645 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000646 }
Chris Lattner59907c42007-08-10 20:18:51 +0000647 // Do special checking on direct calls to functions.
648 if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(Fn))
649 if (DeclRefExpr *DRExpr = dyn_cast<DeclRefExpr>(IcExpr->getSubExpr()))
650 if (FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRExpr->getDecl()))
Chris Lattner73d0d4f2007-08-30 17:45:32 +0000651 if (CheckFunctionCall(Fn, LParenLoc, RParenLoc, FDecl, Args,
652 NumArgsInCall))
Anders Carlsson71993dd2007-08-17 05:31:46 +0000653 return true;
Chris Lattner59907c42007-08-10 20:18:51 +0000654
Chris Lattner74c469f2007-07-21 03:03:59 +0000655 return new CallExpr(Fn, Args, NumArgsInCall, resultType, RParenLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000656}
657
658Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +0000659ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty,
Steve Naroffaff1edd2007-07-19 21:32:11 +0000660 SourceLocation RParenLoc, ExprTy *InitExpr) {
Steve Narofff69936d2007-09-16 03:34:24 +0000661 assert((Ty != 0) && "ActOnCompoundLiteral(): missing type");
Steve Naroff4aa88f82007-07-19 01:06:55 +0000662 QualType literalType = QualType::getFromOpaquePtr(Ty);
Steve Naroffaff1edd2007-07-19 21:32:11 +0000663 // FIXME: put back this assert when initializers are worked out.
Steve Narofff69936d2007-09-16 03:34:24 +0000664 //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression");
Steve Naroffaff1edd2007-07-19 21:32:11 +0000665 Expr *literalExpr = static_cast<Expr*>(InitExpr);
Steve Naroff4aa88f82007-07-19 01:06:55 +0000666
667 // FIXME: add semantic analysis (C99 6.5.2.5).
Steve Naroffaff1edd2007-07-19 21:32:11 +0000668 return new CompoundLiteralExpr(literalType, literalExpr);
Steve Naroff4aa88f82007-07-19 01:06:55 +0000669}
670
671Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +0000672ActOnInitList(SourceLocation LBraceLoc, ExprTy **initlist, unsigned NumInit,
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000673 SourceLocation RBraceLoc) {
Steve Narofff0090632007-09-02 02:04:30 +0000674 Expr **InitList = reinterpret_cast<Expr**>(initlist);
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000675
Steve Naroff08d92e42007-09-15 18:49:24 +0000676 // Semantic analysis for initializers is done by ActOnDeclarator() and
Steve Naroffd35005e2007-09-03 01:24:23 +0000677 // CheckInitializer() - it requires knowledge of the object being intialized.
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000678
Steve Naroff38374b02007-09-02 20:30:18 +0000679 InitListExpr *e = new InitListExpr(LBraceLoc, InitList, NumInit, RBraceLoc);
680 e->setType(Context.VoidTy); // FIXME: just a place holder for now.
681 return e;
Steve Naroff4aa88f82007-07-19 01:06:55 +0000682}
683
684Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +0000685ActOnCastExpr(SourceLocation LParenLoc, TypeTy *Ty,
Reid Spencer5f016e22007-07-11 17:01:13 +0000686 SourceLocation RParenLoc, ExprTy *Op) {
Steve Narofff69936d2007-09-16 03:34:24 +0000687 assert((Ty != 0) && (Op != 0) && "ActOnCastExpr(): missing type or expr");
Steve Naroff16beff82007-07-16 23:25:18 +0000688
689 Expr *castExpr = static_cast<Expr*>(Op);
690 QualType castType = QualType::getFromOpaquePtr(Ty);
691
Steve Naroff711602b2007-08-31 00:32:44 +0000692 UsualUnaryConversions(castExpr);
693
Chris Lattner75af4802007-07-18 16:00:06 +0000694 // C99 6.5.4p2: the cast type needs to be void or scalar and the expression
695 // type needs to be scalar.
Chris Lattner3da2db42007-10-29 04:26:44 +0000696 if (!castType->isVoidType()) { // Cast to void allows any expr type.
697 if (!castType->isScalarType())
698 return Diag(LParenLoc, diag::err_typecheck_cond_expect_scalar,
699 castType.getAsString(), SourceRange(LParenLoc, RParenLoc));
700 if (!castExpr->getType()->isScalarType()) {
701 return Diag(castExpr->getLocStart(),
702 diag::err_typecheck_expect_scalar_operand,
703 castExpr->getType().getAsString(),castExpr->getSourceRange());
704 }
Steve Naroff16beff82007-07-16 23:25:18 +0000705 }
706 return new CastExpr(castType, castExpr, LParenLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000707}
708
Steve Naroffd4dd30f2007-10-18 05:13:08 +0000709// promoteExprToType - a helper function to ensure we create exactly one
710// ImplicitCastExpr.
711static void promoteExprToType(Expr *&expr, QualType type) {
712 if (ImplicitCastExpr *impCast = dyn_cast<ImplicitCastExpr>(expr))
713 impCast->setType(type);
714 else
715 expr = new ImplicitCastExpr(type, expr);
716 return;
717}
718
Reid Spencer5f016e22007-07-11 17:01:13 +0000719inline QualType Sema::CheckConditionalOperands( // C99 6.5.15
Steve Naroff49b45262007-07-13 16:58:59 +0000720 Expr *&cond, Expr *&lex, Expr *&rex, SourceLocation questionLoc) {
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000721 UsualUnaryConversions(cond);
722 UsualUnaryConversions(lex);
723 UsualUnaryConversions(rex);
724 QualType condT = cond->getType();
725 QualType lexT = lex->getType();
726 QualType rexT = rex->getType();
727
Reid Spencer5f016e22007-07-11 17:01:13 +0000728 // first, check the condition.
Steve Naroff49b45262007-07-13 16:58:59 +0000729 if (!condT->isScalarType()) { // C99 6.5.15p2
730 Diag(cond->getLocStart(), diag::err_typecheck_cond_expect_scalar,
731 condT.getAsString());
Reid Spencer5f016e22007-07-11 17:01:13 +0000732 return QualType();
733 }
734 // now check the two expressions.
Steve Naroffa4332e22007-07-17 00:58:39 +0000735 if (lexT->isArithmeticType() && rexT->isArithmeticType()) { // C99 6.5.15p3,5
736 UsualArithmeticConversions(lex, rex);
737 return lex->getType();
738 }
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000739 if (const RecordType *LHSRT = lexT->getAsRecordType()) { // C99 6.5.15p3
740 if (const RecordType *RHSRT = rexT->getAsRecordType()) {
741
Chris Lattner73d0d4f2007-08-30 17:45:32 +0000742 if (LHSRT->getDecl()->getIdentifier() ==RHSRT->getDecl()->getIdentifier())
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000743 return lexT;
744
Reid Spencer5f016e22007-07-11 17:01:13 +0000745 Diag(questionLoc, diag::err_typecheck_cond_incompatible_operands,
Steve Naroff49b45262007-07-13 16:58:59 +0000746 lexT.getAsString(), rexT.getAsString(),
747 lex->getSourceRange(), rex->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000748 return QualType();
749 }
750 }
Chris Lattner590b6642007-07-15 23:26:56 +0000751 // C99 6.5.15p3
Steve Naroffd4dd30f2007-10-18 05:13:08 +0000752 if (lexT->isPointerType() && rex->isNullPointerConstant(Context)) {
753 promoteExprToType(rex, lexT); // promote the null to a pointer.
Steve Naroff49b45262007-07-13 16:58:59 +0000754 return lexT;
Steve Naroffd4dd30f2007-10-18 05:13:08 +0000755 }
756 if (rexT->isPointerType() && lex->isNullPointerConstant(Context)) {
757 promoteExprToType(lex, rexT); // promote the null to a pointer.
Steve Naroff49b45262007-07-13 16:58:59 +0000758 return rexT;
Steve Naroffd4dd30f2007-10-18 05:13:08 +0000759 }
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000760 if (const PointerType *LHSPT = lexT->getAsPointerType()) { // C99 6.5.15p3,6
761 if (const PointerType *RHSPT = rexT->getAsPointerType()) {
762 // get the "pointed to" types
763 QualType lhptee = LHSPT->getPointeeType();
764 QualType rhptee = RHSPT->getPointeeType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000765
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000766 // ignore qualifiers on void (C99 6.5.15p3, clause 6)
767 if (lhptee->isVoidType() &&
768 (rhptee->isObjectType() || rhptee->isIncompleteType()))
769 return lexT;
770 if (rhptee->isVoidType() &&
771 (lhptee->isObjectType() || lhptee->isIncompleteType()))
772 return rexT;
Reid Spencer5f016e22007-07-11 17:01:13 +0000773
Steve Naroffec0550f2007-10-15 20:41:53 +0000774 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
775 rhptee.getUnqualifiedType())) {
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000776 Diag(questionLoc, diag::ext_typecheck_cond_incompatible_pointers,
777 lexT.getAsString(), rexT.getAsString(),
778 lex->getSourceRange(), rex->getSourceRange());
779 return lexT; // FIXME: this is an _ext - is this return o.k?
780 }
781 // The pointer types are compatible.
Chris Lattner73d0d4f2007-08-30 17:45:32 +0000782 // C99 6.5.15p6: If both operands are pointers to compatible types *or* to
783 // differently qualified versions of compatible types, the result type is
784 // a pointer to an appropriately qualified version of the *composite*
785 // type.
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000786 return lexT; // FIXME: Need to return the composite type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000787 }
788 }
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000789
Steve Naroff49b45262007-07-13 16:58:59 +0000790 if (lexT->isVoidType() && rexT->isVoidType()) // C99 6.5.15p3
791 return lexT;
Reid Spencer5f016e22007-07-11 17:01:13 +0000792
793 Diag(questionLoc, diag::err_typecheck_cond_incompatible_operands,
Steve Naroff49b45262007-07-13 16:58:59 +0000794 lexT.getAsString(), rexT.getAsString(),
795 lex->getSourceRange(), rex->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000796 return QualType();
797}
798
Steve Narofff69936d2007-09-16 03:34:24 +0000799/// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null
Reid Spencer5f016e22007-07-11 17:01:13 +0000800/// in the case of a the GNU conditional expr extension.
Steve Narofff69936d2007-09-16 03:34:24 +0000801Action::ExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000802 SourceLocation ColonLoc,
803 ExprTy *Cond, ExprTy *LHS,
804 ExprTy *RHS) {
Chris Lattner26824902007-07-16 21:39:03 +0000805 Expr *CondExpr = (Expr *) Cond;
806 Expr *LHSExpr = (Expr *) LHS, *RHSExpr = (Expr *) RHS;
807 QualType result = CheckConditionalOperands(CondExpr, LHSExpr,
808 RHSExpr, QuestionLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000809 if (result.isNull())
810 return true;
Chris Lattner26824902007-07-16 21:39:03 +0000811 return new ConditionalOperator(CondExpr, LHSExpr, RHSExpr, result);
Reid Spencer5f016e22007-07-11 17:01:13 +0000812}
813
Steve Naroffb291ab62007-08-28 23:30:39 +0000814/// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that
815/// do not have a prototype. Integer promotions are performed on each
816/// argument, and arguments that have type float are promoted to double.
817void Sema::DefaultArgumentPromotion(Expr *&expr) {
818 QualType t = expr->getType();
819 assert(!t.isNull() && "DefaultArgumentPromotion - missing type");
820
821 if (t->isPromotableIntegerType()) // C99 6.3.1.1p2
822 promoteExprToType(expr, Context.IntTy);
823 if (t == Context.FloatTy)
824 promoteExprToType(expr, Context.DoubleTy);
825}
826
Steve Narofffa2eaab2007-07-15 02:02:06 +0000827/// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4).
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000828void Sema::DefaultFunctionArrayConversion(Expr *&e) {
Steve Narofffa2eaab2007-07-15 02:02:06 +0000829 QualType t = e->getType();
Steve Naroff90045e82007-07-13 23:32:42 +0000830 assert(!t.isNull() && "DefaultFunctionArrayConversion - missing type");
Bill Wendling08ad47c2007-07-17 03:52:31 +0000831
Chris Lattnera1d9fde2007-07-31 16:56:34 +0000832 if (const ReferenceType *ref = t->getAsReferenceType()) {
Bill Wendlingea5e79f2007-07-17 04:16:47 +0000833 promoteExprToType(e, ref->getReferenceeType()); // C++ [expr]
834 t = e->getType();
835 }
Steve Narofffa2eaab2007-07-15 02:02:06 +0000836 if (t->isFunctionType())
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000837 promoteExprToType(e, Context.getPointerType(t));
Chris Lattnerc8629632007-07-31 19:29:30 +0000838 else if (const ArrayType *ary = t->getAsArrayType())
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000839 promoteExprToType(e, Context.getPointerType(ary->getElementType()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000840}
841
842/// UsualUnaryConversion - Performs various conversions that are common to most
843/// operators (C99 6.3). The conversions of array and function types are
844/// sometimes surpressed. For example, the array->pointer conversion doesn't
845/// apply if the array is an argument to the sizeof or address (&) operators.
846/// In these instances, this routine should *not* be called.
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000847void Sema::UsualUnaryConversions(Expr *&expr) {
Steve Naroff49b45262007-07-13 16:58:59 +0000848 QualType t = expr->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000849 assert(!t.isNull() && "UsualUnaryConversions - missing type");
850
Chris Lattnera1d9fde2007-07-31 16:56:34 +0000851 if (const ReferenceType *ref = t->getAsReferenceType()) {
Bill Wendlingea5e79f2007-07-17 04:16:47 +0000852 promoteExprToType(expr, ref->getReferenceeType()); // C++ [expr]
853 t = expr->getType();
854 }
Steve Narofffa2eaab2007-07-15 02:02:06 +0000855 if (t->isPromotableIntegerType()) // C99 6.3.1.1p2
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000856 promoteExprToType(expr, Context.IntTy);
857 else
858 DefaultFunctionArrayConversion(expr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000859}
860
Chris Lattner73d0d4f2007-08-30 17:45:32 +0000861/// UsualArithmeticConversions - Performs various conversions that are common to
Reid Spencer5f016e22007-07-11 17:01:13 +0000862/// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this
863/// routine returns the first non-arithmetic type found. The client is
864/// responsible for emitting appropriate error diagnostics.
Steve Naroff9f5fa9b2007-08-24 19:07:16 +0000865QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr,
866 bool isCompAssign) {
Steve Naroff8702a0f2007-08-25 19:54:59 +0000867 if (!isCompAssign) {
868 UsualUnaryConversions(lhsExpr);
869 UsualUnaryConversions(rhsExpr);
870 }
Steve Naroff3187e202007-10-18 18:55:53 +0000871 // For conversion purposes, we ignore any qualifiers.
872 // For example, "const float" and "float" are equivalent.
873 QualType lhs = lhsExpr->getType().getUnqualifiedType();
874 QualType rhs = rhsExpr->getType().getUnqualifiedType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000875
876 // If both types are identical, no conversion is needed.
Steve Naroff3187e202007-10-18 18:55:53 +0000877 if (lhs == rhs)
878 return lhs;
Reid Spencer5f016e22007-07-11 17:01:13 +0000879
880 // If either side is a non-arithmetic type (e.g. a pointer), we are done.
881 // The caller can deal with this (e.g. pointer + int).
Steve Naroffa4332e22007-07-17 00:58:39 +0000882 if (!lhs->isArithmeticType() || !rhs->isArithmeticType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +0000883 return lhs;
Reid Spencer5f016e22007-07-11 17:01:13 +0000884
885 // At this point, we have two different arithmetic types.
886
887 // Handle complex types first (C99 6.3.1.8p1).
888 if (lhs->isComplexType() || rhs->isComplexType()) {
889 // if we have an integer operand, the result is the complex type.
Steve Naroffa4332e22007-07-17 00:58:39 +0000890 if (rhs->isIntegerType()) { // convert the rhs to the lhs complex type.
Steve Naroff9f5fa9b2007-08-24 19:07:16 +0000891 if (!isCompAssign) promoteExprToType(rhsExpr, lhs);
892 return lhs;
Steve Naroffa4332e22007-07-17 00:58:39 +0000893 }
894 if (lhs->isIntegerType()) { // convert the lhs to the rhs complex type.
Steve Naroff9f5fa9b2007-08-24 19:07:16 +0000895 if (!isCompAssign) promoteExprToType(lhsExpr, rhs);
896 return rhs;
Steve Naroffa4332e22007-07-17 00:58:39 +0000897 }
Steve Narofff1448a02007-08-27 01:27:54 +0000898 // This handles complex/complex, complex/float, or float/complex.
899 // When both operands are complex, the shorter operand is converted to the
900 // type of the longer, and that is the type of the result. This corresponds
901 // to what is done when combining two real floating-point operands.
902 // The fun begins when size promotion occur across type domains.
903 // From H&S 6.3.4: When one operand is complex and the other is a real
904 // floating-point type, the less precise type is converted, within it's
905 // real or complex domain, to the precision of the other type. For example,
906 // when combining a "long double" with a "double _Complex", the
907 // "double _Complex" is promoted to "long double _Complex".
Steve Narofffb0d4962007-08-27 15:30:22 +0000908 int result = Context.compareFloatingType(lhs, rhs);
909
910 if (result > 0) { // The left side is bigger, convert rhs.
Steve Naroff55fe4552007-08-27 21:32:55 +0000911 rhs = Context.getFloatingTypeOfSizeWithinDomain(lhs, rhs);
912 if (!isCompAssign)
913 promoteExprToType(rhsExpr, rhs);
914 } else if (result < 0) { // The right side is bigger, convert lhs.
915 lhs = Context.getFloatingTypeOfSizeWithinDomain(rhs, lhs);
916 if (!isCompAssign)
917 promoteExprToType(lhsExpr, lhs);
918 }
919 // At this point, lhs and rhs have the same rank/size. Now, make sure the
920 // domains match. This is a requirement for our implementation, C99
921 // does not require this promotion.
922 if (lhs != rhs) { // Domains don't match, we have complex/float mix.
923 if (lhs->isRealFloatingType()) { // handle "double, _Complex double".
Steve Naroff29960362007-08-27 21:43:43 +0000924 if (!isCompAssign)
925 promoteExprToType(lhsExpr, rhs);
926 return rhs;
Steve Naroff55fe4552007-08-27 21:32:55 +0000927 } else { // handle "_Complex double, double".
Steve Naroff29960362007-08-27 21:43:43 +0000928 if (!isCompAssign)
929 promoteExprToType(rhsExpr, lhs);
930 return lhs;
Steve Naroff55fe4552007-08-27 21:32:55 +0000931 }
Steve Naroffa4332e22007-07-17 00:58:39 +0000932 }
Steve Naroff29960362007-08-27 21:43:43 +0000933 return lhs; // The domain/size match exactly.
Reid Spencer5f016e22007-07-11 17:01:13 +0000934 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000935 // Now handle "real" floating types (i.e. float, double, long double).
936 if (lhs->isRealFloatingType() || rhs->isRealFloatingType()) {
937 // if we have an integer operand, the result is the real floating type.
Steve Naroffa4332e22007-07-17 00:58:39 +0000938 if (rhs->isIntegerType()) { // convert rhs to the lhs floating point type.
Steve Naroff9f5fa9b2007-08-24 19:07:16 +0000939 if (!isCompAssign) promoteExprToType(rhsExpr, lhs);
940 return lhs;
Steve Naroffa4332e22007-07-17 00:58:39 +0000941 }
942 if (lhs->isIntegerType()) { // convert lhs to the rhs floating point type.
Steve Naroff9f5fa9b2007-08-24 19:07:16 +0000943 if (!isCompAssign) promoteExprToType(lhsExpr, rhs);
944 return rhs;
Steve Naroffa4332e22007-07-17 00:58:39 +0000945 }
Steve Narofffa2eaab2007-07-15 02:02:06 +0000946 // We have two real floating types, float/complex combos were handled above.
947 // Convert the smaller operand to the bigger result.
Steve Narofffb0d4962007-08-27 15:30:22 +0000948 int result = Context.compareFloatingType(lhs, rhs);
949
950 if (result > 0) { // convert the rhs
Steve Naroff9f5fa9b2007-08-24 19:07:16 +0000951 if (!isCompAssign) promoteExprToType(rhsExpr, lhs);
952 return lhs;
Steve Naroffa4332e22007-07-17 00:58:39 +0000953 }
Steve Narofffb0d4962007-08-27 15:30:22 +0000954 if (result < 0) { // convert the lhs
955 if (!isCompAssign) promoteExprToType(lhsExpr, rhs); // convert the lhs
956 return rhs;
957 }
958 assert(0 && "Sema::UsualArithmeticConversions(): illegal float comparison");
Reid Spencer5f016e22007-07-11 17:01:13 +0000959 }
Steve Narofffa2eaab2007-07-15 02:02:06 +0000960 // Finally, we have two differing integer types.
Steve Naroffa4332e22007-07-17 00:58:39 +0000961 if (Context.maxIntegerType(lhs, rhs) == lhs) { // convert the rhs
Steve Naroff9f5fa9b2007-08-24 19:07:16 +0000962 if (!isCompAssign) promoteExprToType(rhsExpr, lhs);
963 return lhs;
Steve Naroffa4332e22007-07-17 00:58:39 +0000964 }
Steve Naroff9f5fa9b2007-08-24 19:07:16 +0000965 if (!isCompAssign) promoteExprToType(lhsExpr, rhs); // convert the lhs
966 return rhs;
Reid Spencer5f016e22007-07-11 17:01:13 +0000967}
968
969// CheckPointerTypesForAssignment - This is a very tricky routine (despite
970// being closely modeled after the C99 spec:-). The odd characteristic of this
971// routine is it effectively iqnores the qualifiers on the top level pointee.
972// This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3].
973// FIXME: add a couple examples in this comment.
974Sema::AssignmentCheckResult
975Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) {
976 QualType lhptee, rhptee;
977
978 // get the "pointed to" type (ignoring qualifiers at the top level)
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000979 lhptee = lhsType->getAsPointerType()->getPointeeType();
980 rhptee = rhsType->getAsPointerType()->getPointeeType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000981
982 // make sure we operate on the canonical type
983 lhptee = lhptee.getCanonicalType();
984 rhptee = rhptee.getCanonicalType();
985
986 AssignmentCheckResult r = Compatible;
987
988 // C99 6.5.16.1p1: This following citation is common to constraints
989 // 3 & 4 (below). ...and the type *pointed to* by the left has all the
990 // qualifiers of the type *pointed to* by the right;
991 if ((lhptee.getQualifiers() & rhptee.getQualifiers()) !=
992 rhptee.getQualifiers())
993 r = CompatiblePointerDiscardsQualifiers;
994
995 // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or
996 // incomplete type and the other is a pointer to a qualified or unqualified
997 // version of void...
998 if (lhptee.getUnqualifiedType()->isVoidType() &&
999 (rhptee->isObjectType() || rhptee->isIncompleteType()))
1000 ;
1001 else if (rhptee.getUnqualifiedType()->isVoidType() &&
1002 (lhptee->isObjectType() || lhptee->isIncompleteType()))
1003 ;
1004 // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or
1005 // unqualified versions of compatible types, ...
Steve Naroffec0550f2007-10-15 20:41:53 +00001006 else if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
1007 rhptee.getUnqualifiedType()))
Reid Spencer5f016e22007-07-11 17:01:13 +00001008 r = IncompatiblePointer; // this "trumps" PointerAssignDiscardsQualifiers
1009 return r;
1010}
1011
1012/// CheckAssignmentConstraints (C99 6.5.16) - This routine currently
1013/// has code to accommodate several GCC extensions when type checking
1014/// pointers. Here are some objectionable examples that GCC considers warnings:
1015///
1016/// int a, *pint;
1017/// short *pshort;
1018/// struct foo *pfoo;
1019///
1020/// pint = pshort; // warning: assignment from incompatible pointer type
1021/// a = pint; // warning: assignment makes integer from pointer without a cast
1022/// pint = a; // warning: assignment makes pointer from integer without a cast
1023/// pint = pfoo; // warning: assignment from incompatible pointer type
1024///
1025/// As a result, the code for dealing with pointers is more complex than the
1026/// C99 spec dictates.
1027/// Note: the warning above turn into errors when -pedantic-errors is enabled.
1028///
1029Sema::AssignmentCheckResult
1030Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) {
Chris Lattner84d35ce2007-10-29 05:15:40 +00001031 if (lhsType.getCanonicalType() == rhsType.getCanonicalType())
1032 return Compatible; // common case, fast path...
Steve Naroff700204c2007-07-24 21:46:40 +00001033
Anders Carlsson793680e2007-10-12 23:56:29 +00001034 if (lhsType->isReferenceType() || rhsType->isReferenceType()) {
Steve Naroffec0550f2007-10-15 20:41:53 +00001035 if (Context.referenceTypesAreCompatible(lhsType, rhsType))
Anders Carlsson793680e2007-10-12 23:56:29 +00001036 return Compatible;
1037 } else if (lhsType->isArithmeticType() && rhsType->isArithmeticType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001038 if (lhsType->isVectorType() || rhsType->isVectorType()) {
1039 if (lhsType.getCanonicalType() != rhsType.getCanonicalType())
1040 return Incompatible;
1041 }
1042 return Compatible;
1043 } else if (lhsType->isPointerType()) {
1044 if (rhsType->isIntegerType())
1045 return PointerFromInt;
1046
1047 if (rhsType->isPointerType())
1048 return CheckPointerTypesForAssignment(lhsType, rhsType);
1049 } else if (rhsType->isPointerType()) {
1050 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer.
1051 if ((lhsType->isIntegerType()) && (lhsType != Context.BoolTy))
1052 return IntFromPointer;
1053
1054 if (lhsType->isPointerType())
1055 return CheckPointerTypesForAssignment(lhsType, rhsType);
1056 } else if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) {
Steve Naroffec0550f2007-10-15 20:41:53 +00001057 if (Context.tagTypesAreCompatible(lhsType, rhsType))
Reid Spencer5f016e22007-07-11 17:01:13 +00001058 return Compatible;
Reid Spencer5f016e22007-07-11 17:01:13 +00001059 }
1060 return Incompatible;
1061}
1062
Steve Naroff90045e82007-07-13 23:32:42 +00001063Sema::AssignmentCheckResult
1064Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) {
Chris Lattner943140e2007-10-16 02:55:40 +00001065 // This check seems unnatural, however it is necessary to ensure the proper
Steve Naroff90045e82007-07-13 23:32:42 +00001066 // conversion of functions/arrays. If the conversion were done for all
Steve Naroff08d92e42007-09-15 18:49:24 +00001067 // DeclExpr's (created by ActOnIdentifierExpr), it would mess up the unary
Steve Naroff90045e82007-07-13 23:32:42 +00001068 // expressions that surpress this implicit conversion (&, sizeof).
Chris Lattner943140e2007-10-16 02:55:40 +00001069 //
1070 // Suppress this for references: C99 8.5.3p5. FIXME: revisit when references
1071 // are better understood.
1072 if (!lhsType->isReferenceType())
1073 DefaultFunctionArrayConversion(rExpr);
Steve Narofff1120de2007-08-24 22:33:52 +00001074
1075 Sema::AssignmentCheckResult result;
Steve Naroff90045e82007-07-13 23:32:42 +00001076
Steve Narofff1120de2007-08-24 22:33:52 +00001077 result = CheckAssignmentConstraints(lhsType, rExpr->getType());
1078
1079 // C99 6.5.16.1p2: The value of the right operand is converted to the
1080 // type of the assignment expression.
1081 if (rExpr->getType() != lhsType)
1082 promoteExprToType(rExpr, lhsType);
1083 return result;
Steve Naroff90045e82007-07-13 23:32:42 +00001084}
1085
1086Sema::AssignmentCheckResult
1087Sema::CheckCompoundAssignmentConstraints(QualType lhsType, QualType rhsType) {
1088 return CheckAssignmentConstraints(lhsType, rhsType);
1089}
1090
Steve Naroff49b45262007-07-13 16:58:59 +00001091inline void Sema::InvalidOperands(SourceLocation loc, Expr *&lex, Expr *&rex) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001092 Diag(loc, diag::err_typecheck_invalid_operands,
1093 lex->getType().getAsString(), rex->getType().getAsString(),
1094 lex->getSourceRange(), rex->getSourceRange());
1095}
1096
Steve Naroff49b45262007-07-13 16:58:59 +00001097inline QualType Sema::CheckVectorOperands(SourceLocation loc, Expr *&lex,
1098 Expr *&rex) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001099 QualType lhsType = lex->getType(), rhsType = rex->getType();
1100
1101 // make sure the vector types are identical.
1102 if (lhsType == rhsType)
1103 return lhsType;
1104 // You cannot convert between vector values of different size.
1105 Diag(loc, diag::err_typecheck_vector_not_convertable,
1106 lex->getType().getAsString(), rex->getType().getAsString(),
1107 lex->getSourceRange(), rex->getSourceRange());
1108 return QualType();
1109}
1110
1111inline QualType Sema::CheckMultiplyDivideOperands(
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001112 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00001113{
Steve Naroff90045e82007-07-13 23:32:42 +00001114 QualType lhsType = lex->getType(), rhsType = rex->getType();
1115
1116 if (lhsType->isVectorType() || rhsType->isVectorType())
Reid Spencer5f016e22007-07-11 17:01:13 +00001117 return CheckVectorOperands(loc, lex, rex);
Steve Naroff49b45262007-07-13 16:58:59 +00001118
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001119 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Reid Spencer5f016e22007-07-11 17:01:13 +00001120
Steve Naroffa4332e22007-07-17 00:58:39 +00001121 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001122 return compType;
Reid Spencer5f016e22007-07-11 17:01:13 +00001123 InvalidOperands(loc, lex, rex);
1124 return QualType();
1125}
1126
1127inline QualType Sema::CheckRemainderOperands(
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001128 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00001129{
Steve Naroff90045e82007-07-13 23:32:42 +00001130 QualType lhsType = lex->getType(), rhsType = rex->getType();
1131
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001132 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Reid Spencer5f016e22007-07-11 17:01:13 +00001133
Steve Naroffa4332e22007-07-17 00:58:39 +00001134 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001135 return compType;
Reid Spencer5f016e22007-07-11 17:01:13 +00001136 InvalidOperands(loc, lex, rex);
1137 return QualType();
1138}
1139
1140inline QualType Sema::CheckAdditionOperands( // C99 6.5.6
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001141 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00001142{
Steve Naroff3e5e5562007-07-16 22:23:01 +00001143 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Steve Naroff49b45262007-07-13 16:58:59 +00001144 return CheckVectorOperands(loc, lex, rex);
1145
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001146 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Steve Naroff3e5e5562007-07-16 22:23:01 +00001147
Reid Spencer5f016e22007-07-11 17:01:13 +00001148 // handle the common case first (both operands are arithmetic).
Steve Naroffa4332e22007-07-17 00:58:39 +00001149 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001150 return compType;
Reid Spencer5f016e22007-07-11 17:01:13 +00001151
Steve Naroffa4332e22007-07-17 00:58:39 +00001152 if (lex->getType()->isPointerType() && rex->getType()->isIntegerType())
1153 return lex->getType();
1154 if (lex->getType()->isIntegerType() && rex->getType()->isPointerType())
1155 return rex->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001156 InvalidOperands(loc, lex, rex);
1157 return QualType();
1158}
1159
1160inline QualType Sema::CheckSubtractionOperands( // C99 6.5.6
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001161 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00001162{
Steve Naroff3e5e5562007-07-16 22:23:01 +00001163 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Reid Spencer5f016e22007-07-11 17:01:13 +00001164 return CheckVectorOperands(loc, lex, rex);
Steve Naroff90045e82007-07-13 23:32:42 +00001165
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001166 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Reid Spencer5f016e22007-07-11 17:01:13 +00001167
1168 // handle the common case first (both operands are arithmetic).
Steve Naroffa4332e22007-07-17 00:58:39 +00001169 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001170 return compType;
Steve Naroff3e5e5562007-07-16 22:23:01 +00001171
1172 if (lex->getType()->isPointerType() && rex->getType()->isIntegerType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001173 return compType;
Steve Naroff3e5e5562007-07-16 22:23:01 +00001174 if (lex->getType()->isPointerType() && rex->getType()->isPointerType())
Chris Lattner8b9023b2007-07-13 03:05:23 +00001175 return Context.getPointerDiffType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001176 InvalidOperands(loc, lex, rex);
1177 return QualType();
1178}
1179
1180inline QualType Sema::CheckShiftOperands( // C99 6.5.7
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001181 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00001182{
1183 // FIXME: Shifts don't perform usual arithmetic conversions. This is wrong
1184 // for int << longlong -> the result type should be int, not long long.
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001185 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Reid Spencer5f016e22007-07-11 17:01:13 +00001186
Steve Naroffa4332e22007-07-17 00:58:39 +00001187 // handle the common case first (both operands are arithmetic).
1188 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001189 return compType;
Reid Spencer5f016e22007-07-11 17:01:13 +00001190 InvalidOperands(loc, lex, rex);
1191 return QualType();
1192}
1193
Chris Lattnera5937dd2007-08-26 01:18:55 +00001194inline QualType Sema::CheckCompareOperands( // C99 6.5.8
1195 Expr *&lex, Expr *&rex, SourceLocation loc, bool isRelational)
Reid Spencer5f016e22007-07-11 17:01:13 +00001196{
Chris Lattnera5937dd2007-08-26 01:18:55 +00001197 // C99 6.5.8p3 / C99 6.5.9p4
Steve Naroff30bf7712007-08-10 18:26:40 +00001198 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
1199 UsualArithmeticConversions(lex, rex);
1200 else {
1201 UsualUnaryConversions(lex);
1202 UsualUnaryConversions(rex);
1203 }
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001204 QualType lType = lex->getType();
1205 QualType rType = rex->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001206
Chris Lattnera5937dd2007-08-26 01:18:55 +00001207 if (isRelational) {
1208 if (lType->isRealType() && rType->isRealType())
1209 return Context.IntTy;
1210 } else {
Ted Kremenek6a261552007-10-29 16:40:01 +00001211 if (lType->isFloatingType() && rType->isFloatingType()) {
1212 // Special case: check for x == x (which is OK).
1213 bool EmitWarning = true;
1214
1215 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex))
1216 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex))
1217 if (DRL->getDecl() == DRR->getDecl())
1218 EmitWarning = false;
1219
1220 if (EmitWarning)
1221 Diag(loc, diag::warn_floatingpoint_eq);
1222 }
1223
Chris Lattnera5937dd2007-08-26 01:18:55 +00001224 if (lType->isArithmeticType() && rType->isArithmeticType())
1225 return Context.IntTy;
1226 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001227
Chris Lattnerd28f8152007-08-26 01:10:14 +00001228 bool LHSIsNull = lex->isNullPointerConstant(Context);
1229 bool RHSIsNull = rex->isNullPointerConstant(Context);
1230
Chris Lattnera5937dd2007-08-26 01:18:55 +00001231 // All of the following pointer related warnings are GCC extensions, except
1232 // when handling null pointer constants. One day, we can consider making them
1233 // errors (when -pedantic-errors is enabled).
Steve Naroff77878cc2007-08-27 04:08:11 +00001234 if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2
Chris Lattnerd28f8152007-08-26 01:10:14 +00001235 if (!LHSIsNull && !RHSIsNull &&
Steve Naroffec0550f2007-10-15 20:41:53 +00001236 !Context.pointerTypesAreCompatible(lType.getUnqualifiedType(),
1237 rType.getUnqualifiedType())) {
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001238 Diag(loc, diag::ext_typecheck_comparison_of_distinct_pointers,
1239 lType.getAsString(), rType.getAsString(),
1240 lex->getSourceRange(), rex->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +00001241 }
Chris Lattnerd28f8152007-08-26 01:10:14 +00001242 promoteExprToType(rex, lType); // promote the pointer to pointer
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001243 return Context.IntTy;
1244 }
1245 if (lType->isPointerType() && rType->isIntegerType()) {
Chris Lattnerd28f8152007-08-26 01:10:14 +00001246 if (!RHSIsNull)
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001247 Diag(loc, diag::ext_typecheck_comparison_of_pointer_integer,
1248 lType.getAsString(), rType.getAsString(),
1249 lex->getSourceRange(), rex->getSourceRange());
Chris Lattnerd28f8152007-08-26 01:10:14 +00001250 promoteExprToType(rex, lType); // promote the integer to pointer
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001251 return Context.IntTy;
1252 }
1253 if (lType->isIntegerType() && rType->isPointerType()) {
Chris Lattnerd28f8152007-08-26 01:10:14 +00001254 if (!LHSIsNull)
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001255 Diag(loc, diag::ext_typecheck_comparison_of_pointer_integer,
1256 lType.getAsString(), rType.getAsString(),
1257 lex->getSourceRange(), rex->getSourceRange());
Chris Lattnerd28f8152007-08-26 01:10:14 +00001258 promoteExprToType(lex, rType); // promote the integer to pointer
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001259 return Context.IntTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00001260 }
1261 InvalidOperands(loc, lex, rex);
1262 return QualType();
1263}
1264
Reid Spencer5f016e22007-07-11 17:01:13 +00001265inline QualType Sema::CheckBitwiseOperands(
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001266 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00001267{
Steve Naroff3e5e5562007-07-16 22:23:01 +00001268 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Reid Spencer5f016e22007-07-11 17:01:13 +00001269 return CheckVectorOperands(loc, lex, rex);
Steve Naroff90045e82007-07-13 23:32:42 +00001270
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001271 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Reid Spencer5f016e22007-07-11 17:01:13 +00001272
Steve Naroffa4332e22007-07-17 00:58:39 +00001273 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001274 return compType;
Reid Spencer5f016e22007-07-11 17:01:13 +00001275 InvalidOperands(loc, lex, rex);
1276 return QualType();
1277}
1278
1279inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14]
Steve Naroff49b45262007-07-13 16:58:59 +00001280 Expr *&lex, Expr *&rex, SourceLocation loc)
Reid Spencer5f016e22007-07-11 17:01:13 +00001281{
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001282 UsualUnaryConversions(lex);
1283 UsualUnaryConversions(rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001284
Steve Naroffa4332e22007-07-17 00:58:39 +00001285 if (lex->getType()->isScalarType() || rex->getType()->isScalarType())
Reid Spencer5f016e22007-07-11 17:01:13 +00001286 return Context.IntTy;
1287 InvalidOperands(loc, lex, rex);
1288 return QualType();
1289}
1290
1291inline QualType Sema::CheckAssignmentOperands( // C99 6.5.16.1
Steve Narofff1120de2007-08-24 22:33:52 +00001292 Expr *lex, Expr *&rex, SourceLocation loc, QualType compoundType)
Reid Spencer5f016e22007-07-11 17:01:13 +00001293{
1294 QualType lhsType = lex->getType();
1295 QualType rhsType = compoundType.isNull() ? rex->getType() : compoundType;
1296 bool hadError = false;
1297 Expr::isModifiableLvalueResult mlval = lex->isModifiableLvalue();
1298
1299 switch (mlval) { // C99 6.5.16p2
1300 case Expr::MLV_Valid:
1301 break;
1302 case Expr::MLV_ConstQualified:
1303 Diag(loc, diag::err_typecheck_assign_const, lex->getSourceRange());
1304 hadError = true;
1305 break;
1306 case Expr::MLV_ArrayType:
1307 Diag(loc, diag::err_typecheck_array_not_modifiable_lvalue,
1308 lhsType.getAsString(), lex->getSourceRange());
1309 return QualType();
1310 case Expr::MLV_NotObjectType:
1311 Diag(loc, diag::err_typecheck_non_object_not_modifiable_lvalue,
1312 lhsType.getAsString(), lex->getSourceRange());
1313 return QualType();
1314 case Expr::MLV_InvalidExpression:
1315 Diag(loc, diag::err_typecheck_expression_not_modifiable_lvalue,
1316 lex->getSourceRange());
1317 return QualType();
1318 case Expr::MLV_IncompleteType:
1319 case Expr::MLV_IncompleteVoidType:
1320 Diag(loc, diag::err_typecheck_incomplete_type_not_modifiable_lvalue,
1321 lhsType.getAsString(), lex->getSourceRange());
1322 return QualType();
Steve Narofffec0b492007-07-30 03:29:09 +00001323 case Expr::MLV_DuplicateVectorComponents:
1324 Diag(loc, diag::err_typecheck_duplicate_vector_components_not_mlvalue,
1325 lex->getSourceRange());
1326 return QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001327 }
Steve Naroff90045e82007-07-13 23:32:42 +00001328 AssignmentCheckResult result;
1329
1330 if (compoundType.isNull())
1331 result = CheckSingleAssignmentConstraints(lhsType, rex);
1332 else
1333 result = CheckCompoundAssignmentConstraints(lhsType, rhsType);
Steve Naroffd1861fd2007-07-31 12:34:36 +00001334
Reid Spencer5f016e22007-07-11 17:01:13 +00001335 // decode the result (notice that extensions still return a type).
1336 switch (result) {
1337 case Compatible:
1338 break;
1339 case Incompatible:
1340 Diag(loc, diag::err_typecheck_assign_incompatible,
1341 lhsType.getAsString(), rhsType.getAsString(),
1342 lex->getSourceRange(), rex->getSourceRange());
1343 hadError = true;
1344 break;
1345 case PointerFromInt:
1346 // check for null pointer constant (C99 6.3.2.3p3)
Chris Lattner590b6642007-07-15 23:26:56 +00001347 if (compoundType.isNull() && !rex->isNullPointerConstant(Context)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001348 Diag(loc, diag::ext_typecheck_assign_pointer_int,
1349 lhsType.getAsString(), rhsType.getAsString(),
1350 lex->getSourceRange(), rex->getSourceRange());
1351 }
1352 break;
1353 case IntFromPointer:
1354 Diag(loc, diag::ext_typecheck_assign_pointer_int,
1355 lhsType.getAsString(), rhsType.getAsString(),
1356 lex->getSourceRange(), rex->getSourceRange());
1357 break;
1358 case IncompatiblePointer:
1359 Diag(loc, diag::ext_typecheck_assign_incompatible_pointer,
1360 lhsType.getAsString(), rhsType.getAsString(),
1361 lex->getSourceRange(), rex->getSourceRange());
1362 break;
1363 case CompatiblePointerDiscardsQualifiers:
1364 Diag(loc, diag::ext_typecheck_assign_discards_qualifiers,
1365 lhsType.getAsString(), rhsType.getAsString(),
1366 lex->getSourceRange(), rex->getSourceRange());
1367 break;
1368 }
1369 // C99 6.5.16p3: The type of an assignment expression is the type of the
1370 // left operand unless the left operand has qualified type, in which case
1371 // it is the unqualified version of the type of the left operand.
1372 // C99 6.5.16.1p2: In simple assignment, the value of the right operand
1373 // is converted to the type of the assignment expression (above).
Chris Lattner73d0d4f2007-08-30 17:45:32 +00001374 // C++ 5.17p1: the type of the assignment expression is that of its left
1375 // oprdu.
Reid Spencer5f016e22007-07-11 17:01:13 +00001376 return hadError ? QualType() : lhsType.getUnqualifiedType();
1377}
1378
1379inline QualType Sema::CheckCommaOperands( // C99 6.5.17
Steve Naroff49b45262007-07-13 16:58:59 +00001380 Expr *&lex, Expr *&rex, SourceLocation loc) {
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001381 UsualUnaryConversions(rex);
1382 return rex->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001383}
1384
Steve Naroff49b45262007-07-13 16:58:59 +00001385/// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine
1386/// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions.
Reid Spencer5f016e22007-07-11 17:01:13 +00001387QualType Sema::CheckIncrementDecrementOperand(Expr *op, SourceLocation OpLoc) {
Steve Naroff49b45262007-07-13 16:58:59 +00001388 QualType resType = op->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001389 assert(!resType.isNull() && "no type for increment/decrement expression");
1390
Steve Naroff084f9ed2007-08-24 17:20:07 +00001391 // C99 6.5.2.4p1: We allow complex as a GCC extension.
Reid Spencer5f016e22007-07-11 17:01:13 +00001392 if (const PointerType *pt = dyn_cast<PointerType>(resType)) {
1393 if (!pt->getPointeeType()->isObjectType()) { // C99 6.5.2.4p2, 6.5.6p2
1394 Diag(OpLoc, diag::err_typecheck_arithmetic_incomplete_type,
1395 resType.getAsString(), op->getSourceRange());
1396 return QualType();
1397 }
Steve Naroff084f9ed2007-08-24 17:20:07 +00001398 } else if (!resType->isRealType()) {
1399 if (resType->isComplexType())
1400 // C99 does not support ++/-- on complex types.
1401 Diag(OpLoc, diag::ext_integer_increment_complex,
1402 resType.getAsString(), op->getSourceRange());
1403 else {
1404 Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement,
1405 resType.getAsString(), op->getSourceRange());
1406 return QualType();
1407 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001408 }
Steve Naroffdd10e022007-08-23 21:37:33 +00001409 // At this point, we know we have a real, complex or pointer type.
1410 // Now make sure the operand is a modifiable lvalue.
Reid Spencer5f016e22007-07-11 17:01:13 +00001411 Expr::isModifiableLvalueResult mlval = op->isModifiableLvalue();
1412 if (mlval != Expr::MLV_Valid) {
1413 // FIXME: emit a more precise diagnostic...
1414 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_incr_decr,
1415 op->getSourceRange());
1416 return QualType();
1417 }
1418 return resType;
1419}
1420
1421/// getPrimaryDeclaration - Helper function for CheckAddressOfOperand().
1422/// This routine allows us to typecheck complex/recursive expressions
1423/// where the declaration is needed for type checking. Here are some
1424/// examples: &s.xx, &s.zz[1].yy, &(1+2), &(XX), &"123"[2].
1425static Decl *getPrimaryDeclaration(Expr *e) {
1426 switch (e->getStmtClass()) {
1427 case Stmt::DeclRefExprClass:
1428 return cast<DeclRefExpr>(e)->getDecl();
1429 case Stmt::MemberExprClass:
1430 return getPrimaryDeclaration(cast<MemberExpr>(e)->getBase());
1431 case Stmt::ArraySubscriptExprClass:
1432 return getPrimaryDeclaration(cast<ArraySubscriptExpr>(e)->getBase());
1433 case Stmt::CallExprClass:
1434 return getPrimaryDeclaration(cast<CallExpr>(e)->getCallee());
1435 case Stmt::UnaryOperatorClass:
1436 return getPrimaryDeclaration(cast<UnaryOperator>(e)->getSubExpr());
1437 case Stmt::ParenExprClass:
1438 return getPrimaryDeclaration(cast<ParenExpr>(e)->getSubExpr());
1439 default:
1440 return 0;
1441 }
1442}
1443
1444/// CheckAddressOfOperand - The operand of & must be either a function
1445/// designator or an lvalue designating an object. If it is an lvalue, the
1446/// object cannot be declared with storage class register or be a bit field.
1447/// Note: The usual conversions are *not* applied to the operand of the &
1448/// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue.
1449QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) {
1450 Decl *dcl = getPrimaryDeclaration(op);
1451 Expr::isLvalueResult lval = op->isLvalue();
1452
1453 if (lval != Expr::LV_Valid) { // C99 6.5.3.2p1
1454 if (dcl && isa<FunctionDecl>(dcl)) // allow function designators
1455 ;
1456 else { // FIXME: emit more specific diag...
1457 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof,
1458 op->getSourceRange());
1459 return QualType();
1460 }
1461 } else if (dcl) {
1462 // We have an lvalue with a decl. Make sure the decl is not declared
1463 // with the register storage-class specifier.
1464 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) {
1465 if (vd->getStorageClass() == VarDecl::Register) {
1466 Diag(OpLoc, diag::err_typecheck_address_of_register,
1467 op->getSourceRange());
1468 return QualType();
1469 }
1470 } else
1471 assert(0 && "Unknown/unexpected decl type");
1472
1473 // FIXME: add check for bitfields!
1474 }
1475 // If the operand has type "type", the result has type "pointer to type".
1476 return Context.getPointerType(op->getType());
1477}
1478
1479QualType Sema::CheckIndirectionOperand(Expr *op, SourceLocation OpLoc) {
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001480 UsualUnaryConversions(op);
1481 QualType qType = op->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001482
Chris Lattnerbefee482007-07-31 16:53:04 +00001483 if (const PointerType *PT = qType->getAsPointerType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001484 QualType ptype = PT->getPointeeType();
1485 // C99 6.5.3.2p4. "if it points to an object,...".
1486 if (ptype->isIncompleteType()) { // An incomplete type is not an object
1487 // GCC compat: special case 'void *' (treat as warning).
1488 if (ptype->isVoidType()) {
1489 Diag(OpLoc, diag::ext_typecheck_deref_ptr_to_void,
1490 qType.getAsString(), op->getSourceRange());
1491 } else {
1492 Diag(OpLoc, diag::err_typecheck_deref_incomplete_type,
1493 ptype.getAsString(), op->getSourceRange());
1494 return QualType();
1495 }
1496 }
1497 return ptype;
1498 }
1499 Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer,
1500 qType.getAsString(), op->getSourceRange());
1501 return QualType();
1502}
1503
1504static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode(
1505 tok::TokenKind Kind) {
1506 BinaryOperator::Opcode Opc;
1507 switch (Kind) {
1508 default: assert(0 && "Unknown binop!");
1509 case tok::star: Opc = BinaryOperator::Mul; break;
1510 case tok::slash: Opc = BinaryOperator::Div; break;
1511 case tok::percent: Opc = BinaryOperator::Rem; break;
1512 case tok::plus: Opc = BinaryOperator::Add; break;
1513 case tok::minus: Opc = BinaryOperator::Sub; break;
1514 case tok::lessless: Opc = BinaryOperator::Shl; break;
1515 case tok::greatergreater: Opc = BinaryOperator::Shr; break;
1516 case tok::lessequal: Opc = BinaryOperator::LE; break;
1517 case tok::less: Opc = BinaryOperator::LT; break;
1518 case tok::greaterequal: Opc = BinaryOperator::GE; break;
1519 case tok::greater: Opc = BinaryOperator::GT; break;
1520 case tok::exclaimequal: Opc = BinaryOperator::NE; break;
1521 case tok::equalequal: Opc = BinaryOperator::EQ; break;
1522 case tok::amp: Opc = BinaryOperator::And; break;
1523 case tok::caret: Opc = BinaryOperator::Xor; break;
1524 case tok::pipe: Opc = BinaryOperator::Or; break;
1525 case tok::ampamp: Opc = BinaryOperator::LAnd; break;
1526 case tok::pipepipe: Opc = BinaryOperator::LOr; break;
1527 case tok::equal: Opc = BinaryOperator::Assign; break;
1528 case tok::starequal: Opc = BinaryOperator::MulAssign; break;
1529 case tok::slashequal: Opc = BinaryOperator::DivAssign; break;
1530 case tok::percentequal: Opc = BinaryOperator::RemAssign; break;
1531 case tok::plusequal: Opc = BinaryOperator::AddAssign; break;
1532 case tok::minusequal: Opc = BinaryOperator::SubAssign; break;
1533 case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break;
1534 case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break;
1535 case tok::ampequal: Opc = BinaryOperator::AndAssign; break;
1536 case tok::caretequal: Opc = BinaryOperator::XorAssign; break;
1537 case tok::pipeequal: Opc = BinaryOperator::OrAssign; break;
1538 case tok::comma: Opc = BinaryOperator::Comma; break;
1539 }
1540 return Opc;
1541}
1542
1543static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode(
1544 tok::TokenKind Kind) {
1545 UnaryOperator::Opcode Opc;
1546 switch (Kind) {
1547 default: assert(0 && "Unknown unary op!");
1548 case tok::plusplus: Opc = UnaryOperator::PreInc; break;
1549 case tok::minusminus: Opc = UnaryOperator::PreDec; break;
1550 case tok::amp: Opc = UnaryOperator::AddrOf; break;
1551 case tok::star: Opc = UnaryOperator::Deref; break;
1552 case tok::plus: Opc = UnaryOperator::Plus; break;
1553 case tok::minus: Opc = UnaryOperator::Minus; break;
1554 case tok::tilde: Opc = UnaryOperator::Not; break;
1555 case tok::exclaim: Opc = UnaryOperator::LNot; break;
1556 case tok::kw_sizeof: Opc = UnaryOperator::SizeOf; break;
1557 case tok::kw___alignof: Opc = UnaryOperator::AlignOf; break;
1558 case tok::kw___real: Opc = UnaryOperator::Real; break;
1559 case tok::kw___imag: Opc = UnaryOperator::Imag; break;
1560 case tok::kw___extension__: Opc = UnaryOperator::Extension; break;
1561 }
1562 return Opc;
1563}
1564
1565// Binary Operators. 'Tok' is the token for the operator.
Steve Narofff69936d2007-09-16 03:34:24 +00001566Action::ExprResult Sema::ActOnBinOp(SourceLocation TokLoc, tok::TokenKind Kind,
Reid Spencer5f016e22007-07-11 17:01:13 +00001567 ExprTy *LHS, ExprTy *RHS) {
1568 BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind);
1569 Expr *lhs = (Expr *)LHS, *rhs = (Expr*)RHS;
1570
Steve Narofff69936d2007-09-16 03:34:24 +00001571 assert((lhs != 0) && "ActOnBinOp(): missing left expression");
1572 assert((rhs != 0) && "ActOnBinOp(): missing right expression");
Reid Spencer5f016e22007-07-11 17:01:13 +00001573
1574 QualType ResultTy; // Result type of the binary operator.
1575 QualType CompTy; // Computation type for compound assignments (e.g. '+=')
1576
1577 switch (Opc) {
1578 default:
1579 assert(0 && "Unknown binary expr!");
1580 case BinaryOperator::Assign:
1581 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, QualType());
1582 break;
1583 case BinaryOperator::Mul:
1584 case BinaryOperator::Div:
1585 ResultTy = CheckMultiplyDivideOperands(lhs, rhs, TokLoc);
1586 break;
1587 case BinaryOperator::Rem:
1588 ResultTy = CheckRemainderOperands(lhs, rhs, TokLoc);
1589 break;
1590 case BinaryOperator::Add:
1591 ResultTy = CheckAdditionOperands(lhs, rhs, TokLoc);
1592 break;
1593 case BinaryOperator::Sub:
1594 ResultTy = CheckSubtractionOperands(lhs, rhs, TokLoc);
1595 break;
1596 case BinaryOperator::Shl:
1597 case BinaryOperator::Shr:
1598 ResultTy = CheckShiftOperands(lhs, rhs, TokLoc);
1599 break;
1600 case BinaryOperator::LE:
1601 case BinaryOperator::LT:
1602 case BinaryOperator::GE:
1603 case BinaryOperator::GT:
Chris Lattnera5937dd2007-08-26 01:18:55 +00001604 ResultTy = CheckCompareOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001605 break;
1606 case BinaryOperator::EQ:
1607 case BinaryOperator::NE:
Chris Lattnera5937dd2007-08-26 01:18:55 +00001608 ResultTy = CheckCompareOperands(lhs, rhs, TokLoc, false);
Reid Spencer5f016e22007-07-11 17:01:13 +00001609 break;
1610 case BinaryOperator::And:
1611 case BinaryOperator::Xor:
1612 case BinaryOperator::Or:
1613 ResultTy = CheckBitwiseOperands(lhs, rhs, TokLoc);
1614 break;
1615 case BinaryOperator::LAnd:
1616 case BinaryOperator::LOr:
1617 ResultTy = CheckLogicalOperands(lhs, rhs, TokLoc);
1618 break;
1619 case BinaryOperator::MulAssign:
1620 case BinaryOperator::DivAssign:
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001621 CompTy = CheckMultiplyDivideOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001622 if (!CompTy.isNull())
1623 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1624 break;
1625 case BinaryOperator::RemAssign:
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001626 CompTy = CheckRemainderOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001627 if (!CompTy.isNull())
1628 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1629 break;
1630 case BinaryOperator::AddAssign:
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001631 CompTy = CheckAdditionOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001632 if (!CompTy.isNull())
1633 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1634 break;
1635 case BinaryOperator::SubAssign:
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001636 CompTy = CheckSubtractionOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001637 if (!CompTy.isNull())
1638 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1639 break;
1640 case BinaryOperator::ShlAssign:
1641 case BinaryOperator::ShrAssign:
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001642 CompTy = CheckShiftOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001643 if (!CompTy.isNull())
1644 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1645 break;
1646 case BinaryOperator::AndAssign:
1647 case BinaryOperator::XorAssign:
1648 case BinaryOperator::OrAssign:
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001649 CompTy = CheckBitwiseOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001650 if (!CompTy.isNull())
1651 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1652 break;
1653 case BinaryOperator::Comma:
1654 ResultTy = CheckCommaOperands(lhs, rhs, TokLoc);
1655 break;
1656 }
1657 if (ResultTy.isNull())
1658 return true;
1659 if (CompTy.isNull())
Chris Lattner17d1b2a2007-08-28 18:36:55 +00001660 return new BinaryOperator(lhs, rhs, Opc, ResultTy, TokLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001661 else
Chris Lattner17d1b2a2007-08-28 18:36:55 +00001662 return new CompoundAssignOperator(lhs, rhs, Opc, ResultTy, CompTy, TokLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001663}
1664
1665// Unary Operators. 'Tok' is the token for the operator.
Steve Narofff69936d2007-09-16 03:34:24 +00001666Action::ExprResult Sema::ActOnUnaryOp(SourceLocation OpLoc, tok::TokenKind Op,
Reid Spencer5f016e22007-07-11 17:01:13 +00001667 ExprTy *input) {
1668 Expr *Input = (Expr*)input;
1669 UnaryOperator::Opcode Opc = ConvertTokenKindToUnaryOpcode(Op);
1670 QualType resultType;
1671 switch (Opc) {
1672 default:
1673 assert(0 && "Unimplemented unary expr!");
1674 case UnaryOperator::PreInc:
1675 case UnaryOperator::PreDec:
1676 resultType = CheckIncrementDecrementOperand(Input, OpLoc);
1677 break;
1678 case UnaryOperator::AddrOf:
1679 resultType = CheckAddressOfOperand(Input, OpLoc);
1680 break;
1681 case UnaryOperator::Deref:
1682 resultType = CheckIndirectionOperand(Input, OpLoc);
1683 break;
1684 case UnaryOperator::Plus:
1685 case UnaryOperator::Minus:
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001686 UsualUnaryConversions(Input);
1687 resultType = Input->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001688 if (!resultType->isArithmeticType()) // C99 6.5.3.3p1
1689 return Diag(OpLoc, diag::err_typecheck_unary_expr,
1690 resultType.getAsString());
1691 break;
1692 case UnaryOperator::Not: // bitwise complement
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001693 UsualUnaryConversions(Input);
1694 resultType = Input->getType();
Steve Naroff084f9ed2007-08-24 17:20:07 +00001695 // C99 6.5.3.3p1. We allow complex as a GCC extension.
1696 if (!resultType->isIntegerType()) {
1697 if (resultType->isComplexType())
1698 // C99 does not support '~' for complex conjugation.
1699 Diag(OpLoc, diag::ext_integer_complement_complex,
1700 resultType.getAsString());
1701 else
1702 return Diag(OpLoc, diag::err_typecheck_unary_expr,
1703 resultType.getAsString());
1704 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001705 break;
1706 case UnaryOperator::LNot: // logical negation
1707 // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5).
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001708 DefaultFunctionArrayConversion(Input);
1709 resultType = Input->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001710 if (!resultType->isScalarType()) // C99 6.5.3.3p1
1711 return Diag(OpLoc, diag::err_typecheck_unary_expr,
1712 resultType.getAsString());
1713 // LNot always has type int. C99 6.5.3.3p5.
1714 resultType = Context.IntTy;
1715 break;
1716 case UnaryOperator::SizeOf:
1717 resultType = CheckSizeOfAlignOfOperand(Input->getType(), OpLoc, true);
1718 break;
1719 case UnaryOperator::AlignOf:
1720 resultType = CheckSizeOfAlignOfOperand(Input->getType(), OpLoc, false);
1721 break;
Chris Lattnerdbb36972007-08-24 21:16:53 +00001722 case UnaryOperator::Real:
Chris Lattnerdbb36972007-08-24 21:16:53 +00001723 case UnaryOperator::Imag:
Chris Lattner5d794252007-08-24 21:41:10 +00001724 resultType = CheckRealImagOperand(Input, OpLoc);
Chris Lattnerdbb36972007-08-24 21:16:53 +00001725 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00001726 case UnaryOperator::Extension:
Reid Spencer5f016e22007-07-11 17:01:13 +00001727 resultType = Input->getType();
1728 break;
1729 }
1730 if (resultType.isNull())
1731 return true;
1732 return new UnaryOperator(Input, Opc, resultType, OpLoc);
1733}
1734
Steve Naroff1b273c42007-09-16 14:56:35 +00001735/// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo".
1736Sema::ExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +00001737 SourceLocation LabLoc,
1738 IdentifierInfo *LabelII) {
1739 // Look up the record for this label identifier.
1740 LabelStmt *&LabelDecl = LabelMap[LabelII];
1741
1742 // If we haven't seen this label yet, create a forward reference.
1743 if (LabelDecl == 0)
1744 LabelDecl = new LabelStmt(LabLoc, LabelII, 0);
1745
1746 // Create the AST node. The address of a label always has type 'void*'.
Chris Lattner6481a572007-08-03 17:31:20 +00001747 return new AddrLabelExpr(OpLoc, LabLoc, LabelDecl,
1748 Context.getPointerType(Context.VoidTy));
Reid Spencer5f016e22007-07-11 17:01:13 +00001749}
1750
Steve Naroff1b273c42007-09-16 14:56:35 +00001751Sema::ExprResult Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtTy *substmt,
Chris Lattnerab18c4c2007-07-24 16:58:17 +00001752 SourceLocation RPLoc) { // "({..})"
1753 Stmt *SubStmt = static_cast<Stmt*>(substmt);
1754 assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!");
1755 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt);
1756
1757 // FIXME: there are a variety of strange constraints to enforce here, for
1758 // example, it is not possible to goto into a stmt expression apparently.
1759 // More semantic analysis is needed.
1760
1761 // FIXME: the last statement in the compount stmt has its value used. We
1762 // should not warn about it being unused.
1763
1764 // If there are sub stmts in the compound stmt, take the type of the last one
1765 // as the type of the stmtexpr.
1766 QualType Ty = Context.VoidTy;
1767
1768 if (!Compound->body_empty())
1769 if (Expr *LastExpr = dyn_cast<Expr>(Compound->body_back()))
1770 Ty = LastExpr->getType();
1771
1772 return new StmtExpr(Compound, Ty, LPLoc, RPLoc);
1773}
Steve Naroffd34e9152007-08-01 22:05:33 +00001774
Steve Naroff1b273c42007-09-16 14:56:35 +00001775Sema::ExprResult Sema::ActOnBuiltinOffsetOf(SourceLocation BuiltinLoc,
Chris Lattner73d0d4f2007-08-30 17:45:32 +00001776 SourceLocation TypeLoc,
1777 TypeTy *argty,
1778 OffsetOfComponent *CompPtr,
1779 unsigned NumComponents,
1780 SourceLocation RPLoc) {
1781 QualType ArgTy = QualType::getFromOpaquePtr(argty);
1782 assert(!ArgTy.isNull() && "Missing type argument!");
1783
1784 // We must have at least one component that refers to the type, and the first
1785 // one is known to be a field designator. Verify that the ArgTy represents
1786 // a struct/union/class.
1787 if (!ArgTy->isRecordType())
1788 return Diag(TypeLoc, diag::err_offsetof_record_type,ArgTy.getAsString());
1789
1790 // Otherwise, create a compound literal expression as the base, and
1791 // iteratively process the offsetof designators.
1792 Expr *Res = new CompoundLiteralExpr(ArgTy, 0);
1793
Chris Lattner9e2b75c2007-08-31 21:49:13 +00001794 // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a
1795 // GCC extension, diagnose them.
1796 if (NumComponents != 1)
1797 Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator,
1798 SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd));
1799
Chris Lattner73d0d4f2007-08-30 17:45:32 +00001800 for (unsigned i = 0; i != NumComponents; ++i) {
1801 const OffsetOfComponent &OC = CompPtr[i];
1802 if (OC.isBrackets) {
1803 // Offset of an array sub-field. TODO: Should we allow vector elements?
1804 const ArrayType *AT = Res->getType()->getAsArrayType();
1805 if (!AT) {
1806 delete Res;
1807 return Diag(OC.LocEnd, diag::err_offsetof_array_type,
1808 Res->getType().getAsString());
1809 }
1810
Chris Lattner704fe352007-08-30 17:59:59 +00001811 // FIXME: C++: Verify that operator[] isn't overloaded.
1812
Chris Lattner73d0d4f2007-08-30 17:45:32 +00001813 // C99 6.5.2.1p1
1814 Expr *Idx = static_cast<Expr*>(OC.U.E);
1815 if (!Idx->getType()->isIntegerType())
1816 return Diag(Idx->getLocStart(), diag::err_typecheck_subscript,
1817 Idx->getSourceRange());
1818
1819 Res = new ArraySubscriptExpr(Res, Idx, AT->getElementType(), OC.LocEnd);
1820 continue;
1821 }
1822
1823 const RecordType *RC = Res->getType()->getAsRecordType();
1824 if (!RC) {
1825 delete Res;
1826 return Diag(OC.LocEnd, diag::err_offsetof_record_type,
1827 Res->getType().getAsString());
1828 }
1829
1830 // Get the decl corresponding to this.
1831 RecordDecl *RD = RC->getDecl();
1832 FieldDecl *MemberDecl = RD->getMember(OC.U.IdentInfo);
1833 if (!MemberDecl)
1834 return Diag(BuiltinLoc, diag::err_typecheck_no_member,
1835 OC.U.IdentInfo->getName(),
1836 SourceRange(OC.LocStart, OC.LocEnd));
Chris Lattner704fe352007-08-30 17:59:59 +00001837
1838 // FIXME: C++: Verify that MemberDecl isn't a static field.
1839 // FIXME: Verify that MemberDecl isn't a bitfield.
1840
Chris Lattner73d0d4f2007-08-30 17:45:32 +00001841 Res = new MemberExpr(Res, false, MemberDecl, OC.LocEnd);
1842 }
1843
1844 return new UnaryOperator(Res, UnaryOperator::OffsetOf, Context.getSizeType(),
1845 BuiltinLoc);
1846}
1847
1848
Steve Naroff1b273c42007-09-16 14:56:35 +00001849Sema::ExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc,
Steve Naroffd34e9152007-08-01 22:05:33 +00001850 TypeTy *arg1, TypeTy *arg2,
1851 SourceLocation RPLoc) {
1852 QualType argT1 = QualType::getFromOpaquePtr(arg1);
1853 QualType argT2 = QualType::getFromOpaquePtr(arg2);
1854
1855 assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)");
1856
Chris Lattner73d0d4f2007-08-30 17:45:32 +00001857 return new TypesCompatibleExpr(Context.IntTy, BuiltinLoc, argT1, argT2,RPLoc);
Steve Naroffd34e9152007-08-01 22:05:33 +00001858}
1859
Steve Naroff1b273c42007-09-16 14:56:35 +00001860Sema::ExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, ExprTy *cond,
Steve Naroffd04fdd52007-08-03 21:21:27 +00001861 ExprTy *expr1, ExprTy *expr2,
1862 SourceLocation RPLoc) {
1863 Expr *CondExpr = static_cast<Expr*>(cond);
1864 Expr *LHSExpr = static_cast<Expr*>(expr1);
1865 Expr *RHSExpr = static_cast<Expr*>(expr2);
1866
1867 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)");
1868
1869 // The conditional expression is required to be a constant expression.
1870 llvm::APSInt condEval(32);
1871 SourceLocation ExpLoc;
1872 if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc))
1873 return Diag(ExpLoc, diag::err_typecheck_choose_expr_requires_constant,
1874 CondExpr->getSourceRange());
1875
1876 // If the condition is > zero, then the AST type is the same as the LSHExpr.
1877 QualType resType = condEval.getZExtValue() ? LHSExpr->getType() :
1878 RHSExpr->getType();
1879 return new ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, resType, RPLoc);
1880}
1881
Anders Carlsson7c50aca2007-10-15 20:28:48 +00001882Sema::ExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc,
1883 ExprTy *expr, TypeTy *type,
1884 SourceLocation RPLoc)
1885{
1886 Expr *E = static_cast<Expr*>(expr);
1887 QualType T = QualType::getFromOpaquePtr(type);
1888
1889 InitBuiltinVaListType();
1890
1891 Sema::AssignmentCheckResult result;
1892
1893 result = CheckAssignmentConstraints(Context.getBuiltinVaListType(),
1894 E->getType());
1895 if (result != Compatible)
1896 return Diag(E->getLocStart(),
1897 diag::err_first_argument_to_va_arg_not_of_type_va_list,
1898 E->getType().getAsString(),
1899 E->getSourceRange());
1900
1901 // FIXME: Warn if a non-POD type is passed in.
1902
1903 return new VAArgExpr(BuiltinLoc, E, T, RPLoc);
1904}
1905
Anders Carlsson55085182007-08-21 17:43:55 +00001906// TODO: Move this to SemaObjC.cpp
Anders Carlssonf9bcf012007-08-22 15:14:15 +00001907Sema::ExprResult Sema::ParseObjCStringLiteral(ExprTy *string) {
Anders Carlsson55085182007-08-21 17:43:55 +00001908 StringLiteral* S = static_cast<StringLiteral *>(string);
1909
1910 if (CheckBuiltinCFStringArgument(S))
1911 return true;
1912
Steve Naroff21988912007-10-15 23:35:17 +00001913 if (Context.getObjcConstantStringInterface().isNull()) {
1914 // Initialize the constant string interface lazily. This assumes
1915 // the NSConstantString interface is seen in this translation unit.
1916 IdentifierInfo *NSIdent = &Context.Idents.get("NSConstantString");
1917 ScopedDecl *IFace = LookupScopedDecl(NSIdent, Decl::IDNS_Ordinary,
1918 SourceLocation(), TUScope);
Steve Naroffa1fe1172007-10-16 00:00:18 +00001919 ObjcInterfaceDecl *strIFace = dyn_cast_or_null<ObjcInterfaceDecl>(IFace);
Steve Naroff806a4eb2007-10-18 23:53:51 +00001920 if (!strIFace)
1921 return Diag(S->getLocStart(), diag::err_undef_interface,
1922 NSIdent->getName());
Steve Naroffa1fe1172007-10-16 00:00:18 +00001923 Context.setObjcConstantStringInterface(strIFace);
Steve Naroff21988912007-10-15 23:35:17 +00001924 }
1925 QualType t = Context.getObjcConstantStringInterface();
Anders Carlsson55085182007-08-21 17:43:55 +00001926 t = Context.getPointerType(t);
Anders Carlsson55085182007-08-21 17:43:55 +00001927 return new ObjCStringLiteral(S, t);
1928}
Anders Carlssonf9bcf012007-08-22 15:14:15 +00001929
1930Sema::ExprResult Sema::ParseObjCEncodeExpression(SourceLocation AtLoc,
Chris Lattner674af952007-10-16 22:51:17 +00001931 SourceLocation EncodeLoc,
Anders Carlssonf9bcf012007-08-22 15:14:15 +00001932 SourceLocation LParenLoc,
1933 TypeTy *Ty,
1934 SourceLocation RParenLoc) {
1935 QualType EncodedType = QualType::getFromOpaquePtr(Ty);
1936
1937 QualType t = Context.getPointerType(Context.CharTy);
1938 return new ObjCEncodeExpr(t, EncodedType, AtLoc, RParenLoc);
1939}
Steve Naroff708391a2007-09-17 21:01:15 +00001940
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00001941Sema::ExprResult Sema::ParseObjCSelectorExpression(Selector Sel,
1942 SourceLocation AtLoc,
Fariborz Jahanian2a35fa92007-10-16 23:21:02 +00001943 SourceLocation SelLoc,
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00001944 SourceLocation LParenLoc,
1945 SourceLocation RParenLoc) {
1946 QualType t = GetObjcSelType(AtLoc);
1947 return new ObjCSelectorExpr(t, Sel, AtLoc, RParenLoc);
1948}
1949
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00001950Sema::ExprResult Sema::ParseObjCProtocolExpression(IdentifierInfo *ProtocolId,
1951 SourceLocation AtLoc,
1952 SourceLocation ProtoLoc,
1953 SourceLocation LParenLoc,
1954 SourceLocation RParenLoc) {
1955 ObjcProtocolDecl* PDecl = ObjcProtocols[ProtocolId];
1956 if (!PDecl) {
1957 Diag(ProtoLoc, diag::err_undeclared_protocol, ProtocolId->getName());
1958 return true;
1959 }
1960
1961 QualType t = GetObjcProtoType(AtLoc);
Fariborz Jahanian3e27aa12007-10-18 22:59:23 +00001962 if (t.isNull())
1963 return true;
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00001964 return new ObjCProtocolExpr(t, PDecl, AtLoc, RParenLoc);
1965}
Steve Naroff81bfde92007-10-16 23:12:48 +00001966
1967bool Sema::CheckMessageArgumentTypes(Expr **Args, unsigned NumArgs,
1968 ObjcMethodDecl *Method) {
1969 bool anyIncompatibleArgs = false;
1970
1971 for (unsigned i = 0; i < NumArgs; i++) {
1972 Expr *argExpr = Args[i];
1973 assert(argExpr && "CheckMessageArgumentTypes(): missing expression");
1974
1975 QualType lhsType = Method->getParamDecl(i)->getType();
1976 QualType rhsType = argExpr->getType();
1977
1978 // If necessary, apply function/array conversion. C99 6.7.5.3p[7,8].
1979 if (const ArrayType *ary = lhsType->getAsArrayType())
1980 lhsType = Context.getPointerType(ary->getElementType());
1981 else if (lhsType->isFunctionType())
1982 lhsType = Context.getPointerType(lhsType);
1983
1984 AssignmentCheckResult result = CheckSingleAssignmentConstraints(lhsType,
1985 argExpr);
1986 if (Args[i] != argExpr) // The expression was converted.
1987 Args[i] = argExpr; // Make sure we store the converted expression.
1988 SourceLocation l = argExpr->getLocStart();
1989
1990 // decode the result (notice that AST's are still created for extensions).
1991 switch (result) {
1992 case Compatible:
1993 break;
1994 case PointerFromInt:
1995 // check for null pointer constant (C99 6.3.2.3p3)
1996 if (!argExpr->isNullPointerConstant(Context)) {
1997 Diag(l, diag::ext_typecheck_sending_pointer_int,
1998 lhsType.getAsString(), rhsType.getAsString(),
1999 argExpr->getSourceRange());
2000 }
2001 break;
2002 case IntFromPointer:
2003 Diag(l, diag::ext_typecheck_sending_pointer_int,
2004 lhsType.getAsString(), rhsType.getAsString(),
2005 argExpr->getSourceRange());
2006 break;
2007 case IncompatiblePointer:
2008 Diag(l, diag::ext_typecheck_sending_incompatible_pointer,
2009 rhsType.getAsString(), lhsType.getAsString(),
2010 argExpr->getSourceRange());
2011 break;
2012 case CompatiblePointerDiscardsQualifiers:
2013 Diag(l, diag::ext_typecheck_passing_discards_qualifiers,
2014 rhsType.getAsString(), lhsType.getAsString(),
2015 argExpr->getSourceRange());
2016 break;
2017 case Incompatible:
2018 Diag(l, diag::err_typecheck_sending_incompatible,
2019 rhsType.getAsString(), lhsType.getAsString(),
2020 argExpr->getSourceRange());
2021 anyIncompatibleArgs = true;
2022 }
2023 }
2024 return anyIncompatibleArgs;
2025}
2026
Steve Naroff68d331a2007-09-27 14:38:14 +00002027// ActOnClassMessage - used for both unary and keyword messages.
2028// ArgExprs is optional - if it is present, the number of expressions
2029// is obtained from Sel.getNumArgs().
2030Sema::ExprResult Sema::ActOnClassMessage(
Steve Naroff6a8a9a42007-10-02 20:01:56 +00002031 IdentifierInfo *receiverName, Selector Sel,
Steve Naroff68d331a2007-09-27 14:38:14 +00002032 SourceLocation lbrac, SourceLocation rbrac, ExprTy **Args)
Steve Naroff708391a2007-09-17 21:01:15 +00002033{
Steve Naroff6a8a9a42007-10-02 20:01:56 +00002034 assert(receiverName && "missing receiver class name");
Steve Naroff563477d2007-09-18 23:55:05 +00002035
Steve Naroff81bfde92007-10-16 23:12:48 +00002036 Expr **ArgExprs = reinterpret_cast<Expr **>(Args);
Steve Naroff6a8a9a42007-10-02 20:01:56 +00002037 ObjcInterfaceDecl* ClassDecl = getObjCInterfaceDecl(receiverName);
2038 ObjcMethodDecl *Method = ClassDecl->lookupClassMethod(Sel);
Steve Naroff983df5b2007-10-16 20:39:36 +00002039 QualType returnType;
2040 if (!Method) {
2041 Diag(lbrac, diag::warn_method_not_found, std::string("+"), Sel.getName(),
2042 SourceRange(lbrac, rbrac));
2043 returnType = GetObjcIdType();
2044 } else {
Steve Naroff3bea81b2007-10-16 21:36:54 +00002045 returnType = Method->getResultType();
Steve Naroff81bfde92007-10-16 23:12:48 +00002046 if (Sel.getNumArgs()) {
2047 if (CheckMessageArgumentTypes(ArgExprs, Sel.getNumArgs(), Method))
2048 return true;
2049 }
Steve Naroff983df5b2007-10-16 20:39:36 +00002050 }
Steve Naroff983df5b2007-10-16 20:39:36 +00002051 return new ObjCMessageExpr(receiverName, Sel, returnType, lbrac, rbrac,
Chris Lattner22b73ba2007-10-10 23:42:28 +00002052 ArgExprs);
Steve Naroff708391a2007-09-17 21:01:15 +00002053}
2054
Steve Naroff68d331a2007-09-27 14:38:14 +00002055// ActOnInstanceMessage - used for both unary and keyword messages.
2056// ArgExprs is optional - if it is present, the number of expressions
2057// is obtained from Sel.getNumArgs().
2058Sema::ExprResult Sema::ActOnInstanceMessage(
Steve Naroffbcfb06a2007-09-28 22:22:11 +00002059 ExprTy *receiver, Selector Sel,
Steve Naroff68d331a2007-09-27 14:38:14 +00002060 SourceLocation lbrac, SourceLocation rbrac, ExprTy **Args)
2061{
Steve Naroff563477d2007-09-18 23:55:05 +00002062 assert(receiver && "missing receiver expression");
2063
Steve Naroff81bfde92007-10-16 23:12:48 +00002064 Expr **ArgExprs = reinterpret_cast<Expr **>(Args);
Steve Naroff563477d2007-09-18 23:55:05 +00002065 Expr *RExpr = static_cast<Expr *>(receiver);
Steve Naroff6a8a9a42007-10-02 20:01:56 +00002066 QualType receiverType = RExpr->getType();
Steve Naroff3b950172007-10-10 21:53:07 +00002067 QualType returnType;
2068
2069 if (receiverType == GetObjcIdType()) {
Steve Naroffff1afdb2007-10-14 23:13:51 +00002070 ObjcMethodDecl *Method = InstanceMethodPool[Sel].Method;
Steve Naroff983df5b2007-10-16 20:39:36 +00002071 if (!Method) {
2072 Diag(lbrac, diag::warn_method_not_found, std::string("-"), Sel.getName(),
2073 SourceRange(lbrac, rbrac));
2074 returnType = GetObjcIdType();
2075 } else {
Steve Naroff3bea81b2007-10-16 21:36:54 +00002076 returnType = Method->getResultType();
Steve Naroff81bfde92007-10-16 23:12:48 +00002077 if (Sel.getNumArgs())
2078 if (CheckMessageArgumentTypes(ArgExprs, Sel.getNumArgs(), Method))
2079 return true;
Steve Naroff983df5b2007-10-16 20:39:36 +00002080 }
Steve Naroff3b950172007-10-10 21:53:07 +00002081 } else {
Chris Lattner22b73ba2007-10-10 23:42:28 +00002082 // FIXME (snaroff): checking in this code from Patrick. Needs to be
2083 // revisited. how do we get the ClassDecl from the receiver expression?
Steve Naroff3b950172007-10-10 21:53:07 +00002084 while (receiverType->isPointerType()) {
Chris Lattner22b73ba2007-10-10 23:42:28 +00002085 PointerType *pointerType =
2086 static_cast<PointerType*>(receiverType.getTypePtr());
Steve Naroff3b950172007-10-10 21:53:07 +00002087 receiverType = pointerType->getPointeeType();
2088 }
Chris Lattner22b73ba2007-10-10 23:42:28 +00002089 assert(ObjcInterfaceType::classof(receiverType.getTypePtr()) &&
2090 "bad receiver type");
Steve Naroff3b950172007-10-10 21:53:07 +00002091 ObjcInterfaceDecl* ClassDecl = static_cast<ObjcInterfaceType*>(
2092 receiverType.getTypePtr())->getDecl();
Steve Naroff983df5b2007-10-16 20:39:36 +00002093 // FIXME: consider using InstanceMethodPool, since it will be faster
2094 // than the following method (which can do *many* linear searches). The
2095 // idea is to add class info to InstanceMethodPool...
Steve Naroff3b950172007-10-10 21:53:07 +00002096 ObjcMethodDecl *Method = ClassDecl->lookupInstanceMethod(Sel);
Steve Naroff983df5b2007-10-16 20:39:36 +00002097 if (!Method) {
2098 Diag(lbrac, diag::warn_method_not_found, std::string("-"), Sel.getName(),
2099 SourceRange(lbrac, rbrac));
2100 returnType = GetObjcIdType();
2101 } else {
Steve Naroff3bea81b2007-10-16 21:36:54 +00002102 returnType = Method->getResultType();
Steve Naroff81bfde92007-10-16 23:12:48 +00002103 if (Sel.getNumArgs())
2104 if (CheckMessageArgumentTypes(ArgExprs, Sel.getNumArgs(), Method))
2105 return true;
Steve Naroff983df5b2007-10-16 20:39:36 +00002106 }
Steve Naroff6a8a9a42007-10-02 20:01:56 +00002107 }
Steve Naroff6a8a9a42007-10-02 20:01:56 +00002108 return new ObjCMessageExpr(RExpr, Sel, returnType, lbrac, rbrac, ArgExprs);
Steve Naroff708391a2007-09-17 21:01:15 +00002109}