Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 1 | //===--- ExprConstant.cpp - Expression Constant Evaluator -----------------===// |
Anders Carlsson | c7436af | 2008-07-03 04:20:39 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the Expr constant evaluator. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "clang/AST/APValue.h" |
| 15 | #include "clang/AST/ASTContext.h" |
Seo Sanghyeon | efddb9c | 2008-07-08 07:23:12 +0000 | [diff] [blame] | 16 | #include "clang/AST/StmtVisitor.h" |
Chris Lattner | 82437da | 2008-07-12 00:14:42 +0000 | [diff] [blame] | 17 | #include "clang/Basic/Diagnostic.h" |
Anders Carlsson | c032801 | 2008-07-08 05:49:43 +0000 | [diff] [blame] | 18 | #include "clang/Basic/TargetInfo.h" |
Anders Carlsson | cad17b5 | 2008-07-08 05:13:58 +0000 | [diff] [blame] | 19 | #include "llvm/Support/Compiler.h" |
Anders Carlsson | c7436af | 2008-07-03 04:20:39 +0000 | [diff] [blame] | 20 | using namespace clang; |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 21 | using llvm::APSInt; |
Eli Friedman | 2f44549 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 22 | using llvm::APFloat; |
Anders Carlsson | c7436af | 2008-07-03 04:20:39 +0000 | [diff] [blame] | 23 | |
Chris Lattner | 422373c | 2008-07-11 22:52:41 +0000 | [diff] [blame] | 24 | /// EvalInfo - This is a private struct used by the evaluator to capture |
| 25 | /// information about a subexpression as it is folded. It retains information |
| 26 | /// about the AST context, but also maintains information about the folded |
| 27 | /// expression. |
| 28 | /// |
| 29 | /// If an expression could be evaluated, it is still possible it is not a C |
| 30 | /// "integer constant expression" or constant expression. If not, this struct |
| 31 | /// captures information about how and why not. |
| 32 | /// |
| 33 | /// One bit of information passed *into* the request for constant folding |
| 34 | /// indicates whether the subexpression is "evaluated" or not according to C |
| 35 | /// rules. For example, the RHS of (0 && foo()) is not evaluated. We can |
| 36 | /// evaluate the expression regardless of what the RHS is, but C only allows |
| 37 | /// certain things in certain situations. |
| 38 | struct EvalInfo { |
| 39 | ASTContext &Ctx; |
| 40 | |
| 41 | /// isEvaluated - True if the subexpression is required to be evaluated, false |
| 42 | /// if it is short-circuited (according to C rules). |
| 43 | bool isEvaluated; |
| 44 | |
Chris Lattner | 82437da | 2008-07-12 00:14:42 +0000 | [diff] [blame] | 45 | /// ICEDiag - If the expression is unfoldable, then ICEDiag contains the |
| 46 | /// error diagnostic indicating why it is not foldable and DiagLoc indicates a |
| 47 | /// caret position for the error. If it is foldable, but the expression is |
| 48 | /// not an integer constant expression, ICEDiag contains the extension |
| 49 | /// diagnostic to emit which describes why it isn't an integer constant |
| 50 | /// expression. If this expression *is* an integer-constant-expr, then |
| 51 | /// ICEDiag is zero. |
Chris Lattner | 422373c | 2008-07-11 22:52:41 +0000 | [diff] [blame] | 52 | /// |
Chris Lattner | 82437da | 2008-07-12 00:14:42 +0000 | [diff] [blame] | 53 | /// The caller can choose to emit this diagnostic or not, depending on whether |
| 54 | /// they require an i-c-e or a constant or not. DiagLoc indicates the caret |
| 55 | /// position for the report. |
| 56 | /// |
| 57 | /// If ICEDiag is zero, then this expression is an i-c-e. |
Chris Lattner | 422373c | 2008-07-11 22:52:41 +0000 | [diff] [blame] | 58 | unsigned ICEDiag; |
| 59 | SourceLocation DiagLoc; |
| 60 | |
| 61 | EvalInfo(ASTContext &ctx) : Ctx(ctx), isEvaluated(true), ICEDiag(0) {} |
| 62 | }; |
| 63 | |
| 64 | |
| 65 | static bool EvaluatePointer(const Expr *E, APValue &Result, EvalInfo &Info); |
| 66 | static bool EvaluateInteger(const Expr *E, APSInt &Result, EvalInfo &Info); |
Eli Friedman | 2f44549 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 67 | static bool EvaluateFloat(const Expr *E, APFloat &Result, EvalInfo &Info); |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 68 | |
| 69 | //===----------------------------------------------------------------------===// |
| 70 | // Pointer Evaluation |
| 71 | //===----------------------------------------------------------------------===// |
| 72 | |
Anders Carlsson | cad17b5 | 2008-07-08 05:13:58 +0000 | [diff] [blame] | 73 | namespace { |
Anders Carlsson | 02a34c3 | 2008-07-08 14:30:00 +0000 | [diff] [blame] | 74 | class VISIBILITY_HIDDEN PointerExprEvaluator |
| 75 | : public StmtVisitor<PointerExprEvaluator, APValue> { |
Chris Lattner | 422373c | 2008-07-11 22:52:41 +0000 | [diff] [blame] | 76 | EvalInfo &Info; |
Anders Carlsson | 02a34c3 | 2008-07-08 14:30:00 +0000 | [diff] [blame] | 77 | public: |
Anders Carlsson | 02a34c3 | 2008-07-08 14:30:00 +0000 | [diff] [blame] | 78 | |
Chris Lattner | 422373c | 2008-07-11 22:52:41 +0000 | [diff] [blame] | 79 | PointerExprEvaluator(EvalInfo &info) : Info(info) {} |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 80 | |
Anders Carlsson | 02a34c3 | 2008-07-08 14:30:00 +0000 | [diff] [blame] | 81 | APValue VisitStmt(Stmt *S) { |
| 82 | // FIXME: Remove this when we support more expressions. |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 83 | printf("Unhandled pointer statement\n"); |
Anders Carlsson | 02a34c3 | 2008-07-08 14:30:00 +0000 | [diff] [blame] | 84 | S->dump(); |
| 85 | return APValue(); |
| 86 | } |
| 87 | |
| 88 | APValue VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); } |
| 89 | |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 90 | APValue VisitBinaryOperator(const BinaryOperator *E); |
| 91 | APValue VisitCastExpr(const CastExpr* E); |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 92 | }; |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 93 | } // end anonymous namespace |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 94 | |
Chris Lattner | 422373c | 2008-07-11 22:52:41 +0000 | [diff] [blame] | 95 | static bool EvaluatePointer(const Expr* E, APValue& Result, EvalInfo &Info) { |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 96 | if (!E->getType()->isPointerType()) |
| 97 | return false; |
Chris Lattner | 422373c | 2008-07-11 22:52:41 +0000 | [diff] [blame] | 98 | Result = PointerExprEvaluator(Info).Visit(const_cast<Expr*>(E)); |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 99 | return Result.isLValue(); |
| 100 | } |
| 101 | |
| 102 | APValue PointerExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) { |
| 103 | if (E->getOpcode() != BinaryOperator::Add && |
| 104 | E->getOpcode() != BinaryOperator::Sub) |
| 105 | return APValue(); |
| 106 | |
| 107 | const Expr *PExp = E->getLHS(); |
| 108 | const Expr *IExp = E->getRHS(); |
| 109 | if (IExp->getType()->isPointerType()) |
| 110 | std::swap(PExp, IExp); |
| 111 | |
| 112 | APValue ResultLValue; |
Chris Lattner | 422373c | 2008-07-11 22:52:41 +0000 | [diff] [blame] | 113 | if (!EvaluatePointer(PExp, ResultLValue, Info)) |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 114 | return APValue(); |
| 115 | |
| 116 | llvm::APSInt AdditionalOffset(32); |
Chris Lattner | 422373c | 2008-07-11 22:52:41 +0000 | [diff] [blame] | 117 | if (!EvaluateInteger(IExp, AdditionalOffset, Info)) |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 118 | return APValue(); |
| 119 | |
| 120 | uint64_t Offset = ResultLValue.getLValueOffset(); |
| 121 | if (E->getOpcode() == BinaryOperator::Add) |
| 122 | Offset += AdditionalOffset.getZExtValue(); |
| 123 | else |
| 124 | Offset -= AdditionalOffset.getZExtValue(); |
| 125 | |
| 126 | return APValue(ResultLValue.getLValueBase(), Offset); |
| 127 | } |
| 128 | |
| 129 | |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 130 | APValue PointerExprEvaluator::VisitCastExpr(const CastExpr* E) { |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 131 | const Expr* SubExpr = E->getSubExpr(); |
| 132 | |
| 133 | // Check for pointer->pointer cast |
| 134 | if (SubExpr->getType()->isPointerType()) { |
| 135 | APValue Result; |
Chris Lattner | 422373c | 2008-07-11 22:52:41 +0000 | [diff] [blame] | 136 | if (EvaluatePointer(SubExpr, Result, Info)) |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 137 | return Result; |
| 138 | return APValue(); |
| 139 | } |
| 140 | |
Eli Friedman | 3e64dd7 | 2008-07-27 05:46:18 +0000 | [diff] [blame] | 141 | if (SubExpr->getType()->isIntegralType()) { |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 142 | llvm::APSInt Result(32); |
Chris Lattner | 422373c | 2008-07-11 22:52:41 +0000 | [diff] [blame] | 143 | if (EvaluateInteger(SubExpr, Result, Info)) { |
| 144 | Result.extOrTrunc((unsigned)Info.Ctx.getTypeSize(E->getType())); |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 145 | return APValue(0, Result.getZExtValue()); |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | assert(0 && "Unhandled cast"); |
| 150 | return APValue(); |
| 151 | } |
| 152 | |
| 153 | |
| 154 | //===----------------------------------------------------------------------===// |
| 155 | // Integer Evaluation |
| 156 | //===----------------------------------------------------------------------===// |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 157 | |
| 158 | namespace { |
Anders Carlsson | cad17b5 | 2008-07-08 05:13:58 +0000 | [diff] [blame] | 159 | class VISIBILITY_HIDDEN IntExprEvaluator |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 160 | : public StmtVisitor<IntExprEvaluator, bool> { |
Chris Lattner | 422373c | 2008-07-11 22:52:41 +0000 | [diff] [blame] | 161 | EvalInfo &Info; |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 162 | APSInt &Result; |
Anders Carlsson | cad17b5 | 2008-07-08 05:13:58 +0000 | [diff] [blame] | 163 | public: |
Chris Lattner | 422373c | 2008-07-11 22:52:41 +0000 | [diff] [blame] | 164 | IntExprEvaluator(EvalInfo &info, APSInt &result) |
| 165 | : Info(info), Result(result) {} |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 166 | |
Chris Lattner | 2c99c71 | 2008-07-11 19:24:49 +0000 | [diff] [blame] | 167 | unsigned getIntTypeSizeInBits(QualType T) const { |
Chris Lattner | 82437da | 2008-07-12 00:14:42 +0000 | [diff] [blame] | 168 | return (unsigned)Info.Ctx.getIntWidth(T); |
| 169 | } |
| 170 | |
| 171 | bool Extension(SourceLocation L, diag::kind D) { |
| 172 | Info.DiagLoc = L; |
| 173 | Info.ICEDiag = D; |
| 174 | return true; // still a constant. |
| 175 | } |
| 176 | |
| 177 | bool Error(SourceLocation L, diag::kind D) { |
| 178 | // If this is in an unevaluated portion of the subexpression, ignore the |
| 179 | // error. |
| 180 | if (!Info.isEvaluated) |
| 181 | return true; |
| 182 | |
| 183 | Info.DiagLoc = L; |
| 184 | Info.ICEDiag = D; |
| 185 | return false; |
Chris Lattner | 2c99c71 | 2008-07-11 19:24:49 +0000 | [diff] [blame] | 186 | } |
| 187 | |
Anders Carlsson | cad17b5 | 2008-07-08 05:13:58 +0000 | [diff] [blame] | 188 | //===--------------------------------------------------------------------===// |
| 189 | // Visitor Methods |
| 190 | //===--------------------------------------------------------------------===// |
Chris Lattner | 2c99c71 | 2008-07-11 19:24:49 +0000 | [diff] [blame] | 191 | |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 192 | bool VisitStmt(Stmt *S) { |
Chris Lattner | 82437da | 2008-07-12 00:14:42 +0000 | [diff] [blame] | 193 | return Error(S->getLocStart(), diag::err_expr_not_constant); |
Anders Carlsson | cad17b5 | 2008-07-08 05:13:58 +0000 | [diff] [blame] | 194 | } |
| 195 | |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 196 | bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); } |
Anders Carlsson | cad17b5 | 2008-07-08 05:13:58 +0000 | [diff] [blame] | 197 | |
Chris Lattner | 15e5911 | 2008-07-12 00:38:25 +0000 | [diff] [blame] | 198 | bool VisitIntegerLiteral(const IntegerLiteral *E) { |
| 199 | Result = E->getValue(); |
| 200 | Result.setIsUnsigned(E->getType()->isUnsignedIntegerType()); |
| 201 | return true; |
| 202 | } |
| 203 | bool VisitCharacterLiteral(const CharacterLiteral *E) { |
| 204 | Result.zextOrTrunc(getIntTypeSizeInBits(E->getType())); |
| 205 | Result = E->getValue(); |
| 206 | Result.setIsUnsigned(E->getType()->isUnsignedIntegerType()); |
| 207 | return true; |
| 208 | } |
| 209 | bool VisitTypesCompatibleExpr(const TypesCompatibleExpr *E) { |
| 210 | Result.zextOrTrunc(getIntTypeSizeInBits(E->getType())); |
| 211 | Result = Info.Ctx.typesAreCompatible(E->getArgType1(), E->getArgType2()); |
| 212 | return true; |
| 213 | } |
| 214 | bool VisitDeclRefExpr(const DeclRefExpr *E); |
| 215 | bool VisitCallExpr(const CallExpr *E); |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 216 | bool VisitBinaryOperator(const BinaryOperator *E); |
| 217 | bool VisitUnaryOperator(const UnaryOperator *E); |
Anders Carlsson | c032801 | 2008-07-08 05:49:43 +0000 | [diff] [blame] | 218 | |
Chris Lattner | ff579ff | 2008-07-12 01:15:53 +0000 | [diff] [blame] | 219 | bool VisitCastExpr(CastExpr* E) { |
Chris Lattner | ff579ff | 2008-07-12 01:15:53 +0000 | [diff] [blame] | 220 | return HandleCast(E->getLocStart(), E->getSubExpr(), E->getType()); |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 221 | } |
Chris Lattner | 265a089 | 2008-07-11 21:24:13 +0000 | [diff] [blame] | 222 | bool VisitSizeOfAlignOfTypeExpr(const SizeOfAlignOfTypeExpr *E) { |
Chris Lattner | 82437da | 2008-07-12 00:14:42 +0000 | [diff] [blame] | 223 | return EvaluateSizeAlignOf(E->isSizeOf(), E->getArgumentType(), |
| 224 | E->getType()); |
Chris Lattner | 265a089 | 2008-07-11 21:24:13 +0000 | [diff] [blame] | 225 | } |
Chris Lattner | 15e5911 | 2008-07-12 00:38:25 +0000 | [diff] [blame] | 226 | |
Chris Lattner | 265a089 | 2008-07-11 21:24:13 +0000 | [diff] [blame] | 227 | private: |
Chris Lattner | ff579ff | 2008-07-12 01:15:53 +0000 | [diff] [blame] | 228 | bool HandleCast(SourceLocation CastLoc, Expr *SubExpr, QualType DestType); |
Chris Lattner | 265a089 | 2008-07-11 21:24:13 +0000 | [diff] [blame] | 229 | bool EvaluateSizeAlignOf(bool isSizeOf, QualType SrcTy, QualType DstTy); |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 230 | }; |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 231 | } // end anonymous namespace |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 232 | |
Chris Lattner | 422373c | 2008-07-11 22:52:41 +0000 | [diff] [blame] | 233 | static bool EvaluateInteger(const Expr* E, APSInt &Result, EvalInfo &Info) { |
| 234 | return IntExprEvaluator(Info, Result).Visit(const_cast<Expr*>(E)); |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 235 | } |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 236 | |
Chris Lattner | 15e5911 | 2008-07-12 00:38:25 +0000 | [diff] [blame] | 237 | bool IntExprEvaluator::VisitDeclRefExpr(const DeclRefExpr *E) { |
| 238 | // Enums are integer constant exprs. |
| 239 | if (const EnumConstantDecl *D = dyn_cast<EnumConstantDecl>(E->getDecl())) { |
| 240 | Result = D->getInitVal(); |
| 241 | return true; |
| 242 | } |
| 243 | |
| 244 | // Otherwise, random variable references are not constants. |
| 245 | return Error(E->getLocStart(), diag::err_expr_not_constant); |
| 246 | } |
| 247 | |
Chris Lattner | 15e5911 | 2008-07-12 00:38:25 +0000 | [diff] [blame] | 248 | bool IntExprEvaluator::VisitCallExpr(const CallExpr *E) { |
| 249 | Result.zextOrTrunc(getIntTypeSizeInBits(E->getType())); |
Chris Lattner | 15e5911 | 2008-07-12 00:38:25 +0000 | [diff] [blame] | 250 | |
Chris Lattner | 8729378 | 2008-10-06 05:28:25 +0000 | [diff] [blame] | 251 | switch (E->isBuiltinCall()) { |
| 252 | default: |
| 253 | return Error(E->getLocStart(), diag::err_expr_not_constant); |
| 254 | case Builtin::BI__builtin_classify_type: |
| 255 | // __builtin_type_compatible_p is a constant. Return its value. |
| 256 | E->isBuiltinClassifyType(Result); |
| 257 | return true; |
| 258 | |
| 259 | case Builtin::BI__builtin_constant_p: { |
| 260 | // __builtin_constant_p always has one operand: it returns true if that |
| 261 | // operand can be folded, false otherwise. |
| 262 | APValue Res; |
| 263 | Result = E->getArg(0)->tryEvaluate(Res, Info.Ctx); |
| 264 | return true; |
| 265 | } |
| 266 | } |
Chris Lattner | 15e5911 | 2008-07-12 00:38:25 +0000 | [diff] [blame] | 267 | } |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 268 | |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 269 | bool IntExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) { |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 270 | // The LHS of a constant expr is always evaluated and needed. |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 271 | llvm::APSInt RHS(32); |
Chris Lattner | 82437da | 2008-07-12 00:14:42 +0000 | [diff] [blame] | 272 | if (!Visit(E->getLHS())) |
| 273 | return false; // error in subexpression. |
| 274 | |
| 275 | bool OldEval = Info.isEvaluated; |
| 276 | |
| 277 | // The short-circuiting &&/|| operators don't necessarily evaluate their |
| 278 | // RHS. Make sure to pass isEvaluated down correctly. |
| 279 | if ((E->getOpcode() == BinaryOperator::LAnd && Result == 0) || |
| 280 | (E->getOpcode() == BinaryOperator::LOr && Result != 0)) |
| 281 | Info.isEvaluated = false; |
Eli Friedman | 3e64dd7 | 2008-07-27 05:46:18 +0000 | [diff] [blame] | 282 | |
| 283 | // FIXME: Handle pointer subtraction |
| 284 | |
| 285 | // FIXME Maybe we want to succeed even where we can't evaluate the |
| 286 | // right side of LAnd/LOr? |
| 287 | // For example, see http://llvm.org/bugs/show_bug.cgi?id=2525 |
Chris Lattner | 82437da | 2008-07-12 00:14:42 +0000 | [diff] [blame] | 288 | if (!EvaluateInteger(E->getRHS(), RHS, Info)) |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 289 | return false; |
Chris Lattner | 82437da | 2008-07-12 00:14:42 +0000 | [diff] [blame] | 290 | Info.isEvaluated = OldEval; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 291 | |
| 292 | switch (E->getOpcode()) { |
Chris Lattner | 82437da | 2008-07-12 00:14:42 +0000 | [diff] [blame] | 293 | default: return Error(E->getOperatorLoc(), diag::err_expr_not_constant); |
| 294 | case BinaryOperator::Mul: Result *= RHS; return true; |
| 295 | case BinaryOperator::Add: Result += RHS; return true; |
| 296 | case BinaryOperator::Sub: Result -= RHS; return true; |
| 297 | case BinaryOperator::And: Result &= RHS; return true; |
| 298 | case BinaryOperator::Xor: Result ^= RHS; return true; |
| 299 | case BinaryOperator::Or: Result |= RHS; return true; |
Chris Lattner | 400d740 | 2008-07-11 22:15:16 +0000 | [diff] [blame] | 300 | case BinaryOperator::Div: |
Chris Lattner | 82437da | 2008-07-12 00:14:42 +0000 | [diff] [blame] | 301 | if (RHS == 0) |
| 302 | return Error(E->getOperatorLoc(), diag::err_expr_divide_by_zero); |
Chris Lattner | 400d740 | 2008-07-11 22:15:16 +0000 | [diff] [blame] | 303 | Result /= RHS; |
Chris Lattner | 82437da | 2008-07-12 00:14:42 +0000 | [diff] [blame] | 304 | return true; |
Chris Lattner | 400d740 | 2008-07-11 22:15:16 +0000 | [diff] [blame] | 305 | case BinaryOperator::Rem: |
Chris Lattner | 82437da | 2008-07-12 00:14:42 +0000 | [diff] [blame] | 306 | if (RHS == 0) |
| 307 | return Error(E->getOperatorLoc(), diag::err_expr_divide_by_zero); |
Chris Lattner | 400d740 | 2008-07-11 22:15:16 +0000 | [diff] [blame] | 308 | Result %= RHS; |
Chris Lattner | 82437da | 2008-07-12 00:14:42 +0000 | [diff] [blame] | 309 | return true; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 310 | case BinaryOperator::Shl: |
Chris Lattner | 82437da | 2008-07-12 00:14:42 +0000 | [diff] [blame] | 311 | // FIXME: Warn about out of range shift amounts! |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 312 | Result <<= (unsigned)RHS.getLimitedValue(Result.getBitWidth()-1); |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 313 | break; |
| 314 | case BinaryOperator::Shr: |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 315 | Result >>= (unsigned)RHS.getLimitedValue(Result.getBitWidth()-1); |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 316 | break; |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 317 | |
Chris Lattner | 045502c | 2008-07-11 19:29:32 +0000 | [diff] [blame] | 318 | case BinaryOperator::LT: |
| 319 | Result = Result < RHS; |
| 320 | Result.zextOrTrunc(getIntTypeSizeInBits(E->getType())); |
| 321 | break; |
| 322 | case BinaryOperator::GT: |
| 323 | Result = Result > RHS; |
| 324 | Result.zextOrTrunc(getIntTypeSizeInBits(E->getType())); |
| 325 | break; |
| 326 | case BinaryOperator::LE: |
| 327 | Result = Result <= RHS; |
| 328 | Result.zextOrTrunc(getIntTypeSizeInBits(E->getType())); |
| 329 | break; |
| 330 | case BinaryOperator::GE: |
| 331 | Result = Result >= RHS; |
| 332 | Result.zextOrTrunc(getIntTypeSizeInBits(E->getType())); |
| 333 | break; |
| 334 | case BinaryOperator::EQ: |
| 335 | Result = Result == RHS; |
| 336 | Result.zextOrTrunc(getIntTypeSizeInBits(E->getType())); |
| 337 | break; |
| 338 | case BinaryOperator::NE: |
| 339 | Result = Result != RHS; |
| 340 | Result.zextOrTrunc(getIntTypeSizeInBits(E->getType())); |
| 341 | break; |
Chris Lattner | 82437da | 2008-07-12 00:14:42 +0000 | [diff] [blame] | 342 | case BinaryOperator::LAnd: |
| 343 | Result = Result != 0 && RHS != 0; |
| 344 | Result.zextOrTrunc(getIntTypeSizeInBits(E->getType())); |
| 345 | break; |
| 346 | case BinaryOperator::LOr: |
| 347 | Result = Result != 0 || RHS != 0; |
| 348 | Result.zextOrTrunc(getIntTypeSizeInBits(E->getType())); |
| 349 | break; |
| 350 | |
Anders Carlsson | c032801 | 2008-07-08 05:49:43 +0000 | [diff] [blame] | 351 | |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 352 | case BinaryOperator::Comma: |
Chris Lattner | 82437da | 2008-07-12 00:14:42 +0000 | [diff] [blame] | 353 | // Result of the comma is just the result of the RHS. |
| 354 | Result = RHS; |
| 355 | |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 356 | // C99 6.6p3: "shall not contain assignment, ..., or comma operators, |
| 357 | // *except* when they are contained within a subexpression that is not |
| 358 | // evaluated". Note that Assignment can never happen due to constraints |
| 359 | // on the LHS subexpr, so we don't need to check it here. |
Chris Lattner | 82437da | 2008-07-12 00:14:42 +0000 | [diff] [blame] | 360 | if (!Info.isEvaluated) |
| 361 | return true; |
| 362 | |
| 363 | // If the value is evaluated, we can accept it as an extension. |
| 364 | return Extension(E->getOperatorLoc(), diag::ext_comma_in_constant_expr); |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 365 | } |
| 366 | |
| 367 | Result.setIsUnsigned(E->getType()->isUnsignedIntegerType()); |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 368 | return true; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 369 | } |
| 370 | |
Chris Lattner | 265a089 | 2008-07-11 21:24:13 +0000 | [diff] [blame] | 371 | /// EvaluateSizeAlignOf - Evaluate sizeof(SrcTy) or alignof(SrcTy) with a result |
| 372 | /// as a DstTy type. |
| 373 | bool IntExprEvaluator::EvaluateSizeAlignOf(bool isSizeOf, QualType SrcTy, |
| 374 | QualType DstTy) { |
| 375 | // Return the result in the right width. |
| 376 | Result.zextOrTrunc(getIntTypeSizeInBits(DstTy)); |
| 377 | Result.setIsUnsigned(DstTy->isUnsignedIntegerType()); |
| 378 | |
| 379 | // sizeof(void) and __alignof__(void) = 1 as a gcc extension. |
| 380 | if (SrcTy->isVoidType()) |
| 381 | Result = 1; |
| 382 | |
| 383 | // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2. |
| 384 | if (!SrcTy->isConstantSizeType()) { |
| 385 | // FIXME: Should we attempt to evaluate this? |
| 386 | return false; |
| 387 | } |
| 388 | |
| 389 | // GCC extension: sizeof(function) = 1. |
| 390 | if (SrcTy->isFunctionType()) { |
| 391 | // FIXME: AlignOf shouldn't be unconditionally 4! |
| 392 | Result = isSizeOf ? 1 : 4; |
| 393 | return true; |
| 394 | } |
| 395 | |
| 396 | // Get information about the size or align. |
Chris Lattner | 422373c | 2008-07-11 22:52:41 +0000 | [diff] [blame] | 397 | unsigned CharSize = Info.Ctx.Target.getCharWidth(); |
Chris Lattner | 265a089 | 2008-07-11 21:24:13 +0000 | [diff] [blame] | 398 | if (isSizeOf) |
| 399 | Result = getIntTypeSizeInBits(SrcTy) / CharSize; |
| 400 | else |
Chris Lattner | 422373c | 2008-07-11 22:52:41 +0000 | [diff] [blame] | 401 | Result = Info.Ctx.getTypeAlign(SrcTy) / CharSize; |
Chris Lattner | 265a089 | 2008-07-11 21:24:13 +0000 | [diff] [blame] | 402 | return true; |
| 403 | } |
| 404 | |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 405 | bool IntExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) { |
Chris Lattner | 15e5911 | 2008-07-12 00:38:25 +0000 | [diff] [blame] | 406 | // Special case unary operators that do not need their subexpression |
| 407 | // evaluated. offsetof/sizeof/alignof are all special. |
Chris Lattner | 400d740 | 2008-07-11 22:15:16 +0000 | [diff] [blame] | 408 | if (E->isOffsetOfOp()) { |
Chris Lattner | 15e5911 | 2008-07-12 00:38:25 +0000 | [diff] [blame] | 409 | Result.zextOrTrunc(getIntTypeSizeInBits(E->getType())); |
Chris Lattner | 422373c | 2008-07-11 22:52:41 +0000 | [diff] [blame] | 410 | Result = E->evaluateOffsetOf(Info.Ctx); |
Chris Lattner | 400d740 | 2008-07-11 22:15:16 +0000 | [diff] [blame] | 411 | Result.setIsUnsigned(E->getType()->isUnsignedIntegerType()); |
| 412 | return true; |
| 413 | } |
| 414 | |
| 415 | if (E->isSizeOfAlignOfOp()) |
Chris Lattner | 265a089 | 2008-07-11 21:24:13 +0000 | [diff] [blame] | 416 | return EvaluateSizeAlignOf(E->getOpcode() == UnaryOperator::SizeOf, |
| 417 | E->getSubExpr()->getType(), E->getType()); |
Chris Lattner | 400d740 | 2008-07-11 22:15:16 +0000 | [diff] [blame] | 418 | |
Chris Lattner | 422373c | 2008-07-11 22:52:41 +0000 | [diff] [blame] | 419 | // Get the operand value into 'Result'. |
| 420 | if (!Visit(E->getSubExpr())) |
Chris Lattner | 400d740 | 2008-07-11 22:15:16 +0000 | [diff] [blame] | 421 | return false; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 422 | |
Chris Lattner | 400d740 | 2008-07-11 22:15:16 +0000 | [diff] [blame] | 423 | switch (E->getOpcode()) { |
Chris Lattner | 15e5911 | 2008-07-12 00:38:25 +0000 | [diff] [blame] | 424 | default: |
Chris Lattner | 400d740 | 2008-07-11 22:15:16 +0000 | [diff] [blame] | 425 | // Address, indirect, pre/post inc/dec, etc are not valid constant exprs. |
| 426 | // See C99 6.6p3. |
Chris Lattner | 15e5911 | 2008-07-12 00:38:25 +0000 | [diff] [blame] | 427 | return Error(E->getOperatorLoc(), diag::err_expr_not_constant); |
Chris Lattner | 400d740 | 2008-07-11 22:15:16 +0000 | [diff] [blame] | 428 | case UnaryOperator::LNot: { |
| 429 | bool Val = Result == 0; |
| 430 | Result.zextOrTrunc(getIntTypeSizeInBits(E->getType())); |
| 431 | Result = Val; |
| 432 | break; |
| 433 | } |
| 434 | case UnaryOperator::Extension: |
Chris Lattner | 15e5911 | 2008-07-12 00:38:25 +0000 | [diff] [blame] | 435 | // FIXME: Should extension allow i-c-e extension expressions in its scope? |
| 436 | // If so, we could clear the diagnostic ID. |
Chris Lattner | 400d740 | 2008-07-11 22:15:16 +0000 | [diff] [blame] | 437 | case UnaryOperator::Plus: |
Chris Lattner | 15e5911 | 2008-07-12 00:38:25 +0000 | [diff] [blame] | 438 | // The result is always just the subexpr. |
Chris Lattner | 400d740 | 2008-07-11 22:15:16 +0000 | [diff] [blame] | 439 | break; |
| 440 | case UnaryOperator::Minus: |
| 441 | Result = -Result; |
| 442 | break; |
| 443 | case UnaryOperator::Not: |
| 444 | Result = ~Result; |
| 445 | break; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 446 | } |
| 447 | |
| 448 | Result.setIsUnsigned(E->getType()->isUnsignedIntegerType()); |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 449 | return true; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 450 | } |
| 451 | |
Chris Lattner | ff579ff | 2008-07-12 01:15:53 +0000 | [diff] [blame] | 452 | /// HandleCast - This is used to evaluate implicit or explicit casts where the |
| 453 | /// result type is integer. |
| 454 | bool IntExprEvaluator::HandleCast(SourceLocation CastLoc, |
| 455 | Expr *SubExpr, QualType DestType) { |
Chris Lattner | 2c99c71 | 2008-07-11 19:24:49 +0000 | [diff] [blame] | 456 | unsigned DestWidth = getIntTypeSizeInBits(DestType); |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 457 | |
| 458 | // Handle simple integer->integer casts. |
| 459 | if (SubExpr->getType()->isIntegerType()) { |
Chris Lattner | ff579ff | 2008-07-12 01:15:53 +0000 | [diff] [blame] | 460 | if (!Visit(SubExpr)) |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 461 | return false; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 462 | |
| 463 | // Figure out if this is a truncate, extend or noop cast. |
| 464 | // If the input is signed, do a sign extend, noop, or truncate. |
| 465 | if (DestType->isBooleanType()) { |
| 466 | // Conversion to bool compares against zero. |
| 467 | Result = Result != 0; |
| 468 | Result.zextOrTrunc(DestWidth); |
Chris Lattner | 2c99c71 | 2008-07-11 19:24:49 +0000 | [diff] [blame] | 469 | } else |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 470 | Result.extOrTrunc(DestWidth); |
Chris Lattner | ff579ff | 2008-07-12 01:15:53 +0000 | [diff] [blame] | 471 | Result.setIsUnsigned(DestType->isUnsignedIntegerType()); |
| 472 | return true; |
| 473 | } |
| 474 | |
| 475 | // FIXME: Clean this up! |
| 476 | if (SubExpr->getType()->isPointerType()) { |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 477 | APValue LV; |
Chris Lattner | 422373c | 2008-07-11 22:52:41 +0000 | [diff] [blame] | 478 | if (!EvaluatePointer(SubExpr, LV, Info)) |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 479 | return false; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 480 | if (LV.getLValueBase()) |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 481 | return false; |
Anders Carlsson | c032801 | 2008-07-08 05:49:43 +0000 | [diff] [blame] | 482 | |
Anders Carlsson | 8ab15c8 | 2008-07-08 16:49:00 +0000 | [diff] [blame] | 483 | Result.extOrTrunc(DestWidth); |
| 484 | Result = LV.getLValueOffset(); |
Chris Lattner | ff579ff | 2008-07-12 01:15:53 +0000 | [diff] [blame] | 485 | Result.setIsUnsigned(DestType->isUnsignedIntegerType()); |
| 486 | return true; |
Anders Carlsson | 02a34c3 | 2008-07-08 14:30:00 +0000 | [diff] [blame] | 487 | } |
| 488 | |
Chris Lattner | ff579ff | 2008-07-12 01:15:53 +0000 | [diff] [blame] | 489 | if (!SubExpr->getType()->isRealFloatingType()) |
| 490 | return Error(CastLoc, diag::err_expr_not_constant); |
| 491 | |
Eli Friedman | 2f44549 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 492 | APFloat F(0.0); |
| 493 | if (!EvaluateFloat(SubExpr, F, Info)) |
Chris Lattner | ff579ff | 2008-07-12 01:15:53 +0000 | [diff] [blame] | 494 | return Error(CastLoc, diag::err_expr_not_constant); |
Eli Friedman | 2f44549 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 495 | |
Chris Lattner | ff579ff | 2008-07-12 01:15:53 +0000 | [diff] [blame] | 496 | // If the destination is boolean, compare against zero. |
| 497 | if (DestType->isBooleanType()) { |
Eli Friedman | 2f44549 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 498 | Result = !F.isZero(); |
Chris Lattner | ff579ff | 2008-07-12 01:15:53 +0000 | [diff] [blame] | 499 | Result.zextOrTrunc(DestWidth); |
| 500 | Result.setIsUnsigned(DestType->isUnsignedIntegerType()); |
| 501 | return true; |
| 502 | } |
| 503 | |
| 504 | // Determine whether we are converting to unsigned or signed. |
| 505 | bool DestSigned = DestType->isSignedIntegerType(); |
| 506 | |
| 507 | // FIXME: Warning for overflow. |
| 508 | uint64_t Space[4]; |
Eli Friedman | 2f44549 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 509 | (void)F.convertToInteger(Space, DestWidth, DestSigned, |
| 510 | llvm::APFloat::rmTowardZero); |
Chris Lattner | ff579ff | 2008-07-12 01:15:53 +0000 | [diff] [blame] | 511 | Result = llvm::APInt(DestWidth, 4, Space); |
| 512 | Result.setIsUnsigned(!DestSigned); |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 513 | return true; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 514 | } |
Anders Carlsson | 02a34c3 | 2008-07-08 14:30:00 +0000 | [diff] [blame] | 515 | |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 516 | //===----------------------------------------------------------------------===// |
Eli Friedman | 2f44549 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 517 | // Float Evaluation |
| 518 | //===----------------------------------------------------------------------===// |
| 519 | |
| 520 | namespace { |
| 521 | class VISIBILITY_HIDDEN FloatExprEvaluator |
| 522 | : public StmtVisitor<FloatExprEvaluator, bool> { |
| 523 | EvalInfo &Info; |
| 524 | APFloat &Result; |
| 525 | public: |
| 526 | FloatExprEvaluator(EvalInfo &info, APFloat &result) |
| 527 | : Info(info), Result(result) {} |
| 528 | |
| 529 | bool VisitStmt(Stmt *S) { |
| 530 | return false; |
| 531 | } |
| 532 | |
| 533 | bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); } |
Chris Lattner | 8729378 | 2008-10-06 05:28:25 +0000 | [diff] [blame] | 534 | bool VisitCallExpr(const CallExpr *E); |
Eli Friedman | 2f44549 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 535 | |
| 536 | bool VisitBinaryOperator(const BinaryOperator *E); |
| 537 | bool VisitFloatingLiteral(const FloatingLiteral *E); |
| 538 | }; |
| 539 | } // end anonymous namespace |
| 540 | |
| 541 | static bool EvaluateFloat(const Expr* E, APFloat& Result, EvalInfo &Info) { |
| 542 | return FloatExprEvaluator(Info, Result).Visit(const_cast<Expr*>(E)); |
| 543 | } |
| 544 | |
Chris Lattner | 8729378 | 2008-10-06 05:28:25 +0000 | [diff] [blame] | 545 | bool FloatExprEvaluator::VisitCallExpr(const CallExpr *E) { |
Chris Lattner | 27cde26 | 2008-10-06 05:53:16 +0000 | [diff] [blame] | 546 | const llvm::fltSemantics &Sem = |
| 547 | Info.Ctx.getFloatTypeSemantics(E->getType()); |
Chris Lattner | 8729378 | 2008-10-06 05:28:25 +0000 | [diff] [blame] | 548 | |
| 549 | switch (E->isBuiltinCall()) { |
Chris Lattner | 27cde26 | 2008-10-06 05:53:16 +0000 | [diff] [blame] | 550 | default: return false; |
Chris Lattner | 8729378 | 2008-10-06 05:28:25 +0000 | [diff] [blame] | 551 | case Builtin::BI__builtin_huge_val: |
| 552 | case Builtin::BI__builtin_huge_valf: |
| 553 | case Builtin::BI__builtin_huge_vall: |
| 554 | case Builtin::BI__builtin_inf: |
| 555 | case Builtin::BI__builtin_inff: |
| 556 | case Builtin::BI__builtin_infl: |
Chris Lattner | 27cde26 | 2008-10-06 05:53:16 +0000 | [diff] [blame] | 557 | Result = llvm::APFloat::getInf(Sem); |
| 558 | return true; |
Chris Lattner | 8729378 | 2008-10-06 05:28:25 +0000 | [diff] [blame] | 559 | } |
| 560 | } |
| 561 | |
| 562 | |
Eli Friedman | 2f44549 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 563 | bool FloatExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) { |
| 564 | // FIXME: Diagnostics? I really don't understand how the warnings |
| 565 | // and errors are supposed to work. |
| 566 | APFloat LHS(0.0), RHS(0.0); |
| 567 | if (!EvaluateFloat(E->getLHS(), Result, Info)) |
| 568 | return false; |
| 569 | if (!EvaluateFloat(E->getRHS(), RHS, Info)) |
| 570 | return false; |
| 571 | |
| 572 | switch (E->getOpcode()) { |
| 573 | default: return false; |
| 574 | case BinaryOperator::Mul: |
| 575 | Result.multiply(RHS, APFloat::rmNearestTiesToEven); |
| 576 | return true; |
| 577 | case BinaryOperator::Add: |
| 578 | Result.add(RHS, APFloat::rmNearestTiesToEven); |
| 579 | return true; |
| 580 | case BinaryOperator::Sub: |
| 581 | Result.subtract(RHS, APFloat::rmNearestTiesToEven); |
| 582 | return true; |
| 583 | case BinaryOperator::Div: |
| 584 | Result.divide(RHS, APFloat::rmNearestTiesToEven); |
| 585 | return true; |
| 586 | case BinaryOperator::Rem: |
| 587 | Result.mod(RHS, APFloat::rmNearestTiesToEven); |
| 588 | return true; |
| 589 | } |
| 590 | } |
| 591 | |
| 592 | bool FloatExprEvaluator::VisitFloatingLiteral(const FloatingLiteral *E) { |
| 593 | Result = E->getValue(); |
| 594 | return true; |
| 595 | } |
| 596 | |
| 597 | //===----------------------------------------------------------------------===// |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 598 | // Top level TryEvaluate. |
| 599 | //===----------------------------------------------------------------------===// |
| 600 | |
Chris Lattner | 8729378 | 2008-10-06 05:28:25 +0000 | [diff] [blame] | 601 | /// tryEvaluate - Return true if this is a constant which we can fold using |
| 602 | /// any crazy technique (that has nothing to do with language standards) that |
| 603 | /// we want to. If this function returns true, it returns the folded constant |
| 604 | /// in Result. |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 605 | bool Expr::tryEvaluate(APValue &Result, ASTContext &Ctx) const { |
Chris Lattner | 422373c | 2008-07-11 22:52:41 +0000 | [diff] [blame] | 606 | EvalInfo Info(Ctx); |
Anders Carlsson | c032801 | 2008-07-08 05:49:43 +0000 | [diff] [blame] | 607 | if (getType()->isIntegerType()) { |
Eli Friedman | 2f44549 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 608 | llvm::APSInt sInt(32); |
Chris Lattner | 422373c | 2008-07-11 22:52:41 +0000 | [diff] [blame] | 609 | if (EvaluateInteger(this, sInt, Info)) { |
Anders Carlsson | c032801 | 2008-07-08 05:49:43 +0000 | [diff] [blame] | 610 | Result = APValue(sInt); |
| 611 | return true; |
| 612 | } |
Eli Friedman | 2f44549 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 613 | } else if (getType()->isPointerType()) { |
| 614 | if (EvaluatePointer(this, Result, Info)) { |
| 615 | return true; |
| 616 | } |
| 617 | } else if (getType()->isRealFloatingType()) { |
| 618 | llvm::APFloat f(0.0); |
| 619 | if (EvaluateFloat(this, f, Info)) { |
| 620 | Result = APValue(f); |
| 621 | return true; |
| 622 | } |
| 623 | } |
Anders Carlsson | 47968a9 | 2008-08-10 17:03:01 +0000 | [diff] [blame] | 624 | |
Anders Carlsson | c7436af | 2008-07-03 04:20:39 +0000 | [diff] [blame] | 625 | return false; |
| 626 | } |