Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1 | //===--- Expr.cpp - Expression AST Node Implementation --------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 959e5be | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the Expr class and subclasses. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Steve Naroff | 9ed3e77 | 2008-05-29 21:12:08 +0000 | [diff] [blame] | 14 | #include "clang/AST/ExprObjC.h" |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 15 | #include "clang/AST/ASTContext.h" |
| 16 | #include "clang/AST/StmtVisitor.h" |
Chris Lattner | 2fd1c65 | 2007-10-07 08:58:51 +0000 | [diff] [blame] | 17 | #include "clang/Basic/IdentifierTable.h" |
Chris Lattner | d9ffbc9 | 2007-11-27 18:22:04 +0000 | [diff] [blame] | 18 | #include "clang/Basic/TargetInfo.h" |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 19 | using namespace clang; |
| 20 | |
| 21 | //===----------------------------------------------------------------------===// |
| 22 | // Primary Expressions. |
| 23 | //===----------------------------------------------------------------------===// |
| 24 | |
Chris Lattner | e0391b2 | 2008-06-07 22:13:43 +0000 | [diff] [blame] | 25 | /// 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. |
| 28 | double FloatingLiteral::getValueAsApproximateDouble() const { |
| 29 | llvm::APFloat V = getValue(); |
| 30 | V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven); |
| 31 | return V.convertToDouble(); |
| 32 | } |
| 33 | |
| 34 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 35 | StringLiteral::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 | |
| 49 | StringLiteral::~StringLiteral() { |
| 50 | delete[] StrData; |
| 51 | } |
| 52 | |
| 53 | bool 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]++". |
| 65 | const 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 Lattner | 0d9bcea | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 83 | case OffsetOf: return "__builtin_offsetof"; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 84 | } |
| 85 | } |
| 86 | |
| 87 | //===----------------------------------------------------------------------===// |
| 88 | // Postfix Operators. |
| 89 | //===----------------------------------------------------------------------===// |
| 90 | |
Nate Begeman | 9f3bfb7 | 2008-01-17 17:46:27 +0000 | [diff] [blame] | 91 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 92 | CallExpr::CallExpr(Expr *fn, Expr **args, unsigned numargs, QualType t, |
| 93 | SourceLocation rparenloc) |
Ted Kremenek | e4acb9c | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 94 | : Expr(CallExprClass, t), NumArgs(numargs) { |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 95 | SubExprs = new Stmt*[numargs+1]; |
Ted Kremenek | e4acb9c | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 96 | SubExprs[FN] = fn; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 97 | for (unsigned i = 0; i != numargs; ++i) |
Ted Kremenek | e4acb9c | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 98 | SubExprs[i+ARGS_START] = args[i]; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 99 | RParenLoc = rparenloc; |
| 100 | } |
| 101 | |
Chris Lattner | c257c0d | 2007-12-28 05:25:02 +0000 | [diff] [blame] | 102 | /// 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. |
| 105 | void 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. |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 118 | Stmt **NewSubExprs = new Stmt*[NumArgs+1]; |
Chris Lattner | c257c0d | 2007-12-28 05:25:02 +0000 | [diff] [blame] | 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 Naroff | 44aec4c | 2008-01-31 01:07:12 +0000 | [diff] [blame] | 131 | bool 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 Carlsson | 2ed959f | 2008-01-31 02:13:57 +0000 | [diff] [blame] | 143 | 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 Friedman | 8845a81 | 2008-05-16 13:28:37 +0000 | [diff] [blame] | 152 | return builtinID == Builtin::BI__builtin___CFStringMakeConstantString || |
| 153 | builtinID == Builtin::BI__builtin_classify_type; |
Steve Naroff | 44aec4c | 2008-01-31 01:07:12 +0000 | [diff] [blame] | 154 | } |
Chris Lattner | c257c0d | 2007-12-28 05:25:02 +0000 | [diff] [blame] | 155 | |
Steve Naroff | 8d3b170 | 2007-08-08 22:15:55 +0000 | [diff] [blame] | 156 | bool 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 Lattner | 19b8f1a | 2007-11-08 17:56:40 +0000 | [diff] [blame] | 218 | assert(0 && "CallExpr::isBuiltinClassifyType(): unimplemented type"); |
Steve Naroff | 8d3b170 | 2007-08-08 22:15:55 +0000 | [diff] [blame] | 219 | } |
| 220 | return true; |
| 221 | } |
| 222 | return false; |
| 223 | } |
| 224 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 225 | /// getOpcodeStr - Turn an Opcode enum value into the punctuation char it |
| 226 | /// corresponds to, e.g. "<<=". |
| 227 | const 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 Carlsson | 762b7c7 | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 263 | InitListExpr::InitListExpr(SourceLocation lbraceloc, |
| 264 | Expr **initexprs, unsigned numinits, |
| 265 | SourceLocation rbraceloc) |
Steve Naroff | 2e33547 | 2008-05-01 02:04:18 +0000 | [diff] [blame] | 266 | : Expr(InitListExprClass, QualType()), |
| 267 | LBraceLoc(lbraceloc), RBraceLoc(rbraceloc) |
Anders Carlsson | 762b7c7 | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 268 | { |
Anders Carlsson | 762b7c7 | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 269 | for (unsigned i = 0; i != numinits; i++) |
Steve Naroff | 2e33547 | 2008-05-01 02:04:18 +0000 | [diff] [blame] | 270 | InitExprs.push_back(initexprs[i]); |
Anders Carlsson | 762b7c7 | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 271 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 272 | |
| 273 | //===----------------------------------------------------------------------===// |
| 274 | // Generic Expression Routines |
| 275 | //===----------------------------------------------------------------------===// |
| 276 | |
| 277 | /// hasLocalSideEffect - Return true if this immediate expression has side |
| 278 | /// effects, not counting any sub-expressions. |
| 279 | bool 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 Lattner | ef95ffd | 2007-12-01 06:07:34 +0000 | [diff] [blame] | 308 | 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 Lattner | 06078d2 | 2007-08-25 02:00:02 +0000 | [diff] [blame] | 317 | case CompoundAssignOperatorClass: |
Chris Lattner | 9c0da3b | 2007-08-25 01:55:00 +0000 | [diff] [blame] | 318 | return true; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 319 | |
Fariborz Jahanian | 363c59b | 2007-12-01 19:58:28 +0000 | [diff] [blame] | 320 | 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 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 327 | 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 Friedman | 21fd029 | 2008-05-27 15:24:04 +0000 | [diff] [blame] | 332 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 333 | case CallExprClass: |
| 334 | // TODO: check attributes for pure/const. "void foo() { strlen("bar"); }" |
| 335 | // should warn. |
| 336 | return true; |
Chris Lattner | 99f5f0b | 2007-09-26 22:06:30 +0000 | [diff] [blame] | 337 | case ObjCMessageExprClass: |
| 338 | return true; |
Eli Friedman | 21fd029 | 2008-05-27 15:24:04 +0000 | [diff] [blame] | 339 | case StmtExprClass: |
| 340 | // TODO: check the inside of the statement expression |
| 341 | return true; |
| 342 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 343 | 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 Lattner | 3e254fb | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 349 | |
Eli Friedman | b924c7f | 2008-05-19 21:24:43 +0000 | [diff] [blame] | 350 | case ImplicitCastExprClass: |
| 351 | // Check the operand, since implicit casts are inserted by Sema |
| 352 | return cast<ImplicitCastExpr>(this)->getSubExpr()->hasLocalSideEffect(); |
| 353 | |
Chris Lattner | 3e254fb | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 354 | case CXXDefaultArgExprClass: |
| 355 | return cast<CXXDefaultArgExpr>(this)->getExpr()->hasLocalSideEffect(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 356 | } |
| 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 Lattner | 5bf7202 | 2007-10-30 22:53:42 +0000 | [diff] [blame] | 368 | /// - (__real__ e) and (__imag__ e) where e is an lvalue [GNU extension] |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 369 | /// - reference type [C++ [expr]] |
| 370 | /// |
| 371 | Expr::isLvalueResult Expr::isLvalue() const { |
| 372 | // first, check the type (C99 6.3.2.1) |
| 373 | if (TR->isFunctionType()) // from isObjectType() |
| 374 | return LV_NotObjectType; |
| 375 | |
Steve Naroff | ec7736d | 2008-02-10 01:39:04 +0000 | [diff] [blame] | 376 | // Allow qualified void which is an incomplete type other than void (yuck). |
Chris Lattner | 35fef52 | 2008-02-20 20:55:12 +0000 | [diff] [blame] | 377 | if (TR->isVoidType() && !TR.getCanonicalType().getCVRQualifiers()) |
Steve Naroff | ec7736d | 2008-02-10 01:39:04 +0000 | [diff] [blame] | 378 | return LV_IncompleteVoidType; |
| 379 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 380 | if (TR->isReferenceType()) // C++ [expr] |
| 381 | return LV_Valid; |
| 382 | |
| 383 | // the type looks fine, now check the expression |
| 384 | switch (getStmtClass()) { |
| 385 | case StringLiteralClass: // C99 6.5.1p4 |
Anders Carlsson | 9e933a2 | 2007-11-30 22:47:59 +0000 | [diff] [blame] | 386 | return LV_Valid; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 387 | 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; |
Chris Lattner | 8c7c6a1 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 392 | case DeclRefExprClass: { // C99 6.5.1p2 |
| 393 | const Decl *RefdDecl = cast<DeclRefExpr>(this)->getDecl(); |
| 394 | if (isa<VarDecl>(RefdDecl) || isa<ImplicitParamDecl>(RefdDecl)) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 395 | return LV_Valid; |
| 396 | break; |
Chris Lattner | 8c7c6a1 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 397 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 398 | case MemberExprClass: { // C99 6.5.2.3p4 |
| 399 | const MemberExpr *m = cast<MemberExpr>(this); |
| 400 | return m->isArrow() ? LV_Valid : m->getBase()->isLvalue(); |
| 401 | } |
Chris Lattner | 5bf7202 | 2007-10-30 22:53:42 +0000 | [diff] [blame] | 402 | case UnaryOperatorClass: |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 403 | if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Deref) |
Chris Lattner | 5bf7202 | 2007-10-30 22:53:42 +0000 | [diff] [blame] | 404 | return LV_Valid; // C99 6.5.3p4 |
| 405 | |
| 406 | if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Real || |
| 407 | cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Imag) |
| 408 | return cast<UnaryOperator>(this)->getSubExpr()->isLvalue(); // GNU. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 409 | break; |
| 410 | case ParenExprClass: // C99 6.5.1p5 |
| 411 | return cast<ParenExpr>(this)->getSubExpr()->isLvalue(); |
Steve Naroff | c7c6653 | 2007-12-05 04:00:10 +0000 | [diff] [blame] | 412 | case CompoundLiteralExprClass: // C99 6.5.2.5p5 |
| 413 | return LV_Valid; |
Nate Begeman | af6ed50 | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 414 | case ExtVectorElementExprClass: |
| 415 | if (cast<ExtVectorElementExpr>(this)->containsDuplicateElements()) |
Steve Naroff | ba67f69 | 2007-07-30 03:29:09 +0000 | [diff] [blame] | 416 | return LV_DuplicateVectorComponents; |
| 417 | return LV_Valid; |
Steve Naroff | 46f18f2 | 2007-11-12 14:34:27 +0000 | [diff] [blame] | 418 | case ObjCIvarRefExprClass: // ObjC instance variables are lvalues. |
| 419 | return LV_Valid; |
Steve Naroff | 8fff8ce | 2008-05-30 23:23:16 +0000 | [diff] [blame] | 420 | case ObjCPropertyRefExprClass: // FIXME: check if read-only property. |
| 421 | return LV_Valid; |
Chris Lattner | 7e63751 | 2008-01-12 08:14:25 +0000 | [diff] [blame] | 422 | case PreDefinedExprClass: |
Argiris Kirtzidis | 38f1671 | 2008-07-01 10:37:29 +0000 | [diff] [blame^] | 423 | return (cast<PreDefinedExpr>(this)->getIdentType() == PreDefinedExpr::CXXThis |
| 424 | ? LV_InvalidExpression |
| 425 | : LV_Valid); |
Chris Lattner | 3e254fb | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 426 | case CXXDefaultArgExprClass: |
| 427 | return cast<CXXDefaultArgExpr>(this)->getExpr()->isLvalue(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 428 | default: |
| 429 | break; |
| 430 | } |
| 431 | return LV_InvalidExpression; |
| 432 | } |
| 433 | |
| 434 | /// isModifiableLvalue - C99 6.3.2.1: an lvalue that does not have array type, |
| 435 | /// does not have an incomplete type, does not have a const-qualified type, and |
| 436 | /// if it is a structure or union, does not have any member (including, |
| 437 | /// recursively, any member or element of all contained aggregates or unions) |
| 438 | /// with a const-qualified type. |
| 439 | Expr::isModifiableLvalueResult Expr::isModifiableLvalue() const { |
| 440 | isLvalueResult lvalResult = isLvalue(); |
| 441 | |
| 442 | switch (lvalResult) { |
| 443 | case LV_Valid: break; |
| 444 | case LV_NotObjectType: return MLV_NotObjectType; |
| 445 | case LV_IncompleteVoidType: return MLV_IncompleteVoidType; |
Steve Naroff | ba67f69 | 2007-07-30 03:29:09 +0000 | [diff] [blame] | 446 | case LV_DuplicateVectorComponents: return MLV_DuplicateVectorComponents; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 447 | case LV_InvalidExpression: return MLV_InvalidExpression; |
| 448 | } |
| 449 | if (TR.isConstQualified()) |
| 450 | return MLV_ConstQualified; |
| 451 | if (TR->isArrayType()) |
| 452 | return MLV_ArrayType; |
| 453 | if (TR->isIncompleteType()) |
| 454 | return MLV_IncompleteType; |
| 455 | |
| 456 | if (const RecordType *r = dyn_cast<RecordType>(TR.getCanonicalType())) { |
| 457 | if (r->hasConstFields()) |
| 458 | return MLV_ConstQualified; |
| 459 | } |
| 460 | return MLV_Valid; |
| 461 | } |
| 462 | |
Ted Kremenek | 5778d62 | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 463 | /// hasGlobalStorage - Return true if this expression has static storage |
Chris Lattner | 743ec37 | 2007-11-27 21:35:27 +0000 | [diff] [blame] | 464 | /// duration. This means that the address of this expression is a link-time |
| 465 | /// constant. |
Ted Kremenek | 5778d62 | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 466 | bool Expr::hasGlobalStorage() const { |
Chris Lattner | ba3ddb2 | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 467 | switch (getStmtClass()) { |
| 468 | default: |
| 469 | return false; |
Chris Lattner | 743ec37 | 2007-11-27 21:35:27 +0000 | [diff] [blame] | 470 | case ParenExprClass: |
Ted Kremenek | 5778d62 | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 471 | return cast<ParenExpr>(this)->getSubExpr()->hasGlobalStorage(); |
Chris Lattner | 743ec37 | 2007-11-27 21:35:27 +0000 | [diff] [blame] | 472 | case ImplicitCastExprClass: |
Ted Kremenek | 5778d62 | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 473 | return cast<ImplicitCastExpr>(this)->getSubExpr()->hasGlobalStorage(); |
Steve Naroff | be37fc0 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 474 | case CompoundLiteralExprClass: |
| 475 | return cast<CompoundLiteralExpr>(this)->isFileScope(); |
Chris Lattner | ba3ddb2 | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 476 | case DeclRefExprClass: { |
| 477 | const Decl *D = cast<DeclRefExpr>(this)->getDecl(); |
| 478 | if (const VarDecl *VD = dyn_cast<VarDecl>(D)) |
Ted Kremenek | 5778d62 | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 479 | return VD->hasGlobalStorage(); |
Seo Sanghyeon | e330ae7 | 2008-04-04 09:45:30 +0000 | [diff] [blame] | 480 | if (isa<FunctionDecl>(D)) |
| 481 | return true; |
Chris Lattner | ba3ddb2 | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 482 | return false; |
| 483 | } |
Chris Lattner | db586bf | 2007-11-28 04:30:09 +0000 | [diff] [blame] | 484 | case MemberExprClass: { |
Chris Lattner | ba3ddb2 | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 485 | const MemberExpr *M = cast<MemberExpr>(this); |
Ted Kremenek | 5778d62 | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 486 | return !M->isArrow() && M->getBase()->hasGlobalStorage(); |
Chris Lattner | db586bf | 2007-11-28 04:30:09 +0000 | [diff] [blame] | 487 | } |
Chris Lattner | 743ec37 | 2007-11-27 21:35:27 +0000 | [diff] [blame] | 488 | case ArraySubscriptExprClass: |
Ted Kremenek | 5778d62 | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 489 | return cast<ArraySubscriptExpr>(this)->getBase()->hasGlobalStorage(); |
Chris Lattner | 7e63751 | 2008-01-12 08:14:25 +0000 | [diff] [blame] | 490 | case PreDefinedExprClass: |
| 491 | return true; |
Chris Lattner | 3e254fb | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 492 | case CXXDefaultArgExprClass: |
| 493 | return cast<CXXDefaultArgExpr>(this)->getExpr()->hasGlobalStorage(); |
Chris Lattner | ba3ddb2 | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 494 | } |
| 495 | } |
| 496 | |
Ted Kremenek | 87e30c5 | 2008-01-17 16:57:34 +0000 | [diff] [blame] | 497 | Expr* Expr::IgnoreParens() { |
| 498 | Expr* E = this; |
| 499 | while (ParenExpr* P = dyn_cast<ParenExpr>(E)) |
| 500 | E = P->getSubExpr(); |
| 501 | |
| 502 | return E; |
| 503 | } |
| 504 | |
Chris Lattner | 7a48d9c | 2008-02-13 01:02:39 +0000 | [diff] [blame] | 505 | /// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr |
| 506 | /// or CastExprs or ImplicitCastExprs, returning their operand. |
| 507 | Expr *Expr::IgnoreParenCasts() { |
| 508 | Expr *E = this; |
| 509 | while (true) { |
| 510 | if (ParenExpr *P = dyn_cast<ParenExpr>(E)) |
| 511 | E = P->getSubExpr(); |
| 512 | else if (CastExpr *P = dyn_cast<CastExpr>(E)) |
| 513 | E = P->getSubExpr(); |
| 514 | else if (ImplicitCastExpr *P = dyn_cast<ImplicitCastExpr>(E)) |
| 515 | E = P->getSubExpr(); |
| 516 | else |
| 517 | return E; |
| 518 | } |
| 519 | } |
| 520 | |
| 521 | |
Steve Naroff | 7c9d72d | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 522 | bool Expr::isConstantExpr(ASTContext &Ctx, SourceLocation *Loc) const { |
Steve Naroff | 7c9d72d | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 523 | switch (getStmtClass()) { |
| 524 | default: |
| 525 | if (Loc) *Loc = getLocStart(); |
| 526 | return false; |
| 527 | case ParenExprClass: |
| 528 | return cast<ParenExpr>(this)->getSubExpr()->isConstantExpr(Ctx, Loc); |
| 529 | case StringLiteralClass: |
Steve Naroff | 4fdea13 | 2007-11-09 15:00:03 +0000 | [diff] [blame] | 530 | case ObjCStringLiteralClass: |
Steve Naroff | 7c9d72d | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 531 | case FloatingLiteralClass: |
| 532 | case IntegerLiteralClass: |
| 533 | case CharacterLiteralClass: |
| 534 | case ImaginaryLiteralClass: |
Anders Carlsson | 855d78d | 2007-10-17 00:52:43 +0000 | [diff] [blame] | 535 | case TypesCompatibleExprClass: |
| 536 | case CXXBoolLiteralExprClass: |
Chris Lattner | 06db613 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 537 | return true; |
Steve Naroff | 7c9d72d | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 538 | case CallExprClass: { |
| 539 | const CallExpr *CE = cast<CallExpr>(this); |
Steve Naroff | 44aec4c | 2008-01-31 01:07:12 +0000 | [diff] [blame] | 540 | if (CE->isBuiltinConstantExpr()) |
| 541 | return true; |
Steve Naroff | 7c9d72d | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 542 | if (Loc) *Loc = getLocStart(); |
| 543 | return false; |
| 544 | } |
Chris Lattner | 42e86b6 | 2007-11-01 02:45:17 +0000 | [diff] [blame] | 545 | case DeclRefExprClass: { |
| 546 | const Decl *D = cast<DeclRefExpr>(this)->getDecl(); |
| 547 | // Accept address of function. |
| 548 | if (isa<EnumConstantDecl>(D) || isa<FunctionDecl>(D)) |
Chris Lattner | 06db613 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 549 | return true; |
Steve Naroff | 7c9d72d | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 550 | if (Loc) *Loc = getLocStart(); |
Chris Lattner | ba3ddb2 | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 551 | if (isa<VarDecl>(D)) |
| 552 | return TR->isArrayType(); |
Steve Naroff | 7c9d72d | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 553 | return false; |
Chris Lattner | 42e86b6 | 2007-11-01 02:45:17 +0000 | [diff] [blame] | 554 | } |
Steve Naroff | f91f972 | 2008-01-09 00:05:37 +0000 | [diff] [blame] | 555 | case CompoundLiteralExprClass: |
| 556 | if (Loc) *Loc = getLocStart(); |
| 557 | // Allow "(int []){2,4}", since the array will be converted to a pointer. |
Nate Begeman | c4e28e4 | 2008-01-25 05:34:48 +0000 | [diff] [blame] | 558 | // Allow "(vector type){2,4}" since the elements are all constant. |
| 559 | return TR->isArrayType() || TR->isVectorType(); |
Steve Naroff | 7c9d72d | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 560 | case UnaryOperatorClass: { |
| 561 | const UnaryOperator *Exp = cast<UnaryOperator>(this); |
| 562 | |
Chris Lattner | ba3ddb2 | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 563 | // C99 6.6p9 |
Chris Lattner | 35b662f | 2007-12-11 23:11:17 +0000 | [diff] [blame] | 564 | if (Exp->getOpcode() == UnaryOperator::AddrOf) { |
Ted Kremenek | 5778d62 | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 565 | if (!Exp->getSubExpr()->hasGlobalStorage()) { |
Chris Lattner | 35b662f | 2007-12-11 23:11:17 +0000 | [diff] [blame] | 566 | if (Loc) *Loc = getLocStart(); |
| 567 | return false; |
| 568 | } |
| 569 | return true; |
| 570 | } |
Chris Lattner | ba3ddb2 | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 571 | |
Steve Naroff | 7c9d72d | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 572 | // Get the operand value. If this is sizeof/alignof, do not evalute the |
| 573 | // operand. This affects C99 6.6p3. |
Steve Naroff | f0b2354 | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 574 | if (!Exp->isSizeOfAlignOfOp() && |
| 575 | Exp->getOpcode() != UnaryOperator::OffsetOf && |
Steve Naroff | 7c9d72d | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 576 | !Exp->getSubExpr()->isConstantExpr(Ctx, Loc)) |
| 577 | return false; |
| 578 | |
| 579 | switch (Exp->getOpcode()) { |
| 580 | // Address, indirect, pre/post inc/dec, etc are not valid constant exprs. |
| 581 | // See C99 6.6p3. |
| 582 | default: |
| 583 | if (Loc) *Loc = Exp->getOperatorLoc(); |
| 584 | return false; |
| 585 | case UnaryOperator::Extension: |
| 586 | return true; // FIXME: this is wrong. |
| 587 | case UnaryOperator::SizeOf: |
| 588 | case UnaryOperator::AlignOf: |
Steve Naroff | f0b2354 | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 589 | case UnaryOperator::OffsetOf: |
Steve Naroff | 7c9d72d | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 590 | // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2. |
Eli Friedman | 62f67fd | 2008-02-15 12:20:59 +0000 | [diff] [blame] | 591 | if (!Exp->getSubExpr()->getType()->isConstantSizeType()) { |
Chris Lattner | b3ff082 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 592 | if (Loc) *Loc = Exp->getOperatorLoc(); |
Steve Naroff | 7c9d72d | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 593 | return false; |
Chris Lattner | b3ff082 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 594 | } |
Chris Lattner | 06db613 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 595 | return true; |
Steve Naroff | 7c9d72d | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 596 | case UnaryOperator::LNot: |
| 597 | case UnaryOperator::Plus: |
| 598 | case UnaryOperator::Minus: |
| 599 | case UnaryOperator::Not: |
Chris Lattner | 06db613 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 600 | return true; |
Steve Naroff | 7c9d72d | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 601 | } |
Steve Naroff | 7c9d72d | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 602 | } |
| 603 | case SizeOfAlignOfTypeExprClass: { |
| 604 | const SizeOfAlignOfTypeExpr *Exp = cast<SizeOfAlignOfTypeExpr>(this); |
| 605 | // alignof always evaluates to a constant. |
Chris Lattner | 2051546 | 2008-02-21 05:45:29 +0000 | [diff] [blame] | 606 | if (Exp->isSizeOf() && !Exp->getArgumentType()->isVoidType() && |
| 607 | !Exp->getArgumentType()->isConstantSizeType()) { |
Chris Lattner | b3ff082 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 608 | if (Loc) *Loc = Exp->getOperatorLoc(); |
Steve Naroff | 7c9d72d | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 609 | return false; |
Chris Lattner | b3ff082 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 610 | } |
Chris Lattner | 06db613 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 611 | return true; |
Steve Naroff | 7c9d72d | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 612 | } |
| 613 | case BinaryOperatorClass: { |
| 614 | const BinaryOperator *Exp = cast<BinaryOperator>(this); |
| 615 | |
| 616 | // The LHS of a constant expr is always evaluated and needed. |
| 617 | if (!Exp->getLHS()->isConstantExpr(Ctx, Loc)) |
| 618 | return false; |
| 619 | |
| 620 | if (!Exp->getRHS()->isConstantExpr(Ctx, Loc)) |
| 621 | return false; |
Chris Lattner | 06db613 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 622 | return true; |
Steve Naroff | 7c9d72d | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 623 | } |
| 624 | case ImplicitCastExprClass: |
| 625 | case CastExprClass: { |
| 626 | const Expr *SubExpr; |
| 627 | SourceLocation CastLoc; |
| 628 | if (const CastExpr *C = dyn_cast<CastExpr>(this)) { |
| 629 | SubExpr = C->getSubExpr(); |
| 630 | CastLoc = C->getLParenLoc(); |
| 631 | } else { |
| 632 | SubExpr = cast<ImplicitCastExpr>(this)->getSubExpr(); |
| 633 | CastLoc = getLocStart(); |
| 634 | } |
| 635 | if (!SubExpr->isConstantExpr(Ctx, Loc)) { |
| 636 | if (Loc) *Loc = SubExpr->getLocStart(); |
| 637 | return false; |
| 638 | } |
Chris Lattner | 06db613 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 639 | return true; |
Steve Naroff | 7c9d72d | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 640 | } |
| 641 | case ConditionalOperatorClass: { |
| 642 | const ConditionalOperator *Exp = cast<ConditionalOperator>(this); |
Chris Lattner | 06db613 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 643 | if (!Exp->getCond()->isConstantExpr(Ctx, Loc) || |
Anders Carlsson | 37365fc | 2007-11-30 19:04:31 +0000 | [diff] [blame] | 644 | // Handle the GNU extension for missing LHS. |
| 645 | !(Exp->getLHS() && Exp->getLHS()->isConstantExpr(Ctx, Loc)) || |
Chris Lattner | 06db613 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 646 | !Exp->getRHS()->isConstantExpr(Ctx, Loc)) |
Steve Naroff | 7c9d72d | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 647 | return false; |
Chris Lattner | 06db613 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 648 | return true; |
Steve Naroff | 7c9d72d | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 649 | } |
Steve Naroff | f0b2354 | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 650 | case InitListExprClass: { |
| 651 | const InitListExpr *Exp = cast<InitListExpr>(this); |
| 652 | unsigned numInits = Exp->getNumInits(); |
| 653 | for (unsigned i = 0; i < numInits; i++) { |
| 654 | if (!Exp->getInit(i)->isConstantExpr(Ctx, Loc)) { |
| 655 | if (Loc) *Loc = Exp->getInit(i)->getLocStart(); |
| 656 | return false; |
| 657 | } |
| 658 | } |
| 659 | return true; |
Steve Naroff | 7c9d72d | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 660 | } |
Chris Lattner | 3e254fb | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 661 | case CXXDefaultArgExprClass: |
| 662 | return cast<CXXDefaultArgExpr>(this)->getExpr()->isConstantExpr(Ctx, Loc); |
Steve Naroff | f0b2354 | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 663 | } |
Steve Naroff | 7c9d72d | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 664 | } |
| 665 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 666 | /// isIntegerConstantExpr - this recursive routine will test if an expression is |
| 667 | /// an integer constant expression. Note: With the introduction of VLA's in |
| 668 | /// C99 the result of the sizeof operator is no longer always a constant |
| 669 | /// expression. The generalization of the wording to include any subexpression |
| 670 | /// that is not evaluated (C99 6.6p3) means that nonconstant subexpressions |
| 671 | /// can appear as operands to other operators (e.g. &&, ||, ?:). For instance, |
| 672 | /// "0 || f()" can be treated as a constant expression. In C90 this expression, |
| 673 | /// occurring in a context requiring a constant, would have been a constraint |
| 674 | /// violation. FIXME: This routine currently implements C90 semantics. |
| 675 | /// To properly implement C99 semantics this routine will need to evaluate |
| 676 | /// expressions involving operators previously mentioned. |
| 677 | |
| 678 | /// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero, |
| 679 | /// comma, etc |
| 680 | /// |
| 681 | /// FIXME: This should ext-warn on overflow during evaluation! ISO C does not |
Chris Lattner | 9d020b3 | 2007-09-26 00:47:26 +0000 | [diff] [blame] | 682 | /// permit this. This includes things like (int)1e1000 |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 683 | /// |
| 684 | /// FIXME: Handle offsetof. Two things to do: Handle GCC's __builtin_offsetof |
| 685 | /// to support gcc 4.0+ and handle the idiom GCC recognizes with a null pointer |
| 686 | /// cast+dereference. |
| 687 | bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx, |
| 688 | SourceLocation *Loc, bool isEvaluated) const { |
| 689 | switch (getStmtClass()) { |
| 690 | default: |
| 691 | if (Loc) *Loc = getLocStart(); |
| 692 | return false; |
| 693 | case ParenExprClass: |
| 694 | return cast<ParenExpr>(this)->getSubExpr()-> |
| 695 | isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated); |
| 696 | case IntegerLiteralClass: |
| 697 | Result = cast<IntegerLiteral>(this)->getValue(); |
| 698 | break; |
| 699 | case CharacterLiteralClass: { |
| 700 | const CharacterLiteral *CL = cast<CharacterLiteral>(this); |
Chris Lattner | 8cd0e93 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 701 | Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 702 | Result = CL->getValue(); |
| 703 | Result.setIsUnsigned(!getType()->isSignedIntegerType()); |
| 704 | break; |
| 705 | } |
Steve Naroff | c6f0fd3 | 2007-08-02 04:09:23 +0000 | [diff] [blame] | 706 | case TypesCompatibleExprClass: { |
| 707 | const TypesCompatibleExpr *TCE = cast<TypesCompatibleExpr>(this); |
Chris Lattner | 8cd0e93 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 708 | Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); |
Steve Naroff | 85f0dc5 | 2007-10-15 20:41:53 +0000 | [diff] [blame] | 709 | Result = Ctx.typesAreCompatible(TCE->getArgType1(), TCE->getArgType2()); |
Steve Naroff | 1200b5a | 2007-08-02 00:13:27 +0000 | [diff] [blame] | 710 | break; |
Steve Naroff | c6f0fd3 | 2007-08-02 04:09:23 +0000 | [diff] [blame] | 711 | } |
Steve Naroff | 8d3b170 | 2007-08-08 22:15:55 +0000 | [diff] [blame] | 712 | case CallExprClass: { |
| 713 | const CallExpr *CE = cast<CallExpr>(this); |
Chris Lattner | 8cd0e93 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 714 | Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); |
Steve Naroff | 8d3b170 | 2007-08-08 22:15:55 +0000 | [diff] [blame] | 715 | if (CE->isBuiltinClassifyType(Result)) |
| 716 | break; |
| 717 | if (Loc) *Loc = getLocStart(); |
| 718 | return false; |
| 719 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 720 | case DeclRefExprClass: |
| 721 | if (const EnumConstantDecl *D = |
| 722 | dyn_cast<EnumConstantDecl>(cast<DeclRefExpr>(this)->getDecl())) { |
| 723 | Result = D->getInitVal(); |
| 724 | break; |
| 725 | } |
| 726 | if (Loc) *Loc = getLocStart(); |
| 727 | return false; |
| 728 | case UnaryOperatorClass: { |
| 729 | const UnaryOperator *Exp = cast<UnaryOperator>(this); |
| 730 | |
| 731 | // Get the operand value. If this is sizeof/alignof, do not evalute the |
| 732 | // operand. This affects C99 6.6p3. |
Anders Carlsson | 52774ad | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 733 | if (!Exp->isSizeOfAlignOfOp() && !Exp->isOffsetOfOp() && |
Chris Lattner | 5a9b624 | 2007-08-23 21:42:50 +0000 | [diff] [blame] | 734 | !Exp->getSubExpr()->isIntegerConstantExpr(Result, Ctx, Loc,isEvaluated)) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 735 | return false; |
| 736 | |
| 737 | switch (Exp->getOpcode()) { |
| 738 | // Address, indirect, pre/post inc/dec, etc are not valid constant exprs. |
| 739 | // See C99 6.6p3. |
| 740 | default: |
| 741 | if (Loc) *Loc = Exp->getOperatorLoc(); |
| 742 | return false; |
| 743 | case UnaryOperator::Extension: |
| 744 | return true; // FIXME: this is wrong. |
| 745 | case UnaryOperator::SizeOf: |
| 746 | case UnaryOperator::AlignOf: |
Chris Lattner | 2051546 | 2008-02-21 05:45:29 +0000 | [diff] [blame] | 747 | // Return the result in the right width. |
Chris Lattner | 8cd0e93 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 748 | Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); |
Chris Lattner | 2051546 | 2008-02-21 05:45:29 +0000 | [diff] [blame] | 749 | |
| 750 | // sizeof(void) and __alignof__(void) = 1 as a gcc extension. |
| 751 | if (Exp->getSubExpr()->getType()->isVoidType()) { |
| 752 | Result = 1; |
| 753 | break; |
| 754 | } |
| 755 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 756 | // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2. |
Eli Friedman | 62f67fd | 2008-02-15 12:20:59 +0000 | [diff] [blame] | 757 | if (!Exp->getSubExpr()->getType()->isConstantSizeType()) { |
Chris Lattner | b3ff082 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 758 | if (Loc) *Loc = Exp->getOperatorLoc(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 759 | return false; |
Chris Lattner | b3ff082 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 760 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 761 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 762 | // Get information about the size or align. |
Chris Lattner | d4dc267 | 2008-01-02 21:54:09 +0000 | [diff] [blame] | 763 | if (Exp->getSubExpr()->getType()->isFunctionType()) { |
| 764 | // GCC extension: sizeof(function) = 1. |
| 765 | Result = Exp->getOpcode() == UnaryOperator::AlignOf ? 4 : 1; |
Chris Lattner | d9ffbc9 | 2007-11-27 18:22:04 +0000 | [diff] [blame] | 766 | } else { |
Chris Lattner | 8cd0e93 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 767 | unsigned CharSize = Ctx.Target.getCharWidth(); |
Anders Carlsson | 1f86b03 | 2008-02-18 07:10:45 +0000 | [diff] [blame] | 768 | if (Exp->getOpcode() == UnaryOperator::AlignOf) |
Chris Lattner | 8cd0e93 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 769 | Result = Ctx.getTypeAlign(Exp->getSubExpr()->getType()) / CharSize; |
Anders Carlsson | 1f86b03 | 2008-02-18 07:10:45 +0000 | [diff] [blame] | 770 | else |
Chris Lattner | 8cd0e93 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 771 | Result = Ctx.getTypeSize(Exp->getSubExpr()->getType()) / CharSize; |
Chris Lattner | d9ffbc9 | 2007-11-27 18:22:04 +0000 | [diff] [blame] | 772 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 773 | break; |
| 774 | case UnaryOperator::LNot: { |
Chris Lattner | f00fdc0 | 2008-01-25 19:16:19 +0000 | [diff] [blame] | 775 | bool Val = Result == 0; |
Chris Lattner | 8cd0e93 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 776 | Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 777 | Result = Val; |
| 778 | break; |
| 779 | } |
| 780 | case UnaryOperator::Plus: |
| 781 | break; |
| 782 | case UnaryOperator::Minus: |
| 783 | Result = -Result; |
| 784 | break; |
| 785 | case UnaryOperator::Not: |
| 786 | Result = ~Result; |
| 787 | break; |
Anders Carlsson | 52774ad | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 788 | case UnaryOperator::OffsetOf: |
| 789 | Result = Exp->evaluateOffsetOf(Ctx); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 790 | } |
| 791 | break; |
| 792 | } |
| 793 | case SizeOfAlignOfTypeExprClass: { |
| 794 | const SizeOfAlignOfTypeExpr *Exp = cast<SizeOfAlignOfTypeExpr>(this); |
Chris Lattner | 2051546 | 2008-02-21 05:45:29 +0000 | [diff] [blame] | 795 | |
| 796 | // Return the result in the right width. |
Chris Lattner | 8cd0e93 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 797 | Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); |
Chris Lattner | 2051546 | 2008-02-21 05:45:29 +0000 | [diff] [blame] | 798 | |
| 799 | // sizeof(void) and __alignof__(void) = 1 as a gcc extension. |
| 800 | if (Exp->getArgumentType()->isVoidType()) { |
| 801 | Result = 1; |
| 802 | break; |
| 803 | } |
| 804 | |
| 805 | // alignof always evaluates to a constant, sizeof does if arg is not VLA. |
Eli Friedman | 62f67fd | 2008-02-15 12:20:59 +0000 | [diff] [blame] | 806 | if (Exp->isSizeOf() && !Exp->getArgumentType()->isConstantSizeType()) { |
Chris Lattner | b3ff082 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 807 | if (Loc) *Loc = Exp->getOperatorLoc(); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 808 | return false; |
Chris Lattner | b3ff082 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 809 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 810 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 811 | // Get information about the size or align. |
Chris Lattner | d4dc267 | 2008-01-02 21:54:09 +0000 | [diff] [blame] | 812 | if (Exp->getArgumentType()->isFunctionType()) { |
| 813 | // GCC extension: sizeof(function) = 1. |
| 814 | Result = Exp->isSizeOf() ? 1 : 4; |
Anders Carlsson | 8d2b2b7 | 2008-02-16 01:20:23 +0000 | [diff] [blame] | 815 | } else { |
Chris Lattner | 8cd0e93 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 816 | unsigned CharSize = Ctx.Target.getCharWidth(); |
Anders Carlsson | 8d2b2b7 | 2008-02-16 01:20:23 +0000 | [diff] [blame] | 817 | if (Exp->isSizeOf()) |
Chris Lattner | 8cd0e93 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 818 | Result = Ctx.getTypeSize(Exp->getArgumentType()) / CharSize; |
Anders Carlsson | 8d2b2b7 | 2008-02-16 01:20:23 +0000 | [diff] [blame] | 819 | else |
Chris Lattner | 8cd0e93 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 820 | Result = Ctx.getTypeAlign(Exp->getArgumentType()) / CharSize; |
Ted Kremenek | a9d0fd9 | 2007-12-17 17:38:43 +0000 | [diff] [blame] | 821 | } |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 822 | break; |
| 823 | } |
| 824 | case BinaryOperatorClass: { |
| 825 | const BinaryOperator *Exp = cast<BinaryOperator>(this); |
| 826 | |
| 827 | // The LHS of a constant expr is always evaluated and needed. |
| 828 | if (!Exp->getLHS()->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated)) |
| 829 | return false; |
| 830 | |
| 831 | llvm::APSInt RHS(Result); |
| 832 | |
| 833 | // The short-circuiting &&/|| operators don't necessarily evaluate their |
| 834 | // RHS. Make sure to pass isEvaluated down correctly. |
| 835 | if (Exp->isLogicalOp()) { |
| 836 | bool RHSEval; |
| 837 | if (Exp->getOpcode() == BinaryOperator::LAnd) |
| 838 | RHSEval = Result != 0; |
| 839 | else { |
| 840 | assert(Exp->getOpcode() == BinaryOperator::LOr &&"Unexpected logical"); |
| 841 | RHSEval = Result == 0; |
| 842 | } |
| 843 | |
| 844 | if (!Exp->getRHS()->isIntegerConstantExpr(RHS, Ctx, Loc, |
| 845 | isEvaluated & RHSEval)) |
| 846 | return false; |
| 847 | } else { |
| 848 | if (!Exp->getRHS()->isIntegerConstantExpr(RHS, Ctx, Loc, isEvaluated)) |
| 849 | return false; |
| 850 | } |
| 851 | |
| 852 | switch (Exp->getOpcode()) { |
| 853 | default: |
| 854 | if (Loc) *Loc = getLocStart(); |
| 855 | return false; |
| 856 | case BinaryOperator::Mul: |
| 857 | Result *= RHS; |
| 858 | break; |
| 859 | case BinaryOperator::Div: |
| 860 | if (RHS == 0) { |
| 861 | if (!isEvaluated) break; |
| 862 | if (Loc) *Loc = getLocStart(); |
| 863 | return false; |
| 864 | } |
| 865 | Result /= RHS; |
| 866 | break; |
| 867 | case BinaryOperator::Rem: |
| 868 | if (RHS == 0) { |
| 869 | if (!isEvaluated) break; |
| 870 | if (Loc) *Loc = getLocStart(); |
| 871 | return false; |
| 872 | } |
| 873 | Result %= RHS; |
| 874 | break; |
| 875 | case BinaryOperator::Add: Result += RHS; break; |
| 876 | case BinaryOperator::Sub: Result -= RHS; break; |
| 877 | case BinaryOperator::Shl: |
Chris Lattner | 3496d52 | 2007-09-04 02:45:27 +0000 | [diff] [blame] | 878 | Result <<= |
| 879 | static_cast<uint32_t>(RHS.getLimitedValue(Result.getBitWidth()-1)); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 880 | break; |
| 881 | case BinaryOperator::Shr: |
Chris Lattner | 3496d52 | 2007-09-04 02:45:27 +0000 | [diff] [blame] | 882 | Result >>= |
| 883 | static_cast<uint32_t>(RHS.getLimitedValue(Result.getBitWidth()-1)); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 884 | break; |
| 885 | case BinaryOperator::LT: Result = Result < RHS; break; |
| 886 | case BinaryOperator::GT: Result = Result > RHS; break; |
| 887 | case BinaryOperator::LE: Result = Result <= RHS; break; |
| 888 | case BinaryOperator::GE: Result = Result >= RHS; break; |
| 889 | case BinaryOperator::EQ: Result = Result == RHS; break; |
| 890 | case BinaryOperator::NE: Result = Result != RHS; break; |
| 891 | case BinaryOperator::And: Result &= RHS; break; |
| 892 | case BinaryOperator::Xor: Result ^= RHS; break; |
| 893 | case BinaryOperator::Or: Result |= RHS; break; |
| 894 | case BinaryOperator::LAnd: |
| 895 | Result = Result != 0 && RHS != 0; |
| 896 | break; |
| 897 | case BinaryOperator::LOr: |
| 898 | Result = Result != 0 || RHS != 0; |
| 899 | break; |
| 900 | |
| 901 | case BinaryOperator::Comma: |
| 902 | // C99 6.6p3: "shall not contain assignment, ..., or comma operators, |
| 903 | // *except* when they are contained within a subexpression that is not |
| 904 | // evaluated". Note that Assignment can never happen due to constraints |
| 905 | // on the LHS subexpr, so we don't need to check it here. |
| 906 | if (isEvaluated) { |
| 907 | if (Loc) *Loc = getLocStart(); |
| 908 | return false; |
| 909 | } |
| 910 | |
| 911 | // The result of the constant expr is the RHS. |
| 912 | Result = RHS; |
| 913 | return true; |
| 914 | } |
| 915 | |
| 916 | assert(!Exp->isAssignmentOp() && "LHS can't be a constant expr!"); |
| 917 | break; |
| 918 | } |
| 919 | case ImplicitCastExprClass: |
| 920 | case CastExprClass: { |
| 921 | const Expr *SubExpr; |
| 922 | SourceLocation CastLoc; |
| 923 | if (const CastExpr *C = dyn_cast<CastExpr>(this)) { |
| 924 | SubExpr = C->getSubExpr(); |
| 925 | CastLoc = C->getLParenLoc(); |
| 926 | } else { |
| 927 | SubExpr = cast<ImplicitCastExpr>(this)->getSubExpr(); |
| 928 | CastLoc = getLocStart(); |
| 929 | } |
| 930 | |
| 931 | // C99 6.6p6: shall only convert arithmetic types to integer types. |
| 932 | if (!SubExpr->getType()->isArithmeticType() || |
| 933 | !getType()->isIntegerType()) { |
| 934 | if (Loc) *Loc = SubExpr->getLocStart(); |
Steve Naroff | 6e7c3b7 | 2008-06-03 22:06:04 +0000 | [diff] [blame] | 935 | // GCC accepts pointers as an extension. |
| 936 | // FIXME: check getLangOptions().NoExtensions. At the moment, it doesn't |
| 937 | // appear possible to get langOptions() from the Expr. |
| 938 | if (SubExpr->getType()->isPointerType()) // && !NoExtensions |
| 939 | return true; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 940 | return false; |
| 941 | } |
Chris Lattner | 76a0c1b | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 942 | |
Chris Lattner | 8cd0e93 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 943 | uint32_t DestWidth = static_cast<uint32_t>(Ctx.getTypeSize(getType())); |
Chris Lattner | 76a0c1b | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 944 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 945 | // Handle simple integer->integer casts. |
| 946 | if (SubExpr->getType()->isIntegerType()) { |
| 947 | if (!SubExpr->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated)) |
| 948 | return false; |
| 949 | |
| 950 | // Figure out if this is a truncate, extend or noop cast. |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 951 | // If the input is signed, do a sign extend, noop, or truncate. |
Chris Lattner | 000c410 | 2008-01-09 18:59:34 +0000 | [diff] [blame] | 952 | if (getType()->isBooleanType()) { |
| 953 | // Conversion to bool compares against zero. |
| 954 | Result = Result != 0; |
| 955 | Result.zextOrTrunc(DestWidth); |
| 956 | } else if (SubExpr->getType()->isSignedIntegerType()) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 957 | Result.sextOrTrunc(DestWidth); |
| 958 | else // If the input is unsigned, do a zero extend, noop, or truncate. |
| 959 | Result.zextOrTrunc(DestWidth); |
| 960 | break; |
| 961 | } |
| 962 | |
| 963 | // Allow floating constants that are the immediate operands of casts or that |
| 964 | // are parenthesized. |
| 965 | const Expr *Operand = SubExpr; |
| 966 | while (const ParenExpr *PE = dyn_cast<ParenExpr>(Operand)) |
| 967 | Operand = PE->getSubExpr(); |
Chris Lattner | 76a0c1b | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 968 | |
| 969 | // If this isn't a floating literal, we can't handle it. |
| 970 | const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(Operand); |
| 971 | if (!FL) { |
| 972 | if (Loc) *Loc = Operand->getLocStart(); |
| 973 | return false; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 974 | } |
Chris Lattner | 000c410 | 2008-01-09 18:59:34 +0000 | [diff] [blame] | 975 | |
| 976 | // If the destination is boolean, compare against zero. |
| 977 | if (getType()->isBooleanType()) { |
| 978 | Result = !FL->getValue().isZero(); |
| 979 | Result.zextOrTrunc(DestWidth); |
| 980 | break; |
| 981 | } |
Chris Lattner | 76a0c1b | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 982 | |
| 983 | // Determine whether we are converting to unsigned or signed. |
| 984 | bool DestSigned = getType()->isSignedIntegerType(); |
Chris Lattner | 9d020b3 | 2007-09-26 00:47:26 +0000 | [diff] [blame] | 985 | |
| 986 | // TODO: Warn on overflow, but probably not here: isIntegerConstantExpr can |
| 987 | // be called multiple times per AST. |
Chris Lattner | 76a0c1b | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 988 | uint64_t Space[4]; |
Chris Lattner | 9d020b3 | 2007-09-26 00:47:26 +0000 | [diff] [blame] | 989 | (void)FL->getValue().convertToInteger(Space, DestWidth, DestSigned, |
| 990 | llvm::APFloat::rmTowardZero); |
Chris Lattner | 76a0c1b | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 991 | Result = llvm::APInt(DestWidth, 4, Space); |
| 992 | break; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 993 | } |
| 994 | case ConditionalOperatorClass: { |
| 995 | const ConditionalOperator *Exp = cast<ConditionalOperator>(this); |
| 996 | |
| 997 | if (!Exp->getCond()->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated)) |
| 998 | return false; |
| 999 | |
| 1000 | const Expr *TrueExp = Exp->getLHS(); |
| 1001 | const Expr *FalseExp = Exp->getRHS(); |
| 1002 | if (Result == 0) std::swap(TrueExp, FalseExp); |
| 1003 | |
| 1004 | // Evaluate the false one first, discard the result. |
Anders Carlsson | 37365fc | 2007-11-30 19:04:31 +0000 | [diff] [blame] | 1005 | if (FalseExp && !FalseExp->isIntegerConstantExpr(Result, Ctx, Loc, false)) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1006 | return false; |
| 1007 | // Evalute the true one, capture the result. |
Anders Carlsson | 37365fc | 2007-11-30 19:04:31 +0000 | [diff] [blame] | 1008 | if (TrueExp && |
| 1009 | !TrueExp->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated)) |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1010 | return false; |
| 1011 | break; |
| 1012 | } |
Chris Lattner | 3e254fb | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 1013 | case CXXDefaultArgExprClass: |
| 1014 | return cast<CXXDefaultArgExpr>(this) |
| 1015 | ->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1016 | } |
| 1017 | |
| 1018 | // Cases that are valid constant exprs fall through to here. |
| 1019 | Result.setIsUnsigned(getType()->isUnsignedIntegerType()); |
| 1020 | return true; |
| 1021 | } |
| 1022 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1023 | /// isNullPointerConstant - C99 6.3.2.3p3 - Return true if this is either an |
| 1024 | /// integer constant expression with the value zero, or if this is one that is |
| 1025 | /// cast to void*. |
| 1026 | bool Expr::isNullPointerConstant(ASTContext &Ctx) const { |
Steve Naroff | a2e5322 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 1027 | // Strip off a cast to void*, if it exists. |
| 1028 | if (const CastExpr *CE = dyn_cast<CastExpr>(this)) { |
| 1029 | // Check that it is a cast to void*. |
Eli Friedman | d899dbe | 2008-02-13 17:29:58 +0000 | [diff] [blame] | 1030 | if (const PointerType *PT = CE->getType()->getAsPointerType()) { |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1031 | QualType Pointee = PT->getPointeeType(); |
Chris Lattner | 35fef52 | 2008-02-20 20:55:12 +0000 | [diff] [blame] | 1032 | if (Pointee.getCVRQualifiers() == 0 && |
| 1033 | Pointee->isVoidType() && // to void* |
Steve Naroff | a2e5322 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 1034 | CE->getSubExpr()->getType()->isIntegerType()) // from int. |
| 1035 | return CE->getSubExpr()->isNullPointerConstant(Ctx); |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1036 | } |
Steve Naroff | a2e5322 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 1037 | } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) { |
| 1038 | // Ignore the ImplicitCastExpr type entirely. |
| 1039 | return ICE->getSubExpr()->isNullPointerConstant(Ctx); |
| 1040 | } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) { |
| 1041 | // Accept ((void*)0) as a null pointer constant, as many other |
| 1042 | // implementations do. |
| 1043 | return PE->getSubExpr()->isNullPointerConstant(Ctx); |
Chris Lattner | 97316c0 | 2008-04-10 02:22:51 +0000 | [diff] [blame] | 1044 | } else if (const CXXDefaultArgExpr *DefaultArg |
| 1045 | = dyn_cast<CXXDefaultArgExpr>(this)) { |
Chris Lattner | 3e254fb | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 1046 | // See through default argument expressions |
| 1047 | return DefaultArg->getExpr()->isNullPointerConstant(Ctx); |
Steve Naroff | f33a985 | 2008-01-14 02:53:34 +0000 | [diff] [blame] | 1048 | } |
Steve Naroff | a2e5322 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 1049 | |
| 1050 | // This expression must be an integer type. |
| 1051 | if (!getType()->isIntegerType()) |
| 1052 | return false; |
| 1053 | |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1054 | // If we have an integer constant expression, we need to *evaluate* it and |
| 1055 | // test for the value 0. |
| 1056 | llvm::APSInt Val(32); |
Steve Naroff | a2e5322 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 1057 | return isIntegerConstantExpr(Val, Ctx, 0, true) && Val == 0; |
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1058 | } |
Steve Naroff | c11705f | 2007-07-28 23:10:27 +0000 | [diff] [blame] | 1059 | |
Nate Begeman | af6ed50 | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1060 | unsigned ExtVectorElementExpr::getNumElements() const { |
Nate Begeman | c8e51f8 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1061 | if (const VectorType *VT = getType()->getAsVectorType()) |
| 1062 | return VT->getNumElements(); |
| 1063 | return 1; |
Chris Lattner | 5054785 | 2007-08-03 16:00:20 +0000 | [diff] [blame] | 1064 | } |
| 1065 | |
Nate Begeman | c8e51f8 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1066 | /// containsDuplicateElements - Return true if any element access is repeated. |
Nate Begeman | af6ed50 | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1067 | bool ExtVectorElementExpr::containsDuplicateElements() const { |
Steve Naroff | ba67f69 | 2007-07-30 03:29:09 +0000 | [diff] [blame] | 1068 | const char *compStr = Accessor.getName(); |
| 1069 | unsigned length = strlen(compStr); |
| 1070 | |
| 1071 | for (unsigned i = 0; i < length-1; i++) { |
| 1072 | const char *s = compStr+i; |
| 1073 | for (const char c = *s++; *s; s++) |
| 1074 | if (c == *s) |
| 1075 | return true; |
| 1076 | } |
| 1077 | return false; |
| 1078 | } |
Chris Lattner | 42158e7 | 2007-08-02 23:36:59 +0000 | [diff] [blame] | 1079 | |
Nate Begeman | c8e51f8 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1080 | /// getEncodedElementAccess - We encode the fields as a llvm ConstantArray. |
Nate Begeman | a1ae744 | 2008-05-13 21:03:02 +0000 | [diff] [blame] | 1081 | void ExtVectorElementExpr::getEncodedElementAccess( |
| 1082 | llvm::SmallVectorImpl<unsigned> &Elts) const { |
Chris Lattner | 42158e7 | 2007-08-02 23:36:59 +0000 | [diff] [blame] | 1083 | const char *compStr = Accessor.getName(); |
Nate Begeman | c8e51f8 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1084 | |
| 1085 | bool isHi = !strcmp(compStr, "hi"); |
| 1086 | bool isLo = !strcmp(compStr, "lo"); |
| 1087 | bool isEven = !strcmp(compStr, "e"); |
| 1088 | bool isOdd = !strcmp(compStr, "o"); |
| 1089 | |
| 1090 | for (unsigned i = 0, e = getNumElements(); i != e; ++i) { |
| 1091 | uint64_t Index; |
| 1092 | |
| 1093 | if (isHi) |
| 1094 | Index = e + i; |
| 1095 | else if (isLo) |
| 1096 | Index = i; |
| 1097 | else if (isEven) |
| 1098 | Index = 2 * i; |
| 1099 | else if (isOdd) |
| 1100 | Index = 2 * i + 1; |
| 1101 | else |
| 1102 | Index = ExtVectorType::getAccessorIdx(compStr[i]); |
Chris Lattner | 42158e7 | 2007-08-02 23:36:59 +0000 | [diff] [blame] | 1103 | |
Nate Begeman | a1ae744 | 2008-05-13 21:03:02 +0000 | [diff] [blame] | 1104 | Elts.push_back(Index); |
Chris Lattner | 42158e7 | 2007-08-02 23:36:59 +0000 | [diff] [blame] | 1105 | } |
Nate Begeman | c8e51f8 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1106 | } |
| 1107 | |
Steve Naroff | 4ed9d66 | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1108 | // constructor for instance messages. |
Steve Naroff | 6cb1d36 | 2007-09-28 22:22:11 +0000 | [diff] [blame] | 1109 | ObjCMessageExpr::ObjCMessageExpr(Expr *receiver, Selector selInfo, |
Ted Kremenek | 42730c5 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1110 | QualType retType, ObjCMethodDecl *mproto, |
Steve Naroff | 1e1c391 | 2007-11-03 16:37:59 +0000 | [diff] [blame] | 1111 | SourceLocation LBrac, SourceLocation RBrac, |
Steve Naroff | 9f176d1 | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1112 | Expr **ArgExprs, unsigned nargs) |
Steve Naroff | 1e1c391 | 2007-11-03 16:37:59 +0000 | [diff] [blame] | 1113 | : Expr(ObjCMessageExprClass, retType), SelName(selInfo), |
Ted Kremenek | d029a6f | 2008-05-01 17:26:20 +0000 | [diff] [blame] | 1114 | MethodProto(mproto) { |
Steve Naroff | 9f176d1 | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1115 | NumArgs = nargs; |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1116 | SubExprs = new Stmt*[NumArgs+1]; |
Steve Naroff | 4ed9d66 | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1117 | SubExprs[RECEIVER] = receiver; |
Steve Naroff | 9f176d1 | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1118 | if (NumArgs) { |
| 1119 | for (unsigned i = 0; i != NumArgs; ++i) |
Steve Naroff | 4ed9d66 | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1120 | SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]); |
| 1121 | } |
Steve Naroff | c39ca26 | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 1122 | LBracloc = LBrac; |
| 1123 | RBracloc = RBrac; |
| 1124 | } |
| 1125 | |
Steve Naroff | 4ed9d66 | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1126 | // constructor for class messages. |
| 1127 | // FIXME: clsName should be typed to ObjCInterfaceType |
Steve Naroff | 6cb1d36 | 2007-09-28 22:22:11 +0000 | [diff] [blame] | 1128 | ObjCMessageExpr::ObjCMessageExpr(IdentifierInfo *clsName, Selector selInfo, |
Ted Kremenek | 42730c5 | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1129 | QualType retType, ObjCMethodDecl *mproto, |
Steve Naroff | 1e1c391 | 2007-11-03 16:37:59 +0000 | [diff] [blame] | 1130 | SourceLocation LBrac, SourceLocation RBrac, |
Steve Naroff | 9f176d1 | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1131 | Expr **ArgExprs, unsigned nargs) |
Steve Naroff | 1e1c391 | 2007-11-03 16:37:59 +0000 | [diff] [blame] | 1132 | : Expr(ObjCMessageExprClass, retType), SelName(selInfo), |
Ted Kremenek | d029a6f | 2008-05-01 17:26:20 +0000 | [diff] [blame] | 1133 | MethodProto(mproto) { |
Steve Naroff | 9f176d1 | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1134 | NumArgs = nargs; |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1135 | SubExprs = new Stmt*[NumArgs+1]; |
Ted Kremenek | ee2c9fd | 2008-06-24 15:50:53 +0000 | [diff] [blame] | 1136 | SubExprs[RECEIVER] = (Expr*) ((uintptr_t) clsName | IsClsMethDeclUnknown); |
Steve Naroff | 9f176d1 | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1137 | if (NumArgs) { |
| 1138 | for (unsigned i = 0; i != NumArgs; ++i) |
Steve Naroff | 4ed9d66 | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1139 | SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]); |
| 1140 | } |
Steve Naroff | c39ca26 | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 1141 | LBracloc = LBrac; |
| 1142 | RBracloc = RBrac; |
| 1143 | } |
| 1144 | |
Ted Kremenek | ee2c9fd | 2008-06-24 15:50:53 +0000 | [diff] [blame] | 1145 | // constructor for class messages. |
| 1146 | ObjCMessageExpr::ObjCMessageExpr(ObjCInterfaceDecl *cls, Selector selInfo, |
| 1147 | QualType retType, ObjCMethodDecl *mproto, |
| 1148 | SourceLocation LBrac, SourceLocation RBrac, |
| 1149 | Expr **ArgExprs, unsigned nargs) |
| 1150 | : Expr(ObjCMessageExprClass, retType), SelName(selInfo), |
| 1151 | MethodProto(mproto) { |
| 1152 | NumArgs = nargs; |
| 1153 | SubExprs = new Stmt*[NumArgs+1]; |
| 1154 | SubExprs[RECEIVER] = (Expr*) ((uintptr_t) cls | IsClsMethDeclKnown); |
| 1155 | if (NumArgs) { |
| 1156 | for (unsigned i = 0; i != NumArgs; ++i) |
| 1157 | SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]); |
| 1158 | } |
| 1159 | LBracloc = LBrac; |
| 1160 | RBracloc = RBrac; |
| 1161 | } |
| 1162 | |
| 1163 | ObjCMessageExpr::ClassInfo ObjCMessageExpr::getClassInfo() const { |
| 1164 | uintptr_t x = (uintptr_t) SubExprs[RECEIVER]; |
| 1165 | switch (x & Flags) { |
| 1166 | default: |
| 1167 | assert(false && "Invalid ObjCMessageExpr."); |
| 1168 | case IsInstMeth: |
| 1169 | return ClassInfo(0, 0); |
| 1170 | case IsClsMethDeclUnknown: |
| 1171 | return ClassInfo(0, (IdentifierInfo*) (x & ~Flags)); |
| 1172 | case IsClsMethDeclKnown: { |
| 1173 | ObjCInterfaceDecl* D = (ObjCInterfaceDecl*) (x & ~Flags); |
| 1174 | return ClassInfo(D, D->getIdentifier()); |
| 1175 | } |
| 1176 | } |
| 1177 | } |
| 1178 | |
Chris Lattner | f624cd2 | 2007-10-25 00:29:32 +0000 | [diff] [blame] | 1179 | bool ChooseExpr::isConditionTrue(ASTContext &C) const { |
| 1180 | llvm::APSInt CondVal(32); |
| 1181 | bool IsConst = getCond()->isIntegerConstantExpr(CondVal, C); |
| 1182 | assert(IsConst && "Condition of choose expr must be i-c-e"); IsConst=IsConst; |
| 1183 | return CondVal != 0; |
| 1184 | } |
| 1185 | |
Anders Carlsson | 52774ad | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1186 | static int64_t evaluateOffsetOf(ASTContext& C, const Expr *E) |
| 1187 | { |
| 1188 | if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) { |
| 1189 | QualType Ty = ME->getBase()->getType(); |
| 1190 | |
| 1191 | RecordDecl *RD = Ty->getAsRecordType()->getDecl(); |
Chris Lattner | 8cd0e93 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1192 | const ASTRecordLayout &RL = C.getASTRecordLayout(RD); |
Anders Carlsson | 52774ad | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1193 | FieldDecl *FD = ME->getMemberDecl(); |
| 1194 | |
| 1195 | // FIXME: This is linear time. |
| 1196 | unsigned i = 0, e = 0; |
| 1197 | for (i = 0, e = RD->getNumMembers(); i != e; i++) { |
| 1198 | if (RD->getMember(i) == FD) |
| 1199 | break; |
| 1200 | } |
| 1201 | |
| 1202 | return RL.getFieldOffset(i) + evaluateOffsetOf(C, ME->getBase()); |
| 1203 | } else if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E)) { |
| 1204 | const Expr *Base = ASE->getBase(); |
| 1205 | llvm::APSInt Idx(32); |
| 1206 | bool ICE = ASE->getIdx()->isIntegerConstantExpr(Idx, C); |
| 1207 | assert(ICE && "Array index is not a constant integer!"); |
| 1208 | |
Chris Lattner | 8cd0e93 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1209 | int64_t size = C.getTypeSize(ASE->getType()); |
Anders Carlsson | 52774ad | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1210 | size *= Idx.getSExtValue(); |
| 1211 | |
| 1212 | return size + evaluateOffsetOf(C, Base); |
| 1213 | } else if (isa<CompoundLiteralExpr>(E)) |
| 1214 | return 0; |
| 1215 | |
| 1216 | assert(0 && "Unknown offsetof subexpression!"); |
| 1217 | return 0; |
| 1218 | } |
| 1219 | |
| 1220 | int64_t UnaryOperator::evaluateOffsetOf(ASTContext& C) const |
| 1221 | { |
| 1222 | assert(Opc == OffsetOf && "Unary operator not offsetof!"); |
| 1223 | |
Chris Lattner | 8cd0e93 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1224 | unsigned CharSize = C.Target.getCharWidth(); |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1225 | return ::evaluateOffsetOf(C, cast<Expr>(Val)) / CharSize; |
Anders Carlsson | 52774ad | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1226 | } |
| 1227 | |
Ted Kremenek | e4acb9c | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1228 | //===----------------------------------------------------------------------===// |
| 1229 | // Child Iterators for iterating over subexpressions/substatements |
| 1230 | //===----------------------------------------------------------------------===// |
| 1231 | |
| 1232 | // DeclRefExpr |
Ted Kremenek | a647855 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1233 | Stmt::child_iterator DeclRefExpr::child_begin() { return child_iterator(); } |
| 1234 | Stmt::child_iterator DeclRefExpr::child_end() { return child_iterator(); } |
Ted Kremenek | e4acb9c | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1235 | |
Steve Naroff | 5eb2a4a | 2007-11-12 14:29:37 +0000 | [diff] [blame] | 1236 | // ObjCIvarRefExpr |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1237 | Stmt::child_iterator ObjCIvarRefExpr::child_begin() { return &Base; } |
| 1238 | Stmt::child_iterator ObjCIvarRefExpr::child_end() { return &Base+1; } |
Steve Naroff | 5eb2a4a | 2007-11-12 14:29:37 +0000 | [diff] [blame] | 1239 | |
Steve Naroff | 6f78625 | 2008-06-02 23:03:37 +0000 | [diff] [blame] | 1240 | // ObjCPropertyRefExpr |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1241 | Stmt::child_iterator ObjCPropertyRefExpr::child_begin() { return &Base; } |
| 1242 | Stmt::child_iterator ObjCPropertyRefExpr::child_end() { return &Base+1; } |
Steve Naroff | 05391d2 | 2008-05-30 00:40:33 +0000 | [diff] [blame] | 1243 | |
Steve Naroff | 6f78625 | 2008-06-02 23:03:37 +0000 | [diff] [blame] | 1244 | // ObjCSuperRefExpr |
| 1245 | Stmt::child_iterator ObjCSuperRefExpr::child_begin() { return child_iterator();} |
| 1246 | Stmt::child_iterator ObjCSuperRefExpr::child_end() { return child_iterator(); } |
| 1247 | |
Ted Kremenek | e4acb9c | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1248 | // PreDefinedExpr |
Ted Kremenek | a647855 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1249 | Stmt::child_iterator PreDefinedExpr::child_begin() { return child_iterator(); } |
| 1250 | Stmt::child_iterator PreDefinedExpr::child_end() { return child_iterator(); } |
Ted Kremenek | e4acb9c | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1251 | |
| 1252 | // IntegerLiteral |
Ted Kremenek | a647855 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1253 | Stmt::child_iterator IntegerLiteral::child_begin() { return child_iterator(); } |
| 1254 | Stmt::child_iterator IntegerLiteral::child_end() { return child_iterator(); } |
Ted Kremenek | e4acb9c | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1255 | |
| 1256 | // CharacterLiteral |
Ted Kremenek | a647855 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1257 | Stmt::child_iterator CharacterLiteral::child_begin() { return child_iterator(); } |
| 1258 | Stmt::child_iterator CharacterLiteral::child_end() { return child_iterator(); } |
Ted Kremenek | e4acb9c | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1259 | |
| 1260 | // FloatingLiteral |
Ted Kremenek | a647855 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1261 | Stmt::child_iterator FloatingLiteral::child_begin() { return child_iterator(); } |
| 1262 | Stmt::child_iterator FloatingLiteral::child_end() { return child_iterator(); } |
Ted Kremenek | e4acb9c | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1263 | |
Chris Lattner | 1de66eb | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1264 | // ImaginaryLiteral |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1265 | Stmt::child_iterator ImaginaryLiteral::child_begin() { return &Val; } |
| 1266 | Stmt::child_iterator ImaginaryLiteral::child_end() { return &Val+1; } |
Chris Lattner | 1de66eb | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1267 | |
Ted Kremenek | e4acb9c | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1268 | // StringLiteral |
Ted Kremenek | a647855 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1269 | Stmt::child_iterator StringLiteral::child_begin() { return child_iterator(); } |
| 1270 | Stmt::child_iterator StringLiteral::child_end() { return child_iterator(); } |
Ted Kremenek | e4acb9c | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1271 | |
| 1272 | // ParenExpr |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1273 | Stmt::child_iterator ParenExpr::child_begin() { return &Val; } |
| 1274 | Stmt::child_iterator ParenExpr::child_end() { return &Val+1; } |
Ted Kremenek | e4acb9c | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1275 | |
| 1276 | // UnaryOperator |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1277 | Stmt::child_iterator UnaryOperator::child_begin() { return &Val; } |
| 1278 | Stmt::child_iterator UnaryOperator::child_end() { return &Val+1; } |
Ted Kremenek | e4acb9c | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1279 | |
| 1280 | // SizeOfAlignOfTypeExpr |
Ted Kremenek | a647855 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1281 | Stmt::child_iterator SizeOfAlignOfTypeExpr::child_begin() { |
Ted Kremenek | b7cf095 | 2007-12-14 22:52:23 +0000 | [diff] [blame] | 1282 | // If the type is a VLA type (and not a typedef), the size expression of the |
| 1283 | // VLA needs to be treated as an executable expression. |
| 1284 | if (VariableArrayType* T = dyn_cast<VariableArrayType>(Ty.getTypePtr())) |
| 1285 | return child_iterator(T); |
| 1286 | else |
| 1287 | return child_iterator(); |
Ted Kremenek | a647855 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1288 | } |
| 1289 | Stmt::child_iterator SizeOfAlignOfTypeExpr::child_end() { |
Ted Kremenek | b7cf095 | 2007-12-14 22:52:23 +0000 | [diff] [blame] | 1290 | return child_iterator(); |
Ted Kremenek | a647855 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1291 | } |
Ted Kremenek | e4acb9c | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1292 | |
| 1293 | // ArraySubscriptExpr |
Ted Kremenek | 9fdc8a9 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1294 | Stmt::child_iterator ArraySubscriptExpr::child_begin() { |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1295 | return &SubExprs[0]; |
Ted Kremenek | e4acb9c | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1296 | } |
Ted Kremenek | 9fdc8a9 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1297 | Stmt::child_iterator ArraySubscriptExpr::child_end() { |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1298 | return &SubExprs[0]+END_EXPR; |
Ted Kremenek | e4acb9c | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1299 | } |
| 1300 | |
| 1301 | // CallExpr |
Ted Kremenek | 9fdc8a9 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1302 | Stmt::child_iterator CallExpr::child_begin() { |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1303 | return &SubExprs[0]; |
Ted Kremenek | e4acb9c | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1304 | } |
Ted Kremenek | 9fdc8a9 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1305 | Stmt::child_iterator CallExpr::child_end() { |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1306 | return &SubExprs[0]+NumArgs+ARGS_START; |
Ted Kremenek | e4acb9c | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1307 | } |
Ted Kremenek | 9fdc8a9 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1308 | |
| 1309 | // MemberExpr |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1310 | Stmt::child_iterator MemberExpr::child_begin() { return &Base; } |
| 1311 | Stmt::child_iterator MemberExpr::child_end() { return &Base+1; } |
Ted Kremenek | 9fdc8a9 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1312 | |
Nate Begeman | af6ed50 | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1313 | // ExtVectorElementExpr |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1314 | Stmt::child_iterator ExtVectorElementExpr::child_begin() { return &Base; } |
| 1315 | Stmt::child_iterator ExtVectorElementExpr::child_end() { return &Base+1; } |
Ted Kremenek | 9fdc8a9 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1316 | |
| 1317 | // CompoundLiteralExpr |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1318 | Stmt::child_iterator CompoundLiteralExpr::child_begin() { return &Init; } |
| 1319 | Stmt::child_iterator CompoundLiteralExpr::child_end() { return &Init+1; } |
Ted Kremenek | 9fdc8a9 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1320 | |
| 1321 | // ImplicitCastExpr |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1322 | Stmt::child_iterator ImplicitCastExpr::child_begin() { return &Op; } |
| 1323 | Stmt::child_iterator ImplicitCastExpr::child_end() { return &Op+1; } |
Ted Kremenek | 9fdc8a9 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1324 | |
| 1325 | // CastExpr |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1326 | Stmt::child_iterator CastExpr::child_begin() { return &Op; } |
| 1327 | Stmt::child_iterator CastExpr::child_end() { return &Op+1; } |
Ted Kremenek | 9fdc8a9 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1328 | |
| 1329 | // BinaryOperator |
| 1330 | Stmt::child_iterator BinaryOperator::child_begin() { |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1331 | return &SubExprs[0]; |
Ted Kremenek | 9fdc8a9 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1332 | } |
Ted Kremenek | 9fdc8a9 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1333 | Stmt::child_iterator BinaryOperator::child_end() { |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1334 | return &SubExprs[0]+END_EXPR; |
Ted Kremenek | 9fdc8a9 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1335 | } |
| 1336 | |
| 1337 | // ConditionalOperator |
| 1338 | Stmt::child_iterator ConditionalOperator::child_begin() { |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1339 | return &SubExprs[0]; |
Ted Kremenek | 9fdc8a9 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1340 | } |
Ted Kremenek | 9fdc8a9 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1341 | Stmt::child_iterator ConditionalOperator::child_end() { |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1342 | return &SubExprs[0]+END_EXPR; |
Ted Kremenek | 9fdc8a9 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1343 | } |
| 1344 | |
| 1345 | // AddrLabelExpr |
Ted Kremenek | a647855 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1346 | Stmt::child_iterator AddrLabelExpr::child_begin() { return child_iterator(); } |
| 1347 | Stmt::child_iterator AddrLabelExpr::child_end() { return child_iterator(); } |
Ted Kremenek | 9fdc8a9 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1348 | |
Ted Kremenek | 9fdc8a9 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1349 | // StmtExpr |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1350 | Stmt::child_iterator StmtExpr::child_begin() { return &SubStmt; } |
| 1351 | Stmt::child_iterator StmtExpr::child_end() { return &SubStmt+1; } |
Ted Kremenek | 9fdc8a9 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1352 | |
| 1353 | // TypesCompatibleExpr |
Ted Kremenek | a647855 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1354 | Stmt::child_iterator TypesCompatibleExpr::child_begin() { |
| 1355 | return child_iterator(); |
| 1356 | } |
| 1357 | |
| 1358 | Stmt::child_iterator TypesCompatibleExpr::child_end() { |
| 1359 | return child_iterator(); |
| 1360 | } |
Ted Kremenek | 9fdc8a9 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1361 | |
| 1362 | // ChooseExpr |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1363 | Stmt::child_iterator ChooseExpr::child_begin() { return &SubExprs[0]; } |
| 1364 | Stmt::child_iterator ChooseExpr::child_end() { return &SubExprs[0]+END_EXPR; } |
Ted Kremenek | 9fdc8a9 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1365 | |
Nate Begeman | 9f3bfb7 | 2008-01-17 17:46:27 +0000 | [diff] [blame] | 1366 | // OverloadExpr |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1367 | Stmt::child_iterator OverloadExpr::child_begin() { return &SubExprs[0]; } |
| 1368 | Stmt::child_iterator OverloadExpr::child_end() { return &SubExprs[0]+NumExprs; } |
Nate Begeman | 9f3bfb7 | 2008-01-17 17:46:27 +0000 | [diff] [blame] | 1369 | |
Eli Friedman | d0e9d09 | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 1370 | // ShuffleVectorExpr |
| 1371 | Stmt::child_iterator ShuffleVectorExpr::child_begin() { |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1372 | return &SubExprs[0]; |
Eli Friedman | d0e9d09 | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 1373 | } |
| 1374 | Stmt::child_iterator ShuffleVectorExpr::child_end() { |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1375 | return &SubExprs[0]+NumExprs; |
Eli Friedman | d0e9d09 | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 1376 | } |
| 1377 | |
Anders Carlsson | 3676033 | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 1378 | // VAArgExpr |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1379 | Stmt::child_iterator VAArgExpr::child_begin() { return &Val; } |
| 1380 | Stmt::child_iterator VAArgExpr::child_end() { return &Val+1; } |
Anders Carlsson | 3676033 | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 1381 | |
Anders Carlsson | 762b7c7 | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 1382 | // InitListExpr |
| 1383 | Stmt::child_iterator InitListExpr::child_begin() { |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1384 | return InitExprs.size() ? &InitExprs[0] : 0; |
Anders Carlsson | 762b7c7 | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 1385 | } |
| 1386 | Stmt::child_iterator InitListExpr::child_end() { |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1387 | return InitExprs.size() ? &InitExprs[0] + InitExprs.size() : 0; |
Anders Carlsson | 762b7c7 | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 1388 | } |
| 1389 | |
Ted Kremenek | 9fdc8a9 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1390 | // ObjCStringLiteral |
Ted Kremenek | a647855 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1391 | Stmt::child_iterator ObjCStringLiteral::child_begin() { |
| 1392 | return child_iterator(); |
| 1393 | } |
| 1394 | Stmt::child_iterator ObjCStringLiteral::child_end() { |
| 1395 | return child_iterator(); |
| 1396 | } |
Ted Kremenek | 9fdc8a9 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1397 | |
| 1398 | // ObjCEncodeExpr |
Ted Kremenek | a647855 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1399 | Stmt::child_iterator ObjCEncodeExpr::child_begin() { return child_iterator(); } |
| 1400 | Stmt::child_iterator ObjCEncodeExpr::child_end() { return child_iterator(); } |
Ted Kremenek | 9fdc8a9 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1401 | |
Fariborz Jahanian | f807c20 | 2007-10-16 20:40:23 +0000 | [diff] [blame] | 1402 | // ObjCSelectorExpr |
Ted Kremenek | a647855 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1403 | Stmt::child_iterator ObjCSelectorExpr::child_begin() { |
| 1404 | return child_iterator(); |
| 1405 | } |
| 1406 | Stmt::child_iterator ObjCSelectorExpr::child_end() { |
| 1407 | return child_iterator(); |
| 1408 | } |
Fariborz Jahanian | f807c20 | 2007-10-16 20:40:23 +0000 | [diff] [blame] | 1409 | |
Fariborz Jahanian | b391e6e | 2007-10-17 16:58:11 +0000 | [diff] [blame] | 1410 | // ObjCProtocolExpr |
Ted Kremenek | a647855 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1411 | Stmt::child_iterator ObjCProtocolExpr::child_begin() { |
| 1412 | return child_iterator(); |
| 1413 | } |
| 1414 | Stmt::child_iterator ObjCProtocolExpr::child_end() { |
| 1415 | return child_iterator(); |
| 1416 | } |
Fariborz Jahanian | b391e6e | 2007-10-17 16:58:11 +0000 | [diff] [blame] | 1417 | |
Steve Naroff | c39ca26 | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 1418 | // ObjCMessageExpr |
Ted Kremenek | d029a6f | 2008-05-01 17:26:20 +0000 | [diff] [blame] | 1419 | Stmt::child_iterator ObjCMessageExpr::child_begin() { |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1420 | return getReceiver() ? &SubExprs[0] : &SubExprs[0] + ARGS_START; |
Steve Naroff | c39ca26 | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 1421 | } |
| 1422 | Stmt::child_iterator ObjCMessageExpr::child_end() { |
Ted Kremenek | 2719e98 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1423 | return &SubExprs[0]+ARGS_START+getNumArgs(); |
Steve Naroff | c39ca26 | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 1424 | } |
| 1425 | |