| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- Expr.cpp - Expression AST Node Implementation --------------------===// | 
 | 2 | // | 
 | 3 | //                     The LLVM Compiler Infrastructure | 
 | 4 | // | 
| Chris Lattner | 0bc735f | 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. | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // | 
 | 8 | //===----------------------------------------------------------------------===// | 
 | 9 | // | 
 | 10 | // This file implements the Expr class and subclasses. | 
 | 11 | // | 
 | 12 | //===----------------------------------------------------------------------===// | 
 | 13 |  | 
| Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 14 | #include "clang/AST/Expr.h" | 
| Chris Lattner | a4d55d8 | 2008-10-06 06:40:35 +0000 | [diff] [blame] | 15 | #include "clang/AST/APValue.h" | 
| Chris Lattner | 2eadfb6 | 2007-07-15 23:32:58 +0000 | [diff] [blame] | 16 | #include "clang/AST/ASTContext.h" | 
| Chris Lattner | a4d55d8 | 2008-10-06 06:40:35 +0000 | [diff] [blame] | 17 | #include "clang/AST/DeclObjC.h" | 
| Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 18 | #include "clang/AST/DeclCXX.h" | 
| Daniel Dunbar | e91593e | 2008-08-11 04:54:23 +0000 | [diff] [blame] | 19 | #include "clang/AST/RecordLayout.h" | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 20 | #include "clang/AST/StmtVisitor.h" | 
| Chris Lattner | da5a6b6 | 2007-11-27 18:22:04 +0000 | [diff] [blame] | 21 | #include "clang/Basic/TargetInfo.h" | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 22 | using namespace clang; | 
 | 23 |  | 
 | 24 | //===----------------------------------------------------------------------===// | 
 | 25 | // Primary Expressions. | 
 | 26 | //===----------------------------------------------------------------------===// | 
 | 27 |  | 
| Chris Lattner | da8249e | 2008-06-07 22:13:43 +0000 | [diff] [blame] | 28 | /// getValueAsApproximateDouble - This returns the value as an inaccurate | 
 | 29 | /// double.  Note that this may cause loss of precision, but is useful for | 
 | 30 | /// debugging dumps, etc. | 
 | 31 | double FloatingLiteral::getValueAsApproximateDouble() const { | 
 | 32 |   llvm::APFloat V = getValue(); | 
| Dale Johannesen | ee5a700 | 2008-10-09 23:02:32 +0000 | [diff] [blame] | 33 |   bool ignored; | 
 | 34 |   V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven, | 
 | 35 |             &ignored); | 
| Chris Lattner | da8249e | 2008-06-07 22:13:43 +0000 | [diff] [blame] | 36 |   return V.convertToDouble(); | 
 | 37 | } | 
 | 38 |  | 
 | 39 |  | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 40 | StringLiteral::StringLiteral(const char *strData, unsigned byteLength,  | 
 | 41 |                              bool Wide, QualType t, SourceLocation firstLoc, | 
 | 42 |                              SourceLocation lastLoc) :  | 
 | 43 |   Expr(StringLiteralClass, t) { | 
 | 44 |   // OPTIMIZE: could allocate this appended to the StringLiteral. | 
 | 45 |   char *AStrData = new char[byteLength]; | 
 | 46 |   memcpy(AStrData, strData, byteLength); | 
 | 47 |   StrData = AStrData; | 
 | 48 |   ByteLength = byteLength; | 
 | 49 |   IsWide = Wide; | 
 | 50 |   firstTokLoc = firstLoc; | 
 | 51 |   lastTokLoc = lastLoc; | 
 | 52 | } | 
 | 53 |  | 
 | 54 | StringLiteral::~StringLiteral() { | 
 | 55 |   delete[] StrData; | 
 | 56 | } | 
 | 57 |  | 
 | 58 | bool UnaryOperator::isPostfix(Opcode Op) { | 
 | 59 |   switch (Op) { | 
 | 60 |   case PostInc: | 
 | 61 |   case PostDec: | 
 | 62 |     return true; | 
 | 63 |   default: | 
 | 64 |     return false; | 
 | 65 |   } | 
 | 66 | } | 
 | 67 |  | 
| Ted Kremenek | 5a56ac3 | 2008-07-23 22:18:43 +0000 | [diff] [blame] | 68 | bool UnaryOperator::isPrefix(Opcode Op) { | 
 | 69 |   switch (Op) { | 
 | 70 |     case PreInc: | 
 | 71 |     case PreDec: | 
 | 72 |       return true; | 
 | 73 |     default: | 
 | 74 |       return false; | 
 | 75 |   } | 
 | 76 | } | 
 | 77 |  | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 78 | /// getOpcodeStr - Turn an Opcode enum value into the punctuation char it | 
 | 79 | /// corresponds to, e.g. "sizeof" or "[pre]++". | 
 | 80 | const char *UnaryOperator::getOpcodeStr(Opcode Op) { | 
 | 81 |   switch (Op) { | 
 | 82 |   default: assert(0 && "Unknown unary operator"); | 
 | 83 |   case PostInc: return "++"; | 
 | 84 |   case PostDec: return "--"; | 
 | 85 |   case PreInc:  return "++"; | 
 | 86 |   case PreDec:  return "--"; | 
 | 87 |   case AddrOf:  return "&"; | 
 | 88 |   case Deref:   return "*"; | 
 | 89 |   case Plus:    return "+"; | 
 | 90 |   case Minus:   return "-"; | 
 | 91 |   case Not:     return "~"; | 
 | 92 |   case LNot:    return "!"; | 
 | 93 |   case Real:    return "__real"; | 
 | 94 |   case Imag:    return "__imag"; | 
 | 95 |   case SizeOf:  return "sizeof"; | 
 | 96 |   case AlignOf: return "alignof"; | 
 | 97 |   case Extension: return "__extension__"; | 
| Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 98 |   case OffsetOf: return "__builtin_offsetof"; | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 99 |   } | 
 | 100 | } | 
 | 101 |  | 
 | 102 | //===----------------------------------------------------------------------===// | 
 | 103 | // Postfix Operators. | 
 | 104 | //===----------------------------------------------------------------------===// | 
 | 105 |  | 
| Nate Begeman | e2ce1d9 | 2008-01-17 17:46:27 +0000 | [diff] [blame] | 106 |  | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 107 | CallExpr::CallExpr(Expr *fn, Expr **args, unsigned numargs, QualType t, | 
 | 108 |                    SourceLocation rparenloc) | 
| Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 109 |   : Expr(CallExprClass, t), NumArgs(numargs) { | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 110 |   SubExprs = new Stmt*[numargs+1]; | 
| Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 111 |   SubExprs[FN] = fn; | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 112 |   for (unsigned i = 0; i != numargs; ++i) | 
| Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 113 |     SubExprs[i+ARGS_START] = args[i]; | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 114 |   RParenLoc = rparenloc; | 
 | 115 | } | 
 | 116 |  | 
| Chris Lattner | d18b329 | 2007-12-28 05:25:02 +0000 | [diff] [blame] | 117 | /// setNumArgs - This changes the number of arguments present in this call. | 
 | 118 | /// Any orphaned expressions are deleted by this, and any new operands are set | 
 | 119 | /// to null. | 
 | 120 | void CallExpr::setNumArgs(unsigned NumArgs) { | 
 | 121 |   // No change, just return. | 
 | 122 |   if (NumArgs == getNumArgs()) return; | 
 | 123 |    | 
 | 124 |   // If shrinking # arguments, just delete the extras and forgot them. | 
 | 125 |   if (NumArgs < getNumArgs()) { | 
 | 126 |     for (unsigned i = NumArgs, e = getNumArgs(); i != e; ++i) | 
 | 127 |       delete getArg(i); | 
 | 128 |     this->NumArgs = NumArgs; | 
 | 129 |     return; | 
 | 130 |   } | 
 | 131 |  | 
 | 132 |   // Otherwise, we are growing the # arguments.  New an bigger argument array. | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 133 |   Stmt **NewSubExprs = new Stmt*[NumArgs+1]; | 
| Chris Lattner | d18b329 | 2007-12-28 05:25:02 +0000 | [diff] [blame] | 134 |   // Copy over args. | 
 | 135 |   for (unsigned i = 0; i != getNumArgs()+ARGS_START; ++i) | 
 | 136 |     NewSubExprs[i] = SubExprs[i]; | 
 | 137 |   // Null out new args. | 
 | 138 |   for (unsigned i = getNumArgs()+ARGS_START; i != NumArgs+ARGS_START; ++i) | 
 | 139 |     NewSubExprs[i] = 0; | 
 | 140 |    | 
 | 141 |   delete[] SubExprs; | 
 | 142 |   SubExprs = NewSubExprs; | 
 | 143 |   this->NumArgs = NumArgs; | 
 | 144 | } | 
 | 145 |  | 
| Chris Lattner | cb88896 | 2008-10-06 05:00:53 +0000 | [diff] [blame] | 146 | /// isBuiltinCall - If this is a call to a builtin, return the builtin ID.  If | 
 | 147 | /// not, return 0. | 
 | 148 | unsigned CallExpr::isBuiltinCall() const { | 
| Steve Naroff | c4f8e8b | 2008-01-31 01:07:12 +0000 | [diff] [blame] | 149 |   // All simple function calls (e.g. func()) are implicitly cast to pointer to | 
 | 150 |   // function. As a result, we try and obtain the DeclRefExpr from the  | 
 | 151 |   // ImplicitCastExpr. | 
 | 152 |   const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee()); | 
 | 153 |   if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()). | 
| Chris Lattner | cb88896 | 2008-10-06 05:00:53 +0000 | [diff] [blame] | 154 |     return 0; | 
 | 155 |    | 
| Steve Naroff | c4f8e8b | 2008-01-31 01:07:12 +0000 | [diff] [blame] | 156 |   const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr()); | 
 | 157 |   if (!DRE) | 
| Chris Lattner | cb88896 | 2008-10-06 05:00:53 +0000 | [diff] [blame] | 158 |     return 0; | 
 | 159 |    | 
| Anders Carlsson | bcba201 | 2008-01-31 02:13:57 +0000 | [diff] [blame] | 160 |   const FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl()); | 
 | 161 |   if (!FDecl) | 
| Chris Lattner | cb88896 | 2008-10-06 05:00:53 +0000 | [diff] [blame] | 162 |     return 0; | 
 | 163 |    | 
 | 164 |   return FDecl->getIdentifier()->getBuiltinID(); | 
 | 165 | } | 
| Anders Carlsson | bcba201 | 2008-01-31 02:13:57 +0000 | [diff] [blame] | 166 |  | 
| Chris Lattner | cb88896 | 2008-10-06 05:00:53 +0000 | [diff] [blame] | 167 |  | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 168 | /// getOpcodeStr - Turn an Opcode enum value into the punctuation char it | 
 | 169 | /// corresponds to, e.g. "<<=". | 
 | 170 | const char *BinaryOperator::getOpcodeStr(Opcode Op) { | 
 | 171 |   switch (Op) { | 
 | 172 |   default: assert(0 && "Unknown binary operator"); | 
 | 173 |   case Mul:       return "*"; | 
 | 174 |   case Div:       return "/"; | 
 | 175 |   case Rem:       return "%"; | 
 | 176 |   case Add:       return "+"; | 
 | 177 |   case Sub:       return "-"; | 
 | 178 |   case Shl:       return "<<"; | 
 | 179 |   case Shr:       return ">>"; | 
 | 180 |   case LT:        return "<"; | 
 | 181 |   case GT:        return ">"; | 
 | 182 |   case LE:        return "<="; | 
 | 183 |   case GE:        return ">="; | 
 | 184 |   case EQ:        return "=="; | 
 | 185 |   case NE:        return "!="; | 
 | 186 |   case And:       return "&"; | 
 | 187 |   case Xor:       return "^"; | 
 | 188 |   case Or:        return "|"; | 
 | 189 |   case LAnd:      return "&&"; | 
 | 190 |   case LOr:       return "||"; | 
 | 191 |   case Assign:    return "="; | 
 | 192 |   case MulAssign: return "*="; | 
 | 193 |   case DivAssign: return "/="; | 
 | 194 |   case RemAssign: return "%="; | 
 | 195 |   case AddAssign: return "+="; | 
 | 196 |   case SubAssign: return "-="; | 
 | 197 |   case ShlAssign: return "<<="; | 
 | 198 |   case ShrAssign: return ">>="; | 
 | 199 |   case AndAssign: return "&="; | 
 | 200 |   case XorAssign: return "^="; | 
 | 201 |   case OrAssign:  return "|="; | 
 | 202 |   case Comma:     return ","; | 
 | 203 |   } | 
 | 204 | } | 
 | 205 |  | 
| Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 206 | InitListExpr::InitListExpr(SourceLocation lbraceloc,  | 
| Chris Lattner | 418f6c7 | 2008-10-26 23:43:26 +0000 | [diff] [blame] | 207 |                            Expr **initExprs, unsigned numInits, | 
 | 208 |                            SourceLocation rbraceloc, bool hadDesignators) | 
