blob: 444ea1c78ce93c71dc2c96f7032f982183acaffd [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for expressions.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
Ted Kremenek588e5eb2007-11-25 00:58:00 +000015#include "SemaUtil.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000016#include "clang/AST/ASTContext.h"
17#include "clang/AST/Decl.h"
Steve Naroff6a8a9a42007-10-02 20:01:56 +000018#include "clang/AST/DeclObjC.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000019#include "clang/AST/Expr.h"
Steve Naroff563477d2007-09-18 23:55:05 +000020#include "clang/Parse/DeclSpec.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021#include "clang/Lex/Preprocessor.h"
22#include "clang/Lex/LiteralSupport.h"
23#include "clang/Basic/SourceManager.h"
24#include "clang/Basic/Diagnostic.h"
25#include "clang/Basic/LangOptions.h"
26#include "clang/Basic/TargetInfo.h"
27#include "llvm/ADT/SmallString.h"
Chris Lattner59907c42007-08-10 20:18:51 +000028#include "llvm/ADT/StringExtras.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000029using namespace clang;
30
Steve Narofff69936d2007-09-16 03:34:24 +000031/// ActOnStringLiteral - The specified tokens were lexed as pasted string
Reid Spencer5f016e22007-07-11 17:01:13 +000032/// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string
33/// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from
34/// multiple tokens. However, the common case is that StringToks points to one
35/// string.
36///
37Action::ExprResult
Steve Narofff69936d2007-09-16 03:34:24 +000038Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) {
Reid Spencer5f016e22007-07-11 17:01:13 +000039 assert(NumStringToks && "Must have at least one string!");
40
41 StringLiteralParser Literal(StringToks, NumStringToks, PP, Context.Target);
42 if (Literal.hadError)
43 return ExprResult(true);
44
45 llvm::SmallVector<SourceLocation, 4> StringTokLocs;
46 for (unsigned i = 0; i != NumStringToks; ++i)
47 StringTokLocs.push_back(StringToks[i].getLocation());
48
49 // FIXME: handle wchar_t
Anders Carlssonee98ac52007-10-15 02:50:23 +000050 QualType t;
51
52 if (Literal.Pascal)
53 t = Context.getPointerType(Context.UnsignedCharTy);
54 else
55 t = Context.getPointerType(Context.CharTy);
56
57 if (Literal.Pascal && Literal.GetStringLength() > 256)
58 return Diag(StringToks[0].getLocation(), diag::err_pascal_string_too_long,
59 SourceRange(StringToks[0].getLocation(),
60 StringToks[NumStringToks-1].getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +000061
62 // Pass &StringTokLocs[0], StringTokLocs.size() to factory!
63 return new StringLiteral(Literal.GetString(), Literal.GetStringLength(),
Anders Carlssonee98ac52007-10-15 02:50:23 +000064 Literal.AnyWide, t,
65 StringToks[0].getLocation(),
Reid Spencer5f016e22007-07-11 17:01:13 +000066 StringToks[NumStringToks-1].getLocation());
67}
68
69
Steve Naroff08d92e42007-09-15 18:49:24 +000070/// ActOnIdentifierExpr - The parser read an identifier in expression context,
Reid Spencer5f016e22007-07-11 17:01:13 +000071/// validate it per-C99 6.5.1. HasTrailingLParen indicates whether this
72/// identifier is used in an function call context.
Steve Naroff08d92e42007-09-15 18:49:24 +000073Sema::ExprResult Sema::ActOnIdentifierExpr(Scope *S, SourceLocation Loc,
Reid Spencer5f016e22007-07-11 17:01:13 +000074 IdentifierInfo &II,
75 bool HasTrailingLParen) {
76 // Could be enum-constant or decl.
Steve Naroff8c9f13e2007-09-16 16:16:00 +000077 ScopedDecl *D = LookupScopedDecl(&II, Decl::IDNS_Ordinary, Loc, S);
Reid Spencer5f016e22007-07-11 17:01:13 +000078 if (D == 0) {
79 // Otherwise, this could be an implicitly declared function reference (legal
80 // in C90, extension in C99).
81 if (HasTrailingLParen &&
82 // Not in C++.
83 !getLangOptions().CPlusPlus)
84 D = ImplicitlyDefineFunction(Loc, II, S);
85 else {
Steve Naroff7779db42007-11-12 14:29:37 +000086 if (CurMethodDecl) {
87 ObjcInterfaceDecl *IFace = CurMethodDecl->getClassInterface();
88 ObjcInterfaceDecl *clsDeclared;
Steve Naroff7e3411b2007-11-15 02:58:25 +000089 if (ObjcIvarDecl *IV = IFace->lookupInstanceVariable(&II, clsDeclared)) {
90 IdentifierInfo &II = Context.Idents.get("self");
91 ExprResult SelfExpr = ActOnIdentifierExpr(S, Loc, II, false);
92 return new ObjCIvarRefExpr(IV, IV->getType(), Loc,
93 static_cast<Expr*>(SelfExpr.Val), true, true);
94 }
Steve Naroff7779db42007-11-12 14:29:37 +000095 }
Reid Spencer5f016e22007-07-11 17:01:13 +000096 // If this name wasn't predeclared and if this is not a function call,
97 // diagnose the problem.
98 return Diag(Loc, diag::err_undeclared_var_use, II.getName());
99 }
100 }
Steve Naroffe1223f72007-08-28 03:03:08 +0000101 if (ValueDecl *VD = dyn_cast<ValueDecl>(D)) {
Steve Naroff53a32342007-08-28 18:45:29 +0000102 // Only create DeclRefExpr's for valid Decl's.
Steve Naroff5912a352007-08-28 20:14:24 +0000103 if (VD->isInvalidDecl())
Steve Naroffe1223f72007-08-28 03:03:08 +0000104 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000105 return new DeclRefExpr(VD, VD->getType(), Loc);
Steve Naroffe1223f72007-08-28 03:03:08 +0000106 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000107 if (isa<TypedefDecl>(D))
108 return Diag(Loc, diag::err_unexpected_typedef, II.getName());
Fariborz Jahanian5ef404f2007-12-05 18:16:33 +0000109 if (isa<ObjcInterfaceDecl>(D))
110 return Diag(Loc, diag::err_unexpected_interface, II.getName());
Reid Spencer5f016e22007-07-11 17:01:13 +0000111
112 assert(0 && "Invalid decl");
Chris Lattnereddbe032007-07-21 04:57:45 +0000113 abort();
Reid Spencer5f016e22007-07-11 17:01:13 +0000114}
115
Steve Narofff69936d2007-09-16 03:34:24 +0000116Sema::ExprResult Sema::ActOnPreDefinedExpr(SourceLocation Loc,
Anders Carlsson22742662007-07-21 05:21:51 +0000117 tok::TokenKind Kind) {
118 PreDefinedExpr::IdentType IT;
119
Reid Spencer5f016e22007-07-11 17:01:13 +0000120 switch (Kind) {
121 default:
122 assert(0 && "Unknown simple primary expr!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000123 case tok::kw___func__: // primary-expression: __func__ [C99 6.4.2.2]
Anders Carlsson22742662007-07-21 05:21:51 +0000124 IT = PreDefinedExpr::Func;
125 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000126 case tok::kw___FUNCTION__: // primary-expression: __FUNCTION__ [GNU]
Anders Carlsson22742662007-07-21 05:21:51 +0000127 IT = PreDefinedExpr::Function;
128 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000129 case tok::kw___PRETTY_FUNCTION__: // primary-expression: __P..Y_F..N__ [GNU]
Anders Carlsson22742662007-07-21 05:21:51 +0000130 IT = PreDefinedExpr::PrettyFunction;
131 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000132 }
Anders Carlsson22742662007-07-21 05:21:51 +0000133
134 // Pre-defined identifiers are always of type char *.
135 return new PreDefinedExpr(Loc, Context.getPointerType(Context.CharTy), IT);
Reid Spencer5f016e22007-07-11 17:01:13 +0000136}
137
Steve Narofff69936d2007-09-16 03:34:24 +0000138Sema::ExprResult Sema::ActOnCharacterConstant(const Token &Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000139 llvm::SmallString<16> CharBuffer;
140 CharBuffer.resize(Tok.getLength());
141 const char *ThisTokBegin = &CharBuffer[0];
142 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
143
144 CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
145 Tok.getLocation(), PP);
146 if (Literal.hadError())
147 return ExprResult(true);
148 return new CharacterLiteral(Literal.getValue(), Context.IntTy,
149 Tok.getLocation());
150}
151
Steve Narofff69936d2007-09-16 03:34:24 +0000152Action::ExprResult Sema::ActOnNumericConstant(const Token &Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000153 // fast path for a single digit (which is quite common). A single digit
154 // cannot have a trigraph, escaped newline, radix prefix, or type suffix.
155 if (Tok.getLength() == 1) {
156 const char *t = PP.getSourceManager().getCharacterData(Tok.getLocation());
157
Chris Lattner701e5eb2007-09-04 02:45:27 +0000158 unsigned IntSize = static_cast<unsigned>(
159 Context.getTypeSize(Context.IntTy, Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000160 return ExprResult(new IntegerLiteral(llvm::APInt(IntSize, *t-'0'),
161 Context.IntTy,
162 Tok.getLocation()));
163 }
164 llvm::SmallString<512> IntegerBuffer;
165 IntegerBuffer.resize(Tok.getLength());
166 const char *ThisTokBegin = &IntegerBuffer[0];
167
168 // Get the spelling of the token, which eliminates trigraphs, etc.
169 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
170 NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
171 Tok.getLocation(), PP);
172 if (Literal.hadError)
173 return ExprResult(true);
174
Chris Lattner5d661452007-08-26 03:42:43 +0000175 Expr *Res;
176
177 if (Literal.isFloatingLiteral()) {
Chris Lattner525a0502007-09-22 18:29:59 +0000178 QualType Ty;
179 const llvm::fltSemantics *Format;
180 uint64_t Size; unsigned Align;
181
182 if (Literal.isFloat) {
183 Ty = Context.FloatTy;
184 Context.Target.getFloatInfo(Size, Align, Format, Tok.getLocation());
185 } else if (Literal.isLong) {
186 Ty = Context.LongDoubleTy;
187 Context.Target.getLongDoubleInfo(Size, Align, Format, Tok.getLocation());
188 } else {
189 Ty = Context.DoubleTy;
190 Context.Target.getDoubleInfo(Size, Align, Format, Tok.getLocation());
191 }
192
Ted Kremenek720c4ec2007-11-29 00:56:49 +0000193 // isExact will be set by GetFloatValue().
194 bool isExact = false;
195
196 Res = new FloatingLiteral(Literal.GetFloatValue(*Format,&isExact), &isExact,
197 Ty, Tok.getLocation());
198
Chris Lattner5d661452007-08-26 03:42:43 +0000199 } else if (!Literal.isIntegerLiteral()) {
200 return ExprResult(true);
201 } else {
Reid Spencer5f016e22007-07-11 17:01:13 +0000202 QualType t;
203
Neil Boothb9449512007-08-29 22:00:19 +0000204 // long long is a C99 feature.
205 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
Neil Booth79859c32007-08-29 22:13:52 +0000206 Literal.isLongLong)
Neil Boothb9449512007-08-29 22:00:19 +0000207 Diag(Tok.getLocation(), diag::ext_longlong);
208
Reid Spencer5f016e22007-07-11 17:01:13 +0000209 // Get the value in the widest-possible width.
210 llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(Tok.getLocation()), 0);
211
212 if (Literal.GetIntegerValue(ResultVal)) {
213 // If this value didn't fit into uintmax_t, warn and force to ull.
214 Diag(Tok.getLocation(), diag::warn_integer_too_large);
215 t = Context.UnsignedLongLongTy;
Chris Lattnerd2d2a112007-07-14 01:29:45 +0000216 assert(Context.getTypeSize(t, Tok.getLocation()) ==
Reid Spencer5f016e22007-07-11 17:01:13 +0000217 ResultVal.getBitWidth() && "long long is not intmax_t?");
218 } else {
219 // If this value fits into a ULL, try to figure out what else it fits into
220 // according to the rules of C99 6.4.4.1p5.
221
222 // Octal, Hexadecimal, and integers with a U suffix are allowed to
223 // be an unsigned int.
224 bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10;
225
226 // Check from smallest to largest, picking the smallest type we can.
Chris Lattner97c51562007-08-23 21:58:08 +0000227 if (!Literal.isLong && !Literal.isLongLong) {
228 // Are int/unsigned possibilities?
Chris Lattner701e5eb2007-09-04 02:45:27 +0000229 unsigned IntSize = static_cast<unsigned>(
230 Context.getTypeSize(Context.IntTy,Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000231 // Does it fit in a unsigned int?
232 if (ResultVal.isIntN(IntSize)) {
233 // Does it fit in a signed int?
234 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0)
235 t = Context.IntTy;
236 else if (AllowUnsigned)
237 t = Context.UnsignedIntTy;
238 }
239
240 if (!t.isNull())
241 ResultVal.trunc(IntSize);
242 }
243
244 // Are long/unsigned long possibilities?
245 if (t.isNull() && !Literal.isLongLong) {
Chris Lattner701e5eb2007-09-04 02:45:27 +0000246 unsigned LongSize = static_cast<unsigned>(
247 Context.getTypeSize(Context.LongTy, Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000248
249 // Does it fit in a unsigned long?
250 if (ResultVal.isIntN(LongSize)) {
251 // Does it fit in a signed long?
252 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0)
253 t = Context.LongTy;
254 else if (AllowUnsigned)
255 t = Context.UnsignedLongTy;
256 }
257 if (!t.isNull())
258 ResultVal.trunc(LongSize);
259 }
260
261 // Finally, check long long if needed.
262 if (t.isNull()) {
Chris Lattner701e5eb2007-09-04 02:45:27 +0000263 unsigned LongLongSize = static_cast<unsigned>(
264 Context.getTypeSize(Context.LongLongTy, Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000265
266 // Does it fit in a unsigned long long?
267 if (ResultVal.isIntN(LongLongSize)) {
268 // Does it fit in a signed long long?
269 if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0)
270 t = Context.LongLongTy;
271 else if (AllowUnsigned)
272 t = Context.UnsignedLongLongTy;
273 }
274 }
275
276 // If we still couldn't decide a type, we probably have something that
277 // does not fit in a signed long long, but has no U suffix.
278 if (t.isNull()) {
279 Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed);
280 t = Context.UnsignedLongLongTy;
281 }
282 }
283
Chris Lattner5d661452007-08-26 03:42:43 +0000284 Res = new IntegerLiteral(ResultVal, t, Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000285 }
Chris Lattner5d661452007-08-26 03:42:43 +0000286
287 // If this is an imaginary literal, create the ImaginaryLiteral wrapper.
288 if (Literal.isImaginary)
289 Res = new ImaginaryLiteral(Res, Context.getComplexType(Res->getType()));
290
291 return Res;
Reid Spencer5f016e22007-07-11 17:01:13 +0000292}
293
Steve Narofff69936d2007-09-16 03:34:24 +0000294Action::ExprResult Sema::ActOnParenExpr(SourceLocation L, SourceLocation R,
Reid Spencer5f016e22007-07-11 17:01:13 +0000295 ExprTy *Val) {
296 Expr *e = (Expr *)Val;
Steve Narofff69936d2007-09-16 03:34:24 +0000297 assert((e != 0) && "ActOnParenExpr() missing expr");
Reid Spencer5f016e22007-07-11 17:01:13 +0000298 return new ParenExpr(L, R, e);
299}
300
301/// The UsualUnaryConversions() function is *not* called by this routine.
302/// See C99 6.3.2.1p[2-4] for more details.
303QualType Sema::CheckSizeOfAlignOfOperand(QualType exprType,
304 SourceLocation OpLoc, bool isSizeof) {
305 // C99 6.5.3.4p1:
306 if (isa<FunctionType>(exprType) && isSizeof)
307 // alignof(function) is allowed.
308 Diag(OpLoc, diag::ext_sizeof_function_type);
309 else if (exprType->isVoidType())
310 Diag(OpLoc, diag::ext_sizeof_void_type, isSizeof ? "sizeof" : "__alignof");
311 else if (exprType->isIncompleteType()) {
312 Diag(OpLoc, isSizeof ? diag::err_sizeof_incomplete_type :
313 diag::err_alignof_incomplete_type,
314 exprType.getAsString());
315 return QualType(); // error
316 }
317 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
318 return Context.getSizeType();
319}
320
321Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +0000322ActOnSizeOfAlignOfTypeExpr(SourceLocation OpLoc, bool isSizeof,
Reid Spencer5f016e22007-07-11 17:01:13 +0000323 SourceLocation LPLoc, TypeTy *Ty,
324 SourceLocation RPLoc) {
325 // If error parsing type, ignore.
326 if (Ty == 0) return true;
327
328 // Verify that this is a valid expression.
329 QualType ArgTy = QualType::getFromOpaquePtr(Ty);
330
331 QualType resultType = CheckSizeOfAlignOfOperand(ArgTy, OpLoc, isSizeof);
332
333 if (resultType.isNull())
334 return true;
335 return new SizeOfAlignOfTypeExpr(isSizeof, ArgTy, resultType, OpLoc, RPLoc);
336}
337
Chris Lattner5d794252007-08-24 21:41:10 +0000338QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc) {
Chris Lattnerdbb36972007-08-24 21:16:53 +0000339 DefaultFunctionArrayConversion(V);
340
Chris Lattnercc26ed72007-08-26 05:39:26 +0000341 // These operators return the element type of a complex type.
Chris Lattnerdbb36972007-08-24 21:16:53 +0000342 if (const ComplexType *CT = V->getType()->getAsComplexType())
343 return CT->getElementType();
Chris Lattnercc26ed72007-08-26 05:39:26 +0000344
345 // Otherwise they pass through real integer and floating point types here.
346 if (V->getType()->isArithmeticType())
347 return V->getType();
348
349 // Reject anything else.
350 Diag(Loc, diag::err_realimag_invalid_type, V->getType().getAsString());
351 return QualType();
Chris Lattnerdbb36972007-08-24 21:16:53 +0000352}
353
354
Reid Spencer5f016e22007-07-11 17:01:13 +0000355
Steve Narofff69936d2007-09-16 03:34:24 +0000356Action::ExprResult Sema::ActOnPostfixUnaryOp(SourceLocation OpLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000357 tok::TokenKind Kind,
358 ExprTy *Input) {
359 UnaryOperator::Opcode Opc;
360 switch (Kind) {
361 default: assert(0 && "Unknown unary op!");
362 case tok::plusplus: Opc = UnaryOperator::PostInc; break;
363 case tok::minusminus: Opc = UnaryOperator::PostDec; break;
364 }
365 QualType result = CheckIncrementDecrementOperand((Expr *)Input, OpLoc);
366 if (result.isNull())
367 return true;
368 return new UnaryOperator((Expr *)Input, Opc, result, OpLoc);
369}
370
371Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +0000372ActOnArraySubscriptExpr(ExprTy *Base, SourceLocation LLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000373 ExprTy *Idx, SourceLocation RLoc) {
Chris Lattner727a80d2007-07-15 23:59:53 +0000374 Expr *LHSExp = static_cast<Expr*>(Base), *RHSExp = static_cast<Expr*>(Idx);
Chris Lattner12d9ff62007-07-16 00:14:47 +0000375
376 // Perform default conversions.
377 DefaultFunctionArrayConversion(LHSExp);
378 DefaultFunctionArrayConversion(RHSExp);
Chris Lattner727a80d2007-07-15 23:59:53 +0000379
Chris Lattner12d9ff62007-07-16 00:14:47 +0000380 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000381
Reid Spencer5f016e22007-07-11 17:01:13 +0000382 // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent
Chris Lattner73d0d4f2007-08-30 17:45:32 +0000383 // to the expression *((e1)+(e2)). This means the array "Base" may actually be
Reid Spencer5f016e22007-07-11 17:01:13 +0000384 // in the subscript position. As a result, we need to derive the array base
385 // and index from the expression types.
Chris Lattner12d9ff62007-07-16 00:14:47 +0000386 Expr *BaseExpr, *IndexExpr;
387 QualType ResultType;
Chris Lattnerbefee482007-07-31 16:53:04 +0000388 if (const PointerType *PTy = LHSTy->getAsPointerType()) {
Chris Lattner12d9ff62007-07-16 00:14:47 +0000389 BaseExpr = LHSExp;
390 IndexExpr = RHSExp;
391 // FIXME: need to deal with const...
392 ResultType = PTy->getPointeeType();
Chris Lattnerbefee482007-07-31 16:53:04 +0000393 } else if (const PointerType *PTy = RHSTy->getAsPointerType()) {
Chris Lattner7a2e0472007-07-16 00:23:25 +0000394 // Handle the uncommon case of "123[Ptr]".
Chris Lattner12d9ff62007-07-16 00:14:47 +0000395 BaseExpr = RHSExp;
396 IndexExpr = LHSExp;
397 // FIXME: need to deal with const...
398 ResultType = PTy->getPointeeType();
Chris Lattnerc8629632007-07-31 19:29:30 +0000399 } else if (const VectorType *VTy = LHSTy->getAsVectorType()) {
400 BaseExpr = LHSExp; // vectors: V[123]
Chris Lattner12d9ff62007-07-16 00:14:47 +0000401 IndexExpr = RHSExp;
Steve Naroff608e0ee2007-08-03 22:40:33 +0000402
403 // Component access limited to variables (reject vec4.rg[1]).
404 if (!isa<DeclRefExpr>(BaseExpr))
405 return Diag(LLoc, diag::err_ocuvector_component_access,
406 SourceRange(LLoc, RLoc));
Chris Lattner12d9ff62007-07-16 00:14:47 +0000407 // FIXME: need to deal with const...
408 ResultType = VTy->getElementType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000409 } else {
Chris Lattner727a80d2007-07-15 23:59:53 +0000410 return Diag(LHSExp->getLocStart(), diag::err_typecheck_subscript_value,
411 RHSExp->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000412 }
413 // C99 6.5.2.1p1
Chris Lattner12d9ff62007-07-16 00:14:47 +0000414 if (!IndexExpr->getType()->isIntegerType())
415 return Diag(IndexExpr->getLocStart(), diag::err_typecheck_subscript,
416 IndexExpr->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000417
Chris Lattner12d9ff62007-07-16 00:14:47 +0000418 // C99 6.5.2.1p1: "shall have type "pointer to *object* type". In practice,
419 // the following check catches trying to index a pointer to a function (e.g.
420 // void (*)(int)). Functions are not objects in C99.
421 if (!ResultType->isObjectType())
422 return Diag(BaseExpr->getLocStart(),
423 diag::err_typecheck_subscript_not_object,
424 BaseExpr->getType().getAsString(), BaseExpr->getSourceRange());
425
426 return new ArraySubscriptExpr(LHSExp, RHSExp, ResultType, RLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000427}
428
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000429QualType Sema::
430CheckOCUVectorComponent(QualType baseType, SourceLocation OpLoc,
431 IdentifierInfo &CompName, SourceLocation CompLoc) {
Chris Lattnerc8629632007-07-31 19:29:30 +0000432 const OCUVectorType *vecType = baseType->getAsOCUVectorType();
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000433
434 // The vector accessor can't exceed the number of elements.
435 const char *compStr = CompName.getName();
436 if (strlen(compStr) > vecType->getNumElements()) {
437 Diag(OpLoc, diag::err_ocuvector_component_exceeds_length,
438 baseType.getAsString(), SourceRange(CompLoc));
439 return QualType();
440 }
441 // The component names must come from the same set.
Chris Lattner88dca042007-08-02 22:33:49 +0000442 if (vecType->getPointAccessorIdx(*compStr) != -1) {
443 do
444 compStr++;
445 while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1);
446 } else if (vecType->getColorAccessorIdx(*compStr) != -1) {
447 do
448 compStr++;
449 while (*compStr && vecType->getColorAccessorIdx(*compStr) != -1);
450 } else if (vecType->getTextureAccessorIdx(*compStr) != -1) {
451 do
452 compStr++;
453 while (*compStr && vecType->getTextureAccessorIdx(*compStr) != -1);
454 }
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000455
456 if (*compStr) {
457 // We didn't get to the end of the string. This means the component names
458 // didn't come from the same set *or* we encountered an illegal name.
459 Diag(OpLoc, diag::err_ocuvector_component_name_illegal,
460 std::string(compStr,compStr+1), SourceRange(CompLoc));
461 return QualType();
462 }
463 // Each component accessor can't exceed the vector type.
464 compStr = CompName.getName();
465 while (*compStr) {
466 if (vecType->isAccessorWithinNumElements(*compStr))
467 compStr++;
468 else
469 break;
470 }
471 if (*compStr) {
472 // We didn't get to the end of the string. This means a component accessor
473 // exceeds the number of elements in the vector.
474 Diag(OpLoc, diag::err_ocuvector_component_exceeds_length,
475 baseType.getAsString(), SourceRange(CompLoc));
476 return QualType();
477 }
478 // The component accessor looks fine - now we need to compute the actual type.
479 // The vector type is implied by the component accessor. For example,
480 // vec4.b is a float, vec4.xy is a vec2, vec4.rgb is a vec3, etc.
481 unsigned CompSize = strlen(CompName.getName());
482 if (CompSize == 1)
483 return vecType->getElementType();
Steve Naroffbea0b342007-07-29 16:33:31 +0000484
485 QualType VT = Context.getOCUVectorType(vecType->getElementType(), CompSize);
486 // Now look up the TypeDefDecl from the vector type. Without this,
487 // diagostics look bad. We want OCU vector types to appear built-in.
488 for (unsigned i = 0, e = OCUVectorDecls.size(); i != e; ++i) {
489 if (OCUVectorDecls[i]->getUnderlyingType() == VT)
490 return Context.getTypedefType(OCUVectorDecls[i]);
491 }
492 return VT; // should never get here (a typedef type should always be found).
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000493}
494
Reid Spencer5f016e22007-07-11 17:01:13 +0000495Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +0000496ActOnMemberReferenceExpr(ExprTy *Base, SourceLocation OpLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000497 tok::TokenKind OpKind, SourceLocation MemberLoc,
498 IdentifierInfo &Member) {
Steve Naroffdfa6aae2007-07-26 03:11:44 +0000499 Expr *BaseExpr = static_cast<Expr *>(Base);
500 assert(BaseExpr && "no record expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000501
Steve Naroffdfa6aae2007-07-26 03:11:44 +0000502 QualType BaseType = BaseExpr->getType();
503 assert(!BaseType.isNull() && "no type for member expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000504
Reid Spencer5f016e22007-07-11 17:01:13 +0000505 if (OpKind == tok::arrow) {
Chris Lattnerbefee482007-07-31 16:53:04 +0000506 if (const PointerType *PT = BaseType->getAsPointerType())
Steve Naroffdfa6aae2007-07-26 03:11:44 +0000507 BaseType = PT->getPointeeType();
508 else
509 return Diag(OpLoc, diag::err_typecheck_member_reference_arrow,
510 SourceRange(MemberLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000511 }
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000512 // The base type is either a record or an OCUVectorType.
Chris Lattnerc8629632007-07-31 19:29:30 +0000513 if (const RecordType *RTy = BaseType->getAsRecordType()) {
Steve Naroffdfa6aae2007-07-26 03:11:44 +0000514 RecordDecl *RDecl = RTy->getDecl();
515 if (RTy->isIncompleteType())
516 return Diag(OpLoc, diag::err_typecheck_incomplete_tag, RDecl->getName(),
517 BaseExpr->getSourceRange());
518 // The record definition is complete, now make sure the member is valid.
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000519 FieldDecl *MemberDecl = RDecl->getMember(&Member);
520 if (!MemberDecl)
Steve Naroffdfa6aae2007-07-26 03:11:44 +0000521 return Diag(OpLoc, diag::err_typecheck_no_member, Member.getName(),
522 SourceRange(MemberLoc));
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000523 return new MemberExpr(BaseExpr, OpKind==tok::arrow, MemberDecl, MemberLoc);
524 } else if (BaseType->isOCUVectorType() && OpKind == tok::period) {
Steve Naroff608e0ee2007-08-03 22:40:33 +0000525 // Component access limited to variables (reject vec4.rg.g).
526 if (!isa<DeclRefExpr>(BaseExpr))
527 return Diag(OpLoc, diag::err_ocuvector_component_access,
528 SourceRange(MemberLoc));
Steve Naroffe1b31fe2007-07-27 22:15:19 +0000529 QualType ret = CheckOCUVectorComponent(BaseType, OpLoc, Member, MemberLoc);
530 if (ret.isNull())
531 return true;
Chris Lattner6481a572007-08-03 17:31:20 +0000532 return new OCUVectorElementExpr(ret, BaseExpr, Member, MemberLoc);
Fariborz Jahanian232220c2007-11-12 22:29:28 +0000533 } else if (BaseType->isObjcInterfaceType()) {
534 ObjcInterfaceDecl *IFace;
535 if (isa<ObjcInterfaceType>(BaseType.getCanonicalType()))
536 IFace = dyn_cast<ObjcInterfaceType>(BaseType)->getDecl();
537 else
538 IFace = dyn_cast<ObjcQualifiedInterfaceType>(BaseType)
539 ->getInterfaceType()->getDecl();
540 ObjcInterfaceDecl *clsDeclared;
541 if (ObjcIvarDecl *IV = IFace->lookupInstanceVariable(&Member, clsDeclared))
542 return new ObjCIvarRefExpr(IV, IV->getType(), MemberLoc, BaseExpr,
543 OpKind==tok::arrow);
544 }
545 return Diag(OpLoc, diag::err_typecheck_member_reference_structUnion,
546 SourceRange(MemberLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000547}
548
Steve Narofff69936d2007-09-16 03:34:24 +0000549/// ActOnCallExpr - Handle a call to Fn with the specified array of arguments.
Reid Spencer5f016e22007-07-11 17:01:13 +0000550/// This provides the location of the left/right parens and a list of comma
551/// locations.
552Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +0000553ActOnCallExpr(ExprTy *fn, SourceLocation LParenLoc,
Chris Lattner74c469f2007-07-21 03:03:59 +0000554 ExprTy **args, unsigned NumArgsInCall,
Reid Spencer5f016e22007-07-11 17:01:13 +0000555 SourceLocation *CommaLocs, SourceLocation RParenLoc) {
Chris Lattner74c469f2007-07-21 03:03:59 +0000556 Expr *Fn = static_cast<Expr *>(fn);
557 Expr **Args = reinterpret_cast<Expr**>(args);
558 assert(Fn && "no function call expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000559
Chris Lattner74c469f2007-07-21 03:03:59 +0000560 UsualUnaryConversions(Fn);
561 QualType funcType = Fn->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000562
563 // C99 6.5.2.2p1 - "The expression that denotes the called function shall have
564 // type pointer to function".
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000565 const PointerType *PT = funcType->getAsPointerType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000566 if (PT == 0)
Chris Lattner74c469f2007-07-21 03:03:59 +0000567 return Diag(Fn->getLocStart(), diag::err_typecheck_call_not_function,
568 SourceRange(Fn->getLocStart(), RParenLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000569
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000570 const FunctionType *funcT = PT->getPointeeType()->getAsFunctionType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000571 if (funcT == 0)
Chris Lattner74c469f2007-07-21 03:03:59 +0000572 return Diag(Fn->getLocStart(), diag::err_typecheck_call_not_function,
573 SourceRange(Fn->getLocStart(), RParenLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000574
575 // If a prototype isn't declared, the parser implicitly defines a func decl
576 QualType resultType = funcT->getResultType();
577
578 if (const FunctionTypeProto *proto = dyn_cast<FunctionTypeProto>(funcT)) {
579 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by
580 // assignment, to the types of the corresponding parameter, ...
581
582 unsigned NumArgsInProto = proto->getNumArgs();
583 unsigned NumArgsToCheck = NumArgsInCall;
584
585 if (NumArgsInCall < NumArgsInProto)
586 Diag(RParenLoc, diag::err_typecheck_call_too_few_args,
Chris Lattner74c469f2007-07-21 03:03:59 +0000587 Fn->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000588 else if (NumArgsInCall > NumArgsInProto) {
589 if (!proto->isVariadic()) {
Chris Lattnerd472b312007-07-21 03:09:58 +0000590 Diag(Args[NumArgsInProto]->getLocStart(),
Chris Lattner74c469f2007-07-21 03:03:59 +0000591 diag::err_typecheck_call_too_many_args, Fn->getSourceRange(),
Chris Lattnerd472b312007-07-21 03:09:58 +0000592 SourceRange(Args[NumArgsInProto]->getLocStart(),
593 Args[NumArgsInCall-1]->getLocEnd()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000594 }
595 NumArgsToCheck = NumArgsInProto;
596 }
597 // Continue to check argument types (even if we have too few/many args).
598 for (unsigned i = 0; i < NumArgsToCheck; i++) {
Chris Lattner74c469f2007-07-21 03:03:59 +0000599 Expr *argExpr = Args[i];
Steve Narofff69936d2007-09-16 03:34:24 +0000600 assert(argExpr && "ActOnCallExpr(): missing argument expression");
Reid Spencer5f016e22007-07-11 17:01:13 +0000601
602 QualType lhsType = proto->getArgType(i);
603 QualType rhsType = argExpr->getType();
Steve Naroff700204c2007-07-24 21:46:40 +0000604
Steve Naroff82c7e6d2007-07-25 20:45:33 +0000605 // If necessary, apply function/array conversion. C99 6.7.5.3p[7,8].
Chris Lattnerc8629632007-07-31 19:29:30 +0000606 if (const ArrayType *ary = lhsType->getAsArrayType())
Steve Naroff700204c2007-07-24 21:46:40 +0000607 lhsType = Context.getPointerType(ary->getElementType());
Steve Naroff82c7e6d2007-07-25 20:45:33 +0000608 else if (lhsType->isFunctionType())
Steve Naroff700204c2007-07-24 21:46:40 +0000609 lhsType = Context.getPointerType(lhsType);
610
Steve Naroff90045e82007-07-13 23:32:42 +0000611 AssignmentCheckResult result = CheckSingleAssignmentConstraints(lhsType,
612 argExpr);
Steve Narofff1120de2007-08-24 22:33:52 +0000613 if (Args[i] != argExpr) // The expression was converted.
614 Args[i] = argExpr; // Make sure we store the converted expression.
Reid Spencer5f016e22007-07-11 17:01:13 +0000615 SourceLocation l = argExpr->getLocStart();
616
617 // decode the result (notice that AST's are still created for extensions).
618 switch (result) {
619 case Compatible:
620 break;
621 case PointerFromInt:
Steve Naroff529a4ad2007-11-27 17:58:44 +0000622 Diag(l, diag::ext_typecheck_passing_pointer_int,
623 lhsType.getAsString(), rhsType.getAsString(),
624 Fn->getSourceRange(), argExpr->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000625 break;
626 case IntFromPointer:
627 Diag(l, diag::ext_typecheck_passing_pointer_int,
628 lhsType.getAsString(), rhsType.getAsString(),
Chris Lattner74c469f2007-07-21 03:03:59 +0000629 Fn->getSourceRange(), argExpr->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000630 break;
631 case IncompatiblePointer:
632 Diag(l, diag::ext_typecheck_passing_incompatible_pointer,
633 rhsType.getAsString(), lhsType.getAsString(),
Chris Lattner74c469f2007-07-21 03:03:59 +0000634 Fn->getSourceRange(), argExpr->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000635 break;
636 case CompatiblePointerDiscardsQualifiers:
637 Diag(l, diag::ext_typecheck_passing_discards_qualifiers,
638 rhsType.getAsString(), lhsType.getAsString(),
Chris Lattner74c469f2007-07-21 03:03:59 +0000639 Fn->getSourceRange(), argExpr->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000640 break;
641 case Incompatible:
642 return Diag(l, diag::err_typecheck_passing_incompatible,
643 rhsType.getAsString(), lhsType.getAsString(),
Chris Lattner74c469f2007-07-21 03:03:59 +0000644 Fn->getSourceRange(), argExpr->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000645 }
646 }
Steve Naroffb291ab62007-08-28 23:30:39 +0000647 if (NumArgsInCall > NumArgsInProto && proto->isVariadic()) {
648 // Promote the arguments (C99 6.5.2.2p7).
649 for (unsigned i = NumArgsInProto; i < NumArgsInCall; i++) {
650 Expr *argExpr = Args[i];
Steve Narofff69936d2007-09-16 03:34:24 +0000651 assert(argExpr && "ActOnCallExpr(): missing argument expression");
Steve Naroffb291ab62007-08-28 23:30:39 +0000652
653 DefaultArgumentPromotion(argExpr);
654 if (Args[i] != argExpr) // The expression was converted.
655 Args[i] = argExpr; // Make sure we store the converted expression.
656 }
657 } else if (NumArgsInCall != NumArgsInProto && !proto->isVariadic()) {
658 // Even if the types checked, bail if the number of arguments don't match.
Reid Spencer5f016e22007-07-11 17:01:13 +0000659 return true;
Steve Naroffb291ab62007-08-28 23:30:39 +0000660 }
661 } else if (isa<FunctionTypeNoProto>(funcT)) {
662 // Promote the arguments (C99 6.5.2.2p6).
663 for (unsigned i = 0; i < NumArgsInCall; i++) {
664 Expr *argExpr = Args[i];
Steve Narofff69936d2007-09-16 03:34:24 +0000665 assert(argExpr && "ActOnCallExpr(): missing argument expression");
Steve Naroffb291ab62007-08-28 23:30:39 +0000666
667 DefaultArgumentPromotion(argExpr);
668 if (Args[i] != argExpr) // The expression was converted.
669 Args[i] = argExpr; // Make sure we store the converted expression.
670 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000671 }
Chris Lattner59907c42007-08-10 20:18:51 +0000672 // Do special checking on direct calls to functions.
673 if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(Fn))
674 if (DeclRefExpr *DRExpr = dyn_cast<DeclRefExpr>(IcExpr->getSubExpr()))
675 if (FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRExpr->getDecl()))
Chris Lattner73d0d4f2007-08-30 17:45:32 +0000676 if (CheckFunctionCall(Fn, LParenLoc, RParenLoc, FDecl, Args,
677 NumArgsInCall))
Anders Carlsson71993dd2007-08-17 05:31:46 +0000678 return true;
Chris Lattner59907c42007-08-10 20:18:51 +0000679
Chris Lattner74c469f2007-07-21 03:03:59 +0000680 return new CallExpr(Fn, Args, NumArgsInCall, resultType, RParenLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000681}
682
683Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +0000684ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty,
Steve Naroffaff1edd2007-07-19 21:32:11 +0000685 SourceLocation RParenLoc, ExprTy *InitExpr) {
Steve Narofff69936d2007-09-16 03:34:24 +0000686 assert((Ty != 0) && "ActOnCompoundLiteral(): missing type");
Steve Naroff4aa88f82007-07-19 01:06:55 +0000687 QualType literalType = QualType::getFromOpaquePtr(Ty);
Steve Naroffaff1edd2007-07-19 21:32:11 +0000688 // FIXME: put back this assert when initializers are worked out.
Steve Narofff69936d2007-09-16 03:34:24 +0000689 //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression");
Steve Naroffaff1edd2007-07-19 21:32:11 +0000690 Expr *literalExpr = static_cast<Expr*>(InitExpr);
Anders Carlssond35c8322007-12-05 07:24:19 +0000691
Steve Naroff2fdc3742007-12-10 22:44:33 +0000692 // FIXME: add more semantic analysis (C99 6.5.2.5).
693 if (CheckInitializer(literalExpr, literalType, false))
694 return 0;
Anders Carlssond35c8322007-12-05 07:24:19 +0000695
Steve Naroffaff1edd2007-07-19 21:32:11 +0000696 return new CompoundLiteralExpr(literalType, literalExpr);
Steve Naroff4aa88f82007-07-19 01:06:55 +0000697}
698
699Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +0000700ActOnInitList(SourceLocation LBraceLoc, ExprTy **initlist, unsigned NumInit,
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000701 SourceLocation RBraceLoc) {
Steve Narofff0090632007-09-02 02:04:30 +0000702 Expr **InitList = reinterpret_cast<Expr**>(initlist);
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000703
Steve Naroff08d92e42007-09-15 18:49:24 +0000704 // Semantic analysis for initializers is done by ActOnDeclarator() and
Steve Naroffd35005e2007-09-03 01:24:23 +0000705 // CheckInitializer() - it requires knowledge of the object being intialized.
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000706
Steve Naroff38374b02007-09-02 20:30:18 +0000707 InitListExpr *e = new InitListExpr(LBraceLoc, InitList, NumInit, RBraceLoc);
708 e->setType(Context.VoidTy); // FIXME: just a place holder for now.
709 return e;
Steve Naroff4aa88f82007-07-19 01:06:55 +0000710}
711
Anders Carlssona64db8f2007-11-27 05:51:55 +0000712bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty)
713{
714 assert(VectorTy->isVectorType() && "Not a vector type!");
715
716 if (Ty->isVectorType() || Ty->isIntegerType()) {
717 if (Context.getTypeSize(VectorTy, SourceLocation()) !=
718 Context.getTypeSize(Ty, SourceLocation()))
719 return Diag(R.getBegin(),
720 Ty->isVectorType() ?
721 diag::err_invalid_conversion_between_vectors :
722 diag::err_invalid_conversion_between_vector_and_integer,
723 VectorTy.getAsString().c_str(),
724 Ty.getAsString().c_str(), R);
725 } else
726 return Diag(R.getBegin(),
727 diag::err_invalid_conversion_between_vector_and_scalar,
728 VectorTy.getAsString().c_str(),
729 Ty.getAsString().c_str(), R);
730
731 return false;
732}
733
Steve Naroff4aa88f82007-07-19 01:06:55 +0000734Action::ExprResult Sema::
Steve Narofff69936d2007-09-16 03:34:24 +0000735ActOnCastExpr(SourceLocation LParenLoc, TypeTy *Ty,
Reid Spencer5f016e22007-07-11 17:01:13 +0000736 SourceLocation RParenLoc, ExprTy *Op) {
Steve Narofff69936d2007-09-16 03:34:24 +0000737 assert((Ty != 0) && (Op != 0) && "ActOnCastExpr(): missing type or expr");
Steve Naroff16beff82007-07-16 23:25:18 +0000738
739 Expr *castExpr = static_cast<Expr*>(Op);
740 QualType castType = QualType::getFromOpaquePtr(Ty);
741
Steve Naroff711602b2007-08-31 00:32:44 +0000742 UsualUnaryConversions(castExpr);
743
Chris Lattner75af4802007-07-18 16:00:06 +0000744 // C99 6.5.4p2: the cast type needs to be void or scalar and the expression
745 // type needs to be scalar.
Chris Lattner3da2db42007-10-29 04:26:44 +0000746 if (!castType->isVoidType()) { // Cast to void allows any expr type.
747 if (!castType->isScalarType())
748 return Diag(LParenLoc, diag::err_typecheck_cond_expect_scalar,
749 castType.getAsString(), SourceRange(LParenLoc, RParenLoc));
Anders Carlssona64db8f2007-11-27 05:51:55 +0000750 if (!castExpr->getType()->isScalarType())
Chris Lattner3da2db42007-10-29 04:26:44 +0000751 return Diag(castExpr->getLocStart(),
752 diag::err_typecheck_expect_scalar_operand,
753 castExpr->getType().getAsString(),castExpr->getSourceRange());
Anders Carlssona64db8f2007-11-27 05:51:55 +0000754
755 if (castExpr->getType()->isVectorType()) {
756 if (CheckVectorCast(SourceRange(LParenLoc, RParenLoc),
757 castExpr->getType(), castType))
758 return true;
759 } else if (castType->isVectorType()) {
760 if (CheckVectorCast(SourceRange(LParenLoc, RParenLoc),
761 castType, castExpr->getType()))
762 return true;
Chris Lattner3da2db42007-10-29 04:26:44 +0000763 }
Steve Naroff16beff82007-07-16 23:25:18 +0000764 }
765 return new CastExpr(castType, castExpr, LParenLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000766}
767
Steve Naroffd4dd30f2007-10-18 05:13:08 +0000768// promoteExprToType - a helper function to ensure we create exactly one
769// ImplicitCastExpr.
770static void promoteExprToType(Expr *&expr, QualType type) {
771 if (ImplicitCastExpr *impCast = dyn_cast<ImplicitCastExpr>(expr))
772 impCast->setType(type);
773 else
774 expr = new ImplicitCastExpr(type, expr);
775 return;
776}
777
Chris Lattnera21ddb32007-11-26 01:40:58 +0000778/// Note that lex is not null here, even if this is the gnu "x ?: y" extension.
779/// In that case, lex = cond.
Reid Spencer5f016e22007-07-11 17:01:13 +0000780inline QualType Sema::CheckConditionalOperands( // C99 6.5.15
Steve Naroff49b45262007-07-13 16:58:59 +0000781 Expr *&cond, Expr *&lex, Expr *&rex, SourceLocation questionLoc) {
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000782 UsualUnaryConversions(cond);
783 UsualUnaryConversions(lex);
784 UsualUnaryConversions(rex);
785 QualType condT = cond->getType();
786 QualType lexT = lex->getType();
787 QualType rexT = rex->getType();
788
Reid Spencer5f016e22007-07-11 17:01:13 +0000789 // first, check the condition.
Steve Naroff49b45262007-07-13 16:58:59 +0000790 if (!condT->isScalarType()) { // C99 6.5.15p2
791 Diag(cond->getLocStart(), diag::err_typecheck_cond_expect_scalar,
792 condT.getAsString());
Reid Spencer5f016e22007-07-11 17:01:13 +0000793 return QualType();
794 }
795 // now check the two expressions.
Steve Naroffa4332e22007-07-17 00:58:39 +0000796 if (lexT->isArithmeticType() && rexT->isArithmeticType()) { // C99 6.5.15p3,5
797 UsualArithmeticConversions(lex, rex);
798 return lex->getType();
799 }
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000800 if (const RecordType *LHSRT = lexT->getAsRecordType()) { // C99 6.5.15p3
801 if (const RecordType *RHSRT = rexT->getAsRecordType()) {
Chris Lattnera21ddb32007-11-26 01:40:58 +0000802 if (LHSRT->getDecl() == RHSRT->getDecl())
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000803 return lexT;
804
Reid Spencer5f016e22007-07-11 17:01:13 +0000805 Diag(questionLoc, diag::err_typecheck_cond_incompatible_operands,
Steve Naroff49b45262007-07-13 16:58:59 +0000806 lexT.getAsString(), rexT.getAsString(),
807 lex->getSourceRange(), rex->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000808 return QualType();
809 }
810 }
Chris Lattner590b6642007-07-15 23:26:56 +0000811 // C99 6.5.15p3
Steve Naroffd4dd30f2007-10-18 05:13:08 +0000812 if (lexT->isPointerType() && rex->isNullPointerConstant(Context)) {
813 promoteExprToType(rex, lexT); // promote the null to a pointer.
Steve Naroff49b45262007-07-13 16:58:59 +0000814 return lexT;
Steve Naroffd4dd30f2007-10-18 05:13:08 +0000815 }
816 if (rexT->isPointerType() && lex->isNullPointerConstant(Context)) {
817 promoteExprToType(lex, rexT); // promote the null to a pointer.
Steve Naroff49b45262007-07-13 16:58:59 +0000818 return rexT;
Steve Naroffd4dd30f2007-10-18 05:13:08 +0000819 }
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000820 if (const PointerType *LHSPT = lexT->getAsPointerType()) { // C99 6.5.15p3,6
821 if (const PointerType *RHSPT = rexT->getAsPointerType()) {
822 // get the "pointed to" types
823 QualType lhptee = LHSPT->getPointeeType();
824 QualType rhptee = RHSPT->getPointeeType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000825
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000826 // ignore qualifiers on void (C99 6.5.15p3, clause 6)
827 if (lhptee->isVoidType() &&
828 (rhptee->isObjectType() || rhptee->isIncompleteType()))
829 return lexT;
830 if (rhptee->isVoidType() &&
831 (lhptee->isObjectType() || lhptee->isIncompleteType()))
832 return rexT;
Reid Spencer5f016e22007-07-11 17:01:13 +0000833
Steve Naroffec0550f2007-10-15 20:41:53 +0000834 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
835 rhptee.getUnqualifiedType())) {
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000836 Diag(questionLoc, diag::ext_typecheck_cond_incompatible_pointers,
837 lexT.getAsString(), rexT.getAsString(),
838 lex->getSourceRange(), rex->getSourceRange());
839 return lexT; // FIXME: this is an _ext - is this return o.k?
840 }
841 // The pointer types are compatible.
Chris Lattner73d0d4f2007-08-30 17:45:32 +0000842 // C99 6.5.15p6: If both operands are pointers to compatible types *or* to
843 // differently qualified versions of compatible types, the result type is
844 // a pointer to an appropriately qualified version of the *composite*
845 // type.
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000846 return lexT; // FIXME: Need to return the composite type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000847 }
848 }
Chris Lattner2dcb6bb2007-07-31 21:27:01 +0000849
Steve Naroff49b45262007-07-13 16:58:59 +0000850 if (lexT->isVoidType() && rexT->isVoidType()) // C99 6.5.15p3
851 return lexT;
Reid Spencer5f016e22007-07-11 17:01:13 +0000852
853 Diag(questionLoc, diag::err_typecheck_cond_incompatible_operands,
Steve Naroff49b45262007-07-13 16:58:59 +0000854 lexT.getAsString(), rexT.getAsString(),
855 lex->getSourceRange(), rex->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +0000856 return QualType();
857}
858
Steve Narofff69936d2007-09-16 03:34:24 +0000859/// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null
Reid Spencer5f016e22007-07-11 17:01:13 +0000860/// in the case of a the GNU conditional expr extension.
Steve Narofff69936d2007-09-16 03:34:24 +0000861Action::ExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000862 SourceLocation ColonLoc,
863 ExprTy *Cond, ExprTy *LHS,
864 ExprTy *RHS) {
Chris Lattner26824902007-07-16 21:39:03 +0000865 Expr *CondExpr = (Expr *) Cond;
866 Expr *LHSExpr = (Expr *) LHS, *RHSExpr = (Expr *) RHS;
Chris Lattnera21ddb32007-11-26 01:40:58 +0000867
868 // If this is the gnu "x ?: y" extension, analyze the types as though the LHS
869 // was the condition.
870 bool isLHSNull = LHSExpr == 0;
871 if (isLHSNull)
872 LHSExpr = CondExpr;
873
Chris Lattner26824902007-07-16 21:39:03 +0000874 QualType result = CheckConditionalOperands(CondExpr, LHSExpr,
875 RHSExpr, QuestionLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000876 if (result.isNull())
877 return true;
Chris Lattnera21ddb32007-11-26 01:40:58 +0000878 return new ConditionalOperator(CondExpr, isLHSNull ? 0 : LHSExpr,
879 RHSExpr, result);
Reid Spencer5f016e22007-07-11 17:01:13 +0000880}
881
Steve Naroffb291ab62007-08-28 23:30:39 +0000882/// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that
883/// do not have a prototype. Integer promotions are performed on each
884/// argument, and arguments that have type float are promoted to double.
885void Sema::DefaultArgumentPromotion(Expr *&expr) {
886 QualType t = expr->getType();
887 assert(!t.isNull() && "DefaultArgumentPromotion - missing type");
888
889 if (t->isPromotableIntegerType()) // C99 6.3.1.1p2
890 promoteExprToType(expr, Context.IntTy);
891 if (t == Context.FloatTy)
892 promoteExprToType(expr, Context.DoubleTy);
893}
894
Steve Narofffa2eaab2007-07-15 02:02:06 +0000895/// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4).
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000896void Sema::DefaultFunctionArrayConversion(Expr *&e) {
Steve Narofffa2eaab2007-07-15 02:02:06 +0000897 QualType t = e->getType();
Steve Naroff90045e82007-07-13 23:32:42 +0000898 assert(!t.isNull() && "DefaultFunctionArrayConversion - missing type");
Bill Wendling08ad47c2007-07-17 03:52:31 +0000899
Chris Lattnera1d9fde2007-07-31 16:56:34 +0000900 if (const ReferenceType *ref = t->getAsReferenceType()) {
Bill Wendlingea5e79f2007-07-17 04:16:47 +0000901 promoteExprToType(e, ref->getReferenceeType()); // C++ [expr]
902 t = e->getType();
903 }
Steve Narofffa2eaab2007-07-15 02:02:06 +0000904 if (t->isFunctionType())
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000905 promoteExprToType(e, Context.getPointerType(t));
Chris Lattnerc8629632007-07-31 19:29:30 +0000906 else if (const ArrayType *ary = t->getAsArrayType())
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000907 promoteExprToType(e, Context.getPointerType(ary->getElementType()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000908}
909
910/// UsualUnaryConversion - Performs various conversions that are common to most
911/// operators (C99 6.3). The conversions of array and function types are
912/// sometimes surpressed. For example, the array->pointer conversion doesn't
913/// apply if the array is an argument to the sizeof or address (&) operators.
914/// In these instances, this routine should *not* be called.
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000915void Sema::UsualUnaryConversions(Expr *&expr) {
Steve Naroff49b45262007-07-13 16:58:59 +0000916 QualType t = expr->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000917 assert(!t.isNull() && "UsualUnaryConversions - missing type");
918
Chris Lattnera1d9fde2007-07-31 16:56:34 +0000919 if (const ReferenceType *ref = t->getAsReferenceType()) {
Bill Wendlingea5e79f2007-07-17 04:16:47 +0000920 promoteExprToType(expr, ref->getReferenceeType()); // C++ [expr]
921 t = expr->getType();
922 }
Steve Narofffa2eaab2007-07-15 02:02:06 +0000923 if (t->isPromotableIntegerType()) // C99 6.3.1.1p2
Steve Naroffc80b4ee2007-07-16 21:54:35 +0000924 promoteExprToType(expr, Context.IntTy);
925 else
926 DefaultFunctionArrayConversion(expr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000927}
928
Chris Lattner73d0d4f2007-08-30 17:45:32 +0000929/// UsualArithmeticConversions - Performs various conversions that are common to
Reid Spencer5f016e22007-07-11 17:01:13 +0000930/// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this
931/// routine returns the first non-arithmetic type found. The client is
932/// responsible for emitting appropriate error diagnostics.
Steve Naroff9f5fa9b2007-08-24 19:07:16 +0000933QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr,
934 bool isCompAssign) {
Steve Naroff8702a0f2007-08-25 19:54:59 +0000935 if (!isCompAssign) {
936 UsualUnaryConversions(lhsExpr);
937 UsualUnaryConversions(rhsExpr);
938 }
Steve Naroff3187e202007-10-18 18:55:53 +0000939 // For conversion purposes, we ignore any qualifiers.
940 // For example, "const float" and "float" are equivalent.
Steve Narofff68a63f2007-11-10 19:45:54 +0000941 QualType lhs = lhsExpr->getType().getCanonicalType().getUnqualifiedType();
942 QualType rhs = rhsExpr->getType().getCanonicalType().getUnqualifiedType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000943
944 // If both types are identical, no conversion is needed.
Steve Naroff3187e202007-10-18 18:55:53 +0000945 if (lhs == rhs)
946 return lhs;
Reid Spencer5f016e22007-07-11 17:01:13 +0000947
948 // If either side is a non-arithmetic type (e.g. a pointer), we are done.
949 // The caller can deal with this (e.g. pointer + int).
Steve Naroffa4332e22007-07-17 00:58:39 +0000950 if (!lhs->isArithmeticType() || !rhs->isArithmeticType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +0000951 return lhs;
Reid Spencer5f016e22007-07-11 17:01:13 +0000952
953 // At this point, we have two different arithmetic types.
954
955 // Handle complex types first (C99 6.3.1.8p1).
956 if (lhs->isComplexType() || rhs->isComplexType()) {
957 // if we have an integer operand, the result is the complex type.
Steve Naroffa4332e22007-07-17 00:58:39 +0000958 if (rhs->isIntegerType()) { // convert the rhs to the lhs complex type.
Steve Naroff9f5fa9b2007-08-24 19:07:16 +0000959 if (!isCompAssign) promoteExprToType(rhsExpr, lhs);
960 return lhs;
Steve Naroffa4332e22007-07-17 00:58:39 +0000961 }
962 if (lhs->isIntegerType()) { // convert the lhs to the rhs complex type.
Steve Naroff9f5fa9b2007-08-24 19:07:16 +0000963 if (!isCompAssign) promoteExprToType(lhsExpr, rhs);
964 return rhs;
Steve Naroffa4332e22007-07-17 00:58:39 +0000965 }
Steve Narofff1448a02007-08-27 01:27:54 +0000966 // This handles complex/complex, complex/float, or float/complex.
967 // When both operands are complex, the shorter operand is converted to the
968 // type of the longer, and that is the type of the result. This corresponds
969 // to what is done when combining two real floating-point operands.
970 // The fun begins when size promotion occur across type domains.
971 // From H&S 6.3.4: When one operand is complex and the other is a real
972 // floating-point type, the less precise type is converted, within it's
973 // real or complex domain, to the precision of the other type. For example,
974 // when combining a "long double" with a "double _Complex", the
975 // "double _Complex" is promoted to "long double _Complex".
Steve Narofffb0d4962007-08-27 15:30:22 +0000976 int result = Context.compareFloatingType(lhs, rhs);
977
978 if (result > 0) { // The left side is bigger, convert rhs.
Steve Naroff55fe4552007-08-27 21:32:55 +0000979 rhs = Context.getFloatingTypeOfSizeWithinDomain(lhs, rhs);
980 if (!isCompAssign)
981 promoteExprToType(rhsExpr, rhs);
982 } else if (result < 0) { // The right side is bigger, convert lhs.
983 lhs = Context.getFloatingTypeOfSizeWithinDomain(rhs, lhs);
984 if (!isCompAssign)
985 promoteExprToType(lhsExpr, lhs);
986 }
987 // At this point, lhs and rhs have the same rank/size. Now, make sure the
988 // domains match. This is a requirement for our implementation, C99
989 // does not require this promotion.
990 if (lhs != rhs) { // Domains don't match, we have complex/float mix.
991 if (lhs->isRealFloatingType()) { // handle "double, _Complex double".
Steve Naroff29960362007-08-27 21:43:43 +0000992 if (!isCompAssign)
993 promoteExprToType(lhsExpr, rhs);
994 return rhs;
Steve Naroff55fe4552007-08-27 21:32:55 +0000995 } else { // handle "_Complex double, double".
Steve Naroff29960362007-08-27 21:43:43 +0000996 if (!isCompAssign)
997 promoteExprToType(rhsExpr, lhs);
998 return lhs;
Steve Naroff55fe4552007-08-27 21:32:55 +0000999 }
Steve Naroffa4332e22007-07-17 00:58:39 +00001000 }
Steve Naroff29960362007-08-27 21:43:43 +00001001 return lhs; // The domain/size match exactly.
Reid Spencer5f016e22007-07-11 17:01:13 +00001002 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001003 // Now handle "real" floating types (i.e. float, double, long double).
1004 if (lhs->isRealFloatingType() || rhs->isRealFloatingType()) {
1005 // if we have an integer operand, the result is the real floating type.
Steve Naroffa4332e22007-07-17 00:58:39 +00001006 if (rhs->isIntegerType()) { // convert rhs to the lhs floating point type.
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001007 if (!isCompAssign) promoteExprToType(rhsExpr, lhs);
1008 return lhs;
Steve Naroffa4332e22007-07-17 00:58:39 +00001009 }
1010 if (lhs->isIntegerType()) { // convert lhs to the rhs floating point type.
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001011 if (!isCompAssign) promoteExprToType(lhsExpr, rhs);
1012 return rhs;
Steve Naroffa4332e22007-07-17 00:58:39 +00001013 }
Steve Narofffa2eaab2007-07-15 02:02:06 +00001014 // We have two real floating types, float/complex combos were handled above.
1015 // Convert the smaller operand to the bigger result.
Steve Narofffb0d4962007-08-27 15:30:22 +00001016 int result = Context.compareFloatingType(lhs, rhs);
1017
1018 if (result > 0) { // convert the rhs
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001019 if (!isCompAssign) promoteExprToType(rhsExpr, lhs);
1020 return lhs;
Steve Naroffa4332e22007-07-17 00:58:39 +00001021 }
Steve Narofffb0d4962007-08-27 15:30:22 +00001022 if (result < 0) { // convert the lhs
1023 if (!isCompAssign) promoteExprToType(lhsExpr, rhs); // convert the lhs
1024 return rhs;
1025 }
1026 assert(0 && "Sema::UsualArithmeticConversions(): illegal float comparison");
Reid Spencer5f016e22007-07-11 17:01:13 +00001027 }
Steve Narofffa2eaab2007-07-15 02:02:06 +00001028 // Finally, we have two differing integer types.
Steve Naroffa4332e22007-07-17 00:58:39 +00001029 if (Context.maxIntegerType(lhs, rhs) == lhs) { // convert the rhs
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001030 if (!isCompAssign) promoteExprToType(rhsExpr, lhs);
1031 return lhs;
Steve Naroffa4332e22007-07-17 00:58:39 +00001032 }
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001033 if (!isCompAssign) promoteExprToType(lhsExpr, rhs); // convert the lhs
1034 return rhs;
Reid Spencer5f016e22007-07-11 17:01:13 +00001035}
1036
1037// CheckPointerTypesForAssignment - This is a very tricky routine (despite
1038// being closely modeled after the C99 spec:-). The odd characteristic of this
1039// routine is it effectively iqnores the qualifiers on the top level pointee.
1040// This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3].
1041// FIXME: add a couple examples in this comment.
1042Sema::AssignmentCheckResult
1043Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) {
1044 QualType lhptee, rhptee;
1045
1046 // get the "pointed to" type (ignoring qualifiers at the top level)
Chris Lattner2dcb6bb2007-07-31 21:27:01 +00001047 lhptee = lhsType->getAsPointerType()->getPointeeType();
1048 rhptee = rhsType->getAsPointerType()->getPointeeType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001049
1050 // make sure we operate on the canonical type
1051 lhptee = lhptee.getCanonicalType();
1052 rhptee = rhptee.getCanonicalType();
1053
1054 AssignmentCheckResult r = Compatible;
1055
1056 // C99 6.5.16.1p1: This following citation is common to constraints
1057 // 3 & 4 (below). ...and the type *pointed to* by the left has all the
1058 // qualifiers of the type *pointed to* by the right;
1059 if ((lhptee.getQualifiers() & rhptee.getQualifiers()) !=
1060 rhptee.getQualifiers())
1061 r = CompatiblePointerDiscardsQualifiers;
1062
1063 // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or
1064 // incomplete type and the other is a pointer to a qualified or unqualified
1065 // version of void...
1066 if (lhptee.getUnqualifiedType()->isVoidType() &&
1067 (rhptee->isObjectType() || rhptee->isIncompleteType()))
1068 ;
1069 else if (rhptee.getUnqualifiedType()->isVoidType() &&
1070 (lhptee->isObjectType() || lhptee->isIncompleteType()))
1071 ;
1072 // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or
1073 // unqualified versions of compatible types, ...
Steve Naroffec0550f2007-10-15 20:41:53 +00001074 else if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
1075 rhptee.getUnqualifiedType()))
Reid Spencer5f016e22007-07-11 17:01:13 +00001076 r = IncompatiblePointer; // this "trumps" PointerAssignDiscardsQualifiers
1077 return r;
1078}
1079
1080/// CheckAssignmentConstraints (C99 6.5.16) - This routine currently
1081/// has code to accommodate several GCC extensions when type checking
1082/// pointers. Here are some objectionable examples that GCC considers warnings:
1083///
1084/// int a, *pint;
1085/// short *pshort;
1086/// struct foo *pfoo;
1087///
1088/// pint = pshort; // warning: assignment from incompatible pointer type
1089/// a = pint; // warning: assignment makes integer from pointer without a cast
1090/// pint = a; // warning: assignment makes pointer from integer without a cast
1091/// pint = pfoo; // warning: assignment from incompatible pointer type
1092///
1093/// As a result, the code for dealing with pointers is more complex than the
1094/// C99 spec dictates.
1095/// Note: the warning above turn into errors when -pedantic-errors is enabled.
1096///
1097Sema::AssignmentCheckResult
1098Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) {
Steve Naroff8eabdff2007-11-13 00:31:42 +00001099 if (lhsType.getCanonicalType().getUnqualifiedType() ==
1100 rhsType.getCanonicalType().getUnqualifiedType())
Chris Lattner84d35ce2007-10-29 05:15:40 +00001101 return Compatible; // common case, fast path...
Steve Naroff700204c2007-07-24 21:46:40 +00001102
Anders Carlsson793680e2007-10-12 23:56:29 +00001103 if (lhsType->isReferenceType() || rhsType->isReferenceType()) {
Steve Naroffec0550f2007-10-15 20:41:53 +00001104 if (Context.referenceTypesAreCompatible(lhsType, rhsType))
Anders Carlsson793680e2007-10-12 23:56:29 +00001105 return Compatible;
1106 } else if (lhsType->isArithmeticType() && rhsType->isArithmeticType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001107 if (lhsType->isVectorType() || rhsType->isVectorType()) {
Anders Carlsson695dbb62007-11-30 04:21:22 +00001108 if (!getLangOptions().LaxVectorConversions) {
1109 if (lhsType.getCanonicalType() != rhsType.getCanonicalType())
1110 return Incompatible;
1111 } else {
1112 if (lhsType->isVectorType() && rhsType->isVectorType()) {
1113 if ((lhsType->isIntegerType() && rhsType->isIntegerType()) ||
1114 (lhsType->isRealFloatingType() &&
1115 rhsType->isRealFloatingType())) {
1116 if (Context.getTypeSize(lhsType, SourceLocation()) ==
1117 Context.getTypeSize(rhsType, SourceLocation()))
1118 return Compatible;
1119 }
1120 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001121 return Incompatible;
Anders Carlsson695dbb62007-11-30 04:21:22 +00001122 }
1123 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001124 return Compatible;
1125 } else if (lhsType->isPointerType()) {
1126 if (rhsType->isIntegerType())
1127 return PointerFromInt;
1128
1129 if (rhsType->isPointerType())
1130 return CheckPointerTypesForAssignment(lhsType, rhsType);
1131 } else if (rhsType->isPointerType()) {
1132 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer.
1133 if ((lhsType->isIntegerType()) && (lhsType != Context.BoolTy))
1134 return IntFromPointer;
1135
1136 if (lhsType->isPointerType())
1137 return CheckPointerTypesForAssignment(lhsType, rhsType);
1138 } else if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) {
Steve Naroffec0550f2007-10-15 20:41:53 +00001139 if (Context.tagTypesAreCompatible(lhsType, rhsType))
Reid Spencer5f016e22007-07-11 17:01:13 +00001140 return Compatible;
Reid Spencer5f016e22007-07-11 17:01:13 +00001141 }
1142 return Incompatible;
1143}
1144
Steve Naroff90045e82007-07-13 23:32:42 +00001145Sema::AssignmentCheckResult
1146Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) {
Steve Naroff529a4ad2007-11-27 17:58:44 +00001147 // C99 6.5.16.1p1: the left operand is a pointer and the right is
1148 // a null pointer constant.
1149 if (lhsType->isPointerType() && rExpr->isNullPointerConstant(Context)) {
1150 promoteExprToType(rExpr, lhsType);
1151 return Compatible;
1152 }
Chris Lattner943140e2007-10-16 02:55:40 +00001153 // This check seems unnatural, however it is necessary to ensure the proper
Steve Naroff90045e82007-07-13 23:32:42 +00001154 // conversion of functions/arrays. If the conversion were done for all
Steve Naroff08d92e42007-09-15 18:49:24 +00001155 // DeclExpr's (created by ActOnIdentifierExpr), it would mess up the unary
Steve Naroff90045e82007-07-13 23:32:42 +00001156 // expressions that surpress this implicit conversion (&, sizeof).
Chris Lattner943140e2007-10-16 02:55:40 +00001157 //
1158 // Suppress this for references: C99 8.5.3p5. FIXME: revisit when references
1159 // are better understood.
1160 if (!lhsType->isReferenceType())
1161 DefaultFunctionArrayConversion(rExpr);
Steve Narofff1120de2007-08-24 22:33:52 +00001162
1163 Sema::AssignmentCheckResult result;
Steve Naroff90045e82007-07-13 23:32:42 +00001164
Steve Narofff1120de2007-08-24 22:33:52 +00001165 result = CheckAssignmentConstraints(lhsType, rExpr->getType());
1166
1167 // C99 6.5.16.1p2: The value of the right operand is converted to the
1168 // type of the assignment expression.
1169 if (rExpr->getType() != lhsType)
1170 promoteExprToType(rExpr, lhsType);
1171 return result;
Steve Naroff90045e82007-07-13 23:32:42 +00001172}
1173
1174Sema::AssignmentCheckResult
1175Sema::CheckCompoundAssignmentConstraints(QualType lhsType, QualType rhsType) {
1176 return CheckAssignmentConstraints(lhsType, rhsType);
1177}
1178
Chris Lattnerca5eede2007-12-12 05:47:28 +00001179QualType Sema::InvalidOperands(SourceLocation loc, Expr *&lex, Expr *&rex) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001180 Diag(loc, diag::err_typecheck_invalid_operands,
1181 lex->getType().getAsString(), rex->getType().getAsString(),
1182 lex->getSourceRange(), rex->getSourceRange());
Chris Lattnerca5eede2007-12-12 05:47:28 +00001183 return QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001184}
1185
Steve Naroff49b45262007-07-13 16:58:59 +00001186inline QualType Sema::CheckVectorOperands(SourceLocation loc, Expr *&lex,
1187 Expr *&rex) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001188 QualType lhsType = lex->getType(), rhsType = rex->getType();
1189
1190 // make sure the vector types are identical.
1191 if (lhsType == rhsType)
1192 return lhsType;
1193 // You cannot convert between vector values of different size.
1194 Diag(loc, diag::err_typecheck_vector_not_convertable,
1195 lex->getType().getAsString(), rex->getType().getAsString(),
1196 lex->getSourceRange(), rex->getSourceRange());
1197 return QualType();
1198}
1199
1200inline QualType Sema::CheckMultiplyDivideOperands(
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001201 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00001202{
Steve Naroff90045e82007-07-13 23:32:42 +00001203 QualType lhsType = lex->getType(), rhsType = rex->getType();
1204
1205 if (lhsType->isVectorType() || rhsType->isVectorType())
Reid Spencer5f016e22007-07-11 17:01:13 +00001206 return CheckVectorOperands(loc, lex, rex);
Steve Naroff49b45262007-07-13 16:58:59 +00001207
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001208 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Reid Spencer5f016e22007-07-11 17:01:13 +00001209
Steve Naroffa4332e22007-07-17 00:58:39 +00001210 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001211 return compType;
Chris Lattnerca5eede2007-12-12 05:47:28 +00001212 return InvalidOperands(loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001213}
1214
1215inline QualType Sema::CheckRemainderOperands(
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001216 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00001217{
Steve Naroff90045e82007-07-13 23:32:42 +00001218 QualType lhsType = lex->getType(), rhsType = rex->getType();
1219
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001220 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Reid Spencer5f016e22007-07-11 17:01:13 +00001221
Steve Naroffa4332e22007-07-17 00:58:39 +00001222 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001223 return compType;
Chris Lattnerca5eede2007-12-12 05:47:28 +00001224 return InvalidOperands(loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001225}
1226
1227inline QualType Sema::CheckAdditionOperands( // C99 6.5.6
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001228 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00001229{
Steve Naroff3e5e5562007-07-16 22:23:01 +00001230 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Steve Naroff49b45262007-07-13 16:58:59 +00001231 return CheckVectorOperands(loc, lex, rex);
1232
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001233 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Steve Naroff3e5e5562007-07-16 22:23:01 +00001234
Reid Spencer5f016e22007-07-11 17:01:13 +00001235 // handle the common case first (both operands are arithmetic).
Steve Naroffa4332e22007-07-17 00:58:39 +00001236 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001237 return compType;
Reid Spencer5f016e22007-07-11 17:01:13 +00001238
Steve Naroffa4332e22007-07-17 00:58:39 +00001239 if (lex->getType()->isPointerType() && rex->getType()->isIntegerType())
1240 return lex->getType();
1241 if (lex->getType()->isIntegerType() && rex->getType()->isPointerType())
1242 return rex->getType();
Chris Lattnerca5eede2007-12-12 05:47:28 +00001243 return InvalidOperands(loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001244}
1245
1246inline QualType Sema::CheckSubtractionOperands( // C99 6.5.6
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001247 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00001248{
Steve Naroff3e5e5562007-07-16 22:23:01 +00001249 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Reid Spencer5f016e22007-07-11 17:01:13 +00001250 return CheckVectorOperands(loc, lex, rex);
Steve Naroff90045e82007-07-13 23:32:42 +00001251
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001252 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Reid Spencer5f016e22007-07-11 17:01:13 +00001253
Chris Lattner6e4ab612007-12-09 21:53:25 +00001254 // Enforce type constraints: C99 6.5.6p3.
1255
1256 // Handle the common case first (both operands are arithmetic).
Steve Naroffa4332e22007-07-17 00:58:39 +00001257 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001258 return compType;
Chris Lattner6e4ab612007-12-09 21:53:25 +00001259
1260 // Either ptr - int or ptr - ptr.
1261 if (const PointerType *LHSPTy = lex->getType()->getAsPointerType()) {
1262 // The LHS must be an object type, not incomplete, function, etc.
1263 if (!LHSPTy->getPointeeType()->isObjectType()) {
1264 // Handle the GNU void* extension.
1265 if (LHSPTy->getPointeeType()->isVoidType()) {
1266 Diag(loc, diag::ext_gnu_void_ptr,
1267 lex->getSourceRange(), rex->getSourceRange());
1268 } else {
1269 Diag(loc, diag::err_typecheck_sub_ptr_object,
1270 lex->getType().getAsString(), lex->getSourceRange());
1271 return QualType();
1272 }
1273 }
1274
1275 // The result type of a pointer-int computation is the pointer type.
1276 if (rex->getType()->isIntegerType())
1277 return lex->getType();
Steve Naroff3e5e5562007-07-16 22:23:01 +00001278
Chris Lattner6e4ab612007-12-09 21:53:25 +00001279 // Handle pointer-pointer subtractions.
1280 if (const PointerType *RHSPTy = rex->getType()->getAsPointerType()) {
1281 // RHS must be an object type, unless void (GNU).
1282 if (!RHSPTy->getPointeeType()->isObjectType()) {
1283 // Handle the GNU void* extension.
1284 if (RHSPTy->getPointeeType()->isVoidType()) {
1285 if (!LHSPTy->getPointeeType()->isVoidType())
1286 Diag(loc, diag::ext_gnu_void_ptr,
1287 lex->getSourceRange(), rex->getSourceRange());
1288 } else {
1289 Diag(loc, diag::err_typecheck_sub_ptr_object,
1290 rex->getType().getAsString(), rex->getSourceRange());
1291 return QualType();
1292 }
1293 }
1294
1295 // Pointee types must be compatible.
1296 if (!Context.typesAreCompatible(LHSPTy->getPointeeType(),
1297 RHSPTy->getPointeeType())) {
1298 Diag(loc, diag::err_typecheck_sub_ptr_compatible,
1299 lex->getType().getAsString(), rex->getType().getAsString(),
1300 lex->getSourceRange(), rex->getSourceRange());
1301 return QualType();
1302 }
1303
1304 return Context.getPointerDiffType();
1305 }
1306 }
1307
Chris Lattnerca5eede2007-12-12 05:47:28 +00001308 return InvalidOperands(loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001309}
1310
1311inline QualType Sema::CheckShiftOperands( // C99 6.5.7
Chris Lattnerca5eede2007-12-12 05:47:28 +00001312 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign) {
1313 // C99 6.5.7p2: Each of the operands shall have integer type.
1314 if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType())
1315 return InvalidOperands(loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001316
Chris Lattnerca5eede2007-12-12 05:47:28 +00001317 // Shifts don't perform usual arithmetic conversions, they just do integer
1318 // promotions on each operand. C99 6.5.7p3
1319 UsualUnaryConversions(lex);
1320 UsualUnaryConversions(rex);
1321
1322 // "The type of the result is that of the promoted left operand."
1323 return lex->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001324}
1325
Chris Lattnera5937dd2007-08-26 01:18:55 +00001326inline QualType Sema::CheckCompareOperands( // C99 6.5.8
1327 Expr *&lex, Expr *&rex, SourceLocation loc, bool isRelational)
Reid Spencer5f016e22007-07-11 17:01:13 +00001328{
Chris Lattnera5937dd2007-08-26 01:18:55 +00001329 // C99 6.5.8p3 / C99 6.5.9p4
Steve Naroff30bf7712007-08-10 18:26:40 +00001330 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
1331 UsualArithmeticConversions(lex, rex);
1332 else {
1333 UsualUnaryConversions(lex);
1334 UsualUnaryConversions(rex);
1335 }
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001336 QualType lType = lex->getType();
1337 QualType rType = rex->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001338
Ted Kremenek72cb1ae2007-10-29 17:13:39 +00001339 // For non-floating point types, check for self-comparisons of the form
1340 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
1341 // often indicate logic errors in the program.
Ted Kremenek3ca0bf22007-10-29 16:58:49 +00001342 if (!lType->isFloatingType()) {
1343 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(IgnoreParen(lex)))
1344 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(IgnoreParen(rex)))
1345 if (DRL->getDecl() == DRR->getDecl())
1346 Diag(loc, diag::warn_selfcomparison);
1347 }
1348
Chris Lattnera5937dd2007-08-26 01:18:55 +00001349 if (isRelational) {
1350 if (lType->isRealType() && rType->isRealType())
1351 return Context.IntTy;
1352 } else {
Ted Kremenek72cb1ae2007-10-29 17:13:39 +00001353 // Check for comparisons of floating point operands using != and ==.
Ted Kremenek72cb1ae2007-10-29 17:13:39 +00001354 if (lType->isFloatingType()) {
1355 assert (rType->isFloatingType());
Ted Kremenek588e5eb2007-11-25 00:58:00 +00001356 CheckFloatComparison(loc,lex,rex);
Ted Kremenek6a261552007-10-29 16:40:01 +00001357 }
1358
Chris Lattnera5937dd2007-08-26 01:18:55 +00001359 if (lType->isArithmeticType() && rType->isArithmeticType())
1360 return Context.IntTy;
1361 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001362
Chris Lattnerd28f8152007-08-26 01:10:14 +00001363 bool LHSIsNull = lex->isNullPointerConstant(Context);
1364 bool RHSIsNull = rex->isNullPointerConstant(Context);
1365
Chris Lattnera5937dd2007-08-26 01:18:55 +00001366 // All of the following pointer related warnings are GCC extensions, except
1367 // when handling null pointer constants. One day, we can consider making them
1368 // errors (when -pedantic-errors is enabled).
Steve Naroff77878cc2007-08-27 04:08:11 +00001369 if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2
Steve Naroff66296cb2007-11-13 14:57:38 +00001370
1371 if (!LHSIsNull && !RHSIsNull && // C99 6.5.9p2
1372 !lType->getAsPointerType()->getPointeeType()->isVoidType() &&
1373 !rType->getAsPointerType()->getPointeeType()->isVoidType() &&
Steve Naroffec0550f2007-10-15 20:41:53 +00001374 !Context.pointerTypesAreCompatible(lType.getUnqualifiedType(),
1375 rType.getUnqualifiedType())) {
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001376 Diag(loc, diag::ext_typecheck_comparison_of_distinct_pointers,
1377 lType.getAsString(), rType.getAsString(),
1378 lex->getSourceRange(), rex->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +00001379 }
Chris Lattnerd28f8152007-08-26 01:10:14 +00001380 promoteExprToType(rex, lType); // promote the pointer to pointer
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001381 return Context.IntTy;
1382 }
1383 if (lType->isPointerType() && rType->isIntegerType()) {
Chris Lattnerd28f8152007-08-26 01:10:14 +00001384 if (!RHSIsNull)
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001385 Diag(loc, diag::ext_typecheck_comparison_of_pointer_integer,
1386 lType.getAsString(), rType.getAsString(),
1387 lex->getSourceRange(), rex->getSourceRange());
Chris Lattnerd28f8152007-08-26 01:10:14 +00001388 promoteExprToType(rex, lType); // promote the integer to pointer
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001389 return Context.IntTy;
1390 }
1391 if (lType->isIntegerType() && rType->isPointerType()) {
Chris Lattnerd28f8152007-08-26 01:10:14 +00001392 if (!LHSIsNull)
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001393 Diag(loc, diag::ext_typecheck_comparison_of_pointer_integer,
1394 lType.getAsString(), rType.getAsString(),
1395 lex->getSourceRange(), rex->getSourceRange());
Chris Lattnerd28f8152007-08-26 01:10:14 +00001396 promoteExprToType(lex, rType); // promote the integer to pointer
Steve Naroffe77fd3c2007-08-16 21:48:38 +00001397 return Context.IntTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00001398 }
Chris Lattnerca5eede2007-12-12 05:47:28 +00001399 return InvalidOperands(loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001400}
1401
Reid Spencer5f016e22007-07-11 17:01:13 +00001402inline QualType Sema::CheckBitwiseOperands(
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001403 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Reid Spencer5f016e22007-07-11 17:01:13 +00001404{
Steve Naroff3e5e5562007-07-16 22:23:01 +00001405 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Reid Spencer5f016e22007-07-11 17:01:13 +00001406 return CheckVectorOperands(loc, lex, rex);
Steve Naroff90045e82007-07-13 23:32:42 +00001407
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001408 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Reid Spencer5f016e22007-07-11 17:01:13 +00001409
Steve Naroffa4332e22007-07-17 00:58:39 +00001410 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001411 return compType;
Chris Lattnerca5eede2007-12-12 05:47:28 +00001412 return InvalidOperands(loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001413}
1414
1415inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14]
Steve Naroff49b45262007-07-13 16:58:59 +00001416 Expr *&lex, Expr *&rex, SourceLocation loc)
Reid Spencer5f016e22007-07-11 17:01:13 +00001417{
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001418 UsualUnaryConversions(lex);
1419 UsualUnaryConversions(rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001420
Steve Naroffa4332e22007-07-17 00:58:39 +00001421 if (lex->getType()->isScalarType() || rex->getType()->isScalarType())
Reid Spencer5f016e22007-07-11 17:01:13 +00001422 return Context.IntTy;
Chris Lattnerca5eede2007-12-12 05:47:28 +00001423 return InvalidOperands(loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00001424}
1425
1426inline QualType Sema::CheckAssignmentOperands( // C99 6.5.16.1
Steve Narofff1120de2007-08-24 22:33:52 +00001427 Expr *lex, Expr *&rex, SourceLocation loc, QualType compoundType)
Reid Spencer5f016e22007-07-11 17:01:13 +00001428{
1429 QualType lhsType = lex->getType();
1430 QualType rhsType = compoundType.isNull() ? rex->getType() : compoundType;
1431 bool hadError = false;
1432 Expr::isModifiableLvalueResult mlval = lex->isModifiableLvalue();
1433
1434 switch (mlval) { // C99 6.5.16p2
1435 case Expr::MLV_Valid:
1436 break;
1437 case Expr::MLV_ConstQualified:
1438 Diag(loc, diag::err_typecheck_assign_const, lex->getSourceRange());
1439 hadError = true;
1440 break;
1441 case Expr::MLV_ArrayType:
1442 Diag(loc, diag::err_typecheck_array_not_modifiable_lvalue,
1443 lhsType.getAsString(), lex->getSourceRange());
1444 return QualType();
1445 case Expr::MLV_NotObjectType:
1446 Diag(loc, diag::err_typecheck_non_object_not_modifiable_lvalue,
1447 lhsType.getAsString(), lex->getSourceRange());
1448 return QualType();
1449 case Expr::MLV_InvalidExpression:
1450 Diag(loc, diag::err_typecheck_expression_not_modifiable_lvalue,
1451 lex->getSourceRange());
1452 return QualType();
1453 case Expr::MLV_IncompleteType:
1454 case Expr::MLV_IncompleteVoidType:
1455 Diag(loc, diag::err_typecheck_incomplete_type_not_modifiable_lvalue,
1456 lhsType.getAsString(), lex->getSourceRange());
1457 return QualType();
Steve Narofffec0b492007-07-30 03:29:09 +00001458 case Expr::MLV_DuplicateVectorComponents:
1459 Diag(loc, diag::err_typecheck_duplicate_vector_components_not_mlvalue,
1460 lex->getSourceRange());
1461 return QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001462 }
Steve Naroff90045e82007-07-13 23:32:42 +00001463 AssignmentCheckResult result;
1464
1465 if (compoundType.isNull())
1466 result = CheckSingleAssignmentConstraints(lhsType, rex);
1467 else
1468 result = CheckCompoundAssignmentConstraints(lhsType, rhsType);
Steve Naroffd1861fd2007-07-31 12:34:36 +00001469
Reid Spencer5f016e22007-07-11 17:01:13 +00001470 // decode the result (notice that extensions still return a type).
1471 switch (result) {
1472 case Compatible:
1473 break;
1474 case Incompatible:
1475 Diag(loc, diag::err_typecheck_assign_incompatible,
1476 lhsType.getAsString(), rhsType.getAsString(),
1477 lex->getSourceRange(), rex->getSourceRange());
1478 hadError = true;
1479 break;
1480 case PointerFromInt:
Steve Naroff529a4ad2007-11-27 17:58:44 +00001481 Diag(loc, diag::ext_typecheck_assign_pointer_int,
1482 lhsType.getAsString(), rhsType.getAsString(),
1483 lex->getSourceRange(), rex->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +00001484 break;
1485 case IntFromPointer:
1486 Diag(loc, diag::ext_typecheck_assign_pointer_int,
1487 lhsType.getAsString(), rhsType.getAsString(),
1488 lex->getSourceRange(), rex->getSourceRange());
1489 break;
1490 case IncompatiblePointer:
1491 Diag(loc, diag::ext_typecheck_assign_incompatible_pointer,
1492 lhsType.getAsString(), rhsType.getAsString(),
1493 lex->getSourceRange(), rex->getSourceRange());
1494 break;
1495 case CompatiblePointerDiscardsQualifiers:
1496 Diag(loc, diag::ext_typecheck_assign_discards_qualifiers,
1497 lhsType.getAsString(), rhsType.getAsString(),
1498 lex->getSourceRange(), rex->getSourceRange());
1499 break;
1500 }
1501 // C99 6.5.16p3: The type of an assignment expression is the type of the
1502 // left operand unless the left operand has qualified type, in which case
1503 // it is the unqualified version of the type of the left operand.
1504 // C99 6.5.16.1p2: In simple assignment, the value of the right operand
1505 // is converted to the type of the assignment expression (above).
Chris Lattner73d0d4f2007-08-30 17:45:32 +00001506 // C++ 5.17p1: the type of the assignment expression is that of its left
1507 // oprdu.
Reid Spencer5f016e22007-07-11 17:01:13 +00001508 return hadError ? QualType() : lhsType.getUnqualifiedType();
1509}
1510
1511inline QualType Sema::CheckCommaOperands( // C99 6.5.17
Steve Naroff49b45262007-07-13 16:58:59 +00001512 Expr *&lex, Expr *&rex, SourceLocation loc) {
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001513 UsualUnaryConversions(rex);
1514 return rex->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001515}
1516
Steve Naroff49b45262007-07-13 16:58:59 +00001517/// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine
1518/// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions.
Reid Spencer5f016e22007-07-11 17:01:13 +00001519QualType Sema::CheckIncrementDecrementOperand(Expr *op, SourceLocation OpLoc) {
Steve Naroff49b45262007-07-13 16:58:59 +00001520 QualType resType = op->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001521 assert(!resType.isNull() && "no type for increment/decrement expression");
1522
Steve Naroff084f9ed2007-08-24 17:20:07 +00001523 // C99 6.5.2.4p1: We allow complex as a GCC extension.
Steve Naroffd848a382007-11-11 14:15:57 +00001524 if (const PointerType *pt = resType->getAsPointerType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001525 if (!pt->getPointeeType()->isObjectType()) { // C99 6.5.2.4p2, 6.5.6p2
1526 Diag(OpLoc, diag::err_typecheck_arithmetic_incomplete_type,
1527 resType.getAsString(), op->getSourceRange());
1528 return QualType();
1529 }
Steve Naroff084f9ed2007-08-24 17:20:07 +00001530 } else if (!resType->isRealType()) {
1531 if (resType->isComplexType())
1532 // C99 does not support ++/-- on complex types.
1533 Diag(OpLoc, diag::ext_integer_increment_complex,
1534 resType.getAsString(), op->getSourceRange());
1535 else {
1536 Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement,
1537 resType.getAsString(), op->getSourceRange());
1538 return QualType();
1539 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001540 }
Steve Naroffdd10e022007-08-23 21:37:33 +00001541 // At this point, we know we have a real, complex or pointer type.
1542 // Now make sure the operand is a modifiable lvalue.
Reid Spencer5f016e22007-07-11 17:01:13 +00001543 Expr::isModifiableLvalueResult mlval = op->isModifiableLvalue();
1544 if (mlval != Expr::MLV_Valid) {
1545 // FIXME: emit a more precise diagnostic...
1546 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_incr_decr,
1547 op->getSourceRange());
1548 return QualType();
1549 }
1550 return resType;
1551}
1552
1553/// getPrimaryDeclaration - Helper function for CheckAddressOfOperand().
1554/// This routine allows us to typecheck complex/recursive expressions
1555/// where the declaration is needed for type checking. Here are some
1556/// examples: &s.xx, &s.zz[1].yy, &(1+2), &(XX), &"123"[2].
1557static Decl *getPrimaryDeclaration(Expr *e) {
1558 switch (e->getStmtClass()) {
1559 case Stmt::DeclRefExprClass:
1560 return cast<DeclRefExpr>(e)->getDecl();
1561 case Stmt::MemberExprClass:
Chris Lattnerf82228f2007-11-16 17:46:48 +00001562 // Fields cannot be declared with a 'register' storage class.
1563 // &X->f is always ok, even if X is declared register.
1564 if (cast<MemberExpr>(e)->isArrow())
1565 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001566 return getPrimaryDeclaration(cast<MemberExpr>(e)->getBase());
1567 case Stmt::ArraySubscriptExprClass:
Chris Lattnerf82228f2007-11-16 17:46:48 +00001568 // &X[4] and &4[X] is invalid if X is invalid.
Reid Spencer5f016e22007-07-11 17:01:13 +00001569 return getPrimaryDeclaration(cast<ArraySubscriptExpr>(e)->getBase());
Reid Spencer5f016e22007-07-11 17:01:13 +00001570 case Stmt::UnaryOperatorClass:
1571 return getPrimaryDeclaration(cast<UnaryOperator>(e)->getSubExpr());
1572 case Stmt::ParenExprClass:
1573 return getPrimaryDeclaration(cast<ParenExpr>(e)->getSubExpr());
Chris Lattnerf82228f2007-11-16 17:46:48 +00001574 case Stmt::ImplicitCastExprClass:
1575 // &X[4] when X is an array, has an implicit cast from array to pointer.
1576 return getPrimaryDeclaration(cast<ImplicitCastExpr>(e)->getSubExpr());
Reid Spencer5f016e22007-07-11 17:01:13 +00001577 default:
1578 return 0;
1579 }
1580}
1581
1582/// CheckAddressOfOperand - The operand of & must be either a function
1583/// designator or an lvalue designating an object. If it is an lvalue, the
1584/// object cannot be declared with storage class register or be a bit field.
1585/// Note: The usual conversions are *not* applied to the operand of the &
1586/// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue.
1587QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) {
1588 Decl *dcl = getPrimaryDeclaration(op);
1589 Expr::isLvalueResult lval = op->isLvalue();
1590
1591 if (lval != Expr::LV_Valid) { // C99 6.5.3.2p1
Chris Lattnerf82228f2007-11-16 17:46:48 +00001592 if (!dcl || !isa<FunctionDecl>(dcl)) {// allow function designators
1593 // FIXME: emit more specific diag...
Reid Spencer5f016e22007-07-11 17:01:13 +00001594 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof,
1595 op->getSourceRange());
1596 return QualType();
1597 }
1598 } else if (dcl) {
1599 // We have an lvalue with a decl. Make sure the decl is not declared
1600 // with the register storage-class specifier.
1601 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) {
1602 if (vd->getStorageClass() == VarDecl::Register) {
1603 Diag(OpLoc, diag::err_typecheck_address_of_register,
1604 op->getSourceRange());
1605 return QualType();
1606 }
1607 } else
1608 assert(0 && "Unknown/unexpected decl type");
1609
1610 // FIXME: add check for bitfields!
1611 }
1612 // If the operand has type "type", the result has type "pointer to type".
1613 return Context.getPointerType(op->getType());
1614}
1615
1616QualType Sema::CheckIndirectionOperand(Expr *op, SourceLocation OpLoc) {
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001617 UsualUnaryConversions(op);
1618 QualType qType = op->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001619
Chris Lattnerbefee482007-07-31 16:53:04 +00001620 if (const PointerType *PT = qType->getAsPointerType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001621 QualType ptype = PT->getPointeeType();
1622 // C99 6.5.3.2p4. "if it points to an object,...".
1623 if (ptype->isIncompleteType()) { // An incomplete type is not an object
1624 // GCC compat: special case 'void *' (treat as warning).
1625 if (ptype->isVoidType()) {
1626 Diag(OpLoc, diag::ext_typecheck_deref_ptr_to_void,
1627 qType.getAsString(), op->getSourceRange());
1628 } else {
1629 Diag(OpLoc, diag::err_typecheck_deref_incomplete_type,
1630 ptype.getAsString(), op->getSourceRange());
1631 return QualType();
1632 }
1633 }
1634 return ptype;
1635 }
1636 Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer,
1637 qType.getAsString(), op->getSourceRange());
1638 return QualType();
1639}
1640
1641static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode(
1642 tok::TokenKind Kind) {
1643 BinaryOperator::Opcode Opc;
1644 switch (Kind) {
1645 default: assert(0 && "Unknown binop!");
1646 case tok::star: Opc = BinaryOperator::Mul; break;
1647 case tok::slash: Opc = BinaryOperator::Div; break;
1648 case tok::percent: Opc = BinaryOperator::Rem; break;
1649 case tok::plus: Opc = BinaryOperator::Add; break;
1650 case tok::minus: Opc = BinaryOperator::Sub; break;
1651 case tok::lessless: Opc = BinaryOperator::Shl; break;
1652 case tok::greatergreater: Opc = BinaryOperator::Shr; break;
1653 case tok::lessequal: Opc = BinaryOperator::LE; break;
1654 case tok::less: Opc = BinaryOperator::LT; break;
1655 case tok::greaterequal: Opc = BinaryOperator::GE; break;
1656 case tok::greater: Opc = BinaryOperator::GT; break;
1657 case tok::exclaimequal: Opc = BinaryOperator::NE; break;
1658 case tok::equalequal: Opc = BinaryOperator::EQ; break;
1659 case tok::amp: Opc = BinaryOperator::And; break;
1660 case tok::caret: Opc = BinaryOperator::Xor; break;
1661 case tok::pipe: Opc = BinaryOperator::Or; break;
1662 case tok::ampamp: Opc = BinaryOperator::LAnd; break;
1663 case tok::pipepipe: Opc = BinaryOperator::LOr; break;
1664 case tok::equal: Opc = BinaryOperator::Assign; break;
1665 case tok::starequal: Opc = BinaryOperator::MulAssign; break;
1666 case tok::slashequal: Opc = BinaryOperator::DivAssign; break;
1667 case tok::percentequal: Opc = BinaryOperator::RemAssign; break;
1668 case tok::plusequal: Opc = BinaryOperator::AddAssign; break;
1669 case tok::minusequal: Opc = BinaryOperator::SubAssign; break;
1670 case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break;
1671 case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break;
1672 case tok::ampequal: Opc = BinaryOperator::AndAssign; break;
1673 case tok::caretequal: Opc = BinaryOperator::XorAssign; break;
1674 case tok::pipeequal: Opc = BinaryOperator::OrAssign; break;
1675 case tok::comma: Opc = BinaryOperator::Comma; break;
1676 }
1677 return Opc;
1678}
1679
1680static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode(
1681 tok::TokenKind Kind) {
1682 UnaryOperator::Opcode Opc;
1683 switch (Kind) {
1684 default: assert(0 && "Unknown unary op!");
1685 case tok::plusplus: Opc = UnaryOperator::PreInc; break;
1686 case tok::minusminus: Opc = UnaryOperator::PreDec; break;
1687 case tok::amp: Opc = UnaryOperator::AddrOf; break;
1688 case tok::star: Opc = UnaryOperator::Deref; break;
1689 case tok::plus: Opc = UnaryOperator::Plus; break;
1690 case tok::minus: Opc = UnaryOperator::Minus; break;
1691 case tok::tilde: Opc = UnaryOperator::Not; break;
1692 case tok::exclaim: Opc = UnaryOperator::LNot; break;
1693 case tok::kw_sizeof: Opc = UnaryOperator::SizeOf; break;
1694 case tok::kw___alignof: Opc = UnaryOperator::AlignOf; break;
1695 case tok::kw___real: Opc = UnaryOperator::Real; break;
1696 case tok::kw___imag: Opc = UnaryOperator::Imag; break;
1697 case tok::kw___extension__: Opc = UnaryOperator::Extension; break;
1698 }
1699 return Opc;
1700}
1701
1702// Binary Operators. 'Tok' is the token for the operator.
Steve Narofff69936d2007-09-16 03:34:24 +00001703Action::ExprResult Sema::ActOnBinOp(SourceLocation TokLoc, tok::TokenKind Kind,
Reid Spencer5f016e22007-07-11 17:01:13 +00001704 ExprTy *LHS, ExprTy *RHS) {
1705 BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind);
1706 Expr *lhs = (Expr *)LHS, *rhs = (Expr*)RHS;
1707
Steve Narofff69936d2007-09-16 03:34:24 +00001708 assert((lhs != 0) && "ActOnBinOp(): missing left expression");
1709 assert((rhs != 0) && "ActOnBinOp(): missing right expression");
Reid Spencer5f016e22007-07-11 17:01:13 +00001710
1711 QualType ResultTy; // Result type of the binary operator.
1712 QualType CompTy; // Computation type for compound assignments (e.g. '+=')
1713
1714 switch (Opc) {
1715 default:
1716 assert(0 && "Unknown binary expr!");
1717 case BinaryOperator::Assign:
1718 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, QualType());
1719 break;
1720 case BinaryOperator::Mul:
1721 case BinaryOperator::Div:
1722 ResultTy = CheckMultiplyDivideOperands(lhs, rhs, TokLoc);
1723 break;
1724 case BinaryOperator::Rem:
1725 ResultTy = CheckRemainderOperands(lhs, rhs, TokLoc);
1726 break;
1727 case BinaryOperator::Add:
1728 ResultTy = CheckAdditionOperands(lhs, rhs, TokLoc);
1729 break;
1730 case BinaryOperator::Sub:
1731 ResultTy = CheckSubtractionOperands(lhs, rhs, TokLoc);
1732 break;
1733 case BinaryOperator::Shl:
1734 case BinaryOperator::Shr:
1735 ResultTy = CheckShiftOperands(lhs, rhs, TokLoc);
1736 break;
1737 case BinaryOperator::LE:
1738 case BinaryOperator::LT:
1739 case BinaryOperator::GE:
1740 case BinaryOperator::GT:
Chris Lattnera5937dd2007-08-26 01:18:55 +00001741 ResultTy = CheckCompareOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001742 break;
1743 case BinaryOperator::EQ:
1744 case BinaryOperator::NE:
Chris Lattnera5937dd2007-08-26 01:18:55 +00001745 ResultTy = CheckCompareOperands(lhs, rhs, TokLoc, false);
Reid Spencer5f016e22007-07-11 17:01:13 +00001746 break;
1747 case BinaryOperator::And:
1748 case BinaryOperator::Xor:
1749 case BinaryOperator::Or:
1750 ResultTy = CheckBitwiseOperands(lhs, rhs, TokLoc);
1751 break;
1752 case BinaryOperator::LAnd:
1753 case BinaryOperator::LOr:
1754 ResultTy = CheckLogicalOperands(lhs, rhs, TokLoc);
1755 break;
1756 case BinaryOperator::MulAssign:
1757 case BinaryOperator::DivAssign:
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001758 CompTy = CheckMultiplyDivideOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001759 if (!CompTy.isNull())
1760 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1761 break;
1762 case BinaryOperator::RemAssign:
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001763 CompTy = CheckRemainderOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001764 if (!CompTy.isNull())
1765 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1766 break;
1767 case BinaryOperator::AddAssign:
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001768 CompTy = CheckAdditionOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001769 if (!CompTy.isNull())
1770 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1771 break;
1772 case BinaryOperator::SubAssign:
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001773 CompTy = CheckSubtractionOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001774 if (!CompTy.isNull())
1775 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1776 break;
1777 case BinaryOperator::ShlAssign:
1778 case BinaryOperator::ShrAssign:
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001779 CompTy = CheckShiftOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001780 if (!CompTy.isNull())
1781 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1782 break;
1783 case BinaryOperator::AndAssign:
1784 case BinaryOperator::XorAssign:
1785 case BinaryOperator::OrAssign:
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00001786 CompTy = CheckBitwiseOperands(lhs, rhs, TokLoc, true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001787 if (!CompTy.isNull())
1788 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1789 break;
1790 case BinaryOperator::Comma:
1791 ResultTy = CheckCommaOperands(lhs, rhs, TokLoc);
1792 break;
1793 }
1794 if (ResultTy.isNull())
1795 return true;
1796 if (CompTy.isNull())
Chris Lattner17d1b2a2007-08-28 18:36:55 +00001797 return new BinaryOperator(lhs, rhs, Opc, ResultTy, TokLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001798 else
Chris Lattner17d1b2a2007-08-28 18:36:55 +00001799 return new CompoundAssignOperator(lhs, rhs, Opc, ResultTy, CompTy, TokLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001800}
1801
1802// Unary Operators. 'Tok' is the token for the operator.
Steve Narofff69936d2007-09-16 03:34:24 +00001803Action::ExprResult Sema::ActOnUnaryOp(SourceLocation OpLoc, tok::TokenKind Op,
Reid Spencer5f016e22007-07-11 17:01:13 +00001804 ExprTy *input) {
1805 Expr *Input = (Expr*)input;
1806 UnaryOperator::Opcode Opc = ConvertTokenKindToUnaryOpcode(Op);
1807 QualType resultType;
1808 switch (Opc) {
1809 default:
1810 assert(0 && "Unimplemented unary expr!");
1811 case UnaryOperator::PreInc:
1812 case UnaryOperator::PreDec:
1813 resultType = CheckIncrementDecrementOperand(Input, OpLoc);
1814 break;
1815 case UnaryOperator::AddrOf:
1816 resultType = CheckAddressOfOperand(Input, OpLoc);
1817 break;
1818 case UnaryOperator::Deref:
1819 resultType = CheckIndirectionOperand(Input, OpLoc);
1820 break;
1821 case UnaryOperator::Plus:
1822 case UnaryOperator::Minus:
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001823 UsualUnaryConversions(Input);
1824 resultType = Input->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001825 if (!resultType->isArithmeticType()) // C99 6.5.3.3p1
1826 return Diag(OpLoc, diag::err_typecheck_unary_expr,
1827 resultType.getAsString());
1828 break;
1829 case UnaryOperator::Not: // bitwise complement
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001830 UsualUnaryConversions(Input);
1831 resultType = Input->getType();
Steve Naroff084f9ed2007-08-24 17:20:07 +00001832 // C99 6.5.3.3p1. We allow complex as a GCC extension.
1833 if (!resultType->isIntegerType()) {
1834 if (resultType->isComplexType())
1835 // C99 does not support '~' for complex conjugation.
1836 Diag(OpLoc, diag::ext_integer_complement_complex,
1837 resultType.getAsString());
1838 else
1839 return Diag(OpLoc, diag::err_typecheck_unary_expr,
1840 resultType.getAsString());
1841 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001842 break;
1843 case UnaryOperator::LNot: // logical negation
1844 // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5).
Steve Naroffc80b4ee2007-07-16 21:54:35 +00001845 DefaultFunctionArrayConversion(Input);
1846 resultType = Input->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001847 if (!resultType->isScalarType()) // C99 6.5.3.3p1
1848 return Diag(OpLoc, diag::err_typecheck_unary_expr,
1849 resultType.getAsString());
1850 // LNot always has type int. C99 6.5.3.3p5.
1851 resultType = Context.IntTy;
1852 break;
1853 case UnaryOperator::SizeOf:
1854 resultType = CheckSizeOfAlignOfOperand(Input->getType(), OpLoc, true);
1855 break;
1856 case UnaryOperator::AlignOf:
1857 resultType = CheckSizeOfAlignOfOperand(Input->getType(), OpLoc, false);
1858 break;
Chris Lattnerdbb36972007-08-24 21:16:53 +00001859 case UnaryOperator::Real:
Chris Lattnerdbb36972007-08-24 21:16:53 +00001860 case UnaryOperator::Imag:
Chris Lattner5d794252007-08-24 21:41:10 +00001861 resultType = CheckRealImagOperand(Input, OpLoc);
Chris Lattnerdbb36972007-08-24 21:16:53 +00001862 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00001863 case UnaryOperator::Extension:
Reid Spencer5f016e22007-07-11 17:01:13 +00001864 resultType = Input->getType();
1865 break;
1866 }
1867 if (resultType.isNull())
1868 return true;
1869 return new UnaryOperator(Input, Opc, resultType, OpLoc);
1870}
1871
Steve Naroff1b273c42007-09-16 14:56:35 +00001872/// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo".
1873Sema::ExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +00001874 SourceLocation LabLoc,
1875 IdentifierInfo *LabelII) {
1876 // Look up the record for this label identifier.
1877 LabelStmt *&LabelDecl = LabelMap[LabelII];
1878
1879 // If we haven't seen this label yet, create a forward reference.
1880 if (LabelDecl == 0)
1881 LabelDecl = new LabelStmt(LabLoc, LabelII, 0);
1882
1883 // Create the AST node. The address of a label always has type 'void*'.
Chris Lattner6481a572007-08-03 17:31:20 +00001884 return new AddrLabelExpr(OpLoc, LabLoc, LabelDecl,
1885 Context.getPointerType(Context.VoidTy));
Reid Spencer5f016e22007-07-11 17:01:13 +00001886}
1887
Steve Naroff1b273c42007-09-16 14:56:35 +00001888Sema::ExprResult Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtTy *substmt,
Chris Lattnerab18c4c2007-07-24 16:58:17 +00001889 SourceLocation RPLoc) { // "({..})"
1890 Stmt *SubStmt = static_cast<Stmt*>(substmt);
1891 assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!");
1892 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt);
1893
1894 // FIXME: there are a variety of strange constraints to enforce here, for
1895 // example, it is not possible to goto into a stmt expression apparently.
1896 // More semantic analysis is needed.
1897
1898 // FIXME: the last statement in the compount stmt has its value used. We
1899 // should not warn about it being unused.
1900
1901 // If there are sub stmts in the compound stmt, take the type of the last one
1902 // as the type of the stmtexpr.
1903 QualType Ty = Context.VoidTy;
1904
1905 if (!Compound->body_empty())
1906 if (Expr *LastExpr = dyn_cast<Expr>(Compound->body_back()))
1907 Ty = LastExpr->getType();
1908
1909 return new StmtExpr(Compound, Ty, LPLoc, RPLoc);
1910}
Steve Naroffd34e9152007-08-01 22:05:33 +00001911
Steve Naroff1b273c42007-09-16 14:56:35 +00001912Sema::ExprResult Sema::ActOnBuiltinOffsetOf(SourceLocation BuiltinLoc,
Chris Lattner73d0d4f2007-08-30 17:45:32 +00001913 SourceLocation TypeLoc,
1914 TypeTy *argty,
1915 OffsetOfComponent *CompPtr,
1916 unsigned NumComponents,
1917 SourceLocation RPLoc) {
1918 QualType ArgTy = QualType::getFromOpaquePtr(argty);
1919 assert(!ArgTy.isNull() && "Missing type argument!");
1920
1921 // We must have at least one component that refers to the type, and the first
1922 // one is known to be a field designator. Verify that the ArgTy represents
1923 // a struct/union/class.
1924 if (!ArgTy->isRecordType())
1925 return Diag(TypeLoc, diag::err_offsetof_record_type,ArgTy.getAsString());
1926
1927 // Otherwise, create a compound literal expression as the base, and
1928 // iteratively process the offsetof designators.
1929 Expr *Res = new CompoundLiteralExpr(ArgTy, 0);
1930
Chris Lattner9e2b75c2007-08-31 21:49:13 +00001931 // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a
1932 // GCC extension, diagnose them.
1933 if (NumComponents != 1)
1934 Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator,
1935 SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd));
1936
Chris Lattner73d0d4f2007-08-30 17:45:32 +00001937 for (unsigned i = 0; i != NumComponents; ++i) {
1938 const OffsetOfComponent &OC = CompPtr[i];
1939 if (OC.isBrackets) {
1940 // Offset of an array sub-field. TODO: Should we allow vector elements?
1941 const ArrayType *AT = Res->getType()->getAsArrayType();
1942 if (!AT) {
1943 delete Res;
1944 return Diag(OC.LocEnd, diag::err_offsetof_array_type,
1945 Res->getType().getAsString());
1946 }
1947
Chris Lattner704fe352007-08-30 17:59:59 +00001948 // FIXME: C++: Verify that operator[] isn't overloaded.
1949
Chris Lattner73d0d4f2007-08-30 17:45:32 +00001950 // C99 6.5.2.1p1
1951 Expr *Idx = static_cast<Expr*>(OC.U.E);
1952 if (!Idx->getType()->isIntegerType())
1953 return Diag(Idx->getLocStart(), diag::err_typecheck_subscript,
1954 Idx->getSourceRange());
1955
1956 Res = new ArraySubscriptExpr(Res, Idx, AT->getElementType(), OC.LocEnd);
1957 continue;
1958 }
1959
1960 const RecordType *RC = Res->getType()->getAsRecordType();
1961 if (!RC) {
1962 delete Res;
1963 return Diag(OC.LocEnd, diag::err_offsetof_record_type,
1964 Res->getType().getAsString());
1965 }
1966
1967 // Get the decl corresponding to this.
1968 RecordDecl *RD = RC->getDecl();
1969 FieldDecl *MemberDecl = RD->getMember(OC.U.IdentInfo);
1970 if (!MemberDecl)
1971 return Diag(BuiltinLoc, diag::err_typecheck_no_member,
1972 OC.U.IdentInfo->getName(),
1973 SourceRange(OC.LocStart, OC.LocEnd));
Chris Lattner704fe352007-08-30 17:59:59 +00001974
1975 // FIXME: C++: Verify that MemberDecl isn't a static field.
1976 // FIXME: Verify that MemberDecl isn't a bitfield.
1977
Chris Lattner73d0d4f2007-08-30 17:45:32 +00001978 Res = new MemberExpr(Res, false, MemberDecl, OC.LocEnd);
1979 }
1980
1981 return new UnaryOperator(Res, UnaryOperator::OffsetOf, Context.getSizeType(),
1982 BuiltinLoc);
1983}
1984
1985
Steve Naroff1b273c42007-09-16 14:56:35 +00001986Sema::ExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc,
Steve Naroffd34e9152007-08-01 22:05:33 +00001987 TypeTy *arg1, TypeTy *arg2,
1988 SourceLocation RPLoc) {
1989 QualType argT1 = QualType::getFromOpaquePtr(arg1);
1990 QualType argT2 = QualType::getFromOpaquePtr(arg2);
1991
1992 assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)");
1993
Chris Lattner73d0d4f2007-08-30 17:45:32 +00001994 return new TypesCompatibleExpr(Context.IntTy, BuiltinLoc, argT1, argT2,RPLoc);
Steve Naroffd34e9152007-08-01 22:05:33 +00001995}
1996
Steve Naroff1b273c42007-09-16 14:56:35 +00001997Sema::ExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, ExprTy *cond,
Steve Naroffd04fdd52007-08-03 21:21:27 +00001998 ExprTy *expr1, ExprTy *expr2,
1999 SourceLocation RPLoc) {
2000 Expr *CondExpr = static_cast<Expr*>(cond);
2001 Expr *LHSExpr = static_cast<Expr*>(expr1);
2002 Expr *RHSExpr = static_cast<Expr*>(expr2);
2003
2004 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)");
2005
2006 // The conditional expression is required to be a constant expression.
2007 llvm::APSInt condEval(32);
2008 SourceLocation ExpLoc;
2009 if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc))
2010 return Diag(ExpLoc, diag::err_typecheck_choose_expr_requires_constant,
2011 CondExpr->getSourceRange());
2012
2013 // If the condition is > zero, then the AST type is the same as the LSHExpr.
2014 QualType resType = condEval.getZExtValue() ? LHSExpr->getType() :
2015 RHSExpr->getType();
2016 return new ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, resType, RPLoc);
2017}
2018
Anders Carlsson7c50aca2007-10-15 20:28:48 +00002019Sema::ExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc,
2020 ExprTy *expr, TypeTy *type,
2021 SourceLocation RPLoc)
2022{
2023 Expr *E = static_cast<Expr*>(expr);
2024 QualType T = QualType::getFromOpaquePtr(type);
2025
2026 InitBuiltinVaListType();
2027
2028 Sema::AssignmentCheckResult result;
2029
2030 result = CheckAssignmentConstraints(Context.getBuiltinVaListType(),
2031 E->getType());
2032 if (result != Compatible)
2033 return Diag(E->getLocStart(),
2034 diag::err_first_argument_to_va_arg_not_of_type_va_list,
2035 E->getType().getAsString(),
2036 E->getSourceRange());
2037
2038 // FIXME: Warn if a non-POD type is passed in.
2039
2040 return new VAArgExpr(BuiltinLoc, E, T, RPLoc);
2041}
2042
Anders Carlsson55085182007-08-21 17:43:55 +00002043// TODO: Move this to SemaObjC.cpp
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00002044Sema::ExprResult Sema::ParseObjCStringLiteral(SourceLocation *AtLocs,
2045 ExprTy **Strings,
2046 unsigned NumStrings) {
2047
2048 // FIXME: This is passed in an ARRAY of strings which need to be concatenated.
2049 // Handle this case here. For now we just ignore all but the first one.
2050 SourceLocation AtLoc = AtLocs[0];
2051 StringLiteral* S = static_cast<StringLiteral *>(Strings[0]);
Anders Carlsson55085182007-08-21 17:43:55 +00002052
2053 if (CheckBuiltinCFStringArgument(S))
2054 return true;
2055
Steve Naroff21988912007-10-15 23:35:17 +00002056 if (Context.getObjcConstantStringInterface().isNull()) {
2057 // Initialize the constant string interface lazily. This assumes
2058 // the NSConstantString interface is seen in this translation unit.
2059 IdentifierInfo *NSIdent = &Context.Idents.get("NSConstantString");
2060 ScopedDecl *IFace = LookupScopedDecl(NSIdent, Decl::IDNS_Ordinary,
2061 SourceLocation(), TUScope);
Steve Naroffa1fe1172007-10-16 00:00:18 +00002062 ObjcInterfaceDecl *strIFace = dyn_cast_or_null<ObjcInterfaceDecl>(IFace);
Steve Naroff806a4eb2007-10-18 23:53:51 +00002063 if (!strIFace)
2064 return Diag(S->getLocStart(), diag::err_undef_interface,
2065 NSIdent->getName());
Steve Naroffa1fe1172007-10-16 00:00:18 +00002066 Context.setObjcConstantStringInterface(strIFace);
Steve Naroff21988912007-10-15 23:35:17 +00002067 }
2068 QualType t = Context.getObjcConstantStringInterface();
Anders Carlsson55085182007-08-21 17:43:55 +00002069 t = Context.getPointerType(t);
Steve Naroffbeaf2992007-11-03 11:27:19 +00002070 return new ObjCStringLiteral(S, t, AtLoc);
Anders Carlsson55085182007-08-21 17:43:55 +00002071}
Anders Carlssonf9bcf012007-08-22 15:14:15 +00002072
2073Sema::ExprResult Sema::ParseObjCEncodeExpression(SourceLocation AtLoc,
Chris Lattner674af952007-10-16 22:51:17 +00002074 SourceLocation EncodeLoc,
Anders Carlssonf9bcf012007-08-22 15:14:15 +00002075 SourceLocation LParenLoc,
2076 TypeTy *Ty,
2077 SourceLocation RParenLoc) {
2078 QualType EncodedType = QualType::getFromOpaquePtr(Ty);
2079
2080 QualType t = Context.getPointerType(Context.CharTy);
2081 return new ObjCEncodeExpr(t, EncodedType, AtLoc, RParenLoc);
2082}
Steve Naroff708391a2007-09-17 21:01:15 +00002083
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002084Sema::ExprResult Sema::ParseObjCSelectorExpression(Selector Sel,
2085 SourceLocation AtLoc,
Fariborz Jahanian2a35fa92007-10-16 23:21:02 +00002086 SourceLocation SelLoc,
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002087 SourceLocation LParenLoc,
2088 SourceLocation RParenLoc) {
Steve Naroff8ee529b2007-10-31 18:42:27 +00002089 QualType t = Context.getObjcSelType();
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002090 return new ObjCSelectorExpr(t, Sel, AtLoc, RParenLoc);
2091}
2092
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00002093Sema::ExprResult Sema::ParseObjCProtocolExpression(IdentifierInfo *ProtocolId,
2094 SourceLocation AtLoc,
2095 SourceLocation ProtoLoc,
2096 SourceLocation LParenLoc,
2097 SourceLocation RParenLoc) {
2098 ObjcProtocolDecl* PDecl = ObjcProtocols[ProtocolId];
2099 if (!PDecl) {
2100 Diag(ProtoLoc, diag::err_undeclared_protocol, ProtocolId->getName());
2101 return true;
2102 }
2103
Fariborz Jahanian66c5dfc2007-12-07 00:18:54 +00002104 QualType t = Context.getObjcProtoType();
Fariborz Jahanian3e27aa12007-10-18 22:59:23 +00002105 if (t.isNull())
2106 return true;
Fariborz Jahanian66c5dfc2007-12-07 00:18:54 +00002107 t = Context.getPointerType(t);
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00002108 return new ObjCProtocolExpr(t, PDecl, AtLoc, RParenLoc);
2109}
Steve Naroff81bfde92007-10-16 23:12:48 +00002110
2111bool Sema::CheckMessageArgumentTypes(Expr **Args, unsigned NumArgs,
2112 ObjcMethodDecl *Method) {
2113 bool anyIncompatibleArgs = false;
2114
2115 for (unsigned i = 0; i < NumArgs; i++) {
2116 Expr *argExpr = Args[i];
2117 assert(argExpr && "CheckMessageArgumentTypes(): missing expression");
2118
2119 QualType lhsType = Method->getParamDecl(i)->getType();
2120 QualType rhsType = argExpr->getType();
2121
2122 // If necessary, apply function/array conversion. C99 6.7.5.3p[7,8].
2123 if (const ArrayType *ary = lhsType->getAsArrayType())
2124 lhsType = Context.getPointerType(ary->getElementType());
2125 else if (lhsType->isFunctionType())
2126 lhsType = Context.getPointerType(lhsType);
2127
2128 AssignmentCheckResult result = CheckSingleAssignmentConstraints(lhsType,
2129 argExpr);
2130 if (Args[i] != argExpr) // The expression was converted.
2131 Args[i] = argExpr; // Make sure we store the converted expression.
2132 SourceLocation l = argExpr->getLocStart();
2133
2134 // decode the result (notice that AST's are still created for extensions).
2135 switch (result) {
2136 case Compatible:
2137 break;
2138 case PointerFromInt:
Steve Naroff529a4ad2007-11-27 17:58:44 +00002139 Diag(l, diag::ext_typecheck_sending_pointer_int,
2140 lhsType.getAsString(), rhsType.getAsString(),
2141 argExpr->getSourceRange());
Steve Naroff81bfde92007-10-16 23:12:48 +00002142 break;
2143 case IntFromPointer:
2144 Diag(l, diag::ext_typecheck_sending_pointer_int,
2145 lhsType.getAsString(), rhsType.getAsString(),
2146 argExpr->getSourceRange());
2147 break;
2148 case IncompatiblePointer:
2149 Diag(l, diag::ext_typecheck_sending_incompatible_pointer,
2150 rhsType.getAsString(), lhsType.getAsString(),
2151 argExpr->getSourceRange());
2152 break;
2153 case CompatiblePointerDiscardsQualifiers:
2154 Diag(l, diag::ext_typecheck_passing_discards_qualifiers,
2155 rhsType.getAsString(), lhsType.getAsString(),
2156 argExpr->getSourceRange());
2157 break;
2158 case Incompatible:
2159 Diag(l, diag::err_typecheck_sending_incompatible,
2160 rhsType.getAsString(), lhsType.getAsString(),
2161 argExpr->getSourceRange());
2162 anyIncompatibleArgs = true;
2163 }
2164 }
2165 return anyIncompatibleArgs;
2166}
2167
Steve Naroff68d331a2007-09-27 14:38:14 +00002168// ActOnClassMessage - used for both unary and keyword messages.
2169// ArgExprs is optional - if it is present, the number of expressions
2170// is obtained from Sel.getNumArgs().
2171Sema::ExprResult Sema::ActOnClassMessage(
Fariborz Jahanian0523aaf2007-11-12 20:13:27 +00002172 Scope *S,
Steve Naroff6a8a9a42007-10-02 20:01:56 +00002173 IdentifierInfo *receiverName, Selector Sel,
Steve Naroff49f109c2007-11-15 13:05:42 +00002174 SourceLocation lbrac, SourceLocation rbrac, ExprTy **Args, unsigned NumArgs)
Steve Naroff708391a2007-09-17 21:01:15 +00002175{
Steve Naroff6a8a9a42007-10-02 20:01:56 +00002176 assert(receiverName && "missing receiver class name");
Steve Naroff563477d2007-09-18 23:55:05 +00002177
Steve Naroff81bfde92007-10-16 23:12:48 +00002178 Expr **ArgExprs = reinterpret_cast<Expr **>(Args);
Fariborz Jahanian0523aaf2007-11-12 20:13:27 +00002179 ObjcInterfaceDecl* ClassDecl = 0;
2180 if (!strcmp(receiverName->getName(), "super") && CurMethodDecl) {
2181 ClassDecl = CurMethodDecl->getClassInterface()->getSuperClass();
Fariborz Jahaniancffff842007-11-12 20:20:37 +00002182 if (ClassDecl && CurMethodDecl->isInstance()) {
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00002183 // Synthesize a cast to the super class. This hack allows us to loosely
2184 // represent super without creating a special expression node.
Fariborz Jahanian0523aaf2007-11-12 20:13:27 +00002185 IdentifierInfo &II = Context.Idents.get("self");
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00002186 ExprResult ReceiverExpr = ActOnIdentifierExpr(S, lbrac, II, false);
Fariborz Jahanian0523aaf2007-11-12 20:13:27 +00002187 QualType superTy = Context.getObjcInterfaceType(ClassDecl);
2188 superTy = Context.getPointerType(superTy);
2189 ReceiverExpr = ActOnCastExpr(SourceLocation(), superTy.getAsOpaquePtr(),
2190 SourceLocation(), ReceiverExpr.Val);
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00002191 // We are really in an instance method, redirect.
Fariborz Jahanian0523aaf2007-11-12 20:13:27 +00002192 return ActOnInstanceMessage(ReceiverExpr.Val, Sel, lbrac, rbrac,
Steve Naroff49f109c2007-11-15 13:05:42 +00002193 Args, NumArgs);
Fariborz Jahanian0523aaf2007-11-12 20:13:27 +00002194 }
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00002195 // We are sending a message to 'super' within a class method. Do nothing,
2196 // the receiver will pass through as 'super' (how convenient:-).
2197 } else
Fariborz Jahanian0523aaf2007-11-12 20:13:27 +00002198 ClassDecl = getObjCInterfaceDecl(receiverName);
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00002199
2200 // FIXME: can ClassDecl ever be null?
Steve Naroff6a8a9a42007-10-02 20:01:56 +00002201 ObjcMethodDecl *Method = ClassDecl->lookupClassMethod(Sel);
Steve Naroff983df5b2007-10-16 20:39:36 +00002202 QualType returnType;
Steve Naroff945c0a82007-11-05 15:27:52 +00002203
2204 // Before we give up, check if the selector is an instance method.
2205 if (!Method)
2206 Method = ClassDecl->lookupInstanceMethod(Sel);
Steve Naroff983df5b2007-10-16 20:39:36 +00002207 if (!Method) {
2208 Diag(lbrac, diag::warn_method_not_found, std::string("+"), Sel.getName(),
2209 SourceRange(lbrac, rbrac));
Steve Naroff8ee529b2007-10-31 18:42:27 +00002210 returnType = Context.getObjcIdType();
Steve Naroff983df5b2007-10-16 20:39:36 +00002211 } else {
Steve Naroff3bea81b2007-10-16 21:36:54 +00002212 returnType = Method->getResultType();
Steve Naroff81bfde92007-10-16 23:12:48 +00002213 if (Sel.getNumArgs()) {
2214 if (CheckMessageArgumentTypes(ArgExprs, Sel.getNumArgs(), Method))
2215 return true;
2216 }
Steve Naroff983df5b2007-10-16 20:39:36 +00002217 }
Steve Naroffdb611d52007-11-03 16:37:59 +00002218 return new ObjCMessageExpr(receiverName, Sel, returnType, Method,
Steve Naroff49f109c2007-11-15 13:05:42 +00002219 lbrac, rbrac, ArgExprs, NumArgs);
Steve Naroff708391a2007-09-17 21:01:15 +00002220}
2221
Steve Naroff68d331a2007-09-27 14:38:14 +00002222// ActOnInstanceMessage - used for both unary and keyword messages.
2223// ArgExprs is optional - if it is present, the number of expressions
2224// is obtained from Sel.getNumArgs().
2225Sema::ExprResult Sema::ActOnInstanceMessage(
Steve Naroffbcfb06a2007-09-28 22:22:11 +00002226 ExprTy *receiver, Selector Sel,
Steve Naroff49f109c2007-11-15 13:05:42 +00002227 SourceLocation lbrac, SourceLocation rbrac, ExprTy **Args, unsigned NumArgs)
Steve Naroff68d331a2007-09-27 14:38:14 +00002228{
Steve Naroff563477d2007-09-18 23:55:05 +00002229 assert(receiver && "missing receiver expression");
2230
Steve Naroff81bfde92007-10-16 23:12:48 +00002231 Expr **ArgExprs = reinterpret_cast<Expr **>(Args);
Steve Naroff563477d2007-09-18 23:55:05 +00002232 Expr *RExpr = static_cast<Expr *>(receiver);
Steve Naroff6a8a9a42007-10-02 20:01:56 +00002233 QualType receiverType = RExpr->getType();
Steve Naroff3b950172007-10-10 21:53:07 +00002234 QualType returnType;
Steve Naroffdb611d52007-11-03 16:37:59 +00002235 ObjcMethodDecl *Method;
Steve Naroff3b950172007-10-10 21:53:07 +00002236
Steve Naroff7c249152007-11-11 17:52:25 +00002237 if (receiverType == Context.getObjcIdType() ||
2238 receiverType == Context.getObjcClassType()) {
Steve Naroffdb611d52007-11-03 16:37:59 +00002239 Method = InstanceMethodPool[Sel].Method;
Steve Naroff817da7c2007-11-13 04:10:18 +00002240 // If we didn't find an public method, look for a private one.
2241 if (!Method && CurMethodDecl) {
2242 NamedDecl *impCxt = CurMethodDecl->getMethodContext();
2243 if (ObjcImplementationDecl *IMD =
2244 dyn_cast<ObjcImplementationDecl>(impCxt)) {
2245 if (receiverType == Context.getObjcIdType())
2246 Method = IMD->lookupInstanceMethod(Sel);
2247 else
2248 Method = IMD->lookupClassMethod(Sel);
2249 } else if (ObjcCategoryImplDecl *CID =
2250 dyn_cast<ObjcCategoryImplDecl>(impCxt)) {
2251 if (receiverType == Context.getObjcIdType())
2252 Method = CID->lookupInstanceMethod(Sel);
2253 else
2254 Method = CID->lookupClassMethod(Sel);
2255 }
2256 }
Steve Naroff983df5b2007-10-16 20:39:36 +00002257 if (!Method) {
2258 Diag(lbrac, diag::warn_method_not_found, std::string("-"), Sel.getName(),
2259 SourceRange(lbrac, rbrac));
Steve Naroff8ee529b2007-10-31 18:42:27 +00002260 returnType = Context.getObjcIdType();
Steve Naroff983df5b2007-10-16 20:39:36 +00002261 } else {
Steve Naroff3bea81b2007-10-16 21:36:54 +00002262 returnType = Method->getResultType();
Steve Naroff81bfde92007-10-16 23:12:48 +00002263 if (Sel.getNumArgs())
2264 if (CheckMessageArgumentTypes(ArgExprs, Sel.getNumArgs(), Method))
2265 return true;
Steve Naroff983df5b2007-10-16 20:39:36 +00002266 }
Steve Naroff3b950172007-10-10 21:53:07 +00002267 } else {
Chris Lattner22b73ba2007-10-10 23:42:28 +00002268 // FIXME (snaroff): checking in this code from Patrick. Needs to be
2269 // revisited. how do we get the ClassDecl from the receiver expression?
Steve Naroff3b950172007-10-10 21:53:07 +00002270 while (receiverType->isPointerType()) {
Chris Lattner22b73ba2007-10-10 23:42:28 +00002271 PointerType *pointerType =
2272 static_cast<PointerType*>(receiverType.getTypePtr());
Steve Naroff3b950172007-10-10 21:53:07 +00002273 receiverType = pointerType->getPointeeType();
2274 }
Fariborz Jahanian7dd82832007-12-07 21:21:21 +00002275 ObjcInterfaceDecl* ClassDecl;
2276 if (ObjcQualifiedInterfaceType *QIT =
2277 dyn_cast<ObjcQualifiedInterfaceType>(receiverType)) {
2278 ObjcInterfaceType * OITypePtr = QIT->getInterfaceType();
2279
2280 ClassDecl = OITypePtr->getDecl();
2281 Method = ClassDecl->lookupInstanceMethod(Sel);
2282 if (!Method) {
2283 // search protocols
2284 for (unsigned i = 0; i < QIT->getNumProtocols(); i++) {
2285 ObjcProtocolDecl *PDecl = QIT->getProtocols(i);
2286 if (PDecl && (Method = PDecl->lookupInstanceMethod(Sel)))
2287 break;
2288 }
2289 }
2290 }
2291 else {
2292 assert(ObjcInterfaceType::classof(receiverType.getTypePtr()) &&
2293 "bad receiver type");
2294 ClassDecl = static_cast<ObjcInterfaceType*>(
2295 receiverType.getTypePtr())->getDecl();
2296 // FIXME: consider using InstanceMethodPool, since it will be faster
2297 // than the following method (which can do *many* linear searches). The
2298 // idea is to add class info to InstanceMethodPool...
2299 Method = ClassDecl->lookupInstanceMethod(Sel);
2300 }
Steve Naroff983df5b2007-10-16 20:39:36 +00002301 if (!Method) {
Steve Naroffc43d8682007-11-11 00:10:47 +00002302 // If we have an implementation in scope, check "private" methods.
2303 if (ObjcImplementationDecl *ImpDecl =
2304 ObjcImplementations[ClassDecl->getIdentifier()])
2305 Method = ImpDecl->lookupInstanceMethod(Sel);
Steve Naroff9a4ad372007-12-11 03:38:03 +00002306 // If we still haven't found a method, look in the global pool. This
2307 // behavior isn't very desirable, however we need it for GCC compatibility.
Steve Naroff9feba022007-12-07 20:41:14 +00002308 if (!Method)
2309 Method = InstanceMethodPool[Sel].Method;
Steve Naroffc43d8682007-11-11 00:10:47 +00002310 }
2311 if (!Method) {
Steve Naroff983df5b2007-10-16 20:39:36 +00002312 Diag(lbrac, diag::warn_method_not_found, std::string("-"), Sel.getName(),
2313 SourceRange(lbrac, rbrac));
Steve Naroff8ee529b2007-10-31 18:42:27 +00002314 returnType = Context.getObjcIdType();
Steve Naroff983df5b2007-10-16 20:39:36 +00002315 } else {
Steve Naroff3bea81b2007-10-16 21:36:54 +00002316 returnType = Method->getResultType();
Steve Naroff81bfde92007-10-16 23:12:48 +00002317 if (Sel.getNumArgs())
2318 if (CheckMessageArgumentTypes(ArgExprs, Sel.getNumArgs(), Method))
2319 return true;
Steve Naroff983df5b2007-10-16 20:39:36 +00002320 }
Steve Naroff6a8a9a42007-10-02 20:01:56 +00002321 }
Steve Naroffdb611d52007-11-03 16:37:59 +00002322 return new ObjCMessageExpr(RExpr, Sel, returnType, Method, lbrac, rbrac,
Steve Naroff49f109c2007-11-15 13:05:42 +00002323 ArgExprs, NumArgs);
Steve Naroff708391a2007-09-17 21:01:15 +00002324}