blob: 40205d335c71e75a0a1e89a3bafbaff512895c19 [file] [log] [blame]
Chris Lattner4b009652007-07-25 00:24:17 +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 Narofffa465d12007-10-02 20:01:56 +000017#include "clang/AST/DeclObjC.h"
Chris Lattner4b009652007-07-25 00:24:17 +000018#include "clang/AST/Expr.h"
Steve Naroffc39ca262007-09-18 23:55:05 +000019#include "clang/Parse/DeclSpec.h"
Chris Lattner4b009652007-07-25 00:24:17 +000020#include "clang/Lex/Preprocessor.h"
21#include "clang/Lex/LiteralSupport.h"
22#include "clang/Basic/SourceManager.h"
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 Lattner2e64c072007-08-10 20:18:51 +000027#include "llvm/ADT/StringExtras.h"
Chris Lattner4b009652007-07-25 00:24:17 +000028using namespace clang;
29
Steve Naroff87d58b42007-09-16 03:34:24 +000030/// ActOnStringLiteral - The specified tokens were lexed as pasted string
Chris Lattner4b009652007-07-25 00:24:17 +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 Naroff87d58b42007-09-16 03:34:24 +000037Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) {
Chris Lattner4b009652007-07-25 00:24:17 +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 Carlsson55bfe0d2007-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()));
Chris Lattner4b009652007-07-25 00:24:17 +000060
61 // Pass &StringTokLocs[0], StringTokLocs.size() to factory!
62 return new StringLiteral(Literal.GetString(), Literal.GetStringLength(),
Anders Carlsson55bfe0d2007-10-15 02:50:23 +000063 Literal.AnyWide, t,
64 StringToks[0].getLocation(),
Chris Lattner4b009652007-07-25 00:24:17 +000065 StringToks[NumStringToks-1].getLocation());
66}
67
68
Steve Naroff0acc9c92007-09-15 18:49:24 +000069/// ActOnIdentifierExpr - The parser read an identifier in expression context,
Chris Lattner4b009652007-07-25 00:24:17 +000070/// validate it per-C99 6.5.1. HasTrailingLParen indicates whether this
71/// identifier is used in an function call context.
Steve Naroff0acc9c92007-09-15 18:49:24 +000072Sema::ExprResult Sema::ActOnIdentifierExpr(Scope *S, SourceLocation Loc,
Chris Lattner4b009652007-07-25 00:24:17 +000073 IdentifierInfo &II,
74 bool HasTrailingLParen) {
75 // Could be enum-constant or decl.
Steve Narofff0c31dd2007-09-16 16:16:00 +000076 ScopedDecl *D = LookupScopedDecl(&II, Decl::IDNS_Ordinary, Loc, S);
Chris Lattner4b009652007-07-25 00:24:17 +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 Naroff91b03f72007-08-28 03:03:08 +000090 if (ValueDecl *VD = dyn_cast<ValueDecl>(D)) {
Steve Naroffcae537d2007-08-28 18:45:29 +000091 // Only create DeclRefExpr's for valid Decl's.
Steve Naroffd1ad6ae2007-08-28 20:14:24 +000092 if (VD->isInvalidDecl())
Steve Naroff91b03f72007-08-28 03:03:08 +000093 return true;
Chris Lattner4b009652007-07-25 00:24:17 +000094 return new DeclRefExpr(VD, VD->getType(), Loc);
Steve Naroff91b03f72007-08-28 03:03:08 +000095 }
Chris Lattner4b009652007-07-25 00:24:17 +000096 if (isa<TypedefDecl>(D))
97 return Diag(Loc, diag::err_unexpected_typedef, II.getName());
98
99 assert(0 && "Invalid decl");
100 abort();
101}
102
Steve Naroff87d58b42007-09-16 03:34:24 +0000103Sema::ExprResult Sema::ActOnPreDefinedExpr(SourceLocation Loc,
Chris Lattner4b009652007-07-25 00:24:17 +0000104 tok::TokenKind Kind) {
105 PreDefinedExpr::IdentType IT;
106
107 switch (Kind) {
108 default:
109 assert(0 && "Unknown simple primary expr!");
110 case tok::kw___func__: // primary-expression: __func__ [C99 6.4.2.2]
111 IT = PreDefinedExpr::Func;
112 break;
113 case tok::kw___FUNCTION__: // primary-expression: __FUNCTION__ [GNU]
114 IT = PreDefinedExpr::Function;
115 break;
116 case tok::kw___PRETTY_FUNCTION__: // primary-expression: __P..Y_F..N__ [GNU]
117 IT = PreDefinedExpr::PrettyFunction;
118 break;
119 }
120
121 // Pre-defined identifiers are always of type char *.
122 return new PreDefinedExpr(Loc, Context.getPointerType(Context.CharTy), IT);
123}
124
Steve Naroff87d58b42007-09-16 03:34:24 +0000125Sema::ExprResult Sema::ActOnCharacterConstant(const Token &Tok) {
Chris Lattner4b009652007-07-25 00:24:17 +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 Naroff87d58b42007-09-16 03:34:24 +0000139Action::ExprResult Sema::ActOnNumericConstant(const Token &Tok) {
Chris Lattner4b009652007-07-25 00:24:17 +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 Lattner3496d522007-09-04 02:45:27 +0000145 unsigned IntSize = static_cast<unsigned>(
146 Context.getTypeSize(Context.IntTy, Tok.getLocation()));
Chris Lattner4b009652007-07-25 00:24:17 +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 Lattner1de66eb2007-08-26 03:42:43 +0000162 Expr *Res;
163
164 if (Literal.isFloatingLiteral()) {
Chris Lattner858eece2007-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 Lattner1de66eb2007-08-26 03:42:43 +0000182 } else if (!Literal.isIntegerLiteral()) {
183 return ExprResult(true);
184 } else {
Chris Lattner4b009652007-07-25 00:24:17 +0000185 QualType t;
186
Neil Booth7421e9c2007-08-29 22:00:19 +0000187 // long long is a C99 feature.
188 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
Neil Booth9bd47082007-08-29 22:13:52 +0000189 Literal.isLongLong)
Neil Booth7421e9c2007-08-29 22:00:19 +0000190 Diag(Tok.getLocation(), diag::ext_longlong);
191
Chris Lattner4b009652007-07-25 00:24:17 +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;
199 assert(Context.getTypeSize(t, Tok.getLocation()) ==
200 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 Lattner98540b62007-08-23 21:58:08 +0000210 if (!Literal.isLong && !Literal.isLongLong) {
211 // Are int/unsigned possibilities?
Chris Lattner3496d522007-09-04 02:45:27 +0000212 unsigned IntSize = static_cast<unsigned>(
213 Context.getTypeSize(Context.IntTy,Tok.getLocation()));
Chris Lattner4b009652007-07-25 00:24:17 +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 Lattner3496d522007-09-04 02:45:27 +0000229 unsigned LongSize = static_cast<unsigned>(
230 Context.getTypeSize(Context.LongTy, Tok.getLocation()));
Chris Lattner4b009652007-07-25 00:24:17 +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 Lattner3496d522007-09-04 02:45:27 +0000246 unsigned LongLongSize = static_cast<unsigned>(
247 Context.getTypeSize(Context.LongLongTy, Tok.getLocation()));
Chris Lattner4b009652007-07-25 00:24:17 +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 Lattner1de66eb2007-08-26 03:42:43 +0000267 Res = new IntegerLiteral(ResultVal, t, Tok.getLocation());
Chris Lattner4b009652007-07-25 00:24:17 +0000268 }
Chris Lattner1de66eb2007-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;
Chris Lattner4b009652007-07-25 00:24:17 +0000275}
276
Steve Naroff87d58b42007-09-16 03:34:24 +0000277Action::ExprResult Sema::ActOnParenExpr(SourceLocation L, SourceLocation R,
Chris Lattner4b009652007-07-25 00:24:17 +0000278 ExprTy *Val) {
279 Expr *e = (Expr *)Val;
Steve Naroff87d58b42007-09-16 03:34:24 +0000280 assert((e != 0) && "ActOnParenExpr() missing expr");
Chris Lattner4b009652007-07-25 00:24:17 +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 Naroff87d58b42007-09-16 03:34:24 +0000305ActOnSizeOfAlignOfTypeExpr(SourceLocation OpLoc, bool isSizeof,
Chris Lattner4b009652007-07-25 00:24:17 +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 Lattner5110ad52007-08-24 21:41:10 +0000321QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc) {
Chris Lattner03931a72007-08-24 21:16:53 +0000322 DefaultFunctionArrayConversion(V);
323
Chris Lattnera16e42d2007-08-26 05:39:26 +0000324 // These operators return the element type of a complex type.
Chris Lattner03931a72007-08-24 21:16:53 +0000325 if (const ComplexType *CT = V->getType()->getAsComplexType())
326 return CT->getElementType();
Chris Lattnera16e42d2007-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 Lattner03931a72007-08-24 21:16:53 +0000335}
336
337
Chris Lattner4b009652007-07-25 00:24:17 +0000338
Steve Naroff87d58b42007-09-16 03:34:24 +0000339Action::ExprResult Sema::ActOnPostfixUnaryOp(SourceLocation OpLoc,
Chris Lattner4b009652007-07-25 00:24:17 +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 Naroff87d58b42007-09-16 03:34:24 +0000355ActOnArraySubscriptExpr(ExprTy *Base, SourceLocation LLoc,
Chris Lattner4b009652007-07-25 00:24:17 +0000356 ExprTy *Idx, SourceLocation RLoc) {
357 Expr *LHSExp = static_cast<Expr*>(Base), *RHSExp = static_cast<Expr*>(Idx);
358
359 // Perform default conversions.
360 DefaultFunctionArrayConversion(LHSExp);
361 DefaultFunctionArrayConversion(RHSExp);
362
363 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType();
364
365 // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent
Chris Lattner0d9bcea2007-08-30 17:45:32 +0000366 // to the expression *((e1)+(e2)). This means the array "Base" may actually be
Chris Lattner4b009652007-07-25 00:24:17 +0000367 // in the subscript position. As a result, we need to derive the array base
368 // and index from the expression types.
369 Expr *BaseExpr, *IndexExpr;
370 QualType ResultType;
Chris Lattner7931f4a2007-07-31 16:53:04 +0000371 if (const PointerType *PTy = LHSTy->getAsPointerType()) {
Chris Lattner4b009652007-07-25 00:24:17 +0000372 BaseExpr = LHSExp;
373 IndexExpr = RHSExp;
374 // FIXME: need to deal with const...
375 ResultType = PTy->getPointeeType();
Chris Lattner7931f4a2007-07-31 16:53:04 +0000376 } else if (const PointerType *PTy = RHSTy->getAsPointerType()) {
Chris Lattner4b009652007-07-25 00:24:17 +0000377 // Handle the uncommon case of "123[Ptr]".
378 BaseExpr = RHSExp;
379 IndexExpr = LHSExp;
380 // FIXME: need to deal with const...
381 ResultType = PTy->getPointeeType();
Chris Lattnere35a1042007-07-31 19:29:30 +0000382 } else if (const VectorType *VTy = LHSTy->getAsVectorType()) {
383 BaseExpr = LHSExp; // vectors: V[123]
Chris Lattner4b009652007-07-25 00:24:17 +0000384 IndexExpr = RHSExp;
Steve Naroff89345522007-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 Lattner4b009652007-07-25 00:24:17 +0000390 // FIXME: need to deal with const...
391 ResultType = VTy->getElementType();
392 } else {
393 return Diag(LHSExp->getLocStart(), diag::err_typecheck_subscript_value,
394 RHSExp->getSourceRange());
395 }
396 // C99 6.5.2.1p1
397 if (!IndexExpr->getType()->isIntegerType())
398 return Diag(IndexExpr->getLocStart(), diag::err_typecheck_subscript,
399 IndexExpr->getSourceRange());
400
401 // 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);
410}
411
Steve Naroff1b8a46c2007-07-27 22:15:19 +0000412QualType Sema::
413CheckOCUVectorComponent(QualType baseType, SourceLocation OpLoc,
414 IdentifierInfo &CompName, SourceLocation CompLoc) {
Chris Lattnere35a1042007-07-31 19:29:30 +0000415 const OCUVectorType *vecType = baseType->getAsOCUVectorType();
Steve Naroff1b8a46c2007-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 Lattner9096b792007-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 Naroff1b8a46c2007-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 Naroff82113e32007-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 Naroff1b8a46c2007-07-27 22:15:19 +0000476}
477
Chris Lattner4b009652007-07-25 00:24:17 +0000478Action::ExprResult Sema::
Steve Naroff87d58b42007-09-16 03:34:24 +0000479ActOnMemberReferenceExpr(ExprTy *Base, SourceLocation OpLoc,
Chris Lattner4b009652007-07-25 00:24:17 +0000480 tok::TokenKind OpKind, SourceLocation MemberLoc,
481 IdentifierInfo &Member) {
Steve Naroff2cb66382007-07-26 03:11:44 +0000482 Expr *BaseExpr = static_cast<Expr *>(Base);
483 assert(BaseExpr && "no record expression");
Chris Lattner4b009652007-07-25 00:24:17 +0000484
Steve Naroff2cb66382007-07-26 03:11:44 +0000485 QualType BaseType = BaseExpr->getType();
486 assert(!BaseType.isNull() && "no type for member expression");
Chris Lattner4b009652007-07-25 00:24:17 +0000487
Chris Lattner4b009652007-07-25 00:24:17 +0000488 if (OpKind == tok::arrow) {
Chris Lattner7931f4a2007-07-31 16:53:04 +0000489 if (const PointerType *PT = BaseType->getAsPointerType())
Steve Naroff2cb66382007-07-26 03:11:44 +0000490 BaseType = PT->getPointeeType();
491 else
492 return Diag(OpLoc, diag::err_typecheck_member_reference_arrow,
493 SourceRange(MemberLoc));
Chris Lattner4b009652007-07-25 00:24:17 +0000494 }
Steve Naroff1b8a46c2007-07-27 22:15:19 +0000495 // The base type is either a record or an OCUVectorType.
Chris Lattnere35a1042007-07-31 19:29:30 +0000496 if (const RecordType *RTy = BaseType->getAsRecordType()) {
Steve Naroff2cb66382007-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 Naroff1b8a46c2007-07-27 22:15:19 +0000502 FieldDecl *MemberDecl = RDecl->getMember(&Member);
503 if (!MemberDecl)
Steve Naroff2cb66382007-07-26 03:11:44 +0000504 return Diag(OpLoc, diag::err_typecheck_no_member, Member.getName(),
505 SourceRange(MemberLoc));
Steve Naroff1b8a46c2007-07-27 22:15:19 +0000506 return new MemberExpr(BaseExpr, OpKind==tok::arrow, MemberDecl, MemberLoc);
507 } else if (BaseType->isOCUVectorType() && OpKind == tok::period) {
Steve Naroff89345522007-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 Naroff1b8a46c2007-07-27 22:15:19 +0000512 QualType ret = CheckOCUVectorComponent(BaseType, OpLoc, Member, MemberLoc);
513 if (ret.isNull())
514 return true;
Chris Lattnera0d03a72007-08-03 17:31:20 +0000515 return new OCUVectorElementExpr(ret, BaseExpr, Member, MemberLoc);
Steve Naroff2cb66382007-07-26 03:11:44 +0000516 } else
517 return Diag(OpLoc, diag::err_typecheck_member_reference_structUnion,
518 SourceRange(MemberLoc));
Chris Lattner4b009652007-07-25 00:24:17 +0000519}
520
Steve Naroff87d58b42007-09-16 03:34:24 +0000521/// ActOnCallExpr - Handle a call to Fn with the specified array of arguments.
Chris Lattner4b009652007-07-25 00:24:17 +0000522/// This provides the location of the left/right parens and a list of comma
523/// locations.
524Action::ExprResult Sema::
Steve Naroff87d58b42007-09-16 03:34:24 +0000525ActOnCallExpr(ExprTy *fn, SourceLocation LParenLoc,
Chris Lattner4b009652007-07-25 00:24:17 +0000526 ExprTy **args, unsigned NumArgsInCall,
527 SourceLocation *CommaLocs, SourceLocation RParenLoc) {
528 Expr *Fn = static_cast<Expr *>(fn);
529 Expr **Args = reinterpret_cast<Expr**>(args);
530 assert(Fn && "no function call expression");
531
532 UsualUnaryConversions(Fn);
533 QualType funcType = Fn->getType();
534
535 // C99 6.5.2.2p1 - "The expression that denotes the called function shall have
536 // type pointer to function".
Chris Lattner71225142007-07-31 21:27:01 +0000537 const PointerType *PT = funcType->getAsPointerType();
Chris Lattner4b009652007-07-25 00:24:17 +0000538 if (PT == 0)
539 return Diag(Fn->getLocStart(), diag::err_typecheck_call_not_function,
540 SourceRange(Fn->getLocStart(), RParenLoc));
541
Chris Lattner71225142007-07-31 21:27:01 +0000542 const FunctionType *funcT = PT->getPointeeType()->getAsFunctionType();
Chris Lattner4b009652007-07-25 00:24:17 +0000543 if (funcT == 0)
544 return Diag(Fn->getLocStart(), diag::err_typecheck_call_not_function,
545 SourceRange(Fn->getLocStart(), RParenLoc));
546
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,
559 Fn->getSourceRange());
560 else if (NumArgsInCall > NumArgsInProto) {
561 if (!proto->isVariadic()) {
562 Diag(Args[NumArgsInProto]->getLocStart(),
563 diag::err_typecheck_call_too_many_args, Fn->getSourceRange(),
564 SourceRange(Args[NumArgsInProto]->getLocStart(),
565 Args[NumArgsInCall-1]->getLocEnd()));
566 }
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++) {
571 Expr *argExpr = Args[i];
Steve Naroff87d58b42007-09-16 03:34:24 +0000572 assert(argExpr && "ActOnCallExpr(): missing argument expression");
Chris Lattner4b009652007-07-25 00:24:17 +0000573
574 QualType lhsType = proto->getArgType(i);
575 QualType rhsType = argExpr->getType();
576
Steve Naroff75644062007-07-25 20:45:33 +0000577 // If necessary, apply function/array conversion. C99 6.7.5.3p[7,8].
Chris Lattnere35a1042007-07-31 19:29:30 +0000578 if (const ArrayType *ary = lhsType->getAsArrayType())
Chris Lattner4b009652007-07-25 00:24:17 +0000579 lhsType = Context.getPointerType(ary->getElementType());
Steve Naroff75644062007-07-25 20:45:33 +0000580 else if (lhsType->isFunctionType())
Chris Lattner4b009652007-07-25 00:24:17 +0000581 lhsType = Context.getPointerType(lhsType);
582
583 AssignmentCheckResult result = CheckSingleAssignmentConstraints(lhsType,
584 argExpr);
Steve Naroff0f32f432007-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.
Chris Lattner4b009652007-07-25 00:24:17 +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)
595 if (!argExpr->isNullPointerConstant(Context)) {
596 Diag(l, diag::ext_typecheck_passing_pointer_int,
597 lhsType.getAsString(), rhsType.getAsString(),
598 Fn->getSourceRange(), argExpr->getSourceRange());
599 }
600 break;
601 case IntFromPointer:
602 Diag(l, diag::ext_typecheck_passing_pointer_int,
603 lhsType.getAsString(), rhsType.getAsString(),
604 Fn->getSourceRange(), argExpr->getSourceRange());
605 break;
606 case IncompatiblePointer:
607 Diag(l, diag::ext_typecheck_passing_incompatible_pointer,
608 rhsType.getAsString(), lhsType.getAsString(),
609 Fn->getSourceRange(), argExpr->getSourceRange());
610 break;
611 case CompatiblePointerDiscardsQualifiers:
612 Diag(l, diag::ext_typecheck_passing_discards_qualifiers,
613 rhsType.getAsString(), lhsType.getAsString(),
614 Fn->getSourceRange(), argExpr->getSourceRange());
615 break;
616 case Incompatible:
617 return Diag(l, diag::err_typecheck_passing_incompatible,
618 rhsType.getAsString(), lhsType.getAsString(),
619 Fn->getSourceRange(), argExpr->getSourceRange());
620 }
621 }
Steve Naroffdb65e052007-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 Naroff87d58b42007-09-16 03:34:24 +0000626 assert(argExpr && "ActOnCallExpr(): missing argument expression");
Steve Naroffdb65e052007-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.
Chris Lattner4b009652007-07-25 00:24:17 +0000634 return true;
Steve Naroffdb65e052007-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 Naroff87d58b42007-09-16 03:34:24 +0000640 assert(argExpr && "ActOnCallExpr(): missing argument expression");
Steve Naroffdb65e052007-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 }
Chris Lattner4b009652007-07-25 00:24:17 +0000646 }
Chris Lattner2e64c072007-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 Lattner0d9bcea2007-08-30 17:45:32 +0000651 if (CheckFunctionCall(Fn, LParenLoc, RParenLoc, FDecl, Args,
652 NumArgsInCall))
Anders Carlssone7e7aa22007-08-17 05:31:46 +0000653 return true;
Chris Lattner2e64c072007-08-10 20:18:51 +0000654
Chris Lattner4b009652007-07-25 00:24:17 +0000655 return new CallExpr(Fn, Args, NumArgsInCall, resultType, RParenLoc);
656}
657
658Action::ExprResult Sema::
Steve Naroff87d58b42007-09-16 03:34:24 +0000659ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty,
Chris Lattner4b009652007-07-25 00:24:17 +0000660 SourceLocation RParenLoc, ExprTy *InitExpr) {
Steve Naroff87d58b42007-09-16 03:34:24 +0000661 assert((Ty != 0) && "ActOnCompoundLiteral(): missing type");
Chris Lattner4b009652007-07-25 00:24:17 +0000662 QualType literalType = QualType::getFromOpaquePtr(Ty);
663 // FIXME: put back this assert when initializers are worked out.
Steve Naroff87d58b42007-09-16 03:34:24 +0000664 //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression");
Chris Lattner4b009652007-07-25 00:24:17 +0000665 Expr *literalExpr = static_cast<Expr*>(InitExpr);
666
667 // FIXME: add semantic analysis (C99 6.5.2.5).
668 return new CompoundLiteralExpr(literalType, literalExpr);
669}
670
671Action::ExprResult Sema::
Steve Naroff87d58b42007-09-16 03:34:24 +0000672ActOnInitList(SourceLocation LBraceLoc, ExprTy **initlist, unsigned NumInit,
Anders Carlsson762b7c72007-08-31 04:56:16 +0000673 SourceLocation RBraceLoc) {
Steve Naroffe14e5542007-09-02 02:04:30 +0000674 Expr **InitList = reinterpret_cast<Expr**>(initlist);
Anders Carlsson762b7c72007-08-31 04:56:16 +0000675
Steve Naroff0acc9c92007-09-15 18:49:24 +0000676 // Semantic analysis for initializers is done by ActOnDeclarator() and
Steve Naroff1c9de712007-09-03 01:24:23 +0000677 // CheckInitializer() - it requires knowledge of the object being intialized.
Anders Carlsson762b7c72007-08-31 04:56:16 +0000678
Steve Naroff7c9d72d2007-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;
Chris Lattner4b009652007-07-25 00:24:17 +0000682}
683
684Action::ExprResult Sema::
Steve Naroff87d58b42007-09-16 03:34:24 +0000685ActOnCastExpr(SourceLocation LParenLoc, TypeTy *Ty,
Chris Lattner4b009652007-07-25 00:24:17 +0000686 SourceLocation RParenLoc, ExprTy *Op) {
Steve Naroff87d58b42007-09-16 03:34:24 +0000687 assert((Ty != 0) && (Op != 0) && "ActOnCastExpr(): missing type or expr");
Chris Lattner4b009652007-07-25 00:24:17 +0000688
689 Expr *castExpr = static_cast<Expr*>(Op);
690 QualType castType = QualType::getFromOpaquePtr(Ty);
691
Steve Naroff68adb482007-08-31 00:32:44 +0000692 UsualUnaryConversions(castExpr);
693
Chris Lattner4b009652007-07-25 00:24:17 +0000694 // C99 6.5.4p2: the cast type needs to be void or scalar and the expression
695 // type needs to be scalar.
696 if (!castType->isScalarType() && !castType->isVoidType()) {
697 return Diag(LParenLoc, diag::err_typecheck_cond_expect_scalar,
698 castType.getAsString(), SourceRange(LParenLoc, RParenLoc));
699 }
700 if (!castExpr->getType()->isScalarType()) {
701 return Diag(castExpr->getLocStart(),
702 diag::err_typecheck_expect_scalar_operand,
703 castExpr->getType().getAsString(), castExpr->getSourceRange());
704 }
705 return new CastExpr(castType, castExpr, LParenLoc);
706}
707
Steve Naroff144667e2007-10-18 05:13:08 +0000708// promoteExprToType - a helper function to ensure we create exactly one
709// ImplicitCastExpr.
710static void promoteExprToType(Expr *&expr, QualType type) {
711 if (ImplicitCastExpr *impCast = dyn_cast<ImplicitCastExpr>(expr))
712 impCast->setType(type);
713 else
714 expr = new ImplicitCastExpr(type, expr);
715 return;
716}
717
Chris Lattner4b009652007-07-25 00:24:17 +0000718inline QualType Sema::CheckConditionalOperands( // C99 6.5.15
719 Expr *&cond, Expr *&lex, Expr *&rex, SourceLocation questionLoc) {
720 UsualUnaryConversions(cond);
721 UsualUnaryConversions(lex);
722 UsualUnaryConversions(rex);
723 QualType condT = cond->getType();
724 QualType lexT = lex->getType();
725 QualType rexT = rex->getType();
726
727 // first, check the condition.
728 if (!condT->isScalarType()) { // C99 6.5.15p2
729 Diag(cond->getLocStart(), diag::err_typecheck_cond_expect_scalar,
730 condT.getAsString());
731 return QualType();
732 }
733 // now check the two expressions.
734 if (lexT->isArithmeticType() && rexT->isArithmeticType()) { // C99 6.5.15p3,5
735 UsualArithmeticConversions(lex, rex);
736 return lex->getType();
737 }
Chris Lattner71225142007-07-31 21:27:01 +0000738 if (const RecordType *LHSRT = lexT->getAsRecordType()) { // C99 6.5.15p3
739 if (const RecordType *RHSRT = rexT->getAsRecordType()) {
740
Chris Lattner0d9bcea2007-08-30 17:45:32 +0000741 if (LHSRT->getDecl()->getIdentifier() ==RHSRT->getDecl()->getIdentifier())
Chris Lattner71225142007-07-31 21:27:01 +0000742 return lexT;
743
Chris Lattner4b009652007-07-25 00:24:17 +0000744 Diag(questionLoc, diag::err_typecheck_cond_incompatible_operands,
745 lexT.getAsString(), rexT.getAsString(),
746 lex->getSourceRange(), rex->getSourceRange());
747 return QualType();
748 }
749 }
750 // C99 6.5.15p3
Steve Naroff144667e2007-10-18 05:13:08 +0000751 if (lexT->isPointerType() && rex->isNullPointerConstant(Context)) {
752 promoteExprToType(rex, lexT); // promote the null to a pointer.
Chris Lattner4b009652007-07-25 00:24:17 +0000753 return lexT;
Steve Naroff144667e2007-10-18 05:13:08 +0000754 }
755 if (rexT->isPointerType() && lex->isNullPointerConstant(Context)) {
756 promoteExprToType(lex, rexT); // promote the null to a pointer.
Chris Lattner4b009652007-07-25 00:24:17 +0000757 return rexT;
Steve Naroff144667e2007-10-18 05:13:08 +0000758 }
Chris Lattner71225142007-07-31 21:27:01 +0000759 if (const PointerType *LHSPT = lexT->getAsPointerType()) { // C99 6.5.15p3,6
760 if (const PointerType *RHSPT = rexT->getAsPointerType()) {
761 // get the "pointed to" types
762 QualType lhptee = LHSPT->getPointeeType();
763 QualType rhptee = RHSPT->getPointeeType();
Chris Lattner4b009652007-07-25 00:24:17 +0000764
Chris Lattner71225142007-07-31 21:27:01 +0000765 // ignore qualifiers on void (C99 6.5.15p3, clause 6)
766 if (lhptee->isVoidType() &&
767 (rhptee->isObjectType() || rhptee->isIncompleteType()))
768 return lexT;
769 if (rhptee->isVoidType() &&
770 (lhptee->isObjectType() || lhptee->isIncompleteType()))
771 return rexT;
Chris Lattner4b009652007-07-25 00:24:17 +0000772
Steve Naroff85f0dc52007-10-15 20:41:53 +0000773 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
774 rhptee.getUnqualifiedType())) {
Chris Lattner71225142007-07-31 21:27:01 +0000775 Diag(questionLoc, diag::ext_typecheck_cond_incompatible_pointers,
776 lexT.getAsString(), rexT.getAsString(),
777 lex->getSourceRange(), rex->getSourceRange());
778 return lexT; // FIXME: this is an _ext - is this return o.k?
779 }
780 // The pointer types are compatible.
Chris Lattner0d9bcea2007-08-30 17:45:32 +0000781 // C99 6.5.15p6: If both operands are pointers to compatible types *or* to
782 // differently qualified versions of compatible types, the result type is
783 // a pointer to an appropriately qualified version of the *composite*
784 // type.
Chris Lattner71225142007-07-31 21:27:01 +0000785 return lexT; // FIXME: Need to return the composite type.
Chris Lattner4b009652007-07-25 00:24:17 +0000786 }
Chris Lattner4b009652007-07-25 00:24:17 +0000787 }
Chris Lattner71225142007-07-31 21:27:01 +0000788
Chris Lattner4b009652007-07-25 00:24:17 +0000789 if (lexT->isVoidType() && rexT->isVoidType()) // C99 6.5.15p3
790 return lexT;
791
792 Diag(questionLoc, diag::err_typecheck_cond_incompatible_operands,
793 lexT.getAsString(), rexT.getAsString(),
794 lex->getSourceRange(), rex->getSourceRange());
795 return QualType();
796}
797
Steve Naroff87d58b42007-09-16 03:34:24 +0000798/// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null
Chris Lattner4b009652007-07-25 00:24:17 +0000799/// in the case of a the GNU conditional expr extension.
Steve Naroff87d58b42007-09-16 03:34:24 +0000800Action::ExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc,
Chris Lattner4b009652007-07-25 00:24:17 +0000801 SourceLocation ColonLoc,
802 ExprTy *Cond, ExprTy *LHS,
803 ExprTy *RHS) {
804 Expr *CondExpr = (Expr *) Cond;
805 Expr *LHSExpr = (Expr *) LHS, *RHSExpr = (Expr *) RHS;
806 QualType result = CheckConditionalOperands(CondExpr, LHSExpr,
807 RHSExpr, QuestionLoc);
808 if (result.isNull())
809 return true;
810 return new ConditionalOperator(CondExpr, LHSExpr, RHSExpr, result);
811}
812
Steve Naroffdb65e052007-08-28 23:30:39 +0000813/// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that
814/// do not have a prototype. Integer promotions are performed on each
815/// argument, and arguments that have type float are promoted to double.
816void Sema::DefaultArgumentPromotion(Expr *&expr) {
817 QualType t = expr->getType();
818 assert(!t.isNull() && "DefaultArgumentPromotion - missing type");
819
820 if (t->isPromotableIntegerType()) // C99 6.3.1.1p2
821 promoteExprToType(expr, Context.IntTy);
822 if (t == Context.FloatTy)
823 promoteExprToType(expr, Context.DoubleTy);
824}
825
Chris Lattner4b009652007-07-25 00:24:17 +0000826/// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4).
827void Sema::DefaultFunctionArrayConversion(Expr *&e) {
828 QualType t = e->getType();
829 assert(!t.isNull() && "DefaultFunctionArrayConversion - missing type");
830
Chris Lattnerf0c4a0a2007-07-31 16:56:34 +0000831 if (const ReferenceType *ref = t->getAsReferenceType()) {
Chris Lattner4b009652007-07-25 00:24:17 +0000832 promoteExprToType(e, ref->getReferenceeType()); // C++ [expr]
833 t = e->getType();
834 }
835 if (t->isFunctionType())
836 promoteExprToType(e, Context.getPointerType(t));
Chris Lattnere35a1042007-07-31 19:29:30 +0000837 else if (const ArrayType *ary = t->getAsArrayType())
Chris Lattner4b009652007-07-25 00:24:17 +0000838 promoteExprToType(e, Context.getPointerType(ary->getElementType()));
839}
840
841/// UsualUnaryConversion - Performs various conversions that are common to most
842/// operators (C99 6.3). The conversions of array and function types are
843/// sometimes surpressed. For example, the array->pointer conversion doesn't
844/// apply if the array is an argument to the sizeof or address (&) operators.
845/// In these instances, this routine should *not* be called.
846void Sema::UsualUnaryConversions(Expr *&expr) {
847 QualType t = expr->getType();
848 assert(!t.isNull() && "UsualUnaryConversions - missing type");
849
Chris Lattnerf0c4a0a2007-07-31 16:56:34 +0000850 if (const ReferenceType *ref = t->getAsReferenceType()) {
Chris Lattner4b009652007-07-25 00:24:17 +0000851 promoteExprToType(expr, ref->getReferenceeType()); // C++ [expr]
852 t = expr->getType();
853 }
854 if (t->isPromotableIntegerType()) // C99 6.3.1.1p2
855 promoteExprToType(expr, Context.IntTy);
856 else
857 DefaultFunctionArrayConversion(expr);
858}
859
Chris Lattner0d9bcea2007-08-30 17:45:32 +0000860/// UsualArithmeticConversions - Performs various conversions that are common to
Chris Lattner4b009652007-07-25 00:24:17 +0000861/// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this
862/// routine returns the first non-arithmetic type found. The client is
863/// responsible for emitting appropriate error diagnostics.
Steve Naroff8f708362007-08-24 19:07:16 +0000864QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr,
865 bool isCompAssign) {
Steve Naroffb2f9f552007-08-25 19:54:59 +0000866 if (!isCompAssign) {
867 UsualUnaryConversions(lhsExpr);
868 UsualUnaryConversions(rhsExpr);
869 }
Steve Naroff7438fdf2007-10-18 18:55:53 +0000870 // For conversion purposes, we ignore any qualifiers.
871 // For example, "const float" and "float" are equivalent.
872 QualType lhs = lhsExpr->getType().getUnqualifiedType();
873 QualType rhs = rhsExpr->getType().getUnqualifiedType();
Chris Lattner4b009652007-07-25 00:24:17 +0000874
875 // If both types are identical, no conversion is needed.
Steve Naroff7438fdf2007-10-18 18:55:53 +0000876 if (lhs == rhs)
877 return lhs;
Chris Lattner4b009652007-07-25 00:24:17 +0000878
879 // If either side is a non-arithmetic type (e.g. a pointer), we are done.
880 // The caller can deal with this (e.g. pointer + int).
881 if (!lhs->isArithmeticType() || !rhs->isArithmeticType())
Steve Naroff8f708362007-08-24 19:07:16 +0000882 return lhs;
Chris Lattner4b009652007-07-25 00:24:17 +0000883
884 // At this point, we have two different arithmetic types.
885
886 // Handle complex types first (C99 6.3.1.8p1).
887 if (lhs->isComplexType() || rhs->isComplexType()) {
888 // if we have an integer operand, the result is the complex type.
889 if (rhs->isIntegerType()) { // convert the rhs to the lhs complex type.
Steve Naroff8f708362007-08-24 19:07:16 +0000890 if (!isCompAssign) promoteExprToType(rhsExpr, lhs);
891 return lhs;
Chris Lattner4b009652007-07-25 00:24:17 +0000892 }
893 if (lhs->isIntegerType()) { // convert the lhs to the rhs complex type.
Steve Naroff8f708362007-08-24 19:07:16 +0000894 if (!isCompAssign) promoteExprToType(lhsExpr, rhs);
895 return rhs;
Chris Lattner4b009652007-07-25 00:24:17 +0000896 }
Steve Naroff3cf497f2007-08-27 01:27:54 +0000897 // This handles complex/complex, complex/float, or float/complex.
898 // When both operands are complex, the shorter operand is converted to the
899 // type of the longer, and that is the type of the result. This corresponds
900 // to what is done when combining two real floating-point operands.
901 // The fun begins when size promotion occur across type domains.
902 // From H&S 6.3.4: When one operand is complex and the other is a real
903 // floating-point type, the less precise type is converted, within it's
904 // real or complex domain, to the precision of the other type. For example,
905 // when combining a "long double" with a "double _Complex", the
906 // "double _Complex" is promoted to "long double _Complex".
Steve Naroff45fc9822007-08-27 15:30:22 +0000907 int result = Context.compareFloatingType(lhs, rhs);
908
909 if (result > 0) { // The left side is bigger, convert rhs.
Steve Naroff3b565d62007-08-27 21:32:55 +0000910 rhs = Context.getFloatingTypeOfSizeWithinDomain(lhs, rhs);
911 if (!isCompAssign)
912 promoteExprToType(rhsExpr, rhs);
913 } else if (result < 0) { // The right side is bigger, convert lhs.
914 lhs = Context.getFloatingTypeOfSizeWithinDomain(rhs, lhs);
915 if (!isCompAssign)
916 promoteExprToType(lhsExpr, lhs);
917 }
918 // At this point, lhs and rhs have the same rank/size. Now, make sure the
919 // domains match. This is a requirement for our implementation, C99
920 // does not require this promotion.
921 if (lhs != rhs) { // Domains don't match, we have complex/float mix.
922 if (lhs->isRealFloatingType()) { // handle "double, _Complex double".
Steve Naroff3b6157f2007-08-27 21:43:43 +0000923 if (!isCompAssign)
924 promoteExprToType(lhsExpr, rhs);
925 return rhs;
Steve Naroff3b565d62007-08-27 21:32:55 +0000926 } else { // handle "_Complex double, double".
Steve Naroff3b6157f2007-08-27 21:43:43 +0000927 if (!isCompAssign)
928 promoteExprToType(rhsExpr, lhs);
929 return lhs;
Steve Naroff3b565d62007-08-27 21:32:55 +0000930 }
Chris Lattner4b009652007-07-25 00:24:17 +0000931 }
Steve Naroff3b6157f2007-08-27 21:43:43 +0000932 return lhs; // The domain/size match exactly.
Chris Lattner4b009652007-07-25 00:24:17 +0000933 }
934 // Now handle "real" floating types (i.e. float, double, long double).
935 if (lhs->isRealFloatingType() || rhs->isRealFloatingType()) {
936 // if we have an integer operand, the result is the real floating type.
937 if (rhs->isIntegerType()) { // convert rhs to the lhs floating point type.
Steve Naroff8f708362007-08-24 19:07:16 +0000938 if (!isCompAssign) promoteExprToType(rhsExpr, lhs);
939 return lhs;
Chris Lattner4b009652007-07-25 00:24:17 +0000940 }
941 if (lhs->isIntegerType()) { // convert lhs to the rhs floating point type.
Steve Naroff8f708362007-08-24 19:07:16 +0000942 if (!isCompAssign) promoteExprToType(lhsExpr, rhs);
943 return rhs;
Chris Lattner4b009652007-07-25 00:24:17 +0000944 }
945 // We have two real floating types, float/complex combos were handled above.
946 // Convert the smaller operand to the bigger result.
Steve Naroff45fc9822007-08-27 15:30:22 +0000947 int result = Context.compareFloatingType(lhs, rhs);
948
949 if (result > 0) { // convert the rhs
Steve Naroff8f708362007-08-24 19:07:16 +0000950 if (!isCompAssign) promoteExprToType(rhsExpr, lhs);
951 return lhs;
Chris Lattner4b009652007-07-25 00:24:17 +0000952 }
Steve Naroff45fc9822007-08-27 15:30:22 +0000953 if (result < 0) { // convert the lhs
954 if (!isCompAssign) promoteExprToType(lhsExpr, rhs); // convert the lhs
955 return rhs;
956 }
957 assert(0 && "Sema::UsualArithmeticConversions(): illegal float comparison");
Chris Lattner4b009652007-07-25 00:24:17 +0000958 }
959 // Finally, we have two differing integer types.
960 if (Context.maxIntegerType(lhs, rhs) == lhs) { // convert the rhs
Steve Naroff8f708362007-08-24 19:07:16 +0000961 if (!isCompAssign) promoteExprToType(rhsExpr, lhs);
962 return lhs;
Chris Lattner4b009652007-07-25 00:24:17 +0000963 }
Steve Naroff8f708362007-08-24 19:07:16 +0000964 if (!isCompAssign) promoteExprToType(lhsExpr, rhs); // convert the lhs
965 return rhs;
Chris Lattner4b009652007-07-25 00:24:17 +0000966}
967
968// CheckPointerTypesForAssignment - This is a very tricky routine (despite
969// being closely modeled after the C99 spec:-). The odd characteristic of this
970// routine is it effectively iqnores the qualifiers on the top level pointee.
971// This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3].
972// FIXME: add a couple examples in this comment.
973Sema::AssignmentCheckResult
974Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) {
975 QualType lhptee, rhptee;
976
977 // get the "pointed to" type (ignoring qualifiers at the top level)
Chris Lattner71225142007-07-31 21:27:01 +0000978 lhptee = lhsType->getAsPointerType()->getPointeeType();
979 rhptee = rhsType->getAsPointerType()->getPointeeType();
Chris Lattner4b009652007-07-25 00:24:17 +0000980
981 // make sure we operate on the canonical type
982 lhptee = lhptee.getCanonicalType();
983 rhptee = rhptee.getCanonicalType();
984
985 AssignmentCheckResult r = Compatible;
986
987 // C99 6.5.16.1p1: This following citation is common to constraints
988 // 3 & 4 (below). ...and the type *pointed to* by the left has all the
989 // qualifiers of the type *pointed to* by the right;
990 if ((lhptee.getQualifiers() & rhptee.getQualifiers()) !=
991 rhptee.getQualifiers())
992 r = CompatiblePointerDiscardsQualifiers;
993
994 // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or
995 // incomplete type and the other is a pointer to a qualified or unqualified
996 // version of void...
997 if (lhptee.getUnqualifiedType()->isVoidType() &&
998 (rhptee->isObjectType() || rhptee->isIncompleteType()))
999 ;
1000 else if (rhptee.getUnqualifiedType()->isVoidType() &&
1001 (lhptee->isObjectType() || lhptee->isIncompleteType()))
1002 ;
1003 // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or
1004 // unqualified versions of compatible types, ...
Steve Naroff85f0dc52007-10-15 20:41:53 +00001005 else if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
1006 rhptee.getUnqualifiedType()))
Chris Lattner4b009652007-07-25 00:24:17 +00001007 r = IncompatiblePointer; // this "trumps" PointerAssignDiscardsQualifiers
1008 return r;
1009}
1010
1011/// CheckAssignmentConstraints (C99 6.5.16) - This routine currently
1012/// has code to accommodate several GCC extensions when type checking
1013/// pointers. Here are some objectionable examples that GCC considers warnings:
1014///
1015/// int a, *pint;
1016/// short *pshort;
1017/// struct foo *pfoo;
1018///
1019/// pint = pshort; // warning: assignment from incompatible pointer type
1020/// a = pint; // warning: assignment makes integer from pointer without a cast
1021/// pint = a; // warning: assignment makes pointer from integer without a cast
1022/// pint = pfoo; // warning: assignment from incompatible pointer type
1023///
1024/// As a result, the code for dealing with pointers is more complex than the
1025/// C99 spec dictates.
1026/// Note: the warning above turn into errors when -pedantic-errors is enabled.
1027///
1028Sema::AssignmentCheckResult
1029Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) {
1030 if (lhsType == rhsType) // common case, fast path...
1031 return Compatible;
1032
Anders Carlssoncebb8d62007-10-12 23:56:29 +00001033 if (lhsType->isReferenceType() || rhsType->isReferenceType()) {
Steve Naroff85f0dc52007-10-15 20:41:53 +00001034 if (Context.referenceTypesAreCompatible(lhsType, rhsType))
Anders Carlssoncebb8d62007-10-12 23:56:29 +00001035 return Compatible;
1036 } else if (lhsType->isArithmeticType() && rhsType->isArithmeticType()) {
Chris Lattner4b009652007-07-25 00:24:17 +00001037 if (lhsType->isVectorType() || rhsType->isVectorType()) {
1038 if (lhsType.getCanonicalType() != rhsType.getCanonicalType())
1039 return Incompatible;
1040 }
1041 return Compatible;
1042 } else if (lhsType->isPointerType()) {
1043 if (rhsType->isIntegerType())
1044 return PointerFromInt;
1045
1046 if (rhsType->isPointerType())
1047 return CheckPointerTypesForAssignment(lhsType, rhsType);
1048 } else if (rhsType->isPointerType()) {
1049 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer.
1050 if ((lhsType->isIntegerType()) && (lhsType != Context.BoolTy))
1051 return IntFromPointer;
1052
1053 if (lhsType->isPointerType())
1054 return CheckPointerTypesForAssignment(lhsType, rhsType);
1055 } else if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) {
Steve Naroff85f0dc52007-10-15 20:41:53 +00001056 if (Context.tagTypesAreCompatible(lhsType, rhsType))
Chris Lattner4b009652007-07-25 00:24:17 +00001057 return Compatible;
Chris Lattner4b009652007-07-25 00:24:17 +00001058 }
1059 return Incompatible;
1060}
1061
1062Sema::AssignmentCheckResult
1063Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) {
Chris Lattner5f505bf2007-10-16 02:55:40 +00001064 // This check seems unnatural, however it is necessary to ensure the proper
Chris Lattner4b009652007-07-25 00:24:17 +00001065 // conversion of functions/arrays. If the conversion were done for all
Steve Naroff0acc9c92007-09-15 18:49:24 +00001066 // DeclExpr's (created by ActOnIdentifierExpr), it would mess up the unary
Chris Lattner4b009652007-07-25 00:24:17 +00001067 // expressions that surpress this implicit conversion (&, sizeof).
Chris Lattner5f505bf2007-10-16 02:55:40 +00001068 //
1069 // Suppress this for references: C99 8.5.3p5. FIXME: revisit when references
1070 // are better understood.
1071 if (!lhsType->isReferenceType())
1072 DefaultFunctionArrayConversion(rExpr);
Steve Naroff0f32f432007-08-24 22:33:52 +00001073
1074 Sema::AssignmentCheckResult result;
Chris Lattner4b009652007-07-25 00:24:17 +00001075
Steve Naroff0f32f432007-08-24 22:33:52 +00001076 result = CheckAssignmentConstraints(lhsType, rExpr->getType());
1077
1078 // C99 6.5.16.1p2: The value of the right operand is converted to the
1079 // type of the assignment expression.
1080 if (rExpr->getType() != lhsType)
1081 promoteExprToType(rExpr, lhsType);
1082 return result;
Chris Lattner4b009652007-07-25 00:24:17 +00001083}
1084
1085Sema::AssignmentCheckResult
1086Sema::CheckCompoundAssignmentConstraints(QualType lhsType, QualType rhsType) {
1087 return CheckAssignmentConstraints(lhsType, rhsType);
1088}
1089
1090inline void Sema::InvalidOperands(SourceLocation loc, Expr *&lex, Expr *&rex) {
1091 Diag(loc, diag::err_typecheck_invalid_operands,
1092 lex->getType().getAsString(), rex->getType().getAsString(),
1093 lex->getSourceRange(), rex->getSourceRange());
1094}
1095
1096inline QualType Sema::CheckVectorOperands(SourceLocation loc, Expr *&lex,
1097 Expr *&rex) {
1098 QualType lhsType = lex->getType(), rhsType = rex->getType();
1099
1100 // make sure the vector types are identical.
1101 if (lhsType == rhsType)
1102 return lhsType;
1103 // You cannot convert between vector values of different size.
1104 Diag(loc, diag::err_typecheck_vector_not_convertable,
1105 lex->getType().getAsString(), rex->getType().getAsString(),
1106 lex->getSourceRange(), rex->getSourceRange());
1107 return QualType();
1108}
1109
1110inline QualType Sema::CheckMultiplyDivideOperands(
Steve Naroff8f708362007-08-24 19:07:16 +00001111 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Chris Lattner4b009652007-07-25 00:24:17 +00001112{
1113 QualType lhsType = lex->getType(), rhsType = rex->getType();
1114
1115 if (lhsType->isVectorType() || rhsType->isVectorType())
1116 return CheckVectorOperands(loc, lex, rex);
1117
Steve Naroff8f708362007-08-24 19:07:16 +00001118 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Chris Lattner4b009652007-07-25 00:24:17 +00001119
Chris Lattner4b009652007-07-25 00:24:17 +00001120 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff8f708362007-08-24 19:07:16 +00001121 return compType;
Chris Lattner4b009652007-07-25 00:24:17 +00001122 InvalidOperands(loc, lex, rex);
1123 return QualType();
1124}
1125
1126inline QualType Sema::CheckRemainderOperands(
Steve Naroff8f708362007-08-24 19:07:16 +00001127 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Chris Lattner4b009652007-07-25 00:24:17 +00001128{
1129 QualType lhsType = lex->getType(), rhsType = rex->getType();
1130
Steve Naroff8f708362007-08-24 19:07:16 +00001131 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Chris Lattner4b009652007-07-25 00:24:17 +00001132
Chris Lattner4b009652007-07-25 00:24:17 +00001133 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff8f708362007-08-24 19:07:16 +00001134 return compType;
Chris Lattner4b009652007-07-25 00:24:17 +00001135 InvalidOperands(loc, lex, rex);
1136 return QualType();
1137}
1138
1139inline QualType Sema::CheckAdditionOperands( // C99 6.5.6
Steve Naroff8f708362007-08-24 19:07:16 +00001140 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Chris Lattner4b009652007-07-25 00:24:17 +00001141{
1142 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
1143 return CheckVectorOperands(loc, lex, rex);
1144
Steve Naroff8f708362007-08-24 19:07:16 +00001145 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Chris Lattner4b009652007-07-25 00:24:17 +00001146
1147 // handle the common case first (both operands are arithmetic).
1148 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff8f708362007-08-24 19:07:16 +00001149 return compType;
Chris Lattner4b009652007-07-25 00:24:17 +00001150
1151 if (lex->getType()->isPointerType() && rex->getType()->isIntegerType())
1152 return lex->getType();
1153 if (lex->getType()->isIntegerType() && rex->getType()->isPointerType())
1154 return rex->getType();
1155 InvalidOperands(loc, lex, rex);
1156 return QualType();
1157}
1158
1159inline QualType Sema::CheckSubtractionOperands( // C99 6.5.6
Steve Naroff8f708362007-08-24 19:07:16 +00001160 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Chris Lattner4b009652007-07-25 00:24:17 +00001161{
1162 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
1163 return CheckVectorOperands(loc, lex, rex);
1164
Steve Naroff8f708362007-08-24 19:07:16 +00001165 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Chris Lattner4b009652007-07-25 00:24:17 +00001166
1167 // handle the common case first (both operands are arithmetic).
1168 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff8f708362007-08-24 19:07:16 +00001169 return compType;
Chris Lattner4b009652007-07-25 00:24:17 +00001170
1171 if (lex->getType()->isPointerType() && rex->getType()->isIntegerType())
Steve Naroff8f708362007-08-24 19:07:16 +00001172 return compType;
Chris Lattner4b009652007-07-25 00:24:17 +00001173 if (lex->getType()->isPointerType() && rex->getType()->isPointerType())
1174 return Context.getPointerDiffType();
1175 InvalidOperands(loc, lex, rex);
1176 return QualType();
1177}
1178
1179inline QualType Sema::CheckShiftOperands( // C99 6.5.7
Steve Naroff8f708362007-08-24 19:07:16 +00001180 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Chris Lattner4b009652007-07-25 00:24:17 +00001181{
1182 // FIXME: Shifts don't perform usual arithmetic conversions. This is wrong
1183 // for int << longlong -> the result type should be int, not long long.
Steve Naroff8f708362007-08-24 19:07:16 +00001184 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Chris Lattner4b009652007-07-25 00:24:17 +00001185
1186 // handle the common case first (both operands are arithmetic).
1187 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff8f708362007-08-24 19:07:16 +00001188 return compType;
Chris Lattner4b009652007-07-25 00:24:17 +00001189 InvalidOperands(loc, lex, rex);
1190 return QualType();
1191}
1192
Chris Lattner254f3bc2007-08-26 01:18:55 +00001193inline QualType Sema::CheckCompareOperands( // C99 6.5.8
1194 Expr *&lex, Expr *&rex, SourceLocation loc, bool isRelational)
Chris Lattner4b009652007-07-25 00:24:17 +00001195{
Chris Lattner254f3bc2007-08-26 01:18:55 +00001196 // C99 6.5.8p3 / C99 6.5.9p4
Steve Naroffecc4fa12007-08-10 18:26:40 +00001197 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
1198 UsualArithmeticConversions(lex, rex);
1199 else {
1200 UsualUnaryConversions(lex);
1201 UsualUnaryConversions(rex);
1202 }
Chris Lattner4b009652007-07-25 00:24:17 +00001203 QualType lType = lex->getType();
1204 QualType rType = rex->getType();
1205
Chris Lattner254f3bc2007-08-26 01:18:55 +00001206 if (isRelational) {
1207 if (lType->isRealType() && rType->isRealType())
1208 return Context.IntTy;
1209 } else {
Chris Lattnerbd3cc222007-08-30 06:10:41 +00001210 if (lType->isFloatingType() && rType->isFloatingType())
Ted Kremenekec761af2007-08-29 18:06:12 +00001211 Diag(loc, diag::warn_floatingpoint_eq);
1212
Chris Lattner254f3bc2007-08-26 01:18:55 +00001213 if (lType->isArithmeticType() && rType->isArithmeticType())
1214 return Context.IntTy;
1215 }
Chris Lattner4b009652007-07-25 00:24:17 +00001216
Chris Lattner22be8422007-08-26 01:10:14 +00001217 bool LHSIsNull = lex->isNullPointerConstant(Context);
1218 bool RHSIsNull = rex->isNullPointerConstant(Context);
1219
Chris Lattner254f3bc2007-08-26 01:18:55 +00001220 // All of the following pointer related warnings are GCC extensions, except
1221 // when handling null pointer constants. One day, we can consider making them
1222 // errors (when -pedantic-errors is enabled).
Steve Naroffc33c0602007-08-27 04:08:11 +00001223 if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2
Chris Lattner22be8422007-08-26 01:10:14 +00001224 if (!LHSIsNull && !RHSIsNull &&
Steve Naroff85f0dc52007-10-15 20:41:53 +00001225 !Context.pointerTypesAreCompatible(lType.getUnqualifiedType(),
1226 rType.getUnqualifiedType())) {
Steve Naroff4462cb02007-08-16 21:48:38 +00001227 Diag(loc, diag::ext_typecheck_comparison_of_distinct_pointers,
1228 lType.getAsString(), rType.getAsString(),
1229 lex->getSourceRange(), rex->getSourceRange());
Chris Lattner4b009652007-07-25 00:24:17 +00001230 }
Chris Lattner22be8422007-08-26 01:10:14 +00001231 promoteExprToType(rex, lType); // promote the pointer to pointer
Steve Naroff4462cb02007-08-16 21:48:38 +00001232 return Context.IntTy;
1233 }
1234 if (lType->isPointerType() && rType->isIntegerType()) {
Chris Lattner22be8422007-08-26 01:10:14 +00001235 if (!RHSIsNull)
Steve Naroff4462cb02007-08-16 21:48:38 +00001236 Diag(loc, diag::ext_typecheck_comparison_of_pointer_integer,
1237 lType.getAsString(), rType.getAsString(),
1238 lex->getSourceRange(), rex->getSourceRange());
Chris Lattner22be8422007-08-26 01:10:14 +00001239 promoteExprToType(rex, lType); // promote the integer to pointer
Steve Naroff4462cb02007-08-16 21:48:38 +00001240 return Context.IntTy;
1241 }
1242 if (lType->isIntegerType() && rType->isPointerType()) {
Chris Lattner22be8422007-08-26 01:10:14 +00001243 if (!LHSIsNull)
Steve Naroff4462cb02007-08-16 21:48:38 +00001244 Diag(loc, diag::ext_typecheck_comparison_of_pointer_integer,
1245 lType.getAsString(), rType.getAsString(),
1246 lex->getSourceRange(), rex->getSourceRange());
Chris Lattner22be8422007-08-26 01:10:14 +00001247 promoteExprToType(lex, rType); // promote the integer to pointer
Steve Naroff4462cb02007-08-16 21:48:38 +00001248 return Context.IntTy;
Chris Lattner4b009652007-07-25 00:24:17 +00001249 }
1250 InvalidOperands(loc, lex, rex);
1251 return QualType();
1252}
1253
Chris Lattner4b009652007-07-25 00:24:17 +00001254inline QualType Sema::CheckBitwiseOperands(
Steve Naroff8f708362007-08-24 19:07:16 +00001255 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Chris Lattner4b009652007-07-25 00:24:17 +00001256{
1257 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
1258 return CheckVectorOperands(loc, lex, rex);
1259
Steve Naroff8f708362007-08-24 19:07:16 +00001260 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Chris Lattner4b009652007-07-25 00:24:17 +00001261
1262 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff8f708362007-08-24 19:07:16 +00001263 return compType;
Chris Lattner4b009652007-07-25 00:24:17 +00001264 InvalidOperands(loc, lex, rex);
1265 return QualType();
1266}
1267
1268inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14]
1269 Expr *&lex, Expr *&rex, SourceLocation loc)
1270{
1271 UsualUnaryConversions(lex);
1272 UsualUnaryConversions(rex);
1273
1274 if (lex->getType()->isScalarType() || rex->getType()->isScalarType())
1275 return Context.IntTy;
1276 InvalidOperands(loc, lex, rex);
1277 return QualType();
1278}
1279
1280inline QualType Sema::CheckAssignmentOperands( // C99 6.5.16.1
Steve Naroff0f32f432007-08-24 22:33:52 +00001281 Expr *lex, Expr *&rex, SourceLocation loc, QualType compoundType)
Chris Lattner4b009652007-07-25 00:24:17 +00001282{
1283 QualType lhsType = lex->getType();
1284 QualType rhsType = compoundType.isNull() ? rex->getType() : compoundType;
1285 bool hadError = false;
1286 Expr::isModifiableLvalueResult mlval = lex->isModifiableLvalue();
1287
1288 switch (mlval) { // C99 6.5.16p2
1289 case Expr::MLV_Valid:
1290 break;
1291 case Expr::MLV_ConstQualified:
1292 Diag(loc, diag::err_typecheck_assign_const, lex->getSourceRange());
1293 hadError = true;
1294 break;
1295 case Expr::MLV_ArrayType:
1296 Diag(loc, diag::err_typecheck_array_not_modifiable_lvalue,
1297 lhsType.getAsString(), lex->getSourceRange());
1298 return QualType();
1299 case Expr::MLV_NotObjectType:
1300 Diag(loc, diag::err_typecheck_non_object_not_modifiable_lvalue,
1301 lhsType.getAsString(), lex->getSourceRange());
1302 return QualType();
1303 case Expr::MLV_InvalidExpression:
1304 Diag(loc, diag::err_typecheck_expression_not_modifiable_lvalue,
1305 lex->getSourceRange());
1306 return QualType();
1307 case Expr::MLV_IncompleteType:
1308 case Expr::MLV_IncompleteVoidType:
1309 Diag(loc, diag::err_typecheck_incomplete_type_not_modifiable_lvalue,
1310 lhsType.getAsString(), lex->getSourceRange());
1311 return QualType();
Steve Naroffba67f692007-07-30 03:29:09 +00001312 case Expr::MLV_DuplicateVectorComponents:
1313 Diag(loc, diag::err_typecheck_duplicate_vector_components_not_mlvalue,
1314 lex->getSourceRange());
1315 return QualType();
Chris Lattner4b009652007-07-25 00:24:17 +00001316 }
1317 AssignmentCheckResult result;
1318
1319 if (compoundType.isNull())
1320 result = CheckSingleAssignmentConstraints(lhsType, rex);
1321 else
1322 result = CheckCompoundAssignmentConstraints(lhsType, rhsType);
Steve Naroff7cbb1462007-07-31 12:34:36 +00001323
Chris Lattner4b009652007-07-25 00:24:17 +00001324 // decode the result (notice that extensions still return a type).
1325 switch (result) {
1326 case Compatible:
1327 break;
1328 case Incompatible:
1329 Diag(loc, diag::err_typecheck_assign_incompatible,
1330 lhsType.getAsString(), rhsType.getAsString(),
1331 lex->getSourceRange(), rex->getSourceRange());
1332 hadError = true;
1333 break;
1334 case PointerFromInt:
1335 // check for null pointer constant (C99 6.3.2.3p3)
1336 if (compoundType.isNull() && !rex->isNullPointerConstant(Context)) {
1337 Diag(loc, diag::ext_typecheck_assign_pointer_int,
1338 lhsType.getAsString(), rhsType.getAsString(),
1339 lex->getSourceRange(), rex->getSourceRange());
1340 }
1341 break;
1342 case IntFromPointer:
1343 Diag(loc, diag::ext_typecheck_assign_pointer_int,
1344 lhsType.getAsString(), rhsType.getAsString(),
1345 lex->getSourceRange(), rex->getSourceRange());
1346 break;
1347 case IncompatiblePointer:
1348 Diag(loc, diag::ext_typecheck_assign_incompatible_pointer,
1349 lhsType.getAsString(), rhsType.getAsString(),
1350 lex->getSourceRange(), rex->getSourceRange());
1351 break;
1352 case CompatiblePointerDiscardsQualifiers:
1353 Diag(loc, diag::ext_typecheck_assign_discards_qualifiers,
1354 lhsType.getAsString(), rhsType.getAsString(),
1355 lex->getSourceRange(), rex->getSourceRange());
1356 break;
1357 }
1358 // C99 6.5.16p3: The type of an assignment expression is the type of the
1359 // left operand unless the left operand has qualified type, in which case
1360 // it is the unqualified version of the type of the left operand.
1361 // C99 6.5.16.1p2: In simple assignment, the value of the right operand
1362 // is converted to the type of the assignment expression (above).
Chris Lattner0d9bcea2007-08-30 17:45:32 +00001363 // C++ 5.17p1: the type of the assignment expression is that of its left
1364 // oprdu.
Chris Lattner4b009652007-07-25 00:24:17 +00001365 return hadError ? QualType() : lhsType.getUnqualifiedType();
1366}
1367
1368inline QualType Sema::CheckCommaOperands( // C99 6.5.17
1369 Expr *&lex, Expr *&rex, SourceLocation loc) {
1370 UsualUnaryConversions(rex);
1371 return rex->getType();
1372}
1373
1374/// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine
1375/// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions.
1376QualType Sema::CheckIncrementDecrementOperand(Expr *op, SourceLocation OpLoc) {
1377 QualType resType = op->getType();
1378 assert(!resType.isNull() && "no type for increment/decrement expression");
1379
Steve Naroffd30e1932007-08-24 17:20:07 +00001380 // C99 6.5.2.4p1: We allow complex as a GCC extension.
Chris Lattner4b009652007-07-25 00:24:17 +00001381 if (const PointerType *pt = dyn_cast<PointerType>(resType)) {
1382 if (!pt->getPointeeType()->isObjectType()) { // C99 6.5.2.4p2, 6.5.6p2
1383 Diag(OpLoc, diag::err_typecheck_arithmetic_incomplete_type,
1384 resType.getAsString(), op->getSourceRange());
1385 return QualType();
1386 }
Steve Naroffd30e1932007-08-24 17:20:07 +00001387 } else if (!resType->isRealType()) {
1388 if (resType->isComplexType())
1389 // C99 does not support ++/-- on complex types.
1390 Diag(OpLoc, diag::ext_integer_increment_complex,
1391 resType.getAsString(), op->getSourceRange());
1392 else {
1393 Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement,
1394 resType.getAsString(), op->getSourceRange());
1395 return QualType();
1396 }
Chris Lattner4b009652007-07-25 00:24:17 +00001397 }
Steve Naroff6acc0f42007-08-23 21:37:33 +00001398 // At this point, we know we have a real, complex or pointer type.
1399 // Now make sure the operand is a modifiable lvalue.
Chris Lattner4b009652007-07-25 00:24:17 +00001400 Expr::isModifiableLvalueResult mlval = op->isModifiableLvalue();
1401 if (mlval != Expr::MLV_Valid) {
1402 // FIXME: emit a more precise diagnostic...
1403 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_incr_decr,
1404 op->getSourceRange());
1405 return QualType();
1406 }
1407 return resType;
1408}
1409
1410/// getPrimaryDeclaration - Helper function for CheckAddressOfOperand().
1411/// This routine allows us to typecheck complex/recursive expressions
1412/// where the declaration is needed for type checking. Here are some
1413/// examples: &s.xx, &s.zz[1].yy, &(1+2), &(XX), &"123"[2].
1414static Decl *getPrimaryDeclaration(Expr *e) {
1415 switch (e->getStmtClass()) {
1416 case Stmt::DeclRefExprClass:
1417 return cast<DeclRefExpr>(e)->getDecl();
1418 case Stmt::MemberExprClass:
1419 return getPrimaryDeclaration(cast<MemberExpr>(e)->getBase());
1420 case Stmt::ArraySubscriptExprClass:
1421 return getPrimaryDeclaration(cast<ArraySubscriptExpr>(e)->getBase());
1422 case Stmt::CallExprClass:
1423 return getPrimaryDeclaration(cast<CallExpr>(e)->getCallee());
1424 case Stmt::UnaryOperatorClass:
1425 return getPrimaryDeclaration(cast<UnaryOperator>(e)->getSubExpr());
1426 case Stmt::ParenExprClass:
1427 return getPrimaryDeclaration(cast<ParenExpr>(e)->getSubExpr());
1428 default:
1429 return 0;
1430 }
1431}
1432
1433/// CheckAddressOfOperand - The operand of & must be either a function
1434/// designator or an lvalue designating an object. If it is an lvalue, the
1435/// object cannot be declared with storage class register or be a bit field.
1436/// Note: The usual conversions are *not* applied to the operand of the &
1437/// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue.
1438QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) {
1439 Decl *dcl = getPrimaryDeclaration(op);
1440 Expr::isLvalueResult lval = op->isLvalue();
1441
1442 if (lval != Expr::LV_Valid) { // C99 6.5.3.2p1
1443 if (dcl && isa<FunctionDecl>(dcl)) // allow function designators
1444 ;
1445 else { // FIXME: emit more specific diag...
1446 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof,
1447 op->getSourceRange());
1448 return QualType();
1449 }
1450 } else if (dcl) {
1451 // We have an lvalue with a decl. Make sure the decl is not declared
1452 // with the register storage-class specifier.
1453 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) {
1454 if (vd->getStorageClass() == VarDecl::Register) {
1455 Diag(OpLoc, diag::err_typecheck_address_of_register,
1456 op->getSourceRange());
1457 return QualType();
1458 }
1459 } else
1460 assert(0 && "Unknown/unexpected decl type");
1461
1462 // FIXME: add check for bitfields!
1463 }
1464 // If the operand has type "type", the result has type "pointer to type".
1465 return Context.getPointerType(op->getType());
1466}
1467
1468QualType Sema::CheckIndirectionOperand(Expr *op, SourceLocation OpLoc) {
1469 UsualUnaryConversions(op);
1470 QualType qType = op->getType();
1471
Chris Lattner7931f4a2007-07-31 16:53:04 +00001472 if (const PointerType *PT = qType->getAsPointerType()) {
Chris Lattner4b009652007-07-25 00:24:17 +00001473 QualType ptype = PT->getPointeeType();
1474 // C99 6.5.3.2p4. "if it points to an object,...".
1475 if (ptype->isIncompleteType()) { // An incomplete type is not an object
1476 // GCC compat: special case 'void *' (treat as warning).
1477 if (ptype->isVoidType()) {
1478 Diag(OpLoc, diag::ext_typecheck_deref_ptr_to_void,
1479 qType.getAsString(), op->getSourceRange());
1480 } else {
1481 Diag(OpLoc, diag::err_typecheck_deref_incomplete_type,
1482 ptype.getAsString(), op->getSourceRange());
1483 return QualType();
1484 }
1485 }
1486 return ptype;
1487 }
1488 Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer,
1489 qType.getAsString(), op->getSourceRange());
1490 return QualType();
1491}
1492
1493static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode(
1494 tok::TokenKind Kind) {
1495 BinaryOperator::Opcode Opc;
1496 switch (Kind) {
1497 default: assert(0 && "Unknown binop!");
1498 case tok::star: Opc = BinaryOperator::Mul; break;
1499 case tok::slash: Opc = BinaryOperator::Div; break;
1500 case tok::percent: Opc = BinaryOperator::Rem; break;
1501 case tok::plus: Opc = BinaryOperator::Add; break;
1502 case tok::minus: Opc = BinaryOperator::Sub; break;
1503 case tok::lessless: Opc = BinaryOperator::Shl; break;
1504 case tok::greatergreater: Opc = BinaryOperator::Shr; break;
1505 case tok::lessequal: Opc = BinaryOperator::LE; break;
1506 case tok::less: Opc = BinaryOperator::LT; break;
1507 case tok::greaterequal: Opc = BinaryOperator::GE; break;
1508 case tok::greater: Opc = BinaryOperator::GT; break;
1509 case tok::exclaimequal: Opc = BinaryOperator::NE; break;
1510 case tok::equalequal: Opc = BinaryOperator::EQ; break;
1511 case tok::amp: Opc = BinaryOperator::And; break;
1512 case tok::caret: Opc = BinaryOperator::Xor; break;
1513 case tok::pipe: Opc = BinaryOperator::Or; break;
1514 case tok::ampamp: Opc = BinaryOperator::LAnd; break;
1515 case tok::pipepipe: Opc = BinaryOperator::LOr; break;
1516 case tok::equal: Opc = BinaryOperator::Assign; break;
1517 case tok::starequal: Opc = BinaryOperator::MulAssign; break;
1518 case tok::slashequal: Opc = BinaryOperator::DivAssign; break;
1519 case tok::percentequal: Opc = BinaryOperator::RemAssign; break;
1520 case tok::plusequal: Opc = BinaryOperator::AddAssign; break;
1521 case tok::minusequal: Opc = BinaryOperator::SubAssign; break;
1522 case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break;
1523 case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break;
1524 case tok::ampequal: Opc = BinaryOperator::AndAssign; break;
1525 case tok::caretequal: Opc = BinaryOperator::XorAssign; break;
1526 case tok::pipeequal: Opc = BinaryOperator::OrAssign; break;
1527 case tok::comma: Opc = BinaryOperator::Comma; break;
1528 }
1529 return Opc;
1530}
1531
1532static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode(
1533 tok::TokenKind Kind) {
1534 UnaryOperator::Opcode Opc;
1535 switch (Kind) {
1536 default: assert(0 && "Unknown unary op!");
1537 case tok::plusplus: Opc = UnaryOperator::PreInc; break;
1538 case tok::minusminus: Opc = UnaryOperator::PreDec; break;
1539 case tok::amp: Opc = UnaryOperator::AddrOf; break;
1540 case tok::star: Opc = UnaryOperator::Deref; break;
1541 case tok::plus: Opc = UnaryOperator::Plus; break;
1542 case tok::minus: Opc = UnaryOperator::Minus; break;
1543 case tok::tilde: Opc = UnaryOperator::Not; break;
1544 case tok::exclaim: Opc = UnaryOperator::LNot; break;
1545 case tok::kw_sizeof: Opc = UnaryOperator::SizeOf; break;
1546 case tok::kw___alignof: Opc = UnaryOperator::AlignOf; break;
1547 case tok::kw___real: Opc = UnaryOperator::Real; break;
1548 case tok::kw___imag: Opc = UnaryOperator::Imag; break;
1549 case tok::kw___extension__: Opc = UnaryOperator::Extension; break;
1550 }
1551 return Opc;
1552}
1553
1554// Binary Operators. 'Tok' is the token for the operator.
Steve Naroff87d58b42007-09-16 03:34:24 +00001555Action::ExprResult Sema::ActOnBinOp(SourceLocation TokLoc, tok::TokenKind Kind,
Chris Lattner4b009652007-07-25 00:24:17 +00001556 ExprTy *LHS, ExprTy *RHS) {
1557 BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind);
1558 Expr *lhs = (Expr *)LHS, *rhs = (Expr*)RHS;
1559
Steve Naroff87d58b42007-09-16 03:34:24 +00001560 assert((lhs != 0) && "ActOnBinOp(): missing left expression");
1561 assert((rhs != 0) && "ActOnBinOp(): missing right expression");
Chris Lattner4b009652007-07-25 00:24:17 +00001562
1563 QualType ResultTy; // Result type of the binary operator.
1564 QualType CompTy; // Computation type for compound assignments (e.g. '+=')
1565
1566 switch (Opc) {
1567 default:
1568 assert(0 && "Unknown binary expr!");
1569 case BinaryOperator::Assign:
1570 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, QualType());
1571 break;
1572 case BinaryOperator::Mul:
1573 case BinaryOperator::Div:
1574 ResultTy = CheckMultiplyDivideOperands(lhs, rhs, TokLoc);
1575 break;
1576 case BinaryOperator::Rem:
1577 ResultTy = CheckRemainderOperands(lhs, rhs, TokLoc);
1578 break;
1579 case BinaryOperator::Add:
1580 ResultTy = CheckAdditionOperands(lhs, rhs, TokLoc);
1581 break;
1582 case BinaryOperator::Sub:
1583 ResultTy = CheckSubtractionOperands(lhs, rhs, TokLoc);
1584 break;
1585 case BinaryOperator::Shl:
1586 case BinaryOperator::Shr:
1587 ResultTy = CheckShiftOperands(lhs, rhs, TokLoc);
1588 break;
1589 case BinaryOperator::LE:
1590 case BinaryOperator::LT:
1591 case BinaryOperator::GE:
1592 case BinaryOperator::GT:
Chris Lattner254f3bc2007-08-26 01:18:55 +00001593 ResultTy = CheckCompareOperands(lhs, rhs, TokLoc, true);
Chris Lattner4b009652007-07-25 00:24:17 +00001594 break;
1595 case BinaryOperator::EQ:
1596 case BinaryOperator::NE:
Chris Lattner254f3bc2007-08-26 01:18:55 +00001597 ResultTy = CheckCompareOperands(lhs, rhs, TokLoc, false);
Chris Lattner4b009652007-07-25 00:24:17 +00001598 break;
1599 case BinaryOperator::And:
1600 case BinaryOperator::Xor:
1601 case BinaryOperator::Or:
1602 ResultTy = CheckBitwiseOperands(lhs, rhs, TokLoc);
1603 break;
1604 case BinaryOperator::LAnd:
1605 case BinaryOperator::LOr:
1606 ResultTy = CheckLogicalOperands(lhs, rhs, TokLoc);
1607 break;
1608 case BinaryOperator::MulAssign:
1609 case BinaryOperator::DivAssign:
Steve Naroff8f708362007-08-24 19:07:16 +00001610 CompTy = CheckMultiplyDivideOperands(lhs, rhs, TokLoc, true);
Chris Lattner4b009652007-07-25 00:24:17 +00001611 if (!CompTy.isNull())
1612 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1613 break;
1614 case BinaryOperator::RemAssign:
Steve Naroff8f708362007-08-24 19:07:16 +00001615 CompTy = CheckRemainderOperands(lhs, rhs, TokLoc, true);
Chris Lattner4b009652007-07-25 00:24:17 +00001616 if (!CompTy.isNull())
1617 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1618 break;
1619 case BinaryOperator::AddAssign:
Steve Naroff8f708362007-08-24 19:07:16 +00001620 CompTy = CheckAdditionOperands(lhs, rhs, TokLoc, true);
Chris Lattner4b009652007-07-25 00:24:17 +00001621 if (!CompTy.isNull())
1622 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1623 break;
1624 case BinaryOperator::SubAssign:
Steve Naroff8f708362007-08-24 19:07:16 +00001625 CompTy = CheckSubtractionOperands(lhs, rhs, TokLoc, true);
Chris Lattner4b009652007-07-25 00:24:17 +00001626 if (!CompTy.isNull())
1627 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1628 break;
1629 case BinaryOperator::ShlAssign:
1630 case BinaryOperator::ShrAssign:
Steve Naroff8f708362007-08-24 19:07:16 +00001631 CompTy = CheckShiftOperands(lhs, rhs, TokLoc, true);
Chris Lattner4b009652007-07-25 00:24:17 +00001632 if (!CompTy.isNull())
1633 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1634 break;
1635 case BinaryOperator::AndAssign:
1636 case BinaryOperator::XorAssign:
1637 case BinaryOperator::OrAssign:
Steve Naroff8f708362007-08-24 19:07:16 +00001638 CompTy = CheckBitwiseOperands(lhs, rhs, TokLoc, true);
Chris Lattner4b009652007-07-25 00:24:17 +00001639 if (!CompTy.isNull())
1640 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1641 break;
1642 case BinaryOperator::Comma:
1643 ResultTy = CheckCommaOperands(lhs, rhs, TokLoc);
1644 break;
1645 }
1646 if (ResultTy.isNull())
1647 return true;
1648 if (CompTy.isNull())
Chris Lattnerf420df12007-08-28 18:36:55 +00001649 return new BinaryOperator(lhs, rhs, Opc, ResultTy, TokLoc);
Chris Lattner4b009652007-07-25 00:24:17 +00001650 else
Chris Lattnerf420df12007-08-28 18:36:55 +00001651 return new CompoundAssignOperator(lhs, rhs, Opc, ResultTy, CompTy, TokLoc);
Chris Lattner4b009652007-07-25 00:24:17 +00001652}
1653
1654// Unary Operators. 'Tok' is the token for the operator.
Steve Naroff87d58b42007-09-16 03:34:24 +00001655Action::ExprResult Sema::ActOnUnaryOp(SourceLocation OpLoc, tok::TokenKind Op,
Chris Lattner4b009652007-07-25 00:24:17 +00001656 ExprTy *input) {
1657 Expr *Input = (Expr*)input;
1658 UnaryOperator::Opcode Opc = ConvertTokenKindToUnaryOpcode(Op);
1659 QualType resultType;
1660 switch (Opc) {
1661 default:
1662 assert(0 && "Unimplemented unary expr!");
1663 case UnaryOperator::PreInc:
1664 case UnaryOperator::PreDec:
1665 resultType = CheckIncrementDecrementOperand(Input, OpLoc);
1666 break;
1667 case UnaryOperator::AddrOf:
1668 resultType = CheckAddressOfOperand(Input, OpLoc);
1669 break;
1670 case UnaryOperator::Deref:
1671 resultType = CheckIndirectionOperand(Input, OpLoc);
1672 break;
1673 case UnaryOperator::Plus:
1674 case UnaryOperator::Minus:
1675 UsualUnaryConversions(Input);
1676 resultType = Input->getType();
1677 if (!resultType->isArithmeticType()) // C99 6.5.3.3p1
1678 return Diag(OpLoc, diag::err_typecheck_unary_expr,
1679 resultType.getAsString());
1680 break;
1681 case UnaryOperator::Not: // bitwise complement
1682 UsualUnaryConversions(Input);
1683 resultType = Input->getType();
Steve Naroffd30e1932007-08-24 17:20:07 +00001684 // C99 6.5.3.3p1. We allow complex as a GCC extension.
1685 if (!resultType->isIntegerType()) {
1686 if (resultType->isComplexType())
1687 // C99 does not support '~' for complex conjugation.
1688 Diag(OpLoc, diag::ext_integer_complement_complex,
1689 resultType.getAsString());
1690 else
1691 return Diag(OpLoc, diag::err_typecheck_unary_expr,
1692 resultType.getAsString());
1693 }
Chris Lattner4b009652007-07-25 00:24:17 +00001694 break;
1695 case UnaryOperator::LNot: // logical negation
1696 // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5).
1697 DefaultFunctionArrayConversion(Input);
1698 resultType = Input->getType();
1699 if (!resultType->isScalarType()) // C99 6.5.3.3p1
1700 return Diag(OpLoc, diag::err_typecheck_unary_expr,
1701 resultType.getAsString());
1702 // LNot always has type int. C99 6.5.3.3p5.
1703 resultType = Context.IntTy;
1704 break;
1705 case UnaryOperator::SizeOf:
1706 resultType = CheckSizeOfAlignOfOperand(Input->getType(), OpLoc, true);
1707 break;
1708 case UnaryOperator::AlignOf:
1709 resultType = CheckSizeOfAlignOfOperand(Input->getType(), OpLoc, false);
1710 break;
Chris Lattner03931a72007-08-24 21:16:53 +00001711 case UnaryOperator::Real:
Chris Lattner03931a72007-08-24 21:16:53 +00001712 case UnaryOperator::Imag:
Chris Lattner5110ad52007-08-24 21:41:10 +00001713 resultType = CheckRealImagOperand(Input, OpLoc);
Chris Lattner03931a72007-08-24 21:16:53 +00001714 break;
Chris Lattner4b009652007-07-25 00:24:17 +00001715 case UnaryOperator::Extension:
Chris Lattner4b009652007-07-25 00:24:17 +00001716 resultType = Input->getType();
1717 break;
1718 }
1719 if (resultType.isNull())
1720 return true;
1721 return new UnaryOperator(Input, Opc, resultType, OpLoc);
1722}
1723
Steve Naroff5cbb02f2007-09-16 14:56:35 +00001724/// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo".
1725Sema::ExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc,
Chris Lattner4b009652007-07-25 00:24:17 +00001726 SourceLocation LabLoc,
1727 IdentifierInfo *LabelII) {
1728 // Look up the record for this label identifier.
1729 LabelStmt *&LabelDecl = LabelMap[LabelII];
1730
1731 // If we haven't seen this label yet, create a forward reference.
1732 if (LabelDecl == 0)
1733 LabelDecl = new LabelStmt(LabLoc, LabelII, 0);
1734
1735 // Create the AST node. The address of a label always has type 'void*'.
Chris Lattnera0d03a72007-08-03 17:31:20 +00001736 return new AddrLabelExpr(OpLoc, LabLoc, LabelDecl,
1737 Context.getPointerType(Context.VoidTy));
Chris Lattner4b009652007-07-25 00:24:17 +00001738}
1739
Steve Naroff5cbb02f2007-09-16 14:56:35 +00001740Sema::ExprResult Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtTy *substmt,
Chris Lattner4b009652007-07-25 00:24:17 +00001741 SourceLocation RPLoc) { // "({..})"
1742 Stmt *SubStmt = static_cast<Stmt*>(substmt);
1743 assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!");
1744 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt);
1745
1746 // FIXME: there are a variety of strange constraints to enforce here, for
1747 // example, it is not possible to goto into a stmt expression apparently.
1748 // More semantic analysis is needed.
1749
1750 // FIXME: the last statement in the compount stmt has its value used. We
1751 // should not warn about it being unused.
1752
1753 // If there are sub stmts in the compound stmt, take the type of the last one
1754 // as the type of the stmtexpr.
1755 QualType Ty = Context.VoidTy;
1756
1757 if (!Compound->body_empty())
1758 if (Expr *LastExpr = dyn_cast<Expr>(Compound->body_back()))
1759 Ty = LastExpr->getType();
1760
1761 return new StmtExpr(Compound, Ty, LPLoc, RPLoc);
1762}
Steve Naroff63bad2d2007-08-01 22:05:33 +00001763
Steve Naroff5cbb02f2007-09-16 14:56:35 +00001764Sema::ExprResult Sema::ActOnBuiltinOffsetOf(SourceLocation BuiltinLoc,
Chris Lattner0d9bcea2007-08-30 17:45:32 +00001765 SourceLocation TypeLoc,
1766 TypeTy *argty,
1767 OffsetOfComponent *CompPtr,
1768 unsigned NumComponents,
1769 SourceLocation RPLoc) {
1770 QualType ArgTy = QualType::getFromOpaquePtr(argty);
1771 assert(!ArgTy.isNull() && "Missing type argument!");
1772
1773 // We must have at least one component that refers to the type, and the first
1774 // one is known to be a field designator. Verify that the ArgTy represents
1775 // a struct/union/class.
1776 if (!ArgTy->isRecordType())
1777 return Diag(TypeLoc, diag::err_offsetof_record_type,ArgTy.getAsString());
1778
1779 // Otherwise, create a compound literal expression as the base, and
1780 // iteratively process the offsetof designators.
1781 Expr *Res = new CompoundLiteralExpr(ArgTy, 0);
1782
Chris Lattnerb37522e2007-08-31 21:49:13 +00001783 // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a
1784 // GCC extension, diagnose them.
1785 if (NumComponents != 1)
1786 Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator,
1787 SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd));
1788
Chris Lattner0d9bcea2007-08-30 17:45:32 +00001789 for (unsigned i = 0; i != NumComponents; ++i) {
1790 const OffsetOfComponent &OC = CompPtr[i];
1791 if (OC.isBrackets) {
1792 // Offset of an array sub-field. TODO: Should we allow vector elements?
1793 const ArrayType *AT = Res->getType()->getAsArrayType();
1794 if (!AT) {
1795 delete Res;
1796 return Diag(OC.LocEnd, diag::err_offsetof_array_type,
1797 Res->getType().getAsString());
1798 }
1799
Chris Lattner2af6a802007-08-30 17:59:59 +00001800 // FIXME: C++: Verify that operator[] isn't overloaded.
1801
Chris Lattner0d9bcea2007-08-30 17:45:32 +00001802 // C99 6.5.2.1p1
1803 Expr *Idx = static_cast<Expr*>(OC.U.E);
1804 if (!Idx->getType()->isIntegerType())
1805 return Diag(Idx->getLocStart(), diag::err_typecheck_subscript,
1806 Idx->getSourceRange());
1807
1808 Res = new ArraySubscriptExpr(Res, Idx, AT->getElementType(), OC.LocEnd);
1809 continue;
1810 }
1811
1812 const RecordType *RC = Res->getType()->getAsRecordType();
1813 if (!RC) {
1814 delete Res;
1815 return Diag(OC.LocEnd, diag::err_offsetof_record_type,
1816 Res->getType().getAsString());
1817 }
1818
1819 // Get the decl corresponding to this.
1820 RecordDecl *RD = RC->getDecl();
1821 FieldDecl *MemberDecl = RD->getMember(OC.U.IdentInfo);
1822 if (!MemberDecl)
1823 return Diag(BuiltinLoc, diag::err_typecheck_no_member,
1824 OC.U.IdentInfo->getName(),
1825 SourceRange(OC.LocStart, OC.LocEnd));
Chris Lattner2af6a802007-08-30 17:59:59 +00001826
1827 // FIXME: C++: Verify that MemberDecl isn't a static field.
1828 // FIXME: Verify that MemberDecl isn't a bitfield.
1829
Chris Lattner0d9bcea2007-08-30 17:45:32 +00001830 Res = new MemberExpr(Res, false, MemberDecl, OC.LocEnd);
1831 }
1832
1833 return new UnaryOperator(Res, UnaryOperator::OffsetOf, Context.getSizeType(),
1834 BuiltinLoc);
1835}
1836
1837
Steve Naroff5cbb02f2007-09-16 14:56:35 +00001838Sema::ExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc,
Steve Naroff63bad2d2007-08-01 22:05:33 +00001839 TypeTy *arg1, TypeTy *arg2,
1840 SourceLocation RPLoc) {
1841 QualType argT1 = QualType::getFromOpaquePtr(arg1);
1842 QualType argT2 = QualType::getFromOpaquePtr(arg2);
1843
1844 assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)");
1845
Chris Lattner0d9bcea2007-08-30 17:45:32 +00001846 return new TypesCompatibleExpr(Context.IntTy, BuiltinLoc, argT1, argT2,RPLoc);
Steve Naroff63bad2d2007-08-01 22:05:33 +00001847}
1848
Steve Naroff5cbb02f2007-09-16 14:56:35 +00001849Sema::ExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, ExprTy *cond,
Steve Naroff93c53012007-08-03 21:21:27 +00001850 ExprTy *expr1, ExprTy *expr2,
1851 SourceLocation RPLoc) {
1852 Expr *CondExpr = static_cast<Expr*>(cond);
1853 Expr *LHSExpr = static_cast<Expr*>(expr1);
1854 Expr *RHSExpr = static_cast<Expr*>(expr2);
1855
1856 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)");
1857
1858 // The conditional expression is required to be a constant expression.
1859 llvm::APSInt condEval(32);
1860 SourceLocation ExpLoc;
1861 if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc))
1862 return Diag(ExpLoc, diag::err_typecheck_choose_expr_requires_constant,
1863 CondExpr->getSourceRange());
1864
1865 // If the condition is > zero, then the AST type is the same as the LSHExpr.
1866 QualType resType = condEval.getZExtValue() ? LHSExpr->getType() :
1867 RHSExpr->getType();
1868 return new ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, resType, RPLoc);
1869}
1870
Anders Carlsson36760332007-10-15 20:28:48 +00001871Sema::ExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc,
1872 ExprTy *expr, TypeTy *type,
1873 SourceLocation RPLoc)
1874{
1875 Expr *E = static_cast<Expr*>(expr);
1876 QualType T = QualType::getFromOpaquePtr(type);
1877
1878 InitBuiltinVaListType();
1879
1880 Sema::AssignmentCheckResult result;
1881
1882 result = CheckAssignmentConstraints(Context.getBuiltinVaListType(),
1883 E->getType());
1884 if (result != Compatible)
1885 return Diag(E->getLocStart(),
1886 diag::err_first_argument_to_va_arg_not_of_type_va_list,
1887 E->getType().getAsString(),
1888 E->getSourceRange());
1889
1890 // FIXME: Warn if a non-POD type is passed in.
1891
1892 return new VAArgExpr(BuiltinLoc, E, T, RPLoc);
1893}
1894
Anders Carlssona66cad42007-08-21 17:43:55 +00001895// TODO: Move this to SemaObjC.cpp
Anders Carlsson8be1d402007-08-22 15:14:15 +00001896Sema::ExprResult Sema::ParseObjCStringLiteral(ExprTy *string) {
Anders Carlssona66cad42007-08-21 17:43:55 +00001897 StringLiteral* S = static_cast<StringLiteral *>(string);
1898
1899 if (CheckBuiltinCFStringArgument(S))
1900 return true;
1901
Steve Narofff2e30312007-10-15 23:35:17 +00001902 if (Context.getObjcConstantStringInterface().isNull()) {
1903 // Initialize the constant string interface lazily. This assumes
1904 // the NSConstantString interface is seen in this translation unit.
1905 IdentifierInfo *NSIdent = &Context.Idents.get("NSConstantString");
1906 ScopedDecl *IFace = LookupScopedDecl(NSIdent, Decl::IDNS_Ordinary,
1907 SourceLocation(), TUScope);
Steve Naroff134c3502007-10-16 00:00:18 +00001908 ObjcInterfaceDecl *strIFace = dyn_cast_or_null<ObjcInterfaceDecl>(IFace);
Steve Naroff96f136d2007-10-18 23:53:51 +00001909 if (!strIFace)
1910 return Diag(S->getLocStart(), diag::err_undef_interface,
1911 NSIdent->getName());
Steve Naroff134c3502007-10-16 00:00:18 +00001912 Context.setObjcConstantStringInterface(strIFace);
Steve Narofff2e30312007-10-15 23:35:17 +00001913 }
1914 QualType t = Context.getObjcConstantStringInterface();
Anders Carlssona66cad42007-08-21 17:43:55 +00001915 t = Context.getPointerType(t);
Anders Carlssona66cad42007-08-21 17:43:55 +00001916 return new ObjCStringLiteral(S, t);
1917}
Anders Carlsson8be1d402007-08-22 15:14:15 +00001918
1919Sema::ExprResult Sema::ParseObjCEncodeExpression(SourceLocation AtLoc,
Chris Lattnercfd61c82007-10-16 22:51:17 +00001920 SourceLocation EncodeLoc,
Anders Carlsson8be1d402007-08-22 15:14:15 +00001921 SourceLocation LParenLoc,
1922 TypeTy *Ty,
1923 SourceLocation RParenLoc) {
1924 QualType EncodedType = QualType::getFromOpaquePtr(Ty);
1925
1926 QualType t = Context.getPointerType(Context.CharTy);
1927 return new ObjCEncodeExpr(t, EncodedType, AtLoc, RParenLoc);
1928}
Steve Naroffd3f5ee42007-09-17 21:01:15 +00001929
Fariborz Jahanianf807c202007-10-16 20:40:23 +00001930Sema::ExprResult Sema::ParseObjCSelectorExpression(Selector Sel,
1931 SourceLocation AtLoc,
Fariborz Jahanian957448a2007-10-16 23:21:02 +00001932 SourceLocation SelLoc,
Fariborz Jahanianf807c202007-10-16 20:40:23 +00001933 SourceLocation LParenLoc,
1934 SourceLocation RParenLoc) {
1935 QualType t = GetObjcSelType(AtLoc);
1936 return new ObjCSelectorExpr(t, Sel, AtLoc, RParenLoc);
1937}
1938
Fariborz Jahanianb391e6e2007-10-17 16:58:11 +00001939Sema::ExprResult Sema::ParseObjCProtocolExpression(IdentifierInfo *ProtocolId,
1940 SourceLocation AtLoc,
1941 SourceLocation ProtoLoc,
1942 SourceLocation LParenLoc,
1943 SourceLocation RParenLoc) {
1944 ObjcProtocolDecl* PDecl = ObjcProtocols[ProtocolId];
1945 if (!PDecl) {
1946 Diag(ProtoLoc, diag::err_undeclared_protocol, ProtocolId->getName());
1947 return true;
1948 }
1949
1950 QualType t = GetObjcProtoType(AtLoc);
Fariborz Jahanian20b40e42007-10-18 22:59:23 +00001951 if (t.isNull())
1952 return true;
Fariborz Jahanianb391e6e2007-10-17 16:58:11 +00001953 return new ObjCProtocolExpr(t, PDecl, AtLoc, RParenLoc);
1954}
Steve Naroff52664182007-10-16 23:12:48 +00001955
1956bool Sema::CheckMessageArgumentTypes(Expr **Args, unsigned NumArgs,
1957 ObjcMethodDecl *Method) {
1958 bool anyIncompatibleArgs = false;
1959
1960 for (unsigned i = 0; i < NumArgs; i++) {
1961 Expr *argExpr = Args[i];
1962 assert(argExpr && "CheckMessageArgumentTypes(): missing expression");
1963
1964 QualType lhsType = Method->getParamDecl(i)->getType();
1965 QualType rhsType = argExpr->getType();
1966
1967 // If necessary, apply function/array conversion. C99 6.7.5.3p[7,8].
1968 if (const ArrayType *ary = lhsType->getAsArrayType())
1969 lhsType = Context.getPointerType(ary->getElementType());
1970 else if (lhsType->isFunctionType())
1971 lhsType = Context.getPointerType(lhsType);
1972
1973 AssignmentCheckResult result = CheckSingleAssignmentConstraints(lhsType,
1974 argExpr);
1975 if (Args[i] != argExpr) // The expression was converted.
1976 Args[i] = argExpr; // Make sure we store the converted expression.
1977 SourceLocation l = argExpr->getLocStart();
1978
1979 // decode the result (notice that AST's are still created for extensions).
1980 switch (result) {
1981 case Compatible:
1982 break;
1983 case PointerFromInt:
1984 // check for null pointer constant (C99 6.3.2.3p3)
1985 if (!argExpr->isNullPointerConstant(Context)) {
1986 Diag(l, diag::ext_typecheck_sending_pointer_int,
1987 lhsType.getAsString(), rhsType.getAsString(),
1988 argExpr->getSourceRange());
1989 }
1990 break;
1991 case IntFromPointer:
1992 Diag(l, diag::ext_typecheck_sending_pointer_int,
1993 lhsType.getAsString(), rhsType.getAsString(),
1994 argExpr->getSourceRange());
1995 break;
1996 case IncompatiblePointer:
1997 Diag(l, diag::ext_typecheck_sending_incompatible_pointer,
1998 rhsType.getAsString(), lhsType.getAsString(),
1999 argExpr->getSourceRange());
2000 break;
2001 case CompatiblePointerDiscardsQualifiers:
2002 Diag(l, diag::ext_typecheck_passing_discards_qualifiers,
2003 rhsType.getAsString(), lhsType.getAsString(),
2004 argExpr->getSourceRange());
2005 break;
2006 case Incompatible:
2007 Diag(l, diag::err_typecheck_sending_incompatible,
2008 rhsType.getAsString(), lhsType.getAsString(),
2009 argExpr->getSourceRange());
2010 anyIncompatibleArgs = true;
2011 }
2012 }
2013 return anyIncompatibleArgs;
2014}
2015
Steve Naroff4ed9d662007-09-27 14:38:14 +00002016// ActOnClassMessage - used for both unary and keyword messages.
2017// ArgExprs is optional - if it is present, the number of expressions
2018// is obtained from Sel.getNumArgs().
2019Sema::ExprResult Sema::ActOnClassMessage(
Steve Narofffa465d12007-10-02 20:01:56 +00002020 IdentifierInfo *receiverName, Selector Sel,
Steve Naroff4ed9d662007-09-27 14:38:14 +00002021 SourceLocation lbrac, SourceLocation rbrac, ExprTy **Args)
Steve Naroffd3f5ee42007-09-17 21:01:15 +00002022{
Steve Narofffa465d12007-10-02 20:01:56 +00002023 assert(receiverName && "missing receiver class name");
Steve Naroffc39ca262007-09-18 23:55:05 +00002024
Steve Naroff52664182007-10-16 23:12:48 +00002025 Expr **ArgExprs = reinterpret_cast<Expr **>(Args);
Steve Narofffa465d12007-10-02 20:01:56 +00002026 ObjcInterfaceDecl* ClassDecl = getObjCInterfaceDecl(receiverName);
2027 ObjcMethodDecl *Method = ClassDecl->lookupClassMethod(Sel);
Steve Naroff7e461452007-10-16 20:39:36 +00002028 QualType returnType;
2029 if (!Method) {
2030 Diag(lbrac, diag::warn_method_not_found, std::string("+"), Sel.getName(),
2031 SourceRange(lbrac, rbrac));
2032 returnType = GetObjcIdType();
2033 } else {
Steve Naroff171f5b12007-10-16 21:36:54 +00002034 returnType = Method->getResultType();
Steve Naroff52664182007-10-16 23:12:48 +00002035 if (Sel.getNumArgs()) {
2036 if (CheckMessageArgumentTypes(ArgExprs, Sel.getNumArgs(), Method))
2037 return true;
2038 }
Steve Naroff7e461452007-10-16 20:39:36 +00002039 }
Steve Naroff7e461452007-10-16 20:39:36 +00002040 return new ObjCMessageExpr(receiverName, Sel, returnType, lbrac, rbrac,
Chris Lattner71c01112007-10-10 23:42:28 +00002041 ArgExprs);
Steve Naroffd3f5ee42007-09-17 21:01:15 +00002042}
2043
Steve Naroff4ed9d662007-09-27 14:38:14 +00002044// ActOnInstanceMessage - used for both unary and keyword messages.
2045// ArgExprs is optional - if it is present, the number of expressions
2046// is obtained from Sel.getNumArgs().
2047Sema::ExprResult Sema::ActOnInstanceMessage(
Steve Naroff6cb1d362007-09-28 22:22:11 +00002048 ExprTy *receiver, Selector Sel,
Steve Naroff4ed9d662007-09-27 14:38:14 +00002049 SourceLocation lbrac, SourceLocation rbrac, ExprTy **Args)
2050{
Steve Naroffc39ca262007-09-18 23:55:05 +00002051 assert(receiver && "missing receiver expression");
2052
Steve Naroff52664182007-10-16 23:12:48 +00002053 Expr **ArgExprs = reinterpret_cast<Expr **>(Args);
Steve Naroffc39ca262007-09-18 23:55:05 +00002054 Expr *RExpr = static_cast<Expr *>(receiver);
Steve Narofffa465d12007-10-02 20:01:56 +00002055 QualType receiverType = RExpr->getType();
Steve Naroffee1de132007-10-10 21:53:07 +00002056 QualType returnType;
2057
2058 if (receiverType == GetObjcIdType()) {
Steve Naroff705380b2007-10-14 23:13:51 +00002059 ObjcMethodDecl *Method = InstanceMethodPool[Sel].Method;
Steve Naroff7e461452007-10-16 20:39:36 +00002060 if (!Method) {
2061 Diag(lbrac, diag::warn_method_not_found, std::string("-"), Sel.getName(),
2062 SourceRange(lbrac, rbrac));
2063 returnType = GetObjcIdType();
2064 } else {
Steve Naroff171f5b12007-10-16 21:36:54 +00002065 returnType = Method->getResultType();
Steve Naroff52664182007-10-16 23:12:48 +00002066 if (Sel.getNumArgs())
2067 if (CheckMessageArgumentTypes(ArgExprs, Sel.getNumArgs(), Method))
2068 return true;
Steve Naroff7e461452007-10-16 20:39:36 +00002069 }
Steve Naroffee1de132007-10-10 21:53:07 +00002070 } else {
Chris Lattner71c01112007-10-10 23:42:28 +00002071 // FIXME (snaroff): checking in this code from Patrick. Needs to be
2072 // revisited. how do we get the ClassDecl from the receiver expression?
Steve Naroffee1de132007-10-10 21:53:07 +00002073 while (receiverType->isPointerType()) {
Chris Lattner71c01112007-10-10 23:42:28 +00002074 PointerType *pointerType =
2075 static_cast<PointerType*>(receiverType.getTypePtr());
Steve Naroffee1de132007-10-10 21:53:07 +00002076 receiverType = pointerType->getPointeeType();
2077 }
Chris Lattner71c01112007-10-10 23:42:28 +00002078 assert(ObjcInterfaceType::classof(receiverType.getTypePtr()) &&
2079 "bad receiver type");
Steve Naroffee1de132007-10-10 21:53:07 +00002080 ObjcInterfaceDecl* ClassDecl = static_cast<ObjcInterfaceType*>(
2081 receiverType.getTypePtr())->getDecl();
Steve Naroff7e461452007-10-16 20:39:36 +00002082 // FIXME: consider using InstanceMethodPool, since it will be faster
2083 // than the following method (which can do *many* linear searches). The
2084 // idea is to add class info to InstanceMethodPool...
Steve Naroffee1de132007-10-10 21:53:07 +00002085 ObjcMethodDecl *Method = ClassDecl->lookupInstanceMethod(Sel);
Steve Naroff7e461452007-10-16 20:39:36 +00002086 if (!Method) {
2087 Diag(lbrac, diag::warn_method_not_found, std::string("-"), Sel.getName(),
2088 SourceRange(lbrac, rbrac));
2089 returnType = GetObjcIdType();
2090 } else {
Steve Naroff171f5b12007-10-16 21:36:54 +00002091 returnType = Method->getResultType();
Steve Naroff52664182007-10-16 23:12:48 +00002092 if (Sel.getNumArgs())
2093 if (CheckMessageArgumentTypes(ArgExprs, Sel.getNumArgs(), Method))
2094 return true;
Steve Naroff7e461452007-10-16 20:39:36 +00002095 }
Steve Narofffa465d12007-10-02 20:01:56 +00002096 }
Steve Narofffa465d12007-10-02 20:01:56 +00002097 return new ObjCMessageExpr(RExpr, Sel, returnType, lbrac, rbrac, ArgExprs);
Steve Naroffd3f5ee42007-09-17 21:01:15 +00002098}