| Steve Naroff | c5ae899 | 2008-05-01 02:04:18 +0000 | [diff] [blame] | 209 |   : Expr(InitListExprClass, QualType()), | 
| Chris Lattner | 418f6c7 | 2008-10-26 23:43:26 +0000 | [diff] [blame] | 210 |     LBraceLoc(lbraceloc), RBraceLoc(rbraceloc), HadDesignators(hadDesignators) { | 
 | 211 |  | 
 | 212 |   InitExprs.insert(InitExprs.end(), initExprs, initExprs+numInits); | 
| Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 213 | } | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 214 |  | 
| Steve Naroff | bfdcae6 | 2008-09-04 15:31:07 +0000 | [diff] [blame] | 215 | /// getFunctionType - Return the underlying function type for this block. | 
| Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 216 | /// | 
 | 217 | const FunctionType *BlockExpr::getFunctionType() const { | 
 | 218 |   return getType()->getAsBlockPointerType()-> | 
 | 219 |                     getPointeeType()->getAsFunctionType(); | 
 | 220 | } | 
 | 221 |  | 
| Steve Naroff | 56ee689 | 2008-10-08 17:01:13 +0000 | [diff] [blame] | 222 | SourceLocation BlockExpr::getCaretLocation() const {  | 
 | 223 |   return TheBlock->getCaretLocation();  | 
 | 224 | } | 
 | 225 | const Stmt *BlockExpr::getBody() const { return TheBlock->getBody(); } | 
 | 226 | Stmt *BlockExpr::getBody() { return TheBlock->getBody(); } | 
 | 227 |  | 
 | 228 |  | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 229 | //===----------------------------------------------------------------------===// | 
 | 230 | // Generic Expression Routines | 
 | 231 | //===----------------------------------------------------------------------===// | 
 | 232 |  | 
 | 233 | /// hasLocalSideEffect - Return true if this immediate expression has side | 
 | 234 | /// effects, not counting any sub-expressions. | 
 | 235 | bool Expr::hasLocalSideEffect() const { | 
 | 236 |   switch (getStmtClass()) { | 
 | 237 |   default: | 
 | 238 |     return false; | 
 | 239 |   case ParenExprClass: | 
 | 240 |     return cast<ParenExpr>(this)->getSubExpr()->hasLocalSideEffect(); | 
 | 241 |   case UnaryOperatorClass: { | 
 | 242 |     const UnaryOperator *UO = cast<UnaryOperator>(this); | 
 | 243 |      | 
 | 244 |     switch (UO->getOpcode()) { | 
 | 245 |     default: return false; | 
 | 246 |     case UnaryOperator::PostInc: | 
 | 247 |     case UnaryOperator::PostDec: | 
 | 248 |     case UnaryOperator::PreInc: | 
 | 249 |     case UnaryOperator::PreDec: | 
 | 250 |       return true;                     // ++/-- | 
 | 251 |  | 
 | 252 |     case UnaryOperator::Deref: | 
 | 253 |       // Dereferencing a volatile pointer is a side-effect. | 
 | 254 |       return getType().isVolatileQualified(); | 
 | 255 |     case UnaryOperator::Real: | 
 | 256 |     case UnaryOperator::Imag: | 
 | 257 |       // accessing a piece of a volatile complex is a side-effect. | 
 | 258 |       return UO->getSubExpr()->getType().isVolatileQualified(); | 
 | 259 |  | 
 | 260 |     case UnaryOperator::Extension: | 
 | 261 |       return UO->getSubExpr()->hasLocalSideEffect(); | 
 | 262 |     } | 
 | 263 |   } | 
| Chris Lattner | e7716e6 | 2007-12-01 06:07:34 +0000 | [diff] [blame] | 264 |   case BinaryOperatorClass: { | 
 | 265 |     const BinaryOperator *BinOp = cast<BinaryOperator>(this); | 
 | 266 |     // Consider comma to have side effects if the LHS and RHS both do. | 
 | 267 |     if (BinOp->getOpcode() == BinaryOperator::Comma) | 
 | 268 |       return BinOp->getLHS()->hasLocalSideEffect() && | 
 | 269 |              BinOp->getRHS()->hasLocalSideEffect(); | 
 | 270 |        | 
 | 271 |     return BinOp->isAssignmentOp(); | 
 | 272 |   } | 
| Chris Lattner | eb14fe8 | 2007-08-25 02:00:02 +0000 | [diff] [blame] | 273 |   case CompoundAssignOperatorClass: | 
| Chris Lattner | 1f683e9 | 2007-08-25 01:55:00 +0000 | [diff] [blame] | 274 |     return true; | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 275 |  | 
| Fariborz Jahanian | ab38e4b | 2007-12-01 19:58:28 +0000 | [diff] [blame] | 276 |   case ConditionalOperatorClass: { | 
 | 277 |     const ConditionalOperator *Exp = cast<ConditionalOperator>(this); | 
 | 278 |     return Exp->getCond()->hasLocalSideEffect() | 
 | 279 |            || (Exp->getLHS() && Exp->getLHS()->hasLocalSideEffect()) | 
 | 280 |            || (Exp->getRHS() && Exp->getRHS()->hasLocalSideEffect()); | 
 | 281 |   } | 
 | 282 |  | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 283 |   case MemberExprClass: | 
 | 284 |   case ArraySubscriptExprClass: | 
 | 285 |     // If the base pointer or element is to a volatile pointer/field, accessing | 
 | 286 |     // if is a side effect. | 
 | 287 |     return getType().isVolatileQualified(); | 
| Eli Friedman | 211f6ad | 2008-05-27 15:24:04 +0000 | [diff] [blame] | 288 |  | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 289 |   case CallExprClass: | 
 | 290 |     // TODO: check attributes for pure/const.   "void foo() { strlen("bar"); }" | 
 | 291 |     // should warn. | 
 | 292 |     return true; | 
| Chris Lattner | a9c0102 | 2007-09-26 22:06:30 +0000 | [diff] [blame] | 293 |   case ObjCMessageExprClass: | 
 | 294 |     return true; | 
| Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 295 |   case StmtExprClass: { | 
 | 296 |     // Statement exprs don't logically have side effects themselves, but are | 
 | 297 |     // sometimes used in macros in ways that give them a type that is unused. | 
 | 298 |     // For example ({ blah; foo(); }) will end up with a type if foo has a type. | 
 | 299 |     // however, if the result of the stmt expr is dead, we don't want to emit a | 
 | 300 |     // warning. | 
 | 301 |     const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt(); | 
 | 302 |     if (!CS->body_empty()) | 
 | 303 |       if (const Expr *E = dyn_cast<Expr>(CS->body_back())) | 
 | 304 |         return E->hasLocalSideEffect(); | 
 | 305 |     return false; | 
 | 306 |   } | 
| Argyrios Kyrtzidis | 0835a3c | 2008-08-18 23:01:59 +0000 | [diff] [blame] | 307 |   case ExplicitCastExprClass: | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 308 |   case CXXFunctionalCastExprClass: | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 309 |     // If this is a cast to void, check the operand.  Otherwise, the result of | 
 | 310 |     // the cast is unused. | 
 | 311 |     if (getType()->isVoidType()) | 
 | 312 |       return cast<CastExpr>(this)->getSubExpr()->hasLocalSideEffect(); | 
 | 313 |     return false; | 
| Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 314 |  | 
| Eli Friedman | 4be1f47 | 2008-05-19 21:24:43 +0000 | [diff] [blame] | 315 |   case ImplicitCastExprClass: | 
 | 316 |     // Check the operand, since implicit casts are inserted by Sema | 
 | 317 |     return cast<ImplicitCastExpr>(this)->getSubExpr()->hasLocalSideEffect(); | 
 | 318 |  | 
| Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 319 |   case CXXDefaultArgExprClass: | 
 | 320 |     return cast<CXXDefaultArgExpr>(this)->getExpr()->hasLocalSideEffect(); | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 321 |   }      | 
 | 322 | } | 
 | 323 |  | 
| Douglas Gregor | ba7e210 | 2008-10-22 15:04:37 +0000 | [diff] [blame] | 324 | /// DeclCanBeLvalue - Determine whether the given declaration can be | 
 | 325 | /// an lvalue. This is a helper routine for isLvalue. | 
 | 326 | static bool DeclCanBeLvalue(const NamedDecl *Decl, ASTContext &Ctx) { | 
| Argyrios Kyrtzidis | 90b7bc6 | 2008-10-22 21:00:29 +0000 | [diff] [blame] | 327 |   return isa<VarDecl>(Decl) || isa<CXXFieldDecl>(Decl) || | 
| Douglas Gregor | ba7e210 | 2008-10-22 15:04:37 +0000 | [diff] [blame] | 328 |     // C++ 3.10p2: An lvalue refers to an object or function. | 
 | 329 |     (Ctx.getLangOptions().CPlusPlus && | 
 | 330 |      (isa<FunctionDecl>(Decl) || isa<OverloadedFunctionDecl>(Decl))); | 
 | 331 | } | 
 | 332 |  | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 333 | /// isLvalue - C99 6.3.2.1: an lvalue is an expression with an object type or an | 
 | 334 | /// incomplete type other than void. Nonarray expressions that can be lvalues: | 
 | 335 | ///  - name, where name must be a variable | 
 | 336 | ///  - e[i] | 
 | 337 | ///  - (e), where e must be an lvalue | 
 | 338 | ///  - e.name, where e must be an lvalue | 
 | 339 | ///  - e->name | 
 | 340 | ///  - *e, the type of e cannot be a function type | 
 | 341 | ///  - string-constant | 
| Chris Lattner | 7da36f6 | 2007-10-30 22:53:42 +0000 | [diff] [blame] | 342 | ///  - (__real__ e) and (__imag__ e) where e is an lvalue  [GNU extension] | 
| Bill Wendling | 08ad47c | 2007-07-17 03:52:31 +0000 | [diff] [blame] | 343 | ///  - reference type [C++ [expr]] | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 344 | /// | 
| Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 345 | Expr::isLvalueResult Expr::isLvalue(ASTContext &Ctx) const { | 
| Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 346 |   // first, check the type (C99 6.3.2.1). Expressions with function | 
 | 347 |   // type in C are not lvalues, but they can be lvalues in C++. | 
 | 348 |   if (!Ctx.getLangOptions().CPlusPlus && TR->isFunctionType()) | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 349 |     return LV_NotObjectType; | 
 | 350 |  | 
| Steve Naroff | acb818a | 2008-02-10 01:39:04 +0000 | [diff] [blame] | 351 |   // Allow qualified void which is an incomplete type other than void (yuck). | 
| Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 352 |   if (TR->isVoidType() && !Ctx.getCanonicalType(TR).getCVRQualifiers()) | 
| Steve Naroff | acb818a | 2008-02-10 01:39:04 +0000 | [diff] [blame] | 353 |     return LV_IncompleteVoidType; | 
 | 354 |  | 
| Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 355 |   /// FIXME: Expressions can't have reference type, so the following | 
 | 356 |   /// isn't needed. | 
| Chris Lattner | cb4f9a6 | 2007-07-21 05:33:26 +0000 | [diff] [blame] | 357 |   if (TR->isReferenceType()) // C++ [expr] | 
| Bill Wendling | 08ad47c | 2007-07-17 03:52:31 +0000 | [diff] [blame] | 358 |     return LV_Valid; | 
 | 359 |  | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 360 |   // the type looks fine, now check the expression | 
 | 361 |   switch (getStmtClass()) { | 
 | 362 |   case StringLiteralClass: // C99 6.5.1p4 | 
| Anders Carlsson | 7323a62 | 2007-11-30 22:47:59 +0000 | [diff] [blame] | 363 |     return LV_Valid; | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 364 |   case ArraySubscriptExprClass: // C99 6.5.3p4 (e1[e2] == (*((e1)+(e2)))) | 
 | 365 |     // For vectors, make sure base is an lvalue (i.e. not a function call). | 
 | 366 |     if (cast<ArraySubscriptExpr>(this)->getBase()->getType()->isVectorType()) | 
| Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 367 |       return cast<ArraySubscriptExpr>(this)->getBase()->isLvalue(Ctx); | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 368 |     return LV_Valid; | 
| Chris Lattner | 4111024 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 369 |   case DeclRefExprClass: { // C99 6.5.1p2 | 
| Douglas Gregor | ba7e210 | 2008-10-22 15:04:37 +0000 | [diff] [blame] | 370 |     const NamedDecl *RefdDecl = cast<DeclRefExpr>(this)->getDecl(); | 
 | 371 |     if (DeclCanBeLvalue(RefdDecl, Ctx)) | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 372 |       return LV_Valid; | 
 | 373 |     break; | 
| Chris Lattner | 4111024 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 374 |   } | 
| Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 375 |   case BlockDeclRefExprClass: { | 
 | 376 |     const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(this); | 
| Steve Naroff | 4f6a7d7 | 2008-09-26 14:41:28 +0000 | [diff] [blame] | 377 |     if (isa<VarDecl>(BDR->getDecl())) | 
| Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 378 |       return LV_Valid; | 
 | 379 |     break; | 
 | 380 |   } | 
| Anton Korobeynikov | fdd7566 | 2007-07-12 15:26:50 +0000 | [diff] [blame] | 381 |   case MemberExprClass: { // C99 6.5.2.3p4 | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 382 |     const MemberExpr *m = cast<MemberExpr>(this); | 
| Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 383 |     return m->isArrow() ? LV_Valid : m->getBase()->isLvalue(Ctx); | 
| Anton Korobeynikov | fdd7566 | 2007-07-12 15:26:50 +0000 | [diff] [blame] | 384 |   } | 
| Chris Lattner | 7da36f6 | 2007-10-30 22:53:42 +0000 | [diff] [blame] | 385 |   case UnaryOperatorClass: | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 386 |     if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Deref) | 
| Chris Lattner | 7da36f6 | 2007-10-30 22:53:42 +0000 | [diff] [blame] | 387 |       return LV_Valid; // C99 6.5.3p4 | 
 | 388 |  | 
 | 389 |     if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Real || | 
| Chris Lattner | baf0d66 | 2008-07-25 18:07:19 +0000 | [diff] [blame] | 390 |         cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Imag || | 
 | 391 |         cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Extension) | 
| Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 392 |       return cast<UnaryOperator>(this)->getSubExpr()->isLvalue(Ctx);  // GNU. | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 393 |     break; | 
 | 394 |   case ParenExprClass: // C99 6.5.1p5 | 
| Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 395 |     return cast<ParenExpr>(this)->getSubExpr()->isLvalue(Ctx); | 
| Steve Naroff | e638639 | 2007-12-05 04:00:10 +0000 | [diff] [blame] | 396 |   case CompoundLiteralExprClass: // C99 6.5.2.5p5 | 
 | 397 |     return LV_Valid; | 
| Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 398 |   case ExtVectorElementExprClass: | 
 | 399 |     if (cast<ExtVectorElementExpr>(this)->containsDuplicateElements()) | 
| Steve Naroff | fec0b49 | 2007-07-30 03:29:09 +0000 | [diff] [blame] | 400 |       return LV_DuplicateVectorComponents; | 
 | 401 |     return LV_Valid; | 
| Steve Naroff | 027282d | 2007-11-12 14:34:27 +0000 | [diff] [blame] | 402 |   case ObjCIvarRefExprClass: // ObjC instance variables are lvalues. | 
 | 403 |     return LV_Valid; | 
| Steve Naroff | 799a6a6 | 2008-05-30 23:23:16 +0000 | [diff] [blame] | 404 |   case ObjCPropertyRefExprClass: // FIXME: check if read-only property. | 
 | 405 |     return LV_Valid; | 
| Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 406 |   case PredefinedExprClass: | 
 | 407 |     return (cast<PredefinedExpr>(this)->getIdentType() | 
 | 408 |                == PredefinedExpr::CXXThis | 
| Chris Lattner | 7c4a191 | 2008-07-25 23:30:42 +0000 | [diff] [blame] | 409 |             ? LV_InvalidExpression : LV_Valid); | 
| Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 410 |   case CXXDefaultArgExprClass: | 
| Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 411 |     return cast<CXXDefaultArgExpr>(this)->getExpr()->isLvalue(Ctx); | 
| Argyrios Kyrtzidis | 24b41fa | 2008-09-11 04:22:26 +0000 | [diff] [blame] | 412 |   case CXXConditionDeclExprClass: | 
 | 413 |     return LV_Valid; | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 414 |   default: | 
 | 415 |     break; | 
 | 416 |   } | 
 | 417 |   return LV_InvalidExpression; | 
 | 418 | } | 
 | 419 |  | 
 | 420 | /// isModifiableLvalue - C99 6.3.2.1: an lvalue that does not have array type, | 
 | 421 | /// does not have an incomplete type, does not have a const-qualified type, and | 
 | 422 | /// if it is a structure or union, does not have any member (including,  | 
 | 423 | /// recursively, any member or element of all contained aggregates or unions) | 
 | 424 | /// with a const-qualified type. | 
| Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 425 | Expr::isModifiableLvalueResult Expr::isModifiableLvalue(ASTContext &Ctx) const { | 
 | 426 |   isLvalueResult lvalResult = isLvalue(Ctx); | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 427 |      | 
 | 428 |   switch (lvalResult) { | 
| Douglas Gregor | ae8d467 | 2008-10-22 00:03:08 +0000 | [diff] [blame] | 429 |   case LV_Valid:  | 
 | 430 |     // C++ 3.10p11: Functions cannot be modified, but pointers to | 
 | 431 |     // functions can be modifiable. | 
 | 432 |     if (Ctx.getLangOptions().CPlusPlus && TR->isFunctionType()) | 
 | 433 |       return MLV_NotObjectType; | 
 | 434 |     break; | 
 | 435 |  | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 436 |   case LV_NotObjectType: return MLV_NotObjectType; | 
 | 437 |   case LV_IncompleteVoidType: return MLV_IncompleteVoidType; | 
| Steve Naroff | fec0b49 | 2007-07-30 03:29:09 +0000 | [diff] [blame] | 438 |   case LV_DuplicateVectorComponents: return MLV_DuplicateVectorComponents; | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 439 |   case LV_InvalidExpression: return MLV_InvalidExpression; | 
 | 440 |   } | 
| Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 441 |    | 
 | 442 |   QualType CT = Ctx.getCanonicalType(getType()); | 
 | 443 |    | 
 | 444 |   if (CT.isConstQualified()) | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 445 |     return MLV_ConstQualified; | 
| Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 446 |   if (CT->isArrayType()) | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 447 |     return MLV_ArrayType; | 
| Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 448 |   if (CT->isIncompleteType()) | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 449 |     return MLV_IncompleteType; | 
 | 450 |      | 
| Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 451 |   if (const RecordType *r = CT->getAsRecordType()) { | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 452 |     if (r->hasConstFields())  | 
 | 453 |       return MLV_ConstQualified; | 
 | 454 |   } | 
| Steve Naroff | 4f6a7d7 | 2008-09-26 14:41:28 +0000 | [diff] [blame] | 455 |   // The following is illegal: | 
 | 456 |   //   void takeclosure(void (^C)(void)); | 
 | 457 |   //   void func() { int x = 1; takeclosure(^{ x = 7 }); } | 
 | 458 |   // | 
 | 459 |   if (getStmtClass() == BlockDeclRefExprClass) { | 
 | 460 |     const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(this); | 
 | 461 |     if (!BDR->isByRef() && isa<VarDecl>(BDR->getDecl())) | 
 | 462 |       return MLV_NotBlockQualified; | 
 | 463 |   } | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 464 |   return MLV_Valid;     | 
 | 465 | } | 
 | 466 |  | 
| Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 467 | /// hasGlobalStorage - Return true if this expression has static storage | 
| Chris Lattner | 4cc6271 | 2007-11-27 21:35:27 +0000 | [diff] [blame] | 468 | /// duration.  This means that the address of this expression is a link-time | 
 | 469 | /// constant. | 
| Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 470 | bool Expr::hasGlobalStorage() const { | 
| Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 471 |   switch (getStmtClass()) { | 
 | 472 |   default: | 
 | 473 |     return false; | 
| Chris Lattner | 4cc6271 | 2007-11-27 21:35:27 +0000 | [diff] [blame] | 474 |   case ParenExprClass: | 
| Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 475 |     return cast<ParenExpr>(this)->getSubExpr()->hasGlobalStorage(); | 
| Chris Lattner | 4cc6271 | 2007-11-27 21:35:27 +0000 | [diff] [blame] | 476 |   case ImplicitCastExprClass: | 
| Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 477 |     return cast<ImplicitCastExpr>(this)->getSubExpr()->hasGlobalStorage(); | 
| Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 478 |   case CompoundLiteralExprClass: | 
 | 479 |     return cast<CompoundLiteralExpr>(this)->isFileScope(); | 
| Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 480 |   case DeclRefExprClass: { | 
 | 481 |     const Decl *D = cast<DeclRefExpr>(this)->getDecl(); | 
 | 482 |     if (const VarDecl *VD = dyn_cast<VarDecl>(D)) | 
| Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 483 |       return VD->hasGlobalStorage(); | 
| Seo Sanghyeon | 63f067f | 2008-04-04 09:45:30 +0000 | [diff] [blame] | 484 |     if (isa<FunctionDecl>(D)) | 
 | 485 |       return true; | 
| Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 486 |     return false; | 
 | 487 |   } | 
| Chris Lattner | fb70806 | 2007-11-28 04:30:09 +0000 | [diff] [blame] | 488 |   case MemberExprClass: { | 
| Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 489 |     const MemberExpr *M = cast<MemberExpr>(this); | 
| Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 490 |     return !M->isArrow() && M->getBase()->hasGlobalStorage(); | 
| Chris Lattner | fb70806 | 2007-11-28 04:30:09 +0000 | [diff] [blame] | 491 |   } | 
| Chris Lattner | 4cc6271 | 2007-11-27 21:35:27 +0000 | [diff] [blame] | 492 |   case ArraySubscriptExprClass: | 
| Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 493 |     return cast<ArraySubscriptExpr>(this)->getBase()->hasGlobalStorage(); | 
| Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 494 |   case PredefinedExprClass: | 
| Chris Lattner | fa28b30 | 2008-01-12 08:14:25 +0000 | [diff] [blame] | 495 |     return true; | 
| Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 496 |   case CXXDefaultArgExprClass: | 
 | 497 |     return cast<CXXDefaultArgExpr>(this)->getExpr()->hasGlobalStorage(); | 
| Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 498 |   } | 
 | 499 | } | 
 | 500 |  | 
| Ted Kremenek | 4e99a5f | 2008-01-17 16:57:34 +0000 | [diff] [blame] | 501 | Expr* Expr::IgnoreParens() { | 
 | 502 |   Expr* E = this; | 
 | 503 |   while (ParenExpr* P = dyn_cast<ParenExpr>(E)) | 
 | 504 |     E = P->getSubExpr(); | 
 | 505 |    | 
 | 506 |   return E; | 
 | 507 | } | 
 | 508 |  | 
| Chris Lattner | 56f3494 | 2008-02-13 01:02:39 +0000 | [diff] [blame] | 509 | /// IgnoreParenCasts - Ignore parentheses and casts.  Strip off any ParenExpr | 
 | 510 | /// or CastExprs or ImplicitCastExprs, returning their operand. | 
 | 511 | Expr *Expr::IgnoreParenCasts() { | 
 | 512 |   Expr *E = this; | 
 | 513 |   while (true) { | 
 | 514 |     if (ParenExpr *P = dyn_cast<ParenExpr>(E)) | 
 | 515 |       E = P->getSubExpr(); | 
 | 516 |     else if (CastExpr *P = dyn_cast<CastExpr>(E)) | 
 | 517 |       E = P->getSubExpr(); | 
| Chris Lattner | 56f3494 | 2008-02-13 01:02:39 +0000 | [diff] [blame] | 518 |     else | 
 | 519 |       return E; | 
 | 520 |   } | 
 | 521 | } | 
 | 522 |  | 
 | 523 |  | 
| Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 524 | bool Expr::isConstantExpr(ASTContext &Ctx, SourceLocation *Loc) const { | 
| Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 525 |   switch (getStmtClass()) { | 
 | 526 |   default: | 
 | 527 |     if (Loc) *Loc = getLocStart(); | 
 | 528 |     return false; | 
 | 529 |   case ParenExprClass: | 
 | 530 |     return cast<ParenExpr>(this)->getSubExpr()->isConstantExpr(Ctx, Loc); | 
 | 531 |   case StringLiteralClass: | 
| Steve Naroff | 5d37e32 | 2007-11-09 15:00:03 +0000 | [diff] [blame] | 532 |   case ObjCStringLiteralClass: | 
| Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 533 |   case FloatingLiteralClass: | 
 | 534 |   case IntegerLiteralClass: | 
 | 535 |   case CharacterLiteralClass: | 
 | 536 |   case ImaginaryLiteralClass: | 
| Anders Carlsson | 1a86b33 | 2007-10-17 00:52:43 +0000 | [diff] [blame] | 537 |   case TypesCompatibleExprClass: | 
 | 538 |   case CXXBoolLiteralExprClass: | 
| Anders Carlsson | 15425f9 | 2008-08-23 18:49:32 +0000 | [diff] [blame] | 539 |   case AddrLabelExprClass: | 
| Chris Lattner | 2777e49 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 540 |     return true; | 
| Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 541 |   case CallExprClass: { | 
 | 542 |     const CallExpr *CE = cast<CallExpr>(this); | 
| Chris Lattner | 45b6b9d | 2008-10-06 06:49:02 +0000 | [diff] [blame] | 543 |  | 
 | 544 |     // Allow any constant foldable calls to builtins. | 
 | 545 |     if (CE->isBuiltinCall() && CE->isEvaluatable(Ctx)) | 
| Steve Naroff | c4f8e8b | 2008-01-31 01:07:12 +0000 | [diff] [blame] | 546 |       return true; | 
| Chris Lattner | 45b6b9d | 2008-10-06 06:49:02 +0000 | [diff] [blame] | 547 |      | 
| Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 548 |     if (Loc) *Loc = getLocStart(); | 
 | 549 |     return false; | 
 | 550 |   } | 
| Chris Lattner | 4ef8dd6 | 2007-11-01 02:45:17 +0000 | [diff] [blame] | 551 |   case DeclRefExprClass: { | 
 | 552 |     const Decl *D = cast<DeclRefExpr>(this)->getDecl(); | 
 | 553 |     // Accept address of function. | 
 | 554 |     if (isa<EnumConstantDecl>(D) || isa<FunctionDecl>(D)) | 
| Chris Lattner | 2777e49 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 555 |       return true; | 
| Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 556 |     if (Loc) *Loc = getLocStart(); | 
| Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 557 |     if (isa<VarDecl>(D)) | 
 | 558 |       return TR->isArrayType(); | 
| Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 559 |     return false; | 
| Chris Lattner | 4ef8dd6 | 2007-11-01 02:45:17 +0000 | [diff] [blame] | 560 |   } | 
| Steve Naroff | b8f13a8 | 2008-01-09 00:05:37 +0000 | [diff] [blame] | 561 |   case CompoundLiteralExprClass: | 
 | 562 |     if (Loc) *Loc = getLocStart(); | 
 | 563 |     // Allow "(int []){2,4}", since the array will be converted to a pointer. | 
| Nate Begeman | d47d4f5 | 2008-01-25 05:34:48 +0000 | [diff] [blame] | 564 |     // Allow "(vector type){2,4}" since the elements are all constant. | 
 | 565 |     return TR->isArrayType() || TR->isVectorType(); | 
| Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 566 |   case UnaryOperatorClass: { | 
 | 567 |     const UnaryOperator *Exp = cast<UnaryOperator>(this); | 
 | 568 |      | 
| Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 569 |     // C99 6.6p9 | 
| Chris Lattner | 239c15e | 2007-12-11 23:11:17 +0000 | [diff] [blame] | 570 |     if (Exp->getOpcode() == UnaryOperator::AddrOf) { | 
| Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 571 |       if (!Exp->getSubExpr()->hasGlobalStorage()) { | 
| Chris Lattner | 239c15e | 2007-12-11 23:11:17 +0000 | [diff] [blame] | 572 |         if (Loc) *Loc = getLocStart(); | 
 | 573 |         return false; | 
 | 574 |       } | 
 | 575 |       return true; | 
 | 576 |     } | 
| Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 577 |  | 
| Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 578 |     // Get the operand value.  If this is sizeof/alignof, do not evalute the | 
 | 579 |     // operand.  This affects C99 6.6p3. | 
| Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 580 |     if (!Exp->isSizeOfAlignOfOp() &&  | 
 | 581 |         Exp->getOpcode() != UnaryOperator::OffsetOf && | 
| Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 582 |         !Exp->getSubExpr()->isConstantExpr(Ctx, Loc)) | 
 | 583 |       return false; | 
 | 584 |    | 
 | 585 |     switch (Exp->getOpcode()) { | 
 | 586 |     // Address, indirect, pre/post inc/dec, etc are not valid constant exprs. | 
 | 587 |     // See C99 6.6p3. | 
 | 588 |     default: | 
 | 589 |       if (Loc) *Loc = Exp->getOperatorLoc(); | 
 | 590 |       return false; | 
 | 591 |     case UnaryOperator::Extension: | 
 | 592 |       return true;  // FIXME: this is wrong. | 
 | 593 |     case UnaryOperator::SizeOf: | 
 | 594 |     case UnaryOperator::AlignOf: | 
| Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 595 |     case UnaryOperator::OffsetOf: | 
| Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 596 |       // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2. | 
| Eli Friedman | 3c2b317 | 2008-02-15 12:20:59 +0000 | [diff] [blame] | 597 |       if (!Exp->getSubExpr()->getType()->isConstantSizeType()) { | 
| Chris Lattner | 6538347 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 598 |         if (Loc) *Loc = Exp->getOperatorLoc(); | 
| Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 599 |         return false; | 
| Chris Lattner | 6538347 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 600 |       } | 
| Chris Lattner | 2777e49 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 601 |       return true; | 
| Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 602 |     case UnaryOperator::LNot: | 
 | 603 |     case UnaryOperator::Plus: | 
 | 604 |     case UnaryOperator::Minus: | 
 | 605 |     case UnaryOperator::Not: | 
| Chris Lattner | 2777e49 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 606 |       return true; | 
| Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 607 |     } | 
| Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 608 |   } | 
 | 609 |   case SizeOfAlignOfTypeExprClass: { | 
 | 610 |     const SizeOfAlignOfTypeExpr *Exp = cast<SizeOfAlignOfTypeExpr>(this); | 
 | 611 |     // alignof always evaluates to a constant. | 
| Chris Lattner | a269ebf | 2008-02-21 05:45:29 +0000 | [diff] [blame] | 612 |     if (Exp->isSizeOf() && !Exp->getArgumentType()->isVoidType() && | 
 | 613 |         !Exp->getArgumentType()->isConstantSizeType()) { | 
| Chris Lattner | 6538347 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 614 |       if (Loc) *Loc = Exp->getOperatorLoc(); | 
| Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 615 |       return false; | 
| Chris Lattner | 6538347 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 616 |     } | 
| Chris Lattner | 2777e49 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 617 |     return true; | 
| Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 618 |   } | 
 | 619 |   case BinaryOperatorClass: { | 
 | 620 |     const BinaryOperator *Exp = cast<BinaryOperator>(this); | 
 | 621 |      | 
 | 622 |     // The LHS of a constant expr is always evaluated and needed. | 
 | 623 |     if (!Exp->getLHS()->isConstantExpr(Ctx, Loc)) | 
 | 624 |       return false; | 
 | 625 |  | 
 | 626 |     if (!Exp->getRHS()->isConstantExpr(Ctx, Loc)) | 
 | 627 |       return false; | 
| Chris Lattner | 2777e49 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 628 |     return true; | 
| Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 629 |   } | 
 | 630 |   case ImplicitCastExprClass: | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 631 |   case ExplicitCastExprClass: | 
 | 632 |   case CXXFunctionalCastExprClass: { | 
| Argyrios Kyrtzidis | 0835a3c | 2008-08-18 23:01:59 +0000 | [diff] [blame] | 633 |     const Expr *SubExpr = cast<CastExpr>(this)->getSubExpr(); | 
 | 634 |     SourceLocation CastLoc = getLocStart(); | 
| Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 635 |     if (!SubExpr->isConstantExpr(Ctx, Loc)) { | 
 | 636 |       if (Loc) *Loc = SubExpr->getLocStart(); | 
 | 637 |       return false; | 
 | 638 |     } | 
| Chris Lattner | 2777e49 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 639 |     return true; | 
| Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 640 |   } | 
 | 641 |   case ConditionalOperatorClass: { | 
 | 642 |     const ConditionalOperator *Exp = cast<ConditionalOperator>(this); | 
| Chris Lattner | 2777e49 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 643 |     if (!Exp->getCond()->isConstantExpr(Ctx, Loc) || | 
| Anders Carlsson | 3907323 | 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 | 2777e49 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 646 |         !Exp->getRHS()->isConstantExpr(Ctx, Loc)) | 
| Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 647 |       return false; | 
| Chris Lattner | 2777e49 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 648 |     return true; | 
| Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 649 |   } | 
| Steve Naroff | d0091aa | 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 | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 660 |   } | 
| Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 661 |   case CXXDefaultArgExprClass: | 
 | 662 |     return cast<CXXDefaultArgExpr>(this)->getExpr()->isConstantExpr(Ctx, Loc); | 
| Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 663 |   } | 
| Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 664 | } | 
 | 665 |  | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +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, | 
| Nuno Lopes | 5f6b632 | 2008-07-08 21:13:06 +0000 | [diff] [blame] | 672 | /// "0 || f()" can be treated as a constant expression. In C90 this expression, | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 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 | ccc213f | 2007-09-26 00:47:26 +0000 | [diff] [blame] | 682 | /// permit this.  This includes things like (int)1e1000 | 
| Chris Lattner | ce0afc0 | 2007-07-18 05:21:20 +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. | 
| Chris Lattner | 590b664 | 2007-07-15 23:26:56 +0000 | [diff] [blame] | 687 | bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx, | 
 | 688 |                                  SourceLocation *Loc, bool isEvaluated) const { | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 689 |   switch (getStmtClass()) { | 
 | 690 |   default: | 
 | 691 |     if (Loc) *Loc = getLocStart(); | 
 | 692 |     return false; | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 693 |   case ParenExprClass: | 
 | 694 |     return cast<ParenExpr>(this)->getSubExpr()-> | 
| Chris Lattner | 590b664 | 2007-07-15 23:26:56 +0000 | [diff] [blame] | 695 |                      isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated); | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 696 |   case IntegerLiteralClass: | 
 | 697 |     Result = cast<IntegerLiteral>(this)->getValue(); | 
 | 698 |     break; | 
| Chris Lattner | 2eadfb6 | 2007-07-15 23:32:58 +0000 | [diff] [blame] | 699 |   case CharacterLiteralClass: { | 
 | 700 |     const CharacterLiteral *CL = cast<CharacterLiteral>(this); | 
| Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 701 |     Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); | 
| Chris Lattner | 2eadfb6 | 2007-07-15 23:32:58 +0000 | [diff] [blame] | 702 |     Result = CL->getValue(); | 
| Chris Lattner | f0fbcb3 | 2007-07-16 21:04:56 +0000 | [diff] [blame] | 703 |     Result.setIsUnsigned(!getType()->isSignedIntegerType()); | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 704 |     break; | 
| Chris Lattner | 2eadfb6 | 2007-07-15 23:32:58 +0000 | [diff] [blame] | 705 |   } | 
| Anders Carlsson | b88d45e | 2008-08-23 21:12:35 +0000 | [diff] [blame] | 706 |   case CXXBoolLiteralExprClass: { | 
 | 707 |     const CXXBoolLiteralExpr *BL = cast<CXXBoolLiteralExpr>(this); | 
 | 708 |     Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); | 
 | 709 |     Result = BL->getValue(); | 
 | 710 |     Result.setIsUnsigned(!getType()->isSignedIntegerType()); | 
 | 711 |     break; | 
 | 712 |   } | 
| Argyrios Kyrtzidis | 7267f78 | 2008-08-23 19:35:47 +0000 | [diff] [blame] | 713 |   case CXXZeroInitValueExprClass: | 
 | 714 |     Result.clear(); | 
 | 715 |     break; | 
| Steve Naroff | 7b658aa | 2007-08-02 04:09:23 +0000 | [diff] [blame] | 716 |   case TypesCompatibleExprClass: { | 
 | 717 |     const TypesCompatibleExpr *TCE = cast<TypesCompatibleExpr>(this); | 
| Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 718 |     Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); | 
| Daniel Dunbar | ac620de | 2008-10-24 08:07:57 +0000 | [diff] [blame] | 719 |     // Per gcc docs "this built-in function ignores top level | 
 | 720 |     // qualifiers".  We need to use the canonical version to properly | 
 | 721 |     // be able to strip CRV qualifiers from the type. | 
 | 722 |     QualType T0 = Ctx.getCanonicalType(TCE->getArgType1()); | 
 | 723 |     QualType T1 = Ctx.getCanonicalType(TCE->getArgType2()); | 
 | 724 |     Result = Ctx.typesAreCompatible(T0.getUnqualifiedType(),  | 
 | 725 |                                     T1.getUnqualifiedType()); | 
| Steve Naroff | 389cecc | 2007-08-02 00:13:27 +0000 | [diff] [blame] | 726 |     break; | 
| Steve Naroff | 7b658aa | 2007-08-02 04:09:23 +0000 | [diff] [blame] | 727 |   } | 
| Steve Naroff | 13b7c5f | 2007-08-08 22:15:55 +0000 | [diff] [blame] | 728 |   case CallExprClass: { | 
 | 729 |     const CallExpr *CE = cast<CallExpr>(this); | 
| Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 730 |     Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); | 
| Chris Lattner | a4d55d8 | 2008-10-06 06:40:35 +0000 | [diff] [blame] | 731 |      | 
 | 732 |     // If this is a call to a builtin function, constant fold it otherwise | 
 | 733 |     // reject it. | 
 | 734 |     if (CE->isBuiltinCall()) { | 
 | 735 |       APValue ResultAP; | 
 | 736 |       if (CE->tryEvaluate(ResultAP, Ctx)) { | 
 | 737 |         Result = ResultAP.getInt(); | 
 | 738 |         break;  // It is a constant, expand it. | 
 | 739 |       } | 
 | 740 |     } | 
 | 741 |      | 
