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