blob: 78c305051ee4c8739a7ad3be98262c035fd11166 [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
Steve Narofff494b572008-05-29 21:12:08 +000014#include "clang/AST/ExprObjC.h"
Chris Lattner2eadfb62007-07-15 23:32:58 +000015#include "clang/AST/ASTContext.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000016#include "clang/AST/StmtVisitor.h"
Chris Lattnerc7229c32007-10-07 08:58:51 +000017#include "clang/Basic/IdentifierTable.h"
Chris Lattnerda5a6b62007-11-27 18:22:04 +000018#include "clang/Basic/TargetInfo.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000019using namespace clang;
20
21//===----------------------------------------------------------------------===//
22// Primary Expressions.
23//===----------------------------------------------------------------------===//
24
Chris Lattnerda8249e2008-06-07 22:13:43 +000025/// getValueAsApproximateDouble - This returns the value as an inaccurate
26/// double. Note that this may cause loss of precision, but is useful for
27/// debugging dumps, etc.
28double FloatingLiteral::getValueAsApproximateDouble() const {
29 llvm::APFloat V = getValue();
30 V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven);
31 return V.convertToDouble();
32}
33
34
Reid Spencer5f016e22007-07-11 17:01:13 +000035StringLiteral::StringLiteral(const char *strData, unsigned byteLength,
36 bool Wide, QualType t, SourceLocation firstLoc,
37 SourceLocation lastLoc) :
38 Expr(StringLiteralClass, t) {
39 // OPTIMIZE: could allocate this appended to the StringLiteral.
40 char *AStrData = new char[byteLength];
41 memcpy(AStrData, strData, byteLength);
42 StrData = AStrData;
43 ByteLength = byteLength;
44 IsWide = Wide;
45 firstTokLoc = firstLoc;
46 lastTokLoc = lastLoc;
47}
48
49StringLiteral::~StringLiteral() {
50 delete[] StrData;
51}
52
53bool UnaryOperator::isPostfix(Opcode Op) {
54 switch (Op) {
55 case PostInc:
56 case PostDec:
57 return true;
58 default:
59 return false;
60 }
61}
62
63/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
64/// corresponds to, e.g. "sizeof" or "[pre]++".
65const char *UnaryOperator::getOpcodeStr(Opcode Op) {
66 switch (Op) {
67 default: assert(0 && "Unknown unary operator");
68 case PostInc: return "++";
69 case PostDec: return "--";
70 case PreInc: return "++";
71 case PreDec: return "--";
72 case AddrOf: return "&";
73 case Deref: return "*";
74 case Plus: return "+";
75 case Minus: return "-";
76 case Not: return "~";
77 case LNot: return "!";
78 case Real: return "__real";
79 case Imag: return "__imag";
80 case SizeOf: return "sizeof";
81 case AlignOf: return "alignof";
82 case Extension: return "__extension__";
Chris Lattner73d0d4f2007-08-30 17:45:32 +000083 case OffsetOf: return "__builtin_offsetof";
Reid Spencer5f016e22007-07-11 17:01:13 +000084 }
85}
86
87//===----------------------------------------------------------------------===//
88// Postfix Operators.
89//===----------------------------------------------------------------------===//
90
Nate Begemane2ce1d92008-01-17 17:46:27 +000091
Reid Spencer5f016e22007-07-11 17:01:13 +000092CallExpr::CallExpr(Expr *fn, Expr **args, unsigned numargs, QualType t,
93 SourceLocation rparenloc)
Ted Kremenek77ed8e42007-08-24 18:13:47 +000094 : Expr(CallExprClass, t), NumArgs(numargs) {
95 SubExprs = new Expr*[numargs+1];
96 SubExprs[FN] = fn;
Reid Spencer5f016e22007-07-11 17:01:13 +000097 for (unsigned i = 0; i != numargs; ++i)
Ted Kremenek77ed8e42007-08-24 18:13:47 +000098 SubExprs[i+ARGS_START] = args[i];
Reid Spencer5f016e22007-07-11 17:01:13 +000099 RParenLoc = rparenloc;
100}
101
Chris Lattnerd18b3292007-12-28 05:25:02 +0000102/// setNumArgs - This changes the number of arguments present in this call.
103/// Any orphaned expressions are deleted by this, and any new operands are set
104/// to null.
105void CallExpr::setNumArgs(unsigned NumArgs) {
106 // No change, just return.
107 if (NumArgs == getNumArgs()) return;
108
109 // If shrinking # arguments, just delete the extras and forgot them.
110 if (NumArgs < getNumArgs()) {
111 for (unsigned i = NumArgs, e = getNumArgs(); i != e; ++i)
112 delete getArg(i);
113 this->NumArgs = NumArgs;
114 return;
115 }
116
117 // Otherwise, we are growing the # arguments. New an bigger argument array.
118 Expr **NewSubExprs = new Expr*[NumArgs+1];
119 // Copy over args.
120 for (unsigned i = 0; i != getNumArgs()+ARGS_START; ++i)
121 NewSubExprs[i] = SubExprs[i];
122 // Null out new args.
123 for (unsigned i = getNumArgs()+ARGS_START; i != NumArgs+ARGS_START; ++i)
124 NewSubExprs[i] = 0;
125
126 delete[] SubExprs;
127 SubExprs = NewSubExprs;
128 this->NumArgs = NumArgs;
129}
130
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000131bool CallExpr::isBuiltinConstantExpr() const {
132 // All simple function calls (e.g. func()) are implicitly cast to pointer to
133 // function. As a result, we try and obtain the DeclRefExpr from the
134 // ImplicitCastExpr.
135 const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee());
136 if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()).
137 return false;
138
139 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr());
140 if (!DRE)
141 return false;
142
Anders Carlssonbcba2012008-01-31 02:13:57 +0000143 const FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl());
144 if (!FDecl)
145 return false;
146
147 unsigned builtinID = FDecl->getIdentifier()->getBuiltinID();
148 if (!builtinID)
149 return false;
150
151 // We have a builtin that is a constant expression
Eli Friedman861dc462008-05-16 13:28:37 +0000152 return builtinID == Builtin::BI__builtin___CFStringMakeConstantString ||
153 builtinID == Builtin::BI__builtin_classify_type;
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000154}
Chris Lattnerd18b3292007-12-28 05:25:02 +0000155
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000156bool CallExpr::isBuiltinClassifyType(llvm::APSInt &Result) const {
157 // The following enum mimics gcc's internal "typeclass.h" file.
158 enum gcc_type_class {
159 no_type_class = -1,
160 void_type_class, integer_type_class, char_type_class,
161 enumeral_type_class, boolean_type_class,
162 pointer_type_class, reference_type_class, offset_type_class,
163 real_type_class, complex_type_class,
164 function_type_class, method_type_class,
165 record_type_class, union_type_class,
166 array_type_class, string_type_class,
167 lang_type_class
168 };
169 Result.setIsSigned(true);
170
171 // All simple function calls (e.g. func()) are implicitly cast to pointer to
172 // function. As a result, we try and obtain the DeclRefExpr from the
173 // ImplicitCastExpr.
174 const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee());
175 if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()).
176 return false;
177 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr());
178 if (!DRE)
179 return false;
180
181 // We have a DeclRefExpr.
182 if (strcmp(DRE->getDecl()->getName(), "__builtin_classify_type") == 0) {
183 // If no argument was supplied, default to "no_type_class". This isn't
184 // ideal, however it's what gcc does.
185 Result = static_cast<uint64_t>(no_type_class);
186 if (NumArgs >= 1) {
187 QualType argType = getArg(0)->getType();
188
189 if (argType->isVoidType())
190 Result = void_type_class;
191 else if (argType->isEnumeralType())
192 Result = enumeral_type_class;
193 else if (argType->isBooleanType())
194 Result = boolean_type_class;
195 else if (argType->isCharType())
196 Result = string_type_class; // gcc doesn't appear to use char_type_class
197 else if (argType->isIntegerType())
198 Result = integer_type_class;
199 else if (argType->isPointerType())
200 Result = pointer_type_class;
201 else if (argType->isReferenceType())
202 Result = reference_type_class;
203 else if (argType->isRealType())
204 Result = real_type_class;
205 else if (argType->isComplexType())
206 Result = complex_type_class;
207 else if (argType->isFunctionType())
208 Result = function_type_class;
209 else if (argType->isStructureType())
210 Result = record_type_class;
211 else if (argType->isUnionType())
212 Result = union_type_class;
213 else if (argType->isArrayType())
214 Result = array_type_class;
215 else if (argType->isUnionType())
216 Result = union_type_class;
217 else // FIXME: offset_type_class, method_type_class, & lang_type_class?
Chris Lattner3ef5bc02007-11-08 17:56:40 +0000218 assert(0 && "CallExpr::isBuiltinClassifyType(): unimplemented type");
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000219 }
220 return true;
221 }
222 return false;
223}
224
Reid Spencer5f016e22007-07-11 17:01:13 +0000225/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
226/// corresponds to, e.g. "<<=".
227const char *BinaryOperator::getOpcodeStr(Opcode Op) {
228 switch (Op) {
229 default: assert(0 && "Unknown binary operator");
230 case Mul: return "*";
231 case Div: return "/";
232 case Rem: return "%";
233 case Add: return "+";
234 case Sub: return "-";
235 case Shl: return "<<";
236 case Shr: return ">>";
237 case LT: return "<";
238 case GT: return ">";
239 case LE: return "<=";
240 case GE: return ">=";
241 case EQ: return "==";
242 case NE: return "!=";
243 case And: return "&";
244 case Xor: return "^";
245 case Or: return "|";
246 case LAnd: return "&&";
247 case LOr: return "||";
248 case Assign: return "=";
249 case MulAssign: return "*=";
250 case DivAssign: return "/=";
251 case RemAssign: return "%=";
252 case AddAssign: return "+=";
253 case SubAssign: return "-=";
254 case ShlAssign: return "<<=";
255 case ShrAssign: return ">>=";
256 case AndAssign: return "&=";
257 case XorAssign: return "^=";
258 case OrAssign: return "|=";
259 case Comma: return ",";
260 }
261}
262
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000263InitListExpr::InitListExpr(SourceLocation lbraceloc,
264 Expr **initexprs, unsigned numinits,
265 SourceLocation rbraceloc)
Steve Naroffc5ae8992008-05-01 02:04:18 +0000266 : Expr(InitListExprClass, QualType()),
267 LBraceLoc(lbraceloc), RBraceLoc(rbraceloc)
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000268{
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000269 for (unsigned i = 0; i != numinits; i++)
Steve Naroffc5ae8992008-05-01 02:04:18 +0000270 InitExprs.push_back(initexprs[i]);
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000271}
Reid Spencer5f016e22007-07-11 17:01:13 +0000272
273//===----------------------------------------------------------------------===//
274// Generic Expression Routines
275//===----------------------------------------------------------------------===//
276
277/// hasLocalSideEffect - Return true if this immediate expression has side
278/// effects, not counting any sub-expressions.
279bool Expr::hasLocalSideEffect() const {
280 switch (getStmtClass()) {
281 default:
282 return false;
283 case ParenExprClass:
284 return cast<ParenExpr>(this)->getSubExpr()->hasLocalSideEffect();
285 case UnaryOperatorClass: {
286 const UnaryOperator *UO = cast<UnaryOperator>(this);
287
288 switch (UO->getOpcode()) {
289 default: return false;
290 case UnaryOperator::PostInc:
291 case UnaryOperator::PostDec:
292 case UnaryOperator::PreInc:
293 case UnaryOperator::PreDec:
294 return true; // ++/--
295
296 case UnaryOperator::Deref:
297 // Dereferencing a volatile pointer is a side-effect.
298 return getType().isVolatileQualified();
299 case UnaryOperator::Real:
300 case UnaryOperator::Imag:
301 // accessing a piece of a volatile complex is a side-effect.
302 return UO->getSubExpr()->getType().isVolatileQualified();
303
304 case UnaryOperator::Extension:
305 return UO->getSubExpr()->hasLocalSideEffect();
306 }
307 }
Chris Lattnere7716e62007-12-01 06:07:34 +0000308 case BinaryOperatorClass: {
309 const BinaryOperator *BinOp = cast<BinaryOperator>(this);
310 // Consider comma to have side effects if the LHS and RHS both do.
311 if (BinOp->getOpcode() == BinaryOperator::Comma)
312 return BinOp->getLHS()->hasLocalSideEffect() &&
313 BinOp->getRHS()->hasLocalSideEffect();
314
315 return BinOp->isAssignmentOp();
316 }
Chris Lattnereb14fe82007-08-25 02:00:02 +0000317 case CompoundAssignOperatorClass:
Chris Lattner1f683e92007-08-25 01:55:00 +0000318 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000319
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +0000320 case ConditionalOperatorClass: {
321 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
322 return Exp->getCond()->hasLocalSideEffect()
323 || (Exp->getLHS() && Exp->getLHS()->hasLocalSideEffect())
324 || (Exp->getRHS() && Exp->getRHS()->hasLocalSideEffect());
325 }
326
Reid Spencer5f016e22007-07-11 17:01:13 +0000327 case MemberExprClass:
328 case ArraySubscriptExprClass:
329 // If the base pointer or element is to a volatile pointer/field, accessing
330 // if is a side effect.
331 return getType().isVolatileQualified();
Eli Friedman211f6ad2008-05-27 15:24:04 +0000332
Reid Spencer5f016e22007-07-11 17:01:13 +0000333 case CallExprClass:
334 // TODO: check attributes for pure/const. "void foo() { strlen("bar"); }"
335 // should warn.
336 return true;
Chris Lattnera9c01022007-09-26 22:06:30 +0000337 case ObjCMessageExprClass:
338 return true;
Eli Friedman211f6ad2008-05-27 15:24:04 +0000339 case StmtExprClass:
340 // TODO: check the inside of the statement expression
341 return true;
342
Reid Spencer5f016e22007-07-11 17:01:13 +0000343 case CastExprClass:
344 // If this is a cast to void, check the operand. Otherwise, the result of
345 // the cast is unused.
346 if (getType()->isVoidType())
347 return cast<CastExpr>(this)->getSubExpr()->hasLocalSideEffect();
348 return false;
Chris Lattner04421082008-04-08 04:40:51 +0000349
Eli Friedman4be1f472008-05-19 21:24:43 +0000350 case ImplicitCastExprClass:
351 // Check the operand, since implicit casts are inserted by Sema
352 return cast<ImplicitCastExpr>(this)->getSubExpr()->hasLocalSideEffect();
353
Chris Lattner04421082008-04-08 04:40:51 +0000354 case CXXDefaultArgExprClass:
355 return cast<CXXDefaultArgExpr>(this)->getExpr()->hasLocalSideEffect();
Reid Spencer5f016e22007-07-11 17:01:13 +0000356 }
357}
358
359/// isLvalue - C99 6.3.2.1: an lvalue is an expression with an object type or an
360/// incomplete type other than void. Nonarray expressions that can be lvalues:
361/// - name, where name must be a variable
362/// - e[i]
363/// - (e), where e must be an lvalue
364/// - e.name, where e must be an lvalue
365/// - e->name
366/// - *e, the type of e cannot be a function type
367/// - string-constant
Chris Lattner7da36f62007-10-30 22:53:42 +0000368/// - (__real__ e) and (__imag__ e) where e is an lvalue [GNU extension]
Bill Wendling08ad47c2007-07-17 03:52:31 +0000369/// - reference type [C++ [expr]]
Reid Spencer5f016e22007-07-11 17:01:13 +0000370///
Bill Wendlingca51c972007-07-16 07:07:56 +0000371Expr::isLvalueResult Expr::isLvalue() const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000372 // first, check the type (C99 6.3.2.1)
Chris Lattnercb4f9a62007-07-21 05:33:26 +0000373 if (TR->isFunctionType()) // from isObjectType()
Reid Spencer5f016e22007-07-11 17:01:13 +0000374 return LV_NotObjectType;
375
Steve Naroffacb818a2008-02-10 01:39:04 +0000376 // Allow qualified void which is an incomplete type other than void (yuck).
Chris Lattnerf46699c2008-02-20 20:55:12 +0000377 if (TR->isVoidType() && !TR.getCanonicalType().getCVRQualifiers())
Steve Naroffacb818a2008-02-10 01:39:04 +0000378 return LV_IncompleteVoidType;
379
Chris Lattnercb4f9a62007-07-21 05:33:26 +0000380 if (TR->isReferenceType()) // C++ [expr]
Bill Wendling08ad47c2007-07-17 03:52:31 +0000381 return LV_Valid;
382
Reid Spencer5f016e22007-07-11 17:01:13 +0000383 // the type looks fine, now check the expression
384 switch (getStmtClass()) {
385 case StringLiteralClass: // C99 6.5.1p4
Anders Carlsson7323a622007-11-30 22:47:59 +0000386 return LV_Valid;
Reid Spencer5f016e22007-07-11 17:01:13 +0000387 case ArraySubscriptExprClass: // C99 6.5.3p4 (e1[e2] == (*((e1)+(e2))))
388 // For vectors, make sure base is an lvalue (i.e. not a function call).
389 if (cast<ArraySubscriptExpr>(this)->getBase()->getType()->isVectorType())
390 return cast<ArraySubscriptExpr>(this)->getBase()->isLvalue();
391 return LV_Valid;
392 case DeclRefExprClass: // C99 6.5.1p2
393 if (isa<VarDecl>(cast<DeclRefExpr>(this)->getDecl()))
394 return LV_Valid;
395 break;
Anton Korobeynikovfdd75662007-07-12 15:26:50 +0000396 case MemberExprClass: { // C99 6.5.2.3p4
Reid Spencer5f016e22007-07-11 17:01:13 +0000397 const MemberExpr *m = cast<MemberExpr>(this);
398 return m->isArrow() ? LV_Valid : m->getBase()->isLvalue();
Anton Korobeynikovfdd75662007-07-12 15:26:50 +0000399 }
Chris Lattner7da36f62007-10-30 22:53:42 +0000400 case UnaryOperatorClass:
Reid Spencer5f016e22007-07-11 17:01:13 +0000401 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Deref)
Chris Lattner7da36f62007-10-30 22:53:42 +0000402 return LV_Valid; // C99 6.5.3p4
403
404 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Real ||
405 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Imag)
406 return cast<UnaryOperator>(this)->getSubExpr()->isLvalue(); // GNU.
Reid Spencer5f016e22007-07-11 17:01:13 +0000407 break;
408 case ParenExprClass: // C99 6.5.1p5
409 return cast<ParenExpr>(this)->getSubExpr()->isLvalue();
Steve Naroffe6386392007-12-05 04:00:10 +0000410 case CompoundLiteralExprClass: // C99 6.5.2.5p5
411 return LV_Valid;
Nate Begeman213541a2008-04-18 23:10:10 +0000412 case ExtVectorElementExprClass:
413 if (cast<ExtVectorElementExpr>(this)->containsDuplicateElements())
Steve Narofffec0b492007-07-30 03:29:09 +0000414 return LV_DuplicateVectorComponents;
415 return LV_Valid;
Steve Naroff027282d2007-11-12 14:34:27 +0000416 case ObjCIvarRefExprClass: // ObjC instance variables are lvalues.
417 return LV_Valid;
Steve Naroff799a6a62008-05-30 23:23:16 +0000418 case ObjCPropertyRefExprClass: // FIXME: check if read-only property.
419 return LV_Valid;
Chris Lattnerfa28b302008-01-12 08:14:25 +0000420 case PreDefinedExprClass:
421 return LV_Valid;
Chris Lattner04421082008-04-08 04:40:51 +0000422 case CXXDefaultArgExprClass:
423 return cast<CXXDefaultArgExpr>(this)->getExpr()->isLvalue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000424 default:
425 break;
426 }
427 return LV_InvalidExpression;
428}
429
430/// isModifiableLvalue - C99 6.3.2.1: an lvalue that does not have array type,
431/// does not have an incomplete type, does not have a const-qualified type, and
432/// if it is a structure or union, does not have any member (including,
433/// recursively, any member or element of all contained aggregates or unions)
434/// with a const-qualified type.
Bill Wendlingca51c972007-07-16 07:07:56 +0000435Expr::isModifiableLvalueResult Expr::isModifiableLvalue() const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000436 isLvalueResult lvalResult = isLvalue();
437
438 switch (lvalResult) {
439 case LV_Valid: break;
440 case LV_NotObjectType: return MLV_NotObjectType;
441 case LV_IncompleteVoidType: return MLV_IncompleteVoidType;
Steve Narofffec0b492007-07-30 03:29:09 +0000442 case LV_DuplicateVectorComponents: return MLV_DuplicateVectorComponents;
Reid Spencer5f016e22007-07-11 17:01:13 +0000443 case LV_InvalidExpression: return MLV_InvalidExpression;
444 }
445 if (TR.isConstQualified())
446 return MLV_ConstQualified;
447 if (TR->isArrayType())
448 return MLV_ArrayType;
449 if (TR->isIncompleteType())
450 return MLV_IncompleteType;
451
452 if (const RecordType *r = dyn_cast<RecordType>(TR.getCanonicalType())) {
453 if (r->hasConstFields())
454 return MLV_ConstQualified;
455 }
456 return MLV_Valid;
457}
458
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000459/// hasGlobalStorage - Return true if this expression has static storage
Chris Lattner4cc62712007-11-27 21:35:27 +0000460/// duration. This means that the address of this expression is a link-time
461/// constant.
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000462bool Expr::hasGlobalStorage() const {
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000463 switch (getStmtClass()) {
464 default:
465 return false;
Chris Lattner4cc62712007-11-27 21:35:27 +0000466 case ParenExprClass:
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000467 return cast<ParenExpr>(this)->getSubExpr()->hasGlobalStorage();
Chris Lattner4cc62712007-11-27 21:35:27 +0000468 case ImplicitCastExprClass:
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000469 return cast<ImplicitCastExpr>(this)->getSubExpr()->hasGlobalStorage();
Steve Naroffe9b12192008-01-14 18:19:28 +0000470 case CompoundLiteralExprClass:
471 return cast<CompoundLiteralExpr>(this)->isFileScope();
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000472 case DeclRefExprClass: {
473 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
474 if (const VarDecl *VD = dyn_cast<VarDecl>(D))
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000475 return VD->hasGlobalStorage();
Seo Sanghyeon63f067f2008-04-04 09:45:30 +0000476 if (isa<FunctionDecl>(D))
477 return true;
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000478 return false;
479 }
Chris Lattnerfb708062007-11-28 04:30:09 +0000480 case MemberExprClass: {
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000481 const MemberExpr *M = cast<MemberExpr>(this);
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000482 return !M->isArrow() && M->getBase()->hasGlobalStorage();
Chris Lattnerfb708062007-11-28 04:30:09 +0000483 }
Chris Lattner4cc62712007-11-27 21:35:27 +0000484 case ArraySubscriptExprClass:
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000485 return cast<ArraySubscriptExpr>(this)->getBase()->hasGlobalStorage();
Chris Lattnerfa28b302008-01-12 08:14:25 +0000486 case PreDefinedExprClass:
487 return true;
Chris Lattner04421082008-04-08 04:40:51 +0000488 case CXXDefaultArgExprClass:
489 return cast<CXXDefaultArgExpr>(this)->getExpr()->hasGlobalStorage();
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000490 }
491}
492
Ted Kremenek4e99a5f2008-01-17 16:57:34 +0000493Expr* Expr::IgnoreParens() {
494 Expr* E = this;
495 while (ParenExpr* P = dyn_cast<ParenExpr>(E))
496 E = P->getSubExpr();
497
498 return E;
499}
500
Chris Lattner56f34942008-02-13 01:02:39 +0000501/// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
502/// or CastExprs or ImplicitCastExprs, returning their operand.
503Expr *Expr::IgnoreParenCasts() {
504 Expr *E = this;
505 while (true) {
506 if (ParenExpr *P = dyn_cast<ParenExpr>(E))
507 E = P->getSubExpr();
508 else if (CastExpr *P = dyn_cast<CastExpr>(E))
509 E = P->getSubExpr();
510 else if (ImplicitCastExpr *P = dyn_cast<ImplicitCastExpr>(E))
511 E = P->getSubExpr();
512 else
513 return E;
514 }
515}
516
517
Steve Naroff38374b02007-09-02 20:30:18 +0000518bool Expr::isConstantExpr(ASTContext &Ctx, SourceLocation *Loc) const {
Steve Naroff38374b02007-09-02 20:30:18 +0000519 switch (getStmtClass()) {
520 default:
521 if (Loc) *Loc = getLocStart();
522 return false;
523 case ParenExprClass:
524 return cast<ParenExpr>(this)->getSubExpr()->isConstantExpr(Ctx, Loc);
525 case StringLiteralClass:
Steve Naroff5d37e322007-11-09 15:00:03 +0000526 case ObjCStringLiteralClass:
Steve Naroff38374b02007-09-02 20:30:18 +0000527 case FloatingLiteralClass:
528 case IntegerLiteralClass:
529 case CharacterLiteralClass:
530 case ImaginaryLiteralClass:
Anders Carlsson1a86b332007-10-17 00:52:43 +0000531 case TypesCompatibleExprClass:
532 case CXXBoolLiteralExprClass:
Chris Lattner2777e492007-10-18 00:20:32 +0000533 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000534 case CallExprClass: {
535 const CallExpr *CE = cast<CallExpr>(this);
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000536 if (CE->isBuiltinConstantExpr())
537 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000538 if (Loc) *Loc = getLocStart();
539 return false;
540 }
Chris Lattner4ef8dd62007-11-01 02:45:17 +0000541 case DeclRefExprClass: {
542 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
543 // Accept address of function.
544 if (isa<EnumConstantDecl>(D) || isa<FunctionDecl>(D))
Chris Lattner2777e492007-10-18 00:20:32 +0000545 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000546 if (Loc) *Loc = getLocStart();
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000547 if (isa<VarDecl>(D))
548 return TR->isArrayType();
Steve Naroff38374b02007-09-02 20:30:18 +0000549 return false;
Chris Lattner4ef8dd62007-11-01 02:45:17 +0000550 }
Steve Naroffb8f13a82008-01-09 00:05:37 +0000551 case CompoundLiteralExprClass:
552 if (Loc) *Loc = getLocStart();
553 // Allow "(int []){2,4}", since the array will be converted to a pointer.
Nate Begemand47d4f52008-01-25 05:34:48 +0000554 // Allow "(vector type){2,4}" since the elements are all constant.
555 return TR->isArrayType() || TR->isVectorType();
Steve Naroff38374b02007-09-02 20:30:18 +0000556 case UnaryOperatorClass: {
557 const UnaryOperator *Exp = cast<UnaryOperator>(this);
558
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000559 // C99 6.6p9
Chris Lattner239c15e2007-12-11 23:11:17 +0000560 if (Exp->getOpcode() == UnaryOperator::AddrOf) {
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000561 if (!Exp->getSubExpr()->hasGlobalStorage()) {
Chris Lattner239c15e2007-12-11 23:11:17 +0000562 if (Loc) *Loc = getLocStart();
563 return false;
564 }
565 return true;
566 }
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000567
Steve Naroff38374b02007-09-02 20:30:18 +0000568 // Get the operand value. If this is sizeof/alignof, do not evalute the
569 // operand. This affects C99 6.6p3.
Steve Naroffd0091aa2008-01-10 22:15:12 +0000570 if (!Exp->isSizeOfAlignOfOp() &&
571 Exp->getOpcode() != UnaryOperator::OffsetOf &&
Steve Naroff38374b02007-09-02 20:30:18 +0000572 !Exp->getSubExpr()->isConstantExpr(Ctx, Loc))
573 return false;
574
575 switch (Exp->getOpcode()) {
576 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
577 // See C99 6.6p3.
578 default:
579 if (Loc) *Loc = Exp->getOperatorLoc();
580 return false;
581 case UnaryOperator::Extension:
582 return true; // FIXME: this is wrong.
583 case UnaryOperator::SizeOf:
584 case UnaryOperator::AlignOf:
Steve Naroffd0091aa2008-01-10 22:15:12 +0000585 case UnaryOperator::OffsetOf:
Steve Naroff38374b02007-09-02 20:30:18 +0000586 // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000587 if (!Exp->getSubExpr()->getType()->isConstantSizeType()) {
Chris Lattner65383472007-12-18 07:15:40 +0000588 if (Loc) *Loc = Exp->getOperatorLoc();
Steve Naroff38374b02007-09-02 20:30:18 +0000589 return false;
Chris Lattner65383472007-12-18 07:15:40 +0000590 }
Chris Lattner2777e492007-10-18 00:20:32 +0000591 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000592 case UnaryOperator::LNot:
593 case UnaryOperator::Plus:
594 case UnaryOperator::Minus:
595 case UnaryOperator::Not:
Chris Lattner2777e492007-10-18 00:20:32 +0000596 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000597 }
Steve Naroff38374b02007-09-02 20:30:18 +0000598 }
599 case SizeOfAlignOfTypeExprClass: {
600 const SizeOfAlignOfTypeExpr *Exp = cast<SizeOfAlignOfTypeExpr>(this);
601 // alignof always evaluates to a constant.
Chris Lattnera269ebf2008-02-21 05:45:29 +0000602 if (Exp->isSizeOf() && !Exp->getArgumentType()->isVoidType() &&
603 !Exp->getArgumentType()->isConstantSizeType()) {
Chris Lattner65383472007-12-18 07:15:40 +0000604 if (Loc) *Loc = Exp->getOperatorLoc();
Steve Naroff38374b02007-09-02 20:30:18 +0000605 return false;
Chris Lattner65383472007-12-18 07:15:40 +0000606 }
Chris Lattner2777e492007-10-18 00:20:32 +0000607 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000608 }
609 case BinaryOperatorClass: {
610 const BinaryOperator *Exp = cast<BinaryOperator>(this);
611
612 // The LHS of a constant expr is always evaluated and needed.
613 if (!Exp->getLHS()->isConstantExpr(Ctx, Loc))
614 return false;
615
616 if (!Exp->getRHS()->isConstantExpr(Ctx, Loc))
617 return false;
Chris Lattner2777e492007-10-18 00:20:32 +0000618 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000619 }
620 case ImplicitCastExprClass:
621 case CastExprClass: {
622 const Expr *SubExpr;
623 SourceLocation CastLoc;
624 if (const CastExpr *C = dyn_cast<CastExpr>(this)) {
625 SubExpr = C->getSubExpr();
626 CastLoc = C->getLParenLoc();
627 } else {
628 SubExpr = cast<ImplicitCastExpr>(this)->getSubExpr();
629 CastLoc = getLocStart();
630 }
631 if (!SubExpr->isConstantExpr(Ctx, Loc)) {
632 if (Loc) *Loc = SubExpr->getLocStart();
633 return false;
634 }
Chris Lattner2777e492007-10-18 00:20:32 +0000635 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000636 }
637 case ConditionalOperatorClass: {
638 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
Chris Lattner2777e492007-10-18 00:20:32 +0000639 if (!Exp->getCond()->isConstantExpr(Ctx, Loc) ||
Anders Carlsson39073232007-11-30 19:04:31 +0000640 // Handle the GNU extension for missing LHS.
641 !(Exp->getLHS() && Exp->getLHS()->isConstantExpr(Ctx, Loc)) ||
Chris Lattner2777e492007-10-18 00:20:32 +0000642 !Exp->getRHS()->isConstantExpr(Ctx, Loc))
Steve Naroff38374b02007-09-02 20:30:18 +0000643 return false;
Chris Lattner2777e492007-10-18 00:20:32 +0000644 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000645 }
Steve Naroffd0091aa2008-01-10 22:15:12 +0000646 case InitListExprClass: {
647 const InitListExpr *Exp = cast<InitListExpr>(this);
648 unsigned numInits = Exp->getNumInits();
649 for (unsigned i = 0; i < numInits; i++) {
650 if (!Exp->getInit(i)->isConstantExpr(Ctx, Loc)) {
651 if (Loc) *Loc = Exp->getInit(i)->getLocStart();
652 return false;
653 }
654 }
655 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000656 }
Chris Lattner04421082008-04-08 04:40:51 +0000657 case CXXDefaultArgExprClass:
658 return cast<CXXDefaultArgExpr>(this)->getExpr()->isConstantExpr(Ctx, Loc);
Steve Naroffd0091aa2008-01-10 22:15:12 +0000659 }
Steve Naroff38374b02007-09-02 20:30:18 +0000660}
661
Reid Spencer5f016e22007-07-11 17:01:13 +0000662/// isIntegerConstantExpr - this recursive routine will test if an expression is
663/// an integer constant expression. Note: With the introduction of VLA's in
664/// C99 the result of the sizeof operator is no longer always a constant
665/// expression. The generalization of the wording to include any subexpression
666/// that is not evaluated (C99 6.6p3) means that nonconstant subexpressions
667/// can appear as operands to other operators (e.g. &&, ||, ?:). For instance,
668/// "0 || f()" can be treated as a constant expression. In C90 this expression,
669/// occurring in a context requiring a constant, would have been a constraint
670/// violation. FIXME: This routine currently implements C90 semantics.
671/// To properly implement C99 semantics this routine will need to evaluate
672/// expressions involving operators previously mentioned.
673
674/// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero,
675/// comma, etc
676///
677/// FIXME: This should ext-warn on overflow during evaluation! ISO C does not
Chris Lattnerccc213f2007-09-26 00:47:26 +0000678/// permit this. This includes things like (int)1e1000
Chris Lattnerce0afc02007-07-18 05:21:20 +0000679///
680/// FIXME: Handle offsetof. Two things to do: Handle GCC's __builtin_offsetof
681/// to support gcc 4.0+ and handle the idiom GCC recognizes with a null pointer
682/// cast+dereference.
Chris Lattner590b6642007-07-15 23:26:56 +0000683bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx,
684 SourceLocation *Loc, bool isEvaluated) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000685 switch (getStmtClass()) {
686 default:
687 if (Loc) *Loc = getLocStart();
688 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000689 case ParenExprClass:
690 return cast<ParenExpr>(this)->getSubExpr()->
Chris Lattner590b6642007-07-15 23:26:56 +0000691 isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated);
Reid Spencer5f016e22007-07-11 17:01:13 +0000692 case IntegerLiteralClass:
693 Result = cast<IntegerLiteral>(this)->getValue();
694 break;
Chris Lattner2eadfb62007-07-15 23:32:58 +0000695 case CharacterLiteralClass: {
696 const CharacterLiteral *CL = cast<CharacterLiteral>(this);
Chris Lattner98be4942008-03-05 18:54:05 +0000697 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Chris Lattner2eadfb62007-07-15 23:32:58 +0000698 Result = CL->getValue();
Chris Lattnerf0fbcb32007-07-16 21:04:56 +0000699 Result.setIsUnsigned(!getType()->isSignedIntegerType());
Reid Spencer5f016e22007-07-11 17:01:13 +0000700 break;
Chris Lattner2eadfb62007-07-15 23:32:58 +0000701 }
Steve Naroff7b658aa2007-08-02 04:09:23 +0000702 case TypesCompatibleExprClass: {
703 const TypesCompatibleExpr *TCE = cast<TypesCompatibleExpr>(this);
Chris Lattner98be4942008-03-05 18:54:05 +0000704 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Steve Naroffec0550f2007-10-15 20:41:53 +0000705 Result = Ctx.typesAreCompatible(TCE->getArgType1(), TCE->getArgType2());
Steve Naroff389cecc2007-08-02 00:13:27 +0000706 break;
Steve Naroff7b658aa2007-08-02 04:09:23 +0000707 }
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000708 case CallExprClass: {
709 const CallExpr *CE = cast<CallExpr>(this);
Chris Lattner98be4942008-03-05 18:54:05 +0000710 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000711 if (CE->isBuiltinClassifyType(Result))
712 break;
713 if (Loc) *Loc = getLocStart();
714 return false;
715 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000716 case DeclRefExprClass:
717 if (const EnumConstantDecl *D =
718 dyn_cast<EnumConstantDecl>(cast<DeclRefExpr>(this)->getDecl())) {
719 Result = D->getInitVal();
720 break;
721 }
722 if (Loc) *Loc = getLocStart();
723 return false;
724 case UnaryOperatorClass: {
725 const UnaryOperator *Exp = cast<UnaryOperator>(this);
726
727 // Get the operand value. If this is sizeof/alignof, do not evalute the
728 // operand. This affects C99 6.6p3.
Anders Carlsson5a1deb82008-01-29 15:56:48 +0000729 if (!Exp->isSizeOfAlignOfOp() && !Exp->isOffsetOfOp() &&
Chris Lattner602dafd2007-08-23 21:42:50 +0000730 !Exp->getSubExpr()->isIntegerConstantExpr(Result, Ctx, Loc,isEvaluated))
Reid Spencer5f016e22007-07-11 17:01:13 +0000731 return false;
732
733 switch (Exp->getOpcode()) {
734 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
735 // See C99 6.6p3.
736 default:
737 if (Loc) *Loc = Exp->getOperatorLoc();
738 return false;
739 case UnaryOperator::Extension:
Chris Lattner76e773a2007-07-18 18:38:36 +0000740 return true; // FIXME: this is wrong.
Reid Spencer5f016e22007-07-11 17:01:13 +0000741 case UnaryOperator::SizeOf:
742 case UnaryOperator::AlignOf:
Chris Lattnera269ebf2008-02-21 05:45:29 +0000743 // Return the result in the right width.
Chris Lattner98be4942008-03-05 18:54:05 +0000744 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Chris Lattnera269ebf2008-02-21 05:45:29 +0000745
746 // sizeof(void) and __alignof__(void) = 1 as a gcc extension.
747 if (Exp->getSubExpr()->getType()->isVoidType()) {
748 Result = 1;
749 break;
750 }
751
Reid Spencer5f016e22007-07-11 17:01:13 +0000752 // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000753 if (!Exp->getSubExpr()->getType()->isConstantSizeType()) {
Chris Lattner65383472007-12-18 07:15:40 +0000754 if (Loc) *Loc = Exp->getOperatorLoc();
Reid Spencer5f016e22007-07-11 17:01:13 +0000755 return false;
Chris Lattner65383472007-12-18 07:15:40 +0000756 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000757
Chris Lattner76e773a2007-07-18 18:38:36 +0000758 // Get information about the size or align.
Chris Lattnerefdd1572008-01-02 21:54:09 +0000759 if (Exp->getSubExpr()->getType()->isFunctionType()) {
760 // GCC extension: sizeof(function) = 1.
761 Result = Exp->getOpcode() == UnaryOperator::AlignOf ? 4 : 1;
Chris Lattnerda5a6b62007-11-27 18:22:04 +0000762 } else {
Chris Lattner98be4942008-03-05 18:54:05 +0000763 unsigned CharSize = Ctx.Target.getCharWidth();
Anders Carlsson64a31ef2008-02-18 07:10:45 +0000764 if (Exp->getOpcode() == UnaryOperator::AlignOf)
Chris Lattner98be4942008-03-05 18:54:05 +0000765 Result = Ctx.getTypeAlign(Exp->getSubExpr()->getType()) / CharSize;
Anders Carlsson64a31ef2008-02-18 07:10:45 +0000766 else
Chris Lattner98be4942008-03-05 18:54:05 +0000767 Result = Ctx.getTypeSize(Exp->getSubExpr()->getType()) / CharSize;
Chris Lattnerda5a6b62007-11-27 18:22:04 +0000768 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000769 break;
770 case UnaryOperator::LNot: {
Chris Lattnerbf755382008-01-25 19:16:19 +0000771 bool Val = Result == 0;
Chris Lattner98be4942008-03-05 18:54:05 +0000772 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Reid Spencer5f016e22007-07-11 17:01:13 +0000773 Result = Val;
774 break;
775 }
776 case UnaryOperator::Plus:
Reid Spencer5f016e22007-07-11 17:01:13 +0000777 break;
778 case UnaryOperator::Minus:
Reid Spencer5f016e22007-07-11 17:01:13 +0000779 Result = -Result;
780 break;
781 case UnaryOperator::Not:
Reid Spencer5f016e22007-07-11 17:01:13 +0000782 Result = ~Result;
783 break;
Anders Carlsson5a1deb82008-01-29 15:56:48 +0000784 case UnaryOperator::OffsetOf:
785 Result = Exp->evaluateOffsetOf(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000786 }
787 break;
788 }
789 case SizeOfAlignOfTypeExprClass: {
790 const SizeOfAlignOfTypeExpr *Exp = cast<SizeOfAlignOfTypeExpr>(this);
Chris Lattnera269ebf2008-02-21 05:45:29 +0000791
792 // Return the result in the right width.
Chris Lattner98be4942008-03-05 18:54:05 +0000793 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Chris Lattnera269ebf2008-02-21 05:45:29 +0000794
795 // sizeof(void) and __alignof__(void) = 1 as a gcc extension.
796 if (Exp->getArgumentType()->isVoidType()) {
797 Result = 1;
798 break;
799 }
800
801 // alignof always evaluates to a constant, sizeof does if arg is not VLA.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000802 if (Exp->isSizeOf() && !Exp->getArgumentType()->isConstantSizeType()) {
Chris Lattner65383472007-12-18 07:15:40 +0000803 if (Loc) *Loc = Exp->getOperatorLoc();
Reid Spencer5f016e22007-07-11 17:01:13 +0000804 return false;
Chris Lattner65383472007-12-18 07:15:40 +0000805 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000806
Chris Lattner76e773a2007-07-18 18:38:36 +0000807 // Get information about the size or align.
Chris Lattnerefdd1572008-01-02 21:54:09 +0000808 if (Exp->getArgumentType()->isFunctionType()) {
809 // GCC extension: sizeof(function) = 1.
810 Result = Exp->isSizeOf() ? 1 : 4;
Anders Carlsson6a24acb2008-02-16 01:20:23 +0000811 } else {
Chris Lattner98be4942008-03-05 18:54:05 +0000812 unsigned CharSize = Ctx.Target.getCharWidth();
Anders Carlsson6a24acb2008-02-16 01:20:23 +0000813 if (Exp->isSizeOf())
Chris Lattner98be4942008-03-05 18:54:05 +0000814 Result = Ctx.getTypeSize(Exp->getArgumentType()) / CharSize;
Anders Carlsson6a24acb2008-02-16 01:20:23 +0000815 else
Chris Lattner98be4942008-03-05 18:54:05 +0000816 Result = Ctx.getTypeAlign(Exp->getArgumentType()) / CharSize;
Ted Kremenek060e4702007-12-17 17:38:43 +0000817 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000818 break;
819 }
820 case BinaryOperatorClass: {
821 const BinaryOperator *Exp = cast<BinaryOperator>(this);
822
823 // The LHS of a constant expr is always evaluated and needed.
Chris Lattner590b6642007-07-15 23:26:56 +0000824 if (!Exp->getLHS()->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated))
Reid Spencer5f016e22007-07-11 17:01:13 +0000825 return false;
826
827 llvm::APSInt RHS(Result);
828
829 // The short-circuiting &&/|| operators don't necessarily evaluate their
830 // RHS. Make sure to pass isEvaluated down correctly.
831 if (Exp->isLogicalOp()) {
832 bool RHSEval;
833 if (Exp->getOpcode() == BinaryOperator::LAnd)
834 RHSEval = Result != 0;
835 else {
836 assert(Exp->getOpcode() == BinaryOperator::LOr &&"Unexpected logical");
837 RHSEval = Result == 0;
838 }
839
Chris Lattner590b6642007-07-15 23:26:56 +0000840 if (!Exp->getRHS()->isIntegerConstantExpr(RHS, Ctx, Loc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000841 isEvaluated & RHSEval))
842 return false;
843 } else {
Chris Lattner590b6642007-07-15 23:26:56 +0000844 if (!Exp->getRHS()->isIntegerConstantExpr(RHS, Ctx, Loc, isEvaluated))
Reid Spencer5f016e22007-07-11 17:01:13 +0000845 return false;
846 }
847
Reid Spencer5f016e22007-07-11 17:01:13 +0000848 switch (Exp->getOpcode()) {
849 default:
850 if (Loc) *Loc = getLocStart();
851 return false;
852 case BinaryOperator::Mul:
853 Result *= RHS;
854 break;
855 case BinaryOperator::Div:
856 if (RHS == 0) {
857 if (!isEvaluated) break;
858 if (Loc) *Loc = getLocStart();
859 return false;
860 }
861 Result /= RHS;
862 break;
863 case BinaryOperator::Rem:
864 if (RHS == 0) {
865 if (!isEvaluated) break;
866 if (Loc) *Loc = getLocStart();
867 return false;
868 }
869 Result %= RHS;
870 break;
871 case BinaryOperator::Add: Result += RHS; break;
872 case BinaryOperator::Sub: Result -= RHS; break;
873 case BinaryOperator::Shl:
Chris Lattner701e5eb2007-09-04 02:45:27 +0000874 Result <<=
875 static_cast<uint32_t>(RHS.getLimitedValue(Result.getBitWidth()-1));
Reid Spencer5f016e22007-07-11 17:01:13 +0000876 break;
877 case BinaryOperator::Shr:
Chris Lattner701e5eb2007-09-04 02:45:27 +0000878 Result >>=
879 static_cast<uint32_t>(RHS.getLimitedValue(Result.getBitWidth()-1));
Reid Spencer5f016e22007-07-11 17:01:13 +0000880 break;
881 case BinaryOperator::LT: Result = Result < RHS; break;
882 case BinaryOperator::GT: Result = Result > RHS; break;
883 case BinaryOperator::LE: Result = Result <= RHS; break;
884 case BinaryOperator::GE: Result = Result >= RHS; break;
885 case BinaryOperator::EQ: Result = Result == RHS; break;
886 case BinaryOperator::NE: Result = Result != RHS; break;
887 case BinaryOperator::And: Result &= RHS; break;
888 case BinaryOperator::Xor: Result ^= RHS; break;
889 case BinaryOperator::Or: Result |= RHS; break;
890 case BinaryOperator::LAnd:
891 Result = Result != 0 && RHS != 0;
892 break;
893 case BinaryOperator::LOr:
894 Result = Result != 0 || RHS != 0;
895 break;
896
897 case BinaryOperator::Comma:
898 // C99 6.6p3: "shall not contain assignment, ..., or comma operators,
899 // *except* when they are contained within a subexpression that is not
900 // evaluated". Note that Assignment can never happen due to constraints
901 // on the LHS subexpr, so we don't need to check it here.
902 if (isEvaluated) {
903 if (Loc) *Loc = getLocStart();
904 return false;
905 }
906
907 // The result of the constant expr is the RHS.
908 Result = RHS;
909 return true;
910 }
911
912 assert(!Exp->isAssignmentOp() && "LHS can't be a constant expr!");
913 break;
914 }
Chris Lattner26dc7b32007-07-15 23:54:50 +0000915 case ImplicitCastExprClass:
Reid Spencer5f016e22007-07-11 17:01:13 +0000916 case CastExprClass: {
Chris Lattner26dc7b32007-07-15 23:54:50 +0000917 const Expr *SubExpr;
918 SourceLocation CastLoc;
919 if (const CastExpr *C = dyn_cast<CastExpr>(this)) {
920 SubExpr = C->getSubExpr();
921 CastLoc = C->getLParenLoc();
922 } else {
923 SubExpr = cast<ImplicitCastExpr>(this)->getSubExpr();
924 CastLoc = getLocStart();
925 }
926
Reid Spencer5f016e22007-07-11 17:01:13 +0000927 // C99 6.6p6: shall only convert arithmetic types to integer types.
Chris Lattner26dc7b32007-07-15 23:54:50 +0000928 if (!SubExpr->getType()->isArithmeticType() ||
929 !getType()->isIntegerType()) {
930 if (Loc) *Loc = SubExpr->getLocStart();
Steve Naroffc7938082008-06-03 22:06:04 +0000931 // GCC accepts pointers as an extension.
932 // FIXME: check getLangOptions().NoExtensions. At the moment, it doesn't
933 // appear possible to get langOptions() from the Expr.
934 if (SubExpr->getType()->isPointerType()) // && !NoExtensions
935 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000936 return false;
937 }
Chris Lattner987b15d2007-09-22 19:04:13 +0000938
Chris Lattner98be4942008-03-05 18:54:05 +0000939 uint32_t DestWidth = static_cast<uint32_t>(Ctx.getTypeSize(getType()));
Chris Lattner987b15d2007-09-22 19:04:13 +0000940
Reid Spencer5f016e22007-07-11 17:01:13 +0000941 // Handle simple integer->integer casts.
Chris Lattner26dc7b32007-07-15 23:54:50 +0000942 if (SubExpr->getType()->isIntegerType()) {
943 if (!SubExpr->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated))
Reid Spencer5f016e22007-07-11 17:01:13 +0000944 return false;
Chris Lattner26dc7b32007-07-15 23:54:50 +0000945
946 // Figure out if this is a truncate, extend or noop cast.
Chris Lattner26dc7b32007-07-15 23:54:50 +0000947 // If the input is signed, do a sign extend, noop, or truncate.
Chris Lattnerc0a356b2008-01-09 18:59:34 +0000948 if (getType()->isBooleanType()) {
949 // Conversion to bool compares against zero.
950 Result = Result != 0;
951 Result.zextOrTrunc(DestWidth);
952 } else if (SubExpr->getType()->isSignedIntegerType())
Chris Lattner26dc7b32007-07-15 23:54:50 +0000953 Result.sextOrTrunc(DestWidth);
954 else // If the input is unsigned, do a zero extend, noop, or truncate.
955 Result.zextOrTrunc(DestWidth);
Reid Spencer5f016e22007-07-11 17:01:13 +0000956 break;
957 }
958
959 // Allow floating constants that are the immediate operands of casts or that
960 // are parenthesized.
Chris Lattner26dc7b32007-07-15 23:54:50 +0000961 const Expr *Operand = SubExpr;
Reid Spencer5f016e22007-07-11 17:01:13 +0000962 while (const ParenExpr *PE = dyn_cast<ParenExpr>(Operand))
963 Operand = PE->getSubExpr();
Chris Lattner987b15d2007-09-22 19:04:13 +0000964
965 // If this isn't a floating literal, we can't handle it.
966 const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(Operand);
967 if (!FL) {
968 if (Loc) *Loc = Operand->getLocStart();
969 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000970 }
Chris Lattnerc0a356b2008-01-09 18:59:34 +0000971
972 // If the destination is boolean, compare against zero.
973 if (getType()->isBooleanType()) {
974 Result = !FL->getValue().isZero();
975 Result.zextOrTrunc(DestWidth);
976 break;
977 }
Chris Lattner987b15d2007-09-22 19:04:13 +0000978
979 // Determine whether we are converting to unsigned or signed.
980 bool DestSigned = getType()->isSignedIntegerType();
Chris Lattnerccc213f2007-09-26 00:47:26 +0000981
982 // TODO: Warn on overflow, but probably not here: isIntegerConstantExpr can
983 // be called multiple times per AST.
Chris Lattner987b15d2007-09-22 19:04:13 +0000984 uint64_t Space[4];
Chris Lattnerccc213f2007-09-26 00:47:26 +0000985 (void)FL->getValue().convertToInteger(Space, DestWidth, DestSigned,
986 llvm::APFloat::rmTowardZero);
Chris Lattner987b15d2007-09-22 19:04:13 +0000987 Result = llvm::APInt(DestWidth, 4, Space);
988 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000989 }
990 case ConditionalOperatorClass: {
991 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
992
Chris Lattner590b6642007-07-15 23:26:56 +0000993 if (!Exp->getCond()->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated))
Reid Spencer5f016e22007-07-11 17:01:13 +0000994 return false;
995
996 const Expr *TrueExp = Exp->getLHS();
997 const Expr *FalseExp = Exp->getRHS();
998 if (Result == 0) std::swap(TrueExp, FalseExp);
999
1000 // Evaluate the false one first, discard the result.
Anders Carlsson39073232007-11-30 19:04:31 +00001001 if (FalseExp && !FalseExp->isIntegerConstantExpr(Result, Ctx, Loc, false))
Reid Spencer5f016e22007-07-11 17:01:13 +00001002 return false;
1003 // Evalute the true one, capture the result.
Anders Carlsson39073232007-11-30 19:04:31 +00001004 if (TrueExp &&
1005 !TrueExp->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated))
Reid Spencer5f016e22007-07-11 17:01:13 +00001006 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001007 break;
1008 }
Chris Lattner04421082008-04-08 04:40:51 +00001009 case CXXDefaultArgExprClass:
1010 return cast<CXXDefaultArgExpr>(this)
1011 ->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated);
Reid Spencer5f016e22007-07-11 17:01:13 +00001012 }
1013
1014 // Cases that are valid constant exprs fall through to here.
1015 Result.setIsUnsigned(getType()->isUnsignedIntegerType());
1016 return true;
1017}
1018
Reid Spencer5f016e22007-07-11 17:01:13 +00001019/// isNullPointerConstant - C99 6.3.2.3p3 - Return true if this is either an
1020/// integer constant expression with the value zero, or if this is one that is
1021/// cast to void*.
Chris Lattner590b6642007-07-15 23:26:56 +00001022bool Expr::isNullPointerConstant(ASTContext &Ctx) const {
Steve Naroffaa58f002008-01-14 16:10:57 +00001023 // Strip off a cast to void*, if it exists.
1024 if (const CastExpr *CE = dyn_cast<CastExpr>(this)) {
1025 // Check that it is a cast to void*.
Eli Friedman4b3f9b32008-02-13 17:29:58 +00001026 if (const PointerType *PT = CE->getType()->getAsPointerType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001027 QualType Pointee = PT->getPointeeType();
Chris Lattnerf46699c2008-02-20 20:55:12 +00001028 if (Pointee.getCVRQualifiers() == 0 &&
1029 Pointee->isVoidType() && // to void*
Steve Naroffaa58f002008-01-14 16:10:57 +00001030 CE->getSubExpr()->getType()->isIntegerType()) // from int.
1031 return CE->getSubExpr()->isNullPointerConstant(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001032 }
Steve Naroffaa58f002008-01-14 16:10:57 +00001033 } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
1034 // Ignore the ImplicitCastExpr type entirely.
1035 return ICE->getSubExpr()->isNullPointerConstant(Ctx);
1036 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
1037 // Accept ((void*)0) as a null pointer constant, as many other
1038 // implementations do.
1039 return PE->getSubExpr()->isNullPointerConstant(Ctx);
Chris Lattner8123a952008-04-10 02:22:51 +00001040 } else if (const CXXDefaultArgExpr *DefaultArg
1041 = dyn_cast<CXXDefaultArgExpr>(this)) {
Chris Lattner04421082008-04-08 04:40:51 +00001042 // See through default argument expressions
1043 return DefaultArg->getExpr()->isNullPointerConstant(Ctx);
Steve Naroffaaffbf72008-01-14 02:53:34 +00001044 }
Steve Naroffaa58f002008-01-14 16:10:57 +00001045
1046 // This expression must be an integer type.
1047 if (!getType()->isIntegerType())
1048 return false;
1049
Reid Spencer5f016e22007-07-11 17:01:13 +00001050 // If we have an integer constant expression, we need to *evaluate* it and
1051 // test for the value 0.
1052 llvm::APSInt Val(32);
Steve Naroffaa58f002008-01-14 16:10:57 +00001053 return isIntegerConstantExpr(Val, Ctx, 0, true) && Val == 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001054}
Steve Naroff31a45842007-07-28 23:10:27 +00001055
Nate Begeman213541a2008-04-18 23:10:10 +00001056unsigned ExtVectorElementExpr::getNumElements() const {
Nate Begeman8a997642008-05-09 06:41:27 +00001057 if (const VectorType *VT = getType()->getAsVectorType())
1058 return VT->getNumElements();
1059 return 1;
Chris Lattner4d0ac882007-08-03 16:00:20 +00001060}
1061
Nate Begeman8a997642008-05-09 06:41:27 +00001062/// containsDuplicateElements - Return true if any element access is repeated.
Nate Begeman213541a2008-04-18 23:10:10 +00001063bool ExtVectorElementExpr::containsDuplicateElements() const {
Steve Narofffec0b492007-07-30 03:29:09 +00001064 const char *compStr = Accessor.getName();
1065 unsigned length = strlen(compStr);
1066
1067 for (unsigned i = 0; i < length-1; i++) {
1068 const char *s = compStr+i;
1069 for (const char c = *s++; *s; s++)
1070 if (c == *s)
1071 return true;
1072 }
1073 return false;
1074}
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001075
Nate Begeman8a997642008-05-09 06:41:27 +00001076/// getEncodedElementAccess - We encode the fields as a llvm ConstantArray.
Nate Begeman3b8d1162008-05-13 21:03:02 +00001077void ExtVectorElementExpr::getEncodedElementAccess(
1078 llvm::SmallVectorImpl<unsigned> &Elts) const {
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001079 const char *compStr = Accessor.getName();
Nate Begeman8a997642008-05-09 06:41:27 +00001080
1081 bool isHi = !strcmp(compStr, "hi");
1082 bool isLo = !strcmp(compStr, "lo");
1083 bool isEven = !strcmp(compStr, "e");
1084 bool isOdd = !strcmp(compStr, "o");
1085
1086 for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
1087 uint64_t Index;
1088
1089 if (isHi)
1090 Index = e + i;
1091 else if (isLo)
1092 Index = i;
1093 else if (isEven)
1094 Index = 2 * i;
1095 else if (isOdd)
1096 Index = 2 * i + 1;
1097 else
1098 Index = ExtVectorType::getAccessorIdx(compStr[i]);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001099
Nate Begeman3b8d1162008-05-13 21:03:02 +00001100 Elts.push_back(Index);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001101 }
Nate Begeman8a997642008-05-09 06:41:27 +00001102}
1103
Steve Naroff68d331a2007-09-27 14:38:14 +00001104// constructor for instance messages.
Steve Naroffbcfb06a2007-09-28 22:22:11 +00001105ObjCMessageExpr::ObjCMessageExpr(Expr *receiver, Selector selInfo,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001106 QualType retType, ObjCMethodDecl *mproto,
Steve Naroffdb611d52007-11-03 16:37:59 +00001107 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff49f109c2007-11-15 13:05:42 +00001108 Expr **ArgExprs, unsigned nargs)
Steve Naroffdb611d52007-11-03 16:37:59 +00001109 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekea958e572008-05-01 17:26:20 +00001110 MethodProto(mproto) {
Steve Naroff49f109c2007-11-15 13:05:42 +00001111 NumArgs = nargs;
1112 SubExprs = new Expr*[NumArgs+1];
Steve Naroff68d331a2007-09-27 14:38:14 +00001113 SubExprs[RECEIVER] = receiver;
Steve Naroff49f109c2007-11-15 13:05:42 +00001114 if (NumArgs) {
1115 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff68d331a2007-09-27 14:38:14 +00001116 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1117 }
Steve Naroff563477d2007-09-18 23:55:05 +00001118 LBracloc = LBrac;
1119 RBracloc = RBrac;
1120}
1121
Steve Naroff68d331a2007-09-27 14:38:14 +00001122// constructor for class messages.
1123// FIXME: clsName should be typed to ObjCInterfaceType
Steve Naroffbcfb06a2007-09-28 22:22:11 +00001124ObjCMessageExpr::ObjCMessageExpr(IdentifierInfo *clsName, Selector selInfo,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001125 QualType retType, ObjCMethodDecl *mproto,
Steve Naroffdb611d52007-11-03 16:37:59 +00001126 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff49f109c2007-11-15 13:05:42 +00001127 Expr **ArgExprs, unsigned nargs)
Steve Naroffdb611d52007-11-03 16:37:59 +00001128 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekea958e572008-05-01 17:26:20 +00001129 MethodProto(mproto) {
Steve Naroff49f109c2007-11-15 13:05:42 +00001130 NumArgs = nargs;
1131 SubExprs = new Expr*[NumArgs+1];
Ted Kremenekea958e572008-05-01 17:26:20 +00001132 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) clsName | 0x1);
Steve Naroff49f109c2007-11-15 13:05:42 +00001133 if (NumArgs) {
1134 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff68d331a2007-09-27 14:38:14 +00001135 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1136 }
Steve Naroff563477d2007-09-18 23:55:05 +00001137 LBracloc = LBrac;
1138 RBracloc = RBrac;
1139}
1140
Chris Lattner27437ca2007-10-25 00:29:32 +00001141bool ChooseExpr::isConditionTrue(ASTContext &C) const {
1142 llvm::APSInt CondVal(32);
1143 bool IsConst = getCond()->isIntegerConstantExpr(CondVal, C);
1144 assert(IsConst && "Condition of choose expr must be i-c-e"); IsConst=IsConst;
1145 return CondVal != 0;
1146}
1147
Anders Carlsson5a1deb82008-01-29 15:56:48 +00001148static int64_t evaluateOffsetOf(ASTContext& C, const Expr *E)
1149{
1150 if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
1151 QualType Ty = ME->getBase()->getType();
1152
1153 RecordDecl *RD = Ty->getAsRecordType()->getDecl();
Chris Lattner98be4942008-03-05 18:54:05 +00001154 const ASTRecordLayout &RL = C.getASTRecordLayout(RD);
Anders Carlsson5a1deb82008-01-29 15:56:48 +00001155 FieldDecl *FD = ME->getMemberDecl();
1156
1157 // FIXME: This is linear time.
1158 unsigned i = 0, e = 0;
1159 for (i = 0, e = RD->getNumMembers(); i != e; i++) {
1160 if (RD->getMember(i) == FD)
1161 break;
1162 }
1163
1164 return RL.getFieldOffset(i) + evaluateOffsetOf(C, ME->getBase());
1165 } else if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E)) {
1166 const Expr *Base = ASE->getBase();
1167 llvm::APSInt Idx(32);
1168 bool ICE = ASE->getIdx()->isIntegerConstantExpr(Idx, C);
1169 assert(ICE && "Array index is not a constant integer!");
1170
Chris Lattner98be4942008-03-05 18:54:05 +00001171 int64_t size = C.getTypeSize(ASE->getType());
Anders Carlsson5a1deb82008-01-29 15:56:48 +00001172 size *= Idx.getSExtValue();
1173
1174 return size + evaluateOffsetOf(C, Base);
1175 } else if (isa<CompoundLiteralExpr>(E))
1176 return 0;
1177
1178 assert(0 && "Unknown offsetof subexpression!");
1179 return 0;
1180}
1181
1182int64_t UnaryOperator::evaluateOffsetOf(ASTContext& C) const
1183{
1184 assert(Opc == OffsetOf && "Unary operator not offsetof!");
1185
Chris Lattner98be4942008-03-05 18:54:05 +00001186 unsigned CharSize = C.Target.getCharWidth();
Anders Carlsson5a1deb82008-01-29 15:56:48 +00001187 return ::evaluateOffsetOf(C, Val) / CharSize;
1188}
1189
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001190//===----------------------------------------------------------------------===//
1191// Child Iterators for iterating over subexpressions/substatements
1192//===----------------------------------------------------------------------===//
1193
1194// DeclRefExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001195Stmt::child_iterator DeclRefExpr::child_begin() { return child_iterator(); }
1196Stmt::child_iterator DeclRefExpr::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001197
Steve Naroff7779db42007-11-12 14:29:37 +00001198// ObjCIvarRefExpr
Ted Kremenek92261972008-05-02 18:40:22 +00001199Stmt::child_iterator ObjCIvarRefExpr::child_begin() {
1200 return reinterpret_cast<Stmt**>(&Base);
1201}
1202
1203Stmt::child_iterator ObjCIvarRefExpr::child_end() {
1204 return reinterpret_cast<Stmt**>(&Base)+1;
1205}
Steve Naroff7779db42007-11-12 14:29:37 +00001206
Steve Naroffe3e9add2008-06-02 23:03:37 +00001207// ObjCPropertyRefExpr
Steve Naroffae784072008-05-30 00:40:33 +00001208Stmt::child_iterator ObjCPropertyRefExpr::child_begin() {
1209 return reinterpret_cast<Stmt**>(&Base);
1210}
1211
1212Stmt::child_iterator ObjCPropertyRefExpr::child_end() {
1213 return reinterpret_cast<Stmt**>(&Base)+1;
1214}
1215
Steve Naroffe3e9add2008-06-02 23:03:37 +00001216// ObjCSuperRefExpr
1217Stmt::child_iterator ObjCSuperRefExpr::child_begin() { return child_iterator();}
1218Stmt::child_iterator ObjCSuperRefExpr::child_end() { return child_iterator(); }
1219
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001220// PreDefinedExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001221Stmt::child_iterator PreDefinedExpr::child_begin() { return child_iterator(); }
1222Stmt::child_iterator PreDefinedExpr::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001223
1224// IntegerLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001225Stmt::child_iterator IntegerLiteral::child_begin() { return child_iterator(); }
1226Stmt::child_iterator IntegerLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001227
1228// CharacterLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001229Stmt::child_iterator CharacterLiteral::child_begin() { return child_iterator(); }
1230Stmt::child_iterator CharacterLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001231
1232// FloatingLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001233Stmt::child_iterator FloatingLiteral::child_begin() { return child_iterator(); }
1234Stmt::child_iterator FloatingLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001235
Chris Lattner5d661452007-08-26 03:42:43 +00001236// ImaginaryLiteral
1237Stmt::child_iterator ImaginaryLiteral::child_begin() {
1238 return reinterpret_cast<Stmt**>(&Val);
1239}
1240Stmt::child_iterator ImaginaryLiteral::child_end() {
1241 return reinterpret_cast<Stmt**>(&Val)+1;
1242}
1243
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001244// StringLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001245Stmt::child_iterator StringLiteral::child_begin() { return child_iterator(); }
1246Stmt::child_iterator StringLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001247
1248// ParenExpr
1249Stmt::child_iterator ParenExpr::child_begin() {
1250 return reinterpret_cast<Stmt**>(&Val);
1251}
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001252Stmt::child_iterator ParenExpr::child_end() {
Chris Lattner5d661452007-08-26 03:42:43 +00001253 return reinterpret_cast<Stmt**>(&Val)+1;
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001254}
1255
1256// UnaryOperator
1257Stmt::child_iterator UnaryOperator::child_begin() {
Ted Kremenekf816f772007-12-15 00:39:18 +00001258 return reinterpret_cast<Stmt**>(&Val);
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001259}
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001260Stmt::child_iterator UnaryOperator::child_end() {
Ted Kremenekf816f772007-12-15 00:39:18 +00001261 return reinterpret_cast<Stmt**>(&Val+1);
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001262}
1263
1264// SizeOfAlignOfTypeExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001265Stmt::child_iterator SizeOfAlignOfTypeExpr::child_begin() {
Ted Kremenek699e9fb2007-12-14 22:52:23 +00001266 // If the type is a VLA type (and not a typedef), the size expression of the
1267 // VLA needs to be treated as an executable expression.
1268 if (VariableArrayType* T = dyn_cast<VariableArrayType>(Ty.getTypePtr()))
1269 return child_iterator(T);
1270 else
1271 return child_iterator();
Ted Kremenek9ac59282007-10-18 23:28:49 +00001272}
1273Stmt::child_iterator SizeOfAlignOfTypeExpr::child_end() {
Ted Kremenek699e9fb2007-12-14 22:52:23 +00001274 return child_iterator();
Ted Kremenek9ac59282007-10-18 23:28:49 +00001275}
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001276
1277// ArraySubscriptExpr
Ted Kremenek1237c672007-08-24 20:06:47 +00001278Stmt::child_iterator ArraySubscriptExpr::child_begin() {
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001279 return reinterpret_cast<Stmt**>(&SubExprs);
1280}
Ted Kremenek1237c672007-08-24 20:06:47 +00001281Stmt::child_iterator ArraySubscriptExpr::child_end() {
Chris Lattner5d661452007-08-26 03:42:43 +00001282 return reinterpret_cast<Stmt**>(&SubExprs)+END_EXPR;
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001283}
1284
1285// CallExpr
Ted Kremenek1237c672007-08-24 20:06:47 +00001286Stmt::child_iterator CallExpr::child_begin() {
Ted Kremenek42a29772007-08-27 21:11:44 +00001287 return reinterpret_cast<Stmt**>(&SubExprs[0]);
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001288}
Ted Kremenek1237c672007-08-24 20:06:47 +00001289Stmt::child_iterator CallExpr::child_end() {
Ted Kremenek42a29772007-08-27 21:11:44 +00001290 return reinterpret_cast<Stmt**>(&SubExprs[NumArgs+ARGS_START]);
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001291}
Ted Kremenek1237c672007-08-24 20:06:47 +00001292
1293// MemberExpr
1294Stmt::child_iterator MemberExpr::child_begin() {
1295 return reinterpret_cast<Stmt**>(&Base);
1296}
Ted Kremenek1237c672007-08-24 20:06:47 +00001297Stmt::child_iterator MemberExpr::child_end() {
Chris Lattner5d661452007-08-26 03:42:43 +00001298 return reinterpret_cast<Stmt**>(&Base)+1;
Ted Kremenek1237c672007-08-24 20:06:47 +00001299}
1300
Nate Begeman213541a2008-04-18 23:10:10 +00001301// ExtVectorElementExpr
1302Stmt::child_iterator ExtVectorElementExpr::child_begin() {
Ted Kremenek1237c672007-08-24 20:06:47 +00001303 return reinterpret_cast<Stmt**>(&Base);
1304}
Nate Begeman213541a2008-04-18 23:10:10 +00001305Stmt::child_iterator ExtVectorElementExpr::child_end() {
Chris Lattner5d661452007-08-26 03:42:43 +00001306 return reinterpret_cast<Stmt**>(&Base)+1;
Ted Kremenek1237c672007-08-24 20:06:47 +00001307}
1308
1309// CompoundLiteralExpr
1310Stmt::child_iterator CompoundLiteralExpr::child_begin() {
1311 return reinterpret_cast<Stmt**>(&Init);
1312}
Ted Kremenek1237c672007-08-24 20:06:47 +00001313Stmt::child_iterator CompoundLiteralExpr::child_end() {
Chris Lattner5d661452007-08-26 03:42:43 +00001314 return reinterpret_cast<Stmt**>(&Init)+1;
Ted Kremenek1237c672007-08-24 20:06:47 +00001315}
1316
1317// ImplicitCastExpr
1318Stmt::child_iterator ImplicitCastExpr::child_begin() {
1319 return reinterpret_cast<Stmt**>(&Op);
1320}
Ted Kremenek1237c672007-08-24 20:06:47 +00001321Stmt::child_iterator ImplicitCastExpr::child_end() {
Chris Lattner5d661452007-08-26 03:42:43 +00001322 return reinterpret_cast<Stmt**>(&Op)+1;
Ted Kremenek1237c672007-08-24 20:06:47 +00001323}
1324
1325// CastExpr
1326Stmt::child_iterator CastExpr::child_begin() {
1327 return reinterpret_cast<Stmt**>(&Op);
1328}
Ted Kremenek1237c672007-08-24 20:06:47 +00001329Stmt::child_iterator CastExpr::child_end() {
Chris Lattner5d661452007-08-26 03:42:43 +00001330 return reinterpret_cast<Stmt**>(&Op)+1;
Ted Kremenek1237c672007-08-24 20:06:47 +00001331}
1332
1333// BinaryOperator
1334Stmt::child_iterator BinaryOperator::child_begin() {
1335 return reinterpret_cast<Stmt**>(&SubExprs);
1336}
Ted Kremenek1237c672007-08-24 20:06:47 +00001337Stmt::child_iterator BinaryOperator::child_end() {
Chris Lattner5d661452007-08-26 03:42:43 +00001338 return reinterpret_cast<Stmt**>(&SubExprs)+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00001339}
1340
1341// ConditionalOperator
1342Stmt::child_iterator ConditionalOperator::child_begin() {
1343 return reinterpret_cast<Stmt**>(&SubExprs);
1344}
Ted Kremenek1237c672007-08-24 20:06:47 +00001345Stmt::child_iterator ConditionalOperator::child_end() {
Chris Lattner5d661452007-08-26 03:42:43 +00001346 return reinterpret_cast<Stmt**>(&SubExprs)+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00001347}
1348
1349// AddrLabelExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001350Stmt::child_iterator AddrLabelExpr::child_begin() { return child_iterator(); }
1351Stmt::child_iterator AddrLabelExpr::child_end() { return child_iterator(); }
Ted Kremenek1237c672007-08-24 20:06:47 +00001352
Ted Kremenek1237c672007-08-24 20:06:47 +00001353// StmtExpr
1354Stmt::child_iterator StmtExpr::child_begin() {
1355 return reinterpret_cast<Stmt**>(&SubStmt);
1356}
Ted Kremenek1237c672007-08-24 20:06:47 +00001357Stmt::child_iterator StmtExpr::child_end() {
Chris Lattner5d661452007-08-26 03:42:43 +00001358 return reinterpret_cast<Stmt**>(&SubStmt)+1;
Ted Kremenek1237c672007-08-24 20:06:47 +00001359}
1360
1361// TypesCompatibleExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001362Stmt::child_iterator TypesCompatibleExpr::child_begin() {
1363 return child_iterator();
1364}
1365
1366Stmt::child_iterator TypesCompatibleExpr::child_end() {
1367 return child_iterator();
1368}
Ted Kremenek1237c672007-08-24 20:06:47 +00001369
1370// ChooseExpr
1371Stmt::child_iterator ChooseExpr::child_begin() {
1372 return reinterpret_cast<Stmt**>(&SubExprs);
1373}
1374
1375Stmt::child_iterator ChooseExpr::child_end() {
Chris Lattner5d661452007-08-26 03:42:43 +00001376 return reinterpret_cast<Stmt**>(&SubExprs)+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00001377}
1378
Nate Begemane2ce1d92008-01-17 17:46:27 +00001379// OverloadExpr
1380Stmt::child_iterator OverloadExpr::child_begin() {
1381 return reinterpret_cast<Stmt**>(&SubExprs[0]);
1382}
1383Stmt::child_iterator OverloadExpr::child_end() {
Nate Begeman67295d02008-01-30 20:50:20 +00001384 return reinterpret_cast<Stmt**>(&SubExprs[NumExprs]);
Nate Begemane2ce1d92008-01-17 17:46:27 +00001385}
1386
Eli Friedmand38617c2008-05-14 19:38:39 +00001387// ShuffleVectorExpr
1388Stmt::child_iterator ShuffleVectorExpr::child_begin() {
1389 return reinterpret_cast<Stmt**>(&SubExprs[0]);
1390}
1391Stmt::child_iterator ShuffleVectorExpr::child_end() {
1392 return reinterpret_cast<Stmt**>(&SubExprs[NumExprs]);
1393}
1394
Anders Carlsson7c50aca2007-10-15 20:28:48 +00001395// VAArgExpr
1396Stmt::child_iterator VAArgExpr::child_begin() {
1397 return reinterpret_cast<Stmt**>(&Val);
1398}
1399
1400Stmt::child_iterator VAArgExpr::child_end() {
1401 return reinterpret_cast<Stmt**>(&Val)+1;
1402}
1403
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001404// InitListExpr
1405Stmt::child_iterator InitListExpr::child_begin() {
Steve Naroff1a42a252008-05-07 17:35:03 +00001406 return reinterpret_cast<Stmt**>(InitExprs.size() ?
1407 &InitExprs[0] : 0);
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001408}
1409Stmt::child_iterator InitListExpr::child_end() {
Steve Naroff1a42a252008-05-07 17:35:03 +00001410 return reinterpret_cast<Stmt**>(InitExprs.size() ?
1411 &InitExprs[0] + InitExprs.size() : 0);
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001412}
1413
Ted Kremenek1237c672007-08-24 20:06:47 +00001414// ObjCStringLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001415Stmt::child_iterator ObjCStringLiteral::child_begin() {
1416 return child_iterator();
1417}
1418Stmt::child_iterator ObjCStringLiteral::child_end() {
1419 return child_iterator();
1420}
Ted Kremenek1237c672007-08-24 20:06:47 +00001421
1422// ObjCEncodeExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001423Stmt::child_iterator ObjCEncodeExpr::child_begin() { return child_iterator(); }
1424Stmt::child_iterator ObjCEncodeExpr::child_end() { return child_iterator(); }
Ted Kremenek1237c672007-08-24 20:06:47 +00001425
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00001426// ObjCSelectorExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001427Stmt::child_iterator ObjCSelectorExpr::child_begin() {
1428 return child_iterator();
1429}
1430Stmt::child_iterator ObjCSelectorExpr::child_end() {
1431 return child_iterator();
1432}
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00001433
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00001434// ObjCProtocolExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001435Stmt::child_iterator ObjCProtocolExpr::child_begin() {
1436 return child_iterator();
1437}
1438Stmt::child_iterator ObjCProtocolExpr::child_end() {
1439 return child_iterator();
1440}
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00001441
Steve Naroff563477d2007-09-18 23:55:05 +00001442// ObjCMessageExpr
Ted Kremenekea958e572008-05-01 17:26:20 +00001443Stmt::child_iterator ObjCMessageExpr::child_begin() {
1444 return reinterpret_cast<Stmt**>(&SubExprs[ getReceiver() ? 0 : ARGS_START ]);
Steve Naroff563477d2007-09-18 23:55:05 +00001445}
1446Stmt::child_iterator ObjCMessageExpr::child_end() {
Steve Naroff68d331a2007-09-27 14:38:14 +00001447 return reinterpret_cast<Stmt**>(&SubExprs[getNumArgs()+ARGS_START]);
Steve Naroff563477d2007-09-18 23:55:05 +00001448}
1449