blob: de0c740fd293bbd1ad6219cd9e0900ee539b654e [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"
Anders Carlssonc44eec62008-07-03 04:20:39 +000016#include "clang/AST/APValue.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000017#include "clang/AST/StmtVisitor.h"
Chris Lattnerc7229c32007-10-07 08:58:51 +000018#include "clang/Basic/IdentifierTable.h"
Chris Lattnerda5a6b62007-11-27 18:22:04 +000019#include "clang/Basic/TargetInfo.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020using namespace clang;
21
22//===----------------------------------------------------------------------===//
23// Primary Expressions.
24//===----------------------------------------------------------------------===//
25
Chris Lattnerda8249e2008-06-07 22:13:43 +000026/// getValueAsApproximateDouble - This returns the value as an inaccurate
27/// double. Note that this may cause loss of precision, but is useful for
28/// debugging dumps, etc.
29double FloatingLiteral::getValueAsApproximateDouble() const {
30 llvm::APFloat V = getValue();
31 V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven);
32 return V.convertToDouble();
33}
34
35
Reid Spencer5f016e22007-07-11 17:01:13 +000036StringLiteral::StringLiteral(const char *strData, unsigned byteLength,
37 bool Wide, QualType t, SourceLocation firstLoc,
38 SourceLocation lastLoc) :
39 Expr(StringLiteralClass, t) {
40 // OPTIMIZE: could allocate this appended to the StringLiteral.
41 char *AStrData = new char[byteLength];
42 memcpy(AStrData, strData, byteLength);
43 StrData = AStrData;
44 ByteLength = byteLength;
45 IsWide = Wide;
46 firstTokLoc = firstLoc;
47 lastTokLoc = lastLoc;
48}
49
50StringLiteral::~StringLiteral() {
51 delete[] StrData;
52}
53
54bool UnaryOperator::isPostfix(Opcode Op) {
55 switch (Op) {
56 case PostInc:
57 case PostDec:
58 return true;
59 default:
60 return false;
61 }
62}
63
64/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
65/// corresponds to, e.g. "sizeof" or "[pre]++".
66const char *UnaryOperator::getOpcodeStr(Opcode Op) {
67 switch (Op) {
68 default: assert(0 && "Unknown unary operator");
69 case PostInc: return "++";
70 case PostDec: return "--";
71 case PreInc: return "++";
72 case PreDec: return "--";
73 case AddrOf: return "&";
74 case Deref: return "*";
75 case Plus: return "+";
76 case Minus: return "-";
77 case Not: return "~";
78 case LNot: return "!";
79 case Real: return "__real";
80 case Imag: return "__imag";
81 case SizeOf: return "sizeof";
82 case AlignOf: return "alignof";
83 case Extension: return "__extension__";
Chris Lattner73d0d4f2007-08-30 17:45:32 +000084 case OffsetOf: return "__builtin_offsetof";
Reid Spencer5f016e22007-07-11 17:01:13 +000085 }
86}
87
88//===----------------------------------------------------------------------===//
89// Postfix Operators.
90//===----------------------------------------------------------------------===//
91
Nate Begemane2ce1d92008-01-17 17:46:27 +000092
Reid Spencer5f016e22007-07-11 17:01:13 +000093CallExpr::CallExpr(Expr *fn, Expr **args, unsigned numargs, QualType t,
94 SourceLocation rparenloc)
Ted Kremenek77ed8e42007-08-24 18:13:47 +000095 : Expr(CallExprClass, t), NumArgs(numargs) {
Ted Kremenek55499762008-06-17 02:43:46 +000096 SubExprs = new Stmt*[numargs+1];
Ted Kremenek77ed8e42007-08-24 18:13:47 +000097 SubExprs[FN] = fn;
Reid Spencer5f016e22007-07-11 17:01:13 +000098 for (unsigned i = 0; i != numargs; ++i)
Ted Kremenek77ed8e42007-08-24 18:13:47 +000099 SubExprs[i+ARGS_START] = args[i];
Reid Spencer5f016e22007-07-11 17:01:13 +0000100 RParenLoc = rparenloc;
101}
102
Chris Lattnerd18b3292007-12-28 05:25:02 +0000103/// setNumArgs - This changes the number of arguments present in this call.
104/// Any orphaned expressions are deleted by this, and any new operands are set
105/// to null.
106void CallExpr::setNumArgs(unsigned NumArgs) {
107 // No change, just return.
108 if (NumArgs == getNumArgs()) return;
109
110 // If shrinking # arguments, just delete the extras and forgot them.
111 if (NumArgs < getNumArgs()) {
112 for (unsigned i = NumArgs, e = getNumArgs(); i != e; ++i)
113 delete getArg(i);
114 this->NumArgs = NumArgs;
115 return;
116 }
117
118 // Otherwise, we are growing the # arguments. New an bigger argument array.
Ted Kremenek55499762008-06-17 02:43:46 +0000119 Stmt **NewSubExprs = new Stmt*[NumArgs+1];
Chris Lattnerd18b3292007-12-28 05:25:02 +0000120 // Copy over args.
121 for (unsigned i = 0; i != getNumArgs()+ARGS_START; ++i)
122 NewSubExprs[i] = SubExprs[i];
123 // Null out new args.
124 for (unsigned i = getNumArgs()+ARGS_START; i != NumArgs+ARGS_START; ++i)
125 NewSubExprs[i] = 0;
126
127 delete[] SubExprs;
128 SubExprs = NewSubExprs;
129 this->NumArgs = NumArgs;
130}
131
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000132bool CallExpr::isBuiltinConstantExpr() const {
133 // All simple function calls (e.g. func()) are implicitly cast to pointer to
134 // function. As a result, we try and obtain the DeclRefExpr from the
135 // ImplicitCastExpr.
136 const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee());
137 if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()).
138 return false;
139
140 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr());
141 if (!DRE)
142 return false;
143
Anders Carlssonbcba2012008-01-31 02:13:57 +0000144 const FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl());
145 if (!FDecl)
146 return false;
147
148 unsigned builtinID = FDecl->getIdentifier()->getBuiltinID();
149 if (!builtinID)
150 return false;
151
152 // We have a builtin that is a constant expression
Eli Friedman861dc462008-05-16 13:28:37 +0000153 return builtinID == Builtin::BI__builtin___CFStringMakeConstantString ||
154 builtinID == Builtin::BI__builtin_classify_type;
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000155}
Chris Lattnerd18b3292007-12-28 05:25:02 +0000156
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000157bool CallExpr::isBuiltinClassifyType(llvm::APSInt &Result) const {
158 // The following enum mimics gcc's internal "typeclass.h" file.
159 enum gcc_type_class {
160 no_type_class = -1,
161 void_type_class, integer_type_class, char_type_class,
162 enumeral_type_class, boolean_type_class,
163 pointer_type_class, reference_type_class, offset_type_class,
164 real_type_class, complex_type_class,
165 function_type_class, method_type_class,
166 record_type_class, union_type_class,
167 array_type_class, string_type_class,
168 lang_type_class
169 };
170 Result.setIsSigned(true);
171
172 // All simple function calls (e.g. func()) are implicitly cast to pointer to
173 // function. As a result, we try and obtain the DeclRefExpr from the
174 // ImplicitCastExpr.
175 const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee());
176 if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()).
177 return false;
178 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr());
179 if (!DRE)
180 return false;
181
182 // We have a DeclRefExpr.
183 if (strcmp(DRE->getDecl()->getName(), "__builtin_classify_type") == 0) {
184 // If no argument was supplied, default to "no_type_class". This isn't
185 // ideal, however it's what gcc does.
186 Result = static_cast<uint64_t>(no_type_class);
187 if (NumArgs >= 1) {
188 QualType argType = getArg(0)->getType();
189
190 if (argType->isVoidType())
191 Result = void_type_class;
192 else if (argType->isEnumeralType())
193 Result = enumeral_type_class;
194 else if (argType->isBooleanType())
195 Result = boolean_type_class;
196 else if (argType->isCharType())
197 Result = string_type_class; // gcc doesn't appear to use char_type_class
198 else if (argType->isIntegerType())
199 Result = integer_type_class;
200 else if (argType->isPointerType())
201 Result = pointer_type_class;
202 else if (argType->isReferenceType())
203 Result = reference_type_class;
204 else if (argType->isRealType())
205 Result = real_type_class;
206 else if (argType->isComplexType())
207 Result = complex_type_class;
208 else if (argType->isFunctionType())
209 Result = function_type_class;
210 else if (argType->isStructureType())
211 Result = record_type_class;
212 else if (argType->isUnionType())
213 Result = union_type_class;
214 else if (argType->isArrayType())
215 Result = array_type_class;
216 else if (argType->isUnionType())
217 Result = union_type_class;
218 else // FIXME: offset_type_class, method_type_class, & lang_type_class?
Chris Lattner3ef5bc02007-11-08 17:56:40 +0000219 assert(0 && "CallExpr::isBuiltinClassifyType(): unimplemented type");
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000220 }
221 return true;
222 }
223 return false;
224}
225
Reid Spencer5f016e22007-07-11 17:01:13 +0000226/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
227/// corresponds to, e.g. "<<=".
228const char *BinaryOperator::getOpcodeStr(Opcode Op) {
229 switch (Op) {
230 default: assert(0 && "Unknown binary operator");
231 case Mul: return "*";
232 case Div: return "/";
233 case Rem: return "%";
234 case Add: return "+";
235 case Sub: return "-";
236 case Shl: return "<<";
237 case Shr: return ">>";
238 case LT: return "<";
239 case GT: return ">";
240 case LE: return "<=";
241 case GE: return ">=";
242 case EQ: return "==";
243 case NE: return "!=";
244 case And: return "&";
245 case Xor: return "^";
246 case Or: return "|";
247 case LAnd: return "&&";
248 case LOr: return "||";
249 case Assign: return "=";
250 case MulAssign: return "*=";
251 case DivAssign: return "/=";
252 case RemAssign: return "%=";
253 case AddAssign: return "+=";
254 case SubAssign: return "-=";
255 case ShlAssign: return "<<=";
256 case ShrAssign: return ">>=";
257 case AndAssign: return "&=";
258 case XorAssign: return "^=";
259 case OrAssign: return "|=";
260 case Comma: return ",";
261 }
262}
263
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000264InitListExpr::InitListExpr(SourceLocation lbraceloc,
265 Expr **initexprs, unsigned numinits,
266 SourceLocation rbraceloc)
Steve Naroffc5ae8992008-05-01 02:04:18 +0000267 : Expr(InitListExprClass, QualType()),
268 LBraceLoc(lbraceloc), RBraceLoc(rbraceloc)
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000269{
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000270 for (unsigned i = 0; i != numinits; i++)
Steve Naroffc5ae8992008-05-01 02:04:18 +0000271 InitExprs.push_back(initexprs[i]);
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000272}
Reid Spencer5f016e22007-07-11 17:01:13 +0000273
274//===----------------------------------------------------------------------===//
275// Generic Expression Routines
276//===----------------------------------------------------------------------===//
277
278/// hasLocalSideEffect - Return true if this immediate expression has side
279/// effects, not counting any sub-expressions.
280bool Expr::hasLocalSideEffect() const {
281 switch (getStmtClass()) {
282 default:
283 return false;
284 case ParenExprClass:
285 return cast<ParenExpr>(this)->getSubExpr()->hasLocalSideEffect();
286 case UnaryOperatorClass: {
287 const UnaryOperator *UO = cast<UnaryOperator>(this);
288
289 switch (UO->getOpcode()) {
290 default: return false;
291 case UnaryOperator::PostInc:
292 case UnaryOperator::PostDec:
293 case UnaryOperator::PreInc:
294 case UnaryOperator::PreDec:
295 return true; // ++/--
296
297 case UnaryOperator::Deref:
298 // Dereferencing a volatile pointer is a side-effect.
299 return getType().isVolatileQualified();
300 case UnaryOperator::Real:
301 case UnaryOperator::Imag:
302 // accessing a piece of a volatile complex is a side-effect.
303 return UO->getSubExpr()->getType().isVolatileQualified();
304
305 case UnaryOperator::Extension:
306 return UO->getSubExpr()->hasLocalSideEffect();
307 }
308 }
Chris Lattnere7716e62007-12-01 06:07:34 +0000309 case BinaryOperatorClass: {
310 const BinaryOperator *BinOp = cast<BinaryOperator>(this);
311 // Consider comma to have side effects if the LHS and RHS both do.
312 if (BinOp->getOpcode() == BinaryOperator::Comma)
313 return BinOp->getLHS()->hasLocalSideEffect() &&
314 BinOp->getRHS()->hasLocalSideEffect();
315
316 return BinOp->isAssignmentOp();
317 }
Chris Lattnereb14fe82007-08-25 02:00:02 +0000318 case CompoundAssignOperatorClass:
Chris Lattner1f683e92007-08-25 01:55:00 +0000319 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000320
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +0000321 case ConditionalOperatorClass: {
322 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
323 return Exp->getCond()->hasLocalSideEffect()
324 || (Exp->getLHS() && Exp->getLHS()->hasLocalSideEffect())
325 || (Exp->getRHS() && Exp->getRHS()->hasLocalSideEffect());
326 }
327
Reid Spencer5f016e22007-07-11 17:01:13 +0000328 case MemberExprClass:
329 case ArraySubscriptExprClass:
330 // If the base pointer or element is to a volatile pointer/field, accessing
331 // if is a side effect.
332 return getType().isVolatileQualified();
Eli Friedman211f6ad2008-05-27 15:24:04 +0000333
Reid Spencer5f016e22007-07-11 17:01:13 +0000334 case CallExprClass:
335 // TODO: check attributes for pure/const. "void foo() { strlen("bar"); }"
336 // should warn.
337 return true;
Chris Lattnera9c01022007-09-26 22:06:30 +0000338 case ObjCMessageExprClass:
339 return true;
Eli Friedman211f6ad2008-05-27 15:24:04 +0000340 case StmtExprClass:
341 // TODO: check the inside of the statement expression
342 return true;
343
Reid Spencer5f016e22007-07-11 17:01:13 +0000344 case CastExprClass:
345 // If this is a cast to void, check the operand. Otherwise, the result of
346 // the cast is unused.
347 if (getType()->isVoidType())
348 return cast<CastExpr>(this)->getSubExpr()->hasLocalSideEffect();
349 return false;
Chris Lattner04421082008-04-08 04:40:51 +0000350
Eli Friedman4be1f472008-05-19 21:24:43 +0000351 case ImplicitCastExprClass:
352 // Check the operand, since implicit casts are inserted by Sema
353 return cast<ImplicitCastExpr>(this)->getSubExpr()->hasLocalSideEffect();
354
Chris Lattner04421082008-04-08 04:40:51 +0000355 case CXXDefaultArgExprClass:
356 return cast<CXXDefaultArgExpr>(this)->getExpr()->hasLocalSideEffect();
Reid Spencer5f016e22007-07-11 17:01:13 +0000357 }
358}
359
360/// isLvalue - C99 6.3.2.1: an lvalue is an expression with an object type or an
361/// incomplete type other than void. Nonarray expressions that can be lvalues:
362/// - name, where name must be a variable
363/// - e[i]
364/// - (e), where e must be an lvalue
365/// - e.name, where e must be an lvalue
366/// - e->name
367/// - *e, the type of e cannot be a function type
368/// - string-constant
Chris Lattner7da36f62007-10-30 22:53:42 +0000369/// - (__real__ e) and (__imag__ e) where e is an lvalue [GNU extension]
Bill Wendling08ad47c2007-07-17 03:52:31 +0000370/// - reference type [C++ [expr]]
Reid Spencer5f016e22007-07-11 17:01:13 +0000371///
Bill Wendlingca51c972007-07-16 07:07:56 +0000372Expr::isLvalueResult Expr::isLvalue() const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000373 // first, check the type (C99 6.3.2.1)
Chris Lattnercb4f9a62007-07-21 05:33:26 +0000374 if (TR->isFunctionType()) // from isObjectType()
Reid Spencer5f016e22007-07-11 17:01:13 +0000375 return LV_NotObjectType;
376
Steve Naroffacb818a2008-02-10 01:39:04 +0000377 // Allow qualified void which is an incomplete type other than void (yuck).
Chris Lattnerf46699c2008-02-20 20:55:12 +0000378 if (TR->isVoidType() && !TR.getCanonicalType().getCVRQualifiers())
Steve Naroffacb818a2008-02-10 01:39:04 +0000379 return LV_IncompleteVoidType;
380
Chris Lattnercb4f9a62007-07-21 05:33:26 +0000381 if (TR->isReferenceType()) // C++ [expr]
Bill Wendling08ad47c2007-07-17 03:52:31 +0000382 return LV_Valid;
383
Reid Spencer5f016e22007-07-11 17:01:13 +0000384 // the type looks fine, now check the expression
385 switch (getStmtClass()) {
386 case StringLiteralClass: // C99 6.5.1p4
Anders Carlsson7323a622007-11-30 22:47:59 +0000387 return LV_Valid;
Reid Spencer5f016e22007-07-11 17:01:13 +0000388 case ArraySubscriptExprClass: // C99 6.5.3p4 (e1[e2] == (*((e1)+(e2))))
389 // For vectors, make sure base is an lvalue (i.e. not a function call).
390 if (cast<ArraySubscriptExpr>(this)->getBase()->getType()->isVectorType())
391 return cast<ArraySubscriptExpr>(this)->getBase()->isLvalue();
392 return LV_Valid;
Chris Lattner41110242008-06-17 18:05:57 +0000393 case DeclRefExprClass: { // C99 6.5.1p2
394 const Decl *RefdDecl = cast<DeclRefExpr>(this)->getDecl();
395 if (isa<VarDecl>(RefdDecl) || isa<ImplicitParamDecl>(RefdDecl))
Reid Spencer5f016e22007-07-11 17:01:13 +0000396 return LV_Valid;
397 break;
Chris Lattner41110242008-06-17 18:05:57 +0000398 }
Anton Korobeynikovfdd75662007-07-12 15:26:50 +0000399 case MemberExprClass: { // C99 6.5.2.3p4
Reid Spencer5f016e22007-07-11 17:01:13 +0000400 const MemberExpr *m = cast<MemberExpr>(this);
401 return m->isArrow() ? LV_Valid : m->getBase()->isLvalue();
Anton Korobeynikovfdd75662007-07-12 15:26:50 +0000402 }
Chris Lattner7da36f62007-10-30 22:53:42 +0000403 case UnaryOperatorClass:
Reid Spencer5f016e22007-07-11 17:01:13 +0000404 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Deref)
Chris Lattner7da36f62007-10-30 22:53:42 +0000405 return LV_Valid; // C99 6.5.3p4
406
407 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Real ||
408 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Imag)
409 return cast<UnaryOperator>(this)->getSubExpr()->isLvalue(); // GNU.
Reid Spencer5f016e22007-07-11 17:01:13 +0000410 break;
411 case ParenExprClass: // C99 6.5.1p5
412 return cast<ParenExpr>(this)->getSubExpr()->isLvalue();
Steve Naroffe6386392007-12-05 04:00:10 +0000413 case CompoundLiteralExprClass: // C99 6.5.2.5p5
414 return LV_Valid;
Nate Begeman213541a2008-04-18 23:10:10 +0000415 case ExtVectorElementExprClass:
416 if (cast<ExtVectorElementExpr>(this)->containsDuplicateElements())
Steve Narofffec0b492007-07-30 03:29:09 +0000417 return LV_DuplicateVectorComponents;
418 return LV_Valid;
Steve Naroff027282d2007-11-12 14:34:27 +0000419 case ObjCIvarRefExprClass: // ObjC instance variables are lvalues.
420 return LV_Valid;
Steve Naroff799a6a62008-05-30 23:23:16 +0000421 case ObjCPropertyRefExprClass: // FIXME: check if read-only property.
422 return LV_Valid;
Chris Lattnerfa28b302008-01-12 08:14:25 +0000423 case PreDefinedExprClass:
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000424 return (cast<PreDefinedExpr>(this)->getIdentType() == PreDefinedExpr::CXXThis
425 ? LV_InvalidExpression
426 : LV_Valid);
Chris Lattner04421082008-04-08 04:40:51 +0000427 case CXXDefaultArgExprClass:
428 return cast<CXXDefaultArgExpr>(this)->getExpr()->isLvalue();
Reid Spencer5f016e22007-07-11 17:01:13 +0000429 default:
430 break;
431 }
432 return LV_InvalidExpression;
433}
434
435/// isModifiableLvalue - C99 6.3.2.1: an lvalue that does not have array type,
436/// does not have an incomplete type, does not have a const-qualified type, and
437/// if it is a structure or union, does not have any member (including,
438/// recursively, any member or element of all contained aggregates or unions)
439/// with a const-qualified type.
Bill Wendlingca51c972007-07-16 07:07:56 +0000440Expr::isModifiableLvalueResult Expr::isModifiableLvalue() const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000441 isLvalueResult lvalResult = isLvalue();
442
443 switch (lvalResult) {
444 case LV_Valid: break;
445 case LV_NotObjectType: return MLV_NotObjectType;
446 case LV_IncompleteVoidType: return MLV_IncompleteVoidType;
Steve Narofffec0b492007-07-30 03:29:09 +0000447 case LV_DuplicateVectorComponents: return MLV_DuplicateVectorComponents;
Reid Spencer5f016e22007-07-11 17:01:13 +0000448 case LV_InvalidExpression: return MLV_InvalidExpression;
449 }
450 if (TR.isConstQualified())
451 return MLV_ConstQualified;
452 if (TR->isArrayType())
453 return MLV_ArrayType;
454 if (TR->isIncompleteType())
455 return MLV_IncompleteType;
456
457 if (const RecordType *r = dyn_cast<RecordType>(TR.getCanonicalType())) {
458 if (r->hasConstFields())
459 return MLV_ConstQualified;
460 }
461 return MLV_Valid;
462}
463
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000464/// hasGlobalStorage - Return true if this expression has static storage
Chris Lattner4cc62712007-11-27 21:35:27 +0000465/// duration. This means that the address of this expression is a link-time
466/// constant.
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000467bool Expr::hasGlobalStorage() const {
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000468 switch (getStmtClass()) {
469 default:
470 return false;
Chris Lattner4cc62712007-11-27 21:35:27 +0000471 case ParenExprClass:
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000472 return cast<ParenExpr>(this)->getSubExpr()->hasGlobalStorage();
Chris Lattner4cc62712007-11-27 21:35:27 +0000473 case ImplicitCastExprClass:
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000474 return cast<ImplicitCastExpr>(this)->getSubExpr()->hasGlobalStorage();
Steve Naroffe9b12192008-01-14 18:19:28 +0000475 case CompoundLiteralExprClass:
476 return cast<CompoundLiteralExpr>(this)->isFileScope();
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000477 case DeclRefExprClass: {
478 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
479 if (const VarDecl *VD = dyn_cast<VarDecl>(D))
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000480 return VD->hasGlobalStorage();
Seo Sanghyeon63f067f2008-04-04 09:45:30 +0000481 if (isa<FunctionDecl>(D))
482 return true;
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000483 return false;
484 }
Chris Lattnerfb708062007-11-28 04:30:09 +0000485 case MemberExprClass: {
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000486 const MemberExpr *M = cast<MemberExpr>(this);
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000487 return !M->isArrow() && M->getBase()->hasGlobalStorage();
Chris Lattnerfb708062007-11-28 04:30:09 +0000488 }
Chris Lattner4cc62712007-11-27 21:35:27 +0000489 case ArraySubscriptExprClass:
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000490 return cast<ArraySubscriptExpr>(this)->getBase()->hasGlobalStorage();
Chris Lattnerfa28b302008-01-12 08:14:25 +0000491 case PreDefinedExprClass:
492 return true;
Chris Lattner04421082008-04-08 04:40:51 +0000493 case CXXDefaultArgExprClass:
494 return cast<CXXDefaultArgExpr>(this)->getExpr()->hasGlobalStorage();
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000495 }
496}
497
Ted Kremenek4e99a5f2008-01-17 16:57:34 +0000498Expr* Expr::IgnoreParens() {
499 Expr* E = this;
500 while (ParenExpr* P = dyn_cast<ParenExpr>(E))
501 E = P->getSubExpr();
502
503 return E;
504}
505
Chris Lattner56f34942008-02-13 01:02:39 +0000506/// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
507/// or CastExprs or ImplicitCastExprs, returning their operand.
508Expr *Expr::IgnoreParenCasts() {
509 Expr *E = this;
510 while (true) {
511 if (ParenExpr *P = dyn_cast<ParenExpr>(E))
512 E = P->getSubExpr();
513 else if (CastExpr *P = dyn_cast<CastExpr>(E))
514 E = P->getSubExpr();
515 else if (ImplicitCastExpr *P = dyn_cast<ImplicitCastExpr>(E))
516 E = P->getSubExpr();
517 else
518 return E;
519 }
520}
521
522
Steve Naroff38374b02007-09-02 20:30:18 +0000523bool Expr::isConstantExpr(ASTContext &Ctx, SourceLocation *Loc) const {
Steve Naroff38374b02007-09-02 20:30:18 +0000524 switch (getStmtClass()) {
525 default:
526 if (Loc) *Loc = getLocStart();
527 return false;
528 case ParenExprClass:
529 return cast<ParenExpr>(this)->getSubExpr()->isConstantExpr(Ctx, Loc);
530 case StringLiteralClass:
Steve Naroff5d37e322007-11-09 15:00:03 +0000531 case ObjCStringLiteralClass:
Steve Naroff38374b02007-09-02 20:30:18 +0000532 case FloatingLiteralClass:
533 case IntegerLiteralClass:
534 case CharacterLiteralClass:
535 case ImaginaryLiteralClass:
Anders Carlsson1a86b332007-10-17 00:52:43 +0000536 case TypesCompatibleExprClass:
537 case CXXBoolLiteralExprClass:
Chris Lattner2777e492007-10-18 00:20:32 +0000538 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000539 case CallExprClass: {
540 const CallExpr *CE = cast<CallExpr>(this);
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000541 if (CE->isBuiltinConstantExpr())
542 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000543 if (Loc) *Loc = getLocStart();
544 return false;
545 }
Chris Lattner4ef8dd62007-11-01 02:45:17 +0000546 case DeclRefExprClass: {
547 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
548 // Accept address of function.
549 if (isa<EnumConstantDecl>(D) || isa<FunctionDecl>(D))
Chris Lattner2777e492007-10-18 00:20:32 +0000550 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000551 if (Loc) *Loc = getLocStart();
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000552 if (isa<VarDecl>(D))
553 return TR->isArrayType();
Steve Naroff38374b02007-09-02 20:30:18 +0000554 return false;
Chris Lattner4ef8dd62007-11-01 02:45:17 +0000555 }
Steve Naroffb8f13a82008-01-09 00:05:37 +0000556 case CompoundLiteralExprClass:
557 if (Loc) *Loc = getLocStart();
558 // Allow "(int []){2,4}", since the array will be converted to a pointer.
Nate Begemand47d4f52008-01-25 05:34:48 +0000559 // Allow "(vector type){2,4}" since the elements are all constant.
560 return TR->isArrayType() || TR->isVectorType();
Steve Naroff38374b02007-09-02 20:30:18 +0000561 case UnaryOperatorClass: {
562 const UnaryOperator *Exp = cast<UnaryOperator>(this);
563
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000564 // C99 6.6p9
Chris Lattner239c15e2007-12-11 23:11:17 +0000565 if (Exp->getOpcode() == UnaryOperator::AddrOf) {
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000566 if (!Exp->getSubExpr()->hasGlobalStorage()) {
Chris Lattner239c15e2007-12-11 23:11:17 +0000567 if (Loc) *Loc = getLocStart();
568 return false;
569 }
570 return true;
571 }
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000572
Steve Naroff38374b02007-09-02 20:30:18 +0000573 // Get the operand value. If this is sizeof/alignof, do not evalute the
574 // operand. This affects C99 6.6p3.
Steve Naroffd0091aa2008-01-10 22:15:12 +0000575 if (!Exp->isSizeOfAlignOfOp() &&
576 Exp->getOpcode() != UnaryOperator::OffsetOf &&
Steve Naroff38374b02007-09-02 20:30:18 +0000577 !Exp->getSubExpr()->isConstantExpr(Ctx, Loc))
578 return false;
579
580 switch (Exp->getOpcode()) {
581 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
582 // See C99 6.6p3.
583 default:
584 if (Loc) *Loc = Exp->getOperatorLoc();
585 return false;
586 case UnaryOperator::Extension:
587 return true; // FIXME: this is wrong.
588 case UnaryOperator::SizeOf:
589 case UnaryOperator::AlignOf:
Steve Naroffd0091aa2008-01-10 22:15:12 +0000590 case UnaryOperator::OffsetOf:
Steve Naroff38374b02007-09-02 20:30:18 +0000591 // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000592 if (!Exp->getSubExpr()->getType()->isConstantSizeType()) {
Chris Lattner65383472007-12-18 07:15:40 +0000593 if (Loc) *Loc = Exp->getOperatorLoc();
Steve Naroff38374b02007-09-02 20:30:18 +0000594 return false;
Chris Lattner65383472007-12-18 07:15:40 +0000595 }
Chris Lattner2777e492007-10-18 00:20:32 +0000596 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000597 case UnaryOperator::LNot:
598 case UnaryOperator::Plus:
599 case UnaryOperator::Minus:
600 case UnaryOperator::Not:
Chris Lattner2777e492007-10-18 00:20:32 +0000601 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000602 }
Steve Naroff38374b02007-09-02 20:30:18 +0000603 }
604 case SizeOfAlignOfTypeExprClass: {
605 const SizeOfAlignOfTypeExpr *Exp = cast<SizeOfAlignOfTypeExpr>(this);
606 // alignof always evaluates to a constant.
Chris Lattnera269ebf2008-02-21 05:45:29 +0000607 if (Exp->isSizeOf() && !Exp->getArgumentType()->isVoidType() &&
608 !Exp->getArgumentType()->isConstantSizeType()) {
Chris Lattner65383472007-12-18 07:15:40 +0000609 if (Loc) *Loc = Exp->getOperatorLoc();
Steve Naroff38374b02007-09-02 20:30:18 +0000610 return false;
Chris Lattner65383472007-12-18 07:15:40 +0000611 }
Chris Lattner2777e492007-10-18 00:20:32 +0000612 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000613 }
614 case BinaryOperatorClass: {
615 const BinaryOperator *Exp = cast<BinaryOperator>(this);
616
617 // The LHS of a constant expr is always evaluated and needed.
618 if (!Exp->getLHS()->isConstantExpr(Ctx, Loc))
619 return false;
620
621 if (!Exp->getRHS()->isConstantExpr(Ctx, Loc))
622 return false;
Chris Lattner2777e492007-10-18 00:20:32 +0000623 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000624 }
625 case ImplicitCastExprClass:
626 case CastExprClass: {
627 const Expr *SubExpr;
628 SourceLocation CastLoc;
629 if (const CastExpr *C = dyn_cast<CastExpr>(this)) {
630 SubExpr = C->getSubExpr();
631 CastLoc = C->getLParenLoc();
632 } else {
633 SubExpr = cast<ImplicitCastExpr>(this)->getSubExpr();
634 CastLoc = getLocStart();
635 }
636 if (!SubExpr->isConstantExpr(Ctx, Loc)) {
637 if (Loc) *Loc = SubExpr->getLocStart();
638 return false;
639 }
Chris Lattner2777e492007-10-18 00:20:32 +0000640 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000641 }
642 case ConditionalOperatorClass: {
643 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
Chris Lattner2777e492007-10-18 00:20:32 +0000644 if (!Exp->getCond()->isConstantExpr(Ctx, Loc) ||
Anders Carlsson39073232007-11-30 19:04:31 +0000645 // Handle the GNU extension for missing LHS.
646 !(Exp->getLHS() && Exp->getLHS()->isConstantExpr(Ctx, Loc)) ||
Chris Lattner2777e492007-10-18 00:20:32 +0000647 !Exp->getRHS()->isConstantExpr(Ctx, Loc))
Steve Naroff38374b02007-09-02 20:30:18 +0000648 return false;
Chris Lattner2777e492007-10-18 00:20:32 +0000649 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000650 }
Steve Naroffd0091aa2008-01-10 22:15:12 +0000651 case InitListExprClass: {
652 const InitListExpr *Exp = cast<InitListExpr>(this);
653 unsigned numInits = Exp->getNumInits();
654 for (unsigned i = 0; i < numInits; i++) {
655 if (!Exp->getInit(i)->isConstantExpr(Ctx, Loc)) {
656 if (Loc) *Loc = Exp->getInit(i)->getLocStart();
657 return false;
658 }
659 }
660 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000661 }
Chris Lattner04421082008-04-08 04:40:51 +0000662 case CXXDefaultArgExprClass:
663 return cast<CXXDefaultArgExpr>(this)->getExpr()->isConstantExpr(Ctx, Loc);
Steve Naroffd0091aa2008-01-10 22:15:12 +0000664 }
Steve Naroff38374b02007-09-02 20:30:18 +0000665}
666
Reid Spencer5f016e22007-07-11 17:01:13 +0000667/// isIntegerConstantExpr - this recursive routine will test if an expression is
668/// an integer constant expression. Note: With the introduction of VLA's in
669/// C99 the result of the sizeof operator is no longer always a constant
670/// expression. The generalization of the wording to include any subexpression
671/// that is not evaluated (C99 6.6p3) means that nonconstant subexpressions
672/// can appear as operands to other operators (e.g. &&, ||, ?:). For instance,
Nuno Lopes5f6b6322008-07-08 21:13:06 +0000673/// "0 || f()" can be treated as a constant expression. In C90 this expression,
Reid Spencer5f016e22007-07-11 17:01:13 +0000674/// occurring in a context requiring a constant, would have been a constraint
675/// violation. FIXME: This routine currently implements C90 semantics.
676/// To properly implement C99 semantics this routine will need to evaluate
677/// expressions involving operators previously mentioned.
678
679/// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero,
680/// comma, etc
681///
682/// FIXME: This should ext-warn on overflow during evaluation! ISO C does not
Chris Lattnerccc213f2007-09-26 00:47:26 +0000683/// permit this. This includes things like (int)1e1000
Chris Lattnerce0afc02007-07-18 05:21:20 +0000684///
685/// FIXME: Handle offsetof. Two things to do: Handle GCC's __builtin_offsetof
686/// to support gcc 4.0+ and handle the idiom GCC recognizes with a null pointer
687/// cast+dereference.
Chris Lattner590b6642007-07-15 23:26:56 +0000688bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx,
689 SourceLocation *Loc, bool isEvaluated) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000690 switch (getStmtClass()) {
691 default:
692 if (Loc) *Loc = getLocStart();
693 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000694 case ParenExprClass:
695 return cast<ParenExpr>(this)->getSubExpr()->
Chris Lattner590b6642007-07-15 23:26:56 +0000696 isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated);
Reid Spencer5f016e22007-07-11 17:01:13 +0000697 case IntegerLiteralClass:
698 Result = cast<IntegerLiteral>(this)->getValue();
699 break;
Chris Lattner2eadfb62007-07-15 23:32:58 +0000700 case CharacterLiteralClass: {
701 const CharacterLiteral *CL = cast<CharacterLiteral>(this);
Chris Lattner98be4942008-03-05 18:54:05 +0000702 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Chris Lattner2eadfb62007-07-15 23:32:58 +0000703 Result = CL->getValue();
Chris Lattnerf0fbcb32007-07-16 21:04:56 +0000704 Result.setIsUnsigned(!getType()->isSignedIntegerType());
Reid Spencer5f016e22007-07-11 17:01:13 +0000705 break;
Chris Lattner2eadfb62007-07-15 23:32:58 +0000706 }
Steve Naroff7b658aa2007-08-02 04:09:23 +0000707 case TypesCompatibleExprClass: {
708 const TypesCompatibleExpr *TCE = cast<TypesCompatibleExpr>(this);
Chris Lattner98be4942008-03-05 18:54:05 +0000709 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Steve Naroffec0550f2007-10-15 20:41:53 +0000710 Result = Ctx.typesAreCompatible(TCE->getArgType1(), TCE->getArgType2());
Steve Naroff389cecc2007-08-02 00:13:27 +0000711 break;
Steve Naroff7b658aa2007-08-02 04:09:23 +0000712 }
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000713 case CallExprClass: {
714 const CallExpr *CE = cast<CallExpr>(this);
Chris Lattner98be4942008-03-05 18:54:05 +0000715 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000716 if (CE->isBuiltinClassifyType(Result))
717 break;
718 if (Loc) *Loc = getLocStart();
719 return false;
720 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000721 case DeclRefExprClass:
722 if (const EnumConstantDecl *D =
723 dyn_cast<EnumConstantDecl>(cast<DeclRefExpr>(this)->getDecl())) {
724 Result = D->getInitVal();
725 break;
726 }
727 if (Loc) *Loc = getLocStart();
728 return false;
729 case UnaryOperatorClass: {
730 const UnaryOperator *Exp = cast<UnaryOperator>(this);
731
732 // Get the operand value. If this is sizeof/alignof, do not evalute the
733 // operand. This affects C99 6.6p3.
Anders Carlsson5a1deb82008-01-29 15:56:48 +0000734 if (!Exp->isSizeOfAlignOfOp() && !Exp->isOffsetOfOp() &&
Chris Lattner602dafd2007-08-23 21:42:50 +0000735 !Exp->getSubExpr()->isIntegerConstantExpr(Result, Ctx, Loc,isEvaluated))
Reid Spencer5f016e22007-07-11 17:01:13 +0000736 return false;
737
738 switch (Exp->getOpcode()) {
739 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
740 // See C99 6.6p3.
741 default:
742 if (Loc) *Loc = Exp->getOperatorLoc();
743 return false;
744 case UnaryOperator::Extension:
Chris Lattner76e773a2007-07-18 18:38:36 +0000745 return true; // FIXME: this is wrong.
Reid Spencer5f016e22007-07-11 17:01:13 +0000746 case UnaryOperator::SizeOf:
747 case UnaryOperator::AlignOf:
Chris Lattnera269ebf2008-02-21 05:45:29 +0000748 // Return the result in the right width.
Chris Lattner98be4942008-03-05 18:54:05 +0000749 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Chris Lattnera269ebf2008-02-21 05:45:29 +0000750
751 // sizeof(void) and __alignof__(void) = 1 as a gcc extension.
752 if (Exp->getSubExpr()->getType()->isVoidType()) {
753 Result = 1;
754 break;
755 }
756
Reid Spencer5f016e22007-07-11 17:01:13 +0000757 // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000758 if (!Exp->getSubExpr()->getType()->isConstantSizeType()) {
Chris Lattner65383472007-12-18 07:15:40 +0000759 if (Loc) *Loc = Exp->getOperatorLoc();
Reid Spencer5f016e22007-07-11 17:01:13 +0000760 return false;
Chris Lattner65383472007-12-18 07:15:40 +0000761 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000762
Chris Lattner76e773a2007-07-18 18:38:36 +0000763 // Get information about the size or align.
Chris Lattnerefdd1572008-01-02 21:54:09 +0000764 if (Exp->getSubExpr()->getType()->isFunctionType()) {
765 // GCC extension: sizeof(function) = 1.
766 Result = Exp->getOpcode() == UnaryOperator::AlignOf ? 4 : 1;
Chris Lattnerda5a6b62007-11-27 18:22:04 +0000767 } else {
Chris Lattner98be4942008-03-05 18:54:05 +0000768 unsigned CharSize = Ctx.Target.getCharWidth();
Anders Carlsson64a31ef2008-02-18 07:10:45 +0000769 if (Exp->getOpcode() == UnaryOperator::AlignOf)
Chris Lattner98be4942008-03-05 18:54:05 +0000770 Result = Ctx.getTypeAlign(Exp->getSubExpr()->getType()) / CharSize;
Anders Carlsson64a31ef2008-02-18 07:10:45 +0000771 else
Chris Lattner98be4942008-03-05 18:54:05 +0000772 Result = Ctx.getTypeSize(Exp->getSubExpr()->getType()) / CharSize;
Chris Lattnerda5a6b62007-11-27 18:22:04 +0000773 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000774 break;
775 case UnaryOperator::LNot: {
Chris Lattnerbf755382008-01-25 19:16:19 +0000776 bool Val = Result == 0;
Chris Lattner98be4942008-03-05 18:54:05 +0000777 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Reid Spencer5f016e22007-07-11 17:01:13 +0000778 Result = Val;
779 break;
780 }
781 case UnaryOperator::Plus:
Reid Spencer5f016e22007-07-11 17:01:13 +0000782 break;
783 case UnaryOperator::Minus:
Reid Spencer5f016e22007-07-11 17:01:13 +0000784 Result = -Result;
785 break;
786 case UnaryOperator::Not:
Reid Spencer5f016e22007-07-11 17:01:13 +0000787 Result = ~Result;
788 break;
Anders Carlsson5a1deb82008-01-29 15:56:48 +0000789 case UnaryOperator::OffsetOf:
790 Result = Exp->evaluateOffsetOf(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000791 }
792 break;
793 }
794 case SizeOfAlignOfTypeExprClass: {
795 const SizeOfAlignOfTypeExpr *Exp = cast<SizeOfAlignOfTypeExpr>(this);
Chris Lattnera269ebf2008-02-21 05:45:29 +0000796
797 // Return the result in the right width.
Chris Lattner98be4942008-03-05 18:54:05 +0000798 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Chris Lattnera269ebf2008-02-21 05:45:29 +0000799
800 // sizeof(void) and __alignof__(void) = 1 as a gcc extension.
801 if (Exp->getArgumentType()->isVoidType()) {
802 Result = 1;
803 break;
804 }
805
806 // alignof always evaluates to a constant, sizeof does if arg is not VLA.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000807 if (Exp->isSizeOf() && !Exp->getArgumentType()->isConstantSizeType()) {
Chris Lattner65383472007-12-18 07:15:40 +0000808 if (Loc) *Loc = Exp->getOperatorLoc();
Reid Spencer5f016e22007-07-11 17:01:13 +0000809 return false;
Chris Lattner65383472007-12-18 07:15:40 +0000810 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000811
Chris Lattner76e773a2007-07-18 18:38:36 +0000812 // Get information about the size or align.
Chris Lattnerefdd1572008-01-02 21:54:09 +0000813 if (Exp->getArgumentType()->isFunctionType()) {
814 // GCC extension: sizeof(function) = 1.
815 Result = Exp->isSizeOf() ? 1 : 4;
Anders Carlsson6a24acb2008-02-16 01:20:23 +0000816 } else {
Chris Lattner98be4942008-03-05 18:54:05 +0000817 unsigned CharSize = Ctx.Target.getCharWidth();
Anders Carlsson6a24acb2008-02-16 01:20:23 +0000818 if (Exp->isSizeOf())
Chris Lattner98be4942008-03-05 18:54:05 +0000819 Result = Ctx.getTypeSize(Exp->getArgumentType()) / CharSize;
Anders Carlsson6a24acb2008-02-16 01:20:23 +0000820 else
Chris Lattner98be4942008-03-05 18:54:05 +0000821 Result = Ctx.getTypeAlign(Exp->getArgumentType()) / CharSize;
Ted Kremenek060e4702007-12-17 17:38:43 +0000822 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000823 break;
824 }
825 case BinaryOperatorClass: {
826 const BinaryOperator *Exp = cast<BinaryOperator>(this);
827
828 // The LHS of a constant expr is always evaluated and needed.
Chris Lattner590b6642007-07-15 23:26:56 +0000829 if (!Exp->getLHS()->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated))
Reid Spencer5f016e22007-07-11 17:01:13 +0000830 return false;
831
832 llvm::APSInt RHS(Result);
833
834 // The short-circuiting &&/|| operators don't necessarily evaluate their
835 // RHS. Make sure to pass isEvaluated down correctly.
836 if (Exp->isLogicalOp()) {
837 bool RHSEval;
838 if (Exp->getOpcode() == BinaryOperator::LAnd)
839 RHSEval = Result != 0;
840 else {
841 assert(Exp->getOpcode() == BinaryOperator::LOr &&"Unexpected logical");
842 RHSEval = Result == 0;
843 }
844
Chris Lattner590b6642007-07-15 23:26:56 +0000845 if (!Exp->getRHS()->isIntegerConstantExpr(RHS, Ctx, Loc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000846 isEvaluated & RHSEval))
847 return false;
848 } else {
Chris Lattner590b6642007-07-15 23:26:56 +0000849 if (!Exp->getRHS()->isIntegerConstantExpr(RHS, Ctx, Loc, isEvaluated))
Reid Spencer5f016e22007-07-11 17:01:13 +0000850 return false;
851 }
852
Reid Spencer5f016e22007-07-11 17:01:13 +0000853 switch (Exp->getOpcode()) {
854 default:
855 if (Loc) *Loc = getLocStart();
856 return false;
857 case BinaryOperator::Mul:
858 Result *= RHS;
859 break;
860 case BinaryOperator::Div:
861 if (RHS == 0) {
862 if (!isEvaluated) break;
863 if (Loc) *Loc = getLocStart();
864 return false;
865 }
866 Result /= RHS;
867 break;
868 case BinaryOperator::Rem:
869 if (RHS == 0) {
870 if (!isEvaluated) break;
871 if (Loc) *Loc = getLocStart();
872 return false;
873 }
874 Result %= RHS;
875 break;
876 case BinaryOperator::Add: Result += RHS; break;
877 case BinaryOperator::Sub: Result -= RHS; break;
878 case BinaryOperator::Shl:
Chris Lattner701e5eb2007-09-04 02:45:27 +0000879 Result <<=
880 static_cast<uint32_t>(RHS.getLimitedValue(Result.getBitWidth()-1));
Reid Spencer5f016e22007-07-11 17:01:13 +0000881 break;
882 case BinaryOperator::Shr:
Chris Lattner701e5eb2007-09-04 02:45:27 +0000883 Result >>=
884 static_cast<uint32_t>(RHS.getLimitedValue(Result.getBitWidth()-1));
Reid Spencer5f016e22007-07-11 17:01:13 +0000885 break;
886 case BinaryOperator::LT: Result = Result < RHS; break;
887 case BinaryOperator::GT: Result = Result > RHS; break;
888 case BinaryOperator::LE: Result = Result <= RHS; break;
889 case BinaryOperator::GE: Result = Result >= RHS; break;
890 case BinaryOperator::EQ: Result = Result == RHS; break;
891 case BinaryOperator::NE: Result = Result != RHS; break;
892 case BinaryOperator::And: Result &= RHS; break;
893 case BinaryOperator::Xor: Result ^= RHS; break;
894 case BinaryOperator::Or: Result |= RHS; break;
895 case BinaryOperator::LAnd:
896 Result = Result != 0 && RHS != 0;
897 break;
898 case BinaryOperator::LOr:
899 Result = Result != 0 || RHS != 0;
900 break;
901
902 case BinaryOperator::Comma:
903 // C99 6.6p3: "shall not contain assignment, ..., or comma operators,
904 // *except* when they are contained within a subexpression that is not
905 // evaluated". Note that Assignment can never happen due to constraints
906 // on the LHS subexpr, so we don't need to check it here.
907 if (isEvaluated) {
908 if (Loc) *Loc = getLocStart();
909 return false;
910 }
911
912 // The result of the constant expr is the RHS.
913 Result = RHS;
914 return true;
915 }
916
917 assert(!Exp->isAssignmentOp() && "LHS can't be a constant expr!");
918 break;
919 }
Chris Lattner26dc7b32007-07-15 23:54:50 +0000920 case ImplicitCastExprClass:
Reid Spencer5f016e22007-07-11 17:01:13 +0000921 case CastExprClass: {
Chris Lattner26dc7b32007-07-15 23:54:50 +0000922 const Expr *SubExpr;
923 SourceLocation CastLoc;
924 if (const CastExpr *C = dyn_cast<CastExpr>(this)) {
925 SubExpr = C->getSubExpr();
926 CastLoc = C->getLParenLoc();
927 } else {
928 SubExpr = cast<ImplicitCastExpr>(this)->getSubExpr();
929 CastLoc = getLocStart();
930 }
931
Reid Spencer5f016e22007-07-11 17:01:13 +0000932 // C99 6.6p6: shall only convert arithmetic types to integer types.
Chris Lattner26dc7b32007-07-15 23:54:50 +0000933 if (!SubExpr->getType()->isArithmeticType() ||
934 !getType()->isIntegerType()) {
935 if (Loc) *Loc = SubExpr->getLocStart();
Steve Naroffc7938082008-06-03 22:06:04 +0000936 // GCC accepts pointers as an extension.
937 // FIXME: check getLangOptions().NoExtensions. At the moment, it doesn't
938 // appear possible to get langOptions() from the Expr.
939 if (SubExpr->getType()->isPointerType()) // && !NoExtensions
940 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000941 return false;
942 }
Chris Lattner987b15d2007-09-22 19:04:13 +0000943
Chris Lattner98be4942008-03-05 18:54:05 +0000944 uint32_t DestWidth = static_cast<uint32_t>(Ctx.getTypeSize(getType()));
Chris Lattner987b15d2007-09-22 19:04:13 +0000945
Reid Spencer5f016e22007-07-11 17:01:13 +0000946 // Handle simple integer->integer casts.
Chris Lattner26dc7b32007-07-15 23:54:50 +0000947 if (SubExpr->getType()->isIntegerType()) {
948 if (!SubExpr->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated))
Reid Spencer5f016e22007-07-11 17:01:13 +0000949 return false;
Chris Lattner26dc7b32007-07-15 23:54:50 +0000950
951 // Figure out if this is a truncate, extend or noop cast.
Chris Lattner26dc7b32007-07-15 23:54:50 +0000952 // If the input is signed, do a sign extend, noop, or truncate.
Chris Lattnerc0a356b2008-01-09 18:59:34 +0000953 if (getType()->isBooleanType()) {
954 // Conversion to bool compares against zero.
955 Result = Result != 0;
956 Result.zextOrTrunc(DestWidth);
957 } else if (SubExpr->getType()->isSignedIntegerType())
Chris Lattner26dc7b32007-07-15 23:54:50 +0000958 Result.sextOrTrunc(DestWidth);
959 else // If the input is unsigned, do a zero extend, noop, or truncate.
960 Result.zextOrTrunc(DestWidth);
Reid Spencer5f016e22007-07-11 17:01:13 +0000961 break;
962 }
963
964 // Allow floating constants that are the immediate operands of casts or that
965 // are parenthesized.
Chris Lattner26dc7b32007-07-15 23:54:50 +0000966 const Expr *Operand = SubExpr;
Reid Spencer5f016e22007-07-11 17:01:13 +0000967 while (const ParenExpr *PE = dyn_cast<ParenExpr>(Operand))
968 Operand = PE->getSubExpr();
Chris Lattner987b15d2007-09-22 19:04:13 +0000969
970 // If this isn't a floating literal, we can't handle it.
971 const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(Operand);
972 if (!FL) {
973 if (Loc) *Loc = Operand->getLocStart();
974 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000975 }
Chris Lattnerc0a356b2008-01-09 18:59:34 +0000976
977 // If the destination is boolean, compare against zero.
978 if (getType()->isBooleanType()) {
979 Result = !FL->getValue().isZero();
980 Result.zextOrTrunc(DestWidth);
981 break;
982 }
Chris Lattner987b15d2007-09-22 19:04:13 +0000983
984 // Determine whether we are converting to unsigned or signed.
985 bool DestSigned = getType()->isSignedIntegerType();
Chris Lattnerccc213f2007-09-26 00:47:26 +0000986
987 // TODO: Warn on overflow, but probably not here: isIntegerConstantExpr can
988 // be called multiple times per AST.
Chris Lattner987b15d2007-09-22 19:04:13 +0000989 uint64_t Space[4];
Chris Lattnerccc213f2007-09-26 00:47:26 +0000990 (void)FL->getValue().convertToInteger(Space, DestWidth, DestSigned,
991 llvm::APFloat::rmTowardZero);
Chris Lattner987b15d2007-09-22 19:04:13 +0000992 Result = llvm::APInt(DestWidth, 4, Space);
993 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000994 }
995 case ConditionalOperatorClass: {
996 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
997
Chris Lattner590b6642007-07-15 23:26:56 +0000998 if (!Exp->getCond()->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated))
Reid Spencer5f016e22007-07-11 17:01:13 +0000999 return false;
1000
1001 const Expr *TrueExp = Exp->getLHS();
1002 const Expr *FalseExp = Exp->getRHS();
1003 if (Result == 0) std::swap(TrueExp, FalseExp);
1004
1005 // Evaluate the false one first, discard the result.
Anders Carlsson39073232007-11-30 19:04:31 +00001006 if (FalseExp && !FalseExp->isIntegerConstantExpr(Result, Ctx, Loc, false))
Reid Spencer5f016e22007-07-11 17:01:13 +00001007 return false;
1008 // Evalute the true one, capture the result.
Anders Carlsson39073232007-11-30 19:04:31 +00001009 if (TrueExp &&
1010 !TrueExp->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated))
Reid Spencer5f016e22007-07-11 17:01:13 +00001011 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001012 break;
1013 }
Chris Lattner04421082008-04-08 04:40:51 +00001014 case CXXDefaultArgExprClass:
1015 return cast<CXXDefaultArgExpr>(this)
1016 ->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated);
Reid Spencer5f016e22007-07-11 17:01:13 +00001017 }
1018
1019 // Cases that are valid constant exprs fall through to here.
1020 Result.setIsUnsigned(getType()->isUnsignedIntegerType());
1021 return true;
1022}
1023
Reid Spencer5f016e22007-07-11 17:01:13 +00001024/// isNullPointerConstant - C99 6.3.2.3p3 - Return true if this is either an
1025/// integer constant expression with the value zero, or if this is one that is
1026/// cast to void*.
Chris Lattner590b6642007-07-15 23:26:56 +00001027bool Expr::isNullPointerConstant(ASTContext &Ctx) const {
Steve Naroffaa58f002008-01-14 16:10:57 +00001028 // Strip off a cast to void*, if it exists.
1029 if (const CastExpr *CE = dyn_cast<CastExpr>(this)) {
1030 // Check that it is a cast to void*.
Eli Friedman4b3f9b32008-02-13 17:29:58 +00001031 if (const PointerType *PT = CE->getType()->getAsPointerType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001032 QualType Pointee = PT->getPointeeType();
Chris Lattnerf46699c2008-02-20 20:55:12 +00001033 if (Pointee.getCVRQualifiers() == 0 &&
1034 Pointee->isVoidType() && // to void*
Steve Naroffaa58f002008-01-14 16:10:57 +00001035 CE->getSubExpr()->getType()->isIntegerType()) // from int.
1036 return CE->getSubExpr()->isNullPointerConstant(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001037 }
Steve Naroffaa58f002008-01-14 16:10:57 +00001038 } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
1039 // Ignore the ImplicitCastExpr type entirely.
1040 return ICE->getSubExpr()->isNullPointerConstant(Ctx);
1041 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
1042 // Accept ((void*)0) as a null pointer constant, as many other
1043 // implementations do.
1044 return PE->getSubExpr()->isNullPointerConstant(Ctx);
Chris Lattner8123a952008-04-10 02:22:51 +00001045 } else if (const CXXDefaultArgExpr *DefaultArg
1046 = dyn_cast<CXXDefaultArgExpr>(this)) {
Chris Lattner04421082008-04-08 04:40:51 +00001047 // See through default argument expressions
1048 return DefaultArg->getExpr()->isNullPointerConstant(Ctx);
Steve Naroffaaffbf72008-01-14 02:53:34 +00001049 }
Steve Naroffaa58f002008-01-14 16:10:57 +00001050
1051 // This expression must be an integer type.
1052 if (!getType()->isIntegerType())
1053 return false;
1054
Reid Spencer5f016e22007-07-11 17:01:13 +00001055 // If we have an integer constant expression, we need to *evaluate* it and
1056 // test for the value 0.
1057 llvm::APSInt Val(32);
Steve Naroffaa58f002008-01-14 16:10:57 +00001058 return isIntegerConstantExpr(Val, Ctx, 0, true) && Val == 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001059}
Steve Naroff31a45842007-07-28 23:10:27 +00001060
Nate Begeman213541a2008-04-18 23:10:10 +00001061unsigned ExtVectorElementExpr::getNumElements() const {
Nate Begeman8a997642008-05-09 06:41:27 +00001062 if (const VectorType *VT = getType()->getAsVectorType())
1063 return VT->getNumElements();
1064 return 1;
Chris Lattner4d0ac882007-08-03 16:00:20 +00001065}
1066
Nate Begeman8a997642008-05-09 06:41:27 +00001067/// containsDuplicateElements - Return true if any element access is repeated.
Nate Begeman213541a2008-04-18 23:10:10 +00001068bool ExtVectorElementExpr::containsDuplicateElements() const {
Steve Narofffec0b492007-07-30 03:29:09 +00001069 const char *compStr = Accessor.getName();
1070 unsigned length = strlen(compStr);
1071
1072 for (unsigned i = 0; i < length-1; i++) {
1073 const char *s = compStr+i;
1074 for (const char c = *s++; *s; s++)
1075 if (c == *s)
1076 return true;
1077 }
1078 return false;
1079}
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001080
Nate Begeman8a997642008-05-09 06:41:27 +00001081/// getEncodedElementAccess - We encode the fields as a llvm ConstantArray.
Nate Begeman3b8d1162008-05-13 21:03:02 +00001082void ExtVectorElementExpr::getEncodedElementAccess(
1083 llvm::SmallVectorImpl<unsigned> &Elts) const {
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001084 const char *compStr = Accessor.getName();
Nate Begeman8a997642008-05-09 06:41:27 +00001085
1086 bool isHi = !strcmp(compStr, "hi");
1087 bool isLo = !strcmp(compStr, "lo");
1088 bool isEven = !strcmp(compStr, "e");
1089 bool isOdd = !strcmp(compStr, "o");
1090
1091 for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
1092 uint64_t Index;
1093
1094 if (isHi)
1095 Index = e + i;
1096 else if (isLo)
1097 Index = i;
1098 else if (isEven)
1099 Index = 2 * i;
1100 else if (isOdd)
1101 Index = 2 * i + 1;
1102 else
1103 Index = ExtVectorType::getAccessorIdx(compStr[i]);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001104
Nate Begeman3b8d1162008-05-13 21:03:02 +00001105 Elts.push_back(Index);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001106 }
Nate Begeman8a997642008-05-09 06:41:27 +00001107}
1108
Steve Naroff68d331a2007-09-27 14:38:14 +00001109// constructor for instance messages.
Steve Naroffbcfb06a2007-09-28 22:22:11 +00001110ObjCMessageExpr::ObjCMessageExpr(Expr *receiver, Selector selInfo,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001111 QualType retType, ObjCMethodDecl *mproto,
Steve Naroffdb611d52007-11-03 16:37:59 +00001112 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff49f109c2007-11-15 13:05:42 +00001113 Expr **ArgExprs, unsigned nargs)
Steve Naroffdb611d52007-11-03 16:37:59 +00001114 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekea958e572008-05-01 17:26:20 +00001115 MethodProto(mproto) {
Steve Naroff49f109c2007-11-15 13:05:42 +00001116 NumArgs = nargs;
Ted Kremenek55499762008-06-17 02:43:46 +00001117 SubExprs = new Stmt*[NumArgs+1];
Steve Naroff68d331a2007-09-27 14:38:14 +00001118 SubExprs[RECEIVER] = receiver;
Steve Naroff49f109c2007-11-15 13:05:42 +00001119 if (NumArgs) {
1120 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff68d331a2007-09-27 14:38:14 +00001121 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1122 }
Steve Naroff563477d2007-09-18 23:55:05 +00001123 LBracloc = LBrac;
1124 RBracloc = RBrac;
1125}
1126
Steve Naroff68d331a2007-09-27 14:38:14 +00001127// constructor for class messages.
1128// FIXME: clsName should be typed to ObjCInterfaceType
Steve Naroffbcfb06a2007-09-28 22:22:11 +00001129ObjCMessageExpr::ObjCMessageExpr(IdentifierInfo *clsName, Selector selInfo,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001130 QualType retType, ObjCMethodDecl *mproto,
Steve Naroffdb611d52007-11-03 16:37:59 +00001131 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff49f109c2007-11-15 13:05:42 +00001132 Expr **ArgExprs, unsigned nargs)
Steve Naroffdb611d52007-11-03 16:37:59 +00001133 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekea958e572008-05-01 17:26:20 +00001134 MethodProto(mproto) {
Steve Naroff49f109c2007-11-15 13:05:42 +00001135 NumArgs = nargs;
Ted Kremenek55499762008-06-17 02:43:46 +00001136 SubExprs = new Stmt*[NumArgs+1];
Ted Kremenek4df728e2008-06-24 15:50:53 +00001137 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) clsName | IsClsMethDeclUnknown);
Steve Naroff49f109c2007-11-15 13:05:42 +00001138 if (NumArgs) {
1139 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff68d331a2007-09-27 14:38:14 +00001140 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1141 }
Steve Naroff563477d2007-09-18 23:55:05 +00001142 LBracloc = LBrac;
1143 RBracloc = RBrac;
1144}
1145
Ted Kremenek4df728e2008-06-24 15:50:53 +00001146// constructor for class messages.
1147ObjCMessageExpr::ObjCMessageExpr(ObjCInterfaceDecl *cls, Selector selInfo,
1148 QualType retType, ObjCMethodDecl *mproto,
1149 SourceLocation LBrac, SourceLocation RBrac,
1150 Expr **ArgExprs, unsigned nargs)
1151: Expr(ObjCMessageExprClass, retType), SelName(selInfo),
1152MethodProto(mproto) {
1153 NumArgs = nargs;
1154 SubExprs = new Stmt*[NumArgs+1];
1155 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) cls | IsClsMethDeclKnown);
1156 if (NumArgs) {
1157 for (unsigned i = 0; i != NumArgs; ++i)
1158 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1159 }
1160 LBracloc = LBrac;
1161 RBracloc = RBrac;
1162}
1163
1164ObjCMessageExpr::ClassInfo ObjCMessageExpr::getClassInfo() const {
1165 uintptr_t x = (uintptr_t) SubExprs[RECEIVER];
1166 switch (x & Flags) {
1167 default:
1168 assert(false && "Invalid ObjCMessageExpr.");
1169 case IsInstMeth:
1170 return ClassInfo(0, 0);
1171 case IsClsMethDeclUnknown:
1172 return ClassInfo(0, (IdentifierInfo*) (x & ~Flags));
1173 case IsClsMethDeclKnown: {
1174 ObjCInterfaceDecl* D = (ObjCInterfaceDecl*) (x & ~Flags);
1175 return ClassInfo(D, D->getIdentifier());
1176 }
1177 }
1178}
1179
Chris Lattner27437ca2007-10-25 00:29:32 +00001180bool ChooseExpr::isConditionTrue(ASTContext &C) const {
1181 llvm::APSInt CondVal(32);
1182 bool IsConst = getCond()->isIntegerConstantExpr(CondVal, C);
1183 assert(IsConst && "Condition of choose expr must be i-c-e"); IsConst=IsConst;
1184 return CondVal != 0;
1185}
1186
Anders Carlsson5a1deb82008-01-29 15:56:48 +00001187static int64_t evaluateOffsetOf(ASTContext& C, const Expr *E)
1188{
1189 if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
1190 QualType Ty = ME->getBase()->getType();
1191
1192 RecordDecl *RD = Ty->getAsRecordType()->getDecl();
Chris Lattner98be4942008-03-05 18:54:05 +00001193 const ASTRecordLayout &RL = C.getASTRecordLayout(RD);
Anders Carlsson5a1deb82008-01-29 15:56:48 +00001194 FieldDecl *FD = ME->getMemberDecl();
1195
1196 // FIXME: This is linear time.
1197 unsigned i = 0, e = 0;
1198 for (i = 0, e = RD->getNumMembers(); i != e; i++) {
1199 if (RD->getMember(i) == FD)
1200 break;
1201 }
1202
1203 return RL.getFieldOffset(i) + evaluateOffsetOf(C, ME->getBase());
1204 } else if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E)) {
1205 const Expr *Base = ASE->getBase();
1206 llvm::APSInt Idx(32);
1207 bool ICE = ASE->getIdx()->isIntegerConstantExpr(Idx, C);
1208 assert(ICE && "Array index is not a constant integer!");
1209
Chris Lattner98be4942008-03-05 18:54:05 +00001210 int64_t size = C.getTypeSize(ASE->getType());
Anders Carlsson5a1deb82008-01-29 15:56:48 +00001211 size *= Idx.getSExtValue();
1212
1213 return size + evaluateOffsetOf(C, Base);
1214 } else if (isa<CompoundLiteralExpr>(E))
1215 return 0;
1216
1217 assert(0 && "Unknown offsetof subexpression!");
1218 return 0;
1219}
1220
1221int64_t UnaryOperator::evaluateOffsetOf(ASTContext& C) const
1222{
1223 assert(Opc == OffsetOf && "Unary operator not offsetof!");
1224
Chris Lattner98be4942008-03-05 18:54:05 +00001225 unsigned CharSize = C.Target.getCharWidth();
Ted Kremenek55499762008-06-17 02:43:46 +00001226 return ::evaluateOffsetOf(C, cast<Expr>(Val)) / CharSize;
Anders Carlsson5a1deb82008-01-29 15:56:48 +00001227}
1228
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001229//===----------------------------------------------------------------------===//
1230// Child Iterators for iterating over subexpressions/substatements
1231//===----------------------------------------------------------------------===//
1232
1233// DeclRefExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001234Stmt::child_iterator DeclRefExpr::child_begin() { return child_iterator(); }
1235Stmt::child_iterator DeclRefExpr::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001236
Steve Naroff7779db42007-11-12 14:29:37 +00001237// ObjCIvarRefExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001238Stmt::child_iterator ObjCIvarRefExpr::child_begin() { return &Base; }
1239Stmt::child_iterator ObjCIvarRefExpr::child_end() { return &Base+1; }
Steve Naroff7779db42007-11-12 14:29:37 +00001240
Steve Naroffe3e9add2008-06-02 23:03:37 +00001241// ObjCPropertyRefExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001242Stmt::child_iterator ObjCPropertyRefExpr::child_begin() { return &Base; }
1243Stmt::child_iterator ObjCPropertyRefExpr::child_end() { return &Base+1; }
Steve Naroffae784072008-05-30 00:40:33 +00001244
Steve Naroffe3e9add2008-06-02 23:03:37 +00001245// ObjCSuperRefExpr
1246Stmt::child_iterator ObjCSuperRefExpr::child_begin() { return child_iterator();}
1247Stmt::child_iterator ObjCSuperRefExpr::child_end() { return child_iterator(); }
1248
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001249// PreDefinedExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001250Stmt::child_iterator PreDefinedExpr::child_begin() { return child_iterator(); }
1251Stmt::child_iterator PreDefinedExpr::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001252
1253// IntegerLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001254Stmt::child_iterator IntegerLiteral::child_begin() { return child_iterator(); }
1255Stmt::child_iterator IntegerLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001256
1257// CharacterLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001258Stmt::child_iterator CharacterLiteral::child_begin() { return child_iterator(); }
1259Stmt::child_iterator CharacterLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001260
1261// FloatingLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001262Stmt::child_iterator FloatingLiteral::child_begin() { return child_iterator(); }
1263Stmt::child_iterator FloatingLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001264
Chris Lattner5d661452007-08-26 03:42:43 +00001265// ImaginaryLiteral
Ted Kremenek55499762008-06-17 02:43:46 +00001266Stmt::child_iterator ImaginaryLiteral::child_begin() { return &Val; }
1267Stmt::child_iterator ImaginaryLiteral::child_end() { return &Val+1; }
Chris Lattner5d661452007-08-26 03:42:43 +00001268
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001269// StringLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001270Stmt::child_iterator StringLiteral::child_begin() { return child_iterator(); }
1271Stmt::child_iterator StringLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001272
1273// ParenExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001274Stmt::child_iterator ParenExpr::child_begin() { return &Val; }
1275Stmt::child_iterator ParenExpr::child_end() { return &Val+1; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001276
1277// UnaryOperator
Ted Kremenek55499762008-06-17 02:43:46 +00001278Stmt::child_iterator UnaryOperator::child_begin() { return &Val; }
1279Stmt::child_iterator UnaryOperator::child_end() { return &Val+1; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001280
1281// SizeOfAlignOfTypeExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001282Stmt::child_iterator SizeOfAlignOfTypeExpr::child_begin() {
Ted Kremenek699e9fb2007-12-14 22:52:23 +00001283 // If the type is a VLA type (and not a typedef), the size expression of the
1284 // VLA needs to be treated as an executable expression.
1285 if (VariableArrayType* T = dyn_cast<VariableArrayType>(Ty.getTypePtr()))
1286 return child_iterator(T);
1287 else
1288 return child_iterator();
Ted Kremenek9ac59282007-10-18 23:28:49 +00001289}
1290Stmt::child_iterator SizeOfAlignOfTypeExpr::child_end() {
Ted Kremenek699e9fb2007-12-14 22:52:23 +00001291 return child_iterator();
Ted Kremenek9ac59282007-10-18 23:28:49 +00001292}
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001293
1294// ArraySubscriptExpr
Ted Kremenek1237c672007-08-24 20:06:47 +00001295Stmt::child_iterator ArraySubscriptExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001296 return &SubExprs[0];
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001297}
Ted Kremenek1237c672007-08-24 20:06:47 +00001298Stmt::child_iterator ArraySubscriptExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001299 return &SubExprs[0]+END_EXPR;
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001300}
1301
1302// CallExpr
Ted Kremenek1237c672007-08-24 20:06:47 +00001303Stmt::child_iterator CallExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001304 return &SubExprs[0];
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001305}
Ted Kremenek1237c672007-08-24 20:06:47 +00001306Stmt::child_iterator CallExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001307 return &SubExprs[0]+NumArgs+ARGS_START;
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001308}
Ted Kremenek1237c672007-08-24 20:06:47 +00001309
1310// MemberExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001311Stmt::child_iterator MemberExpr::child_begin() { return &Base; }
1312Stmt::child_iterator MemberExpr::child_end() { return &Base+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001313
Nate Begeman213541a2008-04-18 23:10:10 +00001314// ExtVectorElementExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001315Stmt::child_iterator ExtVectorElementExpr::child_begin() { return &Base; }
1316Stmt::child_iterator ExtVectorElementExpr::child_end() { return &Base+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001317
1318// CompoundLiteralExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001319Stmt::child_iterator CompoundLiteralExpr::child_begin() { return &Init; }
1320Stmt::child_iterator CompoundLiteralExpr::child_end() { return &Init+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001321
1322// ImplicitCastExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001323Stmt::child_iterator ImplicitCastExpr::child_begin() { return &Op; }
1324Stmt::child_iterator ImplicitCastExpr::child_end() { return &Op+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001325
1326// CastExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001327Stmt::child_iterator CastExpr::child_begin() { return &Op; }
1328Stmt::child_iterator CastExpr::child_end() { return &Op+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001329
1330// BinaryOperator
1331Stmt::child_iterator BinaryOperator::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001332 return &SubExprs[0];
Ted Kremenek1237c672007-08-24 20:06:47 +00001333}
Ted Kremenek1237c672007-08-24 20:06:47 +00001334Stmt::child_iterator BinaryOperator::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001335 return &SubExprs[0]+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00001336}
1337
1338// ConditionalOperator
1339Stmt::child_iterator ConditionalOperator::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001340 return &SubExprs[0];
Ted Kremenek1237c672007-08-24 20:06:47 +00001341}
Ted Kremenek1237c672007-08-24 20:06:47 +00001342Stmt::child_iterator ConditionalOperator::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001343 return &SubExprs[0]+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00001344}
1345
1346// AddrLabelExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001347Stmt::child_iterator AddrLabelExpr::child_begin() { return child_iterator(); }
1348Stmt::child_iterator AddrLabelExpr::child_end() { return child_iterator(); }
Ted Kremenek1237c672007-08-24 20:06:47 +00001349
Ted Kremenek1237c672007-08-24 20:06:47 +00001350// StmtExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001351Stmt::child_iterator StmtExpr::child_begin() { return &SubStmt; }
1352Stmt::child_iterator StmtExpr::child_end() { return &SubStmt+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001353
1354// TypesCompatibleExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001355Stmt::child_iterator TypesCompatibleExpr::child_begin() {
1356 return child_iterator();
1357}
1358
1359Stmt::child_iterator TypesCompatibleExpr::child_end() {
1360 return child_iterator();
1361}
Ted Kremenek1237c672007-08-24 20:06:47 +00001362
1363// ChooseExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001364Stmt::child_iterator ChooseExpr::child_begin() { return &SubExprs[0]; }
1365Stmt::child_iterator ChooseExpr::child_end() { return &SubExprs[0]+END_EXPR; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001366
Nate Begemane2ce1d92008-01-17 17:46:27 +00001367// OverloadExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001368Stmt::child_iterator OverloadExpr::child_begin() { return &SubExprs[0]; }
1369Stmt::child_iterator OverloadExpr::child_end() { return &SubExprs[0]+NumExprs; }
Nate Begemane2ce1d92008-01-17 17:46:27 +00001370
Eli Friedmand38617c2008-05-14 19:38:39 +00001371// ShuffleVectorExpr
1372Stmt::child_iterator ShuffleVectorExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001373 return &SubExprs[0];
Eli Friedmand38617c2008-05-14 19:38:39 +00001374}
1375Stmt::child_iterator ShuffleVectorExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001376 return &SubExprs[0]+NumExprs;
Eli Friedmand38617c2008-05-14 19:38:39 +00001377}
1378
Anders Carlsson7c50aca2007-10-15 20:28:48 +00001379// VAArgExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001380Stmt::child_iterator VAArgExpr::child_begin() { return &Val; }
1381Stmt::child_iterator VAArgExpr::child_end() { return &Val+1; }
Anders Carlsson7c50aca2007-10-15 20:28:48 +00001382
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001383// InitListExpr
1384Stmt::child_iterator InitListExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001385 return InitExprs.size() ? &InitExprs[0] : 0;
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001386}
1387Stmt::child_iterator InitListExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001388 return InitExprs.size() ? &InitExprs[0] + InitExprs.size() : 0;
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001389}
1390
Ted Kremenek1237c672007-08-24 20:06:47 +00001391// ObjCStringLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001392Stmt::child_iterator ObjCStringLiteral::child_begin() {
1393 return child_iterator();
1394}
1395Stmt::child_iterator ObjCStringLiteral::child_end() {
1396 return child_iterator();
1397}
Ted Kremenek1237c672007-08-24 20:06:47 +00001398
1399// ObjCEncodeExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001400Stmt::child_iterator ObjCEncodeExpr::child_begin() { return child_iterator(); }
1401Stmt::child_iterator ObjCEncodeExpr::child_end() { return child_iterator(); }
Ted Kremenek1237c672007-08-24 20:06:47 +00001402
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00001403// ObjCSelectorExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001404Stmt::child_iterator ObjCSelectorExpr::child_begin() {
1405 return child_iterator();
1406}
1407Stmt::child_iterator ObjCSelectorExpr::child_end() {
1408 return child_iterator();
1409}
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00001410
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00001411// ObjCProtocolExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001412Stmt::child_iterator ObjCProtocolExpr::child_begin() {
1413 return child_iterator();
1414}
1415Stmt::child_iterator ObjCProtocolExpr::child_end() {
1416 return child_iterator();
1417}
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00001418
Steve Naroff563477d2007-09-18 23:55:05 +00001419// ObjCMessageExpr
Ted Kremenekea958e572008-05-01 17:26:20 +00001420Stmt::child_iterator ObjCMessageExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001421 return getReceiver() ? &SubExprs[0] : &SubExprs[0] + ARGS_START;
Steve Naroff563477d2007-09-18 23:55:05 +00001422}
1423Stmt::child_iterator ObjCMessageExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001424 return &SubExprs[0]+ARGS_START+getNumArgs();
Steve Naroff563477d2007-09-18 23:55:05 +00001425}
1426