blob: 896b318d5df2ea7cad4c31188830efbedc5ba75e [file] [log] [blame]
Chris Lattner4b009652007-07-25 00:24:17 +00001//===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for expressions.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
15#include "clang/AST/ASTContext.h"
16#include "clang/AST/Decl.h"
Steve Narofffa465d12007-10-02 20:01:56 +000017#include "clang/AST/DeclObjC.h"
Chris Lattner4b009652007-07-25 00:24:17 +000018#include "clang/AST/Expr.h"
Steve Naroffc39ca262007-09-18 23:55:05 +000019#include "clang/Parse/DeclSpec.h"
Chris Lattner4b009652007-07-25 00:24:17 +000020#include "clang/Lex/Preprocessor.h"
21#include "clang/Lex/LiteralSupport.h"
22#include "clang/Basic/SourceManager.h"
23#include "clang/Basic/Diagnostic.h"
24#include "clang/Basic/LangOptions.h"
25#include "clang/Basic/TargetInfo.h"
26#include "llvm/ADT/SmallString.h"
Chris Lattner2e64c072007-08-10 20:18:51 +000027#include "llvm/ADT/StringExtras.h"
Chris Lattner4b009652007-07-25 00:24:17 +000028using namespace clang;
29
Steve Naroff87d58b42007-09-16 03:34:24 +000030/// ActOnStringLiteral - The specified tokens were lexed as pasted string
Chris Lattner4b009652007-07-25 00:24:17 +000031/// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string
32/// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from
33/// multiple tokens. However, the common case is that StringToks points to one
34/// string.
35///
36Action::ExprResult
Steve Naroff87d58b42007-09-16 03:34:24 +000037Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) {
Chris Lattner4b009652007-07-25 00:24:17 +000038 assert(NumStringToks && "Must have at least one string!");
39
40 StringLiteralParser Literal(StringToks, NumStringToks, PP, Context.Target);
41 if (Literal.hadError)
42 return ExprResult(true);
43
44 llvm::SmallVector<SourceLocation, 4> StringTokLocs;
45 for (unsigned i = 0; i != NumStringToks; ++i)
46 StringTokLocs.push_back(StringToks[i].getLocation());
47
48 // FIXME: handle wchar_t
Anders Carlsson55bfe0d2007-10-15 02:50:23 +000049 QualType t;
50
51 if (Literal.Pascal)
52 t = Context.getPointerType(Context.UnsignedCharTy);
53 else
54 t = Context.getPointerType(Context.CharTy);
55
56 if (Literal.Pascal && Literal.GetStringLength() > 256)
57 return Diag(StringToks[0].getLocation(), diag::err_pascal_string_too_long,
58 SourceRange(StringToks[0].getLocation(),
59 StringToks[NumStringToks-1].getLocation()));
Chris Lattner4b009652007-07-25 00:24:17 +000060
61 // Pass &StringTokLocs[0], StringTokLocs.size() to factory!
62 return new StringLiteral(Literal.GetString(), Literal.GetStringLength(),
Anders Carlsson55bfe0d2007-10-15 02:50:23 +000063 Literal.AnyWide, t,
64 StringToks[0].getLocation(),
Chris Lattner4b009652007-07-25 00:24:17 +000065 StringToks[NumStringToks-1].getLocation());
66}
67
68
Steve Naroff0acc9c92007-09-15 18:49:24 +000069/// ActOnIdentifierExpr - The parser read an identifier in expression context,
Chris Lattner4b009652007-07-25 00:24:17 +000070/// validate it per-C99 6.5.1. HasTrailingLParen indicates whether this
71/// identifier is used in an function call context.
Steve Naroff0acc9c92007-09-15 18:49:24 +000072Sema::ExprResult Sema::ActOnIdentifierExpr(Scope *S, SourceLocation Loc,
Chris Lattner4b009652007-07-25 00:24:17 +000073 IdentifierInfo &II,
74 bool HasTrailingLParen) {
75 // Could be enum-constant or decl.
Steve Narofff0c31dd2007-09-16 16:16:00 +000076 ScopedDecl *D = LookupScopedDecl(&II, Decl::IDNS_Ordinary, Loc, S);
Chris Lattner4b009652007-07-25 00:24:17 +000077 if (D == 0) {
78 // Otherwise, this could be an implicitly declared function reference (legal
79 // in C90, extension in C99).
80 if (HasTrailingLParen &&
81 // Not in C++.
82 !getLangOptions().CPlusPlus)
83 D = ImplicitlyDefineFunction(Loc, II, S);
84 else {
85 // If this name wasn't predeclared and if this is not a function call,
86 // diagnose the problem.
87 return Diag(Loc, diag::err_undeclared_var_use, II.getName());
88 }
89 }
Steve Naroff91b03f72007-08-28 03:03:08 +000090 if (ValueDecl *VD = dyn_cast<ValueDecl>(D)) {
Steve Naroffcae537d2007-08-28 18:45:29 +000091 // Only create DeclRefExpr's for valid Decl's.
Steve Naroffd1ad6ae2007-08-28 20:14:24 +000092 if (VD->isInvalidDecl())
Steve Naroff91b03f72007-08-28 03:03:08 +000093 return true;
Chris Lattner4b009652007-07-25 00:24:17 +000094 return new DeclRefExpr(VD, VD->getType(), Loc);
Steve Naroff91b03f72007-08-28 03:03:08 +000095 }
Chris Lattner4b009652007-07-25 00:24:17 +000096 if (isa<TypedefDecl>(D))
97 return Diag(Loc, diag::err_unexpected_typedef, II.getName());
98
99 assert(0 && "Invalid decl");
100 abort();
101}
102
Steve Naroff87d58b42007-09-16 03:34:24 +0000103Sema::ExprResult Sema::ActOnPreDefinedExpr(SourceLocation Loc,
Chris Lattner4b009652007-07-25 00:24:17 +0000104 tok::TokenKind Kind) {
105 PreDefinedExpr::IdentType IT;
106
107 switch (Kind) {
108 default:
109 assert(0 && "Unknown simple primary expr!");
110 case tok::kw___func__: // primary-expression: __func__ [C99 6.4.2.2]
111 IT = PreDefinedExpr::Func;
112 break;
113 case tok::kw___FUNCTION__: // primary-expression: __FUNCTION__ [GNU]
114 IT = PreDefinedExpr::Function;
115 break;
116 case tok::kw___PRETTY_FUNCTION__: // primary-expression: __P..Y_F..N__ [GNU]
117 IT = PreDefinedExpr::PrettyFunction;
118 break;
119 }
120
121 // Pre-defined identifiers are always of type char *.
122 return new PreDefinedExpr(Loc, Context.getPointerType(Context.CharTy), IT);
123}
124
Steve Naroff87d58b42007-09-16 03:34:24 +0000125Sema::ExprResult Sema::ActOnCharacterConstant(const Token &Tok) {
Chris Lattner4b009652007-07-25 00:24:17 +0000126 llvm::SmallString<16> CharBuffer;
127 CharBuffer.resize(Tok.getLength());
128 const char *ThisTokBegin = &CharBuffer[0];
129 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
130
131 CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
132 Tok.getLocation(), PP);
133 if (Literal.hadError())
134 return ExprResult(true);
135 return new CharacterLiteral(Literal.getValue(), Context.IntTy,
136 Tok.getLocation());
137}
138
Steve Naroff87d58b42007-09-16 03:34:24 +0000139Action::ExprResult Sema::ActOnNumericConstant(const Token &Tok) {
Chris Lattner4b009652007-07-25 00:24:17 +0000140 // fast path for a single digit (which is quite common). A single digit
141 // cannot have a trigraph, escaped newline, radix prefix, or type suffix.
142 if (Tok.getLength() == 1) {
143 const char *t = PP.getSourceManager().getCharacterData(Tok.getLocation());
144
Chris Lattner3496d522007-09-04 02:45:27 +0000145 unsigned IntSize = static_cast<unsigned>(
146 Context.getTypeSize(Context.IntTy, Tok.getLocation()));
Chris Lattner4b009652007-07-25 00:24:17 +0000147 return ExprResult(new IntegerLiteral(llvm::APInt(IntSize, *t-'0'),
148 Context.IntTy,
149 Tok.getLocation()));
150 }
151 llvm::SmallString<512> IntegerBuffer;
152 IntegerBuffer.resize(Tok.getLength());
153 const char *ThisTokBegin = &IntegerBuffer[0];
154
155 // Get the spelling of the token, which eliminates trigraphs, etc.
156 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
157 NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
158 Tok.getLocation(), PP);
159 if (Literal.hadError)
160 return ExprResult(true);
161
Chris Lattner1de66eb2007-08-26 03:42:43 +0000162 Expr *Res;
163
164 if (Literal.isFloatingLiteral()) {
Chris Lattner858eece2007-09-22 18:29:59 +0000165 QualType Ty;
166 const llvm::fltSemantics *Format;
167 uint64_t Size; unsigned Align;
168
169 if (Literal.isFloat) {
170 Ty = Context.FloatTy;
171 Context.Target.getFloatInfo(Size, Align, Format, Tok.getLocation());
172 } else if (Literal.isLong) {
173 Ty = Context.LongDoubleTy;
174 Context.Target.getLongDoubleInfo(Size, Align, Format, Tok.getLocation());
175 } else {
176 Ty = Context.DoubleTy;
177 Context.Target.getDoubleInfo(Size, Align, Format, Tok.getLocation());
178 }
179
180 Res = new FloatingLiteral(Literal.GetFloatValue(*Format), Ty,
181 Tok.getLocation());
Chris Lattner1de66eb2007-08-26 03:42:43 +0000182 } else if (!Literal.isIntegerLiteral()) {
183 return ExprResult(true);
184 } else {
Chris Lattner4b009652007-07-25 00:24:17 +0000185 QualType t;
186
Neil Booth7421e9c2007-08-29 22:00:19 +0000187 // long long is a C99 feature.
188 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
Neil Booth9bd47082007-08-29 22:13:52 +0000189 Literal.isLongLong)
Neil Booth7421e9c2007-08-29 22:00:19 +0000190 Diag(Tok.getLocation(), diag::ext_longlong);
191
Chris Lattner4b009652007-07-25 00:24:17 +0000192 // Get the value in the widest-possible width.
193 llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(Tok.getLocation()), 0);
194
195 if (Literal.GetIntegerValue(ResultVal)) {
196 // If this value didn't fit into uintmax_t, warn and force to ull.
197 Diag(Tok.getLocation(), diag::warn_integer_too_large);
198 t = Context.UnsignedLongLongTy;
199 assert(Context.getTypeSize(t, Tok.getLocation()) ==
200 ResultVal.getBitWidth() && "long long is not intmax_t?");
201 } else {
202 // If this value fits into a ULL, try to figure out what else it fits into
203 // according to the rules of C99 6.4.4.1p5.
204
205 // Octal, Hexadecimal, and integers with a U suffix are allowed to
206 // be an unsigned int.
207 bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10;
208
209 // Check from smallest to largest, picking the smallest type we can.
Chris Lattner98540b62007-08-23 21:58:08 +0000210 if (!Literal.isLong && !Literal.isLongLong) {
211 // Are int/unsigned possibilities?
Chris Lattner3496d522007-09-04 02:45:27 +0000212 unsigned IntSize = static_cast<unsigned>(
213 Context.getTypeSize(Context.IntTy,Tok.getLocation()));
Chris Lattner4b009652007-07-25 00:24:17 +0000214 // Does it fit in a unsigned int?
215 if (ResultVal.isIntN(IntSize)) {
216 // Does it fit in a signed int?
217 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0)
218 t = Context.IntTy;
219 else if (AllowUnsigned)
220 t = Context.UnsignedIntTy;
221 }
222
223 if (!t.isNull())
224 ResultVal.trunc(IntSize);
225 }
226
227 // Are long/unsigned long possibilities?
228 if (t.isNull() && !Literal.isLongLong) {
Chris Lattner3496d522007-09-04 02:45:27 +0000229 unsigned LongSize = static_cast<unsigned>(
230 Context.getTypeSize(Context.LongTy, Tok.getLocation()));
Chris Lattner4b009652007-07-25 00:24:17 +0000231
232 // Does it fit in a unsigned long?
233 if (ResultVal.isIntN(LongSize)) {
234 // Does it fit in a signed long?
235 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0)
236 t = Context.LongTy;
237 else if (AllowUnsigned)
238 t = Context.UnsignedLongTy;
239 }
240 if (!t.isNull())
241 ResultVal.trunc(LongSize);
242 }
243
244 // Finally, check long long if needed.
245 if (t.isNull()) {
Chris Lattner3496d522007-09-04 02:45:27 +0000246 unsigned LongLongSize = static_cast<unsigned>(
247 Context.getTypeSize(Context.LongLongTy, Tok.getLocation()));
Chris Lattner4b009652007-07-25 00:24:17 +0000248
249 // Does it fit in a unsigned long long?
250 if (ResultVal.isIntN(LongLongSize)) {
251 // Does it fit in a signed long long?
252 if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0)
253 t = Context.LongLongTy;
254 else if (AllowUnsigned)
255 t = Context.UnsignedLongLongTy;
256 }
257 }
258
259 // If we still couldn't decide a type, we probably have something that
260 // does not fit in a signed long long, but has no U suffix.
261 if (t.isNull()) {
262 Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed);
263 t = Context.UnsignedLongLongTy;
264 }
265 }
266
Chris Lattner1de66eb2007-08-26 03:42:43 +0000267 Res = new IntegerLiteral(ResultVal, t, Tok.getLocation());
Chris Lattner4b009652007-07-25 00:24:17 +0000268 }
Chris Lattner1de66eb2007-08-26 03:42:43 +0000269
270 // If this is an imaginary literal, create the ImaginaryLiteral wrapper.
271 if (Literal.isImaginary)
272 Res = new ImaginaryLiteral(Res, Context.getComplexType(Res->getType()));
273
274 return Res;
Chris Lattner4b009652007-07-25 00:24:17 +0000275}
276
Steve Naroff87d58b42007-09-16 03:34:24 +0000277Action::ExprResult Sema::ActOnParenExpr(SourceLocation L, SourceLocation R,
Chris Lattner4b009652007-07-25 00:24:17 +0000278 ExprTy *Val) {
279 Expr *e = (Expr *)Val;
Steve Naroff87d58b42007-09-16 03:34:24 +0000280 assert((e != 0) && "ActOnParenExpr() missing expr");
Chris Lattner4b009652007-07-25 00:24:17 +0000281 return new ParenExpr(L, R, e);
282}
283
284/// The UsualUnaryConversions() function is *not* called by this routine.
285/// See C99 6.3.2.1p[2-4] for more details.
286QualType Sema::CheckSizeOfAlignOfOperand(QualType exprType,
287 SourceLocation OpLoc, bool isSizeof) {
288 // C99 6.5.3.4p1:
289 if (isa<FunctionType>(exprType) && isSizeof)
290 // alignof(function) is allowed.
291 Diag(OpLoc, diag::ext_sizeof_function_type);
292 else if (exprType->isVoidType())
293 Diag(OpLoc, diag::ext_sizeof_void_type, isSizeof ? "sizeof" : "__alignof");
294 else if (exprType->isIncompleteType()) {
295 Diag(OpLoc, isSizeof ? diag::err_sizeof_incomplete_type :
296 diag::err_alignof_incomplete_type,
297 exprType.getAsString());
298 return QualType(); // error
299 }
300 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
301 return Context.getSizeType();
302}
303
304Action::ExprResult Sema::
Steve Naroff87d58b42007-09-16 03:34:24 +0000305ActOnSizeOfAlignOfTypeExpr(SourceLocation OpLoc, bool isSizeof,
Chris Lattner4b009652007-07-25 00:24:17 +0000306 SourceLocation LPLoc, TypeTy *Ty,
307 SourceLocation RPLoc) {
308 // If error parsing type, ignore.
309 if (Ty == 0) return true;
310
311 // Verify that this is a valid expression.
312 QualType ArgTy = QualType::getFromOpaquePtr(Ty);
313
314 QualType resultType = CheckSizeOfAlignOfOperand(ArgTy, OpLoc, isSizeof);
315
316 if (resultType.isNull())
317 return true;
318 return new SizeOfAlignOfTypeExpr(isSizeof, ArgTy, resultType, OpLoc, RPLoc);
319}
320
Chris Lattner5110ad52007-08-24 21:41:10 +0000321QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc) {
Chris Lattner03931a72007-08-24 21:16:53 +0000322 DefaultFunctionArrayConversion(V);
323
Chris Lattnera16e42d2007-08-26 05:39:26 +0000324 // These operators return the element type of a complex type.
Chris Lattner03931a72007-08-24 21:16:53 +0000325 if (const ComplexType *CT = V->getType()->getAsComplexType())
326 return CT->getElementType();
Chris Lattnera16e42d2007-08-26 05:39:26 +0000327
328 // Otherwise they pass through real integer and floating point types here.
329 if (V->getType()->isArithmeticType())
330 return V->getType();
331
332 // Reject anything else.
333 Diag(Loc, diag::err_realimag_invalid_type, V->getType().getAsString());
334 return QualType();
Chris Lattner03931a72007-08-24 21:16:53 +0000335}
336
337
Chris Lattner4b009652007-07-25 00:24:17 +0000338
Steve Naroff87d58b42007-09-16 03:34:24 +0000339Action::ExprResult Sema::ActOnPostfixUnaryOp(SourceLocation OpLoc,
Chris Lattner4b009652007-07-25 00:24:17 +0000340 tok::TokenKind Kind,
341 ExprTy *Input) {
342 UnaryOperator::Opcode Opc;
343 switch (Kind) {
344 default: assert(0 && "Unknown unary op!");
345 case tok::plusplus: Opc = UnaryOperator::PostInc; break;
346 case tok::minusminus: Opc = UnaryOperator::PostDec; break;
347 }
348 QualType result = CheckIncrementDecrementOperand((Expr *)Input, OpLoc);
349 if (result.isNull())
350 return true;
351 return new UnaryOperator((Expr *)Input, Opc, result, OpLoc);
352}
353
354Action::ExprResult Sema::
Steve Naroff87d58b42007-09-16 03:34:24 +0000355ActOnArraySubscriptExpr(ExprTy *Base, SourceLocation LLoc,
Chris Lattner4b009652007-07-25 00:24:17 +0000356 ExprTy *Idx, SourceLocation RLoc) {
357 Expr *LHSExp = static_cast<Expr*>(Base), *RHSExp = static_cast<Expr*>(Idx);
358
359 // Perform default conversions.
360 DefaultFunctionArrayConversion(LHSExp);
361 DefaultFunctionArrayConversion(RHSExp);
362
363 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType();
364
365 // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent
Chris Lattner0d9bcea2007-08-30 17:45:32 +0000366 // to the expression *((e1)+(e2)). This means the array "Base" may actually be
Chris Lattner4b009652007-07-25 00:24:17 +0000367 // in the subscript position. As a result, we need to derive the array base
368 // and index from the expression types.
369 Expr *BaseExpr, *IndexExpr;
370 QualType ResultType;
Chris Lattner7931f4a2007-07-31 16:53:04 +0000371 if (const PointerType *PTy = LHSTy->getAsPointerType()) {
Chris Lattner4b009652007-07-25 00:24:17 +0000372 BaseExpr = LHSExp;
373 IndexExpr = RHSExp;
374 // FIXME: need to deal with const...
375 ResultType = PTy->getPointeeType();
Chris Lattner7931f4a2007-07-31 16:53:04 +0000376 } else if (const PointerType *PTy = RHSTy->getAsPointerType()) {
Chris Lattner4b009652007-07-25 00:24:17 +0000377 // Handle the uncommon case of "123[Ptr]".
378 BaseExpr = RHSExp;
379 IndexExpr = LHSExp;
380 // FIXME: need to deal with const...
381 ResultType = PTy->getPointeeType();
Chris Lattnere35a1042007-07-31 19:29:30 +0000382 } else if (const VectorType *VTy = LHSTy->getAsVectorType()) {
383 BaseExpr = LHSExp; // vectors: V[123]
Chris Lattner4b009652007-07-25 00:24:17 +0000384 IndexExpr = RHSExp;
Steve Naroff89345522007-08-03 22:40:33 +0000385
386 // Component access limited to variables (reject vec4.rg[1]).
387 if (!isa<DeclRefExpr>(BaseExpr))
388 return Diag(LLoc, diag::err_ocuvector_component_access,
389 SourceRange(LLoc, RLoc));
Chris Lattner4b009652007-07-25 00:24:17 +0000390 // FIXME: need to deal with const...
391 ResultType = VTy->getElementType();
392 } else {
393 return Diag(LHSExp->getLocStart(), diag::err_typecheck_subscript_value,
394 RHSExp->getSourceRange());
395 }
396 // C99 6.5.2.1p1
397 if (!IndexExpr->getType()->isIntegerType())
398 return Diag(IndexExpr->getLocStart(), diag::err_typecheck_subscript,
399 IndexExpr->getSourceRange());
400
401 // C99 6.5.2.1p1: "shall have type "pointer to *object* type". In practice,
402 // the following check catches trying to index a pointer to a function (e.g.
403 // void (*)(int)). Functions are not objects in C99.
404 if (!ResultType->isObjectType())
405 return Diag(BaseExpr->getLocStart(),
406 diag::err_typecheck_subscript_not_object,
407 BaseExpr->getType().getAsString(), BaseExpr->getSourceRange());
408
409 return new ArraySubscriptExpr(LHSExp, RHSExp, ResultType, RLoc);
410}
411
Steve Naroff1b8a46c2007-07-27 22:15:19 +0000412QualType Sema::
413CheckOCUVectorComponent(QualType baseType, SourceLocation OpLoc,
414 IdentifierInfo &CompName, SourceLocation CompLoc) {
Chris Lattnere35a1042007-07-31 19:29:30 +0000415 const OCUVectorType *vecType = baseType->getAsOCUVectorType();
Steve Naroff1b8a46c2007-07-27 22:15:19 +0000416
417 // The vector accessor can't exceed the number of elements.
418 const char *compStr = CompName.getName();
419 if (strlen(compStr) > vecType->getNumElements()) {
420 Diag(OpLoc, diag::err_ocuvector_component_exceeds_length,
421 baseType.getAsString(), SourceRange(CompLoc));
422 return QualType();
423 }
424 // The component names must come from the same set.
Chris Lattner9096b792007-08-02 22:33:49 +0000425 if (vecType->getPointAccessorIdx(*compStr) != -1) {
426 do
427 compStr++;
428 while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1);
429 } else if (vecType->getColorAccessorIdx(*compStr) != -1) {
430 do
431 compStr++;
432 while (*compStr && vecType->getColorAccessorIdx(*compStr) != -1);
433 } else if (vecType->getTextureAccessorIdx(*compStr) != -1) {
434 do
435 compStr++;
436 while (*compStr && vecType->getTextureAccessorIdx(*compStr) != -1);
437 }
Steve Naroff1b8a46c2007-07-27 22:15:19 +0000438
439 if (*compStr) {
440 // We didn't get to the end of the string. This means the component names
441 // didn't come from the same set *or* we encountered an illegal name.
442 Diag(OpLoc, diag::err_ocuvector_component_name_illegal,
443 std::string(compStr,compStr+1), SourceRange(CompLoc));
444 return QualType();
445 }
446 // Each component accessor can't exceed the vector type.
447 compStr = CompName.getName();
448 while (*compStr) {
449 if (vecType->isAccessorWithinNumElements(*compStr))
450 compStr++;
451 else
452 break;
453 }
454 if (*compStr) {
455 // We didn't get to the end of the string. This means a component accessor
456 // exceeds the number of elements in the vector.
457 Diag(OpLoc, diag::err_ocuvector_component_exceeds_length,
458 baseType.getAsString(), SourceRange(CompLoc));
459 return QualType();
460 }
461 // The component accessor looks fine - now we need to compute the actual type.
462 // The vector type is implied by the component accessor. For example,
463 // vec4.b is a float, vec4.xy is a vec2, vec4.rgb is a vec3, etc.
464 unsigned CompSize = strlen(CompName.getName());
465 if (CompSize == 1)
466 return vecType->getElementType();
Steve Naroff82113e32007-07-29 16:33:31 +0000467
468 QualType VT = Context.getOCUVectorType(vecType->getElementType(), CompSize);
469 // Now look up the TypeDefDecl from the vector type. Without this,
470 // diagostics look bad. We want OCU vector types to appear built-in.
471 for (unsigned i = 0, e = OCUVectorDecls.size(); i != e; ++i) {
472 if (OCUVectorDecls[i]->getUnderlyingType() == VT)
473 return Context.getTypedefType(OCUVectorDecls[i]);
474 }
475 return VT; // should never get here (a typedef type should always be found).
Steve Naroff1b8a46c2007-07-27 22:15:19 +0000476}
477
Chris Lattner4b009652007-07-25 00:24:17 +0000478Action::ExprResult Sema::
Steve Naroff87d58b42007-09-16 03:34:24 +0000479ActOnMemberReferenceExpr(ExprTy *Base, SourceLocation OpLoc,
Chris Lattner4b009652007-07-25 00:24:17 +0000480 tok::TokenKind OpKind, SourceLocation MemberLoc,
481 IdentifierInfo &Member) {
Steve Naroff2cb66382007-07-26 03:11:44 +0000482 Expr *BaseExpr = static_cast<Expr *>(Base);
483 assert(BaseExpr && "no record expression");
Chris Lattner4b009652007-07-25 00:24:17 +0000484
Steve Naroff2cb66382007-07-26 03:11:44 +0000485 QualType BaseType = BaseExpr->getType();
486 assert(!BaseType.isNull() && "no type for member expression");
Chris Lattner4b009652007-07-25 00:24:17 +0000487
Chris Lattner4b009652007-07-25 00:24:17 +0000488 if (OpKind == tok::arrow) {
Chris Lattner7931f4a2007-07-31 16:53:04 +0000489 if (const PointerType *PT = BaseType->getAsPointerType())
Steve Naroff2cb66382007-07-26 03:11:44 +0000490 BaseType = PT->getPointeeType();
491 else
492 return Diag(OpLoc, diag::err_typecheck_member_reference_arrow,
493 SourceRange(MemberLoc));
Chris Lattner4b009652007-07-25 00:24:17 +0000494 }
Steve Naroff1b8a46c2007-07-27 22:15:19 +0000495 // The base type is either a record or an OCUVectorType.
Chris Lattnere35a1042007-07-31 19:29:30 +0000496 if (const RecordType *RTy = BaseType->getAsRecordType()) {
Steve Naroff2cb66382007-07-26 03:11:44 +0000497 RecordDecl *RDecl = RTy->getDecl();
498 if (RTy->isIncompleteType())
499 return Diag(OpLoc, diag::err_typecheck_incomplete_tag, RDecl->getName(),
500 BaseExpr->getSourceRange());
501 // The record definition is complete, now make sure the member is valid.
Steve Naroff1b8a46c2007-07-27 22:15:19 +0000502 FieldDecl *MemberDecl = RDecl->getMember(&Member);
503 if (!MemberDecl)
Steve Naroff2cb66382007-07-26 03:11:44 +0000504 return Diag(OpLoc, diag::err_typecheck_no_member, Member.getName(),
505 SourceRange(MemberLoc));
Steve Naroff1b8a46c2007-07-27 22:15:19 +0000506 return new MemberExpr(BaseExpr, OpKind==tok::arrow, MemberDecl, MemberLoc);
507 } else if (BaseType->isOCUVectorType() && OpKind == tok::period) {
Steve Naroff89345522007-08-03 22:40:33 +0000508 // Component access limited to variables (reject vec4.rg.g).
509 if (!isa<DeclRefExpr>(BaseExpr))
510 return Diag(OpLoc, diag::err_ocuvector_component_access,
511 SourceRange(MemberLoc));
Steve Naroff1b8a46c2007-07-27 22:15:19 +0000512 QualType ret = CheckOCUVectorComponent(BaseType, OpLoc, Member, MemberLoc);
513 if (ret.isNull())
514 return true;
Chris Lattnera0d03a72007-08-03 17:31:20 +0000515 return new OCUVectorElementExpr(ret, BaseExpr, Member, MemberLoc);
Steve Naroff2cb66382007-07-26 03:11:44 +0000516 } else
517 return Diag(OpLoc, diag::err_typecheck_member_reference_structUnion,
518 SourceRange(MemberLoc));
Chris Lattner4b009652007-07-25 00:24:17 +0000519}
520
Steve Naroff87d58b42007-09-16 03:34:24 +0000521/// ActOnCallExpr - Handle a call to Fn with the specified array of arguments.
Chris Lattner4b009652007-07-25 00:24:17 +0000522/// This provides the location of the left/right parens and a list of comma
523/// locations.
524Action::ExprResult Sema::
Steve Naroff87d58b42007-09-16 03:34:24 +0000525ActOnCallExpr(ExprTy *fn, SourceLocation LParenLoc,
Chris Lattner4b009652007-07-25 00:24:17 +0000526 ExprTy **args, unsigned NumArgsInCall,
527 SourceLocation *CommaLocs, SourceLocation RParenLoc) {
528 Expr *Fn = static_cast<Expr *>(fn);
529 Expr **Args = reinterpret_cast<Expr**>(args);
530 assert(Fn && "no function call expression");
531
532 UsualUnaryConversions(Fn);
533 QualType funcType = Fn->getType();
534
535 // C99 6.5.2.2p1 - "The expression that denotes the called function shall have
536 // type pointer to function".
Chris Lattner71225142007-07-31 21:27:01 +0000537 const PointerType *PT = funcType->getAsPointerType();
Chris Lattner4b009652007-07-25 00:24:17 +0000538 if (PT == 0)
539 return Diag(Fn->getLocStart(), diag::err_typecheck_call_not_function,
540 SourceRange(Fn->getLocStart(), RParenLoc));
541
Chris Lattner71225142007-07-31 21:27:01 +0000542 const FunctionType *funcT = PT->getPointeeType()->getAsFunctionType();
Chris Lattner4b009652007-07-25 00:24:17 +0000543 if (funcT == 0)
544 return Diag(Fn->getLocStart(), diag::err_typecheck_call_not_function,
545 SourceRange(Fn->getLocStart(), RParenLoc));
546
547 // If a prototype isn't declared, the parser implicitly defines a func decl
548 QualType resultType = funcT->getResultType();
549
550 if (const FunctionTypeProto *proto = dyn_cast<FunctionTypeProto>(funcT)) {
551 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by
552 // assignment, to the types of the corresponding parameter, ...
553
554 unsigned NumArgsInProto = proto->getNumArgs();
555 unsigned NumArgsToCheck = NumArgsInCall;
556
557 if (NumArgsInCall < NumArgsInProto)
558 Diag(RParenLoc, diag::err_typecheck_call_too_few_args,
559 Fn->getSourceRange());
560 else if (NumArgsInCall > NumArgsInProto) {
561 if (!proto->isVariadic()) {
562 Diag(Args[NumArgsInProto]->getLocStart(),
563 diag::err_typecheck_call_too_many_args, Fn->getSourceRange(),
564 SourceRange(Args[NumArgsInProto]->getLocStart(),
565 Args[NumArgsInCall-1]->getLocEnd()));
566 }
567 NumArgsToCheck = NumArgsInProto;
568 }
569 // Continue to check argument types (even if we have too few/many args).
570 for (unsigned i = 0; i < NumArgsToCheck; i++) {
571 Expr *argExpr = Args[i];
Steve Naroff87d58b42007-09-16 03:34:24 +0000572 assert(argExpr && "ActOnCallExpr(): missing argument expression");
Chris Lattner4b009652007-07-25 00:24:17 +0000573
574 QualType lhsType = proto->getArgType(i);
575 QualType rhsType = argExpr->getType();
576
Steve Naroff75644062007-07-25 20:45:33 +0000577 // If necessary, apply function/array conversion. C99 6.7.5.3p[7,8].
Chris Lattnere35a1042007-07-31 19:29:30 +0000578 if (const ArrayType *ary = lhsType->getAsArrayType())
Chris Lattner4b009652007-07-25 00:24:17 +0000579 lhsType = Context.getPointerType(ary->getElementType());
Steve Naroff75644062007-07-25 20:45:33 +0000580 else if (lhsType->isFunctionType())
Chris Lattner4b009652007-07-25 00:24:17 +0000581 lhsType = Context.getPointerType(lhsType);
582
583 AssignmentCheckResult result = CheckSingleAssignmentConstraints(lhsType,
584 argExpr);
Steve Naroff0f32f432007-08-24 22:33:52 +0000585 if (Args[i] != argExpr) // The expression was converted.
586 Args[i] = argExpr; // Make sure we store the converted expression.
Chris Lattner4b009652007-07-25 00:24:17 +0000587 SourceLocation l = argExpr->getLocStart();
588
589 // decode the result (notice that AST's are still created for extensions).
590 switch (result) {
591 case Compatible:
592 break;
593 case PointerFromInt:
594 // check for null pointer constant (C99 6.3.2.3p3)
595 if (!argExpr->isNullPointerConstant(Context)) {
596 Diag(l, diag::ext_typecheck_passing_pointer_int,
597 lhsType.getAsString(), rhsType.getAsString(),
598 Fn->getSourceRange(), argExpr->getSourceRange());
599 }
600 break;
601 case IntFromPointer:
602 Diag(l, diag::ext_typecheck_passing_pointer_int,
603 lhsType.getAsString(), rhsType.getAsString(),
604 Fn->getSourceRange(), argExpr->getSourceRange());
605 break;
606 case IncompatiblePointer:
607 Diag(l, diag::ext_typecheck_passing_incompatible_pointer,
608 rhsType.getAsString(), lhsType.getAsString(),
609 Fn->getSourceRange(), argExpr->getSourceRange());
610 break;
611 case CompatiblePointerDiscardsQualifiers:
612 Diag(l, diag::ext_typecheck_passing_discards_qualifiers,
613 rhsType.getAsString(), lhsType.getAsString(),
614 Fn->getSourceRange(), argExpr->getSourceRange());
615 break;
616 case Incompatible:
617 return Diag(l, diag::err_typecheck_passing_incompatible,
618 rhsType.getAsString(), lhsType.getAsString(),
619 Fn->getSourceRange(), argExpr->getSourceRange());
620 }
621 }
Steve Naroffdb65e052007-08-28 23:30:39 +0000622 if (NumArgsInCall > NumArgsInProto && proto->isVariadic()) {
623 // Promote the arguments (C99 6.5.2.2p7).
624 for (unsigned i = NumArgsInProto; i < NumArgsInCall; i++) {
625 Expr *argExpr = Args[i];
Steve Naroff87d58b42007-09-16 03:34:24 +0000626 assert(argExpr && "ActOnCallExpr(): missing argument expression");
Steve Naroffdb65e052007-08-28 23:30:39 +0000627
628 DefaultArgumentPromotion(argExpr);
629 if (Args[i] != argExpr) // The expression was converted.
630 Args[i] = argExpr; // Make sure we store the converted expression.
631 }
632 } else if (NumArgsInCall != NumArgsInProto && !proto->isVariadic()) {
633 // Even if the types checked, bail if the number of arguments don't match.
Chris Lattner4b009652007-07-25 00:24:17 +0000634 return true;
Steve Naroffdb65e052007-08-28 23:30:39 +0000635 }
636 } else if (isa<FunctionTypeNoProto>(funcT)) {
637 // Promote the arguments (C99 6.5.2.2p6).
638 for (unsigned i = 0; i < NumArgsInCall; i++) {
639 Expr *argExpr = Args[i];
Steve Naroff87d58b42007-09-16 03:34:24 +0000640 assert(argExpr && "ActOnCallExpr(): missing argument expression");
Steve Naroffdb65e052007-08-28 23:30:39 +0000641
642 DefaultArgumentPromotion(argExpr);
643 if (Args[i] != argExpr) // The expression was converted.
644 Args[i] = argExpr; // Make sure we store the converted expression.
645 }
Chris Lattner4b009652007-07-25 00:24:17 +0000646 }
Chris Lattner2e64c072007-08-10 20:18:51 +0000647 // Do special checking on direct calls to functions.
648 if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(Fn))
649 if (DeclRefExpr *DRExpr = dyn_cast<DeclRefExpr>(IcExpr->getSubExpr()))
650 if (FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRExpr->getDecl()))
Chris Lattner0d9bcea2007-08-30 17:45:32 +0000651 if (CheckFunctionCall(Fn, LParenLoc, RParenLoc, FDecl, Args,
652 NumArgsInCall))
Anders Carlssone7e7aa22007-08-17 05:31:46 +0000653 return true;
Chris Lattner2e64c072007-08-10 20:18:51 +0000654
Chris Lattner4b009652007-07-25 00:24:17 +0000655 return new CallExpr(Fn, Args, NumArgsInCall, resultType, RParenLoc);
656}
657
658Action::ExprResult Sema::
Steve Naroff87d58b42007-09-16 03:34:24 +0000659ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty,
Chris Lattner4b009652007-07-25 00:24:17 +0000660 SourceLocation RParenLoc, ExprTy *InitExpr) {
Steve Naroff87d58b42007-09-16 03:34:24 +0000661 assert((Ty != 0) && "ActOnCompoundLiteral(): missing type");
Chris Lattner4b009652007-07-25 00:24:17 +0000662 QualType literalType = QualType::getFromOpaquePtr(Ty);
663 // FIXME: put back this assert when initializers are worked out.
Steve Naroff87d58b42007-09-16 03:34:24 +0000664 //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression");
Chris Lattner4b009652007-07-25 00:24:17 +0000665 Expr *literalExpr = static_cast<Expr*>(InitExpr);
666
667 // FIXME: add semantic analysis (C99 6.5.2.5).
668 return new CompoundLiteralExpr(literalType, literalExpr);
669}
670
671Action::ExprResult Sema::
Steve Naroff87d58b42007-09-16 03:34:24 +0000672ActOnInitList(SourceLocation LBraceLoc, ExprTy **initlist, unsigned NumInit,
Anders Carlsson762b7c72007-08-31 04:56:16 +0000673 SourceLocation RBraceLoc) {
Steve Naroffe14e5542007-09-02 02:04:30 +0000674 Expr **InitList = reinterpret_cast<Expr**>(initlist);
Anders Carlsson762b7c72007-08-31 04:56:16 +0000675
Steve Naroff0acc9c92007-09-15 18:49:24 +0000676 // Semantic analysis for initializers is done by ActOnDeclarator() and
Steve Naroff1c9de712007-09-03 01:24:23 +0000677 // CheckInitializer() - it requires knowledge of the object being intialized.
Anders Carlsson762b7c72007-08-31 04:56:16 +0000678
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000679 InitListExpr *e = new InitListExpr(LBraceLoc, InitList, NumInit, RBraceLoc);
680 e->setType(Context.VoidTy); // FIXME: just a place holder for now.
681 return e;
Chris Lattner4b009652007-07-25 00:24:17 +0000682}
683
684Action::ExprResult Sema::
Steve Naroff87d58b42007-09-16 03:34:24 +0000685ActOnCastExpr(SourceLocation LParenLoc, TypeTy *Ty,
Chris Lattner4b009652007-07-25 00:24:17 +0000686 SourceLocation RParenLoc, ExprTy *Op) {
Steve Naroff87d58b42007-09-16 03:34:24 +0000687 assert((Ty != 0) && (Op != 0) && "ActOnCastExpr(): missing type or expr");
Chris Lattner4b009652007-07-25 00:24:17 +0000688
689 Expr *castExpr = static_cast<Expr*>(Op);
690 QualType castType = QualType::getFromOpaquePtr(Ty);
691
Steve Naroff68adb482007-08-31 00:32:44 +0000692 UsualUnaryConversions(castExpr);
693
Chris Lattner4b009652007-07-25 00:24:17 +0000694 // C99 6.5.4p2: the cast type needs to be void or scalar and the expression
695 // type needs to be scalar.
696 if (!castType->isScalarType() && !castType->isVoidType()) {
697 return Diag(LParenLoc, diag::err_typecheck_cond_expect_scalar,
698 castType.getAsString(), SourceRange(LParenLoc, RParenLoc));
699 }
700 if (!castExpr->getType()->isScalarType()) {
701 return Diag(castExpr->getLocStart(),
702 diag::err_typecheck_expect_scalar_operand,
703 castExpr->getType().getAsString(), castExpr->getSourceRange());
704 }
705 return new CastExpr(castType, castExpr, LParenLoc);
706}
707
708inline QualType Sema::CheckConditionalOperands( // C99 6.5.15
709 Expr *&cond, Expr *&lex, Expr *&rex, SourceLocation questionLoc) {
710 UsualUnaryConversions(cond);
711 UsualUnaryConversions(lex);
712 UsualUnaryConversions(rex);
713 QualType condT = cond->getType();
714 QualType lexT = lex->getType();
715 QualType rexT = rex->getType();
716
717 // first, check the condition.
718 if (!condT->isScalarType()) { // C99 6.5.15p2
719 Diag(cond->getLocStart(), diag::err_typecheck_cond_expect_scalar,
720 condT.getAsString());
721 return QualType();
722 }
723 // now check the two expressions.
724 if (lexT->isArithmeticType() && rexT->isArithmeticType()) { // C99 6.5.15p3,5
725 UsualArithmeticConversions(lex, rex);
726 return lex->getType();
727 }
Chris Lattner71225142007-07-31 21:27:01 +0000728 if (const RecordType *LHSRT = lexT->getAsRecordType()) { // C99 6.5.15p3
729 if (const RecordType *RHSRT = rexT->getAsRecordType()) {
730
Chris Lattner0d9bcea2007-08-30 17:45:32 +0000731 if (LHSRT->getDecl()->getIdentifier() ==RHSRT->getDecl()->getIdentifier())
Chris Lattner71225142007-07-31 21:27:01 +0000732 return lexT;
733
Chris Lattner4b009652007-07-25 00:24:17 +0000734 Diag(questionLoc, diag::err_typecheck_cond_incompatible_operands,
735 lexT.getAsString(), rexT.getAsString(),
736 lex->getSourceRange(), rex->getSourceRange());
737 return QualType();
738 }
739 }
740 // C99 6.5.15p3
741 if (lexT->isPointerType() && rex->isNullPointerConstant(Context))
742 return lexT;
743 if (rexT->isPointerType() && lex->isNullPointerConstant(Context))
744 return rexT;
745
Chris Lattner71225142007-07-31 21:27:01 +0000746 if (const PointerType *LHSPT = lexT->getAsPointerType()) { // C99 6.5.15p3,6
747 if (const PointerType *RHSPT = rexT->getAsPointerType()) {
748 // get the "pointed to" types
749 QualType lhptee = LHSPT->getPointeeType();
750 QualType rhptee = RHSPT->getPointeeType();
Chris Lattner4b009652007-07-25 00:24:17 +0000751
Chris Lattner71225142007-07-31 21:27:01 +0000752 // ignore qualifiers on void (C99 6.5.15p3, clause 6)
753 if (lhptee->isVoidType() &&
754 (rhptee->isObjectType() || rhptee->isIncompleteType()))
755 return lexT;
756 if (rhptee->isVoidType() &&
757 (lhptee->isObjectType() || lhptee->isIncompleteType()))
758 return rexT;
Chris Lattner4b009652007-07-25 00:24:17 +0000759
Steve Naroff85f0dc52007-10-15 20:41:53 +0000760 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
761 rhptee.getUnqualifiedType())) {
Chris Lattner71225142007-07-31 21:27:01 +0000762 Diag(questionLoc, diag::ext_typecheck_cond_incompatible_pointers,
763 lexT.getAsString(), rexT.getAsString(),
764 lex->getSourceRange(), rex->getSourceRange());
765 return lexT; // FIXME: this is an _ext - is this return o.k?
766 }
767 // The pointer types are compatible.
Chris Lattner0d9bcea2007-08-30 17:45:32 +0000768 // C99 6.5.15p6: If both operands are pointers to compatible types *or* to
769 // differently qualified versions of compatible types, the result type is
770 // a pointer to an appropriately qualified version of the *composite*
771 // type.
Chris Lattner71225142007-07-31 21:27:01 +0000772 return lexT; // FIXME: Need to return the composite type.
Chris Lattner4b009652007-07-25 00:24:17 +0000773 }
Chris Lattner4b009652007-07-25 00:24:17 +0000774 }
Chris Lattner71225142007-07-31 21:27:01 +0000775
Chris Lattner4b009652007-07-25 00:24:17 +0000776 if (lexT->isVoidType() && rexT->isVoidType()) // C99 6.5.15p3
777 return lexT;
778
779 Diag(questionLoc, diag::err_typecheck_cond_incompatible_operands,
780 lexT.getAsString(), rexT.getAsString(),
781 lex->getSourceRange(), rex->getSourceRange());
782 return QualType();
783}
784
Steve Naroff87d58b42007-09-16 03:34:24 +0000785/// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null
Chris Lattner4b009652007-07-25 00:24:17 +0000786/// in the case of a the GNU conditional expr extension.
Steve Naroff87d58b42007-09-16 03:34:24 +0000787Action::ExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc,
Chris Lattner4b009652007-07-25 00:24:17 +0000788 SourceLocation ColonLoc,
789 ExprTy *Cond, ExprTy *LHS,
790 ExprTy *RHS) {
791 Expr *CondExpr = (Expr *) Cond;
792 Expr *LHSExpr = (Expr *) LHS, *RHSExpr = (Expr *) RHS;
793 QualType result = CheckConditionalOperands(CondExpr, LHSExpr,
794 RHSExpr, QuestionLoc);
795 if (result.isNull())
796 return true;
797 return new ConditionalOperator(CondExpr, LHSExpr, RHSExpr, result);
798}
799
800// promoteExprToType - a helper function to ensure we create exactly one
801// ImplicitCastExpr. As a convenience (to the caller), we return the type.
802static void promoteExprToType(Expr *&expr, QualType type) {
803 if (ImplicitCastExpr *impCast = dyn_cast<ImplicitCastExpr>(expr))
804 impCast->setType(type);
805 else
806 expr = new ImplicitCastExpr(type, expr);
807 return;
808}
809
Steve Naroffdb65e052007-08-28 23:30:39 +0000810/// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that
811/// do not have a prototype. Integer promotions are performed on each
812/// argument, and arguments that have type float are promoted to double.
813void Sema::DefaultArgumentPromotion(Expr *&expr) {
814 QualType t = expr->getType();
815 assert(!t.isNull() && "DefaultArgumentPromotion - missing type");
816
817 if (t->isPromotableIntegerType()) // C99 6.3.1.1p2
818 promoteExprToType(expr, Context.IntTy);
819 if (t == Context.FloatTy)
820 promoteExprToType(expr, Context.DoubleTy);
821}
822
Chris Lattner4b009652007-07-25 00:24:17 +0000823/// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4).
824void Sema::DefaultFunctionArrayConversion(Expr *&e) {
825 QualType t = e->getType();
826 assert(!t.isNull() && "DefaultFunctionArrayConversion - missing type");
827
Chris Lattnerf0c4a0a2007-07-31 16:56:34 +0000828 if (const ReferenceType *ref = t->getAsReferenceType()) {
Chris Lattner4b009652007-07-25 00:24:17 +0000829 promoteExprToType(e, ref->getReferenceeType()); // C++ [expr]
830 t = e->getType();
831 }
832 if (t->isFunctionType())
833 promoteExprToType(e, Context.getPointerType(t));
Chris Lattnere35a1042007-07-31 19:29:30 +0000834 else if (const ArrayType *ary = t->getAsArrayType())
Chris Lattner4b009652007-07-25 00:24:17 +0000835 promoteExprToType(e, Context.getPointerType(ary->getElementType()));
836}
837
838/// UsualUnaryConversion - Performs various conversions that are common to most
839/// operators (C99 6.3). The conversions of array and function types are
840/// sometimes surpressed. For example, the array->pointer conversion doesn't
841/// apply if the array is an argument to the sizeof or address (&) operators.
842/// In these instances, this routine should *not* be called.
843void Sema::UsualUnaryConversions(Expr *&expr) {
844 QualType t = expr->getType();
845 assert(!t.isNull() && "UsualUnaryConversions - missing type");
846
Chris Lattnerf0c4a0a2007-07-31 16:56:34 +0000847 if (const ReferenceType *ref = t->getAsReferenceType()) {
Chris Lattner4b009652007-07-25 00:24:17 +0000848 promoteExprToType(expr, ref->getReferenceeType()); // C++ [expr]
849 t = expr->getType();
850 }
851 if (t->isPromotableIntegerType()) // C99 6.3.1.1p2
852 promoteExprToType(expr, Context.IntTy);
853 else
854 DefaultFunctionArrayConversion(expr);
855}
856
Chris Lattner0d9bcea2007-08-30 17:45:32 +0000857/// UsualArithmeticConversions - Performs various conversions that are common to
Chris Lattner4b009652007-07-25 00:24:17 +0000858/// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this
859/// routine returns the first non-arithmetic type found. The client is
860/// responsible for emitting appropriate error diagnostics.
Steve Naroff8f708362007-08-24 19:07:16 +0000861QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr,
862 bool isCompAssign) {
Steve Naroffb2f9f552007-08-25 19:54:59 +0000863 if (!isCompAssign) {
864 UsualUnaryConversions(lhsExpr);
865 UsualUnaryConversions(rhsExpr);
866 }
Chris Lattner4b009652007-07-25 00:24:17 +0000867 QualType lhs = lhsExpr->getType();
868 QualType rhs = rhsExpr->getType();
869
870 // If both types are identical, no conversion is needed.
871 if (lhs == rhs)
Steve Naroff8f708362007-08-24 19:07:16 +0000872 return lhs;
Chris Lattner4b009652007-07-25 00:24:17 +0000873
874 // If either side is a non-arithmetic type (e.g. a pointer), we are done.
875 // The caller can deal with this (e.g. pointer + int).
876 if (!lhs->isArithmeticType() || !rhs->isArithmeticType())
Steve Naroff8f708362007-08-24 19:07:16 +0000877 return lhs;
Chris Lattner4b009652007-07-25 00:24:17 +0000878
879 // At this point, we have two different arithmetic types.
880
881 // Handle complex types first (C99 6.3.1.8p1).
882 if (lhs->isComplexType() || rhs->isComplexType()) {
883 // if we have an integer operand, the result is the complex type.
884 if (rhs->isIntegerType()) { // convert the rhs to the lhs complex type.
Steve Naroff8f708362007-08-24 19:07:16 +0000885 if (!isCompAssign) promoteExprToType(rhsExpr, lhs);
886 return lhs;
Chris Lattner4b009652007-07-25 00:24:17 +0000887 }
888 if (lhs->isIntegerType()) { // convert the lhs to the rhs complex type.
Steve Naroff8f708362007-08-24 19:07:16 +0000889 if (!isCompAssign) promoteExprToType(lhsExpr, rhs);
890 return rhs;
Chris Lattner4b009652007-07-25 00:24:17 +0000891 }
Steve Naroff3cf497f2007-08-27 01:27:54 +0000892 // This handles complex/complex, complex/float, or float/complex.
893 // When both operands are complex, the shorter operand is converted to the
894 // type of the longer, and that is the type of the result. This corresponds
895 // to what is done when combining two real floating-point operands.
896 // The fun begins when size promotion occur across type domains.
897 // From H&S 6.3.4: When one operand is complex and the other is a real
898 // floating-point type, the less precise type is converted, within it's
899 // real or complex domain, to the precision of the other type. For example,
900 // when combining a "long double" with a "double _Complex", the
901 // "double _Complex" is promoted to "long double _Complex".
Steve Naroff45fc9822007-08-27 15:30:22 +0000902 int result = Context.compareFloatingType(lhs, rhs);
903
904 if (result > 0) { // The left side is bigger, convert rhs.
Steve Naroff3b565d62007-08-27 21:32:55 +0000905 rhs = Context.getFloatingTypeOfSizeWithinDomain(lhs, rhs);
906 if (!isCompAssign)
907 promoteExprToType(rhsExpr, rhs);
908 } else if (result < 0) { // The right side is bigger, convert lhs.
909 lhs = Context.getFloatingTypeOfSizeWithinDomain(rhs, lhs);
910 if (!isCompAssign)
911 promoteExprToType(lhsExpr, lhs);
912 }
913 // At this point, lhs and rhs have the same rank/size. Now, make sure the
914 // domains match. This is a requirement for our implementation, C99
915 // does not require this promotion.
916 if (lhs != rhs) { // Domains don't match, we have complex/float mix.
917 if (lhs->isRealFloatingType()) { // handle "double, _Complex double".
Steve Naroff3b6157f2007-08-27 21:43:43 +0000918 if (!isCompAssign)
919 promoteExprToType(lhsExpr, rhs);
920 return rhs;
Steve Naroff3b565d62007-08-27 21:32:55 +0000921 } else { // handle "_Complex double, double".
Steve Naroff3b6157f2007-08-27 21:43:43 +0000922 if (!isCompAssign)
923 promoteExprToType(rhsExpr, lhs);
924 return lhs;
Steve Naroff3b565d62007-08-27 21:32:55 +0000925 }
Chris Lattner4b009652007-07-25 00:24:17 +0000926 }
Steve Naroff3b6157f2007-08-27 21:43:43 +0000927 return lhs; // The domain/size match exactly.
Chris Lattner4b009652007-07-25 00:24:17 +0000928 }
929 // Now handle "real" floating types (i.e. float, double, long double).
930 if (lhs->isRealFloatingType() || rhs->isRealFloatingType()) {
931 // if we have an integer operand, the result is the real floating type.
932 if (rhs->isIntegerType()) { // convert rhs to the lhs floating point type.
Steve Naroff8f708362007-08-24 19:07:16 +0000933 if (!isCompAssign) promoteExprToType(rhsExpr, lhs);
934 return lhs;
Chris Lattner4b009652007-07-25 00:24:17 +0000935 }
936 if (lhs->isIntegerType()) { // convert lhs to the rhs floating point type.
Steve Naroff8f708362007-08-24 19:07:16 +0000937 if (!isCompAssign) promoteExprToType(lhsExpr, rhs);
938 return rhs;
Chris Lattner4b009652007-07-25 00:24:17 +0000939 }
940 // We have two real floating types, float/complex combos were handled above.
941 // Convert the smaller operand to the bigger result.
Steve Naroff45fc9822007-08-27 15:30:22 +0000942 int result = Context.compareFloatingType(lhs, rhs);
943
944 if (result > 0) { // convert the rhs
Steve Naroff8f708362007-08-24 19:07:16 +0000945 if (!isCompAssign) promoteExprToType(rhsExpr, lhs);
946 return lhs;
Chris Lattner4b009652007-07-25 00:24:17 +0000947 }
Steve Naroff45fc9822007-08-27 15:30:22 +0000948 if (result < 0) { // convert the lhs
949 if (!isCompAssign) promoteExprToType(lhsExpr, rhs); // convert the lhs
950 return rhs;
951 }
952 assert(0 && "Sema::UsualArithmeticConversions(): illegal float comparison");
Chris Lattner4b009652007-07-25 00:24:17 +0000953 }
954 // Finally, we have two differing integer types.
955 if (Context.maxIntegerType(lhs, rhs) == lhs) { // convert the rhs
Steve Naroff8f708362007-08-24 19:07:16 +0000956 if (!isCompAssign) promoteExprToType(rhsExpr, lhs);
957 return lhs;
Chris Lattner4b009652007-07-25 00:24:17 +0000958 }
Steve Naroff8f708362007-08-24 19:07:16 +0000959 if (!isCompAssign) promoteExprToType(lhsExpr, rhs); // convert the lhs
960 return rhs;
Chris Lattner4b009652007-07-25 00:24:17 +0000961}
962
963// CheckPointerTypesForAssignment - This is a very tricky routine (despite
964// being closely modeled after the C99 spec:-). The odd characteristic of this
965// routine is it effectively iqnores the qualifiers on the top level pointee.
966// This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3].
967// FIXME: add a couple examples in this comment.
968Sema::AssignmentCheckResult
969Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) {
970 QualType lhptee, rhptee;
971
972 // get the "pointed to" type (ignoring qualifiers at the top level)
Chris Lattner71225142007-07-31 21:27:01 +0000973 lhptee = lhsType->getAsPointerType()->getPointeeType();
974 rhptee = rhsType->getAsPointerType()->getPointeeType();
Chris Lattner4b009652007-07-25 00:24:17 +0000975
976 // make sure we operate on the canonical type
977 lhptee = lhptee.getCanonicalType();
978 rhptee = rhptee.getCanonicalType();
979
980 AssignmentCheckResult r = Compatible;
981
982 // C99 6.5.16.1p1: This following citation is common to constraints
983 // 3 & 4 (below). ...and the type *pointed to* by the left has all the
984 // qualifiers of the type *pointed to* by the right;
985 if ((lhptee.getQualifiers() & rhptee.getQualifiers()) !=
986 rhptee.getQualifiers())
987 r = CompatiblePointerDiscardsQualifiers;
988
989 // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or
990 // incomplete type and the other is a pointer to a qualified or unqualified
991 // version of void...
992 if (lhptee.getUnqualifiedType()->isVoidType() &&
993 (rhptee->isObjectType() || rhptee->isIncompleteType()))
994 ;
995 else if (rhptee.getUnqualifiedType()->isVoidType() &&
996 (lhptee->isObjectType() || lhptee->isIncompleteType()))
997 ;
998 // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or
999 // unqualified versions of compatible types, ...
Steve Naroff85f0dc52007-10-15 20:41:53 +00001000 else if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
1001 rhptee.getUnqualifiedType()))
Chris Lattner4b009652007-07-25 00:24:17 +00001002 r = IncompatiblePointer; // this "trumps" PointerAssignDiscardsQualifiers
1003 return r;
1004}
1005
1006/// CheckAssignmentConstraints (C99 6.5.16) - This routine currently
1007/// has code to accommodate several GCC extensions when type checking
1008/// pointers. Here are some objectionable examples that GCC considers warnings:
1009///
1010/// int a, *pint;
1011/// short *pshort;
1012/// struct foo *pfoo;
1013///
1014/// pint = pshort; // warning: assignment from incompatible pointer type
1015/// a = pint; // warning: assignment makes integer from pointer without a cast
1016/// pint = a; // warning: assignment makes pointer from integer without a cast
1017/// pint = pfoo; // warning: assignment from incompatible pointer type
1018///
1019/// As a result, the code for dealing with pointers is more complex than the
1020/// C99 spec dictates.
1021/// Note: the warning above turn into errors when -pedantic-errors is enabled.
1022///
1023Sema::AssignmentCheckResult
1024Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) {
1025 if (lhsType == rhsType) // common case, fast path...
1026 return Compatible;
1027
Anders Carlssoncebb8d62007-10-12 23:56:29 +00001028 if (lhsType->isReferenceType() || rhsType->isReferenceType()) {
Steve Naroff85f0dc52007-10-15 20:41:53 +00001029 if (Context.referenceTypesAreCompatible(lhsType, rhsType))
Anders Carlssoncebb8d62007-10-12 23:56:29 +00001030 return Compatible;
1031 } else if (lhsType->isArithmeticType() && rhsType->isArithmeticType()) {
Chris Lattner4b009652007-07-25 00:24:17 +00001032 if (lhsType->isVectorType() || rhsType->isVectorType()) {
1033 if (lhsType.getCanonicalType() != rhsType.getCanonicalType())
1034 return Incompatible;
1035 }
1036 return Compatible;
1037 } else if (lhsType->isPointerType()) {
1038 if (rhsType->isIntegerType())
1039 return PointerFromInt;
1040
1041 if (rhsType->isPointerType())
1042 return CheckPointerTypesForAssignment(lhsType, rhsType);
1043 } else if (rhsType->isPointerType()) {
1044 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer.
1045 if ((lhsType->isIntegerType()) && (lhsType != Context.BoolTy))
1046 return IntFromPointer;
1047
1048 if (lhsType->isPointerType())
1049 return CheckPointerTypesForAssignment(lhsType, rhsType);
1050 } else if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) {
Steve Naroff85f0dc52007-10-15 20:41:53 +00001051 if (Context.tagTypesAreCompatible(lhsType, rhsType))
Chris Lattner4b009652007-07-25 00:24:17 +00001052 return Compatible;
Chris Lattner4b009652007-07-25 00:24:17 +00001053 }
1054 return Incompatible;
1055}
1056
1057Sema::AssignmentCheckResult
1058Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) {
Chris Lattner5f505bf2007-10-16 02:55:40 +00001059 // This check seems unnatural, however it is necessary to ensure the proper
Chris Lattner4b009652007-07-25 00:24:17 +00001060 // conversion of functions/arrays. If the conversion were done for all
Steve Naroff0acc9c92007-09-15 18:49:24 +00001061 // DeclExpr's (created by ActOnIdentifierExpr), it would mess up the unary
Chris Lattner4b009652007-07-25 00:24:17 +00001062 // expressions that surpress this implicit conversion (&, sizeof).
Chris Lattner5f505bf2007-10-16 02:55:40 +00001063 //
1064 // Suppress this for references: C99 8.5.3p5. FIXME: revisit when references
1065 // are better understood.
1066 if (!lhsType->isReferenceType())
1067 DefaultFunctionArrayConversion(rExpr);
Steve Naroff0f32f432007-08-24 22:33:52 +00001068
1069 Sema::AssignmentCheckResult result;
Chris Lattner4b009652007-07-25 00:24:17 +00001070
Steve Naroff0f32f432007-08-24 22:33:52 +00001071 result = CheckAssignmentConstraints(lhsType, rExpr->getType());
1072
1073 // C99 6.5.16.1p2: The value of the right operand is converted to the
1074 // type of the assignment expression.
1075 if (rExpr->getType() != lhsType)
1076 promoteExprToType(rExpr, lhsType);
1077 return result;
Chris Lattner4b009652007-07-25 00:24:17 +00001078}
1079
1080Sema::AssignmentCheckResult
1081Sema::CheckCompoundAssignmentConstraints(QualType lhsType, QualType rhsType) {
1082 return CheckAssignmentConstraints(lhsType, rhsType);
1083}
1084
1085inline void Sema::InvalidOperands(SourceLocation loc, Expr *&lex, Expr *&rex) {
1086 Diag(loc, diag::err_typecheck_invalid_operands,
1087 lex->getType().getAsString(), rex->getType().getAsString(),
1088 lex->getSourceRange(), rex->getSourceRange());
1089}
1090
1091inline QualType Sema::CheckVectorOperands(SourceLocation loc, Expr *&lex,
1092 Expr *&rex) {
1093 QualType lhsType = lex->getType(), rhsType = rex->getType();
1094
1095 // make sure the vector types are identical.
1096 if (lhsType == rhsType)
1097 return lhsType;
1098 // You cannot convert between vector values of different size.
1099 Diag(loc, diag::err_typecheck_vector_not_convertable,
1100 lex->getType().getAsString(), rex->getType().getAsString(),
1101 lex->getSourceRange(), rex->getSourceRange());
1102 return QualType();
1103}
1104
1105inline QualType Sema::CheckMultiplyDivideOperands(
Steve Naroff8f708362007-08-24 19:07:16 +00001106 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Chris Lattner4b009652007-07-25 00:24:17 +00001107{
1108 QualType lhsType = lex->getType(), rhsType = rex->getType();
1109
1110 if (lhsType->isVectorType() || rhsType->isVectorType())
1111 return CheckVectorOperands(loc, lex, rex);
1112
Steve Naroff8f708362007-08-24 19:07:16 +00001113 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Chris Lattner4b009652007-07-25 00:24:17 +00001114
Chris Lattner4b009652007-07-25 00:24:17 +00001115 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff8f708362007-08-24 19:07:16 +00001116 return compType;
Chris Lattner4b009652007-07-25 00:24:17 +00001117 InvalidOperands(loc, lex, rex);
1118 return QualType();
1119}
1120
1121inline QualType Sema::CheckRemainderOperands(
Steve Naroff8f708362007-08-24 19:07:16 +00001122 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Chris Lattner4b009652007-07-25 00:24:17 +00001123{
1124 QualType lhsType = lex->getType(), rhsType = rex->getType();
1125
Steve Naroff8f708362007-08-24 19:07:16 +00001126 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Chris Lattner4b009652007-07-25 00:24:17 +00001127
Chris Lattner4b009652007-07-25 00:24:17 +00001128 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff8f708362007-08-24 19:07:16 +00001129 return compType;
Chris Lattner4b009652007-07-25 00:24:17 +00001130 InvalidOperands(loc, lex, rex);
1131 return QualType();
1132}
1133
1134inline QualType Sema::CheckAdditionOperands( // C99 6.5.6
Steve Naroff8f708362007-08-24 19:07:16 +00001135 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Chris Lattner4b009652007-07-25 00:24:17 +00001136{
1137 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
1138 return CheckVectorOperands(loc, lex, rex);
1139
Steve Naroff8f708362007-08-24 19:07:16 +00001140 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Chris Lattner4b009652007-07-25 00:24:17 +00001141
1142 // handle the common case first (both operands are arithmetic).
1143 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff8f708362007-08-24 19:07:16 +00001144 return compType;
Chris Lattner4b009652007-07-25 00:24:17 +00001145
1146 if (lex->getType()->isPointerType() && rex->getType()->isIntegerType())
1147 return lex->getType();
1148 if (lex->getType()->isIntegerType() && rex->getType()->isPointerType())
1149 return rex->getType();
1150 InvalidOperands(loc, lex, rex);
1151 return QualType();
1152}
1153
1154inline QualType Sema::CheckSubtractionOperands( // C99 6.5.6
Steve Naroff8f708362007-08-24 19:07:16 +00001155 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Chris Lattner4b009652007-07-25 00:24:17 +00001156{
1157 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
1158 return CheckVectorOperands(loc, lex, rex);
1159
Steve Naroff8f708362007-08-24 19:07:16 +00001160 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Chris Lattner4b009652007-07-25 00:24:17 +00001161
1162 // handle the common case first (both operands are arithmetic).
1163 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff8f708362007-08-24 19:07:16 +00001164 return compType;
Chris Lattner4b009652007-07-25 00:24:17 +00001165
1166 if (lex->getType()->isPointerType() && rex->getType()->isIntegerType())
Steve Naroff8f708362007-08-24 19:07:16 +00001167 return compType;
Chris Lattner4b009652007-07-25 00:24:17 +00001168 if (lex->getType()->isPointerType() && rex->getType()->isPointerType())
1169 return Context.getPointerDiffType();
1170 InvalidOperands(loc, lex, rex);
1171 return QualType();
1172}
1173
1174inline QualType Sema::CheckShiftOperands( // C99 6.5.7
Steve Naroff8f708362007-08-24 19:07:16 +00001175 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Chris Lattner4b009652007-07-25 00:24:17 +00001176{
1177 // FIXME: Shifts don't perform usual arithmetic conversions. This is wrong
1178 // for int << longlong -> the result type should be int, not long long.
Steve Naroff8f708362007-08-24 19:07:16 +00001179 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Chris Lattner4b009652007-07-25 00:24:17 +00001180
1181 // handle the common case first (both operands are arithmetic).
1182 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff8f708362007-08-24 19:07:16 +00001183 return compType;
Chris Lattner4b009652007-07-25 00:24:17 +00001184 InvalidOperands(loc, lex, rex);
1185 return QualType();
1186}
1187
Chris Lattner254f3bc2007-08-26 01:18:55 +00001188inline QualType Sema::CheckCompareOperands( // C99 6.5.8
1189 Expr *&lex, Expr *&rex, SourceLocation loc, bool isRelational)
Chris Lattner4b009652007-07-25 00:24:17 +00001190{
Chris Lattner254f3bc2007-08-26 01:18:55 +00001191 // C99 6.5.8p3 / C99 6.5.9p4
Steve Naroffecc4fa12007-08-10 18:26:40 +00001192 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
1193 UsualArithmeticConversions(lex, rex);
1194 else {
1195 UsualUnaryConversions(lex);
1196 UsualUnaryConversions(rex);
1197 }
Chris Lattner4b009652007-07-25 00:24:17 +00001198 QualType lType = lex->getType();
1199 QualType rType = rex->getType();
1200
Chris Lattner254f3bc2007-08-26 01:18:55 +00001201 if (isRelational) {
1202 if (lType->isRealType() && rType->isRealType())
1203 return Context.IntTy;
1204 } else {
Chris Lattnerbd3cc222007-08-30 06:10:41 +00001205 if (lType->isFloatingType() && rType->isFloatingType())
Ted Kremenekec761af2007-08-29 18:06:12 +00001206 Diag(loc, diag::warn_floatingpoint_eq);
1207
Chris Lattner254f3bc2007-08-26 01:18:55 +00001208 if (lType->isArithmeticType() && rType->isArithmeticType())
1209 return Context.IntTy;
1210 }
Chris Lattner4b009652007-07-25 00:24:17 +00001211
Chris Lattner22be8422007-08-26 01:10:14 +00001212 bool LHSIsNull = lex->isNullPointerConstant(Context);
1213 bool RHSIsNull = rex->isNullPointerConstant(Context);
1214
Chris Lattner254f3bc2007-08-26 01:18:55 +00001215 // All of the following pointer related warnings are GCC extensions, except
1216 // when handling null pointer constants. One day, we can consider making them
1217 // errors (when -pedantic-errors is enabled).
Steve Naroffc33c0602007-08-27 04:08:11 +00001218 if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2
Chris Lattner22be8422007-08-26 01:10:14 +00001219 if (!LHSIsNull && !RHSIsNull &&
Steve Naroff85f0dc52007-10-15 20:41:53 +00001220 !Context.pointerTypesAreCompatible(lType.getUnqualifiedType(),
1221 rType.getUnqualifiedType())) {
Steve Naroff4462cb02007-08-16 21:48:38 +00001222 Diag(loc, diag::ext_typecheck_comparison_of_distinct_pointers,
1223 lType.getAsString(), rType.getAsString(),
1224 lex->getSourceRange(), rex->getSourceRange());
Chris Lattner4b009652007-07-25 00:24:17 +00001225 }
Chris Lattner22be8422007-08-26 01:10:14 +00001226 promoteExprToType(rex, lType); // promote the pointer to pointer
Steve Naroff4462cb02007-08-16 21:48:38 +00001227 return Context.IntTy;
1228 }
1229 if (lType->isPointerType() && rType->isIntegerType()) {
Chris Lattner22be8422007-08-26 01:10:14 +00001230 if (!RHSIsNull)
Steve Naroff4462cb02007-08-16 21:48:38 +00001231 Diag(loc, diag::ext_typecheck_comparison_of_pointer_integer,
1232 lType.getAsString(), rType.getAsString(),
1233 lex->getSourceRange(), rex->getSourceRange());
Chris Lattner22be8422007-08-26 01:10:14 +00001234 promoteExprToType(rex, lType); // promote the integer to pointer
Steve Naroff4462cb02007-08-16 21:48:38 +00001235 return Context.IntTy;
1236 }
1237 if (lType->isIntegerType() && rType->isPointerType()) {
Chris Lattner22be8422007-08-26 01:10:14 +00001238 if (!LHSIsNull)
Steve Naroff4462cb02007-08-16 21:48:38 +00001239 Diag(loc, diag::ext_typecheck_comparison_of_pointer_integer,
1240 lType.getAsString(), rType.getAsString(),
1241 lex->getSourceRange(), rex->getSourceRange());
Chris Lattner22be8422007-08-26 01:10:14 +00001242 promoteExprToType(lex, rType); // promote the integer to pointer
Steve Naroff4462cb02007-08-16 21:48:38 +00001243 return Context.IntTy;
Chris Lattner4b009652007-07-25 00:24:17 +00001244 }
1245 InvalidOperands(loc, lex, rex);
1246 return QualType();
1247}
1248
Chris Lattner4b009652007-07-25 00:24:17 +00001249inline QualType Sema::CheckBitwiseOperands(
Steve Naroff8f708362007-08-24 19:07:16 +00001250 Expr *&lex, Expr *&rex, SourceLocation loc, bool isCompAssign)
Chris Lattner4b009652007-07-25 00:24:17 +00001251{
1252 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
1253 return CheckVectorOperands(loc, lex, rex);
1254
Steve Naroff8f708362007-08-24 19:07:16 +00001255 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Chris Lattner4b009652007-07-25 00:24:17 +00001256
1257 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff8f708362007-08-24 19:07:16 +00001258 return compType;
Chris Lattner4b009652007-07-25 00:24:17 +00001259 InvalidOperands(loc, lex, rex);
1260 return QualType();
1261}
1262
1263inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14]
1264 Expr *&lex, Expr *&rex, SourceLocation loc)
1265{
1266 UsualUnaryConversions(lex);
1267 UsualUnaryConversions(rex);
1268
1269 if (lex->getType()->isScalarType() || rex->getType()->isScalarType())
1270 return Context.IntTy;
1271 InvalidOperands(loc, lex, rex);
1272 return QualType();
1273}
1274
1275inline QualType Sema::CheckAssignmentOperands( // C99 6.5.16.1
Steve Naroff0f32f432007-08-24 22:33:52 +00001276 Expr *lex, Expr *&rex, SourceLocation loc, QualType compoundType)
Chris Lattner4b009652007-07-25 00:24:17 +00001277{
1278 QualType lhsType = lex->getType();
1279 QualType rhsType = compoundType.isNull() ? rex->getType() : compoundType;
1280 bool hadError = false;
1281 Expr::isModifiableLvalueResult mlval = lex->isModifiableLvalue();
1282
1283 switch (mlval) { // C99 6.5.16p2
1284 case Expr::MLV_Valid:
1285 break;
1286 case Expr::MLV_ConstQualified:
1287 Diag(loc, diag::err_typecheck_assign_const, lex->getSourceRange());
1288 hadError = true;
1289 break;
1290 case Expr::MLV_ArrayType:
1291 Diag(loc, diag::err_typecheck_array_not_modifiable_lvalue,
1292 lhsType.getAsString(), lex->getSourceRange());
1293 return QualType();
1294 case Expr::MLV_NotObjectType:
1295 Diag(loc, diag::err_typecheck_non_object_not_modifiable_lvalue,
1296 lhsType.getAsString(), lex->getSourceRange());
1297 return QualType();
1298 case Expr::MLV_InvalidExpression:
1299 Diag(loc, diag::err_typecheck_expression_not_modifiable_lvalue,
1300 lex->getSourceRange());
1301 return QualType();
1302 case Expr::MLV_IncompleteType:
1303 case Expr::MLV_IncompleteVoidType:
1304 Diag(loc, diag::err_typecheck_incomplete_type_not_modifiable_lvalue,
1305 lhsType.getAsString(), lex->getSourceRange());
1306 return QualType();
Steve Naroffba67f692007-07-30 03:29:09 +00001307 case Expr::MLV_DuplicateVectorComponents:
1308 Diag(loc, diag::err_typecheck_duplicate_vector_components_not_mlvalue,
1309 lex->getSourceRange());
1310 return QualType();
Chris Lattner4b009652007-07-25 00:24:17 +00001311 }
1312 AssignmentCheckResult result;
1313
1314 if (compoundType.isNull())
1315 result = CheckSingleAssignmentConstraints(lhsType, rex);
1316 else
1317 result = CheckCompoundAssignmentConstraints(lhsType, rhsType);
Steve Naroff7cbb1462007-07-31 12:34:36 +00001318
Chris Lattner4b009652007-07-25 00:24:17 +00001319 // decode the result (notice that extensions still return a type).
1320 switch (result) {
1321 case Compatible:
1322 break;
1323 case Incompatible:
1324 Diag(loc, diag::err_typecheck_assign_incompatible,
1325 lhsType.getAsString(), rhsType.getAsString(),
1326 lex->getSourceRange(), rex->getSourceRange());
1327 hadError = true;
1328 break;
1329 case PointerFromInt:
1330 // check for null pointer constant (C99 6.3.2.3p3)
1331 if (compoundType.isNull() && !rex->isNullPointerConstant(Context)) {
1332 Diag(loc, diag::ext_typecheck_assign_pointer_int,
1333 lhsType.getAsString(), rhsType.getAsString(),
1334 lex->getSourceRange(), rex->getSourceRange());
1335 }
1336 break;
1337 case IntFromPointer:
1338 Diag(loc, diag::ext_typecheck_assign_pointer_int,
1339 lhsType.getAsString(), rhsType.getAsString(),
1340 lex->getSourceRange(), rex->getSourceRange());
1341 break;
1342 case IncompatiblePointer:
1343 Diag(loc, diag::ext_typecheck_assign_incompatible_pointer,
1344 lhsType.getAsString(), rhsType.getAsString(),
1345 lex->getSourceRange(), rex->getSourceRange());
1346 break;
1347 case CompatiblePointerDiscardsQualifiers:
1348 Diag(loc, diag::ext_typecheck_assign_discards_qualifiers,
1349 lhsType.getAsString(), rhsType.getAsString(),
1350 lex->getSourceRange(), rex->getSourceRange());
1351 break;
1352 }
1353 // C99 6.5.16p3: The type of an assignment expression is the type of the
1354 // left operand unless the left operand has qualified type, in which case
1355 // it is the unqualified version of the type of the left operand.
1356 // C99 6.5.16.1p2: In simple assignment, the value of the right operand
1357 // is converted to the type of the assignment expression (above).
Chris Lattner0d9bcea2007-08-30 17:45:32 +00001358 // C++ 5.17p1: the type of the assignment expression is that of its left
1359 // oprdu.
Chris Lattner4b009652007-07-25 00:24:17 +00001360 return hadError ? QualType() : lhsType.getUnqualifiedType();
1361}
1362
1363inline QualType Sema::CheckCommaOperands( // C99 6.5.17
1364 Expr *&lex, Expr *&rex, SourceLocation loc) {
1365 UsualUnaryConversions(rex);
1366 return rex->getType();
1367}
1368
1369/// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine
1370/// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions.
1371QualType Sema::CheckIncrementDecrementOperand(Expr *op, SourceLocation OpLoc) {
1372 QualType resType = op->getType();
1373 assert(!resType.isNull() && "no type for increment/decrement expression");
1374
Steve Naroffd30e1932007-08-24 17:20:07 +00001375 // C99 6.5.2.4p1: We allow complex as a GCC extension.
Chris Lattner4b009652007-07-25 00:24:17 +00001376 if (const PointerType *pt = dyn_cast<PointerType>(resType)) {
1377 if (!pt->getPointeeType()->isObjectType()) { // C99 6.5.2.4p2, 6.5.6p2
1378 Diag(OpLoc, diag::err_typecheck_arithmetic_incomplete_type,
1379 resType.getAsString(), op->getSourceRange());
1380 return QualType();
1381 }
Steve Naroffd30e1932007-08-24 17:20:07 +00001382 } else if (!resType->isRealType()) {
1383 if (resType->isComplexType())
1384 // C99 does not support ++/-- on complex types.
1385 Diag(OpLoc, diag::ext_integer_increment_complex,
1386 resType.getAsString(), op->getSourceRange());
1387 else {
1388 Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement,
1389 resType.getAsString(), op->getSourceRange());
1390 return QualType();
1391 }
Chris Lattner4b009652007-07-25 00:24:17 +00001392 }
Steve Naroff6acc0f42007-08-23 21:37:33 +00001393 // At this point, we know we have a real, complex or pointer type.
1394 // Now make sure the operand is a modifiable lvalue.
Chris Lattner4b009652007-07-25 00:24:17 +00001395 Expr::isModifiableLvalueResult mlval = op->isModifiableLvalue();
1396 if (mlval != Expr::MLV_Valid) {
1397 // FIXME: emit a more precise diagnostic...
1398 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_incr_decr,
1399 op->getSourceRange());
1400 return QualType();
1401 }
1402 return resType;
1403}
1404
1405/// getPrimaryDeclaration - Helper function for CheckAddressOfOperand().
1406/// This routine allows us to typecheck complex/recursive expressions
1407/// where the declaration is needed for type checking. Here are some
1408/// examples: &s.xx, &s.zz[1].yy, &(1+2), &(XX), &"123"[2].
1409static Decl *getPrimaryDeclaration(Expr *e) {
1410 switch (e->getStmtClass()) {
1411 case Stmt::DeclRefExprClass:
1412 return cast<DeclRefExpr>(e)->getDecl();
1413 case Stmt::MemberExprClass:
1414 return getPrimaryDeclaration(cast<MemberExpr>(e)->getBase());
1415 case Stmt::ArraySubscriptExprClass:
1416 return getPrimaryDeclaration(cast<ArraySubscriptExpr>(e)->getBase());
1417 case Stmt::CallExprClass:
1418 return getPrimaryDeclaration(cast<CallExpr>(e)->getCallee());
1419 case Stmt::UnaryOperatorClass:
1420 return getPrimaryDeclaration(cast<UnaryOperator>(e)->getSubExpr());
1421 case Stmt::ParenExprClass:
1422 return getPrimaryDeclaration(cast<ParenExpr>(e)->getSubExpr());
1423 default:
1424 return 0;
1425 }
1426}
1427
1428/// CheckAddressOfOperand - The operand of & must be either a function
1429/// designator or an lvalue designating an object. If it is an lvalue, the
1430/// object cannot be declared with storage class register or be a bit field.
1431/// Note: The usual conversions are *not* applied to the operand of the &
1432/// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue.
1433QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) {
1434 Decl *dcl = getPrimaryDeclaration(op);
1435 Expr::isLvalueResult lval = op->isLvalue();
1436
1437 if (lval != Expr::LV_Valid) { // C99 6.5.3.2p1
1438 if (dcl && isa<FunctionDecl>(dcl)) // allow function designators
1439 ;
1440 else { // FIXME: emit more specific diag...
1441 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof,
1442 op->getSourceRange());
1443 return QualType();
1444 }
1445 } else if (dcl) {
1446 // We have an lvalue with a decl. Make sure the decl is not declared
1447 // with the register storage-class specifier.
1448 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) {
1449 if (vd->getStorageClass() == VarDecl::Register) {
1450 Diag(OpLoc, diag::err_typecheck_address_of_register,
1451 op->getSourceRange());
1452 return QualType();
1453 }
1454 } else
1455 assert(0 && "Unknown/unexpected decl type");
1456
1457 // FIXME: add check for bitfields!
1458 }
1459 // If the operand has type "type", the result has type "pointer to type".
1460 return Context.getPointerType(op->getType());
1461}
1462
1463QualType Sema::CheckIndirectionOperand(Expr *op, SourceLocation OpLoc) {
1464 UsualUnaryConversions(op);
1465 QualType qType = op->getType();
1466
Chris Lattner7931f4a2007-07-31 16:53:04 +00001467 if (const PointerType *PT = qType->getAsPointerType()) {
Chris Lattner4b009652007-07-25 00:24:17 +00001468 QualType ptype = PT->getPointeeType();
1469 // C99 6.5.3.2p4. "if it points to an object,...".
1470 if (ptype->isIncompleteType()) { // An incomplete type is not an object
1471 // GCC compat: special case 'void *' (treat as warning).
1472 if (ptype->isVoidType()) {
1473 Diag(OpLoc, diag::ext_typecheck_deref_ptr_to_void,
1474 qType.getAsString(), op->getSourceRange());
1475 } else {
1476 Diag(OpLoc, diag::err_typecheck_deref_incomplete_type,
1477 ptype.getAsString(), op->getSourceRange());
1478 return QualType();
1479 }
1480 }
1481 return ptype;
1482 }
1483 Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer,
1484 qType.getAsString(), op->getSourceRange());
1485 return QualType();
1486}
1487
1488static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode(
1489 tok::TokenKind Kind) {
1490 BinaryOperator::Opcode Opc;
1491 switch (Kind) {
1492 default: assert(0 && "Unknown binop!");
1493 case tok::star: Opc = BinaryOperator::Mul; break;
1494 case tok::slash: Opc = BinaryOperator::Div; break;
1495 case tok::percent: Opc = BinaryOperator::Rem; break;
1496 case tok::plus: Opc = BinaryOperator::Add; break;
1497 case tok::minus: Opc = BinaryOperator::Sub; break;
1498 case tok::lessless: Opc = BinaryOperator::Shl; break;
1499 case tok::greatergreater: Opc = BinaryOperator::Shr; break;
1500 case tok::lessequal: Opc = BinaryOperator::LE; break;
1501 case tok::less: Opc = BinaryOperator::LT; break;
1502 case tok::greaterequal: Opc = BinaryOperator::GE; break;
1503 case tok::greater: Opc = BinaryOperator::GT; break;
1504 case tok::exclaimequal: Opc = BinaryOperator::NE; break;
1505 case tok::equalequal: Opc = BinaryOperator::EQ; break;
1506 case tok::amp: Opc = BinaryOperator::And; break;
1507 case tok::caret: Opc = BinaryOperator::Xor; break;
1508 case tok::pipe: Opc = BinaryOperator::Or; break;
1509 case tok::ampamp: Opc = BinaryOperator::LAnd; break;
1510 case tok::pipepipe: Opc = BinaryOperator::LOr; break;
1511 case tok::equal: Opc = BinaryOperator::Assign; break;
1512 case tok::starequal: Opc = BinaryOperator::MulAssign; break;
1513 case tok::slashequal: Opc = BinaryOperator::DivAssign; break;
1514 case tok::percentequal: Opc = BinaryOperator::RemAssign; break;
1515 case tok::plusequal: Opc = BinaryOperator::AddAssign; break;
1516 case tok::minusequal: Opc = BinaryOperator::SubAssign; break;
1517 case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break;
1518 case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break;
1519 case tok::ampequal: Opc = BinaryOperator::AndAssign; break;
1520 case tok::caretequal: Opc = BinaryOperator::XorAssign; break;
1521 case tok::pipeequal: Opc = BinaryOperator::OrAssign; break;
1522 case tok::comma: Opc = BinaryOperator::Comma; break;
1523 }
1524 return Opc;
1525}
1526
1527static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode(
1528 tok::TokenKind Kind) {
1529 UnaryOperator::Opcode Opc;
1530 switch (Kind) {
1531 default: assert(0 && "Unknown unary op!");
1532 case tok::plusplus: Opc = UnaryOperator::PreInc; break;
1533 case tok::minusminus: Opc = UnaryOperator::PreDec; break;
1534 case tok::amp: Opc = UnaryOperator::AddrOf; break;
1535 case tok::star: Opc = UnaryOperator::Deref; break;
1536 case tok::plus: Opc = UnaryOperator::Plus; break;
1537 case tok::minus: Opc = UnaryOperator::Minus; break;
1538 case tok::tilde: Opc = UnaryOperator::Not; break;
1539 case tok::exclaim: Opc = UnaryOperator::LNot; break;
1540 case tok::kw_sizeof: Opc = UnaryOperator::SizeOf; break;
1541 case tok::kw___alignof: Opc = UnaryOperator::AlignOf; break;
1542 case tok::kw___real: Opc = UnaryOperator::Real; break;
1543 case tok::kw___imag: Opc = UnaryOperator::Imag; break;
1544 case tok::kw___extension__: Opc = UnaryOperator::Extension; break;
1545 }
1546 return Opc;
1547}
1548
1549// Binary Operators. 'Tok' is the token for the operator.
Steve Naroff87d58b42007-09-16 03:34:24 +00001550Action::ExprResult Sema::ActOnBinOp(SourceLocation TokLoc, tok::TokenKind Kind,
Chris Lattner4b009652007-07-25 00:24:17 +00001551 ExprTy *LHS, ExprTy *RHS) {
1552 BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind);
1553 Expr *lhs = (Expr *)LHS, *rhs = (Expr*)RHS;
1554
Steve Naroff87d58b42007-09-16 03:34:24 +00001555 assert((lhs != 0) && "ActOnBinOp(): missing left expression");
1556 assert((rhs != 0) && "ActOnBinOp(): missing right expression");
Chris Lattner4b009652007-07-25 00:24:17 +00001557
1558 QualType ResultTy; // Result type of the binary operator.
1559 QualType CompTy; // Computation type for compound assignments (e.g. '+=')
1560
1561 switch (Opc) {
1562 default:
1563 assert(0 && "Unknown binary expr!");
1564 case BinaryOperator::Assign:
1565 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, QualType());
1566 break;
1567 case BinaryOperator::Mul:
1568 case BinaryOperator::Div:
1569 ResultTy = CheckMultiplyDivideOperands(lhs, rhs, TokLoc);
1570 break;
1571 case BinaryOperator::Rem:
1572 ResultTy = CheckRemainderOperands(lhs, rhs, TokLoc);
1573 break;
1574 case BinaryOperator::Add:
1575 ResultTy = CheckAdditionOperands(lhs, rhs, TokLoc);
1576 break;
1577 case BinaryOperator::Sub:
1578 ResultTy = CheckSubtractionOperands(lhs, rhs, TokLoc);
1579 break;
1580 case BinaryOperator::Shl:
1581 case BinaryOperator::Shr:
1582 ResultTy = CheckShiftOperands(lhs, rhs, TokLoc);
1583 break;
1584 case BinaryOperator::LE:
1585 case BinaryOperator::LT:
1586 case BinaryOperator::GE:
1587 case BinaryOperator::GT:
Chris Lattner254f3bc2007-08-26 01:18:55 +00001588 ResultTy = CheckCompareOperands(lhs, rhs, TokLoc, true);
Chris Lattner4b009652007-07-25 00:24:17 +00001589 break;
1590 case BinaryOperator::EQ:
1591 case BinaryOperator::NE:
Chris Lattner254f3bc2007-08-26 01:18:55 +00001592 ResultTy = CheckCompareOperands(lhs, rhs, TokLoc, false);
Chris Lattner4b009652007-07-25 00:24:17 +00001593 break;
1594 case BinaryOperator::And:
1595 case BinaryOperator::Xor:
1596 case BinaryOperator::Or:
1597 ResultTy = CheckBitwiseOperands(lhs, rhs, TokLoc);
1598 break;
1599 case BinaryOperator::LAnd:
1600 case BinaryOperator::LOr:
1601 ResultTy = CheckLogicalOperands(lhs, rhs, TokLoc);
1602 break;
1603 case BinaryOperator::MulAssign:
1604 case BinaryOperator::DivAssign:
Steve Naroff8f708362007-08-24 19:07:16 +00001605 CompTy = CheckMultiplyDivideOperands(lhs, rhs, TokLoc, true);
Chris Lattner4b009652007-07-25 00:24:17 +00001606 if (!CompTy.isNull())
1607 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1608 break;
1609 case BinaryOperator::RemAssign:
Steve Naroff8f708362007-08-24 19:07:16 +00001610 CompTy = CheckRemainderOperands(lhs, rhs, TokLoc, true);
Chris Lattner4b009652007-07-25 00:24:17 +00001611 if (!CompTy.isNull())
1612 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1613 break;
1614 case BinaryOperator::AddAssign:
Steve Naroff8f708362007-08-24 19:07:16 +00001615 CompTy = CheckAdditionOperands(lhs, rhs, TokLoc, true);
Chris Lattner4b009652007-07-25 00:24:17 +00001616 if (!CompTy.isNull())
1617 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1618 break;
1619 case BinaryOperator::SubAssign:
Steve Naroff8f708362007-08-24 19:07:16 +00001620 CompTy = CheckSubtractionOperands(lhs, rhs, TokLoc, true);
Chris Lattner4b009652007-07-25 00:24:17 +00001621 if (!CompTy.isNull())
1622 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1623 break;
1624 case BinaryOperator::ShlAssign:
1625 case BinaryOperator::ShrAssign:
Steve Naroff8f708362007-08-24 19:07:16 +00001626 CompTy = CheckShiftOperands(lhs, rhs, TokLoc, true);
Chris Lattner4b009652007-07-25 00:24:17 +00001627 if (!CompTy.isNull())
1628 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1629 break;
1630 case BinaryOperator::AndAssign:
1631 case BinaryOperator::XorAssign:
1632 case BinaryOperator::OrAssign:
Steve Naroff8f708362007-08-24 19:07:16 +00001633 CompTy = CheckBitwiseOperands(lhs, rhs, TokLoc, true);
Chris Lattner4b009652007-07-25 00:24:17 +00001634 if (!CompTy.isNull())
1635 ResultTy = CheckAssignmentOperands(lhs, rhs, TokLoc, CompTy);
1636 break;
1637 case BinaryOperator::Comma:
1638 ResultTy = CheckCommaOperands(lhs, rhs, TokLoc);
1639 break;
1640 }
1641 if (ResultTy.isNull())
1642 return true;
1643 if (CompTy.isNull())
Chris Lattnerf420df12007-08-28 18:36:55 +00001644 return new BinaryOperator(lhs, rhs, Opc, ResultTy, TokLoc);
Chris Lattner4b009652007-07-25 00:24:17 +00001645 else
Chris Lattnerf420df12007-08-28 18:36:55 +00001646 return new CompoundAssignOperator(lhs, rhs, Opc, ResultTy, CompTy, TokLoc);
Chris Lattner4b009652007-07-25 00:24:17 +00001647}
1648
1649// Unary Operators. 'Tok' is the token for the operator.
Steve Naroff87d58b42007-09-16 03:34:24 +00001650Action::ExprResult Sema::ActOnUnaryOp(SourceLocation OpLoc, tok::TokenKind Op,
Chris Lattner4b009652007-07-25 00:24:17 +00001651 ExprTy *input) {
1652 Expr *Input = (Expr*)input;
1653 UnaryOperator::Opcode Opc = ConvertTokenKindToUnaryOpcode(Op);
1654 QualType resultType;
1655 switch (Opc) {
1656 default:
1657 assert(0 && "Unimplemented unary expr!");
1658 case UnaryOperator::PreInc:
1659 case UnaryOperator::PreDec:
1660 resultType = CheckIncrementDecrementOperand(Input, OpLoc);
1661 break;
1662 case UnaryOperator::AddrOf:
1663 resultType = CheckAddressOfOperand(Input, OpLoc);
1664 break;
1665 case UnaryOperator::Deref:
1666 resultType = CheckIndirectionOperand(Input, OpLoc);
1667 break;
1668 case UnaryOperator::Plus:
1669 case UnaryOperator::Minus:
1670 UsualUnaryConversions(Input);
1671 resultType = Input->getType();
1672 if (!resultType->isArithmeticType()) // C99 6.5.3.3p1
1673 return Diag(OpLoc, diag::err_typecheck_unary_expr,
1674 resultType.getAsString());
1675 break;
1676 case UnaryOperator::Not: // bitwise complement
1677 UsualUnaryConversions(Input);
1678 resultType = Input->getType();
Steve Naroffd30e1932007-08-24 17:20:07 +00001679 // C99 6.5.3.3p1. We allow complex as a GCC extension.
1680 if (!resultType->isIntegerType()) {
1681 if (resultType->isComplexType())
1682 // C99 does not support '~' for complex conjugation.
1683 Diag(OpLoc, diag::ext_integer_complement_complex,
1684 resultType.getAsString());
1685 else
1686 return Diag(OpLoc, diag::err_typecheck_unary_expr,
1687 resultType.getAsString());
1688 }
Chris Lattner4b009652007-07-25 00:24:17 +00001689 break;
1690 case UnaryOperator::LNot: // logical negation
1691 // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5).
1692 DefaultFunctionArrayConversion(Input);
1693 resultType = Input->getType();
1694 if (!resultType->isScalarType()) // C99 6.5.3.3p1
1695 return Diag(OpLoc, diag::err_typecheck_unary_expr,
1696 resultType.getAsString());
1697 // LNot always has type int. C99 6.5.3.3p5.
1698 resultType = Context.IntTy;
1699 break;
1700 case UnaryOperator::SizeOf:
1701 resultType = CheckSizeOfAlignOfOperand(Input->getType(), OpLoc, true);
1702 break;
1703 case UnaryOperator::AlignOf:
1704 resultType = CheckSizeOfAlignOfOperand(Input->getType(), OpLoc, false);
1705 break;
Chris Lattner03931a72007-08-24 21:16:53 +00001706 case UnaryOperator::Real:
Chris Lattner03931a72007-08-24 21:16:53 +00001707 case UnaryOperator::Imag:
Chris Lattner5110ad52007-08-24 21:41:10 +00001708 resultType = CheckRealImagOperand(Input, OpLoc);
Chris Lattner03931a72007-08-24 21:16:53 +00001709 break;
Chris Lattner4b009652007-07-25 00:24:17 +00001710 case UnaryOperator::Extension:
Chris Lattner4b009652007-07-25 00:24:17 +00001711 resultType = Input->getType();
1712 break;
1713 }
1714 if (resultType.isNull())
1715 return true;
1716 return new UnaryOperator(Input, Opc, resultType, OpLoc);
1717}
1718
Steve Naroff5cbb02f2007-09-16 14:56:35 +00001719/// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo".
1720Sema::ExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc,
Chris Lattner4b009652007-07-25 00:24:17 +00001721 SourceLocation LabLoc,
1722 IdentifierInfo *LabelII) {
1723 // Look up the record for this label identifier.
1724 LabelStmt *&LabelDecl = LabelMap[LabelII];
1725
1726 // If we haven't seen this label yet, create a forward reference.
1727 if (LabelDecl == 0)
1728 LabelDecl = new LabelStmt(LabLoc, LabelII, 0);
1729
1730 // Create the AST node. The address of a label always has type 'void*'.
Chris Lattnera0d03a72007-08-03 17:31:20 +00001731 return new AddrLabelExpr(OpLoc, LabLoc, LabelDecl,
1732 Context.getPointerType(Context.VoidTy));
Chris Lattner4b009652007-07-25 00:24:17 +00001733}
1734
Steve Naroff5cbb02f2007-09-16 14:56:35 +00001735Sema::ExprResult Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtTy *substmt,
Chris Lattner4b009652007-07-25 00:24:17 +00001736 SourceLocation RPLoc) { // "({..})"
1737 Stmt *SubStmt = static_cast<Stmt*>(substmt);
1738 assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!");
1739 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt);
1740
1741 // FIXME: there are a variety of strange constraints to enforce here, for
1742 // example, it is not possible to goto into a stmt expression apparently.
1743 // More semantic analysis is needed.
1744
1745 // FIXME: the last statement in the compount stmt has its value used. We
1746 // should not warn about it being unused.
1747
1748 // If there are sub stmts in the compound stmt, take the type of the last one
1749 // as the type of the stmtexpr.
1750 QualType Ty = Context.VoidTy;
1751
1752 if (!Compound->body_empty())
1753 if (Expr *LastExpr = dyn_cast<Expr>(Compound->body_back()))
1754 Ty = LastExpr->getType();
1755
1756 return new StmtExpr(Compound, Ty, LPLoc, RPLoc);
1757}
Steve Naroff63bad2d2007-08-01 22:05:33 +00001758
Steve Naroff5cbb02f2007-09-16 14:56:35 +00001759Sema::ExprResult Sema::ActOnBuiltinOffsetOf(SourceLocation BuiltinLoc,
Chris Lattner0d9bcea2007-08-30 17:45:32 +00001760 SourceLocation TypeLoc,
1761 TypeTy *argty,
1762 OffsetOfComponent *CompPtr,
1763 unsigned NumComponents,
1764 SourceLocation RPLoc) {
1765 QualType ArgTy = QualType::getFromOpaquePtr(argty);
1766 assert(!ArgTy.isNull() && "Missing type argument!");
1767
1768 // We must have at least one component that refers to the type, and the first
1769 // one is known to be a field designator. Verify that the ArgTy represents
1770 // a struct/union/class.
1771 if (!ArgTy->isRecordType())
1772 return Diag(TypeLoc, diag::err_offsetof_record_type,ArgTy.getAsString());
1773
1774 // Otherwise, create a compound literal expression as the base, and
1775 // iteratively process the offsetof designators.
1776 Expr *Res = new CompoundLiteralExpr(ArgTy, 0);
1777
Chris Lattnerb37522e2007-08-31 21:49:13 +00001778 // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a
1779 // GCC extension, diagnose them.
1780 if (NumComponents != 1)
1781 Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator,
1782 SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd));
1783
Chris Lattner0d9bcea2007-08-30 17:45:32 +00001784 for (unsigned i = 0; i != NumComponents; ++i) {
1785 const OffsetOfComponent &OC = CompPtr[i];
1786 if (OC.isBrackets) {
1787 // Offset of an array sub-field. TODO: Should we allow vector elements?
1788 const ArrayType *AT = Res->getType()->getAsArrayType();
1789 if (!AT) {
1790 delete Res;
1791 return Diag(OC.LocEnd, diag::err_offsetof_array_type,
1792 Res->getType().getAsString());
1793 }
1794
Chris Lattner2af6a802007-08-30 17:59:59 +00001795 // FIXME: C++: Verify that operator[] isn't overloaded.
1796
Chris Lattner0d9bcea2007-08-30 17:45:32 +00001797 // C99 6.5.2.1p1
1798 Expr *Idx = static_cast<Expr*>(OC.U.E);
1799 if (!Idx->getType()->isIntegerType())
1800 return Diag(Idx->getLocStart(), diag::err_typecheck_subscript,
1801 Idx->getSourceRange());
1802
1803 Res = new ArraySubscriptExpr(Res, Idx, AT->getElementType(), OC.LocEnd);
1804 continue;
1805 }
1806
1807 const RecordType *RC = Res->getType()->getAsRecordType();
1808 if (!RC) {
1809 delete Res;
1810 return Diag(OC.LocEnd, diag::err_offsetof_record_type,
1811 Res->getType().getAsString());
1812 }
1813
1814 // Get the decl corresponding to this.
1815 RecordDecl *RD = RC->getDecl();
1816 FieldDecl *MemberDecl = RD->getMember(OC.U.IdentInfo);
1817 if (!MemberDecl)
1818 return Diag(BuiltinLoc, diag::err_typecheck_no_member,
1819 OC.U.IdentInfo->getName(),
1820 SourceRange(OC.LocStart, OC.LocEnd));
Chris Lattner2af6a802007-08-30 17:59:59 +00001821
1822 // FIXME: C++: Verify that MemberDecl isn't a static field.
1823 // FIXME: Verify that MemberDecl isn't a bitfield.
1824
Chris Lattner0d9bcea2007-08-30 17:45:32 +00001825 Res = new MemberExpr(Res, false, MemberDecl, OC.LocEnd);
1826 }
1827
1828 return new UnaryOperator(Res, UnaryOperator::OffsetOf, Context.getSizeType(),
1829 BuiltinLoc);
1830}
1831
1832
Steve Naroff5cbb02f2007-09-16 14:56:35 +00001833Sema::ExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc,
Steve Naroff63bad2d2007-08-01 22:05:33 +00001834 TypeTy *arg1, TypeTy *arg2,
1835 SourceLocation RPLoc) {
1836 QualType argT1 = QualType::getFromOpaquePtr(arg1);
1837 QualType argT2 = QualType::getFromOpaquePtr(arg2);
1838
1839 assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)");
1840
Chris Lattner0d9bcea2007-08-30 17:45:32 +00001841 return new TypesCompatibleExpr(Context.IntTy, BuiltinLoc, argT1, argT2,RPLoc);
Steve Naroff63bad2d2007-08-01 22:05:33 +00001842}
1843
Steve Naroff5cbb02f2007-09-16 14:56:35 +00001844Sema::ExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, ExprTy *cond,
Steve Naroff93c53012007-08-03 21:21:27 +00001845 ExprTy *expr1, ExprTy *expr2,
1846 SourceLocation RPLoc) {
1847 Expr *CondExpr = static_cast<Expr*>(cond);
1848 Expr *LHSExpr = static_cast<Expr*>(expr1);
1849 Expr *RHSExpr = static_cast<Expr*>(expr2);
1850
1851 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)");
1852
1853 // The conditional expression is required to be a constant expression.
1854 llvm::APSInt condEval(32);
1855 SourceLocation ExpLoc;
1856 if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc))
1857 return Diag(ExpLoc, diag::err_typecheck_choose_expr_requires_constant,
1858 CondExpr->getSourceRange());
1859
1860 // If the condition is > zero, then the AST type is the same as the LSHExpr.
1861 QualType resType = condEval.getZExtValue() ? LHSExpr->getType() :
1862 RHSExpr->getType();
1863 return new ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, resType, RPLoc);
1864}
1865
Anders Carlsson36760332007-10-15 20:28:48 +00001866Sema::ExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc,
1867 ExprTy *expr, TypeTy *type,
1868 SourceLocation RPLoc)
1869{
1870 Expr *E = static_cast<Expr*>(expr);
1871 QualType T = QualType::getFromOpaquePtr(type);
1872
1873 InitBuiltinVaListType();
1874
1875 Sema::AssignmentCheckResult result;
1876
1877 result = CheckAssignmentConstraints(Context.getBuiltinVaListType(),
1878 E->getType());
1879 if (result != Compatible)
1880 return Diag(E->getLocStart(),
1881 diag::err_first_argument_to_va_arg_not_of_type_va_list,
1882 E->getType().getAsString(),
1883 E->getSourceRange());
1884
1885 // FIXME: Warn if a non-POD type is passed in.
1886
1887 return new VAArgExpr(BuiltinLoc, E, T, RPLoc);
1888}
1889
Anders Carlssona66cad42007-08-21 17:43:55 +00001890// TODO: Move this to SemaObjC.cpp
Anders Carlsson8be1d402007-08-22 15:14:15 +00001891Sema::ExprResult Sema::ParseObjCStringLiteral(ExprTy *string) {
Anders Carlssona66cad42007-08-21 17:43:55 +00001892 StringLiteral* S = static_cast<StringLiteral *>(string);
1893
1894 if (CheckBuiltinCFStringArgument(S))
1895 return true;
1896
Steve Narofff2e30312007-10-15 23:35:17 +00001897 if (Context.getObjcConstantStringInterface().isNull()) {
1898 // Initialize the constant string interface lazily. This assumes
1899 // the NSConstantString interface is seen in this translation unit.
1900 IdentifierInfo *NSIdent = &Context.Idents.get("NSConstantString");
1901 ScopedDecl *IFace = LookupScopedDecl(NSIdent, Decl::IDNS_Ordinary,
1902 SourceLocation(), TUScope);
Steve Naroff134c3502007-10-16 00:00:18 +00001903 ObjcInterfaceDecl *strIFace = dyn_cast_or_null<ObjcInterfaceDecl>(IFace);
1904 assert(strIFace && "missing '@interface NSConstantString'");
1905 Context.setObjcConstantStringInterface(strIFace);
Steve Narofff2e30312007-10-15 23:35:17 +00001906 }
1907 QualType t = Context.getObjcConstantStringInterface();
Anders Carlssona66cad42007-08-21 17:43:55 +00001908 t = Context.getPointerType(t);
Anders Carlssona66cad42007-08-21 17:43:55 +00001909 return new ObjCStringLiteral(S, t);
1910}
Anders Carlsson8be1d402007-08-22 15:14:15 +00001911
1912Sema::ExprResult Sema::ParseObjCEncodeExpression(SourceLocation AtLoc,
1913 SourceLocation LParenLoc,
1914 TypeTy *Ty,
1915 SourceLocation RParenLoc) {
1916 QualType EncodedType = QualType::getFromOpaquePtr(Ty);
1917
1918 QualType t = Context.getPointerType(Context.CharTy);
1919 return new ObjCEncodeExpr(t, EncodedType, AtLoc, RParenLoc);
1920}
Steve Naroffd3f5ee42007-09-17 21:01:15 +00001921
Fariborz Jahanianf807c202007-10-16 20:40:23 +00001922Sema::ExprResult Sema::ParseObjCSelectorExpression(Selector Sel,
1923 SourceLocation AtLoc,
1924 SourceLocation LParenLoc,
1925 SourceLocation RParenLoc) {
1926 QualType t = GetObjcSelType(AtLoc);
1927 return new ObjCSelectorExpr(t, Sel, AtLoc, RParenLoc);
1928}
1929
Steve Naroff4ed9d662007-09-27 14:38:14 +00001930// ActOnClassMessage - used for both unary and keyword messages.
1931// ArgExprs is optional - if it is present, the number of expressions
1932// is obtained from Sel.getNumArgs().
1933Sema::ExprResult Sema::ActOnClassMessage(
Steve Narofffa465d12007-10-02 20:01:56 +00001934 IdentifierInfo *receiverName, Selector Sel,
Steve Naroff4ed9d662007-09-27 14:38:14 +00001935 SourceLocation lbrac, SourceLocation rbrac, ExprTy **Args)
Steve Naroffd3f5ee42007-09-17 21:01:15 +00001936{
Steve Narofffa465d12007-10-02 20:01:56 +00001937 assert(receiverName && "missing receiver class name");
Steve Naroffc39ca262007-09-18 23:55:05 +00001938
Steve Narofffa465d12007-10-02 20:01:56 +00001939 ObjcInterfaceDecl* ClassDecl = getObjCInterfaceDecl(receiverName);
1940 ObjcMethodDecl *Method = ClassDecl->lookupClassMethod(Sel);
Steve Naroff7e461452007-10-16 20:39:36 +00001941 QualType returnType;
1942 if (!Method) {
1943 Diag(lbrac, diag::warn_method_not_found, std::string("+"), Sel.getName(),
1944 SourceRange(lbrac, rbrac));
1945 returnType = GetObjcIdType();
1946 } else {
Steve Naroff171f5b12007-10-16 21:36:54 +00001947 returnType = Method->getResultType();
Steve Naroff7e461452007-10-16 20:39:36 +00001948 }
Steve Narofffa465d12007-10-02 20:01:56 +00001949 // Expr *RExpr = global reference to the class symbol...
Steve Naroff4ed9d662007-09-27 14:38:14 +00001950 Expr **ArgExprs = reinterpret_cast<Expr **>(Args);
Steve Naroff7e461452007-10-16 20:39:36 +00001951 return new ObjCMessageExpr(receiverName, Sel, returnType, lbrac, rbrac,
Chris Lattner71c01112007-10-10 23:42:28 +00001952 ArgExprs);
Steve Naroffd3f5ee42007-09-17 21:01:15 +00001953}
1954
Steve Naroff4ed9d662007-09-27 14:38:14 +00001955// ActOnInstanceMessage - used for both unary and keyword messages.
1956// ArgExprs is optional - if it is present, the number of expressions
1957// is obtained from Sel.getNumArgs().
1958Sema::ExprResult Sema::ActOnInstanceMessage(
Steve Naroff6cb1d362007-09-28 22:22:11 +00001959 ExprTy *receiver, Selector Sel,
Steve Naroff4ed9d662007-09-27 14:38:14 +00001960 SourceLocation lbrac, SourceLocation rbrac, ExprTy **Args)
1961{
Steve Naroffc39ca262007-09-18 23:55:05 +00001962 assert(receiver && "missing receiver expression");
1963
1964 Expr *RExpr = static_cast<Expr *>(receiver);
Steve Narofffa465d12007-10-02 20:01:56 +00001965 QualType receiverType = RExpr->getType();
Steve Naroffee1de132007-10-10 21:53:07 +00001966 QualType returnType;
1967
1968 if (receiverType == GetObjcIdType()) {
Steve Naroff705380b2007-10-14 23:13:51 +00001969 ObjcMethodDecl *Method = InstanceMethodPool[Sel].Method;
Steve Naroff7e461452007-10-16 20:39:36 +00001970 if (!Method) {
1971 Diag(lbrac, diag::warn_method_not_found, std::string("-"), Sel.getName(),
1972 SourceRange(lbrac, rbrac));
1973 returnType = GetObjcIdType();
1974 } else {
Steve Naroff171f5b12007-10-16 21:36:54 +00001975 returnType = Method->getResultType();
Steve Naroff7e461452007-10-16 20:39:36 +00001976 }
Steve Naroffee1de132007-10-10 21:53:07 +00001977 } else {
Chris Lattner71c01112007-10-10 23:42:28 +00001978 // FIXME (snaroff): checking in this code from Patrick. Needs to be
1979 // revisited. how do we get the ClassDecl from the receiver expression?
Steve Naroffee1de132007-10-10 21:53:07 +00001980 while (receiverType->isPointerType()) {
Chris Lattner71c01112007-10-10 23:42:28 +00001981 PointerType *pointerType =
1982 static_cast<PointerType*>(receiverType.getTypePtr());
Steve Naroffee1de132007-10-10 21:53:07 +00001983 receiverType = pointerType->getPointeeType();
1984 }
Chris Lattner71c01112007-10-10 23:42:28 +00001985 assert(ObjcInterfaceType::classof(receiverType.getTypePtr()) &&
1986 "bad receiver type");
Steve Naroffee1de132007-10-10 21:53:07 +00001987 ObjcInterfaceDecl* ClassDecl = static_cast<ObjcInterfaceType*>(
1988 receiverType.getTypePtr())->getDecl();
Steve Naroff7e461452007-10-16 20:39:36 +00001989 // FIXME: consider using InstanceMethodPool, since it will be faster
1990 // than the following method (which can do *many* linear searches). The
1991 // idea is to add class info to InstanceMethodPool...
Steve Naroffee1de132007-10-10 21:53:07 +00001992 ObjcMethodDecl *Method = ClassDecl->lookupInstanceMethod(Sel);
Steve Naroff7e461452007-10-16 20:39:36 +00001993 if (!Method) {
1994 Diag(lbrac, diag::warn_method_not_found, std::string("-"), Sel.getName(),
1995 SourceRange(lbrac, rbrac));
1996 returnType = GetObjcIdType();
1997 } else {
Steve Naroff171f5b12007-10-16 21:36:54 +00001998 returnType = Method->getResultType();
Steve Naroff7e461452007-10-16 20:39:36 +00001999 }
Steve Narofffa465d12007-10-02 20:01:56 +00002000 }
Steve Naroff4ed9d662007-09-27 14:38:14 +00002001 Expr **ArgExprs = reinterpret_cast<Expr **>(Args);
Steve Narofffa465d12007-10-02 20:01:56 +00002002 return new ObjCMessageExpr(RExpr, Sel, returnType, lbrac, rbrac, ArgExprs);
Steve Naroffd3f5ee42007-09-17 21:01:15 +00002003}