blob: 6bc4854628996cc4246144362597bcf6e6cf1c29 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- Expr.cpp - Expression AST Node Implementation --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Expr class and subclasses.
11//
12//===----------------------------------------------------------------------===//
13
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000014#include "clang/AST/Expr.h"
Douglas Gregor0979c802009-08-31 21:41:48 +000015#include "clang/AST/ExprCXX.h"
Chris Lattnera4d55d82008-10-06 06:40:35 +000016#include "clang/AST/APValue.h"
Chris Lattner2eadfb62007-07-15 23:32:58 +000017#include "clang/AST/ASTContext.h"
Chris Lattnera4d55d82008-10-06 06:40:35 +000018#include "clang/AST/DeclObjC.h"
Douglas Gregor98cd5992008-10-21 23:43:52 +000019#include "clang/AST/DeclCXX.h"
Douglas Gregoraaba5e32009-02-04 19:02:06 +000020#include "clang/AST/DeclTemplate.h"
Anders Carlsson19cc4ab2009-07-18 19:43:29 +000021#include "clang/AST/RecordLayout.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022#include "clang/AST/StmtVisitor.h"
Chris Lattner1b63e4f2009-06-14 01:54:56 +000023#include "clang/Basic/Builtins.h"
Chris Lattnerda5a6b62007-11-27 18:22:04 +000024#include "clang/Basic/TargetInfo.h"
Douglas Gregorffb4b6e2009-04-15 06:41:24 +000025#include <algorithm>
Reid Spencer5f016e22007-07-11 17:01:13 +000026using namespace clang;
27
28//===----------------------------------------------------------------------===//
29// Primary Expressions.
30//===----------------------------------------------------------------------===//
31
Chris Lattnerda8249e2008-06-07 22:13:43 +000032/// getValueAsApproximateDouble - This returns the value as an inaccurate
33/// double. Note that this may cause loss of precision, but is useful for
34/// debugging dumps, etc.
35double FloatingLiteral::getValueAsApproximateDouble() const {
36 llvm::APFloat V = getValue();
Dale Johannesenee5a7002008-10-09 23:02:32 +000037 bool ignored;
38 V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven,
39 &ignored);
Chris Lattnerda8249e2008-06-07 22:13:43 +000040 return V.convertToDouble();
41}
42
Chris Lattner2085fd62009-02-18 06:40:38 +000043StringLiteral *StringLiteral::Create(ASTContext &C, const char *StrData,
44 unsigned ByteLength, bool Wide,
45 QualType Ty,
Anders Carlssona135fb42009-03-15 18:34:13 +000046 const SourceLocation *Loc,
47 unsigned NumStrs) {
Chris Lattner2085fd62009-02-18 06:40:38 +000048 // Allocate enough space for the StringLiteral plus an array of locations for
49 // any concatenated string tokens.
50 void *Mem = C.Allocate(sizeof(StringLiteral)+
51 sizeof(SourceLocation)*(NumStrs-1),
52 llvm::alignof<StringLiteral>());
53 StringLiteral *SL = new (Mem) StringLiteral(Ty);
54
Reid Spencer5f016e22007-07-11 17:01:13 +000055 // OPTIMIZE: could allocate this appended to the StringLiteral.
Chris Lattner2085fd62009-02-18 06:40:38 +000056 char *AStrData = new (C, 1) char[ByteLength];
57 memcpy(AStrData, StrData, ByteLength);
58 SL->StrData = AStrData;
59 SL->ByteLength = ByteLength;
60 SL->IsWide = Wide;
61 SL->TokLocs[0] = Loc[0];
62 SL->NumConcatenated = NumStrs;
Reid Spencer5f016e22007-07-11 17:01:13 +000063
Chris Lattner726e1682009-02-18 05:49:11 +000064 if (NumStrs != 1)
Chris Lattner2085fd62009-02-18 06:40:38 +000065 memcpy(&SL->TokLocs[1], Loc+1, sizeof(SourceLocation)*(NumStrs-1));
66 return SL;
Chris Lattner726e1682009-02-18 05:49:11 +000067}
68
Douglas Gregor673ecd62009-04-15 16:35:07 +000069StringLiteral *StringLiteral::CreateEmpty(ASTContext &C, unsigned NumStrs) {
70 void *Mem = C.Allocate(sizeof(StringLiteral)+
71 sizeof(SourceLocation)*(NumStrs-1),
72 llvm::alignof<StringLiteral>());
73 StringLiteral *SL = new (Mem) StringLiteral(QualType());
74 SL->StrData = 0;
75 SL->ByteLength = 0;
76 SL->NumConcatenated = NumStrs;
77 return SL;
78}
79
Douglas Gregor42602bb2009-08-07 06:08:38 +000080void StringLiteral::DoDestroy(ASTContext &C) {
Ted Kremenek8189cde2009-02-07 01:47:29 +000081 C.Deallocate(const_cast<char*>(StrData));
Douglas Gregor42602bb2009-08-07 06:08:38 +000082 Expr::DoDestroy(C);
Reid Spencer5f016e22007-07-11 17:01:13 +000083}
84
Douglas Gregor673ecd62009-04-15 16:35:07 +000085void StringLiteral::setStrData(ASTContext &C, const char *Str, unsigned Len) {
86 if (StrData)
87 C.Deallocate(const_cast<char*>(StrData));
88
89 char *AStrData = new (C, 1) char[Len];
90 memcpy(AStrData, Str, Len);
91 StrData = AStrData;
92 ByteLength = Len;
93}
94
Reid Spencer5f016e22007-07-11 17:01:13 +000095/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
96/// corresponds to, e.g. "sizeof" or "[pre]++".
97const char *UnaryOperator::getOpcodeStr(Opcode Op) {
98 switch (Op) {
99 default: assert(0 && "Unknown unary operator");
100 case PostInc: return "++";
101 case PostDec: return "--";
102 case PreInc: return "++";
103 case PreDec: return "--";
104 case AddrOf: return "&";
105 case Deref: return "*";
106 case Plus: return "+";
107 case Minus: return "-";
108 case Not: return "~";
109 case LNot: return "!";
110 case Real: return "__real";
111 case Imag: return "__imag";
Reid Spencer5f016e22007-07-11 17:01:13 +0000112 case Extension: return "__extension__";
Chris Lattner73d0d4f2007-08-30 17:45:32 +0000113 case OffsetOf: return "__builtin_offsetof";
Reid Spencer5f016e22007-07-11 17:01:13 +0000114 }
115}
116
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000117UnaryOperator::Opcode
118UnaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix) {
119 switch (OO) {
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000120 default: assert(false && "No unary operator for overloaded function");
Chris Lattnerb7beee92009-03-22 00:10:22 +0000121 case OO_PlusPlus: return Postfix ? PostInc : PreInc;
122 case OO_MinusMinus: return Postfix ? PostDec : PreDec;
123 case OO_Amp: return AddrOf;
124 case OO_Star: return Deref;
125 case OO_Plus: return Plus;
126 case OO_Minus: return Minus;
127 case OO_Tilde: return Not;
128 case OO_Exclaim: return LNot;
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000129 }
130}
131
132OverloadedOperatorKind UnaryOperator::getOverloadedOperator(Opcode Opc) {
133 switch (Opc) {
134 case PostInc: case PreInc: return OO_PlusPlus;
135 case PostDec: case PreDec: return OO_MinusMinus;
136 case AddrOf: return OO_Amp;
137 case Deref: return OO_Star;
138 case Plus: return OO_Plus;
139 case Minus: return OO_Minus;
140 case Not: return OO_Tilde;
141 case LNot: return OO_Exclaim;
142 default: return OO_None;
143 }
144}
145
146
Reid Spencer5f016e22007-07-11 17:01:13 +0000147//===----------------------------------------------------------------------===//
148// Postfix Operators.
149//===----------------------------------------------------------------------===//
150
Ted Kremenek668bf912009-02-09 20:51:47 +0000151CallExpr::CallExpr(ASTContext& C, StmtClass SC, Expr *fn, Expr **args,
Ted Kremenek8189cde2009-02-07 01:47:29 +0000152 unsigned numargs, QualType t, SourceLocation rparenloc)
Douglas Gregor898574e2008-12-05 23:32:09 +0000153 : Expr(SC, t,
154 fn->isTypeDependent() || hasAnyTypeDependentArguments(args, numargs),
Chris Lattnerd603eaa2009-02-16 22:33:34 +0000155 fn->isValueDependent() || hasAnyValueDependentArguments(args,numargs)),
Douglas Gregor898574e2008-12-05 23:32:09 +0000156 NumArgs(numargs) {
Ted Kremenek668bf912009-02-09 20:51:47 +0000157
158 SubExprs = new (C) Stmt*[numargs+1];
Douglas Gregorb4609802008-11-14 16:09:21 +0000159 SubExprs[FN] = fn;
160 for (unsigned i = 0; i != numargs; ++i)
161 SubExprs[i+ARGS_START] = args[i];
Ted Kremenek668bf912009-02-09 20:51:47 +0000162
Douglas Gregorb4609802008-11-14 16:09:21 +0000163 RParenLoc = rparenloc;
164}
Nate Begemane2ce1d92008-01-17 17:46:27 +0000165
Ted Kremenek668bf912009-02-09 20:51:47 +0000166CallExpr::CallExpr(ASTContext& C, Expr *fn, Expr **args, unsigned numargs,
167 QualType t, SourceLocation rparenloc)
Douglas Gregor898574e2008-12-05 23:32:09 +0000168 : Expr(CallExprClass, t,
169 fn->isTypeDependent() || hasAnyTypeDependentArguments(args, numargs),
Chris Lattnerd603eaa2009-02-16 22:33:34 +0000170 fn->isValueDependent() || hasAnyValueDependentArguments(args,numargs)),
Douglas Gregor898574e2008-12-05 23:32:09 +0000171 NumArgs(numargs) {
Ted Kremenek668bf912009-02-09 20:51:47 +0000172
173 SubExprs = new (C) Stmt*[numargs+1];
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000174 SubExprs[FN] = fn;
Reid Spencer5f016e22007-07-11 17:01:13 +0000175 for (unsigned i = 0; i != numargs; ++i)
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000176 SubExprs[i+ARGS_START] = args[i];
Ted Kremenek668bf912009-02-09 20:51:47 +0000177
Reid Spencer5f016e22007-07-11 17:01:13 +0000178 RParenLoc = rparenloc;
179}
180
Argyrios Kyrtzidisba0a9002009-07-14 03:19:21 +0000181CallExpr::CallExpr(ASTContext &C, StmtClass SC, EmptyShell Empty)
182 : Expr(SC, Empty), SubExprs(0), NumArgs(0) {
Douglas Gregor1f0d0132009-04-15 17:43:59 +0000183 SubExprs = new (C) Stmt*[1];
184}
185
Douglas Gregor42602bb2009-08-07 06:08:38 +0000186void CallExpr::DoDestroy(ASTContext& C) {
Ted Kremenek668bf912009-02-09 20:51:47 +0000187 DestroyChildren(C);
188 if (SubExprs) C.Deallocate(SubExprs);
189 this->~CallExpr();
190 C.Deallocate(this);
191}
192
Zhongxing Xua0042542009-07-17 07:29:51 +0000193FunctionDecl *CallExpr::getDirectCallee() {
194 Expr *CEE = getCallee()->IgnoreParenCasts();
Chris Lattner6346f962009-07-17 15:46:27 +0000195 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CEE))
Zhongxing Xua0042542009-07-17 07:29:51 +0000196 return dyn_cast<FunctionDecl>(DRE->getDecl());
Zhongxing Xua0042542009-07-17 07:29:51 +0000197
198 return 0;
199}
200
Chris Lattnerd18b3292007-12-28 05:25:02 +0000201/// setNumArgs - This changes the number of arguments present in this call.
202/// Any orphaned expressions are deleted by this, and any new operands are set
203/// to null.
Ted Kremenek8189cde2009-02-07 01:47:29 +0000204void CallExpr::setNumArgs(ASTContext& C, unsigned NumArgs) {
Chris Lattnerd18b3292007-12-28 05:25:02 +0000205 // No change, just return.
206 if (NumArgs == getNumArgs()) return;
207
208 // If shrinking # arguments, just delete the extras and forgot them.
209 if (NumArgs < getNumArgs()) {
210 for (unsigned i = NumArgs, e = getNumArgs(); i != e; ++i)
Ted Kremenek8189cde2009-02-07 01:47:29 +0000211 getArg(i)->Destroy(C);
Chris Lattnerd18b3292007-12-28 05:25:02 +0000212 this->NumArgs = NumArgs;
213 return;
214 }
215
216 // Otherwise, we are growing the # arguments. New an bigger argument array.
Daniel Dunbar68a049c2009-07-28 06:29:46 +0000217 Stmt **NewSubExprs = new (C) Stmt*[NumArgs+1];
Chris Lattnerd18b3292007-12-28 05:25:02 +0000218 // Copy over args.
219 for (unsigned i = 0; i != getNumArgs()+ARGS_START; ++i)
220 NewSubExprs[i] = SubExprs[i];
221 // Null out new args.
222 for (unsigned i = getNumArgs()+ARGS_START; i != NumArgs+ARGS_START; ++i)
223 NewSubExprs[i] = 0;
224
Douglas Gregor88c9a462009-04-17 21:46:47 +0000225 if (SubExprs) C.Deallocate(SubExprs);
Chris Lattnerd18b3292007-12-28 05:25:02 +0000226 SubExprs = NewSubExprs;
227 this->NumArgs = NumArgs;
228}
229
Chris Lattnercb888962008-10-06 05:00:53 +0000230/// isBuiltinCall - If this is a call to a builtin, return the builtin ID. If
231/// not, return 0.
Douglas Gregor3c385e52009-02-14 18:57:46 +0000232unsigned CallExpr::isBuiltinCall(ASTContext &Context) const {
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000233 // All simple function calls (e.g. func()) are implicitly cast to pointer to
234 // function. As a result, we try and obtain the DeclRefExpr from the
235 // ImplicitCastExpr.
236 const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee());
237 if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()).
Chris Lattnercb888962008-10-06 05:00:53 +0000238 return 0;
239
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000240 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr());
241 if (!DRE)
Chris Lattnercb888962008-10-06 05:00:53 +0000242 return 0;
243
Anders Carlssonbcba2012008-01-31 02:13:57 +0000244 const FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl());
245 if (!FDecl)
Chris Lattnercb888962008-10-06 05:00:53 +0000246 return 0;
247
Douglas Gregor4fcd3992008-11-21 15:30:19 +0000248 if (!FDecl->getIdentifier())
249 return 0;
250
Douglas Gregor3c385e52009-02-14 18:57:46 +0000251 return FDecl->getBuiltinID(Context);
Chris Lattnercb888962008-10-06 05:00:53 +0000252}
Anders Carlssonbcba2012008-01-31 02:13:57 +0000253
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000254QualType CallExpr::getCallReturnType() const {
255 QualType CalleeType = getCallee()->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000256 if (const PointerType *FnTypePtr = CalleeType->getAs<PointerType>())
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000257 CalleeType = FnTypePtr->getPointeeType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000258 else if (const BlockPointerType *BPT = CalleeType->getAs<BlockPointerType>())
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000259 CalleeType = BPT->getPointeeType();
260
261 const FunctionType *FnType = CalleeType->getAsFunctionType();
262 return FnType->getResultType();
263}
Chris Lattnercb888962008-10-06 05:00:53 +0000264
Reid Spencer5f016e22007-07-11 17:01:13 +0000265/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
266/// corresponds to, e.g. "<<=".
267const char *BinaryOperator::getOpcodeStr(Opcode Op) {
268 switch (Op) {
Douglas Gregorbaf53482009-03-12 22:51:37 +0000269 case PtrMemD: return ".*";
270 case PtrMemI: return "->*";
Reid Spencer5f016e22007-07-11 17:01:13 +0000271 case Mul: return "*";
272 case Div: return "/";
273 case Rem: return "%";
274 case Add: return "+";
275 case Sub: return "-";
276 case Shl: return "<<";
277 case Shr: return ">>";
278 case LT: return "<";
279 case GT: return ">";
280 case LE: return "<=";
281 case GE: return ">=";
282 case EQ: return "==";
283 case NE: return "!=";
284 case And: return "&";
285 case Xor: return "^";
286 case Or: return "|";
287 case LAnd: return "&&";
288 case LOr: return "||";
289 case Assign: return "=";
290 case MulAssign: return "*=";
291 case DivAssign: return "/=";
292 case RemAssign: return "%=";
293 case AddAssign: return "+=";
294 case SubAssign: return "-=";
295 case ShlAssign: return "<<=";
296 case ShrAssign: return ">>=";
297 case AndAssign: return "&=";
298 case XorAssign: return "^=";
299 case OrAssign: return "|=";
300 case Comma: return ",";
301 }
Douglas Gregorbaf53482009-03-12 22:51:37 +0000302
303 return "";
Reid Spencer5f016e22007-07-11 17:01:13 +0000304}
305
Douglas Gregor063daf62009-03-13 18:40:31 +0000306BinaryOperator::Opcode
307BinaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO) {
308 switch (OO) {
Chris Lattnerb7beee92009-03-22 00:10:22 +0000309 default: assert(false && "Not an overloadable binary operator");
Douglas Gregor063daf62009-03-13 18:40:31 +0000310 case OO_Plus: return Add;
311 case OO_Minus: return Sub;
312 case OO_Star: return Mul;
313 case OO_Slash: return Div;
314 case OO_Percent: return Rem;
315 case OO_Caret: return Xor;
316 case OO_Amp: return And;
317 case OO_Pipe: return Or;
318 case OO_Equal: return Assign;
319 case OO_Less: return LT;
320 case OO_Greater: return GT;
321 case OO_PlusEqual: return AddAssign;
322 case OO_MinusEqual: return SubAssign;
323 case OO_StarEqual: return MulAssign;
324 case OO_SlashEqual: return DivAssign;
325 case OO_PercentEqual: return RemAssign;
326 case OO_CaretEqual: return XorAssign;
327 case OO_AmpEqual: return AndAssign;
328 case OO_PipeEqual: return OrAssign;
329 case OO_LessLess: return Shl;
330 case OO_GreaterGreater: return Shr;
331 case OO_LessLessEqual: return ShlAssign;
332 case OO_GreaterGreaterEqual: return ShrAssign;
333 case OO_EqualEqual: return EQ;
334 case OO_ExclaimEqual: return NE;
335 case OO_LessEqual: return LE;
336 case OO_GreaterEqual: return GE;
337 case OO_AmpAmp: return LAnd;
338 case OO_PipePipe: return LOr;
339 case OO_Comma: return Comma;
340 case OO_ArrowStar: return PtrMemI;
Douglas Gregor063daf62009-03-13 18:40:31 +0000341 }
342}
343
344OverloadedOperatorKind BinaryOperator::getOverloadedOperator(Opcode Opc) {
345 static const OverloadedOperatorKind OverOps[] = {
346 /* .* Cannot be overloaded */OO_None, OO_ArrowStar,
347 OO_Star, OO_Slash, OO_Percent,
348 OO_Plus, OO_Minus,
349 OO_LessLess, OO_GreaterGreater,
350 OO_Less, OO_Greater, OO_LessEqual, OO_GreaterEqual,
351 OO_EqualEqual, OO_ExclaimEqual,
352 OO_Amp,
353 OO_Caret,
354 OO_Pipe,
355 OO_AmpAmp,
356 OO_PipePipe,
357 OO_Equal, OO_StarEqual,
358 OO_SlashEqual, OO_PercentEqual,
359 OO_PlusEqual, OO_MinusEqual,
360 OO_LessLessEqual, OO_GreaterGreaterEqual,
361 OO_AmpEqual, OO_CaretEqual,
362 OO_PipeEqual,
363 OO_Comma
364 };
365 return OverOps[Opc];
366}
367
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000368InitListExpr::InitListExpr(SourceLocation lbraceloc,
Chris Lattner418f6c72008-10-26 23:43:26 +0000369 Expr **initExprs, unsigned numInits,
Douglas Gregor4c678342009-01-28 21:54:33 +0000370 SourceLocation rbraceloc)
Douglas Gregor9ea62762009-05-21 23:17:49 +0000371 : Expr(InitListExprClass, QualType(),
372 hasAnyTypeDependentArguments(initExprs, numInits),
373 hasAnyValueDependentArguments(initExprs, numInits)),
Douglas Gregor0bb76892009-01-29 16:53:55 +0000374 LBraceLoc(lbraceloc), RBraceLoc(rbraceloc), SyntacticForm(0),
Douglas Gregora9c87802009-01-29 19:42:23 +0000375 UnionFieldInit(0), HadArrayRangeDesignator(false) {
Chris Lattner418f6c72008-10-26 23:43:26 +0000376
377 InitExprs.insert(InitExprs.end(), initExprs, initExprs+numInits);
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000378}
Reid Spencer5f016e22007-07-11 17:01:13 +0000379
Douglas Gregorfa219202009-03-20 23:58:33 +0000380void InitListExpr::reserveInits(unsigned NumInits) {
381 if (NumInits > InitExprs.size())
382 InitExprs.reserve(NumInits);
383}
384
Douglas Gregor4c678342009-01-28 21:54:33 +0000385void InitListExpr::resizeInits(ASTContext &Context, unsigned NumInits) {
Chris Lattnerd603eaa2009-02-16 22:33:34 +0000386 for (unsigned Idx = NumInits, LastIdx = InitExprs.size();
Daniel Dunbarf592c922009-02-16 22:42:44 +0000387 Idx < LastIdx; ++Idx)
Douglas Gregor06863682009-03-20 23:38:03 +0000388 InitExprs[Idx]->Destroy(Context);
Douglas Gregor4c678342009-01-28 21:54:33 +0000389 InitExprs.resize(NumInits, 0);
390}
391
392Expr *InitListExpr::updateInit(unsigned Init, Expr *expr) {
393 if (Init >= InitExprs.size()) {
394 InitExprs.insert(InitExprs.end(), Init - InitExprs.size() + 1, 0);
395 InitExprs.back() = expr;
396 return 0;
397 }
398
399 Expr *Result = cast_or_null<Expr>(InitExprs[Init]);
400 InitExprs[Init] = expr;
401 return Result;
402}
403
Steve Naroffbfdcae62008-09-04 15:31:07 +0000404/// getFunctionType - Return the underlying function type for this block.
Steve Naroff4eb206b2008-09-03 18:15:37 +0000405///
406const FunctionType *BlockExpr::getFunctionType() const {
Ted Kremenek6217b802009-07-29 21:53:49 +0000407 return getType()->getAs<BlockPointerType>()->
Steve Naroff4eb206b2008-09-03 18:15:37 +0000408 getPointeeType()->getAsFunctionType();
409}
410
Steve Naroff56ee6892008-10-08 17:01:13 +0000411SourceLocation BlockExpr::getCaretLocation() const {
412 return TheBlock->getCaretLocation();
413}
Douglas Gregor72971342009-04-18 00:02:19 +0000414const Stmt *BlockExpr::getBody() const {
415 return TheBlock->getBody();
416}
417Stmt *BlockExpr::getBody() {
418 return TheBlock->getBody();
419}
Steve Naroff56ee6892008-10-08 17:01:13 +0000420
421
Reid Spencer5f016e22007-07-11 17:01:13 +0000422//===----------------------------------------------------------------------===//
423// Generic Expression Routines
424//===----------------------------------------------------------------------===//
425
Chris Lattner026dc962009-02-14 07:37:35 +0000426/// isUnusedResultAWarning - Return true if this immediate expression should
427/// be warned about if the result is unused. If so, fill in Loc and Ranges
428/// with location to warn on and the source range[s] to report with the
429/// warning.
430bool Expr::isUnusedResultAWarning(SourceLocation &Loc, SourceRange &R1,
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000431 SourceRange &R2) const {
Anders Carlssonffce2df2009-05-15 23:10:19 +0000432 // Don't warn if the expr is type dependent. The type could end up
433 // instantiating to void.
434 if (isTypeDependent())
435 return false;
436
Reid Spencer5f016e22007-07-11 17:01:13 +0000437 switch (getStmtClass()) {
438 default:
Chris Lattner026dc962009-02-14 07:37:35 +0000439 Loc = getExprLoc();
440 R1 = getSourceRange();
441 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000442 case ParenExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000443 return cast<ParenExpr>(this)->getSubExpr()->
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000444 isUnusedResultAWarning(Loc, R1, R2);
Reid Spencer5f016e22007-07-11 17:01:13 +0000445 case UnaryOperatorClass: {
446 const UnaryOperator *UO = cast<UnaryOperator>(this);
447
448 switch (UO->getOpcode()) {
Chris Lattner026dc962009-02-14 07:37:35 +0000449 default: break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000450 case UnaryOperator::PostInc:
451 case UnaryOperator::PostDec:
452 case UnaryOperator::PreInc:
Chris Lattner026dc962009-02-14 07:37:35 +0000453 case UnaryOperator::PreDec: // ++/--
454 return false; // Not a warning.
Reid Spencer5f016e22007-07-11 17:01:13 +0000455 case UnaryOperator::Deref:
456 // Dereferencing a volatile pointer is a side-effect.
Chris Lattner026dc962009-02-14 07:37:35 +0000457 if (getType().isVolatileQualified())
458 return false;
459 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000460 case UnaryOperator::Real:
461 case UnaryOperator::Imag:
462 // accessing a piece of a volatile complex is a side-effect.
Chris Lattner026dc962009-02-14 07:37:35 +0000463 if (UO->getSubExpr()->getType().isVolatileQualified())
464 return false;
465 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000466 case UnaryOperator::Extension:
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000467 return UO->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2);
Reid Spencer5f016e22007-07-11 17:01:13 +0000468 }
Chris Lattner026dc962009-02-14 07:37:35 +0000469 Loc = UO->getOperatorLoc();
470 R1 = UO->getSubExpr()->getSourceRange();
471 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000472 }
Chris Lattnere7716e62007-12-01 06:07:34 +0000473 case BinaryOperatorClass: {
Chris Lattner026dc962009-02-14 07:37:35 +0000474 const BinaryOperator *BO = cast<BinaryOperator>(this);
475 // Consider comma to have side effects if the LHS or RHS does.
476 if (BO->getOpcode() == BinaryOperator::Comma)
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000477 return BO->getRHS()->isUnusedResultAWarning(Loc, R1, R2) ||
478 BO->getLHS()->isUnusedResultAWarning(Loc, R1, R2);
Chris Lattnere7716e62007-12-01 06:07:34 +0000479
Chris Lattner026dc962009-02-14 07:37:35 +0000480 if (BO->isAssignmentOp())
481 return false;
482 Loc = BO->getOperatorLoc();
483 R1 = BO->getLHS()->getSourceRange();
484 R2 = BO->getRHS()->getSourceRange();
485 return true;
Chris Lattnere7716e62007-12-01 06:07:34 +0000486 }
Chris Lattnereb14fe82007-08-25 02:00:02 +0000487 case CompoundAssignOperatorClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000488 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000489
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +0000490 case ConditionalOperatorClass: {
Chris Lattner026dc962009-02-14 07:37:35 +0000491 // The condition must be evaluated, but if either the LHS or RHS is a
492 // warning, warn about them.
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +0000493 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
Douglas Gregor68584ed2009-06-18 16:11:24 +0000494 if (Exp->getLHS() &&
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000495 Exp->getLHS()->isUnusedResultAWarning(Loc, R1, R2))
Chris Lattner026dc962009-02-14 07:37:35 +0000496 return true;
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000497 return Exp->getRHS()->isUnusedResultAWarning(Loc, R1, R2);
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +0000498 }
499
Reid Spencer5f016e22007-07-11 17:01:13 +0000500 case MemberExprClass:
Douglas Gregor0979c802009-08-31 21:41:48 +0000501 case CXXAdornedMemberExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000502 // If the base pointer or element is to a volatile pointer/field, accessing
503 // it is a side effect.
504 if (getType().isVolatileQualified())
505 return false;
506 Loc = cast<MemberExpr>(this)->getMemberLoc();
507 R1 = SourceRange(Loc, Loc);
508 R2 = cast<MemberExpr>(this)->getBase()->getSourceRange();
509 return true;
510
Reid Spencer5f016e22007-07-11 17:01:13 +0000511 case ArraySubscriptExprClass:
512 // If the base pointer or element is to a volatile pointer/field, accessing
Chris Lattner026dc962009-02-14 07:37:35 +0000513 // it is a side effect.
514 if (getType().isVolatileQualified())
515 return false;
516 Loc = cast<ArraySubscriptExpr>(this)->getRBracketLoc();
517 R1 = cast<ArraySubscriptExpr>(this)->getLHS()->getSourceRange();
518 R2 = cast<ArraySubscriptExpr>(this)->getRHS()->getSourceRange();
519 return true;
Eli Friedman211f6ad2008-05-27 15:24:04 +0000520
Reid Spencer5f016e22007-07-11 17:01:13 +0000521 case CallExprClass:
Eli Friedman852871a2009-04-29 16:35:53 +0000522 case CXXOperatorCallExprClass:
523 case CXXMemberCallExprClass: {
Chris Lattner026dc962009-02-14 07:37:35 +0000524 // If this is a direct call, get the callee.
525 const CallExpr *CE = cast<CallExpr>(this);
526 const Expr *CalleeExpr = CE->getCallee()->IgnoreParenCasts();
527 if (const DeclRefExpr *CalleeDRE = dyn_cast<DeclRefExpr>(CalleeExpr)) {
528 // If the callee has attribute pure, const, or warn_unused_result, warn
529 // about it. void foo() { strlen("bar"); } should warn.
530 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CalleeDRE->getDecl()))
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000531 if (FD->getAttr<WarnUnusedResultAttr>() ||
532 FD->getAttr<PureAttr>() || FD->getAttr<ConstAttr>()) {
Chris Lattner026dc962009-02-14 07:37:35 +0000533 Loc = CE->getCallee()->getLocStart();
534 R1 = CE->getCallee()->getSourceRange();
535
536 if (unsigned NumArgs = CE->getNumArgs())
537 R2 = SourceRange(CE->getArg(0)->getLocStart(),
538 CE->getArg(NumArgs-1)->getLocEnd());
539 return true;
540 }
541 }
542 return false;
543 }
Chris Lattnera9c01022007-09-26 22:06:30 +0000544 case ObjCMessageExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000545 return false;
Chris Lattnera50089e2009-08-16 16:45:18 +0000546
Fariborz Jahanian09105f52009-08-20 17:02:02 +0000547 case ObjCImplicitSetterGetterRefExprClass: { // Dot syntax for message send.
Chris Lattnera50089e2009-08-16 16:45:18 +0000548#if 0
Fariborz Jahanian09105f52009-08-20 17:02:02 +0000549 const ObjCImplicitSetterGetterRefExpr *Ref =
550 cast<ObjCImplicitSetterGetterRefExpr>(this);
Chris Lattnera50089e2009-08-16 16:45:18 +0000551 // FIXME: We really want the location of the '.' here.
Fariborz Jahanian154440e2009-08-18 20:50:23 +0000552 Loc = Ref->getLocation();
553 R1 = SourceRange(Ref->getLocation(), Ref->getLocation());
554 if (Ref->getBase())
555 R2 = Ref->getBase()->getSourceRange();
Chris Lattner5e94a0d2009-08-16 16:51:50 +0000556#else
557 Loc = getExprLoc();
558 R1 = getSourceRange();
Chris Lattnera50089e2009-08-16 16:45:18 +0000559#endif
560 return true;
561 }
Chris Lattner611b2ec2008-07-26 19:51:01 +0000562 case StmtExprClass: {
563 // Statement exprs don't logically have side effects themselves, but are
564 // sometimes used in macros in ways that give them a type that is unused.
565 // For example ({ blah; foo(); }) will end up with a type if foo has a type.
566 // however, if the result of the stmt expr is dead, we don't want to emit a
567 // warning.
568 const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt();
569 if (!CS->body_empty())
570 if (const Expr *E = dyn_cast<Expr>(CS->body_back()))
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000571 return E->isUnusedResultAWarning(Loc, R1, R2);
Chris Lattner026dc962009-02-14 07:37:35 +0000572
573 Loc = cast<StmtExpr>(this)->getLParenLoc();
574 R1 = getSourceRange();
575 return true;
Chris Lattner611b2ec2008-07-26 19:51:01 +0000576 }
Douglas Gregor6eec8e82008-10-28 15:36:24 +0000577 case CStyleCastExprClass:
Chris Lattnerfb846642009-07-28 18:25:28 +0000578 // If this is an explicit cast to void, allow it. People do this when they
579 // think they know what they're doing :).
Chris Lattner026dc962009-02-14 07:37:35 +0000580 if (getType()->isVoidType())
Chris Lattnerfb846642009-07-28 18:25:28 +0000581 return false;
Chris Lattner026dc962009-02-14 07:37:35 +0000582 Loc = cast<CStyleCastExpr>(this)->getLParenLoc();
583 R1 = cast<CStyleCastExpr>(this)->getSubExpr()->getSourceRange();
584 return true;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000585 case CXXFunctionalCastExprClass:
Reid Spencer5f016e22007-07-11 17:01:13 +0000586 // If this is a cast to void, check the operand. Otherwise, the result of
587 // the cast is unused.
588 if (getType()->isVoidType())
Douglas Gregor68584ed2009-06-18 16:11:24 +0000589 return cast<CastExpr>(this)->getSubExpr()
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000590 ->isUnusedResultAWarning(Loc, R1, R2);
Chris Lattner026dc962009-02-14 07:37:35 +0000591 Loc = cast<CXXFunctionalCastExpr>(this)->getTypeBeginLoc();
592 R1 = cast<CXXFunctionalCastExpr>(this)->getSubExpr()->getSourceRange();
593 return true;
594
Eli Friedman4be1f472008-05-19 21:24:43 +0000595 case ImplicitCastExprClass:
596 // Check the operand, since implicit casts are inserted by Sema
Chris Lattner026dc962009-02-14 07:37:35 +0000597 return cast<ImplicitCastExpr>(this)
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000598 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2);
Eli Friedman4be1f472008-05-19 21:24:43 +0000599
Chris Lattner04421082008-04-08 04:40:51 +0000600 case CXXDefaultArgExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000601 return cast<CXXDefaultArgExpr>(this)
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000602 ->getExpr()->isUnusedResultAWarning(Loc, R1, R2);
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000603
604 case CXXNewExprClass:
605 // FIXME: In theory, there might be new expressions that don't have side
606 // effects (e.g. a placement new with an uninitialized POD).
607 case CXXDeleteExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +0000608 return false;
Anders Carlsson2d46eb22009-08-16 04:11:06 +0000609 case CXXBindTemporaryExprClass:
610 return cast<CXXBindTemporaryExpr>(this)
611 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2);
Anders Carlsson6b1d2832009-05-17 21:11:30 +0000612 case CXXExprWithTemporariesClass:
613 return cast<CXXExprWithTemporaries>(this)
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000614 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2);
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000615 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000616}
617
Douglas Gregorba7e2102008-10-22 15:04:37 +0000618/// DeclCanBeLvalue - Determine whether the given declaration can be
619/// an lvalue. This is a helper routine for isLvalue.
620static bool DeclCanBeLvalue(const NamedDecl *Decl, ASTContext &Ctx) {
Douglas Gregor72c3f312008-12-05 18:15:24 +0000621 // C++ [temp.param]p6:
622 // A non-type non-reference template-parameter is not an lvalue.
623 if (const NonTypeTemplateParmDecl *NTTParm
624 = dyn_cast<NonTypeTemplateParmDecl>(Decl))
625 return NTTParm->getType()->isReferenceType();
626
Douglas Gregor44b43212008-12-11 16:49:14 +0000627 return isa<VarDecl>(Decl) || isa<FieldDecl>(Decl) ||
Douglas Gregorba7e2102008-10-22 15:04:37 +0000628 // C++ 3.10p2: An lvalue refers to an object or function.
629 (Ctx.getLangOptions().CPlusPlus &&
Douglas Gregor83314aa2009-07-08 20:55:45 +0000630 (isa<FunctionDecl>(Decl) || isa<OverloadedFunctionDecl>(Decl) ||
631 isa<FunctionTemplateDecl>(Decl)));
Douglas Gregorba7e2102008-10-22 15:04:37 +0000632}
633
Reid Spencer5f016e22007-07-11 17:01:13 +0000634/// isLvalue - C99 6.3.2.1: an lvalue is an expression with an object type or an
635/// incomplete type other than void. Nonarray expressions that can be lvalues:
636/// - name, where name must be a variable
637/// - e[i]
638/// - (e), where e must be an lvalue
639/// - e.name, where e must be an lvalue
640/// - e->name
641/// - *e, the type of e cannot be a function type
642/// - string-constant
Chris Lattner7da36f62007-10-30 22:53:42 +0000643/// - (__real__ e) and (__imag__ e) where e is an lvalue [GNU extension]
Bill Wendling08ad47c2007-07-17 03:52:31 +0000644/// - reference type [C++ [expr]]
Reid Spencer5f016e22007-07-11 17:01:13 +0000645///
Chris Lattner28be73f2008-07-26 21:30:36 +0000646Expr::isLvalueResult Expr::isLvalue(ASTContext &Ctx) const {
Eli Friedman53202852009-05-03 22:36:05 +0000647 assert(!TR->isReferenceType() && "Expressions can't have reference type.");
648
649 isLvalueResult Res = isLvalueInternal(Ctx);
650 if (Res != LV_Valid || Ctx.getLangOptions().CPlusPlus)
651 return Res;
652
Douglas Gregor98cd5992008-10-21 23:43:52 +0000653 // first, check the type (C99 6.3.2.1). Expressions with function
654 // type in C are not lvalues, but they can be lvalues in C++.
Douglas Gregor83314aa2009-07-08 20:55:45 +0000655 if (TR->isFunctionType() || TR == Ctx.OverloadTy)
Reid Spencer5f016e22007-07-11 17:01:13 +0000656 return LV_NotObjectType;
657
Steve Naroffacb818a2008-02-10 01:39:04 +0000658 // Allow qualified void which is an incomplete type other than void (yuck).
Chris Lattner28be73f2008-07-26 21:30:36 +0000659 if (TR->isVoidType() && !Ctx.getCanonicalType(TR).getCVRQualifiers())
Steve Naroffacb818a2008-02-10 01:39:04 +0000660 return LV_IncompleteVoidType;
661
Eli Friedman53202852009-05-03 22:36:05 +0000662 return LV_Valid;
663}
Bill Wendling08ad47c2007-07-17 03:52:31 +0000664
Eli Friedman53202852009-05-03 22:36:05 +0000665// Check whether the expression can be sanely treated like an l-value
666Expr::isLvalueResult Expr::isLvalueInternal(ASTContext &Ctx) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000667 switch (getStmtClass()) {
Chris Lattnereaf2bb82009-02-24 22:18:39 +0000668 case StringLiteralClass: // C99 6.5.1p4
669 case ObjCEncodeExprClass: // @encode behaves like its string in every way.
Anders Carlsson7323a622007-11-30 22:47:59 +0000670 return LV_Valid;
Reid Spencer5f016e22007-07-11 17:01:13 +0000671 case ArraySubscriptExprClass: // C99 6.5.3p4 (e1[e2] == (*((e1)+(e2))))
672 // For vectors, make sure base is an lvalue (i.e. not a function call).
673 if (cast<ArraySubscriptExpr>(this)->getBase()->getType()->isVectorType())
Chris Lattner28be73f2008-07-26 21:30:36 +0000674 return cast<ArraySubscriptExpr>(this)->getBase()->isLvalue(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000675 return LV_Valid;
Douglas Gregor1a49af92009-01-06 05:10:23 +0000676 case DeclRefExprClass:
677 case QualifiedDeclRefExprClass: { // C99 6.5.1p2
Douglas Gregorba7e2102008-10-22 15:04:37 +0000678 const NamedDecl *RefdDecl = cast<DeclRefExpr>(this)->getDecl();
679 if (DeclCanBeLvalue(RefdDecl, Ctx))
Reid Spencer5f016e22007-07-11 17:01:13 +0000680 return LV_Valid;
681 break;
Chris Lattner41110242008-06-17 18:05:57 +0000682 }
Steve Naroffdd972f22008-09-05 22:11:13 +0000683 case BlockDeclRefExprClass: {
684 const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(this);
Steve Naroff4f6a7d72008-09-26 14:41:28 +0000685 if (isa<VarDecl>(BDR->getDecl()))
Steve Naroffdd972f22008-09-05 22:11:13 +0000686 return LV_Valid;
687 break;
688 }
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +0000689 case MemberExprClass:
Douglas Gregor0979c802009-08-31 21:41:48 +0000690 case CXXAdornedMemberExprClass: {
Reid Spencer5f016e22007-07-11 17:01:13 +0000691 const MemberExpr *m = cast<MemberExpr>(this);
Douglas Gregor86f19402008-12-20 23:49:58 +0000692 if (Ctx.getLangOptions().CPlusPlus) { // C++ [expr.ref]p4:
693 NamedDecl *Member = m->getMemberDecl();
694 // C++ [expr.ref]p4:
695 // If E2 is declared to have type "reference to T", then E1.E2
696 // is an lvalue.
697 if (ValueDecl *Value = dyn_cast<ValueDecl>(Member))
698 if (Value->getType()->isReferenceType())
699 return LV_Valid;
700
701 // -- If E2 is a static data member [...] then E1.E2 is an lvalue.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +0000702 if (isa<VarDecl>(Member) && Member->getDeclContext()->isRecord())
Douglas Gregor86f19402008-12-20 23:49:58 +0000703 return LV_Valid;
704
705 // -- If E2 is a non-static data member [...]. If E1 is an
706 // lvalue, then E1.E2 is an lvalue.
707 if (isa<FieldDecl>(Member))
708 return m->isArrow() ? LV_Valid : m->getBase()->isLvalue(Ctx);
709
710 // -- If it refers to a static member function [...], then
711 // E1.E2 is an lvalue.
712 // -- Otherwise, if E1.E2 refers to a non-static member
713 // function [...], then E1.E2 is not an lvalue.
714 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member))
715 return Method->isStatic()? LV_Valid : LV_MemberFunction;
716
717 // -- If E2 is a member enumerator [...], the expression E1.E2
718 // is not an lvalue.
719 if (isa<EnumConstantDecl>(Member))
720 return LV_InvalidExpression;
721
722 // Not an lvalue.
723 return LV_InvalidExpression;
724 }
725
726 // C99 6.5.2.3p4
Chris Lattner28be73f2008-07-26 21:30:36 +0000727 return m->isArrow() ? LV_Valid : m->getBase()->isLvalue(Ctx);
Anton Korobeynikovfdd75662007-07-12 15:26:50 +0000728 }
Chris Lattner7da36f62007-10-30 22:53:42 +0000729 case UnaryOperatorClass:
Reid Spencer5f016e22007-07-11 17:01:13 +0000730 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Deref)
Chris Lattner7da36f62007-10-30 22:53:42 +0000731 return LV_Valid; // C99 6.5.3p4
732
733 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Real ||
Chris Lattnerbaf0d662008-07-25 18:07:19 +0000734 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Imag ||
735 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Extension)
Chris Lattner28be73f2008-07-26 21:30:36 +0000736 return cast<UnaryOperator>(this)->getSubExpr()->isLvalue(Ctx); // GNU.
Douglas Gregor74253732008-11-19 15:42:04 +0000737
738 if (Ctx.getLangOptions().CPlusPlus && // C++ [expr.pre.incr]p1
739 (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::PreInc ||
740 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::PreDec))
741 return LV_Valid;
Reid Spencer5f016e22007-07-11 17:01:13 +0000742 break;
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000743 case ImplicitCastExprClass:
744 return cast<ImplicitCastExpr>(this)->isLvalueCast()? LV_Valid
745 : LV_InvalidExpression;
Reid Spencer5f016e22007-07-11 17:01:13 +0000746 case ParenExprClass: // C99 6.5.1p5
Chris Lattner28be73f2008-07-26 21:30:36 +0000747 return cast<ParenExpr>(this)->getSubExpr()->isLvalue(Ctx);
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000748 case BinaryOperatorClass:
749 case CompoundAssignOperatorClass: {
750 const BinaryOperator *BinOp = cast<BinaryOperator>(this);
Douglas Gregor337c6b92008-11-19 17:17:41 +0000751
752 if (Ctx.getLangOptions().CPlusPlus && // C++ [expr.comma]p1
753 BinOp->getOpcode() == BinaryOperator::Comma)
754 return BinOp->getRHS()->isLvalue(Ctx);
755
Sebastian Redl22460502009-02-07 00:15:38 +0000756 // C++ [expr.mptr.oper]p6
757 if ((BinOp->getOpcode() == BinaryOperator::PtrMemD ||
758 BinOp->getOpcode() == BinaryOperator::PtrMemI) &&
759 !BinOp->getType()->isFunctionType())
760 return BinOp->getLHS()->isLvalue(Ctx);
761
Douglas Gregorbf3af052008-11-13 20:12:29 +0000762 if (!BinOp->isAssignmentOp())
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000763 return LV_InvalidExpression;
764
Douglas Gregorbf3af052008-11-13 20:12:29 +0000765 if (Ctx.getLangOptions().CPlusPlus)
766 // C++ [expr.ass]p1:
767 // The result of an assignment operation [...] is an lvalue.
768 return LV_Valid;
769
770
771 // C99 6.5.16:
772 // An assignment expression [...] is not an lvalue.
773 return LV_InvalidExpression;
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000774 }
Douglas Gregorb4609802008-11-14 16:09:21 +0000775 case CallExprClass:
Douglas Gregor88a35142008-12-22 05:46:06 +0000776 case CXXOperatorCallExprClass:
777 case CXXMemberCallExprClass: {
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000778 // C++0x [expr.call]p10
Douglas Gregor9d293df2008-10-28 00:22:11 +0000779 // A function call is an lvalue if and only if the result type
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000780 // is an lvalue reference.
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000781 QualType ReturnType = cast<CallExpr>(this)->getCallReturnType();
782 if (ReturnType->isLValueReferenceType())
783 return LV_Valid;
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000784
Douglas Gregor9d293df2008-10-28 00:22:11 +0000785 break;
786 }
Steve Naroffe6386392007-12-05 04:00:10 +0000787 case CompoundLiteralExprClass: // C99 6.5.2.5p5
788 return LV_Valid;
Chris Lattner670a62c2008-12-12 05:35:08 +0000789 case ChooseExprClass:
790 // __builtin_choose_expr is an lvalue if the selected operand is.
Eli Friedman79769322009-03-04 05:52:32 +0000791 return cast<ChooseExpr>(this)->getChosenSubExpr(Ctx)->isLvalue(Ctx);
Nate Begeman213541a2008-04-18 23:10:10 +0000792 case ExtVectorElementExprClass:
793 if (cast<ExtVectorElementExpr>(this)->containsDuplicateElements())
Steve Narofffec0b492007-07-30 03:29:09 +0000794 return LV_DuplicateVectorComponents;
795 return LV_Valid;
Steve Naroff027282d2007-11-12 14:34:27 +0000796 case ObjCIvarRefExprClass: // ObjC instance variables are lvalues.
797 return LV_Valid;
Steve Naroff799a6a62008-05-30 23:23:16 +0000798 case ObjCPropertyRefExprClass: // FIXME: check if read-only property.
799 return LV_Valid;
Fariborz Jahanian09105f52009-08-20 17:02:02 +0000800 case ObjCImplicitSetterGetterRefExprClass: // FIXME: check if read-only property.
Chris Lattner670a62c2008-12-12 05:35:08 +0000801 return LV_Valid;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000802 case PredefinedExprClass:
Douglas Gregor796da182008-11-04 14:32:21 +0000803 return LV_Valid;
Chris Lattner04421082008-04-08 04:40:51 +0000804 case CXXDefaultArgExprClass:
Chris Lattner28be73f2008-07-26 21:30:36 +0000805 return cast<CXXDefaultArgExpr>(this)->getExpr()->isLvalue(Ctx);
Argyrios Kyrtzidis24b41fa2008-09-11 04:22:26 +0000806 case CXXConditionDeclExprClass:
807 return LV_Valid;
Douglas Gregor6eec8e82008-10-28 15:36:24 +0000808 case CStyleCastExprClass:
Douglas Gregor9d293df2008-10-28 00:22:11 +0000809 case CXXFunctionalCastExprClass:
810 case CXXStaticCastExprClass:
811 case CXXDynamicCastExprClass:
812 case CXXReinterpretCastExprClass:
813 case CXXConstCastExprClass:
814 // The result of an explicit cast is an lvalue if the type we are
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000815 // casting to is an lvalue reference type. See C++ [expr.cast]p1,
Douglas Gregor9d293df2008-10-28 00:22:11 +0000816 // C++ [expr.static.cast]p2, C++ [expr.dynamic.cast]p2,
817 // C++ [expr.reinterpret.cast]p1, C++ [expr.const.cast]p1.
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000818 if (cast<ExplicitCastExpr>(this)->getTypeAsWritten()->
819 isLValueReferenceType())
Douglas Gregor9d293df2008-10-28 00:22:11 +0000820 return LV_Valid;
821 break;
Sebastian Redlc42e1182008-11-11 11:37:55 +0000822 case CXXTypeidExprClass:
823 // C++ 5.2.8p1: The result of a typeid expression is an lvalue of ...
824 return LV_Valid;
Anders Carlsson6f680272009-08-16 03:42:12 +0000825 case CXXBindTemporaryExprClass:
826 return cast<CXXBindTemporaryExpr>(this)->getSubExpr()->
827 isLvalueInternal(Ctx);
Sebastian Redl76458502009-04-17 16:30:52 +0000828 case ConditionalOperatorClass: {
829 // Complicated handling is only for C++.
830 if (!Ctx.getLangOptions().CPlusPlus)
831 return LV_InvalidExpression;
832
833 // Sema should have taken care to ensure that a CXXTemporaryObjectExpr is
834 // everywhere there's an object converted to an rvalue. Also, any other
835 // casts should be wrapped by ImplicitCastExprs. There's just the special
836 // case involving throws to work out.
837 const ConditionalOperator *Cond = cast<ConditionalOperator>(this);
Douglas Gregord5f3a0f2009-05-19 20:13:50 +0000838 Expr *True = Cond->getTrueExpr();
839 Expr *False = Cond->getFalseExpr();
Sebastian Redl76458502009-04-17 16:30:52 +0000840 // C++0x 5.16p2
841 // If either the second or the third operand has type (cv) void, [...]
842 // the result [...] is an rvalue.
Douglas Gregord5f3a0f2009-05-19 20:13:50 +0000843 if (True->getType()->isVoidType() || False->getType()->isVoidType())
Sebastian Redl76458502009-04-17 16:30:52 +0000844 return LV_InvalidExpression;
845
846 // Both sides must be lvalues for the result to be an lvalue.
Douglas Gregord5f3a0f2009-05-19 20:13:50 +0000847 if (True->isLvalue(Ctx) != LV_Valid || False->isLvalue(Ctx) != LV_Valid)
Sebastian Redl76458502009-04-17 16:30:52 +0000848 return LV_InvalidExpression;
849
850 // That's it.
851 return LV_Valid;
852 }
853
Reid Spencer5f016e22007-07-11 17:01:13 +0000854 default:
855 break;
856 }
857 return LV_InvalidExpression;
858}
859
860/// isModifiableLvalue - C99 6.3.2.1: an lvalue that does not have array type,
861/// does not have an incomplete type, does not have a const-qualified type, and
862/// if it is a structure or union, does not have any member (including,
863/// recursively, any member or element of all contained aggregates or unions)
864/// with a const-qualified type.
Daniel Dunbar44e35f72009-04-15 00:08:05 +0000865Expr::isModifiableLvalueResult
866Expr::isModifiableLvalue(ASTContext &Ctx, SourceLocation *Loc) const {
Chris Lattner28be73f2008-07-26 21:30:36 +0000867 isLvalueResult lvalResult = isLvalue(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000868
869 switch (lvalResult) {
Douglas Gregorae8d4672008-10-22 00:03:08 +0000870 case LV_Valid:
871 // C++ 3.10p11: Functions cannot be modified, but pointers to
872 // functions can be modifiable.
873 if (Ctx.getLangOptions().CPlusPlus && TR->isFunctionType())
874 return MLV_NotObjectType;
875 break;
876
Reid Spencer5f016e22007-07-11 17:01:13 +0000877 case LV_NotObjectType: return MLV_NotObjectType;
878 case LV_IncompleteVoidType: return MLV_IncompleteVoidType;
Steve Narofffec0b492007-07-30 03:29:09 +0000879 case LV_DuplicateVectorComponents: return MLV_DuplicateVectorComponents;
Chris Lattnerca354fa2008-11-17 19:51:54 +0000880 case LV_InvalidExpression:
881 // If the top level is a C-style cast, and the subexpression is a valid
882 // lvalue, then this is probably a use of the old-school "cast as lvalue"
883 // GCC extension. We don't support it, but we want to produce good
884 // diagnostics when it happens so that the user knows why.
Daniel Dunbar44e35f72009-04-15 00:08:05 +0000885 if (const CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(IgnoreParens())) {
886 if (CE->getSubExpr()->isLvalue(Ctx) == LV_Valid) {
887 if (Loc)
888 *Loc = CE->getLParenLoc();
Chris Lattnerca354fa2008-11-17 19:51:54 +0000889 return MLV_LValueCast;
Daniel Dunbar44e35f72009-04-15 00:08:05 +0000890 }
891 }
Chris Lattnerca354fa2008-11-17 19:51:54 +0000892 return MLV_InvalidExpression;
Douglas Gregor86f19402008-12-20 23:49:58 +0000893 case LV_MemberFunction: return MLV_MemberFunction;
Reid Spencer5f016e22007-07-11 17:01:13 +0000894 }
Eli Friedman04831aa2009-03-22 23:26:56 +0000895
896 // The following is illegal:
897 // void takeclosure(void (^C)(void));
898 // void func() { int x = 1; takeclosure(^{ x = 7; }); }
899 //
Chris Lattner7fd09952009-03-23 17:57:53 +0000900 if (isa<BlockDeclRefExpr>(this)) {
Eli Friedman04831aa2009-03-22 23:26:56 +0000901 const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(this);
902 if (!BDR->isByRef() && isa<VarDecl>(BDR->getDecl()))
903 return MLV_NotBlockQualified;
904 }
905
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000906 QualType CT = Ctx.getCanonicalType(getType());
907
908 if (CT.isConstQualified())
Reid Spencer5f016e22007-07-11 17:01:13 +0000909 return MLV_ConstQualified;
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000910 if (CT->isArrayType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000911 return MLV_ArrayType;
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000912 if (CT->isIncompleteType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000913 return MLV_IncompleteType;
914
Ted Kremenek6217b802009-07-29 21:53:49 +0000915 if (const RecordType *r = CT->getAs<RecordType>()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000916 if (r->hasConstFields())
917 return MLV_ConstQualified;
918 }
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +0000919
Fariborz Jahanianba8d2d62008-11-22 20:25:50 +0000920 // Assigning to an 'implicit' property?
Fariborz Jahanian09105f52009-08-20 17:02:02 +0000921 else if (isa<ObjCImplicitSetterGetterRefExpr>(this)) {
922 const ObjCImplicitSetterGetterRefExpr* Expr =
923 cast<ObjCImplicitSetterGetterRefExpr>(this);
Fariborz Jahanian154440e2009-08-18 20:50:23 +0000924 if (Expr->getSetterMethod() == 0)
Fariborz Jahanianba8d2d62008-11-22 20:25:50 +0000925 return MLV_NoSetterProperty;
926 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000927 return MLV_Valid;
928}
929
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000930/// isOBJCGCCandidate - Check if an expression is objc gc'able.
931///
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000932bool Expr::isOBJCGCCandidate(ASTContext &Ctx) const {
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000933 switch (getStmtClass()) {
934 default:
935 return false;
936 case ObjCIvarRefExprClass:
937 return true;
Fariborz Jahanian207c5212009-02-23 18:59:50 +0000938 case Expr::UnaryOperatorClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000939 return cast<UnaryOperator>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000940 case ParenExprClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000941 return cast<ParenExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000942 case ImplicitCastExprClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000943 return cast<ImplicitCastExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian06b89122009-05-05 23:28:21 +0000944 case CStyleCastExprClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000945 return cast<CStyleCastExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000946 case DeclRefExprClass:
947 case QualifiedDeclRefExprClass: {
948 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000949 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
950 if (VD->hasGlobalStorage())
951 return true;
952 QualType T = VD->getType();
953 // dereferencing to an object pointer is always a gc'able candidate
954 if (T->isPointerType() &&
Ted Kremenek6217b802009-07-29 21:53:49 +0000955 T->getAs<PointerType>()->getPointeeType()->isObjCObjectPointerType())
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000956 return true;
957
958 }
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000959 return false;
960 }
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +0000961 case MemberExprClass:
Douglas Gregor0979c802009-08-31 21:41:48 +0000962 case CXXAdornedMemberExprClass: {
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000963 const MemberExpr *M = cast<MemberExpr>(this);
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000964 return M->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000965 }
966 case ArraySubscriptExprClass:
Fariborz Jahanian102e3902009-06-01 21:29:32 +0000967 return cast<ArraySubscriptExpr>(this)->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +0000968 }
969}
Ted Kremenek4e99a5f2008-01-17 16:57:34 +0000970Expr* Expr::IgnoreParens() {
971 Expr* E = this;
972 while (ParenExpr* P = dyn_cast<ParenExpr>(E))
973 E = P->getSubExpr();
974
975 return E;
976}
977
Chris Lattner56f34942008-02-13 01:02:39 +0000978/// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
979/// or CastExprs or ImplicitCastExprs, returning their operand.
980Expr *Expr::IgnoreParenCasts() {
981 Expr *E = this;
982 while (true) {
983 if (ParenExpr *P = dyn_cast<ParenExpr>(E))
984 E = P->getSubExpr();
985 else if (CastExpr *P = dyn_cast<CastExpr>(E))
986 E = P->getSubExpr();
Chris Lattner56f34942008-02-13 01:02:39 +0000987 else
988 return E;
989 }
990}
991
Chris Lattnerecdd8412009-03-13 17:28:01 +0000992/// IgnoreParenNoopCasts - Ignore parentheses and casts that do not change the
993/// value (including ptr->int casts of the same size). Strip off any
994/// ParenExpr or CastExprs, returning their operand.
995Expr *Expr::IgnoreParenNoopCasts(ASTContext &Ctx) {
996 Expr *E = this;
997 while (true) {
998 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
999 E = P->getSubExpr();
1000 continue;
1001 }
1002
1003 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
1004 // We ignore integer <-> casts that are of the same width, ptr<->ptr and
1005 // ptr<->int casts of the same width. We also ignore all identify casts.
1006 Expr *SE = P->getSubExpr();
1007
1008 if (Ctx.hasSameUnqualifiedType(E->getType(), SE->getType())) {
1009 E = SE;
1010 continue;
1011 }
1012
1013 if ((E->getType()->isPointerType() || E->getType()->isIntegralType()) &&
1014 (SE->getType()->isPointerType() || SE->getType()->isIntegralType()) &&
1015 Ctx.getTypeSize(E->getType()) == Ctx.getTypeSize(SE->getType())) {
1016 E = SE;
1017 continue;
1018 }
1019 }
1020
1021 return E;
1022 }
1023}
1024
1025
Douglas Gregor898574e2008-12-05 23:32:09 +00001026/// hasAnyTypeDependentArguments - Determines if any of the expressions
1027/// in Exprs is type-dependent.
1028bool Expr::hasAnyTypeDependentArguments(Expr** Exprs, unsigned NumExprs) {
1029 for (unsigned I = 0; I < NumExprs; ++I)
1030 if (Exprs[I]->isTypeDependent())
1031 return true;
1032
1033 return false;
1034}
1035
1036/// hasAnyValueDependentArguments - Determines if any of the expressions
1037/// in Exprs is value-dependent.
1038bool Expr::hasAnyValueDependentArguments(Expr** Exprs, unsigned NumExprs) {
1039 for (unsigned I = 0; I < NumExprs; ++I)
1040 if (Exprs[I]->isValueDependent())
1041 return true;
1042
1043 return false;
1044}
1045
Eli Friedmanc9e8f602009-01-25 02:32:41 +00001046bool Expr::isConstantInitializer(ASTContext &Ctx) const {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001047 // This function is attempting whether an expression is an initializer
1048 // which can be evaluated at compile-time. isEvaluatable handles most
1049 // of the cases, but it can't deal with some initializer-specific
1050 // expressions, and it can't deal with aggregates; we deal with those here,
1051 // and fall back to isEvaluatable for the other cases.
1052
Eli Friedman1f4a6db2009-02-20 02:36:22 +00001053 // FIXME: This function assumes the variable being assigned to
1054 // isn't a reference type!
1055
Anders Carlssone8a32b82008-11-24 05:23:59 +00001056 switch (getStmtClass()) {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001057 default: break;
Anders Carlssone8a32b82008-11-24 05:23:59 +00001058 case StringLiteralClass:
Steve Naroff14108da2009-07-10 23:34:53 +00001059 case ObjCStringLiteralClass:
Chris Lattnereaf2bb82009-02-24 22:18:39 +00001060 case ObjCEncodeExprClass:
Anders Carlssone8a32b82008-11-24 05:23:59 +00001061 return true;
Nate Begeman59b5da62009-01-18 03:20:47 +00001062 case CompoundLiteralExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00001063 // This handles gcc's extension that allows global initializers like
1064 // "struct x {int x;} x = (struct x) {};".
1065 // FIXME: This accepts other cases it shouldn't!
Nate Begeman59b5da62009-01-18 03:20:47 +00001066 const Expr *Exp = cast<CompoundLiteralExpr>(this)->getInitializer();
Eli Friedmanc9e8f602009-01-25 02:32:41 +00001067 return Exp->isConstantInitializer(Ctx);
Nate Begeman59b5da62009-01-18 03:20:47 +00001068 }
Anders Carlssone8a32b82008-11-24 05:23:59 +00001069 case InitListExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00001070 // FIXME: This doesn't deal with fields with reference types correctly.
1071 // FIXME: This incorrectly allows pointers cast to integers to be assigned
1072 // to bitfields.
Anders Carlssone8a32b82008-11-24 05:23:59 +00001073 const InitListExpr *Exp = cast<InitListExpr>(this);
1074 unsigned numInits = Exp->getNumInits();
1075 for (unsigned i = 0; i < numInits; i++) {
Eli Friedmanc9e8f602009-01-25 02:32:41 +00001076 if (!Exp->getInit(i)->isConstantInitializer(Ctx))
Anders Carlssone8a32b82008-11-24 05:23:59 +00001077 return false;
1078 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001079 return true;
Anders Carlssone8a32b82008-11-24 05:23:59 +00001080 }
Douglas Gregor3498bdb2009-01-29 17:44:32 +00001081 case ImplicitValueInitExprClass:
1082 return true;
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001083 case ParenExprClass: {
1084 return cast<ParenExpr>(this)->getSubExpr()->isConstantInitializer(Ctx);
1085 }
1086 case UnaryOperatorClass: {
1087 const UnaryOperator* Exp = cast<UnaryOperator>(this);
1088 if (Exp->getOpcode() == UnaryOperator::Extension)
1089 return Exp->getSubExpr()->isConstantInitializer(Ctx);
1090 break;
1091 }
Chris Lattner81045d82009-04-21 05:19:11 +00001092 case ImplicitCastExprClass:
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001093 case CStyleCastExprClass:
1094 // Handle casts with a destination that's a struct or union; this
1095 // deals with both the gcc no-op struct cast extension and the
1096 // cast-to-union extension.
1097 if (getType()->isRecordType())
1098 return cast<CastExpr>(this)->getSubExpr()->isConstantInitializer(Ctx);
1099 break;
Anders Carlssone8a32b82008-11-24 05:23:59 +00001100 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00001101 return isEvaluatable(Ctx);
Steve Naroff38374b02007-09-02 20:30:18 +00001102}
1103
Reid Spencer5f016e22007-07-11 17:01:13 +00001104/// isIntegerConstantExpr - this recursive routine will test if an expression is
Eli Friedmane28d7192009-02-26 09:29:13 +00001105/// an integer constant expression.
Reid Spencer5f016e22007-07-11 17:01:13 +00001106
1107/// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero,
1108/// comma, etc
1109///
Chris Lattnerce0afc02007-07-18 05:21:20 +00001110/// FIXME: Handle offsetof. Two things to do: Handle GCC's __builtin_offsetof
1111/// to support gcc 4.0+ and handle the idiom GCC recognizes with a null pointer
1112/// cast+dereference.
Daniel Dunbar2d6744f2009-02-18 00:47:45 +00001113
Eli Friedmane28d7192009-02-26 09:29:13 +00001114// CheckICE - This function does the fundamental ICE checking: the returned
1115// ICEDiag contains a Val of 0, 1, or 2, and a possibly null SourceLocation.
1116// Note that to reduce code duplication, this helper does no evaluation
1117// itself; the caller checks whether the expression is evaluatable, and
1118// in the rare cases where CheckICE actually cares about the evaluated
1119// value, it calls into Evalute.
1120//
1121// Meanings of Val:
1122// 0: This expression is an ICE if it can be evaluated by Evaluate.
1123// 1: This expression is not an ICE, but if it isn't evaluated, it's
1124// a legal subexpression for an ICE. This return value is used to handle
1125// the comma operator in C99 mode.
1126// 2: This expression is not an ICE, and is not a legal subexpression for one.
1127
1128struct ICEDiag {
1129 unsigned Val;
1130 SourceLocation Loc;
1131
1132 public:
1133 ICEDiag(unsigned v, SourceLocation l) : Val(v), Loc(l) {}
1134 ICEDiag() : Val(0) {}
1135};
1136
1137ICEDiag NoDiag() { return ICEDiag(); }
1138
Eli Friedman60ce9632009-02-27 04:07:58 +00001139static ICEDiag CheckEvalInICE(const Expr* E, ASTContext &Ctx) {
1140 Expr::EvalResult EVResult;
1141 if (!E->Evaluate(EVResult, Ctx) || EVResult.HasSideEffects ||
1142 !EVResult.Val.isInt()) {
1143 return ICEDiag(2, E->getLocStart());
1144 }
1145 return NoDiag();
1146}
1147
Eli Friedmane28d7192009-02-26 09:29:13 +00001148static ICEDiag CheckICE(const Expr* E, ASTContext &Ctx) {
Anders Carlssonc3082412009-03-14 00:33:21 +00001149 assert(!E->isValueDependent() && "Should not see value dependent exprs!");
Eli Friedmane28d7192009-02-26 09:29:13 +00001150 if (!E->getType()->isIntegralType()) {
1151 return ICEDiag(2, E->getLocStart());
Eli Friedmana6afa762008-11-13 06:09:17 +00001152 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001153
1154 switch (E->getStmtClass()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001155 default:
Eli Friedmane28d7192009-02-26 09:29:13 +00001156 return ICEDiag(2, E->getLocStart());
1157 case Expr::ParenExprClass:
1158 return CheckICE(cast<ParenExpr>(E)->getSubExpr(), Ctx);
1159 case Expr::IntegerLiteralClass:
1160 case Expr::CharacterLiteralClass:
1161 case Expr::CXXBoolLiteralExprClass:
1162 case Expr::CXXZeroInitValueExprClass:
1163 case Expr::TypesCompatibleExprClass:
1164 case Expr::UnaryTypeTraitExprClass:
1165 return NoDiag();
1166 case Expr::CallExprClass:
1167 case Expr::CXXOperatorCallExprClass: {
1168 const CallExpr *CE = cast<CallExpr>(E);
Eli Friedman60ce9632009-02-27 04:07:58 +00001169 if (CE->isBuiltinCall(Ctx))
1170 return CheckEvalInICE(E, Ctx);
Eli Friedmane28d7192009-02-26 09:29:13 +00001171 return ICEDiag(2, E->getLocStart());
Chris Lattner2eadfb62007-07-15 23:32:58 +00001172 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001173 case Expr::DeclRefExprClass:
1174 case Expr::QualifiedDeclRefExprClass:
1175 if (isa<EnumConstantDecl>(cast<DeclRefExpr>(E)->getDecl()))
1176 return NoDiag();
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001177 if (Ctx.getLangOptions().CPlusPlus &&
Eli Friedmane28d7192009-02-26 09:29:13 +00001178 E->getType().getCVRQualifiers() == QualType::Const) {
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001179 // C++ 7.1.5.1p2
1180 // A variable of non-volatile const-qualified integral or enumeration
1181 // type initialized by an ICE can be used in ICEs.
1182 if (const VarDecl *Dcl =
Eli Friedmane28d7192009-02-26 09:29:13 +00001183 dyn_cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl())) {
Douglas Gregor78d15832009-05-26 18:54:04 +00001184 if (Dcl->isInitKnownICE()) {
1185 // We have already checked whether this subexpression is an
1186 // integral constant expression.
1187 if (Dcl->isInitICE())
1188 return NoDiag();
1189 else
1190 return ICEDiag(2, E->getLocStart());
1191 }
1192
1193 if (const Expr *Init = Dcl->getInit()) {
1194 ICEDiag Result = CheckICE(Init, Ctx);
1195 // Cache the result of the ICE test.
1196 Dcl->setInitKnownICE(Ctx, Result.Val == 0);
1197 return Result;
1198 }
Sebastian Redl4a4251b2009-02-07 13:06:23 +00001199 }
1200 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001201 return ICEDiag(2, E->getLocStart());
1202 case Expr::UnaryOperatorClass: {
1203 const UnaryOperator *Exp = cast<UnaryOperator>(E);
Reid Spencer5f016e22007-07-11 17:01:13 +00001204 switch (Exp->getOpcode()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001205 default:
Eli Friedmane28d7192009-02-26 09:29:13 +00001206 return ICEDiag(2, E->getLocStart());
Reid Spencer5f016e22007-07-11 17:01:13 +00001207 case UnaryOperator::Extension:
Eli Friedmane28d7192009-02-26 09:29:13 +00001208 case UnaryOperator::LNot:
Reid Spencer5f016e22007-07-11 17:01:13 +00001209 case UnaryOperator::Plus:
Reid Spencer5f016e22007-07-11 17:01:13 +00001210 case UnaryOperator::Minus:
Reid Spencer5f016e22007-07-11 17:01:13 +00001211 case UnaryOperator::Not:
Eli Friedman60ce9632009-02-27 04:07:58 +00001212 case UnaryOperator::Real:
1213 case UnaryOperator::Imag:
Eli Friedmane28d7192009-02-26 09:29:13 +00001214 return CheckICE(Exp->getSubExpr(), Ctx);
Anders Carlsson5a1deb82008-01-29 15:56:48 +00001215 case UnaryOperator::OffsetOf:
Eli Friedman60ce9632009-02-27 04:07:58 +00001216 // Note that per C99, offsetof must be an ICE. And AFAIK, using
1217 // Evaluate matches the proposed gcc behavior for cases like
1218 // "offsetof(struct s{int x[4];}, x[!.0])". This doesn't affect
1219 // compliance: we should warn earlier for offsetof expressions with
1220 // array subscripts that aren't ICEs, and if the array subscripts
1221 // are ICEs, the value of the offsetof must be an integer constant.
1222 return CheckEvalInICE(E, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001223 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001224 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001225 case Expr::SizeOfAlignOfExprClass: {
1226 const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(E);
1227 if (Exp->isSizeOf() && Exp->getTypeOfArgument()->isVariableArrayType())
1228 return ICEDiag(2, E->getLocStart());
1229 return NoDiag();
Reid Spencer5f016e22007-07-11 17:01:13 +00001230 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001231 case Expr::BinaryOperatorClass: {
1232 const BinaryOperator *Exp = cast<BinaryOperator>(E);
Reid Spencer5f016e22007-07-11 17:01:13 +00001233 switch (Exp->getOpcode()) {
1234 default:
Eli Friedmane28d7192009-02-26 09:29:13 +00001235 return ICEDiag(2, E->getLocStart());
Reid Spencer5f016e22007-07-11 17:01:13 +00001236 case BinaryOperator::Mul:
Reid Spencer5f016e22007-07-11 17:01:13 +00001237 case BinaryOperator::Div:
Reid Spencer5f016e22007-07-11 17:01:13 +00001238 case BinaryOperator::Rem:
Eli Friedmane28d7192009-02-26 09:29:13 +00001239 case BinaryOperator::Add:
1240 case BinaryOperator::Sub:
Reid Spencer5f016e22007-07-11 17:01:13 +00001241 case BinaryOperator::Shl:
Reid Spencer5f016e22007-07-11 17:01:13 +00001242 case BinaryOperator::Shr:
Eli Friedmane28d7192009-02-26 09:29:13 +00001243 case BinaryOperator::LT:
1244 case BinaryOperator::GT:
1245 case BinaryOperator::LE:
1246 case BinaryOperator::GE:
1247 case BinaryOperator::EQ:
1248 case BinaryOperator::NE:
1249 case BinaryOperator::And:
1250 case BinaryOperator::Xor:
1251 case BinaryOperator::Or:
1252 case BinaryOperator::Comma: {
1253 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
1254 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
Eli Friedman60ce9632009-02-27 04:07:58 +00001255 if (Exp->getOpcode() == BinaryOperator::Div ||
1256 Exp->getOpcode() == BinaryOperator::Rem) {
1257 // Evaluate gives an error for undefined Div/Rem, so make sure
1258 // we don't evaluate one.
1259 if (LHSResult.Val != 2 && RHSResult.Val != 2) {
1260 llvm::APSInt REval = Exp->getRHS()->EvaluateAsInt(Ctx);
1261 if (REval == 0)
1262 return ICEDiag(1, E->getLocStart());
1263 if (REval.isSigned() && REval.isAllOnesValue()) {
1264 llvm::APSInt LEval = Exp->getLHS()->EvaluateAsInt(Ctx);
1265 if (LEval.isMinSignedValue())
1266 return ICEDiag(1, E->getLocStart());
1267 }
1268 }
1269 }
1270 if (Exp->getOpcode() == BinaryOperator::Comma) {
1271 if (Ctx.getLangOptions().C99) {
1272 // C99 6.6p3 introduces a strange edge case: comma can be in an ICE
1273 // if it isn't evaluated.
1274 if (LHSResult.Val == 0 && RHSResult.Val == 0)
1275 return ICEDiag(1, E->getLocStart());
1276 } else {
1277 // In both C89 and C++, commas in ICEs are illegal.
1278 return ICEDiag(2, E->getLocStart());
1279 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001280 }
1281 if (LHSResult.Val >= RHSResult.Val)
1282 return LHSResult;
1283 return RHSResult;
1284 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001285 case BinaryOperator::LAnd:
Eli Friedmane28d7192009-02-26 09:29:13 +00001286 case BinaryOperator::LOr: {
1287 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
1288 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
1289 if (LHSResult.Val == 0 && RHSResult.Val == 1) {
1290 // Rare case where the RHS has a comma "side-effect"; we need
1291 // to actually check the condition to see whether the side
1292 // with the comma is evaluated.
Eli Friedmane28d7192009-02-26 09:29:13 +00001293 if ((Exp->getOpcode() == BinaryOperator::LAnd) !=
Eli Friedman60ce9632009-02-27 04:07:58 +00001294 (Exp->getLHS()->EvaluateAsInt(Ctx) == 0))
Eli Friedmane28d7192009-02-26 09:29:13 +00001295 return RHSResult;
1296 return NoDiag();
Eli Friedmanb11e7782008-11-13 02:13:11 +00001297 }
Eli Friedman60ce9632009-02-27 04:07:58 +00001298
Eli Friedmane28d7192009-02-26 09:29:13 +00001299 if (LHSResult.Val >= RHSResult.Val)
1300 return LHSResult;
1301 return RHSResult;
Reid Spencer5f016e22007-07-11 17:01:13 +00001302 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001303 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001304 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001305 case Expr::ImplicitCastExprClass:
1306 case Expr::CStyleCastExprClass:
1307 case Expr::CXXFunctionalCastExprClass: {
1308 const Expr *SubExpr = cast<CastExpr>(E)->getSubExpr();
1309 if (SubExpr->getType()->isIntegralType())
1310 return CheckICE(SubExpr, Ctx);
1311 if (isa<FloatingLiteral>(SubExpr->IgnoreParens()))
1312 return NoDiag();
1313 return ICEDiag(2, E->getLocStart());
Reid Spencer5f016e22007-07-11 17:01:13 +00001314 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001315 case Expr::ConditionalOperatorClass: {
1316 const ConditionalOperator *Exp = cast<ConditionalOperator>(E);
Chris Lattner28daa532008-12-12 06:55:44 +00001317 // If the condition (ignoring parens) is a __builtin_constant_p call,
1318 // then only the true side is actually considered in an integer constant
Chris Lattner42b83dd2008-12-12 18:00:51 +00001319 // expression, and it is fully evaluated. This is an important GNU
1320 // extension. See GCC PR38377 for discussion.
Eli Friedmane28d7192009-02-26 09:29:13 +00001321 if (const CallExpr *CallCE = dyn_cast<CallExpr>(Exp->getCond()->IgnoreParenCasts()))
Douglas Gregor3c385e52009-02-14 18:57:46 +00001322 if (CallCE->isBuiltinCall(Ctx) == Builtin::BI__builtin_constant_p) {
Eli Friedmane28d7192009-02-26 09:29:13 +00001323 Expr::EvalResult EVResult;
1324 if (!E->Evaluate(EVResult, Ctx) || EVResult.HasSideEffects ||
1325 !EVResult.Val.isInt()) {
Eli Friedman60ce9632009-02-27 04:07:58 +00001326 return ICEDiag(2, E->getLocStart());
Eli Friedmane28d7192009-02-26 09:29:13 +00001327 }
1328 return NoDiag();
Chris Lattner42b83dd2008-12-12 18:00:51 +00001329 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001330 ICEDiag CondResult = CheckICE(Exp->getCond(), Ctx);
1331 ICEDiag TrueResult = CheckICE(Exp->getTrueExpr(), Ctx);
1332 ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx);
1333 if (CondResult.Val == 2)
1334 return CondResult;
1335 if (TrueResult.Val == 2)
1336 return TrueResult;
1337 if (FalseResult.Val == 2)
1338 return FalseResult;
1339 if (CondResult.Val == 1)
1340 return CondResult;
1341 if (TrueResult.Val == 0 && FalseResult.Val == 0)
1342 return NoDiag();
1343 // Rare case where the diagnostics depend on which side is evaluated
1344 // Note that if we get here, CondResult is 0, and at least one of
1345 // TrueResult and FalseResult is non-zero.
Eli Friedman60ce9632009-02-27 04:07:58 +00001346 if (Exp->getCond()->EvaluateAsInt(Ctx) == 0) {
Eli Friedmane28d7192009-02-26 09:29:13 +00001347 return FalseResult;
1348 }
1349 return TrueResult;
Reid Spencer5f016e22007-07-11 17:01:13 +00001350 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001351 case Expr::CXXDefaultArgExprClass:
1352 return CheckICE(cast<CXXDefaultArgExpr>(E)->getExpr(), Ctx);
Eli Friedman60ce9632009-02-27 04:07:58 +00001353 case Expr::ChooseExprClass: {
Eli Friedman79769322009-03-04 05:52:32 +00001354 return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(Ctx), Ctx);
Eli Friedman60ce9632009-02-27 04:07:58 +00001355 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001356 }
Eli Friedmane28d7192009-02-26 09:29:13 +00001357}
Reid Spencer5f016e22007-07-11 17:01:13 +00001358
Eli Friedmane28d7192009-02-26 09:29:13 +00001359bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx,
1360 SourceLocation *Loc, bool isEvaluated) const {
1361 ICEDiag d = CheckICE(this, Ctx);
1362 if (d.Val != 0) {
1363 if (Loc) *Loc = d.Loc;
1364 return false;
1365 }
1366 EvalResult EvalResult;
Eli Friedman60ce9632009-02-27 04:07:58 +00001367 if (!Evaluate(EvalResult, Ctx))
1368 assert(0 && "ICE cannot be evaluated!");
1369 assert(!EvalResult.HasSideEffects && "ICE with side effects!");
1370 assert(EvalResult.Val.isInt() && "ICE that isn't integer!");
Eli Friedmane28d7192009-02-26 09:29:13 +00001371 Result = EvalResult.Val.getInt();
Reid Spencer5f016e22007-07-11 17:01:13 +00001372 return true;
1373}
1374
Reid Spencer5f016e22007-07-11 17:01:13 +00001375/// isNullPointerConstant - C99 6.3.2.3p3 - Return true if this is either an
1376/// integer constant expression with the value zero, or if this is one that is
1377/// cast to void*.
Anders Carlssonefa9b382008-12-01 02:13:57 +00001378bool Expr::isNullPointerConstant(ASTContext &Ctx) const
1379{
Sebastian Redl07779722008-10-31 14:43:28 +00001380 // Strip off a cast to void*, if it exists. Except in C++.
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00001381 if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) {
Sebastian Redl6215dee2008-11-04 11:45:54 +00001382 if (!Ctx.getLangOptions().CPlusPlus) {
Sebastian Redl07779722008-10-31 14:43:28 +00001383 // Check that it is a cast to void*.
Ted Kremenek6217b802009-07-29 21:53:49 +00001384 if (const PointerType *PT = CE->getType()->getAs<PointerType>()) {
Sebastian Redl07779722008-10-31 14:43:28 +00001385 QualType Pointee = PT->getPointeeType();
1386 if (Pointee.getCVRQualifiers() == 0 &&
1387 Pointee->isVoidType() && // to void*
1388 CE->getSubExpr()->getType()->isIntegerType()) // from int.
Anders Carlssond2652772008-12-01 06:28:23 +00001389 return CE->getSubExpr()->isNullPointerConstant(Ctx);
Sebastian Redl07779722008-10-31 14:43:28 +00001390 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001391 }
Steve Naroffaa58f002008-01-14 16:10:57 +00001392 } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
1393 // Ignore the ImplicitCastExpr type entirely.
Anders Carlssond2652772008-12-01 06:28:23 +00001394 return ICE->getSubExpr()->isNullPointerConstant(Ctx);
Steve Naroffaa58f002008-01-14 16:10:57 +00001395 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
1396 // Accept ((void*)0) as a null pointer constant, as many other
1397 // implementations do.
Anders Carlssond2652772008-12-01 06:28:23 +00001398 return PE->getSubExpr()->isNullPointerConstant(Ctx);
Chris Lattner8123a952008-04-10 02:22:51 +00001399 } else if (const CXXDefaultArgExpr *DefaultArg
1400 = dyn_cast<CXXDefaultArgExpr>(this)) {
Chris Lattner04421082008-04-08 04:40:51 +00001401 // See through default argument expressions
Anders Carlssond2652772008-12-01 06:28:23 +00001402 return DefaultArg->getExpr()->isNullPointerConstant(Ctx);
Douglas Gregor2d8b2732008-11-29 04:51:27 +00001403 } else if (isa<GNUNullExpr>(this)) {
1404 // The GNU __null extension is always a null pointer constant.
1405 return true;
Steve Naroffaaffbf72008-01-14 02:53:34 +00001406 }
Douglas Gregor2d8b2732008-11-29 04:51:27 +00001407
Sebastian Redl6e8ed162009-05-10 18:38:11 +00001408 // C++0x nullptr_t is always a null pointer constant.
1409 if (getType()->isNullPtrType())
1410 return true;
1411
Steve Naroffaa58f002008-01-14 16:10:57 +00001412 // This expression must be an integer type.
1413 if (!getType()->isIntegerType())
1414 return false;
1415
Reid Spencer5f016e22007-07-11 17:01:13 +00001416 // If we have an integer constant expression, we need to *evaluate* it and
1417 // test for the value 0.
Eli Friedman09de1762009-04-25 22:37:12 +00001418 llvm::APSInt Result;
1419 return isIntegerConstantExpr(Result, Ctx) && Result == 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001420}
Steve Naroff31a45842007-07-28 23:10:27 +00001421
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001422FieldDecl *Expr::getBitField() {
Douglas Gregor6f4a69a2009-07-06 15:38:40 +00001423 Expr *E = this->IgnoreParens();
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001424
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001425 if (MemberExpr *MemRef = dyn_cast<MemberExpr>(E))
Douglas Gregor86f19402008-12-20 23:49:58 +00001426 if (FieldDecl *Field = dyn_cast<FieldDecl>(MemRef->getMemberDecl()))
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001427 if (Field->isBitField())
1428 return Field;
1429
1430 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(E))
1431 if (BinOp->isAssignmentOp() && BinOp->getLHS())
1432 return BinOp->getLHS()->getBitField();
1433
1434 return 0;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001435}
1436
Chris Lattner2140e902009-02-16 22:14:05 +00001437/// isArrow - Return true if the base expression is a pointer to vector,
1438/// return false if the base expression is a vector.
1439bool ExtVectorElementExpr::isArrow() const {
1440 return getBase()->getType()->isPointerType();
1441}
1442
Nate Begeman213541a2008-04-18 23:10:10 +00001443unsigned ExtVectorElementExpr::getNumElements() const {
Nate Begeman8a997642008-05-09 06:41:27 +00001444 if (const VectorType *VT = getType()->getAsVectorType())
1445 return VT->getNumElements();
1446 return 1;
Chris Lattner4d0ac882007-08-03 16:00:20 +00001447}
1448
Nate Begeman8a997642008-05-09 06:41:27 +00001449/// containsDuplicateElements - Return true if any element access is repeated.
Nate Begeman213541a2008-04-18 23:10:10 +00001450bool ExtVectorElementExpr::containsDuplicateElements() const {
Douglas Gregord3c98a02009-04-15 23:02:49 +00001451 const char *compStr = Accessor->getName();
1452 unsigned length = Accessor->getLength();
Nate Begeman190d6a22009-01-18 02:01:21 +00001453
1454 // Halving swizzles do not contain duplicate elements.
1455 if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") ||
1456 !strcmp(compStr, "even") || !strcmp(compStr, "odd"))
1457 return false;
1458
1459 // Advance past s-char prefix on hex swizzles.
Nate Begeman131f4652009-06-25 21:06:09 +00001460 if (*compStr == 's' || *compStr == 'S') {
Nate Begeman190d6a22009-01-18 02:01:21 +00001461 compStr++;
1462 length--;
1463 }
Steve Narofffec0b492007-07-30 03:29:09 +00001464
Chris Lattner7e3e9b12008-11-19 07:55:04 +00001465 for (unsigned i = 0; i != length-1; i++) {
Steve Narofffec0b492007-07-30 03:29:09 +00001466 const char *s = compStr+i;
1467 for (const char c = *s++; *s; s++)
1468 if (c == *s)
1469 return true;
1470 }
1471 return false;
1472}
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001473
Nate Begeman8a997642008-05-09 06:41:27 +00001474/// getEncodedElementAccess - We encode the fields as a llvm ConstantArray.
Nate Begeman3b8d1162008-05-13 21:03:02 +00001475void ExtVectorElementExpr::getEncodedElementAccess(
1476 llvm::SmallVectorImpl<unsigned> &Elts) const {
Douglas Gregord3c98a02009-04-15 23:02:49 +00001477 const char *compStr = Accessor->getName();
Nate Begeman131f4652009-06-25 21:06:09 +00001478 if (*compStr == 's' || *compStr == 'S')
Nate Begeman353417a2009-01-18 01:47:54 +00001479 compStr++;
1480
1481 bool isHi = !strcmp(compStr, "hi");
1482 bool isLo = !strcmp(compStr, "lo");
1483 bool isEven = !strcmp(compStr, "even");
1484 bool isOdd = !strcmp(compStr, "odd");
1485
Nate Begeman8a997642008-05-09 06:41:27 +00001486 for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
1487 uint64_t Index;
1488
1489 if (isHi)
1490 Index = e + i;
1491 else if (isLo)
1492 Index = i;
1493 else if (isEven)
1494 Index = 2 * i;
1495 else if (isOdd)
1496 Index = 2 * i + 1;
1497 else
1498 Index = ExtVectorType::getAccessorIdx(compStr[i]);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001499
Nate Begeman3b8d1162008-05-13 21:03:02 +00001500 Elts.push_back(Index);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001501 }
Nate Begeman8a997642008-05-09 06:41:27 +00001502}
1503
Steve Naroff68d331a2007-09-27 14:38:14 +00001504// constructor for instance messages.
Steve Naroffbcfb06a2007-09-28 22:22:11 +00001505ObjCMessageExpr::ObjCMessageExpr(Expr *receiver, Selector selInfo,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001506 QualType retType, ObjCMethodDecl *mproto,
Steve Naroffdb611d52007-11-03 16:37:59 +00001507 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff49f109c2007-11-15 13:05:42 +00001508 Expr **ArgExprs, unsigned nargs)
Steve Naroffdb611d52007-11-03 16:37:59 +00001509 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekea958e572008-05-01 17:26:20 +00001510 MethodProto(mproto) {
Steve Naroff49f109c2007-11-15 13:05:42 +00001511 NumArgs = nargs;
Ted Kremenek55499762008-06-17 02:43:46 +00001512 SubExprs = new Stmt*[NumArgs+1];
Steve Naroff68d331a2007-09-27 14:38:14 +00001513 SubExprs[RECEIVER] = receiver;
Steve Naroff49f109c2007-11-15 13:05:42 +00001514 if (NumArgs) {
1515 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff68d331a2007-09-27 14:38:14 +00001516 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1517 }
Steve Naroff563477d2007-09-18 23:55:05 +00001518 LBracloc = LBrac;
1519 RBracloc = RBrac;
1520}
1521
Steve Naroff68d331a2007-09-27 14:38:14 +00001522// constructor for class messages.
1523// FIXME: clsName should be typed to ObjCInterfaceType
Steve Naroffbcfb06a2007-09-28 22:22:11 +00001524ObjCMessageExpr::ObjCMessageExpr(IdentifierInfo *clsName, Selector selInfo,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001525 QualType retType, ObjCMethodDecl *mproto,
Steve Naroffdb611d52007-11-03 16:37:59 +00001526 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff49f109c2007-11-15 13:05:42 +00001527 Expr **ArgExprs, unsigned nargs)
Steve Naroffdb611d52007-11-03 16:37:59 +00001528 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekea958e572008-05-01 17:26:20 +00001529 MethodProto(mproto) {
Steve Naroff49f109c2007-11-15 13:05:42 +00001530 NumArgs = nargs;
Ted Kremenek55499762008-06-17 02:43:46 +00001531 SubExprs = new Stmt*[NumArgs+1];
Ted Kremenek4df728e2008-06-24 15:50:53 +00001532 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) clsName | IsClsMethDeclUnknown);
Steve Naroff49f109c2007-11-15 13:05:42 +00001533 if (NumArgs) {
1534 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff68d331a2007-09-27 14:38:14 +00001535 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1536 }
Steve Naroff563477d2007-09-18 23:55:05 +00001537 LBracloc = LBrac;
1538 RBracloc = RBrac;
1539}
1540
Ted Kremenek4df728e2008-06-24 15:50:53 +00001541// constructor for class messages.
1542ObjCMessageExpr::ObjCMessageExpr(ObjCInterfaceDecl *cls, Selector selInfo,
1543 QualType retType, ObjCMethodDecl *mproto,
1544 SourceLocation LBrac, SourceLocation RBrac,
1545 Expr **ArgExprs, unsigned nargs)
1546: Expr(ObjCMessageExprClass, retType), SelName(selInfo),
1547MethodProto(mproto) {
1548 NumArgs = nargs;
1549 SubExprs = new Stmt*[NumArgs+1];
1550 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) cls | IsClsMethDeclKnown);
1551 if (NumArgs) {
1552 for (unsigned i = 0; i != NumArgs; ++i)
1553 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1554 }
1555 LBracloc = LBrac;
1556 RBracloc = RBrac;
1557}
1558
1559ObjCMessageExpr::ClassInfo ObjCMessageExpr::getClassInfo() const {
1560 uintptr_t x = (uintptr_t) SubExprs[RECEIVER];
1561 switch (x & Flags) {
1562 default:
1563 assert(false && "Invalid ObjCMessageExpr.");
1564 case IsInstMeth:
1565 return ClassInfo(0, 0);
1566 case IsClsMethDeclUnknown:
1567 return ClassInfo(0, (IdentifierInfo*) (x & ~Flags));
1568 case IsClsMethDeclKnown: {
1569 ObjCInterfaceDecl* D = (ObjCInterfaceDecl*) (x & ~Flags);
1570 return ClassInfo(D, D->getIdentifier());
1571 }
1572 }
1573}
1574
Chris Lattner0389e6b2009-04-26 00:44:05 +00001575void ObjCMessageExpr::setClassInfo(const ObjCMessageExpr::ClassInfo &CI) {
1576 if (CI.first == 0 && CI.second == 0)
1577 SubExprs[RECEIVER] = (Expr*)((uintptr_t)0 | IsInstMeth);
1578 else if (CI.first == 0)
1579 SubExprs[RECEIVER] = (Expr*)((uintptr_t)CI.second | IsClsMethDeclUnknown);
1580 else
1581 SubExprs[RECEIVER] = (Expr*)((uintptr_t)CI.first | IsClsMethDeclKnown);
1582}
1583
1584
Chris Lattner27437ca2007-10-25 00:29:32 +00001585bool ChooseExpr::isConditionTrue(ASTContext &C) const {
Eli Friedman9a901bb2009-04-26 19:19:15 +00001586 return getCond()->EvaluateAsInt(C) != 0;
Chris Lattner27437ca2007-10-25 00:29:32 +00001587}
1588
Nate Begeman888376a2009-08-12 02:28:50 +00001589void ShuffleVectorExpr::setExprs(ASTContext &C, Expr ** Exprs,
1590 unsigned NumExprs) {
1591 if (SubExprs) C.Deallocate(SubExprs);
1592
1593 SubExprs = new (C) Stmt* [NumExprs];
Douglas Gregor94cd5d12009-04-16 00:01:45 +00001594 this->NumExprs = NumExprs;
1595 memcpy(SubExprs, Exprs, sizeof(Expr *) * NumExprs);
Nate Begeman888376a2009-08-12 02:28:50 +00001596}
1597
1598void ShuffleVectorExpr::DoDestroy(ASTContext& C) {
1599 DestroyChildren(C);
1600 if (SubExprs) C.Deallocate(SubExprs);
1601 this->~ShuffleVectorExpr();
1602 C.Deallocate(this);
Douglas Gregor94cd5d12009-04-16 00:01:45 +00001603}
1604
Douglas Gregor42602bb2009-08-07 06:08:38 +00001605void SizeOfAlignOfExpr::DoDestroy(ASTContext& C) {
Sebastian Redl05189992008-11-11 17:56:53 +00001606 // Override default behavior of traversing children. If this has a type
1607 // operand and the type is a variable-length array, the child iteration
1608 // will iterate over the size expression. However, this expression belongs
1609 // to the type, not to this, so we don't want to delete it.
1610 // We still want to delete this expression.
Ted Kremenek8189cde2009-02-07 01:47:29 +00001611 if (isArgumentType()) {
1612 this->~SizeOfAlignOfExpr();
1613 C.Deallocate(this);
1614 }
Sebastian Redl05189992008-11-11 17:56:53 +00001615 else
Douglas Gregor42602bb2009-08-07 06:08:38 +00001616 Expr::DoDestroy(C);
Daniel Dunbar90488912008-08-28 18:02:04 +00001617}
1618
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001619//===----------------------------------------------------------------------===//
Douglas Gregor05c13a32009-01-22 00:58:24 +00001620// DesignatedInitExpr
1621//===----------------------------------------------------------------------===//
1622
1623IdentifierInfo *DesignatedInitExpr::Designator::getFieldName() {
1624 assert(Kind == FieldDesignator && "Only valid on a field designator");
1625 if (Field.NameOrField & 0x01)
1626 return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01);
1627 else
1628 return getField()->getIdentifier();
1629}
1630
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001631DesignatedInitExpr::DesignatedInitExpr(QualType Ty, unsigned NumDesignators,
1632 const Designator *Designators,
1633 SourceLocation EqualOrColonLoc,
1634 bool GNUSyntax,
Douglas Gregor9ea62762009-05-21 23:17:49 +00001635 Expr **IndexExprs,
1636 unsigned NumIndexExprs,
1637 Expr *Init)
1638 : Expr(DesignatedInitExprClass, Ty,
1639 Init->isTypeDependent(), Init->isValueDependent()),
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001640 EqualOrColonLoc(EqualOrColonLoc), GNUSyntax(GNUSyntax),
Douglas Gregor9ea62762009-05-21 23:17:49 +00001641 NumDesignators(NumDesignators), NumSubExprs(NumIndexExprs + 1) {
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001642 this->Designators = new Designator[NumDesignators];
Douglas Gregor9ea62762009-05-21 23:17:49 +00001643
1644 // Record the initializer itself.
1645 child_iterator Child = child_begin();
1646 *Child++ = Init;
1647
1648 // Copy the designators and their subexpressions, computing
1649 // value-dependence along the way.
1650 unsigned IndexIdx = 0;
1651 for (unsigned I = 0; I != NumDesignators; ++I) {
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001652 this->Designators[I] = Designators[I];
Douglas Gregor9ea62762009-05-21 23:17:49 +00001653
1654 if (this->Designators[I].isArrayDesignator()) {
1655 // Compute type- and value-dependence.
1656 Expr *Index = IndexExprs[IndexIdx];
1657 ValueDependent = ValueDependent ||
1658 Index->isTypeDependent() || Index->isValueDependent();
1659
1660 // Copy the index expressions into permanent storage.
1661 *Child++ = IndexExprs[IndexIdx++];
1662 } else if (this->Designators[I].isArrayRangeDesignator()) {
1663 // Compute type- and value-dependence.
1664 Expr *Start = IndexExprs[IndexIdx];
1665 Expr *End = IndexExprs[IndexIdx + 1];
1666 ValueDependent = ValueDependent ||
1667 Start->isTypeDependent() || Start->isValueDependent() ||
1668 End->isTypeDependent() || End->isValueDependent();
1669
1670 // Copy the start/end expressions into permanent storage.
1671 *Child++ = IndexExprs[IndexIdx++];
1672 *Child++ = IndexExprs[IndexIdx++];
1673 }
1674 }
1675
1676 assert(IndexIdx == NumIndexExprs && "Wrong number of index expressions");
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001677}
1678
Douglas Gregor05c13a32009-01-22 00:58:24 +00001679DesignatedInitExpr *
1680DesignatedInitExpr::Create(ASTContext &C, Designator *Designators,
1681 unsigned NumDesignators,
1682 Expr **IndexExprs, unsigned NumIndexExprs,
1683 SourceLocation ColonOrEqualLoc,
1684 bool UsesColonSyntax, Expr *Init) {
Steve Naroffc0ac4922009-01-27 23:20:32 +00001685 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
Steve Naroffc0ac4922009-01-27 23:20:32 +00001686 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
Douglas Gregor9ea62762009-05-21 23:17:49 +00001687 return new (Mem) DesignatedInitExpr(C.VoidTy, NumDesignators, Designators,
1688 ColonOrEqualLoc, UsesColonSyntax,
1689 IndexExprs, NumIndexExprs, Init);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001690}
1691
Douglas Gregord077d752009-04-16 00:55:48 +00001692DesignatedInitExpr *DesignatedInitExpr::CreateEmpty(ASTContext &C,
1693 unsigned NumIndexExprs) {
1694 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
1695 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
1696 return new (Mem) DesignatedInitExpr(NumIndexExprs + 1);
1697}
1698
1699void DesignatedInitExpr::setDesignators(const Designator *Desigs,
1700 unsigned NumDesigs) {
1701 if (Designators)
1702 delete [] Designators;
1703
1704 Designators = new Designator[NumDesigs];
1705 NumDesignators = NumDesigs;
1706 for (unsigned I = 0; I != NumDesigs; ++I)
1707 Designators[I] = Desigs[I];
1708}
1709
Douglas Gregor05c13a32009-01-22 00:58:24 +00001710SourceRange DesignatedInitExpr::getSourceRange() const {
1711 SourceLocation StartLoc;
Chris Lattnerd603eaa2009-02-16 22:33:34 +00001712 Designator &First =
1713 *const_cast<DesignatedInitExpr*>(this)->designators_begin();
Douglas Gregor05c13a32009-01-22 00:58:24 +00001714 if (First.isFieldDesignator()) {
Douglas Gregoreeae8f02009-03-28 00:41:23 +00001715 if (GNUSyntax)
Douglas Gregor05c13a32009-01-22 00:58:24 +00001716 StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc);
1717 else
1718 StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc);
1719 } else
Chris Lattnerd603eaa2009-02-16 22:33:34 +00001720 StartLoc =
1721 SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001722 return SourceRange(StartLoc, getInit()->getSourceRange().getEnd());
1723}
1724
Douglas Gregor05c13a32009-01-22 00:58:24 +00001725Expr *DesignatedInitExpr::getArrayIndex(const Designator& D) {
1726 assert(D.Kind == Designator::ArrayDesignator && "Requires array designator");
1727 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1728 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001729 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1730 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
1731}
1732
1733Expr *DesignatedInitExpr::getArrayRangeStart(const Designator& D) {
1734 assert(D.Kind == Designator::ArrayRangeDesignator &&
1735 "Requires array range designator");
1736 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1737 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001738 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1739 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
1740}
1741
1742Expr *DesignatedInitExpr::getArrayRangeEnd(const Designator& D) {
1743 assert(D.Kind == Designator::ArrayRangeDesignator &&
1744 "Requires array range designator");
1745 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1746 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00001747 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1748 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 2));
1749}
1750
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001751/// \brief Replaces the designator at index @p Idx with the series
1752/// of designators in [First, Last).
1753void DesignatedInitExpr::ExpandDesignator(unsigned Idx,
1754 const Designator *First,
1755 const Designator *Last) {
1756 unsigned NumNewDesignators = Last - First;
1757 if (NumNewDesignators == 0) {
1758 std::copy_backward(Designators + Idx + 1,
1759 Designators + NumDesignators,
1760 Designators + Idx);
1761 --NumNewDesignators;
1762 return;
1763 } else if (NumNewDesignators == 1) {
1764 Designators[Idx] = *First;
1765 return;
1766 }
1767
1768 Designator *NewDesignators
1769 = new Designator[NumDesignators - 1 + NumNewDesignators];
1770 std::copy(Designators, Designators + Idx, NewDesignators);
1771 std::copy(First, Last, NewDesignators + Idx);
1772 std::copy(Designators + Idx + 1, Designators + NumDesignators,
1773 NewDesignators + Idx + NumNewDesignators);
1774 delete [] Designators;
1775 Designators = NewDesignators;
1776 NumDesignators = NumDesignators - 1 + NumNewDesignators;
1777}
1778
Douglas Gregor42602bb2009-08-07 06:08:38 +00001779void DesignatedInitExpr::DoDestroy(ASTContext &C) {
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001780 delete [] Designators;
Douglas Gregor42602bb2009-08-07 06:08:38 +00001781 Expr::DoDestroy(C);
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00001782}
1783
Nate Begeman2ef13e52009-08-10 23:49:36 +00001784ParenListExpr::ParenListExpr(ASTContext& C, SourceLocation lparenloc,
1785 Expr **exprs, unsigned nexprs,
1786 SourceLocation rparenloc)
1787: Expr(ParenListExprClass, QualType(),
1788 hasAnyTypeDependentArguments(exprs, nexprs),
1789 hasAnyValueDependentArguments(exprs, nexprs)),
1790 NumExprs(nexprs), LParenLoc(lparenloc), RParenLoc(rparenloc) {
1791
1792 Exprs = new (C) Stmt*[nexprs];
1793 for (unsigned i = 0; i != nexprs; ++i)
1794 Exprs[i] = exprs[i];
1795}
1796
1797void ParenListExpr::DoDestroy(ASTContext& C) {
1798 DestroyChildren(C);
1799 if (Exprs) C.Deallocate(Exprs);
1800 this->~ParenListExpr();
1801 C.Deallocate(this);
1802}
1803
Douglas Gregor05c13a32009-01-22 00:58:24 +00001804//===----------------------------------------------------------------------===//
Ted Kremenekce2fc3a2008-10-27 18:40:21 +00001805// ExprIterator.
1806//===----------------------------------------------------------------------===//
1807
1808Expr* ExprIterator::operator[](size_t idx) { return cast<Expr>(I[idx]); }
1809Expr* ExprIterator::operator*() const { return cast<Expr>(*I); }
1810Expr* ExprIterator::operator->() const { return cast<Expr>(*I); }
1811const Expr* ConstExprIterator::operator[](size_t idx) const {
1812 return cast<Expr>(I[idx]);
1813}
1814const Expr* ConstExprIterator::operator*() const { return cast<Expr>(*I); }
1815const Expr* ConstExprIterator::operator->() const { return cast<Expr>(*I); }
1816
1817//===----------------------------------------------------------------------===//
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001818// Child Iterators for iterating over subexpressions/substatements
1819//===----------------------------------------------------------------------===//
1820
1821// DeclRefExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001822Stmt::child_iterator DeclRefExpr::child_begin() { return child_iterator(); }
1823Stmt::child_iterator DeclRefExpr::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001824
Steve Naroff7779db42007-11-12 14:29:37 +00001825// ObjCIvarRefExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001826Stmt::child_iterator ObjCIvarRefExpr::child_begin() { return &Base; }
1827Stmt::child_iterator ObjCIvarRefExpr::child_end() { return &Base+1; }
Steve Naroff7779db42007-11-12 14:29:37 +00001828
Steve Naroffe3e9add2008-06-02 23:03:37 +00001829// ObjCPropertyRefExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001830Stmt::child_iterator ObjCPropertyRefExpr::child_begin() { return &Base; }
1831Stmt::child_iterator ObjCPropertyRefExpr::child_end() { return &Base+1; }
Steve Naroffae784072008-05-30 00:40:33 +00001832
Fariborz Jahanian09105f52009-08-20 17:02:02 +00001833// ObjCImplicitSetterGetterRefExpr
1834Stmt::child_iterator ObjCImplicitSetterGetterRefExpr::child_begin() {
Fariborz Jahanian154440e2009-08-18 20:50:23 +00001835 return &Base;
1836}
Fariborz Jahanian09105f52009-08-20 17:02:02 +00001837Stmt::child_iterator ObjCImplicitSetterGetterRefExpr::child_end() {
Fariborz Jahanian154440e2009-08-18 20:50:23 +00001838 return &Base+1;
1839}
Fariborz Jahanian5daf5702008-11-22 18:39:36 +00001840
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001841// ObjCSuperExpr
1842Stmt::child_iterator ObjCSuperExpr::child_begin() { return child_iterator(); }
1843Stmt::child_iterator ObjCSuperExpr::child_end() { return child_iterator(); }
1844
Steve Narofff242b1b2009-07-24 17:54:45 +00001845// ObjCIsaExpr
1846Stmt::child_iterator ObjCIsaExpr::child_begin() { return &Base; }
1847Stmt::child_iterator ObjCIsaExpr::child_end() { return &Base+1; }
1848
Chris Lattnerd9f69102008-08-10 01:53:14 +00001849// PredefinedExpr
1850Stmt::child_iterator PredefinedExpr::child_begin() { return child_iterator(); }
1851Stmt::child_iterator PredefinedExpr::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001852
1853// IntegerLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001854Stmt::child_iterator IntegerLiteral::child_begin() { return child_iterator(); }
1855Stmt::child_iterator IntegerLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001856
1857// CharacterLiteral
Chris Lattnerd603eaa2009-02-16 22:33:34 +00001858Stmt::child_iterator CharacterLiteral::child_begin() { return child_iterator();}
Ted Kremenek9ac59282007-10-18 23:28:49 +00001859Stmt::child_iterator CharacterLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001860
1861// FloatingLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001862Stmt::child_iterator FloatingLiteral::child_begin() { return child_iterator(); }
1863Stmt::child_iterator FloatingLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001864
Chris Lattner5d661452007-08-26 03:42:43 +00001865// ImaginaryLiteral
Ted Kremenek55499762008-06-17 02:43:46 +00001866Stmt::child_iterator ImaginaryLiteral::child_begin() { return &Val; }
1867Stmt::child_iterator ImaginaryLiteral::child_end() { return &Val+1; }
Chris Lattner5d661452007-08-26 03:42:43 +00001868
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001869// StringLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001870Stmt::child_iterator StringLiteral::child_begin() { return child_iterator(); }
1871Stmt::child_iterator StringLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001872
1873// ParenExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001874Stmt::child_iterator ParenExpr::child_begin() { return &Val; }
1875Stmt::child_iterator ParenExpr::child_end() { return &Val+1; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001876
1877// UnaryOperator
Ted Kremenek55499762008-06-17 02:43:46 +00001878Stmt::child_iterator UnaryOperator::child_begin() { return &Val; }
1879Stmt::child_iterator UnaryOperator::child_end() { return &Val+1; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001880
Sebastian Redl05189992008-11-11 17:56:53 +00001881// SizeOfAlignOfExpr
1882Stmt::child_iterator SizeOfAlignOfExpr::child_begin() {
1883 // If this is of a type and the type is a VLA type (and not a typedef), the
1884 // size expression of the VLA needs to be treated as an executable expression.
1885 // Why isn't this weirdness documented better in StmtIterator?
1886 if (isArgumentType()) {
1887 if (VariableArrayType* T = dyn_cast<VariableArrayType>(
1888 getArgumentType().getTypePtr()))
1889 return child_iterator(T);
1890 return child_iterator();
1891 }
Sebastian Redld4575892008-12-03 23:17:54 +00001892 return child_iterator(&Argument.Ex);
Ted Kremenek9ac59282007-10-18 23:28:49 +00001893}
Sebastian Redl05189992008-11-11 17:56:53 +00001894Stmt::child_iterator SizeOfAlignOfExpr::child_end() {
1895 if (isArgumentType())
1896 return child_iterator();
Sebastian Redld4575892008-12-03 23:17:54 +00001897 return child_iterator(&Argument.Ex + 1);
Ted Kremenek9ac59282007-10-18 23:28:49 +00001898}
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001899
1900// ArraySubscriptExpr
Ted Kremenek1237c672007-08-24 20:06:47 +00001901Stmt::child_iterator ArraySubscriptExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001902 return &SubExprs[0];
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001903}
Ted Kremenek1237c672007-08-24 20:06:47 +00001904Stmt::child_iterator ArraySubscriptExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001905 return &SubExprs[0]+END_EXPR;
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001906}
1907
1908// CallExpr
Ted Kremenek1237c672007-08-24 20:06:47 +00001909Stmt::child_iterator CallExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001910 return &SubExprs[0];
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001911}
Ted Kremenek1237c672007-08-24 20:06:47 +00001912Stmt::child_iterator CallExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001913 return &SubExprs[0]+NumArgs+ARGS_START;
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001914}
Ted Kremenek1237c672007-08-24 20:06:47 +00001915
1916// MemberExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001917Stmt::child_iterator MemberExpr::child_begin() { return &Base; }
1918Stmt::child_iterator MemberExpr::child_end() { return &Base+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001919
Douglas Gregor0979c802009-08-31 21:41:48 +00001920bool MemberExpr::hasQualifier() const {
1921 if (const CXXAdornedMemberExpr *A = dyn_cast<CXXAdornedMemberExpr>(this))
1922 return A->hasQualifier();
1923
1924 return false;
1925}
1926
Nate Begeman213541a2008-04-18 23:10:10 +00001927// ExtVectorElementExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001928Stmt::child_iterator ExtVectorElementExpr::child_begin() { return &Base; }
1929Stmt::child_iterator ExtVectorElementExpr::child_end() { return &Base+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001930
1931// CompoundLiteralExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001932Stmt::child_iterator CompoundLiteralExpr::child_begin() { return &Init; }
1933Stmt::child_iterator CompoundLiteralExpr::child_end() { return &Init+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001934
Ted Kremenek1237c672007-08-24 20:06:47 +00001935// CastExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001936Stmt::child_iterator CastExpr::child_begin() { return &Op; }
1937Stmt::child_iterator CastExpr::child_end() { return &Op+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001938
1939// BinaryOperator
1940Stmt::child_iterator BinaryOperator::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001941 return &SubExprs[0];
Ted Kremenek1237c672007-08-24 20:06:47 +00001942}
Ted Kremenek1237c672007-08-24 20:06:47 +00001943Stmt::child_iterator BinaryOperator::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001944 return &SubExprs[0]+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00001945}
1946
1947// ConditionalOperator
1948Stmt::child_iterator ConditionalOperator::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001949 return &SubExprs[0];
Ted Kremenek1237c672007-08-24 20:06:47 +00001950}
Ted Kremenek1237c672007-08-24 20:06:47 +00001951Stmt::child_iterator ConditionalOperator::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001952 return &SubExprs[0]+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00001953}
1954
1955// AddrLabelExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001956Stmt::child_iterator AddrLabelExpr::child_begin() { return child_iterator(); }
1957Stmt::child_iterator AddrLabelExpr::child_end() { return child_iterator(); }
Ted Kremenek1237c672007-08-24 20:06:47 +00001958
Ted Kremenek1237c672007-08-24 20:06:47 +00001959// StmtExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001960Stmt::child_iterator StmtExpr::child_begin() { return &SubStmt; }
1961Stmt::child_iterator StmtExpr::child_end() { return &SubStmt+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001962
1963// TypesCompatibleExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001964Stmt::child_iterator TypesCompatibleExpr::child_begin() {
1965 return child_iterator();
1966}
1967
1968Stmt::child_iterator TypesCompatibleExpr::child_end() {
1969 return child_iterator();
1970}
Ted Kremenek1237c672007-08-24 20:06:47 +00001971
1972// ChooseExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001973Stmt::child_iterator ChooseExpr::child_begin() { return &SubExprs[0]; }
1974Stmt::child_iterator ChooseExpr::child_end() { return &SubExprs[0]+END_EXPR; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001975
Douglas Gregor2d8b2732008-11-29 04:51:27 +00001976// GNUNullExpr
1977Stmt::child_iterator GNUNullExpr::child_begin() { return child_iterator(); }
1978Stmt::child_iterator GNUNullExpr::child_end() { return child_iterator(); }
1979
Eli Friedmand38617c2008-05-14 19:38:39 +00001980// ShuffleVectorExpr
1981Stmt::child_iterator ShuffleVectorExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001982 return &SubExprs[0];
Eli Friedmand38617c2008-05-14 19:38:39 +00001983}
1984Stmt::child_iterator ShuffleVectorExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001985 return &SubExprs[0]+NumExprs;
Eli Friedmand38617c2008-05-14 19:38:39 +00001986}
1987
Anders Carlsson7c50aca2007-10-15 20:28:48 +00001988// VAArgExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001989Stmt::child_iterator VAArgExpr::child_begin() { return &Val; }
1990Stmt::child_iterator VAArgExpr::child_end() { return &Val+1; }
Anders Carlsson7c50aca2007-10-15 20:28:48 +00001991
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001992// InitListExpr
1993Stmt::child_iterator InitListExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001994 return InitExprs.size() ? &InitExprs[0] : 0;
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001995}
1996Stmt::child_iterator InitListExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001997 return InitExprs.size() ? &InitExprs[0] + InitExprs.size() : 0;
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001998}
1999
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002000// DesignatedInitExpr
Douglas Gregor05c13a32009-01-22 00:58:24 +00002001Stmt::child_iterator DesignatedInitExpr::child_begin() {
2002 char* Ptr = static_cast<char*>(static_cast<void *>(this));
2003 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00002004 return reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
2005}
2006Stmt::child_iterator DesignatedInitExpr::child_end() {
2007 return child_iterator(&*child_begin() + NumSubExprs);
2008}
2009
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002010// ImplicitValueInitExpr
2011Stmt::child_iterator ImplicitValueInitExpr::child_begin() {
2012 return child_iterator();
2013}
2014
2015Stmt::child_iterator ImplicitValueInitExpr::child_end() {
2016 return child_iterator();
2017}
2018
Nate Begeman2ef13e52009-08-10 23:49:36 +00002019// ParenListExpr
2020Stmt::child_iterator ParenListExpr::child_begin() {
2021 return &Exprs[0];
2022}
2023Stmt::child_iterator ParenListExpr::child_end() {
2024 return &Exprs[0]+NumExprs;
2025}
2026
Ted Kremenek1237c672007-08-24 20:06:47 +00002027// ObjCStringLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00002028Stmt::child_iterator ObjCStringLiteral::child_begin() {
Chris Lattnerc6c16af2009-02-18 06:53:08 +00002029 return &String;
Ted Kremenek9ac59282007-10-18 23:28:49 +00002030}
2031Stmt::child_iterator ObjCStringLiteral::child_end() {
Chris Lattnerc6c16af2009-02-18 06:53:08 +00002032 return &String+1;
Ted Kremenek9ac59282007-10-18 23:28:49 +00002033}
Ted Kremenek1237c672007-08-24 20:06:47 +00002034
2035// ObjCEncodeExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00002036Stmt::child_iterator ObjCEncodeExpr::child_begin() { return child_iterator(); }
2037Stmt::child_iterator ObjCEncodeExpr::child_end() { return child_iterator(); }
Ted Kremenek1237c672007-08-24 20:06:47 +00002038
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002039// ObjCSelectorExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00002040Stmt::child_iterator ObjCSelectorExpr::child_begin() {
2041 return child_iterator();
2042}
2043Stmt::child_iterator ObjCSelectorExpr::child_end() {
2044 return child_iterator();
2045}
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00002046
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00002047// ObjCProtocolExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00002048Stmt::child_iterator ObjCProtocolExpr::child_begin() {
2049 return child_iterator();
2050}
2051Stmt::child_iterator ObjCProtocolExpr::child_end() {
2052 return child_iterator();
2053}
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00002054
Steve Naroff563477d2007-09-18 23:55:05 +00002055// ObjCMessageExpr
Ted Kremenekea958e572008-05-01 17:26:20 +00002056Stmt::child_iterator ObjCMessageExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00002057 return getReceiver() ? &SubExprs[0] : &SubExprs[0] + ARGS_START;
Steve Naroff563477d2007-09-18 23:55:05 +00002058}
2059Stmt::child_iterator ObjCMessageExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00002060 return &SubExprs[0]+ARGS_START+getNumArgs();
Steve Naroff563477d2007-09-18 23:55:05 +00002061}
2062
Steve Naroff4eb206b2008-09-03 18:15:37 +00002063// Blocks
Steve Naroff56ee6892008-10-08 17:01:13 +00002064Stmt::child_iterator BlockExpr::child_begin() { return child_iterator(); }
2065Stmt::child_iterator BlockExpr::child_end() { return child_iterator(); }
Steve Naroff4eb206b2008-09-03 18:15:37 +00002066
Ted Kremenek9da13f92008-09-26 23:24:14 +00002067Stmt::child_iterator BlockDeclRefExpr::child_begin() { return child_iterator();}
2068Stmt::child_iterator BlockDeclRefExpr::child_end() { return child_iterator(); }