| Steve Naroff | 13b7c5f | 2007-08-08 22:15:55 +0000 | [diff] [blame] | 742 |     if (Loc) *Loc = getLocStart(); | 
 | 743 |     return false; | 
 | 744 |   } | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 745 |   case DeclRefExprClass: | 
 | 746 |     if (const EnumConstantDecl *D =  | 
 | 747 |           dyn_cast<EnumConstantDecl>(cast<DeclRefExpr>(this)->getDecl())) { | 
 | 748 |       Result = D->getInitVal(); | 
 | 749 |       break; | 
 | 750 |     } | 
 | 751 |     if (Loc) *Loc = getLocStart(); | 
 | 752 |     return false; | 
 | 753 |   case UnaryOperatorClass: { | 
 | 754 |     const UnaryOperator *Exp = cast<UnaryOperator>(this); | 
 | 755 |      | 
 | 756 |     // Get the operand value.  If this is sizeof/alignof, do not evalute the | 
 | 757 |     // operand.  This affects C99 6.6p3. | 
| Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 758 |     if (!Exp->isSizeOfAlignOfOp() && !Exp->isOffsetOfOp() && | 
| Chris Lattner | 602dafd | 2007-08-23 21:42:50 +0000 | [diff] [blame] | 759 |         !Exp->getSubExpr()->isIntegerConstantExpr(Result, Ctx, Loc,isEvaluated)) | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 760 |       return false; | 
 | 761 |  | 
 | 762 |     switch (Exp->getOpcode()) { | 
 | 763 |     // Address, indirect, pre/post inc/dec, etc are not valid constant exprs. | 
 | 764 |     // See C99 6.6p3. | 
 | 765 |     default: | 
 | 766 |       if (Loc) *Loc = Exp->getOperatorLoc(); | 
 | 767 |       return false; | 
 | 768 |     case UnaryOperator::Extension: | 
| Chris Lattner | 76e773a | 2007-07-18 18:38:36 +0000 | [diff] [blame] | 769 |       return true;  // FIXME: this is wrong. | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 770 |     case UnaryOperator::SizeOf: | 
 | 771 |     case UnaryOperator::AlignOf: | 
| Chris Lattner | a269ebf | 2008-02-21 05:45:29 +0000 | [diff] [blame] | 772 |       // Return the result in the right width. | 
| Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 773 |       Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); | 
| Chris Lattner | a269ebf | 2008-02-21 05:45:29 +0000 | [diff] [blame] | 774 |          | 
 | 775 |       // sizeof(void) and __alignof__(void) = 1 as a gcc extension. | 
 | 776 |       if (Exp->getSubExpr()->getType()->isVoidType()) { | 
 | 777 |         Result = 1; | 
 | 778 |         break; | 
 | 779 |       } | 
 | 780 |          | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 781 |       // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2. | 
| Eli Friedman | 3c2b317 | 2008-02-15 12:20:59 +0000 | [diff] [blame] | 782 |       if (!Exp->getSubExpr()->getType()->isConstantSizeType()) { | 
| Chris Lattner | 6538347 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 783 |         if (Loc) *Loc = Exp->getOperatorLoc(); | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 784 |         return false; | 
| Chris Lattner | 6538347 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 785 |       } | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 786 |        | 
| Chris Lattner | 76e773a | 2007-07-18 18:38:36 +0000 | [diff] [blame] | 787 |       // Get information about the size or align. | 
| Chris Lattner | efdd157 | 2008-01-02 21:54:09 +0000 | [diff] [blame] | 788 |       if (Exp->getSubExpr()->getType()->isFunctionType()) { | 
 | 789 |         // GCC extension: sizeof(function) = 1. | 
 | 790 |         Result = Exp->getOpcode() == UnaryOperator::AlignOf ? 4 : 1; | 
| Chris Lattner | da5a6b6 | 2007-11-27 18:22:04 +0000 | [diff] [blame] | 791 |       } else { | 
| Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 792 |         unsigned CharSize = Ctx.Target.getCharWidth(); | 
| Anders Carlsson | 64a31ef | 2008-02-18 07:10:45 +0000 | [diff] [blame] | 793 |         if (Exp->getOpcode() == UnaryOperator::AlignOf) | 
| Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 794 |           Result = Ctx.getTypeAlign(Exp->getSubExpr()->getType()) / CharSize; | 
| Anders Carlsson | 64a31ef | 2008-02-18 07:10:45 +0000 | [diff] [blame] | 795 |         else | 
| Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 796 |           Result = Ctx.getTypeSize(Exp->getSubExpr()->getType()) / CharSize; | 
| Chris Lattner | da5a6b6 | 2007-11-27 18:22:04 +0000 | [diff] [blame] | 797 |       } | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 798 |       break; | 
 | 799 |     case UnaryOperator::LNot: { | 
| Chris Lattner | bf75538 | 2008-01-25 19:16:19 +0000 | [diff] [blame] | 800 |       bool Val = Result == 0; | 
| Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 801 |       Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 802 |       Result = Val; | 
 | 803 |       break; | 
 | 804 |     } | 
 | 805 |     case UnaryOperator::Plus: | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 806 |       break; | 
 | 807 |     case UnaryOperator::Minus: | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 808 |       Result = -Result; | 
 | 809 |       break; | 
 | 810 |     case UnaryOperator::Not: | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 811 |       Result = ~Result; | 
 | 812 |       break; | 
| Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 813 |     case UnaryOperator::OffsetOf: | 
| Daniel Dunbar | aa1f9f1 | 2008-08-28 18:42:20 +0000 | [diff] [blame] | 814 |       Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); | 
| Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 815 |       Result = Exp->evaluateOffsetOf(Ctx); | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 816 |     } | 
 | 817 |     break; | 
 | 818 |   } | 
 | 819 |   case SizeOfAlignOfTypeExprClass: { | 
 | 820 |     const SizeOfAlignOfTypeExpr *Exp = cast<SizeOfAlignOfTypeExpr>(this); | 
| Chris Lattner | a269ebf | 2008-02-21 05:45:29 +0000 | [diff] [blame] | 821 |      | 
 | 822 |     // Return the result in the right width. | 
| Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 823 |     Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); | 
| Chris Lattner | a269ebf | 2008-02-21 05:45:29 +0000 | [diff] [blame] | 824 |      | 
 | 825 |     // sizeof(void) and __alignof__(void) = 1 as a gcc extension. | 
 | 826 |     if (Exp->getArgumentType()->isVoidType()) { | 
 | 827 |       Result = 1; | 
 | 828 |       break; | 
 | 829 |     } | 
 | 830 |      | 
 | 831 |     // alignof always evaluates to a constant, sizeof does if arg is not VLA. | 
| Eli Friedman | 3c2b317 | 2008-02-15 12:20:59 +0000 | [diff] [blame] | 832 |     if (Exp->isSizeOf() && !Exp->getArgumentType()->isConstantSizeType()) { | 
| Chris Lattner | 6538347 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 833 |       if (Loc) *Loc = Exp->getOperatorLoc(); | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 834 |       return false; | 
| Chris Lattner | 6538347 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 835 |     } | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 836 |  | 
| Chris Lattner | 76e773a | 2007-07-18 18:38:36 +0000 | [diff] [blame] | 837 |     // Get information about the size or align. | 
| Chris Lattner | efdd157 | 2008-01-02 21:54:09 +0000 | [diff] [blame] | 838 |     if (Exp->getArgumentType()->isFunctionType()) { | 
 | 839 |       // GCC extension: sizeof(function) = 1. | 
 | 840 |       Result = Exp->isSizeOf() ? 1 : 4; | 
| Anders Carlsson | 6a24acb | 2008-02-16 01:20:23 +0000 | [diff] [blame] | 841 |     } else {  | 
| Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 842 |       unsigned CharSize = Ctx.Target.getCharWidth(); | 
| Anders Carlsson | 6a24acb | 2008-02-16 01:20:23 +0000 | [diff] [blame] | 843 |       if (Exp->isSizeOf()) | 
| Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 844 |         Result = Ctx.getTypeSize(Exp->getArgumentType()) / CharSize; | 
| Anders Carlsson | 6a24acb | 2008-02-16 01:20:23 +0000 | [diff] [blame] | 845 |       else | 
| Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 846 |         Result = Ctx.getTypeAlign(Exp->getArgumentType()) / CharSize; | 
| Ted Kremenek | 060e470 | 2007-12-17 17:38:43 +0000 | [diff] [blame] | 847 |     } | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 848 |     break; | 
 | 849 |   } | 
 | 850 |   case BinaryOperatorClass: { | 
 | 851 |     const BinaryOperator *Exp = cast<BinaryOperator>(this); | 
| Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 852 |     llvm::APSInt LHS, RHS; | 
 | 853 |  | 
 | 854 |     // Initialize result to have correct signedness and width. | 
 | 855 |     Result = llvm::APSInt(static_cast<uint32_t>(Ctx.getTypeSize(getType())), | 
 | 856 |                           !getType()->isSignedIntegerType());                           | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 857 |      | 
 | 858 |     // The LHS of a constant expr is always evaluated and needed. | 
| Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 859 |     if (!Exp->getLHS()->isIntegerConstantExpr(LHS, Ctx, Loc, isEvaluated)) | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 860 |       return false; | 
 | 861 |      | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 862 |     // The short-circuiting &&/|| operators don't necessarily evaluate their | 
 | 863 |     // RHS.  Make sure to pass isEvaluated down correctly. | 
 | 864 |     if (Exp->isLogicalOp()) { | 
 | 865 |       bool RHSEval; | 
 | 866 |       if (Exp->getOpcode() == BinaryOperator::LAnd) | 
| Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 867 |         RHSEval = LHS != 0; | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 868 |       else { | 
 | 869 |         assert(Exp->getOpcode() == BinaryOperator::LOr &&"Unexpected logical"); | 
| Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 870 |         RHSEval = LHS == 0; | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 871 |       } | 
 | 872 |        | 
| Chris Lattner | 590b664 | 2007-07-15 23:26:56 +0000 | [diff] [blame] | 873 |       if (!Exp->getRHS()->isIntegerConstantExpr(RHS, Ctx, Loc, | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 874 |                                                 isEvaluated & RHSEval)) | 
 | 875 |         return false; | 
 | 876 |     } else { | 
| Chris Lattner | 590b664 | 2007-07-15 23:26:56 +0000 | [diff] [blame] | 877 |       if (!Exp->getRHS()->isIntegerConstantExpr(RHS, Ctx, Loc, isEvaluated)) | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 878 |         return false; | 
 | 879 |     } | 
 | 880 |      | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 881 |     switch (Exp->getOpcode()) { | 
 | 882 |     default: | 
 | 883 |       if (Loc) *Loc = getLocStart(); | 
 | 884 |       return false; | 
 | 885 |     case BinaryOperator::Mul: | 
| Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 886 |       Result = LHS * RHS; | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 887 |       break; | 
 | 888 |     case BinaryOperator::Div: | 
 | 889 |       if (RHS == 0) { | 
 | 890 |         if (!isEvaluated) break; | 
 | 891 |         if (Loc) *Loc = getLocStart(); | 
 | 892 |         return false; | 
 | 893 |       } | 
| Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 894 |       Result = LHS / RHS; | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 895 |       break; | 
 | 896 |     case BinaryOperator::Rem: | 
 | 897 |       if (RHS == 0) { | 
 | 898 |         if (!isEvaluated) break; | 
 | 899 |         if (Loc) *Loc = getLocStart(); | 
 | 900 |         return false; | 
 | 901 |       } | 
| Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 902 |       Result = LHS % RHS; | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 903 |       break; | 
| Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 904 |     case BinaryOperator::Add: Result = LHS + RHS; break; | 
 | 905 |     case BinaryOperator::Sub: Result = LHS - RHS; break; | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 906 |     case BinaryOperator::Shl: | 
| Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 907 |       Result = LHS <<  | 
 | 908 |         static_cast<uint32_t>(RHS.getLimitedValue(LHS.getBitWidth()-1)); | 
 | 909 |     break; | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 910 |     case BinaryOperator::Shr: | 
| Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 911 |       Result = LHS >> | 
 | 912 |         static_cast<uint32_t>(RHS.getLimitedValue(LHS.getBitWidth()-1)); | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 913 |       break; | 
| Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 914 |     case BinaryOperator::LT:  Result = LHS < RHS; break; | 
 | 915 |     case BinaryOperator::GT:  Result = LHS > RHS; break; | 
 | 916 |     case BinaryOperator::LE:  Result = LHS <= RHS; break; | 
 | 917 |     case BinaryOperator::GE:  Result = LHS >= RHS; break; | 
 | 918 |     case BinaryOperator::EQ:  Result = LHS == RHS; break; | 
 | 919 |     case BinaryOperator::NE:  Result = LHS != RHS; break; | 
 | 920 |     case BinaryOperator::And: Result = LHS & RHS; break; | 
 | 921 |     case BinaryOperator::Xor: Result = LHS ^ RHS; break; | 
 | 922 |     case BinaryOperator::Or:  Result = LHS | RHS; break; | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 923 |     case BinaryOperator::LAnd: | 
| Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 924 |       Result = LHS != 0 && RHS != 0; | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 925 |       break; | 
 | 926 |     case BinaryOperator::LOr: | 
| Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 927 |       Result = LHS != 0 || RHS != 0; | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 928 |       break; | 
 | 929 |        | 
 | 930 |     case BinaryOperator::Comma: | 
 | 931 |       // C99 6.6p3: "shall not contain assignment, ..., or comma operators, | 
 | 932 |       // *except* when they are contained within a subexpression that is not | 
 | 933 |       // evaluated".  Note that Assignment can never happen due to constraints | 
 | 934 |       // on the LHS subexpr, so we don't need to check it here. | 
 | 935 |       if (isEvaluated) { | 
 | 936 |         if (Loc) *Loc = getLocStart(); | 
 | 937 |         return false; | 
 | 938 |       } | 
 | 939 |        | 
 | 940 |       // The result of the constant expr is the RHS. | 
 | 941 |       Result = RHS; | 
 | 942 |       return true; | 
 | 943 |     } | 
 | 944 |      | 
 | 945 |     assert(!Exp->isAssignmentOp() && "LHS can't be a constant expr!"); | 
 | 946 |     break; | 
 | 947 |   } | 
| Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 948 |   case ImplicitCastExprClass: | 
| Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 949 |   case ExplicitCastExprClass: | 
 | 950 |   case CXXFunctionalCastExprClass: { | 
| Argyrios Kyrtzidis | 0835a3c | 2008-08-18 23:01:59 +0000 | [diff] [blame] | 951 |     const Expr *SubExpr = cast<CastExpr>(this)->getSubExpr(); | 
 | 952 |     SourceLocation CastLoc = getLocStart(); | 
| Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 953 |      | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 954 |     // C99 6.6p6: shall only convert arithmetic types to integer types. | 
| Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 955 |     if (!SubExpr->getType()->isArithmeticType() || | 
 | 956 |         !getType()->isIntegerType()) { | 
 | 957 |       if (Loc) *Loc = SubExpr->getLocStart(); | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 958 |       return false; | 
 | 959 |     } | 
| Chris Lattner | 987b15d | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 960 |  | 
| Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 961 |     uint32_t DestWidth = static_cast<uint32_t>(Ctx.getTypeSize(getType())); | 
| Chris Lattner | 987b15d | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 962 |      | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 963 |     // Handle simple integer->integer casts. | 
| Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 964 |     if (SubExpr->getType()->isIntegerType()) { | 
 | 965 |       if (!SubExpr->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated)) | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 966 |         return false; | 
| Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 967 |        | 
 | 968 |       // Figure out if this is a truncate, extend or noop cast. | 
| Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 969 |       // If the input is signed, do a sign extend, noop, or truncate. | 
| Chris Lattner | c0a356b | 2008-01-09 18:59:34 +0000 | [diff] [blame] | 970 |       if (getType()->isBooleanType()) { | 
 | 971 |         // Conversion to bool compares against zero. | 
 | 972 |         Result = Result != 0; | 
 | 973 |         Result.zextOrTrunc(DestWidth); | 
 | 974 |       } else if (SubExpr->getType()->isSignedIntegerType()) | 
| Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 975 |         Result.sextOrTrunc(DestWidth); | 
 | 976 |       else  // If the input is unsigned, do a zero extend, noop, or truncate. | 
 | 977 |         Result.zextOrTrunc(DestWidth); | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 978 |       break; | 
 | 979 |     } | 
 | 980 |      | 
 | 981 |     // Allow floating constants that are the immediate operands of casts or that | 
 | 982 |     // are parenthesized. | 
| Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 983 |     const Expr *Operand = SubExpr; | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 984 |     while (const ParenExpr *PE = dyn_cast<ParenExpr>(Operand)) | 
 | 985 |       Operand = PE->getSubExpr(); | 
| Chris Lattner | 987b15d | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 986 |  | 
 | 987 |     // If this isn't a floating literal, we can't handle it. | 
 | 988 |     const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(Operand); | 
 | 989 |     if (!FL) { | 
 | 990 |       if (Loc) *Loc = Operand->getLocStart(); | 
 | 991 |       return false; | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 992 |     } | 
| Chris Lattner | c0a356b | 2008-01-09 18:59:34 +0000 | [diff] [blame] | 993 |  | 
 | 994 |     // If the destination is boolean, compare against zero. | 
 | 995 |     if (getType()->isBooleanType()) { | 
 | 996 |       Result = !FL->getValue().isZero(); | 
 | 997 |       Result.zextOrTrunc(DestWidth); | 
 | 998 |       break; | 
 | 999 |     }      | 
| Chris Lattner | 987b15d | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 1000 |      | 
 | 1001 |     // Determine whether we are converting to unsigned or signed. | 
 | 1002 |     bool DestSigned = getType()->isSignedIntegerType(); | 
| Chris Lattner | ccc213f | 2007-09-26 00:47:26 +0000 | [diff] [blame] | 1003 |  | 
 | 1004 |     // TODO: Warn on overflow, but probably not here: isIntegerConstantExpr can | 
 | 1005 |     // be called multiple times per AST. | 
| Dale Johannesen | ee5a700 | 2008-10-09 23:02:32 +0000 | [diff] [blame] | 1006 |     uint64_t Space[4]; | 
 | 1007 |     bool ignored; | 
| Chris Lattner | ccc213f | 2007-09-26 00:47:26 +0000 | [diff] [blame] | 1008 |     (void)FL->getValue().convertToInteger(Space, DestWidth, DestSigned, | 
| Dale Johannesen | ee5a700 | 2008-10-09 23:02:32 +0000 | [diff] [blame] | 1009 |                                           llvm::APFloat::rmTowardZero, | 
 | 1010 |                                           &ignored); | 
| Chris Lattner | 987b15d | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 1011 |     Result = llvm::APInt(DestWidth, 4, Space); | 
 | 1012 |     break; | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1013 |   } | 
 | 1014 |   case ConditionalOperatorClass: { | 
 | 1015 |     const ConditionalOperator *Exp = cast<ConditionalOperator>(this); | 
 | 1016 |      | 
| Chris Lattner | 590b664 | 2007-07-15 23:26:56 +0000 | [diff] [blame] | 1017 |     if (!Exp->getCond()->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated)) | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1018 |       return false; | 
 | 1019 |      | 
 | 1020 |     const Expr *TrueExp  = Exp->getLHS(); | 
 | 1021 |     const Expr *FalseExp = Exp->getRHS(); | 
 | 1022 |     if (Result == 0) std::swap(TrueExp, FalseExp); | 
 | 1023 |      | 
 | 1024 |     // Evaluate the false one first, discard the result. | 
| Anders Carlsson | 3907323 | 2007-11-30 19:04:31 +0000 | [diff] [blame] | 1025 |     if (FalseExp && !FalseExp->isIntegerConstantExpr(Result, Ctx, Loc, false)) | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1026 |       return false; | 
 | 1027 |     // Evalute the true one, capture the result. | 
| Anders Carlsson | 3907323 | 2007-11-30 19:04:31 +0000 | [diff] [blame] | 1028 |     if (TrueExp &&  | 
 | 1029 |         !TrueExp->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated)) | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1030 |       return false; | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1031 |     break; | 
 | 1032 |   } | 
| Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 1033 |   case CXXDefaultArgExprClass: | 
 | 1034 |     return cast<CXXDefaultArgExpr>(this) | 
 | 1035 |              ->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated); | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1036 |   } | 
 | 1037 |  | 
 | 1038 |   // Cases that are valid constant exprs fall through to here. | 
 | 1039 |   Result.setIsUnsigned(getType()->isUnsignedIntegerType()); | 
 | 1040 |   return true; | 
 | 1041 | } | 
 | 1042 |  | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1043 | /// isNullPointerConstant - C99 6.3.2.3p3 -  Return true if this is either an | 
 | 1044 | /// integer constant expression with the value zero, or if this is one that is | 
 | 1045 | /// cast to void*. | 
| Chris Lattner | 590b664 | 2007-07-15 23:26:56 +0000 | [diff] [blame] | 1046 | bool Expr::isNullPointerConstant(ASTContext &Ctx) const { | 
| Steve Naroff | aa58f00 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 1047 |   // Strip off a cast to void*, if it exists. | 
| Argyrios Kyrtzidis | 0835a3c | 2008-08-18 23:01:59 +0000 | [diff] [blame] | 1048 |   if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) { | 
| Steve Naroff | aa58f00 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 1049 |     // Check that it is a cast to void*. | 
| Eli Friedman | 4b3f9b3 | 2008-02-13 17:29:58 +0000 | [diff] [blame] | 1050 |     if (const PointerType *PT = CE->getType()->getAsPointerType()) { | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1051 |       QualType Pointee = PT->getPointeeType(); | 
| Chris Lattner | f46699c | 2008-02-20 20:55:12 +0000 | [diff] [blame] | 1052 |       if (Pointee.getCVRQualifiers() == 0 &&  | 
 | 1053 |           Pointee->isVoidType() &&                                 // to void* | 
| Steve Naroff | aa58f00 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 1054 |           CE->getSubExpr()->getType()->isIntegerType())            // from int. | 
 | 1055 |         return CE->getSubExpr()->isNullPointerConstant(Ctx); | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1056 |     } | 
| Steve Naroff | aa58f00 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 1057 |   } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) { | 
 | 1058 |     // Ignore the ImplicitCastExpr type entirely. | 
 | 1059 |     return ICE->getSubExpr()->isNullPointerConstant(Ctx); | 
 | 1060 |   } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) { | 
 | 1061 |     // Accept ((void*)0) as a null pointer constant, as many other | 
 | 1062 |     // implementations do. | 
 | 1063 |     return PE->getSubExpr()->isNullPointerConstant(Ctx); | 
| Chris Lattner | 8123a95 | 2008-04-10 02:22:51 +0000 | [diff] [blame] | 1064 |   } else if (const CXXDefaultArgExpr *DefaultArg  | 
 | 1065 |                = dyn_cast<CXXDefaultArgExpr>(this)) { | 
| Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 1066 |     // See through default argument expressions | 
 | 1067 |     return DefaultArg->getExpr()->isNullPointerConstant(Ctx); | 
| Steve Naroff | aaffbf7 | 2008-01-14 02:53:34 +0000 | [diff] [blame] | 1068 |   } | 
| Steve Naroff | aa58f00 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 1069 |    | 
 | 1070 |   // This expression must be an integer type. | 
 | 1071 |   if (!getType()->isIntegerType()) | 
 | 1072 |     return false; | 
 | 1073 |    | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1074 |   // If we have an integer constant expression, we need to *evaluate* it and | 
 | 1075 |   // test for the value 0. | 
 | 1076 |   llvm::APSInt Val(32); | 
| Steve Naroff | aa58f00 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 1077 |   return isIntegerConstantExpr(Val, Ctx, 0, true) && Val == 0; | 
| Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1078 | } | 
| Steve Naroff | 31a4584 | 2007-07-28 23:10:27 +0000 | [diff] [blame] | 1079 |  | 
| Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1080 | unsigned ExtVectorElementExpr::getNumElements() const { | 
| Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1081 |   if (const VectorType *VT = getType()->getAsVectorType()) | 
 | 1082 |     return VT->getNumElements(); | 
 | 1083 |   return 1; | 
| Chris Lattner | 4d0ac88 | 2007-08-03 16:00:20 +0000 | [diff] [blame] | 1084 | } | 
 | 1085 |  | 
| Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1086 | /// containsDuplicateElements - Return true if any element access is repeated. | 
| Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1087 | bool ExtVectorElementExpr::containsDuplicateElements() const { | 
| Steve Naroff | fec0b49 | 2007-07-30 03:29:09 +0000 | [diff] [blame] | 1088 |   const char *compStr = Accessor.getName(); | 
 | 1089 |   unsigned length = strlen(compStr); | 
 | 1090 |    | 
 | 1091 |   for (unsigned i = 0; i < length-1; i++) { | 
 | 1092 |     const char *s = compStr+i; | 
 | 1093 |     for (const char c = *s++; *s; s++) | 
 | 1094 |       if (c == *s)  | 
 | 1095 |         return true; | 
 | 1096 |   } | 
 | 1097 |   return false; | 
 | 1098 | } | 
| Chris Lattner | b8f849d | 2007-08-02 23:36:59 +0000 | [diff] [blame] | 1099 |  | 
| Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1100 | /// getEncodedElementAccess - We encode the fields as a llvm ConstantArray. | 
| Nate Begeman | 3b8d116 | 2008-05-13 21:03:02 +0000 | [diff] [blame] | 1101 | void ExtVectorElementExpr::getEncodedElementAccess( | 
 | 1102 |                                   llvm::SmallVectorImpl<unsigned> &Elts) const { | 
| Chris Lattner | b8f849d | 2007-08-02 23:36:59 +0000 | [diff] [blame] | 1103 |   const char *compStr = Accessor.getName(); | 
| Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1104 |   | 
 | 1105 |   bool isHi =   !strcmp(compStr, "hi"); | 
 | 1106 |   bool isLo =   !strcmp(compStr, "lo"); | 
 | 1107 |   bool isEven = !strcmp(compStr, "e"); | 
 | 1108 |   bool isOdd  = !strcmp(compStr, "o"); | 
 | 1109 |      | 
 | 1110 |   for (unsigned i = 0, e = getNumElements(); i != e; ++i) { | 
 | 1111 |     uint64_t Index; | 
 | 1112 |      | 
 | 1113 |     if (isHi) | 
 | 1114 |       Index = e + i; | 
 | 1115 |     else if (isLo) | 
 | 1116 |       Index = i; | 
 | 1117 |     else if (isEven) | 
 | 1118 |       Index = 2 * i; | 
 | 1119 |     else if (isOdd) | 
 | 1120 |       Index = 2 * i + 1; | 
 | 1121 |     else | 
 | 1122 |       Index = ExtVectorType::getAccessorIdx(compStr[i]); | 
| Chris Lattner | b8f849d | 2007-08-02 23:36:59 +0000 | [diff] [blame] | 1123 |  | 
| Nate Begeman | 3b8d116 | 2008-05-13 21:03:02 +0000 | [diff] [blame] | 1124 |     Elts.push_back(Index); | 
| Chris Lattner | b8f849d | 2007-08-02 23:36:59 +0000 | [diff] [blame] | 1125 |   } | 
| Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1126 | } | 
 | 1127 |  | 
| Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1128 | // constructor for instance messages. | 
| Steve Naroff | bcfb06a | 2007-09-28 22:22:11 +0000 | [diff] [blame] | 1129 | ObjCMessageExpr::ObjCMessageExpr(Expr *receiver, Selector selInfo, | 
| Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1130 |                 QualType retType, ObjCMethodDecl *mproto, | 
| Steve Naroff | db611d5 | 2007-11-03 16:37:59 +0000 | [diff] [blame] | 1131 |                 SourceLocation LBrac, SourceLocation RBrac, | 
| Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1132 |                 Expr **ArgExprs, unsigned nargs) | 
| Steve Naroff | db611d5 | 2007-11-03 16:37:59 +0000 | [diff] [blame] | 1133 |   : Expr(ObjCMessageExprClass, retType), SelName(selInfo),  | 
| Ted Kremenek | ea958e57 | 2008-05-01 17:26:20 +0000 | [diff] [blame] | 1134 |     MethodProto(mproto) { | 
| Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1135 |   NumArgs = nargs; | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1136 |   SubExprs = new Stmt*[NumArgs+1]; | 
| Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1137 |   SubExprs[RECEIVER] = receiver; | 
| Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1138 |   if (NumArgs) { | 
 | 1139 |     for (unsigned i = 0; i != NumArgs; ++i) | 
| Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1140 |       SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]); | 
 | 1141 |   } | 
| Steve Naroff | 563477d | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 1142 |   LBracloc = LBrac; | 
 | 1143 |   RBracloc = RBrac; | 
 | 1144 | } | 
 | 1145 |  | 
| Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1146 | // constructor for class messages.  | 
 | 1147 | // FIXME: clsName should be typed to ObjCInterfaceType | 
| Steve Naroff | bcfb06a | 2007-09-28 22:22:11 +0000 | [diff] [blame] | 1148 | ObjCMessageExpr::ObjCMessageExpr(IdentifierInfo *clsName, Selector selInfo, | 
| Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1149 |                 QualType retType, ObjCMethodDecl *mproto, | 
| Steve Naroff | db611d5 | 2007-11-03 16:37:59 +0000 | [diff] [blame] | 1150 |                 SourceLocation LBrac, SourceLocation RBrac, | 
| Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1151 |                 Expr **ArgExprs, unsigned nargs) | 
| Steve Naroff | db611d5 | 2007-11-03 16:37:59 +0000 | [diff] [blame] | 1152 |   : Expr(ObjCMessageExprClass, retType), SelName(selInfo),  | 
| Ted Kremenek | ea958e57 | 2008-05-01 17:26:20 +0000 | [diff] [blame] | 1153 |     MethodProto(mproto) { | 
| Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1154 |   NumArgs = nargs; | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1155 |   SubExprs = new Stmt*[NumArgs+1]; | 
| Ted Kremenek | 4df728e | 2008-06-24 15:50:53 +0000 | [diff] [blame] | 1156 |   SubExprs[RECEIVER] = (Expr*) ((uintptr_t) clsName | IsClsMethDeclUnknown); | 
| Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1157 |   if (NumArgs) { | 
 | 1158 |     for (unsigned i = 0; i != NumArgs; ++i) | 
| Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1159 |       SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]); | 
 | 1160 |   } | 
| Steve Naroff | 563477d | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 1161 |   LBracloc = LBrac; | 
 | 1162 |   RBracloc = RBrac; | 
 | 1163 | } | 
 | 1164 |  | 
| Ted Kremenek | 4df728e | 2008-06-24 15:50:53 +0000 | [diff] [blame] | 1165 | // constructor for class messages.  | 
 | 1166 | ObjCMessageExpr::ObjCMessageExpr(ObjCInterfaceDecl *cls, Selector selInfo, | 
 | 1167 |                                  QualType retType, ObjCMethodDecl *mproto, | 
 | 1168 |                                  SourceLocation LBrac, SourceLocation RBrac, | 
 | 1169 |                                  Expr **ArgExprs, unsigned nargs) | 
 | 1170 | : Expr(ObjCMessageExprClass, retType), SelName(selInfo),  | 
 | 1171 | MethodProto(mproto) { | 
 | 1172 |   NumArgs = nargs; | 
 | 1173 |   SubExprs = new Stmt*[NumArgs+1]; | 
 | 1174 |   SubExprs[RECEIVER] = (Expr*) ((uintptr_t) cls | IsClsMethDeclKnown); | 
 | 1175 |   if (NumArgs) { | 
 | 1176 |     for (unsigned i = 0; i != NumArgs; ++i) | 
 | 1177 |       SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]); | 
 | 1178 |   } | 
 | 1179 |   LBracloc = LBrac; | 
 | 1180 |   RBracloc = RBrac; | 
 | 1181 | } | 
 | 1182 |  | 
 | 1183 | ObjCMessageExpr::ClassInfo ObjCMessageExpr::getClassInfo() const { | 
 | 1184 |   uintptr_t x = (uintptr_t) SubExprs[RECEIVER]; | 
 | 1185 |   switch (x & Flags) { | 
 | 1186 |     default: | 
 | 1187 |       assert(false && "Invalid ObjCMessageExpr."); | 
 | 1188 |     case IsInstMeth: | 
 | 1189 |       return ClassInfo(0, 0); | 
 | 1190 |     case IsClsMethDeclUnknown: | 
 | 1191 |       return ClassInfo(0, (IdentifierInfo*) (x & ~Flags)); | 
 | 1192 |     case IsClsMethDeclKnown: { | 
 | 1193 |       ObjCInterfaceDecl* D = (ObjCInterfaceDecl*) (x & ~Flags); | 
 | 1194 |       return ClassInfo(D, D->getIdentifier()); | 
 | 1195 |     } | 
 | 1196 |   } | 
 | 1197 | } | 
 | 1198 |  | 
| Chris Lattner | 27437ca | 2007-10-25 00:29:32 +0000 | [diff] [blame] | 1199 | bool ChooseExpr::isConditionTrue(ASTContext &C) const { | 
| Daniel Dunbar | 32442bb | 2008-08-13 23:47:13 +0000 | [diff] [blame] | 1200 |   return getCond()->getIntegerConstantExprValue(C) != 0; | 
| Chris Lattner | 27437ca | 2007-10-25 00:29:32 +0000 | [diff] [blame] | 1201 | } | 
 | 1202 |  | 
| Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1203 | static int64_t evaluateOffsetOf(ASTContext& C, const Expr *E) | 
 | 1204 | { | 
 | 1205 |   if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) { | 
 | 1206 |     QualType Ty = ME->getBase()->getType(); | 
 | 1207 |      | 
 | 1208 |     RecordDecl *RD = Ty->getAsRecordType()->getDecl(); | 
| Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1209 |     const ASTRecordLayout &RL = C.getASTRecordLayout(RD); | 
| Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1210 |     FieldDecl *FD = ME->getMemberDecl(); | 
 | 1211 |      | 
 | 1212 |     // FIXME: This is linear time. | 
 | 1213 |     unsigned i = 0, e = 0; | 
 | 1214 |     for (i = 0, e = RD->getNumMembers(); i != e; i++) { | 
 | 1215 |       if (RD->getMember(i) == FD) | 
 | 1216 |         break; | 
 | 1217 |     } | 
 | 1218 |      | 
 | 1219 |     return RL.getFieldOffset(i) + evaluateOffsetOf(C, ME->getBase()); | 
 | 1220 |   } else if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E)) { | 
 | 1221 |     const Expr *Base = ASE->getBase(); | 
| Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1222 |      | 
| Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1223 |     int64_t size = C.getTypeSize(ASE->getType()); | 
| Daniel Dunbar | 32442bb | 2008-08-13 23:47:13 +0000 | [diff] [blame] | 1224 |     size *= ASE->getIdx()->getIntegerConstantExprValue(C).getSExtValue(); | 
| Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1225 |      | 
 | 1226 |     return size + evaluateOffsetOf(C, Base); | 
 | 1227 |   } else if (isa<CompoundLiteralExpr>(E)) | 
 | 1228 |     return 0;   | 
 | 1229 |  | 
 | 1230 |   assert(0 && "Unknown offsetof subexpression!"); | 
 | 1231 |   return 0; | 
 | 1232 | } | 
 | 1233 |  | 
 | 1234 | int64_t UnaryOperator::evaluateOffsetOf(ASTContext& C) const | 
 | 1235 | { | 
 | 1236 |   assert(Opc == OffsetOf && "Unary operator not offsetof!"); | 
 | 1237 |    | 
| Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1238 |   unsigned CharSize = C.Target.getCharWidth(); | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1239 |   return ::evaluateOffsetOf(C, cast<Expr>(Val)) / CharSize; | 
| Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1240 | } | 
 | 1241 |  | 
| Daniel Dunbar | 9048891 | 2008-08-28 18:02:04 +0000 | [diff] [blame] | 1242 | void SizeOfAlignOfTypeExpr::Destroy(ASTContext& C) { | 
 | 1243 |   // Override default behavior of traversing children. We do not want | 
 | 1244 |   // to delete the type. | 
 | 1245 | } | 
 | 1246 |  | 
| Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1247 | //===----------------------------------------------------------------------===// | 
| Ted Kremenek | ce2fc3a | 2008-10-27 18:40:21 +0000 | [diff] [blame^] | 1248 | //  ExprIterator. | 
 | 1249 | //===----------------------------------------------------------------------===// | 
 | 1250 |  | 
 | 1251 | Expr* ExprIterator::operator[](size_t idx) { return cast<Expr>(I[idx]); } | 
 | 1252 | Expr* ExprIterator::operator*() const { return cast<Expr>(*I); } | 
 | 1253 | Expr* ExprIterator::operator->() const { return cast<Expr>(*I); } | 
 | 1254 | const Expr* ConstExprIterator::operator[](size_t idx) const { | 
 | 1255 |   return cast<Expr>(I[idx]); | 
 | 1256 | } | 
 | 1257 | const Expr* ConstExprIterator::operator*() const { return cast<Expr>(*I); } | 
 | 1258 | const Expr* ConstExprIterator::operator->() const { return cast<Expr>(*I); } | 
 | 1259 |  | 
 | 1260 | //===----------------------------------------------------------------------===// | 
| Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1261 | //  Child Iterators for iterating over subexpressions/substatements | 
 | 1262 | //===----------------------------------------------------------------------===// | 
 | 1263 |  | 
 | 1264 | // DeclRefExpr | 
| Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1265 | Stmt::child_iterator DeclRefExpr::child_begin() { return child_iterator(); } | 
 | 1266 | Stmt::child_iterator DeclRefExpr::child_end() { return child_iterator(); } | 
| Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1267 |  | 
| Steve Naroff | 7779db4 | 2007-11-12 14:29:37 +0000 | [diff] [blame] | 1268 | // ObjCIvarRefExpr | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1269 | Stmt::child_iterator ObjCIvarRefExpr::child_begin() { return &Base; } | 
 | 1270 | Stmt::child_iterator ObjCIvarRefExpr::child_end() { return &Base+1; } | 
| Steve Naroff | 7779db4 | 2007-11-12 14:29:37 +0000 | [diff] [blame] | 1271 |  | 
| Steve Naroff | e3e9add | 2008-06-02 23:03:37 +0000 | [diff] [blame] | 1272 | // ObjCPropertyRefExpr | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1273 | Stmt::child_iterator ObjCPropertyRefExpr::child_begin() { return &Base; } | 
 | 1274 | Stmt::child_iterator ObjCPropertyRefExpr::child_end() { return &Base+1; } | 
| Steve Naroff | ae78407 | 2008-05-30 00:40:33 +0000 | [diff] [blame] | 1275 |  | 
| Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 1276 | // PredefinedExpr | 
 | 1277 | Stmt::child_iterator PredefinedExpr::child_begin() { return child_iterator(); } | 
 | 1278 | Stmt::child_iterator PredefinedExpr::child_end() { return child_iterator(); } | 
| Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1279 |  | 
 | 1280 | // IntegerLiteral | 
| Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1281 | Stmt::child_iterator IntegerLiteral::child_begin() { return child_iterator(); } | 
 | 1282 | Stmt::child_iterator IntegerLiteral::child_end() { return child_iterator(); } | 
| Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1283 |  | 
 | 1284 | // CharacterLiteral | 
| Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1285 | Stmt::child_iterator CharacterLiteral::child_begin() { return child_iterator(); } | 
 | 1286 | Stmt::child_iterator CharacterLiteral::child_end() { return child_iterator(); } | 
| Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1287 |  | 
 | 1288 | // FloatingLiteral | 
| Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1289 | Stmt::child_iterator FloatingLiteral::child_begin() { return child_iterator(); } | 
 | 1290 | Stmt::child_iterator FloatingLiteral::child_end() { return child_iterator(); } | 
| Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1291 |  | 
| Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1292 | // ImaginaryLiteral | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1293 | Stmt::child_iterator ImaginaryLiteral::child_begin() { return &Val; } | 
 | 1294 | Stmt::child_iterator ImaginaryLiteral::child_end() { return &Val+1; } | 
| Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1295 |  | 
| Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1296 | // StringLiteral | 
| Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1297 | Stmt::child_iterator StringLiteral::child_begin() { return child_iterator(); } | 
 | 1298 | Stmt::child_iterator StringLiteral::child_end() { return child_iterator(); } | 
| Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1299 |  | 
 | 1300 | // ParenExpr | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1301 | Stmt::child_iterator ParenExpr::child_begin() { return &Val; } | 
 | 1302 | Stmt::child_iterator ParenExpr::child_end() { return &Val+1; } | 
| Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1303 |  | 
 | 1304 | // UnaryOperator | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1305 | Stmt::child_iterator UnaryOperator::child_begin() { return &Val; } | 
 | 1306 | Stmt::child_iterator UnaryOperator::child_end() { return &Val+1; } | 
| Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1307 |  | 
 | 1308 | // SizeOfAlignOfTypeExpr | 
| Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1309 | Stmt::child_iterator SizeOfAlignOfTypeExpr::child_begin() {  | 
| Ted Kremenek | 699e9fb | 2007-12-14 22:52:23 +0000 | [diff] [blame] | 1310 |   // If the type is a VLA type (and not a typedef), the size expression of the | 
 | 1311 |   // VLA needs to be treated as an executable expression. | 
 | 1312 |   if (VariableArrayType* T = dyn_cast<VariableArrayType>(Ty.getTypePtr())) | 
 | 1313 |     return child_iterator(T); | 
 | 1314 |   else | 
| Ted Kremenek | 8a213de | 2008-10-07 23:35:42 +0000 | [diff] [blame] | 1315 |     return child_iterator();  | 
| Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1316 | } | 
 | 1317 | Stmt::child_iterator SizeOfAlignOfTypeExpr::child_end() { | 
| Ted Kremenek | 8a213de | 2008-10-07 23:35:42 +0000 | [diff] [blame] | 1318 |   return child_iterator();  | 
| Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1319 | } | 
| Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1320 |  | 
 | 1321 | // ArraySubscriptExpr | 
| Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1322 | Stmt::child_iterator ArraySubscriptExpr::child_begin() { | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1323 |   return &SubExprs[0]; | 
| Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1324 | } | 
| Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1325 | Stmt::child_iterator ArraySubscriptExpr::child_end() { | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1326 |   return &SubExprs[0]+END_EXPR; | 
| Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1327 | } | 
 | 1328 |  | 
 | 1329 | // CallExpr | 
| Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1330 | Stmt::child_iterator CallExpr::child_begin() { | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1331 |   return &SubExprs[0]; | 
| Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1332 | } | 
| Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1333 | Stmt::child_iterator CallExpr::child_end() { | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1334 |   return &SubExprs[0]+NumArgs+ARGS_START; | 
| Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1335 | } | 
| Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1336 |  | 
 | 1337 | // MemberExpr | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1338 | Stmt::child_iterator MemberExpr::child_begin() { return &Base; } | 
 | 1339 | Stmt::child_iterator MemberExpr::child_end() { return &Base+1; } | 
| Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1340 |  | 
| Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1341 | // ExtVectorElementExpr | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1342 | Stmt::child_iterator ExtVectorElementExpr::child_begin() { return &Base; } | 
 | 1343 | Stmt::child_iterator ExtVectorElementExpr::child_end() { return &Base+1; } | 
| Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1344 |  | 
 | 1345 | // CompoundLiteralExpr | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1346 | Stmt::child_iterator CompoundLiteralExpr::child_begin() { return &Init; } | 
 | 1347 | Stmt::child_iterator CompoundLiteralExpr::child_end() { return &Init+1; } | 
| Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1348 |  | 
| Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1349 | // CastExpr | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1350 | Stmt::child_iterator CastExpr::child_begin() { return &Op; } | 
 | 1351 | Stmt::child_iterator CastExpr::child_end() { return &Op+1; } | 
| Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1352 |  | 
 | 1353 | // BinaryOperator | 
 | 1354 | Stmt::child_iterator BinaryOperator::child_begin() { | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1355 |   return &SubExprs[0]; | 
| Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1356 | } | 
| Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1357 | Stmt::child_iterator BinaryOperator::child_end() { | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1358 |   return &SubExprs[0]+END_EXPR; | 
| Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1359 | } | 
 | 1360 |  | 
 | 1361 | // ConditionalOperator | 
 | 1362 | Stmt::child_iterator ConditionalOperator::child_begin() { | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1363 |   return &SubExprs[0]; | 
| Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1364 | } | 
| Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1365 | Stmt::child_iterator ConditionalOperator::child_end() { | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1366 |   return &SubExprs[0]+END_EXPR; | 
| Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1367 | } | 
 | 1368 |  | 
 | 1369 | // AddrLabelExpr | 
| Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1370 | Stmt::child_iterator AddrLabelExpr::child_begin() { return child_iterator(); } | 
 | 1371 | Stmt::child_iterator AddrLabelExpr::child_end() { return child_iterator(); } | 
| Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1372 |  | 
| Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1373 | // StmtExpr | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1374 | Stmt::child_iterator StmtExpr::child_begin() { return &SubStmt; } | 
 | 1375 | Stmt::child_iterator StmtExpr::child_end() { return &SubStmt+1; } | 
| Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1376 |  | 
 | 1377 | // TypesCompatibleExpr | 
| Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1378 | Stmt::child_iterator TypesCompatibleExpr::child_begin() { | 
 | 1379 |   return child_iterator(); | 
 | 1380 | } | 
 | 1381 |  | 
 | 1382 | Stmt::child_iterator TypesCompatibleExpr::child_end() { | 
 | 1383 |   return child_iterator(); | 
 | 1384 | } | 
| Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1385 |  | 
 | 1386 | // ChooseExpr | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1387 | Stmt::child_iterator ChooseExpr::child_begin() { return &SubExprs[0]; } | 
 | 1388 | Stmt::child_iterator ChooseExpr::child_end() { return &SubExprs[0]+END_EXPR; } | 
| Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1389 |  | 
| Nate Begeman | e2ce1d9 | 2008-01-17 17:46:27 +0000 | [diff] [blame] | 1390 | // OverloadExpr | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1391 | Stmt::child_iterator OverloadExpr::child_begin() { return &SubExprs[0]; } | 
 | 1392 | Stmt::child_iterator OverloadExpr::child_end() { return &SubExprs[0]+NumExprs; } | 
| Nate Begeman | e2ce1d9 | 2008-01-17 17:46:27 +0000 | [diff] [blame] | 1393 |  | 
| Eli Friedman | d38617c | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 1394 | // ShuffleVectorExpr | 
 | 1395 | Stmt::child_iterator ShuffleVectorExpr::child_begin() { | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1396 |   return &SubExprs[0]; | 
| Eli Friedman | d38617c | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 1397 | } | 
 | 1398 | Stmt::child_iterator ShuffleVectorExpr::child_end() { | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1399 |   return &SubExprs[0]+NumExprs; | 
| Eli Friedman | d38617c | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 1400 | } | 
 | 1401 |  | 
| Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 1402 | // VAArgExpr | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1403 | Stmt::child_iterator VAArgExpr::child_begin() { return &Val; } | 
 | 1404 | Stmt::child_iterator VAArgExpr::child_end() { return &Val+1; } | 
| Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 1405 |  | 
| Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 1406 | // InitListExpr | 
 | 1407 | Stmt::child_iterator InitListExpr::child_begin() { | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1408 |   return InitExprs.size() ? &InitExprs[0] : 0; | 
| Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 1409 | } | 
 | 1410 | Stmt::child_iterator InitListExpr::child_end() { | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1411 |   return InitExprs.size() ? &InitExprs[0] + InitExprs.size() : 0; | 
| Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 1412 | } | 
 | 1413 |  | 
| Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1414 | // ObjCStringLiteral | 
| Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1415 | Stmt::child_iterator ObjCStringLiteral::child_begin() {  | 
 | 1416 |   return child_iterator(); | 
 | 1417 | } | 
 | 1418 | Stmt::child_iterator ObjCStringLiteral::child_end() { | 
 | 1419 |   return child_iterator(); | 
 | 1420 | } | 
| Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1421 |  | 
 | 1422 | // ObjCEncodeExpr | 
| Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1423 | Stmt::child_iterator ObjCEncodeExpr::child_begin() { return child_iterator(); } | 
 | 1424 | Stmt::child_iterator ObjCEncodeExpr::child_end() { return child_iterator(); } | 
| Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1425 |  | 
| Fariborz Jahanian | b62f681 | 2007-10-16 20:40:23 +0000 | [diff] [blame] | 1426 | // ObjCSelectorExpr | 
| Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1427 | Stmt::child_iterator ObjCSelectorExpr::child_begin() {  | 
 | 1428 |   return child_iterator(); | 
 | 1429 | } | 
 | 1430 | Stmt::child_iterator ObjCSelectorExpr::child_end() { | 
 | 1431 |   return child_iterator(); | 
 | 1432 | } | 
| Fariborz Jahanian | b62f681 | 2007-10-16 20:40:23 +0000 | [diff] [blame] | 1433 |  | 
| Fariborz Jahanian | 390d50a | 2007-10-17 16:58:11 +0000 | [diff] [blame] | 1434 | // ObjCProtocolExpr | 
| Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1435 | Stmt::child_iterator ObjCProtocolExpr::child_begin() { | 
 | 1436 |   return child_iterator(); | 
 | 1437 | } | 
 | 1438 | Stmt::child_iterator ObjCProtocolExpr::child_end() { | 
 | 1439 |   return child_iterator(); | 
 | 1440 | } | 
| Fariborz Jahanian | 390d50a | 2007-10-17 16:58:11 +0000 | [diff] [blame] | 1441 |  | 
| Steve Naroff | 563477d | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 1442 | // ObjCMessageExpr | 
| Ted Kremenek | ea958e57 | 2008-05-01 17:26:20 +0000 | [diff] [blame] | 1443 | Stmt::child_iterator ObjCMessageExpr::child_begin() {   | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1444 |   return getReceiver() ? &SubExprs[0] : &SubExprs[0] + ARGS_START; | 
| Steve Naroff | 563477d | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 1445 | } | 
 | 1446 | Stmt::child_iterator ObjCMessageExpr::child_end() { | 
| Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1447 |   return &SubExprs[0]+ARGS_START+getNumArgs(); | 
| Steve Naroff | 563477d | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 1448 | } | 
 | 1449 |  | 
| Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 1450 | // Blocks | 
| Steve Naroff | 56ee689 | 2008-10-08 17:01:13 +0000 | [diff] [blame] | 1451 | Stmt::child_iterator BlockExpr::child_begin() { return child_iterator(); } | 
 | 1452 | Stmt::child_iterator BlockExpr::child_end() { return child_iterator(); } | 
| Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 1453 |  | 
| Ted Kremenek | 9da13f9 | 2008-09-26 23:24:14 +0000 | [diff] [blame] | 1454 | Stmt::child_iterator BlockDeclRefExpr::child_begin() { return child_iterator();} | 
 | 1455 | Stmt::child_iterator BlockDeclRefExpr::child_end() { return child_iterator(); } |