Chris Lattner | e13042c | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 1 | //===--- ExprConstant.cpp - Expression Constant Evaluator -----------------===// |
Anders Carlsson | 7a241ba | 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" |
Ken Dyck | 4077500 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 16 | #include "clang/AST/CharUnits.h" |
Anders Carlsson | 15b73de | 2009-07-18 19:43:29 +0000 | [diff] [blame] | 17 | #include "clang/AST/RecordLayout.h" |
Seo Sanghyeon | 1904f44 | 2008-07-08 07:23:12 +0000 | [diff] [blame] | 18 | #include "clang/AST/StmtVisitor.h" |
Douglas Gregor | 882211c | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 19 | #include "clang/AST/TypeLoc.h" |
Chris Lattner | 60f3622 | 2009-01-29 05:15:15 +0000 | [diff] [blame] | 20 | #include "clang/AST/ASTDiagnostic.h" |
Douglas Gregor | 882211c | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 21 | #include "clang/AST/Expr.h" |
Chris Lattner | 15ba949 | 2009-06-14 01:54:56 +0000 | [diff] [blame] | 22 | #include "clang/Basic/Builtins.h" |
Anders Carlsson | 374b93d | 2008-07-08 05:49:43 +0000 | [diff] [blame] | 23 | #include "clang/Basic/TargetInfo.h" |
Mike Stump | b807c9c | 2009-05-30 14:43:18 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/SmallString.h" |
Mike Stump | 2346cd2 | 2009-05-30 03:56:50 +0000 | [diff] [blame] | 25 | #include <cstring> |
| 26 | |
Anders Carlsson | 7a241ba | 2008-07-03 04:20:39 +0000 | [diff] [blame] | 27 | using namespace clang; |
Chris Lattner | 05706e88 | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 28 | using llvm::APSInt; |
Eli Friedman | 24c0154 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 29 | using llvm::APFloat; |
Anders Carlsson | 7a241ba | 2008-07-03 04:20:39 +0000 | [diff] [blame] | 30 | |
Chris Lattner | cdf34e7 | 2008-07-11 22:52:41 +0000 | [diff] [blame] | 31 | /// EvalInfo - This is a private struct used by the evaluator to capture |
| 32 | /// information about a subexpression as it is folded. It retains information |
| 33 | /// about the AST context, but also maintains information about the folded |
| 34 | /// expression. |
| 35 | /// |
| 36 | /// If an expression could be evaluated, it is still possible it is not a C |
| 37 | /// "integer constant expression" or constant expression. If not, this struct |
| 38 | /// captures information about how and why not. |
| 39 | /// |
| 40 | /// One bit of information passed *into* the request for constant folding |
| 41 | /// indicates whether the subexpression is "evaluated" or not according to C |
| 42 | /// rules. For example, the RHS of (0 && foo()) is not evaluated. We can |
| 43 | /// evaluate the expression regardless of what the RHS is, but C only allows |
| 44 | /// certain things in certain situations. |
John McCall | 93d91dc | 2010-05-07 17:22:02 +0000 | [diff] [blame] | 45 | namespace { |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 46 | struct LValue; |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 47 | struct CallStackFrame; |
Richard Smith | 4e4c78ff | 2011-10-31 05:52:43 +0000 | [diff] [blame] | 48 | struct EvalInfo; |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 49 | |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 50 | QualType getType(APValue::LValueBase B) { |
| 51 | if (!B) return QualType(); |
| 52 | if (const ValueDecl *D = B.dyn_cast<const ValueDecl*>()) |
| 53 | return D->getType(); |
| 54 | return B.get<const Expr*>()->getType(); |
| 55 | } |
| 56 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 57 | /// Get an LValue path entry, which is known to not be an array index, as a |
| 58 | /// field declaration. |
| 59 | const FieldDecl *getAsField(APValue::LValuePathEntry E) { |
| 60 | APValue::BaseOrMemberType Value; |
| 61 | Value.setFromOpaqueValue(E.BaseOrMember); |
| 62 | return dyn_cast<FieldDecl>(Value.getPointer()); |
| 63 | } |
| 64 | /// Get an LValue path entry, which is known to not be an array index, as a |
| 65 | /// base class declaration. |
| 66 | const CXXRecordDecl *getAsBaseClass(APValue::LValuePathEntry E) { |
| 67 | APValue::BaseOrMemberType Value; |
| 68 | Value.setFromOpaqueValue(E.BaseOrMember); |
| 69 | return dyn_cast<CXXRecordDecl>(Value.getPointer()); |
| 70 | } |
| 71 | /// Determine whether this LValue path entry for a base class names a virtual |
| 72 | /// base class. |
| 73 | bool isVirtualBaseClass(APValue::LValuePathEntry E) { |
| 74 | APValue::BaseOrMemberType Value; |
| 75 | Value.setFromOpaqueValue(E.BaseOrMember); |
| 76 | return Value.getInt(); |
| 77 | } |
| 78 | |
Richard Smith | 8081560 | 2011-11-07 05:07:52 +0000 | [diff] [blame] | 79 | /// Determine whether the described subobject is an array element. |
| 80 | static bool SubobjectIsArrayElement(QualType Base, |
| 81 | ArrayRef<APValue::LValuePathEntry> Path) { |
| 82 | bool IsArrayElement = false; |
| 83 | const Type *T = Base.getTypePtr(); |
| 84 | for (unsigned I = 0, N = Path.size(); I != N; ++I) { |
| 85 | IsArrayElement = T && T->isArrayType(); |
| 86 | if (IsArrayElement) |
| 87 | T = T->getBaseElementTypeUnsafe(); |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 88 | else if (const FieldDecl *FD = getAsField(Path[I])) |
Richard Smith | 8081560 | 2011-11-07 05:07:52 +0000 | [diff] [blame] | 89 | T = FD->getType().getTypePtr(); |
| 90 | else |
| 91 | // Path[I] describes a base class. |
| 92 | T = 0; |
| 93 | } |
| 94 | return IsArrayElement; |
| 95 | } |
| 96 | |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 97 | /// A path from a glvalue to a subobject of that glvalue. |
| 98 | struct SubobjectDesignator { |
| 99 | /// True if the subobject was named in a manner not supported by C++11. Such |
| 100 | /// lvalues can still be folded, but they are not core constant expressions |
| 101 | /// and we cannot perform lvalue-to-rvalue conversions on them. |
| 102 | bool Invalid : 1; |
| 103 | |
| 104 | /// Whether this designates an array element. |
| 105 | bool ArrayElement : 1; |
| 106 | |
| 107 | /// Whether this designates 'one past the end' of the current subobject. |
| 108 | bool OnePastTheEnd : 1; |
| 109 | |
Richard Smith | 8081560 | 2011-11-07 05:07:52 +0000 | [diff] [blame] | 110 | typedef APValue::LValuePathEntry PathEntry; |
| 111 | |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 112 | /// The entries on the path from the glvalue to the designated subobject. |
| 113 | SmallVector<PathEntry, 8> Entries; |
| 114 | |
| 115 | SubobjectDesignator() : |
| 116 | Invalid(false), ArrayElement(false), OnePastTheEnd(false) {} |
| 117 | |
Richard Smith | 8081560 | 2011-11-07 05:07:52 +0000 | [diff] [blame] | 118 | SubobjectDesignator(const APValue &V) : |
| 119 | Invalid(!V.isLValue() || !V.hasLValuePath()), ArrayElement(false), |
| 120 | OnePastTheEnd(false) { |
| 121 | if (!Invalid) { |
| 122 | ArrayRef<PathEntry> VEntries = V.getLValuePath(); |
| 123 | Entries.insert(Entries.end(), VEntries.begin(), VEntries.end()); |
| 124 | if (V.getLValueBase()) |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 125 | ArrayElement = SubobjectIsArrayElement(getType(V.getLValueBase()), |
Richard Smith | 8081560 | 2011-11-07 05:07:52 +0000 | [diff] [blame] | 126 | V.getLValuePath()); |
| 127 | else |
| 128 | assert(V.getLValuePath().empty() &&"Null pointer with nonempty path"); |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 129 | OnePastTheEnd = V.isLValueOnePastTheEnd(); |
Richard Smith | 8081560 | 2011-11-07 05:07:52 +0000 | [diff] [blame] | 130 | } |
| 131 | } |
| 132 | |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 133 | void setInvalid() { |
| 134 | Invalid = true; |
| 135 | Entries.clear(); |
| 136 | } |
| 137 | /// Update this designator to refer to the given element within this array. |
| 138 | void addIndex(uint64_t N) { |
| 139 | if (Invalid) return; |
| 140 | if (OnePastTheEnd) { |
| 141 | setInvalid(); |
| 142 | return; |
| 143 | } |
| 144 | PathEntry Entry; |
Richard Smith | 8081560 | 2011-11-07 05:07:52 +0000 | [diff] [blame] | 145 | Entry.ArrayIndex = N; |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 146 | Entries.push_back(Entry); |
| 147 | ArrayElement = true; |
| 148 | } |
| 149 | /// Update this designator to refer to the given base or member of this |
| 150 | /// object. |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 151 | void addDecl(const Decl *D, bool Virtual = false) { |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 152 | if (Invalid) return; |
| 153 | if (OnePastTheEnd) { |
| 154 | setInvalid(); |
| 155 | return; |
| 156 | } |
| 157 | PathEntry Entry; |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 158 | APValue::BaseOrMemberType Value(D, Virtual); |
| 159 | Entry.BaseOrMember = Value.getOpaqueValue(); |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 160 | Entries.push_back(Entry); |
| 161 | ArrayElement = false; |
| 162 | } |
| 163 | /// Add N to the address of this subobject. |
| 164 | void adjustIndex(uint64_t N) { |
| 165 | if (Invalid) return; |
| 166 | if (ArrayElement) { |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 167 | // FIXME: Make sure the index stays within bounds, or one past the end. |
Richard Smith | 8081560 | 2011-11-07 05:07:52 +0000 | [diff] [blame] | 168 | Entries.back().ArrayIndex += N; |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 169 | return; |
| 170 | } |
| 171 | if (OnePastTheEnd && N == (uint64_t)-1) |
| 172 | OnePastTheEnd = false; |
| 173 | else if (!OnePastTheEnd && N == 1) |
| 174 | OnePastTheEnd = true; |
| 175 | else if (N != 0) |
| 176 | setInvalid(); |
| 177 | } |
| 178 | }; |
| 179 | |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 180 | /// A core constant value. This can be the value of any constant expression, |
| 181 | /// or a pointer or reference to a non-static object or function parameter. |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 182 | /// |
| 183 | /// For an LValue, the base and offset are stored in the APValue subobject, |
| 184 | /// but the other information is stored in the SubobjectDesignator. For all |
| 185 | /// other value kinds, the value is stored directly in the APValue subobject. |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 186 | class CCValue : public APValue { |
| 187 | typedef llvm::APSInt APSInt; |
| 188 | typedef llvm::APFloat APFloat; |
Richard Smith | fec0992 | 2011-11-01 16:57:24 +0000 | [diff] [blame] | 189 | /// If the value is a reference or pointer into a parameter or temporary, |
| 190 | /// this is the corresponding call stack frame. |
| 191 | CallStackFrame *CallFrame; |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 192 | /// If the value is a reference or pointer, this is a description of how the |
| 193 | /// subobject was specified. |
| 194 | SubobjectDesignator Designator; |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 195 | public: |
Richard Smith | fec0992 | 2011-11-01 16:57:24 +0000 | [diff] [blame] | 196 | struct GlobalValue {}; |
| 197 | |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 198 | CCValue() {} |
| 199 | explicit CCValue(const APSInt &I) : APValue(I) {} |
| 200 | explicit CCValue(const APFloat &F) : APValue(F) {} |
| 201 | CCValue(const APValue *E, unsigned N) : APValue(E, N) {} |
| 202 | CCValue(const APSInt &R, const APSInt &I) : APValue(R, I) {} |
| 203 | CCValue(const APFloat &R, const APFloat &I) : APValue(R, I) {} |
Richard Smith | fec0992 | 2011-11-01 16:57:24 +0000 | [diff] [blame] | 204 | CCValue(const CCValue &V) : APValue(V), CallFrame(V.CallFrame) {} |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 205 | CCValue(LValueBase B, const CharUnits &O, CallStackFrame *F, |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 206 | const SubobjectDesignator &D) : |
Richard Smith | 8081560 | 2011-11-07 05:07:52 +0000 | [diff] [blame] | 207 | APValue(B, O, APValue::NoLValuePath()), CallFrame(F), Designator(D) {} |
Richard Smith | fec0992 | 2011-11-01 16:57:24 +0000 | [diff] [blame] | 208 | CCValue(const APValue &V, GlobalValue) : |
Richard Smith | 8081560 | 2011-11-07 05:07:52 +0000 | [diff] [blame] | 209 | APValue(V), CallFrame(0), Designator(V) {} |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 210 | CCValue(const ValueDecl *D, bool IsDerivedMember, |
| 211 | ArrayRef<const CXXRecordDecl*> Path) : |
| 212 | APValue(D, IsDerivedMember, Path) {} |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 213 | |
Richard Smith | fec0992 | 2011-11-01 16:57:24 +0000 | [diff] [blame] | 214 | CallStackFrame *getLValueFrame() const { |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 215 | assert(getKind() == LValue); |
Richard Smith | fec0992 | 2011-11-01 16:57:24 +0000 | [diff] [blame] | 216 | return CallFrame; |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 217 | } |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 218 | SubobjectDesignator &getLValueDesignator() { |
| 219 | assert(getKind() == LValue); |
| 220 | return Designator; |
| 221 | } |
| 222 | const SubobjectDesignator &getLValueDesignator() const { |
| 223 | return const_cast<CCValue*>(this)->getLValueDesignator(); |
| 224 | } |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 225 | }; |
| 226 | |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 227 | /// A stack frame in the constexpr call stack. |
| 228 | struct CallStackFrame { |
| 229 | EvalInfo &Info; |
| 230 | |
| 231 | /// Parent - The caller of this stack frame. |
Richard Smith | 4e4c78ff | 2011-10-31 05:52:43 +0000 | [diff] [blame] | 232 | CallStackFrame *Caller; |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 233 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 234 | /// This - The binding for the this pointer in this call, if any. |
| 235 | const LValue *This; |
| 236 | |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 237 | /// ParmBindings - Parameter bindings for this function call, indexed by |
| 238 | /// parameters' function scope indices. |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 239 | const CCValue *Arguments; |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 240 | |
Richard Smith | 4e4c78ff | 2011-10-31 05:52:43 +0000 | [diff] [blame] | 241 | typedef llvm::DenseMap<const Expr*, CCValue> MapTy; |
| 242 | typedef MapTy::const_iterator temp_iterator; |
| 243 | /// Temporaries - Temporary lvalues materialized within this stack frame. |
| 244 | MapTy Temporaries; |
| 245 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 246 | CallStackFrame(EvalInfo &Info, const LValue *This, |
| 247 | const CCValue *Arguments); |
Richard Smith | 4e4c78ff | 2011-10-31 05:52:43 +0000 | [diff] [blame] | 248 | ~CallStackFrame(); |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 249 | }; |
| 250 | |
Richard Smith | 4e4c78ff | 2011-10-31 05:52:43 +0000 | [diff] [blame] | 251 | struct EvalInfo { |
| 252 | const ASTContext &Ctx; |
| 253 | |
| 254 | /// EvalStatus - Contains information about the evaluation. |
| 255 | Expr::EvalStatus &EvalStatus; |
| 256 | |
| 257 | /// CurrentCall - The top of the constexpr call stack. |
| 258 | CallStackFrame *CurrentCall; |
| 259 | |
Richard Smith | 4e4c78ff | 2011-10-31 05:52:43 +0000 | [diff] [blame] | 260 | /// CallStackDepth - The number of calls in the call stack right now. |
| 261 | unsigned CallStackDepth; |
| 262 | |
| 263 | typedef llvm::DenseMap<const OpaqueValueExpr*, CCValue> MapTy; |
| 264 | /// OpaqueValues - Values used as the common expression in a |
| 265 | /// BinaryConditionalOperator. |
| 266 | MapTy OpaqueValues; |
| 267 | |
| 268 | /// BottomFrame - The frame in which evaluation started. This must be |
| 269 | /// initialized last. |
| 270 | CallStackFrame BottomFrame; |
| 271 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 272 | /// EvaluatingDecl - This is the declaration whose initializer is being |
| 273 | /// evaluated, if any. |
| 274 | const VarDecl *EvaluatingDecl; |
| 275 | |
| 276 | /// EvaluatingDeclValue - This is the value being constructed for the |
| 277 | /// declaration whose initializer is being evaluated, if any. |
| 278 | APValue *EvaluatingDeclValue; |
| 279 | |
Richard Smith | 4e4c78ff | 2011-10-31 05:52:43 +0000 | [diff] [blame] | 280 | |
| 281 | EvalInfo(const ASTContext &C, Expr::EvalStatus &S) |
Richard Smith | 9a56882 | 2011-11-21 19:36:32 +0000 | [diff] [blame] | 282 | : Ctx(C), EvalStatus(S), CurrentCall(0), CallStackDepth(0), |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 283 | BottomFrame(*this, 0, 0), EvaluatingDecl(0), EvaluatingDeclValue(0) {} |
Richard Smith | 4e4c78ff | 2011-10-31 05:52:43 +0000 | [diff] [blame] | 284 | |
Richard Smith | 4e4c78ff | 2011-10-31 05:52:43 +0000 | [diff] [blame] | 285 | const CCValue *getOpaqueValue(const OpaqueValueExpr *e) const { |
| 286 | MapTy::const_iterator i = OpaqueValues.find(e); |
| 287 | if (i == OpaqueValues.end()) return 0; |
| 288 | return &i->second; |
| 289 | } |
| 290 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 291 | void setEvaluatingDecl(const VarDecl *VD, APValue &Value) { |
| 292 | EvaluatingDecl = VD; |
| 293 | EvaluatingDeclValue = &Value; |
| 294 | } |
| 295 | |
Richard Smith | 9a56882 | 2011-11-21 19:36:32 +0000 | [diff] [blame] | 296 | const LangOptions &getLangOpts() const { return Ctx.getLangOptions(); } |
| 297 | |
| 298 | bool atCallLimit() const { |
| 299 | return CallStackDepth > getLangOpts().ConstexprCallDepth; |
| 300 | } |
Richard Smith | 4e4c78ff | 2011-10-31 05:52:43 +0000 | [diff] [blame] | 301 | }; |
| 302 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 303 | CallStackFrame::CallStackFrame(EvalInfo &Info, const LValue *This, |
| 304 | const CCValue *Arguments) |
| 305 | : Info(Info), Caller(Info.CurrentCall), This(This), Arguments(Arguments) { |
Richard Smith | 4e4c78ff | 2011-10-31 05:52:43 +0000 | [diff] [blame] | 306 | Info.CurrentCall = this; |
| 307 | ++Info.CallStackDepth; |
| 308 | } |
| 309 | |
| 310 | CallStackFrame::~CallStackFrame() { |
| 311 | assert(Info.CurrentCall == this && "calls retired out of order"); |
| 312 | --Info.CallStackDepth; |
| 313 | Info.CurrentCall = Caller; |
| 314 | } |
| 315 | |
John McCall | 93d91dc | 2010-05-07 17:22:02 +0000 | [diff] [blame] | 316 | struct ComplexValue { |
| 317 | private: |
| 318 | bool IsInt; |
| 319 | |
| 320 | public: |
| 321 | APSInt IntReal, IntImag; |
| 322 | APFloat FloatReal, FloatImag; |
| 323 | |
| 324 | ComplexValue() : FloatReal(APFloat::Bogus), FloatImag(APFloat::Bogus) {} |
| 325 | |
| 326 | void makeComplexFloat() { IsInt = false; } |
| 327 | bool isComplexFloat() const { return !IsInt; } |
| 328 | APFloat &getComplexFloatReal() { return FloatReal; } |
| 329 | APFloat &getComplexFloatImag() { return FloatImag; } |
| 330 | |
| 331 | void makeComplexInt() { IsInt = true; } |
| 332 | bool isComplexInt() const { return IsInt; } |
| 333 | APSInt &getComplexIntReal() { return IntReal; } |
| 334 | APSInt &getComplexIntImag() { return IntImag; } |
| 335 | |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 336 | void moveInto(CCValue &v) const { |
John McCall | 93d91dc | 2010-05-07 17:22:02 +0000 | [diff] [blame] | 337 | if (isComplexFloat()) |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 338 | v = CCValue(FloatReal, FloatImag); |
John McCall | 93d91dc | 2010-05-07 17:22:02 +0000 | [diff] [blame] | 339 | else |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 340 | v = CCValue(IntReal, IntImag); |
John McCall | 93d91dc | 2010-05-07 17:22:02 +0000 | [diff] [blame] | 341 | } |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 342 | void setFrom(const CCValue &v) { |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 343 | assert(v.isComplexFloat() || v.isComplexInt()); |
| 344 | if (v.isComplexFloat()) { |
| 345 | makeComplexFloat(); |
| 346 | FloatReal = v.getComplexFloatReal(); |
| 347 | FloatImag = v.getComplexFloatImag(); |
| 348 | } else { |
| 349 | makeComplexInt(); |
| 350 | IntReal = v.getComplexIntReal(); |
| 351 | IntImag = v.getComplexIntImag(); |
| 352 | } |
| 353 | } |
John McCall | 93d91dc | 2010-05-07 17:22:02 +0000 | [diff] [blame] | 354 | }; |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 355 | |
| 356 | struct LValue { |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 357 | APValue::LValueBase Base; |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 358 | CharUnits Offset; |
Richard Smith | fec0992 | 2011-11-01 16:57:24 +0000 | [diff] [blame] | 359 | CallStackFrame *Frame; |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 360 | SubobjectDesignator Designator; |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 361 | |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 362 | const APValue::LValueBase getLValueBase() const { return Base; } |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 363 | CharUnits &getLValueOffset() { return Offset; } |
Richard Smith | 8b3497e | 2011-10-31 01:37:14 +0000 | [diff] [blame] | 364 | const CharUnits &getLValueOffset() const { return Offset; } |
Richard Smith | fec0992 | 2011-11-01 16:57:24 +0000 | [diff] [blame] | 365 | CallStackFrame *getLValueFrame() const { return Frame; } |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 366 | SubobjectDesignator &getLValueDesignator() { return Designator; } |
| 367 | const SubobjectDesignator &getLValueDesignator() const { return Designator;} |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 368 | |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 369 | void moveInto(CCValue &V) const { |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 370 | V = CCValue(Base, Offset, Frame, Designator); |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 371 | } |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 372 | void setFrom(const CCValue &V) { |
| 373 | assert(V.isLValue()); |
| 374 | Base = V.getLValueBase(); |
| 375 | Offset = V.getLValueOffset(); |
Richard Smith | fec0992 | 2011-11-01 16:57:24 +0000 | [diff] [blame] | 376 | Frame = V.getLValueFrame(); |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 377 | Designator = V.getLValueDesignator(); |
| 378 | } |
| 379 | |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 380 | void set(APValue::LValueBase B, CallStackFrame *F = 0) { |
| 381 | Base = B; |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 382 | Offset = CharUnits::Zero(); |
| 383 | Frame = F; |
| 384 | Designator = SubobjectDesignator(); |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 385 | } |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 386 | }; |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 387 | |
| 388 | struct MemberPtr { |
| 389 | MemberPtr() {} |
| 390 | explicit MemberPtr(const ValueDecl *Decl) : |
| 391 | DeclAndIsDerivedMember(Decl, false), Path() {} |
| 392 | |
| 393 | /// The member or (direct or indirect) field referred to by this member |
| 394 | /// pointer, or 0 if this is a null member pointer. |
| 395 | const ValueDecl *getDecl() const { |
| 396 | return DeclAndIsDerivedMember.getPointer(); |
| 397 | } |
| 398 | /// Is this actually a member of some type derived from the relevant class? |
| 399 | bool isDerivedMember() const { |
| 400 | return DeclAndIsDerivedMember.getInt(); |
| 401 | } |
| 402 | /// Get the class which the declaration actually lives in. |
| 403 | const CXXRecordDecl *getContainingRecord() const { |
| 404 | return cast<CXXRecordDecl>( |
| 405 | DeclAndIsDerivedMember.getPointer()->getDeclContext()); |
| 406 | } |
| 407 | |
| 408 | void moveInto(CCValue &V) const { |
| 409 | V = CCValue(getDecl(), isDerivedMember(), Path); |
| 410 | } |
| 411 | void setFrom(const CCValue &V) { |
| 412 | assert(V.isMemberPointer()); |
| 413 | DeclAndIsDerivedMember.setPointer(V.getMemberPointerDecl()); |
| 414 | DeclAndIsDerivedMember.setInt(V.isMemberPointerToDerivedMember()); |
| 415 | Path.clear(); |
| 416 | ArrayRef<const CXXRecordDecl*> P = V.getMemberPointerPath(); |
| 417 | Path.insert(Path.end(), P.begin(), P.end()); |
| 418 | } |
| 419 | |
| 420 | /// DeclAndIsDerivedMember - The member declaration, and a flag indicating |
| 421 | /// whether the member is a member of some class derived from the class type |
| 422 | /// of the member pointer. |
| 423 | llvm::PointerIntPair<const ValueDecl*, 1, bool> DeclAndIsDerivedMember; |
| 424 | /// Path - The path of base/derived classes from the member declaration's |
| 425 | /// class (exclusive) to the class type of the member pointer (inclusive). |
| 426 | SmallVector<const CXXRecordDecl*, 4> Path; |
| 427 | |
| 428 | /// Perform a cast towards the class of the Decl (either up or down the |
| 429 | /// hierarchy). |
| 430 | bool castBack(const CXXRecordDecl *Class) { |
| 431 | assert(!Path.empty()); |
| 432 | const CXXRecordDecl *Expected; |
| 433 | if (Path.size() >= 2) |
| 434 | Expected = Path[Path.size() - 2]; |
| 435 | else |
| 436 | Expected = getContainingRecord(); |
| 437 | if (Expected->getCanonicalDecl() != Class->getCanonicalDecl()) { |
| 438 | // C++11 [expr.static.cast]p12: In a conversion from (D::*) to (B::*), |
| 439 | // if B does not contain the original member and is not a base or |
| 440 | // derived class of the class containing the original member, the result |
| 441 | // of the cast is undefined. |
| 442 | // C++11 [conv.mem]p2 does not cover this case for a cast from (B::*) to |
| 443 | // (D::*). We consider that to be a language defect. |
| 444 | return false; |
| 445 | } |
| 446 | Path.pop_back(); |
| 447 | return true; |
| 448 | } |
| 449 | /// Perform a base-to-derived member pointer cast. |
| 450 | bool castToDerived(const CXXRecordDecl *Derived) { |
| 451 | if (!getDecl()) |
| 452 | return true; |
| 453 | if (!isDerivedMember()) { |
| 454 | Path.push_back(Derived); |
| 455 | return true; |
| 456 | } |
| 457 | if (!castBack(Derived)) |
| 458 | return false; |
| 459 | if (Path.empty()) |
| 460 | DeclAndIsDerivedMember.setInt(false); |
| 461 | return true; |
| 462 | } |
| 463 | /// Perform a derived-to-base member pointer cast. |
| 464 | bool castToBase(const CXXRecordDecl *Base) { |
| 465 | if (!getDecl()) |
| 466 | return true; |
| 467 | if (Path.empty()) |
| 468 | DeclAndIsDerivedMember.setInt(true); |
| 469 | if (isDerivedMember()) { |
| 470 | Path.push_back(Base); |
| 471 | return true; |
| 472 | } |
| 473 | return castBack(Base); |
| 474 | } |
| 475 | }; |
John McCall | 93d91dc | 2010-05-07 17:22:02 +0000 | [diff] [blame] | 476 | } |
Chris Lattner | cdf34e7 | 2008-07-11 22:52:41 +0000 | [diff] [blame] | 477 | |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 478 | static bool Evaluate(CCValue &Result, EvalInfo &Info, const Expr *E); |
Richard Smith | ed5165f | 2011-11-04 05:33:44 +0000 | [diff] [blame] | 479 | static bool EvaluateConstantExpression(APValue &Result, EvalInfo &Info, |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 480 | const LValue &This, const Expr *E); |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 481 | static bool EvaluateLValue(const Expr *E, LValue &Result, EvalInfo &Info); |
| 482 | static bool EvaluatePointer(const Expr *E, LValue &Result, EvalInfo &Info); |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 483 | static bool EvaluateMemberPointer(const Expr *E, MemberPtr &Result, |
| 484 | EvalInfo &Info); |
| 485 | static bool EvaluateTemporary(const Expr *E, LValue &Result, EvalInfo &Info); |
Chris Lattner | cdf34e7 | 2008-07-11 22:52:41 +0000 | [diff] [blame] | 486 | static bool EvaluateInteger(const Expr *E, APSInt &Result, EvalInfo &Info); |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 487 | static bool EvaluateIntegerOrLValue(const Expr *E, CCValue &Result, |
Chris Lattner | 6c4d255 | 2009-10-28 23:59:40 +0000 | [diff] [blame] | 488 | EvalInfo &Info); |
Eli Friedman | 24c0154 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 489 | static bool EvaluateFloat(const Expr *E, APFloat &Result, EvalInfo &Info); |
John McCall | 93d91dc | 2010-05-07 17:22:02 +0000 | [diff] [blame] | 490 | static bool EvaluateComplex(const Expr *E, ComplexValue &Res, EvalInfo &Info); |
Chris Lattner | 05706e88 | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 491 | |
| 492 | //===----------------------------------------------------------------------===// |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 493 | // Misc utilities |
| 494 | //===----------------------------------------------------------------------===// |
| 495 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 496 | /// Should this call expression be treated as a string literal? |
| 497 | static bool IsStringLiteralCall(const CallExpr *E) { |
| 498 | unsigned Builtin = E->isBuiltinCall(); |
| 499 | return (Builtin == Builtin::BI__builtin___CFStringMakeConstantString || |
| 500 | Builtin == Builtin::BI__builtin___NSStringMakeConstantString); |
| 501 | } |
| 502 | |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 503 | static bool IsGlobalLValue(APValue::LValueBase B) { |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 504 | // C++11 [expr.const]p3 An address constant expression is a prvalue core |
| 505 | // constant expression of pointer type that evaluates to... |
| 506 | |
| 507 | // ... a null pointer value, or a prvalue core constant expression of type |
| 508 | // std::nullptr_t. |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 509 | if (!B) return true; |
John McCall | 9500760 | 2010-05-10 23:27:23 +0000 | [diff] [blame] | 510 | |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 511 | if (const ValueDecl *D = B.dyn_cast<const ValueDecl*>()) { |
| 512 | // ... the address of an object with static storage duration, |
| 513 | if (const VarDecl *VD = dyn_cast<VarDecl>(D)) |
| 514 | return VD->hasGlobalStorage(); |
| 515 | // ... the address of a function, |
| 516 | return isa<FunctionDecl>(D); |
| 517 | } |
| 518 | |
| 519 | const Expr *E = B.get<const Expr*>(); |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 520 | switch (E->getStmtClass()) { |
| 521 | default: |
| 522 | return false; |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 523 | case Expr::CompoundLiteralExprClass: |
| 524 | return cast<CompoundLiteralExpr>(E)->isFileScope(); |
| 525 | // A string literal has static storage duration. |
| 526 | case Expr::StringLiteralClass: |
| 527 | case Expr::PredefinedExprClass: |
| 528 | case Expr::ObjCStringLiteralClass: |
| 529 | case Expr::ObjCEncodeExprClass: |
| 530 | return true; |
| 531 | case Expr::CallExprClass: |
| 532 | return IsStringLiteralCall(cast<CallExpr>(E)); |
| 533 | // For GCC compatibility, &&label has static storage duration. |
| 534 | case Expr::AddrLabelExprClass: |
| 535 | return true; |
| 536 | // A Block literal expression may be used as the initialization value for |
| 537 | // Block variables at global or local static scope. |
| 538 | case Expr::BlockExprClass: |
| 539 | return !cast<BlockExpr>(E)->getBlockDecl()->hasCaptures(); |
| 540 | } |
John McCall | 9500760 | 2010-05-10 23:27:23 +0000 | [diff] [blame] | 541 | } |
| 542 | |
Richard Smith | 8081560 | 2011-11-07 05:07:52 +0000 | [diff] [blame] | 543 | /// Check that this reference or pointer core constant expression is a valid |
| 544 | /// value for a constant expression. Type T should be either LValue or CCValue. |
| 545 | template<typename T> |
| 546 | static bool CheckLValueConstantExpression(const T &LVal, APValue &Value) { |
| 547 | if (!IsGlobalLValue(LVal.getLValueBase())) |
| 548 | return false; |
| 549 | |
| 550 | const SubobjectDesignator &Designator = LVal.getLValueDesignator(); |
| 551 | // A constant expression must refer to an object or be a null pointer. |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 552 | if (Designator.Invalid || |
Richard Smith | 8081560 | 2011-11-07 05:07:52 +0000 | [diff] [blame] | 553 | (!LVal.getLValueBase() && !Designator.Entries.empty())) { |
Richard Smith | 8081560 | 2011-11-07 05:07:52 +0000 | [diff] [blame] | 554 | // FIXME: This is not a constant expression. |
| 555 | Value = APValue(LVal.getLValueBase(), LVal.getLValueOffset(), |
| 556 | APValue::NoLValuePath()); |
| 557 | return true; |
| 558 | } |
| 559 | |
| 560 | Value = APValue(LVal.getLValueBase(), LVal.getLValueOffset(), |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 561 | Designator.Entries, Designator.OnePastTheEnd); |
Richard Smith | 8081560 | 2011-11-07 05:07:52 +0000 | [diff] [blame] | 562 | return true; |
| 563 | } |
| 564 | |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 565 | /// Check that this core constant expression value is a valid value for a |
Richard Smith | ed5165f | 2011-11-04 05:33:44 +0000 | [diff] [blame] | 566 | /// constant expression, and if it is, produce the corresponding constant value. |
| 567 | static bool CheckConstantExpression(const CCValue &CCValue, APValue &Value) { |
Richard Smith | 8081560 | 2011-11-07 05:07:52 +0000 | [diff] [blame] | 568 | if (!CCValue.isLValue()) { |
| 569 | Value = CCValue; |
| 570 | return true; |
| 571 | } |
| 572 | return CheckLValueConstantExpression(CCValue, Value); |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 573 | } |
| 574 | |
Richard Smith | 83c6821 | 2011-10-31 05:11:32 +0000 | [diff] [blame] | 575 | const ValueDecl *GetLValueBaseDecl(const LValue &LVal) { |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 576 | return LVal.Base.dyn_cast<const ValueDecl*>(); |
Richard Smith | 83c6821 | 2011-10-31 05:11:32 +0000 | [diff] [blame] | 577 | } |
| 578 | |
| 579 | static bool IsLiteralLValue(const LValue &Value) { |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 580 | return Value.Base.dyn_cast<const Expr*>() && !Value.Frame; |
Richard Smith | 83c6821 | 2011-10-31 05:11:32 +0000 | [diff] [blame] | 581 | } |
| 582 | |
Richard Smith | cecf184 | 2011-11-01 21:06:14 +0000 | [diff] [blame] | 583 | static bool IsWeakLValue(const LValue &Value) { |
| 584 | const ValueDecl *Decl = GetLValueBaseDecl(Value); |
Lang Hames | d42bb47 | 2011-12-05 20:16:26 +0000 | [diff] [blame] | 585 | return Decl && Decl->isWeak(); |
Richard Smith | cecf184 | 2011-11-01 21:06:14 +0000 | [diff] [blame] | 586 | } |
| 587 | |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 588 | static bool EvalPointerValueAsBool(const CCValue &Value, bool &Result) { |
John McCall | eb3e4f3 | 2010-05-07 21:34:32 +0000 | [diff] [blame] | 589 | // A null base expression indicates a null pointer. These are always |
| 590 | // evaluatable, and they are false unless the offset is zero. |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 591 | if (!Value.getLValueBase()) { |
| 592 | Result = !Value.getLValueOffset().isZero(); |
John McCall | eb3e4f3 | 2010-05-07 21:34:32 +0000 | [diff] [blame] | 593 | return true; |
| 594 | } |
Rafael Espindola | a1f9cc1 | 2010-05-07 15:18:43 +0000 | [diff] [blame] | 595 | |
John McCall | 9500760 | 2010-05-10 23:27:23 +0000 | [diff] [blame] | 596 | // Require the base expression to be a global l-value. |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 597 | // FIXME: C++11 requires such conversions. Remove this check. |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 598 | if (!IsGlobalLValue(Value.getLValueBase())) return false; |
John McCall | 9500760 | 2010-05-10 23:27:23 +0000 | [diff] [blame] | 599 | |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 600 | // We have a non-null base. These are generally known to be true, but if it's |
| 601 | // a weak declaration it can be null at runtime. |
John McCall | eb3e4f3 | 2010-05-07 21:34:32 +0000 | [diff] [blame] | 602 | Result = true; |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 603 | const ValueDecl *Decl = Value.getLValueBase().dyn_cast<const ValueDecl*>(); |
Lang Hames | d42bb47 | 2011-12-05 20:16:26 +0000 | [diff] [blame] | 604 | return !Decl || !Decl->isWeak(); |
Eli Friedman | 334046a | 2009-06-14 02:17:33 +0000 | [diff] [blame] | 605 | } |
| 606 | |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 607 | static bool HandleConversionToBool(const CCValue &Val, bool &Result) { |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 608 | switch (Val.getKind()) { |
| 609 | case APValue::Uninitialized: |
| 610 | return false; |
| 611 | case APValue::Int: |
| 612 | Result = Val.getInt().getBoolValue(); |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 613 | return true; |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 614 | case APValue::Float: |
| 615 | Result = !Val.getFloat().isZero(); |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 616 | return true; |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 617 | case APValue::ComplexInt: |
| 618 | Result = Val.getComplexIntReal().getBoolValue() || |
| 619 | Val.getComplexIntImag().getBoolValue(); |
| 620 | return true; |
| 621 | case APValue::ComplexFloat: |
| 622 | Result = !Val.getComplexFloatReal().isZero() || |
| 623 | !Val.getComplexFloatImag().isZero(); |
| 624 | return true; |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 625 | case APValue::LValue: |
| 626 | return EvalPointerValueAsBool(Val, Result); |
| 627 | case APValue::MemberPointer: |
| 628 | Result = Val.getMemberPointerDecl(); |
| 629 | return true; |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 630 | case APValue::Vector: |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 631 | case APValue::Array: |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 632 | case APValue::Struct: |
| 633 | case APValue::Union: |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 634 | return false; |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 635 | } |
| 636 | |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 637 | llvm_unreachable("unknown APValue kind"); |
| 638 | } |
| 639 | |
| 640 | static bool EvaluateAsBooleanCondition(const Expr *E, bool &Result, |
| 641 | EvalInfo &Info) { |
| 642 | assert(E->isRValue() && "missing lvalue-to-rvalue conv in bool condition"); |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 643 | CCValue Val; |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 644 | if (!Evaluate(Val, Info, E)) |
| 645 | return false; |
| 646 | return HandleConversionToBool(Val, Result); |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 647 | } |
| 648 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 649 | static APSInt HandleFloatToIntCast(QualType DestType, QualType SrcType, |
Jay Foad | 39c7980 | 2011-01-12 09:06:06 +0000 | [diff] [blame] | 650 | APFloat &Value, const ASTContext &Ctx) { |
Daniel Dunbar | b6f953e | 2009-01-29 06:16:07 +0000 | [diff] [blame] | 651 | unsigned DestWidth = Ctx.getIntWidth(DestType); |
| 652 | // Determine whether we are converting to unsigned or signed. |
Douglas Gregor | 6ab2fa8 | 2011-05-20 16:38:50 +0000 | [diff] [blame] | 653 | bool DestSigned = DestType->isSignedIntegerOrEnumerationType(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 654 | |
Daniel Dunbar | b6f953e | 2009-01-29 06:16:07 +0000 | [diff] [blame] | 655 | // FIXME: Warning for overflow. |
Jeffrey Yasskin | d0f079d | 2011-07-15 17:03:07 +0000 | [diff] [blame] | 656 | APSInt Result(DestWidth, !DestSigned); |
Daniel Dunbar | b6f953e | 2009-01-29 06:16:07 +0000 | [diff] [blame] | 657 | bool ignored; |
Jeffrey Yasskin | d0f079d | 2011-07-15 17:03:07 +0000 | [diff] [blame] | 658 | (void)Value.convertToInteger(Result, llvm::APFloat::rmTowardZero, &ignored); |
| 659 | return Result; |
Daniel Dunbar | b6f953e | 2009-01-29 06:16:07 +0000 | [diff] [blame] | 660 | } |
| 661 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 662 | static APFloat HandleFloatToFloatCast(QualType DestType, QualType SrcType, |
Jay Foad | 39c7980 | 2011-01-12 09:06:06 +0000 | [diff] [blame] | 663 | APFloat &Value, const ASTContext &Ctx) { |
Daniel Dunbar | b6f953e | 2009-01-29 06:16:07 +0000 | [diff] [blame] | 664 | bool ignored; |
| 665 | APFloat Result = Value; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 666 | Result.convert(Ctx.getFloatTypeSemantics(DestType), |
Daniel Dunbar | b6f953e | 2009-01-29 06:16:07 +0000 | [diff] [blame] | 667 | APFloat::rmNearestTiesToEven, &ignored); |
| 668 | return Result; |
| 669 | } |
| 670 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 671 | static APSInt HandleIntToIntCast(QualType DestType, QualType SrcType, |
Jay Foad | 39c7980 | 2011-01-12 09:06:06 +0000 | [diff] [blame] | 672 | APSInt &Value, const ASTContext &Ctx) { |
Daniel Dunbar | b6f953e | 2009-01-29 06:16:07 +0000 | [diff] [blame] | 673 | unsigned DestWidth = Ctx.getIntWidth(DestType); |
| 674 | APSInt Result = Value; |
| 675 | // Figure out if this is a truncate, extend or noop cast. |
| 676 | // If the input is signed, do a sign extend, noop, or truncate. |
Jay Foad | 6d4db0c | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 677 | Result = Result.extOrTrunc(DestWidth); |
Douglas Gregor | 6ab2fa8 | 2011-05-20 16:38:50 +0000 | [diff] [blame] | 678 | Result.setIsUnsigned(DestType->isUnsignedIntegerOrEnumerationType()); |
Daniel Dunbar | b6f953e | 2009-01-29 06:16:07 +0000 | [diff] [blame] | 679 | return Result; |
| 680 | } |
| 681 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 682 | static APFloat HandleIntToFloatCast(QualType DestType, QualType SrcType, |
Jay Foad | 39c7980 | 2011-01-12 09:06:06 +0000 | [diff] [blame] | 683 | APSInt &Value, const ASTContext &Ctx) { |
Daniel Dunbar | b6f953e | 2009-01-29 06:16:07 +0000 | [diff] [blame] | 684 | |
| 685 | APFloat Result(Ctx.getFloatTypeSemantics(DestType), 1); |
| 686 | Result.convertFromAPInt(Value, Value.isSigned(), |
| 687 | APFloat::rmNearestTiesToEven); |
| 688 | return Result; |
| 689 | } |
| 690 | |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 691 | static bool FindMostDerivedObject(EvalInfo &Info, const LValue &LVal, |
| 692 | const CXXRecordDecl *&MostDerivedType, |
| 693 | unsigned &MostDerivedPathLength, |
| 694 | bool &MostDerivedIsArrayElement) { |
| 695 | const SubobjectDesignator &D = LVal.Designator; |
| 696 | if (D.Invalid || !LVal.Base) |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 697 | return false; |
| 698 | |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 699 | const Type *T = getType(LVal.Base).getTypePtr(); |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 700 | |
| 701 | // Find path prefix which leads to the most-derived subobject. |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 702 | MostDerivedType = T->getAsCXXRecordDecl(); |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 703 | MostDerivedPathLength = 0; |
| 704 | MostDerivedIsArrayElement = false; |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 705 | |
| 706 | for (unsigned I = 0, N = D.Entries.size(); I != N; ++I) { |
| 707 | bool IsArray = T && T->isArrayType(); |
| 708 | if (IsArray) |
| 709 | T = T->getBaseElementTypeUnsafe(); |
| 710 | else if (const FieldDecl *FD = getAsField(D.Entries[I])) |
| 711 | T = FD->getType().getTypePtr(); |
| 712 | else |
| 713 | T = 0; |
| 714 | |
| 715 | if (T) { |
| 716 | MostDerivedType = T->getAsCXXRecordDecl(); |
| 717 | MostDerivedPathLength = I + 1; |
| 718 | MostDerivedIsArrayElement = IsArray; |
| 719 | } |
| 720 | } |
| 721 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 722 | // (B*)&d + 1 has no most-derived object. |
| 723 | if (D.OnePastTheEnd && MostDerivedPathLength != D.Entries.size()) |
| 724 | return false; |
| 725 | |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 726 | return MostDerivedType != 0; |
| 727 | } |
| 728 | |
| 729 | static void TruncateLValueBasePath(EvalInfo &Info, LValue &Result, |
| 730 | const RecordDecl *TruncatedType, |
| 731 | unsigned TruncatedElements, |
| 732 | bool IsArrayElement) { |
| 733 | SubobjectDesignator &D = Result.Designator; |
| 734 | const RecordDecl *RD = TruncatedType; |
| 735 | for (unsigned I = TruncatedElements, N = D.Entries.size(); I != N; ++I) { |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 736 | const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD); |
| 737 | const CXXRecordDecl *Base = getAsBaseClass(D.Entries[I]); |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 738 | if (isVirtualBaseClass(D.Entries[I])) |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 739 | Result.Offset -= Layout.getVBaseClassOffset(Base); |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 740 | else |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 741 | Result.Offset -= Layout.getBaseClassOffset(Base); |
| 742 | RD = Base; |
| 743 | } |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 744 | D.Entries.resize(TruncatedElements); |
| 745 | D.ArrayElement = IsArrayElement; |
| 746 | } |
| 747 | |
| 748 | /// If the given LValue refers to a base subobject of some object, find the most |
| 749 | /// derived object and the corresponding complete record type. This is necessary |
| 750 | /// in order to find the offset of a virtual base class. |
| 751 | static bool ExtractMostDerivedObject(EvalInfo &Info, LValue &Result, |
| 752 | const CXXRecordDecl *&MostDerivedType) { |
| 753 | unsigned MostDerivedPathLength; |
| 754 | bool MostDerivedIsArrayElement; |
| 755 | if (!FindMostDerivedObject(Info, Result, MostDerivedType, |
| 756 | MostDerivedPathLength, MostDerivedIsArrayElement)) |
| 757 | return false; |
| 758 | |
| 759 | // Remove the trailing base class path entries and their offsets. |
| 760 | TruncateLValueBasePath(Info, Result, MostDerivedType, MostDerivedPathLength, |
| 761 | MostDerivedIsArrayElement); |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 762 | return true; |
| 763 | } |
| 764 | |
| 765 | static void HandleLValueDirectBase(EvalInfo &Info, LValue &Obj, |
| 766 | const CXXRecordDecl *Derived, |
| 767 | const CXXRecordDecl *Base, |
| 768 | const ASTRecordLayout *RL = 0) { |
| 769 | if (!RL) RL = &Info.Ctx.getASTRecordLayout(Derived); |
| 770 | Obj.getLValueOffset() += RL->getBaseClassOffset(Base); |
| 771 | Obj.Designator.addDecl(Base, /*Virtual*/ false); |
| 772 | } |
| 773 | |
| 774 | static bool HandleLValueBase(EvalInfo &Info, LValue &Obj, |
| 775 | const CXXRecordDecl *DerivedDecl, |
| 776 | const CXXBaseSpecifier *Base) { |
| 777 | const CXXRecordDecl *BaseDecl = Base->getType()->getAsCXXRecordDecl(); |
| 778 | |
| 779 | if (!Base->isVirtual()) { |
| 780 | HandleLValueDirectBase(Info, Obj, DerivedDecl, BaseDecl); |
| 781 | return true; |
| 782 | } |
| 783 | |
| 784 | // Extract most-derived object and corresponding type. |
| 785 | if (!ExtractMostDerivedObject(Info, Obj, DerivedDecl)) |
| 786 | return false; |
| 787 | |
| 788 | const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(DerivedDecl); |
| 789 | Obj.getLValueOffset() += Layout.getVBaseClassOffset(BaseDecl); |
| 790 | Obj.Designator.addDecl(BaseDecl, /*Virtual*/ true); |
| 791 | return true; |
| 792 | } |
| 793 | |
| 794 | /// Update LVal to refer to the given field, which must be a member of the type |
| 795 | /// currently described by LVal. |
| 796 | static void HandleLValueMember(EvalInfo &Info, LValue &LVal, |
| 797 | const FieldDecl *FD, |
| 798 | const ASTRecordLayout *RL = 0) { |
| 799 | if (!RL) |
| 800 | RL = &Info.Ctx.getASTRecordLayout(FD->getParent()); |
| 801 | |
| 802 | unsigned I = FD->getFieldIndex(); |
| 803 | LVal.Offset += Info.Ctx.toCharUnitsFromBits(RL->getFieldOffset(I)); |
| 804 | LVal.Designator.addDecl(FD); |
| 805 | } |
| 806 | |
| 807 | /// Get the size of the given type in char units. |
| 808 | static bool HandleSizeof(EvalInfo &Info, QualType Type, CharUnits &Size) { |
| 809 | // sizeof(void), __alignof__(void), sizeof(function) = 1 as a gcc |
| 810 | // extension. |
| 811 | if (Type->isVoidType() || Type->isFunctionType()) { |
| 812 | Size = CharUnits::One(); |
| 813 | return true; |
| 814 | } |
| 815 | |
| 816 | if (!Type->isConstantSizeType()) { |
| 817 | // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2. |
| 818 | return false; |
| 819 | } |
| 820 | |
| 821 | Size = Info.Ctx.getTypeSizeInChars(Type); |
| 822 | return true; |
| 823 | } |
| 824 | |
| 825 | /// Update a pointer value to model pointer arithmetic. |
| 826 | /// \param Info - Information about the ongoing evaluation. |
| 827 | /// \param LVal - The pointer value to be updated. |
| 828 | /// \param EltTy - The pointee type represented by LVal. |
| 829 | /// \param Adjustment - The adjustment, in objects of type EltTy, to add. |
| 830 | static bool HandleLValueArrayAdjustment(EvalInfo &Info, LValue &LVal, |
| 831 | QualType EltTy, int64_t Adjustment) { |
| 832 | CharUnits SizeOfPointee; |
| 833 | if (!HandleSizeof(Info, EltTy, SizeOfPointee)) |
| 834 | return false; |
| 835 | |
| 836 | // Compute the new offset in the appropriate width. |
| 837 | LVal.Offset += Adjustment * SizeOfPointee; |
| 838 | LVal.Designator.adjustIndex(Adjustment); |
| 839 | return true; |
| 840 | } |
| 841 | |
Richard Smith | 2790870 | 2011-10-24 17:54:18 +0000 | [diff] [blame] | 842 | /// Try to evaluate the initializer for a variable declaration. |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 843 | static bool EvaluateVarDeclInit(EvalInfo &Info, const VarDecl *VD, |
Richard Smith | fec0992 | 2011-11-01 16:57:24 +0000 | [diff] [blame] | 844 | CallStackFrame *Frame, CCValue &Result) { |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 845 | // If this is a parameter to an active constexpr function call, perform |
| 846 | // argument substitution. |
| 847 | if (const ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(VD)) { |
Richard Smith | fec0992 | 2011-11-01 16:57:24 +0000 | [diff] [blame] | 848 | if (!Frame || !Frame->Arguments) |
| 849 | return false; |
| 850 | Result = Frame->Arguments[PVD->getFunctionScopeIndex()]; |
| 851 | return true; |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 852 | } |
Richard Smith | 2790870 | 2011-10-24 17:54:18 +0000 | [diff] [blame] | 853 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 854 | // If we're currently evaluating the initializer of this declaration, use that |
| 855 | // in-flight value. |
| 856 | if (Info.EvaluatingDecl == VD) { |
| 857 | Result = CCValue(*Info.EvaluatingDeclValue, CCValue::GlobalValue()); |
| 858 | return !Result.isUninit(); |
| 859 | } |
| 860 | |
Richard Smith | cecf184 | 2011-11-01 21:06:14 +0000 | [diff] [blame] | 861 | // Never evaluate the initializer of a weak variable. We can't be sure that |
| 862 | // this is the definition which will be used. |
Lang Hames | d42bb47 | 2011-12-05 20:16:26 +0000 | [diff] [blame] | 863 | if (VD->isWeak()) |
Richard Smith | cecf184 | 2011-11-01 21:06:14 +0000 | [diff] [blame] | 864 | return false; |
| 865 | |
Richard Smith | 2790870 | 2011-10-24 17:54:18 +0000 | [diff] [blame] | 866 | const Expr *Init = VD->getAnyInitializer(); |
Richard Smith | ec8dcd2 | 2011-11-08 01:31:09 +0000 | [diff] [blame] | 867 | if (!Init || Init->isValueDependent()) |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 868 | return false; |
Richard Smith | 2790870 | 2011-10-24 17:54:18 +0000 | [diff] [blame] | 869 | |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 870 | if (APValue *V = VD->getEvaluatedValue()) { |
Richard Smith | fec0992 | 2011-11-01 16:57:24 +0000 | [diff] [blame] | 871 | Result = CCValue(*V, CCValue::GlobalValue()); |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 872 | return !Result.isUninit(); |
| 873 | } |
Richard Smith | 2790870 | 2011-10-24 17:54:18 +0000 | [diff] [blame] | 874 | |
| 875 | if (VD->isEvaluatingValue()) |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 876 | return false; |
Richard Smith | 2790870 | 2011-10-24 17:54:18 +0000 | [diff] [blame] | 877 | |
| 878 | VD->setEvaluatingValue(); |
| 879 | |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 880 | Expr::EvalStatus EStatus; |
| 881 | EvalInfo InitInfo(Info.Ctx, EStatus); |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 882 | APValue EvalResult; |
| 883 | InitInfo.setEvaluatingDecl(VD, EvalResult); |
| 884 | LValue LVal; |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 885 | LVal.set(VD); |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 886 | // FIXME: The caller will need to know whether the value was a constant |
| 887 | // expression. If not, we should propagate up a diagnostic. |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 888 | if (!EvaluateConstantExpression(EvalResult, InitInfo, LVal, Init)) { |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 889 | // FIXME: If the evaluation failure was not permanent (for instance, if we |
| 890 | // hit a variable with no declaration yet, or a constexpr function with no |
| 891 | // definition yet), the standard is unclear as to how we should behave. |
| 892 | // |
| 893 | // Either the initializer should be evaluated when the variable is defined, |
| 894 | // or a failed evaluation of the initializer should be reattempted each time |
| 895 | // it is used. |
Richard Smith | 2790870 | 2011-10-24 17:54:18 +0000 | [diff] [blame] | 896 | VD->setEvaluatedValue(APValue()); |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 897 | return false; |
| 898 | } |
Richard Smith | 2790870 | 2011-10-24 17:54:18 +0000 | [diff] [blame] | 899 | |
Richard Smith | ed5165f | 2011-11-04 05:33:44 +0000 | [diff] [blame] | 900 | VD->setEvaluatedValue(EvalResult); |
| 901 | Result = CCValue(EvalResult, CCValue::GlobalValue()); |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 902 | return true; |
Richard Smith | 2790870 | 2011-10-24 17:54:18 +0000 | [diff] [blame] | 903 | } |
| 904 | |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 905 | static bool IsConstNonVolatile(QualType T) { |
Richard Smith | 2790870 | 2011-10-24 17:54:18 +0000 | [diff] [blame] | 906 | Qualifiers Quals = T.getQualifiers(); |
| 907 | return Quals.hasConst() && !Quals.hasVolatile(); |
| 908 | } |
| 909 | |
Richard Smith | e97cbd7 | 2011-11-11 04:05:33 +0000 | [diff] [blame] | 910 | /// Get the base index of the given base class within an APValue representing |
| 911 | /// the given derived class. |
| 912 | static unsigned getBaseIndex(const CXXRecordDecl *Derived, |
| 913 | const CXXRecordDecl *Base) { |
| 914 | Base = Base->getCanonicalDecl(); |
| 915 | unsigned Index = 0; |
| 916 | for (CXXRecordDecl::base_class_const_iterator I = Derived->bases_begin(), |
| 917 | E = Derived->bases_end(); I != E; ++I, ++Index) { |
| 918 | if (I->getType()->getAsCXXRecordDecl()->getCanonicalDecl() == Base) |
| 919 | return Index; |
| 920 | } |
| 921 | |
| 922 | llvm_unreachable("base class missing from derived class's bases list"); |
| 923 | } |
| 924 | |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 925 | /// Extract the designated sub-object of an rvalue. |
| 926 | static bool ExtractSubobject(EvalInfo &Info, CCValue &Obj, QualType ObjType, |
| 927 | const SubobjectDesignator &Sub, QualType SubType) { |
| 928 | if (Sub.Invalid || Sub.OnePastTheEnd) |
| 929 | return false; |
Richard Smith | 6804be5 | 2011-11-11 08:28:03 +0000 | [diff] [blame] | 930 | if (Sub.Entries.empty()) |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 931 | return true; |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 932 | |
| 933 | assert(!Obj.isLValue() && "extracting subobject of lvalue"); |
| 934 | const APValue *O = &Obj; |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 935 | // Walk the designator's path to find the subobject. |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 936 | for (unsigned I = 0, N = Sub.Entries.size(); I != N; ++I) { |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 937 | if (ObjType->isArrayType()) { |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 938 | // Next subobject is an array element. |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 939 | const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(ObjType); |
| 940 | if (!CAT) |
| 941 | return false; |
| 942 | uint64_t Index = Sub.Entries[I].ArrayIndex; |
| 943 | if (CAT->getSize().ule(Index)) |
| 944 | return false; |
| 945 | if (O->getArrayInitializedElts() > Index) |
| 946 | O = &O->getArrayInitializedElt(Index); |
| 947 | else |
| 948 | O = &O->getArrayFiller(); |
| 949 | ObjType = CAT->getElementType(); |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 950 | } else if (const FieldDecl *Field = getAsField(Sub.Entries[I])) { |
| 951 | // Next subobject is a class, struct or union field. |
| 952 | RecordDecl *RD = ObjType->castAs<RecordType>()->getDecl(); |
| 953 | if (RD->isUnion()) { |
| 954 | const FieldDecl *UnionField = O->getUnionField(); |
| 955 | if (!UnionField || |
| 956 | UnionField->getCanonicalDecl() != Field->getCanonicalDecl()) |
| 957 | return false; |
| 958 | O = &O->getUnionValue(); |
| 959 | } else |
| 960 | O = &O->getStructField(Field->getFieldIndex()); |
| 961 | ObjType = Field->getType(); |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 962 | } else { |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 963 | // Next subobject is a base class. |
Richard Smith | e97cbd7 | 2011-11-11 04:05:33 +0000 | [diff] [blame] | 964 | const CXXRecordDecl *Derived = ObjType->getAsCXXRecordDecl(); |
| 965 | const CXXRecordDecl *Base = getAsBaseClass(Sub.Entries[I]); |
| 966 | O = &O->getStructBase(getBaseIndex(Derived, Base)); |
| 967 | ObjType = Info.Ctx.getRecordType(Base); |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 968 | } |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 969 | |
| 970 | if (O->isUninit()) |
| 971 | return false; |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 972 | } |
| 973 | |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 974 | Obj = CCValue(*O, CCValue::GlobalValue()); |
| 975 | return true; |
| 976 | } |
| 977 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 978 | /// HandleLValueToRValueConversion - Perform an lvalue-to-rvalue conversion on |
| 979 | /// the given lvalue. This can also be used for 'lvalue-to-lvalue' conversions |
| 980 | /// for looking up the glvalue referred to by an entity of reference type. |
| 981 | /// |
| 982 | /// \param Info - Information about the ongoing evaluation. |
| 983 | /// \param Type - The type we expect this conversion to produce. |
| 984 | /// \param LVal - The glvalue on which we are attempting to perform this action. |
| 985 | /// \param RVal - The produced value will be placed here. |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 986 | static bool HandleLValueToRValueConversion(EvalInfo &Info, QualType Type, |
| 987 | const LValue &LVal, CCValue &RVal) { |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 988 | const Expr *Base = LVal.Base.dyn_cast<const Expr*>(); |
Richard Smith | fec0992 | 2011-11-01 16:57:24 +0000 | [diff] [blame] | 989 | CallStackFrame *Frame = LVal.Frame; |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 990 | |
| 991 | // FIXME: Indirection through a null pointer deserves a diagnostic. |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 992 | if (!LVal.Base) |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 993 | return false; |
| 994 | |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 995 | if (const ValueDecl *D = LVal.Base.dyn_cast<const ValueDecl*>()) { |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 996 | // In C++98, const, non-volatile integers initialized with ICEs are ICEs. |
| 997 | // In C++11, constexpr, non-volatile variables initialized with constant |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 998 | // expressions are constant expressions too. Inside constexpr functions, |
| 999 | // parameters are constant expressions even if they're non-const. |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 1000 | // In C, such things can also be folded, although they are not ICEs. |
| 1001 | // |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 1002 | // FIXME: volatile-qualified ParmVarDecls need special handling. A literal |
| 1003 | // interpretation of C++11 suggests that volatile parameters are OK if |
| 1004 | // they're never read (there's no prohibition against constructing volatile |
| 1005 | // objects in constant expressions), but lvalue-to-rvalue conversions on |
| 1006 | // them are not permitted. |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 1007 | const VarDecl *VD = dyn_cast<VarDecl>(D); |
Richard Smith | a08acd8 | 2011-11-07 03:22:51 +0000 | [diff] [blame] | 1008 | if (!VD || VD->isInvalidDecl()) |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 1009 | return false; |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 1010 | QualType VT = VD->getType(); |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 1011 | if (!isa<ParmVarDecl>(VD)) { |
| 1012 | if (!IsConstNonVolatile(VT)) |
| 1013 | return false; |
Richard Smith | a08acd8 | 2011-11-07 03:22:51 +0000 | [diff] [blame] | 1014 | // FIXME: Allow folding of values of any literal type in all languages. |
| 1015 | if (!VT->isIntegralOrEnumerationType() && !VT->isRealFloatingType() && |
| 1016 | !VD->isConstexpr()) |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 1017 | return false; |
| 1018 | } |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 1019 | if (!EvaluateVarDeclInit(Info, VD, Frame, RVal)) |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 1020 | return false; |
| 1021 | |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 1022 | if (isa<ParmVarDecl>(VD) || !VD->getAnyInitializer()->isLValue()) |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 1023 | return ExtractSubobject(Info, RVal, VT, LVal.Designator, Type); |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 1024 | |
| 1025 | // The declaration was initialized by an lvalue, with no lvalue-to-rvalue |
| 1026 | // conversion. This happens when the declaration and the lvalue should be |
| 1027 | // considered synonymous, for instance when initializing an array of char |
| 1028 | // from a string literal. Continue as if the initializer lvalue was the |
| 1029 | // value we were originally given. |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 1030 | assert(RVal.getLValueOffset().isZero() && |
| 1031 | "offset for lvalue init of non-reference"); |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 1032 | Base = RVal.getLValueBase().get<const Expr*>(); |
Richard Smith | fec0992 | 2011-11-01 16:57:24 +0000 | [diff] [blame] | 1033 | Frame = RVal.getLValueFrame(); |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 1034 | } |
| 1035 | |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 1036 | // FIXME: Support PredefinedExpr, ObjCEncodeExpr, MakeStringConstant |
| 1037 | if (const StringLiteral *S = dyn_cast<StringLiteral>(Base)) { |
| 1038 | const SubobjectDesignator &Designator = LVal.Designator; |
| 1039 | if (Designator.Invalid || Designator.Entries.size() != 1) |
| 1040 | return false; |
| 1041 | |
| 1042 | assert(Type->isIntegerType() && "string element not integer type"); |
Richard Smith | 8081560 | 2011-11-07 05:07:52 +0000 | [diff] [blame] | 1043 | uint64_t Index = Designator.Entries[0].ArrayIndex; |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 1044 | if (Index > S->getLength()) |
| 1045 | return false; |
| 1046 | APSInt Value(S->getCharByteWidth() * Info.Ctx.getCharWidth(), |
| 1047 | Type->isUnsignedIntegerType()); |
| 1048 | if (Index < S->getLength()) |
| 1049 | Value = S->getCodeUnit(Index); |
| 1050 | RVal = CCValue(Value); |
| 1051 | return true; |
| 1052 | } |
| 1053 | |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 1054 | if (Frame) { |
| 1055 | // If this is a temporary expression with a nontrivial initializer, grab the |
| 1056 | // value from the relevant stack frame. |
| 1057 | RVal = Frame->Temporaries[Base]; |
| 1058 | } else if (const CompoundLiteralExpr *CLE |
| 1059 | = dyn_cast<CompoundLiteralExpr>(Base)) { |
| 1060 | // In C99, a CompoundLiteralExpr is an lvalue, and we defer evaluating the |
| 1061 | // initializer until now for such expressions. Such an expression can't be |
| 1062 | // an ICE in C, so this only matters for fold. |
| 1063 | assert(!Info.getLangOpts().CPlusPlus && "lvalue compound literal in c++?"); |
| 1064 | if (!Evaluate(RVal, Info, CLE->getInitializer())) |
| 1065 | return false; |
| 1066 | } else |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 1067 | return false; |
| 1068 | |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 1069 | return ExtractSubobject(Info, RVal, Base->getType(), LVal.Designator, Type); |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 1070 | } |
| 1071 | |
Richard Smith | e97cbd7 | 2011-11-11 04:05:33 +0000 | [diff] [blame] | 1072 | /// Build an lvalue for the object argument of a member function call. |
| 1073 | static bool EvaluateObjectArgument(EvalInfo &Info, const Expr *Object, |
| 1074 | LValue &This) { |
| 1075 | if (Object->getType()->isPointerType()) |
| 1076 | return EvaluatePointer(Object, This, Info); |
| 1077 | |
| 1078 | if (Object->isGLValue()) |
| 1079 | return EvaluateLValue(Object, This, Info); |
| 1080 | |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 1081 | if (Object->getType()->isLiteralType()) |
| 1082 | return EvaluateTemporary(Object, This, Info); |
| 1083 | |
| 1084 | return false; |
| 1085 | } |
| 1086 | |
| 1087 | /// HandleMemberPointerAccess - Evaluate a member access operation and build an |
| 1088 | /// lvalue referring to the result. |
| 1089 | /// |
| 1090 | /// \param Info - Information about the ongoing evaluation. |
| 1091 | /// \param BO - The member pointer access operation. |
| 1092 | /// \param LV - Filled in with a reference to the resulting object. |
| 1093 | /// \param IncludeMember - Specifies whether the member itself is included in |
| 1094 | /// the resulting LValue subobject designator. This is not possible when |
| 1095 | /// creating a bound member function. |
| 1096 | /// \return The field or method declaration to which the member pointer refers, |
| 1097 | /// or 0 if evaluation fails. |
| 1098 | static const ValueDecl *HandleMemberPointerAccess(EvalInfo &Info, |
| 1099 | const BinaryOperator *BO, |
| 1100 | LValue &LV, |
| 1101 | bool IncludeMember = true) { |
| 1102 | assert(BO->getOpcode() == BO_PtrMemD || BO->getOpcode() == BO_PtrMemI); |
| 1103 | |
| 1104 | if (!EvaluateObjectArgument(Info, BO->getLHS(), LV)) |
| 1105 | return 0; |
| 1106 | |
| 1107 | MemberPtr MemPtr; |
| 1108 | if (!EvaluateMemberPointer(BO->getRHS(), MemPtr, Info)) |
| 1109 | return 0; |
| 1110 | |
| 1111 | // C++11 [expr.mptr.oper]p6: If the second operand is the null pointer to |
| 1112 | // member value, the behavior is undefined. |
| 1113 | if (!MemPtr.getDecl()) |
| 1114 | return 0; |
| 1115 | |
| 1116 | if (MemPtr.isDerivedMember()) { |
| 1117 | // This is a member of some derived class. Truncate LV appropriately. |
| 1118 | const CXXRecordDecl *MostDerivedType; |
| 1119 | unsigned MostDerivedPathLength; |
| 1120 | bool MostDerivedIsArrayElement; |
| 1121 | if (!FindMostDerivedObject(Info, LV, MostDerivedType, MostDerivedPathLength, |
| 1122 | MostDerivedIsArrayElement)) |
| 1123 | return 0; |
| 1124 | |
| 1125 | // The end of the derived-to-base path for the base object must match the |
| 1126 | // derived-to-base path for the member pointer. |
| 1127 | if (MostDerivedPathLength + MemPtr.Path.size() > |
| 1128 | LV.Designator.Entries.size()) |
| 1129 | return 0; |
| 1130 | unsigned PathLengthToMember = |
| 1131 | LV.Designator.Entries.size() - MemPtr.Path.size(); |
| 1132 | for (unsigned I = 0, N = MemPtr.Path.size(); I != N; ++I) { |
| 1133 | const CXXRecordDecl *LVDecl = getAsBaseClass( |
| 1134 | LV.Designator.Entries[PathLengthToMember + I]); |
| 1135 | const CXXRecordDecl *MPDecl = MemPtr.Path[I]; |
| 1136 | if (LVDecl->getCanonicalDecl() != MPDecl->getCanonicalDecl()) |
| 1137 | return 0; |
| 1138 | } |
| 1139 | |
| 1140 | // Truncate the lvalue to the appropriate derived class. |
| 1141 | bool ResultIsArray = false; |
| 1142 | if (PathLengthToMember == MostDerivedPathLength) |
| 1143 | ResultIsArray = MostDerivedIsArrayElement; |
| 1144 | TruncateLValueBasePath(Info, LV, MemPtr.getContainingRecord(), |
| 1145 | PathLengthToMember, ResultIsArray); |
| 1146 | } else if (!MemPtr.Path.empty()) { |
| 1147 | // Extend the LValue path with the member pointer's path. |
| 1148 | LV.Designator.Entries.reserve(LV.Designator.Entries.size() + |
| 1149 | MemPtr.Path.size() + IncludeMember); |
| 1150 | |
| 1151 | // Walk down to the appropriate base class. |
| 1152 | QualType LVType = BO->getLHS()->getType(); |
| 1153 | if (const PointerType *PT = LVType->getAs<PointerType>()) |
| 1154 | LVType = PT->getPointeeType(); |
| 1155 | const CXXRecordDecl *RD = LVType->getAsCXXRecordDecl(); |
| 1156 | assert(RD && "member pointer access on non-class-type expression"); |
| 1157 | // The first class in the path is that of the lvalue. |
| 1158 | for (unsigned I = 1, N = MemPtr.Path.size(); I != N; ++I) { |
| 1159 | const CXXRecordDecl *Base = MemPtr.Path[N - I - 1]; |
| 1160 | HandleLValueDirectBase(Info, LV, RD, Base); |
| 1161 | RD = Base; |
| 1162 | } |
| 1163 | // Finally cast to the class containing the member. |
| 1164 | HandleLValueDirectBase(Info, LV, RD, MemPtr.getContainingRecord()); |
| 1165 | } |
| 1166 | |
| 1167 | // Add the member. Note that we cannot build bound member functions here. |
| 1168 | if (IncludeMember) { |
| 1169 | // FIXME: Deal with IndirectFieldDecls. |
| 1170 | const FieldDecl *FD = dyn_cast<FieldDecl>(MemPtr.getDecl()); |
| 1171 | if (!FD) return 0; |
| 1172 | HandleLValueMember(Info, LV, FD); |
| 1173 | } |
| 1174 | |
| 1175 | return MemPtr.getDecl(); |
| 1176 | } |
| 1177 | |
| 1178 | /// HandleBaseToDerivedCast - Apply the given base-to-derived cast operation on |
| 1179 | /// the provided lvalue, which currently refers to the base object. |
| 1180 | static bool HandleBaseToDerivedCast(EvalInfo &Info, const CastExpr *E, |
| 1181 | LValue &Result) { |
| 1182 | const CXXRecordDecl *MostDerivedType; |
| 1183 | unsigned MostDerivedPathLength; |
| 1184 | bool MostDerivedIsArrayElement; |
| 1185 | |
| 1186 | // Check this cast doesn't take us outside the object. |
| 1187 | if (!FindMostDerivedObject(Info, Result, MostDerivedType, |
| 1188 | MostDerivedPathLength, |
| 1189 | MostDerivedIsArrayElement)) |
| 1190 | return false; |
| 1191 | SubobjectDesignator &D = Result.Designator; |
| 1192 | if (MostDerivedPathLength + E->path_size() > D.Entries.size()) |
| 1193 | return false; |
| 1194 | |
| 1195 | // Check the type of the final cast. We don't need to check the path, |
| 1196 | // since a cast can only be formed if the path is unique. |
| 1197 | unsigned NewEntriesSize = D.Entries.size() - E->path_size(); |
| 1198 | bool ResultIsArray = false; |
| 1199 | QualType TargetQT = E->getType(); |
| 1200 | if (const PointerType *PT = TargetQT->getAs<PointerType>()) |
| 1201 | TargetQT = PT->getPointeeType(); |
| 1202 | const CXXRecordDecl *TargetType = TargetQT->getAsCXXRecordDecl(); |
| 1203 | const CXXRecordDecl *FinalType; |
| 1204 | if (NewEntriesSize == MostDerivedPathLength) { |
| 1205 | ResultIsArray = MostDerivedIsArrayElement; |
| 1206 | FinalType = MostDerivedType; |
| 1207 | } else |
| 1208 | FinalType = getAsBaseClass(D.Entries[NewEntriesSize - 1]); |
| 1209 | if (FinalType->getCanonicalDecl() != TargetType->getCanonicalDecl()) |
| 1210 | return false; |
| 1211 | |
| 1212 | // Truncate the lvalue to the appropriate derived class. |
| 1213 | TruncateLValueBasePath(Info, Result, TargetType, NewEntriesSize, |
| 1214 | ResultIsArray); |
| 1215 | return true; |
Richard Smith | e97cbd7 | 2011-11-11 04:05:33 +0000 | [diff] [blame] | 1216 | } |
| 1217 | |
Mike Stump | 876387b | 2009-10-27 22:09:17 +0000 | [diff] [blame] | 1218 | namespace { |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 1219 | enum EvalStmtResult { |
| 1220 | /// Evaluation failed. |
| 1221 | ESR_Failed, |
| 1222 | /// Hit a 'return' statement. |
| 1223 | ESR_Returned, |
| 1224 | /// Evaluation succeeded. |
| 1225 | ESR_Succeeded |
| 1226 | }; |
| 1227 | } |
| 1228 | |
| 1229 | // Evaluate a statement. |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 1230 | static EvalStmtResult EvaluateStmt(CCValue &Result, EvalInfo &Info, |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 1231 | const Stmt *S) { |
| 1232 | switch (S->getStmtClass()) { |
| 1233 | default: |
| 1234 | return ESR_Failed; |
| 1235 | |
| 1236 | case Stmt::NullStmtClass: |
| 1237 | case Stmt::DeclStmtClass: |
| 1238 | return ESR_Succeeded; |
| 1239 | |
| 1240 | case Stmt::ReturnStmtClass: |
| 1241 | if (Evaluate(Result, Info, cast<ReturnStmt>(S)->getRetValue())) |
| 1242 | return ESR_Returned; |
| 1243 | return ESR_Failed; |
| 1244 | |
| 1245 | case Stmt::CompoundStmtClass: { |
| 1246 | const CompoundStmt *CS = cast<CompoundStmt>(S); |
| 1247 | for (CompoundStmt::const_body_iterator BI = CS->body_begin(), |
| 1248 | BE = CS->body_end(); BI != BE; ++BI) { |
| 1249 | EvalStmtResult ESR = EvaluateStmt(Result, Info, *BI); |
| 1250 | if (ESR != ESR_Succeeded) |
| 1251 | return ESR; |
| 1252 | } |
| 1253 | return ESR_Succeeded; |
| 1254 | } |
| 1255 | } |
| 1256 | } |
| 1257 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 1258 | namespace { |
Richard Smith | 6049446 | 2011-11-11 05:48:57 +0000 | [diff] [blame] | 1259 | typedef SmallVector<CCValue, 8> ArgVector; |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 1260 | } |
| 1261 | |
| 1262 | /// EvaluateArgs - Evaluate the arguments to a function call. |
| 1263 | static bool EvaluateArgs(ArrayRef<const Expr*> Args, ArgVector &ArgValues, |
| 1264 | EvalInfo &Info) { |
| 1265 | for (ArrayRef<const Expr*>::iterator I = Args.begin(), E = Args.end(); |
| 1266 | I != E; ++I) |
| 1267 | if (!Evaluate(ArgValues[I - Args.begin()], Info, *I)) |
| 1268 | return false; |
| 1269 | return true; |
| 1270 | } |
| 1271 | |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 1272 | /// Evaluate a function call. |
Richard Smith | e97cbd7 | 2011-11-11 04:05:33 +0000 | [diff] [blame] | 1273 | static bool HandleFunctionCall(const LValue *This, ArrayRef<const Expr*> Args, |
| 1274 | const Stmt *Body, EvalInfo &Info, |
| 1275 | CCValue &Result) { |
Richard Smith | 9a56882 | 2011-11-21 19:36:32 +0000 | [diff] [blame] | 1276 | if (Info.atCallLimit()) |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 1277 | return false; |
| 1278 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 1279 | ArgVector ArgValues(Args.size()); |
| 1280 | if (!EvaluateArgs(Args, ArgValues, Info)) |
| 1281 | return false; |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 1282 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 1283 | CallStackFrame Frame(Info, This, ArgValues.data()); |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 1284 | return EvaluateStmt(Result, Info, Body) == ESR_Returned; |
| 1285 | } |
| 1286 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 1287 | /// Evaluate a constructor call. |
Richard Smith | e97cbd7 | 2011-11-11 04:05:33 +0000 | [diff] [blame] | 1288 | static bool HandleConstructorCall(const LValue &This, |
| 1289 | ArrayRef<const Expr*> Args, |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 1290 | const CXXConstructorDecl *Definition, |
Richard Smith | e97cbd7 | 2011-11-11 04:05:33 +0000 | [diff] [blame] | 1291 | EvalInfo &Info, |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 1292 | APValue &Result) { |
Richard Smith | 9a56882 | 2011-11-21 19:36:32 +0000 | [diff] [blame] | 1293 | if (Info.atCallLimit()) |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 1294 | return false; |
| 1295 | |
| 1296 | ArgVector ArgValues(Args.size()); |
| 1297 | if (!EvaluateArgs(Args, ArgValues, Info)) |
| 1298 | return false; |
| 1299 | |
| 1300 | CallStackFrame Frame(Info, &This, ArgValues.data()); |
| 1301 | |
| 1302 | // If it's a delegating constructor, just delegate. |
| 1303 | if (Definition->isDelegatingConstructor()) { |
| 1304 | CXXConstructorDecl::init_const_iterator I = Definition->init_begin(); |
| 1305 | return EvaluateConstantExpression(Result, Info, This, (*I)->getInit()); |
| 1306 | } |
| 1307 | |
| 1308 | // Reserve space for the struct members. |
| 1309 | const CXXRecordDecl *RD = Definition->getParent(); |
| 1310 | if (!RD->isUnion()) |
| 1311 | Result = APValue(APValue::UninitStruct(), RD->getNumBases(), |
| 1312 | std::distance(RD->field_begin(), RD->field_end())); |
| 1313 | |
| 1314 | const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD); |
| 1315 | |
| 1316 | unsigned BasesSeen = 0; |
| 1317 | #ifndef NDEBUG |
| 1318 | CXXRecordDecl::base_class_const_iterator BaseIt = RD->bases_begin(); |
| 1319 | #endif |
| 1320 | for (CXXConstructorDecl::init_const_iterator I = Definition->init_begin(), |
| 1321 | E = Definition->init_end(); I != E; ++I) { |
| 1322 | if ((*I)->isBaseInitializer()) { |
| 1323 | QualType BaseType((*I)->getBaseClass(), 0); |
| 1324 | #ifndef NDEBUG |
| 1325 | // Non-virtual base classes are initialized in the order in the class |
| 1326 | // definition. We cannot have a virtual base class for a literal type. |
| 1327 | assert(!BaseIt->isVirtual() && "virtual base for literal type"); |
| 1328 | assert(Info.Ctx.hasSameType(BaseIt->getType(), BaseType) && |
| 1329 | "base class initializers not in expected order"); |
| 1330 | ++BaseIt; |
| 1331 | #endif |
| 1332 | LValue Subobject = This; |
| 1333 | HandleLValueDirectBase(Info, Subobject, RD, |
| 1334 | BaseType->getAsCXXRecordDecl(), &Layout); |
| 1335 | if (!EvaluateConstantExpression(Result.getStructBase(BasesSeen++), Info, |
| 1336 | Subobject, (*I)->getInit())) |
| 1337 | return false; |
| 1338 | } else if (FieldDecl *FD = (*I)->getMember()) { |
| 1339 | LValue Subobject = This; |
| 1340 | HandleLValueMember(Info, Subobject, FD, &Layout); |
| 1341 | if (RD->isUnion()) { |
| 1342 | Result = APValue(FD); |
| 1343 | if (!EvaluateConstantExpression(Result.getUnionValue(), Info, |
| 1344 | Subobject, (*I)->getInit())) |
| 1345 | return false; |
| 1346 | } else if (!EvaluateConstantExpression( |
| 1347 | Result.getStructField(FD->getFieldIndex()), |
| 1348 | Info, Subobject, (*I)->getInit())) |
| 1349 | return false; |
| 1350 | } else { |
| 1351 | // FIXME: handle indirect field initializers |
| 1352 | return false; |
| 1353 | } |
| 1354 | } |
| 1355 | |
| 1356 | return true; |
| 1357 | } |
| 1358 | |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 1359 | namespace { |
Benjamin Kramer | 26222b6 | 2009-11-28 19:03:38 +0000 | [diff] [blame] | 1360 | class HasSideEffect |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1361 | : public ConstStmtVisitor<HasSideEffect, bool> { |
Richard Smith | 725810a | 2011-10-16 21:26:27 +0000 | [diff] [blame] | 1362 | const ASTContext &Ctx; |
Mike Stump | 876387b | 2009-10-27 22:09:17 +0000 | [diff] [blame] | 1363 | public: |
| 1364 | |
Richard Smith | 725810a | 2011-10-16 21:26:27 +0000 | [diff] [blame] | 1365 | HasSideEffect(const ASTContext &C) : Ctx(C) {} |
Mike Stump | 876387b | 2009-10-27 22:09:17 +0000 | [diff] [blame] | 1366 | |
| 1367 | // Unhandled nodes conservatively default to having side effects. |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1368 | bool VisitStmt(const Stmt *S) { |
Mike Stump | 876387b | 2009-10-27 22:09:17 +0000 | [diff] [blame] | 1369 | return true; |
| 1370 | } |
| 1371 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1372 | bool VisitParenExpr(const ParenExpr *E) { return Visit(E->getSubExpr()); } |
| 1373 | bool VisitGenericSelectionExpr(const GenericSelectionExpr *E) { |
Peter Collingbourne | 9114759 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 1374 | return Visit(E->getResultExpr()); |
| 1375 | } |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1376 | bool VisitDeclRefExpr(const DeclRefExpr *E) { |
Richard Smith | 725810a | 2011-10-16 21:26:27 +0000 | [diff] [blame] | 1377 | if (Ctx.getCanonicalType(E->getType()).isVolatileQualified()) |
Mike Stump | 876387b | 2009-10-27 22:09:17 +0000 | [diff] [blame] | 1378 | return true; |
| 1379 | return false; |
| 1380 | } |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1381 | bool VisitObjCIvarRefExpr(const ObjCIvarRefExpr *E) { |
Richard Smith | 725810a | 2011-10-16 21:26:27 +0000 | [diff] [blame] | 1382 | if (Ctx.getCanonicalType(E->getType()).isVolatileQualified()) |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1383 | return true; |
| 1384 | return false; |
| 1385 | } |
| 1386 | bool VisitBlockDeclRefExpr (const BlockDeclRefExpr *E) { |
Richard Smith | 725810a | 2011-10-16 21:26:27 +0000 | [diff] [blame] | 1387 | if (Ctx.getCanonicalType(E->getType()).isVolatileQualified()) |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1388 | return true; |
| 1389 | return false; |
| 1390 | } |
| 1391 | |
Mike Stump | 876387b | 2009-10-27 22:09:17 +0000 | [diff] [blame] | 1392 | // We don't want to evaluate BlockExprs multiple times, as they generate |
| 1393 | // a ton of code. |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1394 | bool VisitBlockExpr(const BlockExpr *E) { return true; } |
| 1395 | bool VisitPredefinedExpr(const PredefinedExpr *E) { return false; } |
| 1396 | bool VisitCompoundLiteralExpr(const CompoundLiteralExpr *E) |
Mike Stump | 876387b | 2009-10-27 22:09:17 +0000 | [diff] [blame] | 1397 | { return Visit(E->getInitializer()); } |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1398 | bool VisitMemberExpr(const MemberExpr *E) { return Visit(E->getBase()); } |
| 1399 | bool VisitIntegerLiteral(const IntegerLiteral *E) { return false; } |
| 1400 | bool VisitFloatingLiteral(const FloatingLiteral *E) { return false; } |
| 1401 | bool VisitStringLiteral(const StringLiteral *E) { return false; } |
| 1402 | bool VisitCharacterLiteral(const CharacterLiteral *E) { return false; } |
| 1403 | bool VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *E) |
Peter Collingbourne | e190dee | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 1404 | { return false; } |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1405 | bool VisitArraySubscriptExpr(const ArraySubscriptExpr *E) |
Mike Stump | fa50290 | 2009-10-29 20:48:09 +0000 | [diff] [blame] | 1406 | { return Visit(E->getLHS()) || Visit(E->getRHS()); } |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1407 | bool VisitChooseExpr(const ChooseExpr *E) |
Richard Smith | 725810a | 2011-10-16 21:26:27 +0000 | [diff] [blame] | 1408 | { return Visit(E->getChosenSubExpr(Ctx)); } |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1409 | bool VisitCastExpr(const CastExpr *E) { return Visit(E->getSubExpr()); } |
| 1410 | bool VisitBinAssign(const BinaryOperator *E) { return true; } |
| 1411 | bool VisitCompoundAssignOperator(const BinaryOperator *E) { return true; } |
| 1412 | bool VisitBinaryOperator(const BinaryOperator *E) |
Mike Stump | fa50290 | 2009-10-29 20:48:09 +0000 | [diff] [blame] | 1413 | { return Visit(E->getLHS()) || Visit(E->getRHS()); } |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1414 | bool VisitUnaryPreInc(const UnaryOperator *E) { return true; } |
| 1415 | bool VisitUnaryPostInc(const UnaryOperator *E) { return true; } |
| 1416 | bool VisitUnaryPreDec(const UnaryOperator *E) { return true; } |
| 1417 | bool VisitUnaryPostDec(const UnaryOperator *E) { return true; } |
| 1418 | bool VisitUnaryDeref(const UnaryOperator *E) { |
Richard Smith | 725810a | 2011-10-16 21:26:27 +0000 | [diff] [blame] | 1419 | if (Ctx.getCanonicalType(E->getType()).isVolatileQualified()) |
Mike Stump | 876387b | 2009-10-27 22:09:17 +0000 | [diff] [blame] | 1420 | return true; |
Mike Stump | fa50290 | 2009-10-29 20:48:09 +0000 | [diff] [blame] | 1421 | return Visit(E->getSubExpr()); |
Mike Stump | 876387b | 2009-10-27 22:09:17 +0000 | [diff] [blame] | 1422 | } |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1423 | bool VisitUnaryOperator(const UnaryOperator *E) { return Visit(E->getSubExpr()); } |
Chris Lattner | a067942 | 2010-04-13 17:34:23 +0000 | [diff] [blame] | 1424 | |
| 1425 | // Has side effects if any element does. |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1426 | bool VisitInitListExpr(const InitListExpr *E) { |
Chris Lattner | a067942 | 2010-04-13 17:34:23 +0000 | [diff] [blame] | 1427 | for (unsigned i = 0, e = E->getNumInits(); i != e; ++i) |
| 1428 | if (Visit(E->getInit(i))) return true; |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1429 | if (const Expr *filler = E->getArrayFiller()) |
Argyrios Kyrtzidis | b2ed28e | 2011-04-21 00:27:41 +0000 | [diff] [blame] | 1430 | return Visit(filler); |
Chris Lattner | a067942 | 2010-04-13 17:34:23 +0000 | [diff] [blame] | 1431 | return false; |
| 1432 | } |
Douglas Gregor | 820ba7b | 2011-01-04 17:33:58 +0000 | [diff] [blame] | 1433 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1434 | bool VisitSizeOfPackExpr(const SizeOfPackExpr *) { return false; } |
Mike Stump | 876387b | 2009-10-27 22:09:17 +0000 | [diff] [blame] | 1435 | }; |
| 1436 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 1437 | class OpaqueValueEvaluation { |
| 1438 | EvalInfo &info; |
| 1439 | OpaqueValueExpr *opaqueValue; |
| 1440 | |
| 1441 | public: |
| 1442 | OpaqueValueEvaluation(EvalInfo &info, OpaqueValueExpr *opaqueValue, |
| 1443 | Expr *value) |
| 1444 | : info(info), opaqueValue(opaqueValue) { |
| 1445 | |
| 1446 | // If evaluation fails, fail immediately. |
Richard Smith | 725810a | 2011-10-16 21:26:27 +0000 | [diff] [blame] | 1447 | if (!Evaluate(info.OpaqueValues[opaqueValue], info, value)) { |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 1448 | this->opaqueValue = 0; |
| 1449 | return; |
| 1450 | } |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 1451 | } |
| 1452 | |
| 1453 | bool hasError() const { return opaqueValue == 0; } |
| 1454 | |
| 1455 | ~OpaqueValueEvaluation() { |
Richard Smith | 725810a | 2011-10-16 21:26:27 +0000 | [diff] [blame] | 1456 | // FIXME: This will not work for recursive constexpr functions using opaque |
| 1457 | // values. Restore the former value. |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 1458 | if (opaqueValue) info.OpaqueValues.erase(opaqueValue); |
| 1459 | } |
| 1460 | }; |
| 1461 | |
Mike Stump | 876387b | 2009-10-27 22:09:17 +0000 | [diff] [blame] | 1462 | } // end anonymous namespace |
| 1463 | |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 1464 | //===----------------------------------------------------------------------===// |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1465 | // Generic Evaluation |
| 1466 | //===----------------------------------------------------------------------===// |
| 1467 | namespace { |
| 1468 | |
| 1469 | template <class Derived, typename RetTy=void> |
| 1470 | class ExprEvaluatorBase |
| 1471 | : public ConstStmtVisitor<Derived, RetTy> { |
| 1472 | private: |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 1473 | RetTy DerivedSuccess(const CCValue &V, const Expr *E) { |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1474 | return static_cast<Derived*>(this)->Success(V, E); |
| 1475 | } |
| 1476 | RetTy DerivedError(const Expr *E) { |
| 1477 | return static_cast<Derived*>(this)->Error(E); |
| 1478 | } |
Richard Smith | 4ce706a | 2011-10-11 21:43:33 +0000 | [diff] [blame] | 1479 | RetTy DerivedValueInitialization(const Expr *E) { |
| 1480 | return static_cast<Derived*>(this)->ValueInitialization(E); |
| 1481 | } |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1482 | |
| 1483 | protected: |
| 1484 | EvalInfo &Info; |
| 1485 | typedef ConstStmtVisitor<Derived, RetTy> StmtVisitorTy; |
| 1486 | typedef ExprEvaluatorBase ExprEvaluatorBaseTy; |
| 1487 | |
Richard Smith | 4ce706a | 2011-10-11 21:43:33 +0000 | [diff] [blame] | 1488 | RetTy ValueInitialization(const Expr *E) { return DerivedError(E); } |
| 1489 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1490 | public: |
| 1491 | ExprEvaluatorBase(EvalInfo &Info) : Info(Info) {} |
| 1492 | |
| 1493 | RetTy VisitStmt(const Stmt *) { |
David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 1494 | llvm_unreachable("Expression evaluator should not be called on stmts"); |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1495 | } |
| 1496 | RetTy VisitExpr(const Expr *E) { |
| 1497 | return DerivedError(E); |
| 1498 | } |
| 1499 | |
| 1500 | RetTy VisitParenExpr(const ParenExpr *E) |
| 1501 | { return StmtVisitorTy::Visit(E->getSubExpr()); } |
| 1502 | RetTy VisitUnaryExtension(const UnaryOperator *E) |
| 1503 | { return StmtVisitorTy::Visit(E->getSubExpr()); } |
| 1504 | RetTy VisitUnaryPlus(const UnaryOperator *E) |
| 1505 | { return StmtVisitorTy::Visit(E->getSubExpr()); } |
| 1506 | RetTy VisitChooseExpr(const ChooseExpr *E) |
| 1507 | { return StmtVisitorTy::Visit(E->getChosenSubExpr(Info.Ctx)); } |
| 1508 | RetTy VisitGenericSelectionExpr(const GenericSelectionExpr *E) |
| 1509 | { return StmtVisitorTy::Visit(E->getResultExpr()); } |
John McCall | 7c454bb | 2011-07-15 05:09:51 +0000 | [diff] [blame] | 1510 | RetTy VisitSubstNonTypeTemplateParmExpr(const SubstNonTypeTemplateParmExpr *E) |
| 1511 | { return StmtVisitorTy::Visit(E->getReplacement()); } |
Richard Smith | f8120ca | 2011-11-09 02:12:41 +0000 | [diff] [blame] | 1512 | RetTy VisitCXXDefaultArgExpr(const CXXDefaultArgExpr *E) |
| 1513 | { return StmtVisitorTy::Visit(E->getExpr()); } |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1514 | |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 1515 | RetTy VisitBinaryOperator(const BinaryOperator *E) { |
| 1516 | switch (E->getOpcode()) { |
| 1517 | default: |
| 1518 | return DerivedError(E); |
| 1519 | |
| 1520 | case BO_Comma: |
| 1521 | VisitIgnoredValue(E->getLHS()); |
| 1522 | return StmtVisitorTy::Visit(E->getRHS()); |
| 1523 | |
| 1524 | case BO_PtrMemD: |
| 1525 | case BO_PtrMemI: { |
| 1526 | LValue Obj; |
| 1527 | if (!HandleMemberPointerAccess(Info, E, Obj)) |
| 1528 | return false; |
| 1529 | CCValue Result; |
| 1530 | if (!HandleLValueToRValueConversion(Info, E->getType(), Obj, Result)) |
| 1531 | return false; |
| 1532 | return DerivedSuccess(Result, E); |
| 1533 | } |
| 1534 | } |
| 1535 | } |
| 1536 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1537 | RetTy VisitBinaryConditionalOperator(const BinaryConditionalOperator *E) { |
| 1538 | OpaqueValueEvaluation opaque(Info, E->getOpaqueValue(), E->getCommon()); |
| 1539 | if (opaque.hasError()) |
| 1540 | return DerivedError(E); |
| 1541 | |
| 1542 | bool cond; |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 1543 | if (!EvaluateAsBooleanCondition(E->getCond(), cond, Info)) |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1544 | return DerivedError(E); |
| 1545 | |
| 1546 | return StmtVisitorTy::Visit(cond ? E->getTrueExpr() : E->getFalseExpr()); |
| 1547 | } |
| 1548 | |
| 1549 | RetTy VisitConditionalOperator(const ConditionalOperator *E) { |
| 1550 | bool BoolResult; |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 1551 | if (!EvaluateAsBooleanCondition(E->getCond(), BoolResult, Info)) |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1552 | return DerivedError(E); |
| 1553 | |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 1554 | Expr *EvalExpr = BoolResult ? E->getTrueExpr() : E->getFalseExpr(); |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1555 | return StmtVisitorTy::Visit(EvalExpr); |
| 1556 | } |
| 1557 | |
| 1558 | RetTy VisitOpaqueValueExpr(const OpaqueValueExpr *E) { |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 1559 | const CCValue *Value = Info.getOpaqueValue(E); |
Argyrios Kyrtzidis | fac35c0 | 2011-12-09 02:44:48 +0000 | [diff] [blame] | 1560 | if (!Value) { |
| 1561 | const Expr *Source = E->getSourceExpr(); |
| 1562 | if (!Source) |
| 1563 | return DerivedError(E); |
| 1564 | if (Source == E) { // sanity checking. |
| 1565 | assert(0 && "OpaqueValueExpr recursively refers to itself"); |
| 1566 | return DerivedError(E); |
| 1567 | } |
| 1568 | return StmtVisitorTy::Visit(Source); |
| 1569 | } |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 1570 | return DerivedSuccess(*Value, E); |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1571 | } |
Richard Smith | 4ce706a | 2011-10-11 21:43:33 +0000 | [diff] [blame] | 1572 | |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 1573 | RetTy VisitCallExpr(const CallExpr *E) { |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 1574 | const Expr *Callee = E->getCallee()->IgnoreParens(); |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 1575 | QualType CalleeType = Callee->getType(); |
| 1576 | |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 1577 | const FunctionDecl *FD = 0; |
Richard Smith | e97cbd7 | 2011-11-11 04:05:33 +0000 | [diff] [blame] | 1578 | LValue *This = 0, ThisVal; |
| 1579 | llvm::ArrayRef<const Expr*> Args(E->getArgs(), E->getNumArgs()); |
Richard Smith | 656d49d | 2011-11-10 09:31:24 +0000 | [diff] [blame] | 1580 | |
Richard Smith | e97cbd7 | 2011-11-11 04:05:33 +0000 | [diff] [blame] | 1581 | // Extract function decl and 'this' pointer from the callee. |
| 1582 | if (CalleeType->isSpecificBuiltinType(BuiltinType::BoundMember)) { |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 1583 | if (const MemberExpr *ME = dyn_cast<MemberExpr>(Callee)) { |
| 1584 | // Explicit bound member calls, such as x.f() or p->g(); |
| 1585 | if (!EvaluateObjectArgument(Info, ME->getBase(), ThisVal)) |
| 1586 | return DerivedError(ME->getBase()); |
| 1587 | This = &ThisVal; |
| 1588 | FD = dyn_cast<FunctionDecl>(ME->getMemberDecl()); |
| 1589 | if (!FD) |
| 1590 | return DerivedError(ME); |
| 1591 | } else if (const BinaryOperator *BE = dyn_cast<BinaryOperator>(Callee)) { |
| 1592 | // Indirect bound member calls ('.*' or '->*'). |
| 1593 | const ValueDecl *Member = HandleMemberPointerAccess(Info, BE, ThisVal, |
| 1594 | false); |
| 1595 | This = &ThisVal; |
| 1596 | FD = dyn_cast_or_null<FunctionDecl>(Member); |
| 1597 | if (!FD) |
| 1598 | return DerivedError(Callee); |
| 1599 | } else |
Richard Smith | e97cbd7 | 2011-11-11 04:05:33 +0000 | [diff] [blame] | 1600 | return DerivedError(Callee); |
Richard Smith | e97cbd7 | 2011-11-11 04:05:33 +0000 | [diff] [blame] | 1601 | } else if (CalleeType->isFunctionPointerType()) { |
| 1602 | CCValue Call; |
| 1603 | if (!Evaluate(Call, Info, Callee) || !Call.isLValue() || |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 1604 | !Call.getLValueOffset().isZero()) |
Richard Smith | e97cbd7 | 2011-11-11 04:05:33 +0000 | [diff] [blame] | 1605 | return DerivedError(Callee); |
| 1606 | |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 1607 | FD = dyn_cast_or_null<FunctionDecl>( |
| 1608 | Call.getLValueBase().dyn_cast<const ValueDecl*>()); |
Richard Smith | e97cbd7 | 2011-11-11 04:05:33 +0000 | [diff] [blame] | 1609 | if (!FD) |
| 1610 | return DerivedError(Callee); |
| 1611 | |
| 1612 | // Overloaded operator calls to member functions are represented as normal |
| 1613 | // calls with '*this' as the first argument. |
| 1614 | const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD); |
| 1615 | if (MD && !MD->isStatic()) { |
| 1616 | if (!EvaluateObjectArgument(Info, Args[0], ThisVal)) |
| 1617 | return false; |
| 1618 | This = &ThisVal; |
| 1619 | Args = Args.slice(1); |
| 1620 | } |
| 1621 | |
| 1622 | // Don't call function pointers which have been cast to some other type. |
| 1623 | if (!Info.Ctx.hasSameType(CalleeType->getPointeeType(), FD->getType())) |
| 1624 | return DerivedError(E); |
| 1625 | } else |
Devang Patel | 63104ad | 2011-11-10 17:47:39 +0000 | [diff] [blame] | 1626 | return DerivedError(E); |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 1627 | |
| 1628 | const FunctionDecl *Definition; |
| 1629 | Stmt *Body = FD->getBody(Definition); |
Richard Smith | ed5165f | 2011-11-04 05:33:44 +0000 | [diff] [blame] | 1630 | CCValue CCResult; |
| 1631 | APValue Result; |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 1632 | |
| 1633 | if (Body && Definition->isConstexpr() && !Definition->isInvalidDecl() && |
Richard Smith | e97cbd7 | 2011-11-11 04:05:33 +0000 | [diff] [blame] | 1634 | HandleFunctionCall(This, Args, Body, Info, CCResult) && |
Richard Smith | ed5165f | 2011-11-04 05:33:44 +0000 | [diff] [blame] | 1635 | CheckConstantExpression(CCResult, Result)) |
| 1636 | return DerivedSuccess(CCValue(Result, CCValue::GlobalValue()), E); |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 1637 | |
| 1638 | return DerivedError(E); |
| 1639 | } |
| 1640 | |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 1641 | RetTy VisitCompoundLiteralExpr(const CompoundLiteralExpr *E) { |
| 1642 | return StmtVisitorTy::Visit(E->getInitializer()); |
| 1643 | } |
Richard Smith | 4ce706a | 2011-10-11 21:43:33 +0000 | [diff] [blame] | 1644 | RetTy VisitInitListExpr(const InitListExpr *E) { |
| 1645 | if (Info.getLangOpts().CPlusPlus0x) { |
| 1646 | if (E->getNumInits() == 0) |
| 1647 | return DerivedValueInitialization(E); |
| 1648 | if (E->getNumInits() == 1) |
| 1649 | return StmtVisitorTy::Visit(E->getInit(0)); |
| 1650 | } |
| 1651 | return DerivedError(E); |
| 1652 | } |
| 1653 | RetTy VisitImplicitValueInitExpr(const ImplicitValueInitExpr *E) { |
| 1654 | return DerivedValueInitialization(E); |
| 1655 | } |
| 1656 | RetTy VisitCXXScalarValueInitExpr(const CXXScalarValueInitExpr *E) { |
| 1657 | return DerivedValueInitialization(E); |
| 1658 | } |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 1659 | RetTy VisitCXXNullPtrLiteralExpr(const CXXNullPtrLiteralExpr *E) { |
| 1660 | return DerivedValueInitialization(E); |
| 1661 | } |
Richard Smith | 4ce706a | 2011-10-11 21:43:33 +0000 | [diff] [blame] | 1662 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 1663 | /// A member expression where the object is a prvalue is itself a prvalue. |
| 1664 | RetTy VisitMemberExpr(const MemberExpr *E) { |
| 1665 | assert(!E->isArrow() && "missing call to bound member function?"); |
| 1666 | |
| 1667 | CCValue Val; |
| 1668 | if (!Evaluate(Val, Info, E->getBase())) |
| 1669 | return false; |
| 1670 | |
| 1671 | QualType BaseTy = E->getBase()->getType(); |
| 1672 | |
| 1673 | const FieldDecl *FD = dyn_cast<FieldDecl>(E->getMemberDecl()); |
| 1674 | if (!FD) return false; |
| 1675 | assert(!FD->getType()->isReferenceType() && "prvalue reference?"); |
| 1676 | assert(BaseTy->getAs<RecordType>()->getDecl()->getCanonicalDecl() == |
| 1677 | FD->getParent()->getCanonicalDecl() && "record / field mismatch"); |
| 1678 | |
| 1679 | SubobjectDesignator Designator; |
| 1680 | Designator.addDecl(FD); |
| 1681 | |
| 1682 | return ExtractSubobject(Info, Val, BaseTy, Designator, E->getType()) && |
| 1683 | DerivedSuccess(Val, E); |
| 1684 | } |
| 1685 | |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 1686 | RetTy VisitCastExpr(const CastExpr *E) { |
| 1687 | switch (E->getCastKind()) { |
| 1688 | default: |
| 1689 | break; |
| 1690 | |
| 1691 | case CK_NoOp: |
| 1692 | return StmtVisitorTy::Visit(E->getSubExpr()); |
| 1693 | |
| 1694 | case CK_LValueToRValue: { |
| 1695 | LValue LVal; |
| 1696 | if (EvaluateLValue(E->getSubExpr(), LVal, Info)) { |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 1697 | CCValue RVal; |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 1698 | if (HandleLValueToRValueConversion(Info, E->getType(), LVal, RVal)) |
| 1699 | return DerivedSuccess(RVal, E); |
| 1700 | } |
| 1701 | break; |
| 1702 | } |
| 1703 | } |
| 1704 | |
| 1705 | return DerivedError(E); |
| 1706 | } |
| 1707 | |
Richard Smith | 4a67812 | 2011-10-24 18:44:57 +0000 | [diff] [blame] | 1708 | /// Visit a value which is evaluated, but whose value is ignored. |
| 1709 | void VisitIgnoredValue(const Expr *E) { |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 1710 | CCValue Scratch; |
Richard Smith | 4a67812 | 2011-10-24 18:44:57 +0000 | [diff] [blame] | 1711 | if (!Evaluate(Scratch, Info, E)) |
| 1712 | Info.EvalStatus.HasSideEffects = true; |
| 1713 | } |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1714 | }; |
| 1715 | |
| 1716 | } |
| 1717 | |
| 1718 | //===----------------------------------------------------------------------===// |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 1719 | // Common base class for lvalue and temporary evaluation. |
| 1720 | //===----------------------------------------------------------------------===// |
| 1721 | namespace { |
| 1722 | template<class Derived> |
| 1723 | class LValueExprEvaluatorBase |
| 1724 | : public ExprEvaluatorBase<Derived, bool> { |
| 1725 | protected: |
| 1726 | LValue &Result; |
| 1727 | typedef LValueExprEvaluatorBase LValueExprEvaluatorBaseTy; |
| 1728 | typedef ExprEvaluatorBase<Derived, bool> ExprEvaluatorBaseTy; |
| 1729 | |
| 1730 | bool Success(APValue::LValueBase B) { |
| 1731 | Result.set(B); |
| 1732 | return true; |
| 1733 | } |
| 1734 | |
| 1735 | public: |
| 1736 | LValueExprEvaluatorBase(EvalInfo &Info, LValue &Result) : |
| 1737 | ExprEvaluatorBaseTy(Info), Result(Result) {} |
| 1738 | |
| 1739 | bool Success(const CCValue &V, const Expr *E) { |
| 1740 | Result.setFrom(V); |
| 1741 | return true; |
| 1742 | } |
| 1743 | bool Error(const Expr *E) { |
| 1744 | return false; |
| 1745 | } |
| 1746 | |
| 1747 | bool CheckValidLValue() { |
| 1748 | // C++11 [basic.lval]p1: An lvalue designates a function or an object. Hence |
| 1749 | // there are no null references, nor once-past-the-end references. |
| 1750 | // FIXME: Check for one-past-the-end array indices |
| 1751 | return Result.Base && !Result.Designator.Invalid && |
| 1752 | !Result.Designator.OnePastTheEnd; |
| 1753 | } |
| 1754 | |
| 1755 | bool VisitMemberExpr(const MemberExpr *E) { |
| 1756 | // Handle non-static data members. |
| 1757 | QualType BaseTy; |
| 1758 | if (E->isArrow()) { |
| 1759 | if (!EvaluatePointer(E->getBase(), Result, this->Info)) |
| 1760 | return false; |
| 1761 | BaseTy = E->getBase()->getType()->getAs<PointerType>()->getPointeeType(); |
| 1762 | } else { |
| 1763 | if (!this->Visit(E->getBase())) |
| 1764 | return false; |
| 1765 | BaseTy = E->getBase()->getType(); |
| 1766 | } |
| 1767 | // FIXME: In C++11, require the result to be a valid lvalue. |
| 1768 | |
| 1769 | const FieldDecl *FD = dyn_cast<FieldDecl>(E->getMemberDecl()); |
| 1770 | // FIXME: Handle IndirectFieldDecls |
| 1771 | if (!FD) return false; |
| 1772 | assert(BaseTy->getAs<RecordType>()->getDecl()->getCanonicalDecl() == |
| 1773 | FD->getParent()->getCanonicalDecl() && "record / field mismatch"); |
| 1774 | (void)BaseTy; |
| 1775 | |
| 1776 | HandleLValueMember(this->Info, Result, FD); |
| 1777 | |
| 1778 | if (FD->getType()->isReferenceType()) { |
| 1779 | CCValue RefValue; |
| 1780 | if (!HandleLValueToRValueConversion(this->Info, FD->getType(), Result, |
| 1781 | RefValue)) |
| 1782 | return false; |
| 1783 | return Success(RefValue, E); |
| 1784 | } |
| 1785 | return true; |
| 1786 | } |
| 1787 | |
| 1788 | bool VisitBinaryOperator(const BinaryOperator *E) { |
| 1789 | switch (E->getOpcode()) { |
| 1790 | default: |
| 1791 | return ExprEvaluatorBaseTy::VisitBinaryOperator(E); |
| 1792 | |
| 1793 | case BO_PtrMemD: |
| 1794 | case BO_PtrMemI: |
| 1795 | return HandleMemberPointerAccess(this->Info, E, Result); |
| 1796 | } |
| 1797 | } |
| 1798 | |
| 1799 | bool VisitCastExpr(const CastExpr *E) { |
| 1800 | switch (E->getCastKind()) { |
| 1801 | default: |
| 1802 | return ExprEvaluatorBaseTy::VisitCastExpr(E); |
| 1803 | |
| 1804 | case CK_DerivedToBase: |
| 1805 | case CK_UncheckedDerivedToBase: { |
| 1806 | if (!this->Visit(E->getSubExpr())) |
| 1807 | return false; |
| 1808 | if (!CheckValidLValue()) |
| 1809 | return false; |
| 1810 | |
| 1811 | // Now figure out the necessary offset to add to the base LV to get from |
| 1812 | // the derived class to the base class. |
| 1813 | QualType Type = E->getSubExpr()->getType(); |
| 1814 | |
| 1815 | for (CastExpr::path_const_iterator PathI = E->path_begin(), |
| 1816 | PathE = E->path_end(); PathI != PathE; ++PathI) { |
| 1817 | if (!HandleLValueBase(this->Info, Result, Type->getAsCXXRecordDecl(), |
| 1818 | *PathI)) |
| 1819 | return false; |
| 1820 | Type = (*PathI)->getType(); |
| 1821 | } |
| 1822 | |
| 1823 | return true; |
| 1824 | } |
| 1825 | } |
| 1826 | } |
| 1827 | }; |
| 1828 | } |
| 1829 | |
| 1830 | //===----------------------------------------------------------------------===// |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 1831 | // LValue Evaluation |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 1832 | // |
| 1833 | // This is used for evaluating lvalues (in C and C++), xvalues (in C++11), |
| 1834 | // function designators (in C), decl references to void objects (in C), and |
| 1835 | // temporaries (if building with -Wno-address-of-temporary). |
| 1836 | // |
| 1837 | // LValue evaluation produces values comprising a base expression of one of the |
| 1838 | // following types: |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 1839 | // - Declarations |
| 1840 | // * VarDecl |
| 1841 | // * FunctionDecl |
| 1842 | // - Literals |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 1843 | // * CompoundLiteralExpr in C |
| 1844 | // * StringLiteral |
| 1845 | // * PredefinedExpr |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 1846 | // * ObjCStringLiteralExpr |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 1847 | // * ObjCEncodeExpr |
| 1848 | // * AddrLabelExpr |
| 1849 | // * BlockExpr |
| 1850 | // * CallExpr for a MakeStringConstant builtin |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 1851 | // - Locals and temporaries |
| 1852 | // * Any Expr, with a Frame indicating the function in which the temporary was |
| 1853 | // evaluated. |
| 1854 | // plus an offset in bytes. |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 1855 | //===----------------------------------------------------------------------===// |
| 1856 | namespace { |
Benjamin Kramer | 26222b6 | 2009-11-28 19:03:38 +0000 | [diff] [blame] | 1857 | class LValueExprEvaluator |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 1858 | : public LValueExprEvaluatorBase<LValueExprEvaluator> { |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 1859 | public: |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 1860 | LValueExprEvaluator(EvalInfo &Info, LValue &Result) : |
| 1861 | LValueExprEvaluatorBaseTy(Info, Result) {} |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1862 | |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 1863 | bool VisitVarDecl(const Expr *E, const VarDecl *VD); |
| 1864 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1865 | bool VisitDeclRefExpr(const DeclRefExpr *E); |
| 1866 | bool VisitPredefinedExpr(const PredefinedExpr *E) { return Success(E); } |
Richard Smith | 4e4c78ff | 2011-10-31 05:52:43 +0000 | [diff] [blame] | 1867 | bool VisitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *E); |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1868 | bool VisitCompoundLiteralExpr(const CompoundLiteralExpr *E); |
| 1869 | bool VisitMemberExpr(const MemberExpr *E); |
| 1870 | bool VisitStringLiteral(const StringLiteral *E) { return Success(E); } |
| 1871 | bool VisitObjCEncodeExpr(const ObjCEncodeExpr *E) { return Success(E); } |
| 1872 | bool VisitArraySubscriptExpr(const ArraySubscriptExpr *E); |
| 1873 | bool VisitUnaryDeref(const UnaryOperator *E); |
Anders Carlsson | de55f64 | 2009-10-03 16:30:22 +0000 | [diff] [blame] | 1874 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1875 | bool VisitCastExpr(const CastExpr *E) { |
Anders Carlsson | de55f64 | 2009-10-03 16:30:22 +0000 | [diff] [blame] | 1876 | switch (E->getCastKind()) { |
| 1877 | default: |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 1878 | return LValueExprEvaluatorBaseTy::VisitCastExpr(E); |
Anders Carlsson | de55f64 | 2009-10-03 16:30:22 +0000 | [diff] [blame] | 1879 | |
Eli Friedman | ce3e02a | 2011-10-11 00:13:24 +0000 | [diff] [blame] | 1880 | case CK_LValueBitCast: |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 1881 | if (!Visit(E->getSubExpr())) |
| 1882 | return false; |
| 1883 | Result.Designator.setInvalid(); |
| 1884 | return true; |
Eli Friedman | ce3e02a | 2011-10-11 00:13:24 +0000 | [diff] [blame] | 1885 | |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 1886 | case CK_BaseToDerived: |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 1887 | if (!Visit(E->getSubExpr())) |
| 1888 | return false; |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 1889 | if (!CheckValidLValue()) |
| 1890 | return false; |
| 1891 | return HandleBaseToDerivedCast(Info, E, Result); |
Anders Carlsson | de55f64 | 2009-10-03 16:30:22 +0000 | [diff] [blame] | 1892 | } |
| 1893 | } |
Sebastian Redl | 12757ab | 2011-09-24 17:48:14 +0000 | [diff] [blame] | 1894 | |
Eli Friedman | 449fe54 | 2009-03-23 04:56:01 +0000 | [diff] [blame] | 1895 | // FIXME: Missing: __real__, __imag__ |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1896 | |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 1897 | }; |
| 1898 | } // end anonymous namespace |
| 1899 | |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 1900 | /// Evaluate an expression as an lvalue. This can be legitimately called on |
| 1901 | /// expressions which are not glvalues, in a few cases: |
| 1902 | /// * function designators in C, |
| 1903 | /// * "extern void" objects, |
| 1904 | /// * temporaries, if building with -Wno-address-of-temporary. |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 1905 | static bool EvaluateLValue(const Expr* E, LValue& Result, EvalInfo &Info) { |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 1906 | assert((E->isGLValue() || E->getType()->isFunctionType() || |
| 1907 | E->getType()->isVoidType() || isa<CXXTemporaryObjectExpr>(E)) && |
| 1908 | "can't evaluate expression as an lvalue"); |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1909 | return LValueExprEvaluator(Info, Result).Visit(E); |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 1910 | } |
| 1911 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1912 | bool LValueExprEvaluator::VisitDeclRefExpr(const DeclRefExpr *E) { |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 1913 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) |
| 1914 | return Success(FD); |
| 1915 | if (const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl())) |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 1916 | return VisitVarDecl(E, VD); |
| 1917 | return Error(E); |
| 1918 | } |
Richard Smith | 733237d | 2011-10-24 23:14:33 +0000 | [diff] [blame] | 1919 | |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 1920 | bool LValueExprEvaluator::VisitVarDecl(const Expr *E, const VarDecl *VD) { |
Richard Smith | fec0992 | 2011-11-01 16:57:24 +0000 | [diff] [blame] | 1921 | if (!VD->getType()->isReferenceType()) { |
| 1922 | if (isa<ParmVarDecl>(VD)) { |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 1923 | Result.set(VD, Info.CurrentCall); |
Richard Smith | fec0992 | 2011-11-01 16:57:24 +0000 | [diff] [blame] | 1924 | return true; |
| 1925 | } |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 1926 | return Success(VD); |
Richard Smith | fec0992 | 2011-11-01 16:57:24 +0000 | [diff] [blame] | 1927 | } |
Eli Friedman | 751aa72b7 | 2009-05-27 06:04:58 +0000 | [diff] [blame] | 1928 | |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 1929 | CCValue V; |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 1930 | if (EvaluateVarDeclInit(Info, VD, Info.CurrentCall, V)) |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 1931 | return Success(V, E); |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 1932 | |
| 1933 | return Error(E); |
Anders Carlsson | a42ee44 | 2008-11-24 04:41:22 +0000 | [diff] [blame] | 1934 | } |
| 1935 | |
Richard Smith | 4e4c78ff | 2011-10-31 05:52:43 +0000 | [diff] [blame] | 1936 | bool LValueExprEvaluator::VisitMaterializeTemporaryExpr( |
| 1937 | const MaterializeTemporaryExpr *E) { |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 1938 | if (E->GetTemporaryExpr()->isRValue()) { |
| 1939 | if (E->getType()->isRecordType() && E->getType()->isLiteralType()) |
| 1940 | return EvaluateTemporary(E->GetTemporaryExpr(), Result, Info); |
| 1941 | |
| 1942 | Result.set(E, Info.CurrentCall); |
| 1943 | return EvaluateConstantExpression(Info.CurrentCall->Temporaries[E], Info, |
| 1944 | Result, E->GetTemporaryExpr()); |
| 1945 | } |
| 1946 | |
| 1947 | // Materialization of an lvalue temporary occurs when we need to force a copy |
| 1948 | // (for instance, if it's a bitfield). |
| 1949 | // FIXME: The AST should contain an lvalue-to-rvalue node for such cases. |
| 1950 | if (!Visit(E->GetTemporaryExpr())) |
| 1951 | return false; |
| 1952 | if (!HandleLValueToRValueConversion(Info, E->getType(), Result, |
| 1953 | Info.CurrentCall->Temporaries[E])) |
| 1954 | return false; |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 1955 | Result.set(E, Info.CurrentCall); |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 1956 | return true; |
Richard Smith | 4e4c78ff | 2011-10-31 05:52:43 +0000 | [diff] [blame] | 1957 | } |
| 1958 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1959 | bool |
| 1960 | LValueExprEvaluator::VisitCompoundLiteralExpr(const CompoundLiteralExpr *E) { |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 1961 | assert(!Info.getLangOpts().CPlusPlus && "lvalue compound literal in c++?"); |
| 1962 | // Defer visiting the literal until the lvalue-to-rvalue conversion. We can |
| 1963 | // only see this when folding in C, so there's no standard to follow here. |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 1964 | return Success(E); |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 1965 | } |
| 1966 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1967 | bool LValueExprEvaluator::VisitMemberExpr(const MemberExpr *E) { |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 1968 | // Handle static data members. |
| 1969 | if (const VarDecl *VD = dyn_cast<VarDecl>(E->getMemberDecl())) { |
| 1970 | VisitIgnoredValue(E->getBase()); |
| 1971 | return VisitVarDecl(E, VD); |
| 1972 | } |
| 1973 | |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 1974 | // Handle static member functions. |
| 1975 | if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(E->getMemberDecl())) { |
| 1976 | if (MD->isStatic()) { |
| 1977 | VisitIgnoredValue(E->getBase()); |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 1978 | return Success(MD); |
Richard Smith | 254a73d | 2011-10-28 22:34:42 +0000 | [diff] [blame] | 1979 | } |
| 1980 | } |
| 1981 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 1982 | // Handle non-static data members. |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 1983 | return LValueExprEvaluatorBaseTy::VisitMemberExpr(E); |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 1984 | } |
| 1985 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 1986 | bool LValueExprEvaluator::VisitArraySubscriptExpr(const ArraySubscriptExpr *E) { |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 1987 | // FIXME: Deal with vectors as array subscript bases. |
| 1988 | if (E->getBase()->getType()->isVectorType()) |
| 1989 | return false; |
| 1990 | |
Anders Carlsson | 9f9e424 | 2008-11-16 19:01:22 +0000 | [diff] [blame] | 1991 | if (!EvaluatePointer(E->getBase(), Result, Info)) |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 1992 | return false; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1993 | |
Anders Carlsson | 9f9e424 | 2008-11-16 19:01:22 +0000 | [diff] [blame] | 1994 | APSInt Index; |
| 1995 | if (!EvaluateInteger(E->getIdx(), Index, Info)) |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 1996 | return false; |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 1997 | int64_t IndexValue |
| 1998 | = Index.isSigned() ? Index.getSExtValue() |
| 1999 | : static_cast<int64_t>(Index.getZExtValue()); |
Anders Carlsson | 9f9e424 | 2008-11-16 19:01:22 +0000 | [diff] [blame] | 2000 | |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 2001 | // FIXME: In C++11, require the result to be a valid lvalue. |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 2002 | return HandleLValueArrayAdjustment(Info, Result, E->getType(), IndexValue); |
Anders Carlsson | 9f9e424 | 2008-11-16 19:01:22 +0000 | [diff] [blame] | 2003 | } |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 2004 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2005 | bool LValueExprEvaluator::VisitUnaryDeref(const UnaryOperator *E) { |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 2006 | // FIXME: In C++11, require the result to be a valid lvalue. |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 2007 | return EvaluatePointer(E->getSubExpr(), Result, Info); |
Eli Friedman | 0b8337c | 2009-02-20 01:57:15 +0000 | [diff] [blame] | 2008 | } |
| 2009 | |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 2010 | //===----------------------------------------------------------------------===// |
Chris Lattner | 05706e88 | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 2011 | // Pointer Evaluation |
| 2012 | //===----------------------------------------------------------------------===// |
| 2013 | |
Anders Carlsson | 0a1707c | 2008-07-08 05:13:58 +0000 | [diff] [blame] | 2014 | namespace { |
Benjamin Kramer | 26222b6 | 2009-11-28 19:03:38 +0000 | [diff] [blame] | 2015 | class PointerExprEvaluator |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2016 | : public ExprEvaluatorBase<PointerExprEvaluator, bool> { |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 2017 | LValue &Result; |
| 2018 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2019 | bool Success(const Expr *E) { |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 2020 | Result.set(E); |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 2021 | return true; |
| 2022 | } |
Anders Carlsson | b5ad021 | 2008-07-08 14:30:00 +0000 | [diff] [blame] | 2023 | public: |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2024 | |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 2025 | PointerExprEvaluator(EvalInfo &info, LValue &Result) |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2026 | : ExprEvaluatorBaseTy(info), Result(Result) {} |
Chris Lattner | 05706e88 | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 2027 | |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 2028 | bool Success(const CCValue &V, const Expr *E) { |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2029 | Result.setFrom(V); |
| 2030 | return true; |
| 2031 | } |
| 2032 | bool Error(const Stmt *S) { |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 2033 | return false; |
Anders Carlsson | b5ad021 | 2008-07-08 14:30:00 +0000 | [diff] [blame] | 2034 | } |
Richard Smith | 4ce706a | 2011-10-11 21:43:33 +0000 | [diff] [blame] | 2035 | bool ValueInitialization(const Expr *E) { |
| 2036 | return Success((Expr*)0); |
| 2037 | } |
Anders Carlsson | b5ad021 | 2008-07-08 14:30:00 +0000 | [diff] [blame] | 2038 | |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 2039 | bool VisitBinaryOperator(const BinaryOperator *E); |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2040 | bool VisitCastExpr(const CastExpr* E); |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 2041 | bool VisitUnaryAddrOf(const UnaryOperator *E); |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2042 | bool VisitObjCStringLiteral(const ObjCStringLiteral *E) |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 2043 | { return Success(E); } |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2044 | bool VisitAddrLabelExpr(const AddrLabelExpr *E) |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 2045 | { return Success(E); } |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2046 | bool VisitCallExpr(const CallExpr *E); |
| 2047 | bool VisitBlockExpr(const BlockExpr *E) { |
John McCall | c63de66 | 2011-02-02 13:00:07 +0000 | [diff] [blame] | 2048 | if (!E->getBlockDecl()->hasCaptures()) |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 2049 | return Success(E); |
| 2050 | return false; |
Mike Stump | a670332 | 2009-02-19 22:01:56 +0000 | [diff] [blame] | 2051 | } |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 2052 | bool VisitCXXThisExpr(const CXXThisExpr *E) { |
| 2053 | if (!Info.CurrentCall->This) |
| 2054 | return false; |
| 2055 | Result = *Info.CurrentCall->This; |
| 2056 | return true; |
| 2057 | } |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2058 | |
Eli Friedman | 449fe54 | 2009-03-23 04:56:01 +0000 | [diff] [blame] | 2059 | // FIXME: Missing: @protocol, @selector |
Anders Carlsson | 4a3585b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 2060 | }; |
Chris Lattner | 05706e88 | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 2061 | } // end anonymous namespace |
Anders Carlsson | 4a3585b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 2062 | |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 2063 | static bool EvaluatePointer(const Expr* E, LValue& Result, EvalInfo &Info) { |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 2064 | assert(E->isRValue() && E->getType()->hasPointerRepresentation()); |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2065 | return PointerExprEvaluator(Info, Result).Visit(E); |
Chris Lattner | 05706e88 | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 2066 | } |
| 2067 | |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 2068 | bool PointerExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) { |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2069 | if (E->getOpcode() != BO_Add && |
| 2070 | E->getOpcode() != BO_Sub) |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 2071 | return ExprEvaluatorBaseTy::VisitBinaryOperator(E); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2072 | |
Chris Lattner | 05706e88 | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 2073 | const Expr *PExp = E->getLHS(); |
| 2074 | const Expr *IExp = E->getRHS(); |
| 2075 | if (IExp->getType()->isPointerType()) |
| 2076 | std::swap(PExp, IExp); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2077 | |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 2078 | if (!EvaluatePointer(PExp, Result, Info)) |
| 2079 | return false; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2080 | |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 2081 | llvm::APSInt Offset; |
| 2082 | if (!EvaluateInteger(IExp, Offset, Info)) |
| 2083 | return false; |
| 2084 | int64_t AdditionalOffset |
| 2085 | = Offset.isSigned() ? Offset.getSExtValue() |
| 2086 | : static_cast<int64_t>(Offset.getZExtValue()); |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 2087 | if (E->getOpcode() == BO_Sub) |
| 2088 | AdditionalOffset = -AdditionalOffset; |
Chris Lattner | 05706e88 | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 2089 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 2090 | QualType Pointee = PExp->getType()->getAs<PointerType>()->getPointeeType(); |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 2091 | // FIXME: In C++11, require the result to be a valid lvalue. |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 2092 | return HandleLValueArrayAdjustment(Info, Result, Pointee, AdditionalOffset); |
Chris Lattner | 05706e88 | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 2093 | } |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 2094 | |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 2095 | bool PointerExprEvaluator::VisitUnaryAddrOf(const UnaryOperator *E) { |
| 2096 | return EvaluateLValue(E->getSubExpr(), Result, Info); |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 2097 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2098 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2099 | bool PointerExprEvaluator::VisitCastExpr(const CastExpr* E) { |
| 2100 | const Expr* SubExpr = E->getSubExpr(); |
Chris Lattner | 05706e88 | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 2101 | |
Eli Friedman | 847a2bc | 2009-12-27 05:43:15 +0000 | [diff] [blame] | 2102 | switch (E->getCastKind()) { |
| 2103 | default: |
| 2104 | break; |
| 2105 | |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2106 | case CK_BitCast: |
John McCall | 9320b87 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 2107 | case CK_CPointerToObjCPointerCast: |
| 2108 | case CK_BlockPointerToObjCPointerCast: |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2109 | case CK_AnyPointerToBlockPointerCast: |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 2110 | if (!Visit(SubExpr)) |
| 2111 | return false; |
| 2112 | Result.Designator.setInvalid(); |
| 2113 | return true; |
Eli Friedman | 847a2bc | 2009-12-27 05:43:15 +0000 | [diff] [blame] | 2114 | |
Anders Carlsson | 1827509 | 2010-10-31 20:41:46 +0000 | [diff] [blame] | 2115 | case CK_DerivedToBase: |
| 2116 | case CK_UncheckedDerivedToBase: { |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 2117 | if (!EvaluatePointer(E->getSubExpr(), Result, Info)) |
Anders Carlsson | 1827509 | 2010-10-31 20:41:46 +0000 | [diff] [blame] | 2118 | return false; |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 2119 | if (!Result.Base && Result.Offset.isZero()) |
| 2120 | return true; |
Anders Carlsson | 1827509 | 2010-10-31 20:41:46 +0000 | [diff] [blame] | 2121 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 2122 | // Now figure out the necessary offset to add to the base LV to get from |
Anders Carlsson | 1827509 | 2010-10-31 20:41:46 +0000 | [diff] [blame] | 2123 | // the derived class to the base class. |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 2124 | QualType Type = |
| 2125 | E->getSubExpr()->getType()->castAs<PointerType>()->getPointeeType(); |
Anders Carlsson | 1827509 | 2010-10-31 20:41:46 +0000 | [diff] [blame] | 2126 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 2127 | for (CastExpr::path_const_iterator PathI = E->path_begin(), |
Anders Carlsson | 1827509 | 2010-10-31 20:41:46 +0000 | [diff] [blame] | 2128 | PathE = E->path_end(); PathI != PathE; ++PathI) { |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 2129 | if (!HandleLValueBase(Info, Result, Type->getAsCXXRecordDecl(), *PathI)) |
Anders Carlsson | 1827509 | 2010-10-31 20:41:46 +0000 | [diff] [blame] | 2130 | return false; |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 2131 | Type = (*PathI)->getType(); |
Anders Carlsson | 1827509 | 2010-10-31 20:41:46 +0000 | [diff] [blame] | 2132 | } |
| 2133 | |
Anders Carlsson | 1827509 | 2010-10-31 20:41:46 +0000 | [diff] [blame] | 2134 | return true; |
| 2135 | } |
| 2136 | |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 2137 | case CK_BaseToDerived: |
| 2138 | if (!Visit(E->getSubExpr())) |
| 2139 | return false; |
| 2140 | if (!Result.Base && Result.Offset.isZero()) |
| 2141 | return true; |
| 2142 | return HandleBaseToDerivedCast(Info, E, Result); |
| 2143 | |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 2144 | case CK_NullToPointer: |
| 2145 | return ValueInitialization(E); |
John McCall | e84af4e | 2010-11-13 01:35:44 +0000 | [diff] [blame] | 2146 | |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2147 | case CK_IntegralToPointer: { |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 2148 | CCValue Value; |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 2149 | if (!EvaluateIntegerOrLValue(SubExpr, Value, Info)) |
Eli Friedman | 847a2bc | 2009-12-27 05:43:15 +0000 | [diff] [blame] | 2150 | break; |
Daniel Dunbar | ce39954 | 2009-02-20 18:22:23 +0000 | [diff] [blame] | 2151 | |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 2152 | if (Value.isInt()) { |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 2153 | unsigned Size = Info.Ctx.getTypeSize(E->getType()); |
| 2154 | uint64_t N = Value.getInt().extOrTrunc(Size).getZExtValue(); |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 2155 | Result.Base = (Expr*)0; |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 2156 | Result.Offset = CharUnits::fromQuantity(N); |
Richard Smith | fec0992 | 2011-11-01 16:57:24 +0000 | [diff] [blame] | 2157 | Result.Frame = 0; |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 2158 | Result.Designator.setInvalid(); |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 2159 | return true; |
| 2160 | } else { |
| 2161 | // Cast is of an lvalue, no need to change value. |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 2162 | Result.setFrom(Value); |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 2163 | return true; |
Chris Lattner | 05706e88 | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 2164 | } |
| 2165 | } |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2166 | case CK_ArrayToPointerDecay: |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 2167 | if (SubExpr->isGLValue()) { |
| 2168 | if (!EvaluateLValue(SubExpr, Result, Info)) |
| 2169 | return false; |
| 2170 | } else { |
| 2171 | Result.set(SubExpr, Info.CurrentCall); |
| 2172 | if (!EvaluateConstantExpression(Info.CurrentCall->Temporaries[SubExpr], |
| 2173 | Info, Result, SubExpr)) |
| 2174 | return false; |
| 2175 | } |
Richard Smith | 96e0c10 | 2011-11-04 02:25:55 +0000 | [diff] [blame] | 2176 | // The result is a pointer to the first element of the array. |
| 2177 | Result.Designator.addIndex(0); |
| 2178 | return true; |
Richard Smith | dd78544 | 2011-10-31 20:57:44 +0000 | [diff] [blame] | 2179 | |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2180 | case CK_FunctionToPointerDecay: |
Richard Smith | dd78544 | 2011-10-31 20:57:44 +0000 | [diff] [blame] | 2181 | return EvaluateLValue(SubExpr, Result, Info); |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 2182 | } |
| 2183 | |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 2184 | return ExprEvaluatorBaseTy::VisitCastExpr(E); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2185 | } |
Chris Lattner | 05706e88 | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 2186 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2187 | bool PointerExprEvaluator::VisitCallExpr(const CallExpr *E) { |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 2188 | if (IsStringLiteralCall(E)) |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 2189 | return Success(E); |
Eli Friedman | c69d454 | 2009-01-25 01:54:01 +0000 | [diff] [blame] | 2190 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2191 | return ExprEvaluatorBaseTy::VisitCallExpr(E); |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 2192 | } |
Chris Lattner | 05706e88 | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 2193 | |
| 2194 | //===----------------------------------------------------------------------===// |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 2195 | // Member Pointer Evaluation |
| 2196 | //===----------------------------------------------------------------------===// |
| 2197 | |
| 2198 | namespace { |
| 2199 | class MemberPointerExprEvaluator |
| 2200 | : public ExprEvaluatorBase<MemberPointerExprEvaluator, bool> { |
| 2201 | MemberPtr &Result; |
| 2202 | |
| 2203 | bool Success(const ValueDecl *D) { |
| 2204 | Result = MemberPtr(D); |
| 2205 | return true; |
| 2206 | } |
| 2207 | public: |
| 2208 | |
| 2209 | MemberPointerExprEvaluator(EvalInfo &Info, MemberPtr &Result) |
| 2210 | : ExprEvaluatorBaseTy(Info), Result(Result) {} |
| 2211 | |
| 2212 | bool Success(const CCValue &V, const Expr *E) { |
| 2213 | Result.setFrom(V); |
| 2214 | return true; |
| 2215 | } |
| 2216 | bool Error(const Stmt *S) { |
| 2217 | return false; |
| 2218 | } |
| 2219 | bool ValueInitialization(const Expr *E) { |
| 2220 | return Success((const ValueDecl*)0); |
| 2221 | } |
| 2222 | |
| 2223 | bool VisitCastExpr(const CastExpr *E); |
| 2224 | bool VisitUnaryAddrOf(const UnaryOperator *E); |
| 2225 | }; |
| 2226 | } // end anonymous namespace |
| 2227 | |
| 2228 | static bool EvaluateMemberPointer(const Expr *E, MemberPtr &Result, |
| 2229 | EvalInfo &Info) { |
| 2230 | assert(E->isRValue() && E->getType()->isMemberPointerType()); |
| 2231 | return MemberPointerExprEvaluator(Info, Result).Visit(E); |
| 2232 | } |
| 2233 | |
| 2234 | bool MemberPointerExprEvaluator::VisitCastExpr(const CastExpr *E) { |
| 2235 | switch (E->getCastKind()) { |
| 2236 | default: |
| 2237 | return ExprEvaluatorBaseTy::VisitCastExpr(E); |
| 2238 | |
| 2239 | case CK_NullToMemberPointer: |
| 2240 | return ValueInitialization(E); |
| 2241 | |
| 2242 | case CK_BaseToDerivedMemberPointer: { |
| 2243 | if (!Visit(E->getSubExpr())) |
| 2244 | return false; |
| 2245 | if (E->path_empty()) |
| 2246 | return true; |
| 2247 | // Base-to-derived member pointer casts store the path in derived-to-base |
| 2248 | // order, so iterate backwards. The CXXBaseSpecifier also provides us with |
| 2249 | // the wrong end of the derived->base arc, so stagger the path by one class. |
| 2250 | typedef std::reverse_iterator<CastExpr::path_const_iterator> ReverseIter; |
| 2251 | for (ReverseIter PathI(E->path_end() - 1), PathE(E->path_begin()); |
| 2252 | PathI != PathE; ++PathI) { |
| 2253 | assert(!(*PathI)->isVirtual() && "memptr cast through vbase"); |
| 2254 | const CXXRecordDecl *Derived = (*PathI)->getType()->getAsCXXRecordDecl(); |
| 2255 | if (!Result.castToDerived(Derived)) |
| 2256 | return false; |
| 2257 | } |
| 2258 | const Type *FinalTy = E->getType()->castAs<MemberPointerType>()->getClass(); |
| 2259 | if (!Result.castToDerived(FinalTy->getAsCXXRecordDecl())) |
| 2260 | return false; |
| 2261 | return true; |
| 2262 | } |
| 2263 | |
| 2264 | case CK_DerivedToBaseMemberPointer: |
| 2265 | if (!Visit(E->getSubExpr())) |
| 2266 | return false; |
| 2267 | for (CastExpr::path_const_iterator PathI = E->path_begin(), |
| 2268 | PathE = E->path_end(); PathI != PathE; ++PathI) { |
| 2269 | assert(!(*PathI)->isVirtual() && "memptr cast through vbase"); |
| 2270 | const CXXRecordDecl *Base = (*PathI)->getType()->getAsCXXRecordDecl(); |
| 2271 | if (!Result.castToBase(Base)) |
| 2272 | return false; |
| 2273 | } |
| 2274 | return true; |
| 2275 | } |
| 2276 | } |
| 2277 | |
| 2278 | bool MemberPointerExprEvaluator::VisitUnaryAddrOf(const UnaryOperator *E) { |
| 2279 | // C++11 [expr.unary.op]p3 has very strict rules on how the address of a |
| 2280 | // member can be formed. |
| 2281 | return Success(cast<DeclRefExpr>(E->getSubExpr())->getDecl()); |
| 2282 | } |
| 2283 | |
| 2284 | //===----------------------------------------------------------------------===// |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 2285 | // Record Evaluation |
| 2286 | //===----------------------------------------------------------------------===// |
| 2287 | |
| 2288 | namespace { |
| 2289 | class RecordExprEvaluator |
| 2290 | : public ExprEvaluatorBase<RecordExprEvaluator, bool> { |
| 2291 | const LValue &This; |
| 2292 | APValue &Result; |
| 2293 | public: |
| 2294 | |
| 2295 | RecordExprEvaluator(EvalInfo &info, const LValue &This, APValue &Result) |
| 2296 | : ExprEvaluatorBaseTy(info), This(This), Result(Result) {} |
| 2297 | |
| 2298 | bool Success(const CCValue &V, const Expr *E) { |
| 2299 | return CheckConstantExpression(V, Result); |
| 2300 | } |
| 2301 | bool Error(const Expr *E) { return false; } |
| 2302 | |
Richard Smith | e97cbd7 | 2011-11-11 04:05:33 +0000 | [diff] [blame] | 2303 | bool VisitCastExpr(const CastExpr *E); |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 2304 | bool VisitInitListExpr(const InitListExpr *E); |
| 2305 | bool VisitCXXConstructExpr(const CXXConstructExpr *E); |
| 2306 | }; |
| 2307 | } |
| 2308 | |
Richard Smith | e97cbd7 | 2011-11-11 04:05:33 +0000 | [diff] [blame] | 2309 | bool RecordExprEvaluator::VisitCastExpr(const CastExpr *E) { |
| 2310 | switch (E->getCastKind()) { |
| 2311 | default: |
| 2312 | return ExprEvaluatorBaseTy::VisitCastExpr(E); |
| 2313 | |
| 2314 | case CK_ConstructorConversion: |
| 2315 | return Visit(E->getSubExpr()); |
| 2316 | |
| 2317 | case CK_DerivedToBase: |
| 2318 | case CK_UncheckedDerivedToBase: { |
| 2319 | CCValue DerivedObject; |
| 2320 | if (!Evaluate(DerivedObject, Info, E->getSubExpr()) || |
| 2321 | !DerivedObject.isStruct()) |
| 2322 | return false; |
| 2323 | |
| 2324 | // Derived-to-base rvalue conversion: just slice off the derived part. |
| 2325 | APValue *Value = &DerivedObject; |
| 2326 | const CXXRecordDecl *RD = E->getSubExpr()->getType()->getAsCXXRecordDecl(); |
| 2327 | for (CastExpr::path_const_iterator PathI = E->path_begin(), |
| 2328 | PathE = E->path_end(); PathI != PathE; ++PathI) { |
| 2329 | assert(!(*PathI)->isVirtual() && "record rvalue with virtual base"); |
| 2330 | const CXXRecordDecl *Base = (*PathI)->getType()->getAsCXXRecordDecl(); |
| 2331 | Value = &Value->getStructBase(getBaseIndex(RD, Base)); |
| 2332 | RD = Base; |
| 2333 | } |
| 2334 | Result = *Value; |
| 2335 | return true; |
| 2336 | } |
| 2337 | } |
| 2338 | } |
| 2339 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 2340 | bool RecordExprEvaluator::VisitInitListExpr(const InitListExpr *E) { |
| 2341 | const RecordDecl *RD = E->getType()->castAs<RecordType>()->getDecl(); |
| 2342 | const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD); |
| 2343 | |
| 2344 | if (RD->isUnion()) { |
| 2345 | Result = APValue(E->getInitializedFieldInUnion()); |
| 2346 | if (!E->getNumInits()) |
| 2347 | return true; |
| 2348 | LValue Subobject = This; |
| 2349 | HandleLValueMember(Info, Subobject, E->getInitializedFieldInUnion(), |
| 2350 | &Layout); |
| 2351 | return EvaluateConstantExpression(Result.getUnionValue(), Info, |
| 2352 | Subobject, E->getInit(0)); |
| 2353 | } |
| 2354 | |
| 2355 | assert((!isa<CXXRecordDecl>(RD) || !cast<CXXRecordDecl>(RD)->getNumBases()) && |
| 2356 | "initializer list for class with base classes"); |
| 2357 | Result = APValue(APValue::UninitStruct(), 0, |
| 2358 | std::distance(RD->field_begin(), RD->field_end())); |
| 2359 | unsigned ElementNo = 0; |
| 2360 | for (RecordDecl::field_iterator Field = RD->field_begin(), |
| 2361 | FieldEnd = RD->field_end(); Field != FieldEnd; ++Field) { |
| 2362 | // Anonymous bit-fields are not considered members of the class for |
| 2363 | // purposes of aggregate initialization. |
| 2364 | if (Field->isUnnamedBitfield()) |
| 2365 | continue; |
| 2366 | |
| 2367 | LValue Subobject = This; |
| 2368 | HandleLValueMember(Info, Subobject, *Field, &Layout); |
| 2369 | |
| 2370 | if (ElementNo < E->getNumInits()) { |
| 2371 | if (!EvaluateConstantExpression( |
| 2372 | Result.getStructField((*Field)->getFieldIndex()), |
| 2373 | Info, Subobject, E->getInit(ElementNo++))) |
| 2374 | return false; |
| 2375 | } else { |
| 2376 | // Perform an implicit value-initialization for members beyond the end of |
| 2377 | // the initializer list. |
| 2378 | ImplicitValueInitExpr VIE(Field->getType()); |
| 2379 | if (!EvaluateConstantExpression( |
| 2380 | Result.getStructField((*Field)->getFieldIndex()), |
| 2381 | Info, Subobject, &VIE)) |
| 2382 | return false; |
| 2383 | } |
| 2384 | } |
| 2385 | |
| 2386 | return true; |
| 2387 | } |
| 2388 | |
| 2389 | bool RecordExprEvaluator::VisitCXXConstructExpr(const CXXConstructExpr *E) { |
| 2390 | const CXXConstructorDecl *FD = E->getConstructor(); |
| 2391 | const FunctionDecl *Definition = 0; |
| 2392 | FD->getBody(Definition); |
| 2393 | |
| 2394 | if (!Definition || !Definition->isConstexpr() || Definition->isInvalidDecl()) |
| 2395 | return false; |
| 2396 | |
| 2397 | // FIXME: Elide the copy/move construction wherever we can. |
| 2398 | if (E->isElidable()) |
| 2399 | if (const MaterializeTemporaryExpr *ME |
| 2400 | = dyn_cast<MaterializeTemporaryExpr>(E->getArg(0))) |
| 2401 | return Visit(ME->GetTemporaryExpr()); |
| 2402 | |
| 2403 | llvm::ArrayRef<const Expr*> Args(E->getArgs(), E->getNumArgs()); |
Richard Smith | e97cbd7 | 2011-11-11 04:05:33 +0000 | [diff] [blame] | 2404 | return HandleConstructorCall(This, Args, cast<CXXConstructorDecl>(Definition), |
| 2405 | Info, Result); |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 2406 | } |
| 2407 | |
| 2408 | static bool EvaluateRecord(const Expr *E, const LValue &This, |
| 2409 | APValue &Result, EvalInfo &Info) { |
| 2410 | assert(E->isRValue() && E->getType()->isRecordType() && |
| 2411 | E->getType()->isLiteralType() && |
| 2412 | "can't evaluate expression as a record rvalue"); |
| 2413 | return RecordExprEvaluator(Info, This, Result).Visit(E); |
| 2414 | } |
| 2415 | |
| 2416 | //===----------------------------------------------------------------------===// |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 2417 | // Temporary Evaluation |
| 2418 | // |
| 2419 | // Temporaries are represented in the AST as rvalues, but generally behave like |
| 2420 | // lvalues. The full-object of which the temporary is a subobject is implicitly |
| 2421 | // materialized so that a reference can bind to it. |
| 2422 | //===----------------------------------------------------------------------===// |
| 2423 | namespace { |
| 2424 | class TemporaryExprEvaluator |
| 2425 | : public LValueExprEvaluatorBase<TemporaryExprEvaluator> { |
| 2426 | public: |
| 2427 | TemporaryExprEvaluator(EvalInfo &Info, LValue &Result) : |
| 2428 | LValueExprEvaluatorBaseTy(Info, Result) {} |
| 2429 | |
| 2430 | /// Visit an expression which constructs the value of this temporary. |
| 2431 | bool VisitConstructExpr(const Expr *E) { |
| 2432 | Result.set(E, Info.CurrentCall); |
| 2433 | return EvaluateConstantExpression(Info.CurrentCall->Temporaries[E], Info, |
| 2434 | Result, E); |
| 2435 | } |
| 2436 | |
| 2437 | bool VisitCastExpr(const CastExpr *E) { |
| 2438 | switch (E->getCastKind()) { |
| 2439 | default: |
| 2440 | return LValueExprEvaluatorBaseTy::VisitCastExpr(E); |
| 2441 | |
| 2442 | case CK_ConstructorConversion: |
| 2443 | return VisitConstructExpr(E->getSubExpr()); |
| 2444 | } |
| 2445 | } |
| 2446 | bool VisitInitListExpr(const InitListExpr *E) { |
| 2447 | return VisitConstructExpr(E); |
| 2448 | } |
| 2449 | bool VisitCXXConstructExpr(const CXXConstructExpr *E) { |
| 2450 | return VisitConstructExpr(E); |
| 2451 | } |
| 2452 | bool VisitCallExpr(const CallExpr *E) { |
| 2453 | return VisitConstructExpr(E); |
| 2454 | } |
| 2455 | }; |
| 2456 | } // end anonymous namespace |
| 2457 | |
| 2458 | /// Evaluate an expression of record type as a temporary. |
| 2459 | static bool EvaluateTemporary(const Expr *E, LValue &Result, EvalInfo &Info) { |
| 2460 | assert(E->isRValue() && E->getType()->isRecordType() && |
| 2461 | E->getType()->isLiteralType()); |
| 2462 | return TemporaryExprEvaluator(Info, Result).Visit(E); |
| 2463 | } |
| 2464 | |
| 2465 | //===----------------------------------------------------------------------===// |
Nate Begeman | 2f2bdeb | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 2466 | // Vector Evaluation |
| 2467 | //===----------------------------------------------------------------------===// |
| 2468 | |
| 2469 | namespace { |
Benjamin Kramer | 26222b6 | 2009-11-28 19:03:38 +0000 | [diff] [blame] | 2470 | class VectorExprEvaluator |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2471 | : public ExprEvaluatorBase<VectorExprEvaluator, bool> { |
| 2472 | APValue &Result; |
Nate Begeman | 2f2bdeb | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 2473 | public: |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2474 | |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2475 | VectorExprEvaluator(EvalInfo &info, APValue &Result) |
| 2476 | : ExprEvaluatorBaseTy(info), Result(Result) {} |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2477 | |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2478 | bool Success(const ArrayRef<APValue> &V, const Expr *E) { |
| 2479 | assert(V.size() == E->getType()->castAs<VectorType>()->getNumElements()); |
| 2480 | // FIXME: remove this APValue copy. |
| 2481 | Result = APValue(V.data(), V.size()); |
| 2482 | return true; |
| 2483 | } |
Richard Smith | ed5165f | 2011-11-04 05:33:44 +0000 | [diff] [blame] | 2484 | bool Success(const CCValue &V, const Expr *E) { |
| 2485 | assert(V.isVector()); |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2486 | Result = V; |
| 2487 | return true; |
| 2488 | } |
| 2489 | bool Error(const Expr *E) { return false; } |
| 2490 | bool ValueInitialization(const Expr *E); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2491 | |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2492 | bool VisitUnaryReal(const UnaryOperator *E) |
Eli Friedman | 3ae5911 | 2009-02-23 04:23:56 +0000 | [diff] [blame] | 2493 | { return Visit(E->getSubExpr()); } |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2494 | bool VisitCastExpr(const CastExpr* E); |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2495 | bool VisitInitListExpr(const InitListExpr *E); |
| 2496 | bool VisitUnaryImag(const UnaryOperator *E); |
Eli Friedman | 3ae5911 | 2009-02-23 04:23:56 +0000 | [diff] [blame] | 2497 | // FIXME: Missing: unary -, unary ~, binary add/sub/mul/div, |
Eli Friedman | c2b5017 | 2009-02-22 11:46:18 +0000 | [diff] [blame] | 2498 | // binary comparisons, binary and/or/xor, |
Eli Friedman | 3ae5911 | 2009-02-23 04:23:56 +0000 | [diff] [blame] | 2499 | // shufflevector, ExtVectorElementExpr |
| 2500 | // (Note that these require implementing conversions |
| 2501 | // between vector types.) |
Nate Begeman | 2f2bdeb | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 2502 | }; |
| 2503 | } // end anonymous namespace |
| 2504 | |
| 2505 | static bool EvaluateVector(const Expr* E, APValue& Result, EvalInfo &Info) { |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 2506 | assert(E->isRValue() && E->getType()->isVectorType() &&"not a vector rvalue"); |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2507 | return VectorExprEvaluator(Info, Result).Visit(E); |
Nate Begeman | 2f2bdeb | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 2508 | } |
| 2509 | |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2510 | bool VectorExprEvaluator::VisitCastExpr(const CastExpr* E) { |
| 2511 | const VectorType *VTy = E->getType()->castAs<VectorType>(); |
Nate Begeman | ef1a7fa | 2009-07-01 07:50:47 +0000 | [diff] [blame] | 2512 | unsigned NElts = VTy->getNumElements(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2513 | |
Richard Smith | 161f09a | 2011-12-06 22:44:34 +0000 | [diff] [blame] | 2514 | const Expr *SE = E->getSubExpr(); |
Nate Begeman | 2ffd384 | 2009-06-26 18:22:18 +0000 | [diff] [blame] | 2515 | QualType SETy = SE->getType(); |
Nate Begeman | 2f2bdeb | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 2516 | |
Eli Friedman | c757de2 | 2011-03-25 00:43:55 +0000 | [diff] [blame] | 2517 | switch (E->getCastKind()) { |
| 2518 | case CK_VectorSplat: { |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2519 | APValue Val = APValue(); |
Eli Friedman | c757de2 | 2011-03-25 00:43:55 +0000 | [diff] [blame] | 2520 | if (SETy->isIntegerType()) { |
| 2521 | APSInt IntResult; |
| 2522 | if (!EvaluateInteger(SE, IntResult, Info)) |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2523 | return Error(E); |
| 2524 | Val = APValue(IntResult); |
Eli Friedman | c757de2 | 2011-03-25 00:43:55 +0000 | [diff] [blame] | 2525 | } else if (SETy->isRealFloatingType()) { |
| 2526 | APFloat F(0.0); |
| 2527 | if (!EvaluateFloat(SE, F, Info)) |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2528 | return Error(E); |
| 2529 | Val = APValue(F); |
Eli Friedman | c757de2 | 2011-03-25 00:43:55 +0000 | [diff] [blame] | 2530 | } else { |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2531 | return Error(E); |
Eli Friedman | c757de2 | 2011-03-25 00:43:55 +0000 | [diff] [blame] | 2532 | } |
Nate Begeman | ef1a7fa | 2009-07-01 07:50:47 +0000 | [diff] [blame] | 2533 | |
| 2534 | // Splat and create vector APValue. |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2535 | SmallVector<APValue, 4> Elts(NElts, Val); |
| 2536 | return Success(Elts, E); |
Nate Begeman | 2ffd384 | 2009-06-26 18:22:18 +0000 | [diff] [blame] | 2537 | } |
Eli Friedman | c757de2 | 2011-03-25 00:43:55 +0000 | [diff] [blame] | 2538 | default: |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 2539 | return ExprEvaluatorBaseTy::VisitCastExpr(E); |
Eli Friedman | c757de2 | 2011-03-25 00:43:55 +0000 | [diff] [blame] | 2540 | } |
Nate Begeman | 2f2bdeb | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 2541 | } |
| 2542 | |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2543 | bool |
Nate Begeman | 2f2bdeb | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 2544 | VectorExprEvaluator::VisitInitListExpr(const InitListExpr *E) { |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2545 | const VectorType *VT = E->getType()->castAs<VectorType>(); |
Nate Begeman | 2f2bdeb | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 2546 | unsigned NumInits = E->getNumInits(); |
Eli Friedman | 3ae5911 | 2009-02-23 04:23:56 +0000 | [diff] [blame] | 2547 | unsigned NumElements = VT->getNumElements(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2548 | |
Nate Begeman | 2f2bdeb | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 2549 | QualType EltTy = VT->getElementType(); |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2550 | SmallVector<APValue, 4> Elements; |
Nate Begeman | 2f2bdeb | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 2551 | |
John McCall | 875679e | 2010-06-11 17:54:15 +0000 | [diff] [blame] | 2552 | // If a vector is initialized with a single element, that value |
| 2553 | // becomes every element of the vector, not just the first. |
| 2554 | // This is the behavior described in the IBM AltiVec documentation. |
| 2555 | if (NumInits == 1) { |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2556 | |
| 2557 | // Handle the case where the vector is initialized by another |
Tanya Lattner | 5ac257d | 2011-04-15 22:42:59 +0000 | [diff] [blame] | 2558 | // vector (OpenCL 6.1.6). |
| 2559 | if (E->getInit(0)->getType()->isVectorType()) |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2560 | return Visit(E->getInit(0)); |
| 2561 | |
John McCall | 875679e | 2010-06-11 17:54:15 +0000 | [diff] [blame] | 2562 | APValue InitValue; |
Nate Begeman | 2f2bdeb | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 2563 | if (EltTy->isIntegerType()) { |
| 2564 | llvm::APSInt sInt(32); |
John McCall | 875679e | 2010-06-11 17:54:15 +0000 | [diff] [blame] | 2565 | if (!EvaluateInteger(E->getInit(0), sInt, Info)) |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2566 | return Error(E); |
John McCall | 875679e | 2010-06-11 17:54:15 +0000 | [diff] [blame] | 2567 | InitValue = APValue(sInt); |
Nate Begeman | 2f2bdeb | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 2568 | } else { |
| 2569 | llvm::APFloat f(0.0); |
John McCall | 875679e | 2010-06-11 17:54:15 +0000 | [diff] [blame] | 2570 | if (!EvaluateFloat(E->getInit(0), f, Info)) |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2571 | return Error(E); |
John McCall | 875679e | 2010-06-11 17:54:15 +0000 | [diff] [blame] | 2572 | InitValue = APValue(f); |
| 2573 | } |
| 2574 | for (unsigned i = 0; i < NumElements; i++) { |
| 2575 | Elements.push_back(InitValue); |
| 2576 | } |
| 2577 | } else { |
| 2578 | for (unsigned i = 0; i < NumElements; i++) { |
| 2579 | if (EltTy->isIntegerType()) { |
| 2580 | llvm::APSInt sInt(32); |
| 2581 | if (i < NumInits) { |
| 2582 | if (!EvaluateInteger(E->getInit(i), sInt, Info)) |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2583 | return Error(E); |
John McCall | 875679e | 2010-06-11 17:54:15 +0000 | [diff] [blame] | 2584 | } else { |
| 2585 | sInt = Info.Ctx.MakeIntValue(0, EltTy); |
| 2586 | } |
| 2587 | Elements.push_back(APValue(sInt)); |
Eli Friedman | 3ae5911 | 2009-02-23 04:23:56 +0000 | [diff] [blame] | 2588 | } else { |
John McCall | 875679e | 2010-06-11 17:54:15 +0000 | [diff] [blame] | 2589 | llvm::APFloat f(0.0); |
| 2590 | if (i < NumInits) { |
| 2591 | if (!EvaluateFloat(E->getInit(i), f, Info)) |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2592 | return Error(E); |
John McCall | 875679e | 2010-06-11 17:54:15 +0000 | [diff] [blame] | 2593 | } else { |
| 2594 | f = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy)); |
| 2595 | } |
| 2596 | Elements.push_back(APValue(f)); |
Eli Friedman | 3ae5911 | 2009-02-23 04:23:56 +0000 | [diff] [blame] | 2597 | } |
Nate Begeman | 2f2bdeb | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 2598 | } |
| 2599 | } |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2600 | return Success(Elements, E); |
Nate Begeman | 2f2bdeb | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 2601 | } |
| 2602 | |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2603 | bool |
| 2604 | VectorExprEvaluator::ValueInitialization(const Expr *E) { |
| 2605 | const VectorType *VT = E->getType()->getAs<VectorType>(); |
Eli Friedman | 3ae5911 | 2009-02-23 04:23:56 +0000 | [diff] [blame] | 2606 | QualType EltTy = VT->getElementType(); |
| 2607 | APValue ZeroElement; |
| 2608 | if (EltTy->isIntegerType()) |
| 2609 | ZeroElement = APValue(Info.Ctx.MakeIntValue(0, EltTy)); |
| 2610 | else |
| 2611 | ZeroElement = |
| 2612 | APValue(APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy))); |
| 2613 | |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2614 | SmallVector<APValue, 4> Elements(VT->getNumElements(), ZeroElement); |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2615 | return Success(Elements, E); |
Eli Friedman | 3ae5911 | 2009-02-23 04:23:56 +0000 | [diff] [blame] | 2616 | } |
| 2617 | |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2618 | bool VectorExprEvaluator::VisitUnaryImag(const UnaryOperator *E) { |
Richard Smith | 4a67812 | 2011-10-24 18:44:57 +0000 | [diff] [blame] | 2619 | VisitIgnoredValue(E->getSubExpr()); |
Richard Smith | 2d40634 | 2011-10-22 21:10:00 +0000 | [diff] [blame] | 2620 | return ValueInitialization(E); |
Eli Friedman | 3ae5911 | 2009-02-23 04:23:56 +0000 | [diff] [blame] | 2621 | } |
| 2622 | |
Nate Begeman | 2f2bdeb | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 2623 | //===----------------------------------------------------------------------===// |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 2624 | // Array Evaluation |
| 2625 | //===----------------------------------------------------------------------===// |
| 2626 | |
| 2627 | namespace { |
| 2628 | class ArrayExprEvaluator |
| 2629 | : public ExprEvaluatorBase<ArrayExprEvaluator, bool> { |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 2630 | const LValue &This; |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 2631 | APValue &Result; |
| 2632 | public: |
| 2633 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 2634 | ArrayExprEvaluator(EvalInfo &Info, const LValue &This, APValue &Result) |
| 2635 | : ExprEvaluatorBaseTy(Info), This(This), Result(Result) {} |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 2636 | |
| 2637 | bool Success(const APValue &V, const Expr *E) { |
| 2638 | assert(V.isArray() && "Expected array type"); |
| 2639 | Result = V; |
| 2640 | return true; |
| 2641 | } |
| 2642 | bool Error(const Expr *E) { return false; } |
| 2643 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 2644 | bool ValueInitialization(const Expr *E) { |
| 2645 | const ConstantArrayType *CAT = |
| 2646 | Info.Ctx.getAsConstantArrayType(E->getType()); |
| 2647 | if (!CAT) |
| 2648 | return false; |
| 2649 | |
| 2650 | Result = APValue(APValue::UninitArray(), 0, |
| 2651 | CAT->getSize().getZExtValue()); |
| 2652 | if (!Result.hasArrayFiller()) return true; |
| 2653 | |
| 2654 | // Value-initialize all elements. |
| 2655 | LValue Subobject = This; |
| 2656 | Subobject.Designator.addIndex(0); |
| 2657 | ImplicitValueInitExpr VIE(CAT->getElementType()); |
| 2658 | return EvaluateConstantExpression(Result.getArrayFiller(), Info, |
| 2659 | Subobject, &VIE); |
| 2660 | } |
| 2661 | |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 2662 | bool VisitInitListExpr(const InitListExpr *E); |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 2663 | bool VisitCXXConstructExpr(const CXXConstructExpr *E); |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 2664 | }; |
| 2665 | } // end anonymous namespace |
| 2666 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 2667 | static bool EvaluateArray(const Expr *E, const LValue &This, |
| 2668 | APValue &Result, EvalInfo &Info) { |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 2669 | assert(E->isRValue() && E->getType()->isArrayType() && |
| 2670 | E->getType()->isLiteralType() && "not a literal array rvalue"); |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 2671 | return ArrayExprEvaluator(Info, This, Result).Visit(E); |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 2672 | } |
| 2673 | |
| 2674 | bool ArrayExprEvaluator::VisitInitListExpr(const InitListExpr *E) { |
| 2675 | const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(E->getType()); |
| 2676 | if (!CAT) |
| 2677 | return false; |
| 2678 | |
| 2679 | Result = APValue(APValue::UninitArray(), E->getNumInits(), |
| 2680 | CAT->getSize().getZExtValue()); |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 2681 | LValue Subobject = This; |
| 2682 | Subobject.Designator.addIndex(0); |
| 2683 | unsigned Index = 0; |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 2684 | for (InitListExpr::const_iterator I = E->begin(), End = E->end(); |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 2685 | I != End; ++I, ++Index) { |
| 2686 | if (!EvaluateConstantExpression(Result.getArrayInitializedElt(Index), |
| 2687 | Info, Subobject, cast<Expr>(*I))) |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 2688 | return false; |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 2689 | if (!HandleLValueArrayAdjustment(Info, Subobject, CAT->getElementType(), 1)) |
| 2690 | return false; |
| 2691 | } |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 2692 | |
| 2693 | if (!Result.hasArrayFiller()) return true; |
| 2694 | assert(E->hasArrayFiller() && "no array filler for incomplete init list"); |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 2695 | // FIXME: The Subobject here isn't necessarily right. This rarely matters, |
| 2696 | // but sometimes does: |
| 2697 | // struct S { constexpr S() : p(&p) {} void *p; }; |
| 2698 | // S s[10] = {}; |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 2699 | return EvaluateConstantExpression(Result.getArrayFiller(), Info, |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 2700 | Subobject, E->getArrayFiller()); |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 2701 | } |
| 2702 | |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 2703 | bool ArrayExprEvaluator::VisitCXXConstructExpr(const CXXConstructExpr *E) { |
| 2704 | const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(E->getType()); |
| 2705 | if (!CAT) |
| 2706 | return false; |
| 2707 | |
| 2708 | Result = APValue(APValue::UninitArray(), 0, CAT->getSize().getZExtValue()); |
| 2709 | if (!Result.hasArrayFiller()) |
| 2710 | return true; |
| 2711 | |
| 2712 | const CXXConstructorDecl *FD = E->getConstructor(); |
| 2713 | const FunctionDecl *Definition = 0; |
| 2714 | FD->getBody(Definition); |
| 2715 | |
| 2716 | if (!Definition || !Definition->isConstexpr() || Definition->isInvalidDecl()) |
| 2717 | return false; |
| 2718 | |
| 2719 | // FIXME: The Subobject here isn't necessarily right. This rarely matters, |
| 2720 | // but sometimes does: |
| 2721 | // struct S { constexpr S() : p(&p) {} void *p; }; |
| 2722 | // S s[10]; |
| 2723 | LValue Subobject = This; |
| 2724 | Subobject.Designator.addIndex(0); |
| 2725 | llvm::ArrayRef<const Expr*> Args(E->getArgs(), E->getNumArgs()); |
| 2726 | return HandleConstructorCall(Subobject, Args, |
| 2727 | cast<CXXConstructorDecl>(Definition), |
| 2728 | Info, Result.getArrayFiller()); |
| 2729 | } |
| 2730 | |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 2731 | //===----------------------------------------------------------------------===// |
Chris Lattner | 05706e88 | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 2732 | // Integer Evaluation |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 2733 | // |
| 2734 | // As a GNU extension, we support casting pointers to sufficiently-wide integer |
| 2735 | // types and back in constant folding. Integer values are thus represented |
| 2736 | // either as an integer-valued APValue, or as an lvalue-valued APValue. |
Chris Lattner | 05706e88 | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 2737 | //===----------------------------------------------------------------------===// |
Chris Lattner | 05706e88 | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 2738 | |
| 2739 | namespace { |
Benjamin Kramer | 26222b6 | 2009-11-28 19:03:38 +0000 | [diff] [blame] | 2740 | class IntExprEvaluator |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2741 | : public ExprEvaluatorBase<IntExprEvaluator, bool> { |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 2742 | CCValue &Result; |
Anders Carlsson | 0a1707c | 2008-07-08 05:13:58 +0000 | [diff] [blame] | 2743 | public: |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 2744 | IntExprEvaluator(EvalInfo &info, CCValue &result) |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2745 | : ExprEvaluatorBaseTy(info), Result(result) {} |
Chris Lattner | 05706e88 | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 2746 | |
Abramo Bagnara | 9ae292d | 2011-07-02 13:13:53 +0000 | [diff] [blame] | 2747 | bool Success(const llvm::APSInt &SI, const Expr *E) { |
| 2748 | assert(E->getType()->isIntegralOrEnumerationType() && |
Douglas Gregor | b90df60 | 2010-06-16 00:17:44 +0000 | [diff] [blame] | 2749 | "Invalid evaluation result."); |
Abramo Bagnara | 9ae292d | 2011-07-02 13:13:53 +0000 | [diff] [blame] | 2750 | assert(SI.isSigned() == E->getType()->isSignedIntegerOrEnumerationType() && |
Daniel Dunbar | e3c92bc | 2009-02-19 18:37:50 +0000 | [diff] [blame] | 2751 | "Invalid evaluation result."); |
Abramo Bagnara | 9ae292d | 2011-07-02 13:13:53 +0000 | [diff] [blame] | 2752 | assert(SI.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) && |
Daniel Dunbar | e3c92bc | 2009-02-19 18:37:50 +0000 | [diff] [blame] | 2753 | "Invalid evaluation result."); |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 2754 | Result = CCValue(SI); |
Daniel Dunbar | e3c92bc | 2009-02-19 18:37:50 +0000 | [diff] [blame] | 2755 | return true; |
| 2756 | } |
| 2757 | |
Daniel Dunbar | 8aafc89 | 2009-02-19 09:06:44 +0000 | [diff] [blame] | 2758 | bool Success(const llvm::APInt &I, const Expr *E) { |
Douglas Gregor | b90df60 | 2010-06-16 00:17:44 +0000 | [diff] [blame] | 2759 | assert(E->getType()->isIntegralOrEnumerationType() && |
| 2760 | "Invalid evaluation result."); |
Daniel Dunbar | ca097ad | 2009-02-19 20:17:33 +0000 | [diff] [blame] | 2761 | assert(I.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) && |
Daniel Dunbar | e3c92bc | 2009-02-19 18:37:50 +0000 | [diff] [blame] | 2762 | "Invalid evaluation result."); |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 2763 | Result = CCValue(APSInt(I)); |
Douglas Gregor | 6ab2fa8 | 2011-05-20 16:38:50 +0000 | [diff] [blame] | 2764 | Result.getInt().setIsUnsigned( |
| 2765 | E->getType()->isUnsignedIntegerOrEnumerationType()); |
Daniel Dunbar | 8aafc89 | 2009-02-19 09:06:44 +0000 | [diff] [blame] | 2766 | return true; |
| 2767 | } |
| 2768 | |
| 2769 | bool Success(uint64_t Value, const Expr *E) { |
Douglas Gregor | b90df60 | 2010-06-16 00:17:44 +0000 | [diff] [blame] | 2770 | assert(E->getType()->isIntegralOrEnumerationType() && |
| 2771 | "Invalid evaluation result."); |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 2772 | Result = CCValue(Info.Ctx.MakeIntValue(Value, E->getType())); |
Daniel Dunbar | 8aafc89 | 2009-02-19 09:06:44 +0000 | [diff] [blame] | 2773 | return true; |
| 2774 | } |
| 2775 | |
Ken Dyck | dbc0191 | 2011-03-11 02:13:43 +0000 | [diff] [blame] | 2776 | bool Success(CharUnits Size, const Expr *E) { |
| 2777 | return Success(Size.getQuantity(), E); |
| 2778 | } |
| 2779 | |
| 2780 | |
Anders Carlsson | 27b8c5c | 2008-11-30 18:14:57 +0000 | [diff] [blame] | 2781 | bool Error(SourceLocation L, diag::kind D, const Expr *E) { |
Chris Lattner | fac05ae | 2008-11-12 07:43:42 +0000 | [diff] [blame] | 2782 | // Take the first error. |
Richard Smith | 725810a | 2011-10-16 21:26:27 +0000 | [diff] [blame] | 2783 | if (Info.EvalStatus.Diag == 0) { |
| 2784 | Info.EvalStatus.DiagLoc = L; |
| 2785 | Info.EvalStatus.Diag = D; |
| 2786 | Info.EvalStatus.DiagExpr = E; |
Chris Lattner | fac05ae | 2008-11-12 07:43:42 +0000 | [diff] [blame] | 2787 | } |
Chris Lattner | 9941570 | 2008-07-12 00:14:42 +0000 | [diff] [blame] | 2788 | return false; |
Chris Lattner | ae8cc15 | 2008-07-11 19:24:49 +0000 | [diff] [blame] | 2789 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2790 | |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 2791 | bool Success(const CCValue &V, const Expr *E) { |
Richard Smith | 9c8d1c5 | 2011-10-29 22:55:55 +0000 | [diff] [blame] | 2792 | if (V.isLValue()) { |
| 2793 | Result = V; |
| 2794 | return true; |
| 2795 | } |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2796 | return Success(V.getInt(), E); |
Chris Lattner | fac05ae | 2008-11-12 07:43:42 +0000 | [diff] [blame] | 2797 | } |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2798 | bool Error(const Expr *E) { |
Anders Carlsson | b33d6c8 | 2008-11-30 18:37:00 +0000 | [diff] [blame] | 2799 | return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E); |
Anders Carlsson | 0a1707c | 2008-07-08 05:13:58 +0000 | [diff] [blame] | 2800 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2801 | |
Richard Smith | 4ce706a | 2011-10-11 21:43:33 +0000 | [diff] [blame] | 2802 | bool ValueInitialization(const Expr *E) { return Success(0, E); } |
| 2803 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2804 | //===--------------------------------------------------------------------===// |
| 2805 | // Visitor Methods |
| 2806 | //===--------------------------------------------------------------------===// |
Anders Carlsson | 0a1707c | 2008-07-08 05:13:58 +0000 | [diff] [blame] | 2807 | |
Chris Lattner | 7174bf3 | 2008-07-12 00:38:25 +0000 | [diff] [blame] | 2808 | bool VisitIntegerLiteral(const IntegerLiteral *E) { |
Daniel Dunbar | 8aafc89 | 2009-02-19 09:06:44 +0000 | [diff] [blame] | 2809 | return Success(E->getValue(), E); |
Chris Lattner | 7174bf3 | 2008-07-12 00:38:25 +0000 | [diff] [blame] | 2810 | } |
| 2811 | bool VisitCharacterLiteral(const CharacterLiteral *E) { |
Daniel Dunbar | 8aafc89 | 2009-02-19 09:06:44 +0000 | [diff] [blame] | 2812 | return Success(E->getValue(), E); |
Chris Lattner | 7174bf3 | 2008-07-12 00:38:25 +0000 | [diff] [blame] | 2813 | } |
Eli Friedman | fb8a93f | 2009-11-24 05:28:59 +0000 | [diff] [blame] | 2814 | |
| 2815 | bool CheckReferencedDecl(const Expr *E, const Decl *D); |
| 2816 | bool VisitDeclRefExpr(const DeclRefExpr *E) { |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2817 | if (CheckReferencedDecl(E, E->getDecl())) |
| 2818 | return true; |
| 2819 | |
| 2820 | return ExprEvaluatorBaseTy::VisitDeclRefExpr(E); |
Eli Friedman | fb8a93f | 2009-11-24 05:28:59 +0000 | [diff] [blame] | 2821 | } |
| 2822 | bool VisitMemberExpr(const MemberExpr *E) { |
| 2823 | if (CheckReferencedDecl(E, E->getMemberDecl())) { |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 2824 | VisitIgnoredValue(E->getBase()); |
Eli Friedman | fb8a93f | 2009-11-24 05:28:59 +0000 | [diff] [blame] | 2825 | return true; |
| 2826 | } |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2827 | |
| 2828 | return ExprEvaluatorBaseTy::VisitMemberExpr(E); |
Eli Friedman | fb8a93f | 2009-11-24 05:28:59 +0000 | [diff] [blame] | 2829 | } |
| 2830 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2831 | bool VisitCallExpr(const CallExpr *E); |
Chris Lattner | e13042c | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 2832 | bool VisitBinaryOperator(const BinaryOperator *E); |
Douglas Gregor | 882211c | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 2833 | bool VisitOffsetOfExpr(const OffsetOfExpr *E); |
Chris Lattner | e13042c | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 2834 | bool VisitUnaryOperator(const UnaryOperator *E); |
Anders Carlsson | 374b93d | 2008-07-08 05:49:43 +0000 | [diff] [blame] | 2835 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2836 | bool VisitCastExpr(const CastExpr* E); |
Peter Collingbourne | e190dee | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 2837 | bool VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *E); |
Sebastian Redl | 6f28289 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 2838 | |
Anders Carlsson | 9f9e424 | 2008-11-16 19:01:22 +0000 | [diff] [blame] | 2839 | bool VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E) { |
Daniel Dunbar | 8aafc89 | 2009-02-19 09:06:44 +0000 | [diff] [blame] | 2840 | return Success(E->getValue(), E); |
Anders Carlsson | 9f9e424 | 2008-11-16 19:01:22 +0000 | [diff] [blame] | 2841 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2842 | |
Richard Smith | 4ce706a | 2011-10-11 21:43:33 +0000 | [diff] [blame] | 2843 | // Note, GNU defines __null as an integer, not a pointer. |
Anders Carlsson | 39def3a | 2008-12-21 22:39:40 +0000 | [diff] [blame] | 2844 | bool VisitGNUNullExpr(const GNUNullExpr *E) { |
Richard Smith | 4ce706a | 2011-10-11 21:43:33 +0000 | [diff] [blame] | 2845 | return ValueInitialization(E); |
Eli Friedman | 4e7a241 | 2009-02-27 04:45:43 +0000 | [diff] [blame] | 2846 | } |
| 2847 | |
Sebastian Redl | baad4e7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 2848 | bool VisitUnaryTypeTraitExpr(const UnaryTypeTraitExpr *E) { |
Sebastian Redl | 8eb06f1 | 2010-09-13 20:56:31 +0000 | [diff] [blame] | 2849 | return Success(E->getValue(), E); |
Sebastian Redl | baad4e7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 2850 | } |
| 2851 | |
Francois Pichet | 9dfa3ce | 2010-12-07 00:08:36 +0000 | [diff] [blame] | 2852 | bool VisitBinaryTypeTraitExpr(const BinaryTypeTraitExpr *E) { |
| 2853 | return Success(E->getValue(), E); |
| 2854 | } |
| 2855 | |
John Wiegley | 6242b6a | 2011-04-28 00:16:57 +0000 | [diff] [blame] | 2856 | bool VisitArrayTypeTraitExpr(const ArrayTypeTraitExpr *E) { |
| 2857 | return Success(E->getValue(), E); |
| 2858 | } |
| 2859 | |
John Wiegley | f9f6584 | 2011-04-25 06:54:41 +0000 | [diff] [blame] | 2860 | bool VisitExpressionTraitExpr(const ExpressionTraitExpr *E) { |
| 2861 | return Success(E->getValue(), E); |
| 2862 | } |
| 2863 | |
Eli Friedman | a1c7b6c | 2009-02-28 03:59:05 +0000 | [diff] [blame] | 2864 | bool VisitUnaryReal(const UnaryOperator *E); |
Eli Friedman | 4e7a241 | 2009-02-27 04:45:43 +0000 | [diff] [blame] | 2865 | bool VisitUnaryImag(const UnaryOperator *E); |
| 2866 | |
Sebastian Redl | 5f0180d | 2010-09-10 20:55:47 +0000 | [diff] [blame] | 2867 | bool VisitCXXNoexceptExpr(const CXXNoexceptExpr *E); |
Douglas Gregor | 820ba7b | 2011-01-04 17:33:58 +0000 | [diff] [blame] | 2868 | bool VisitSizeOfPackExpr(const SizeOfPackExpr *E); |
Sebastian Redl | 12757ab | 2011-09-24 17:48:14 +0000 | [diff] [blame] | 2869 | |
Chris Lattner | f8d7f72 | 2008-07-11 21:24:13 +0000 | [diff] [blame] | 2870 | private: |
Ken Dyck | 160146e | 2010-01-27 17:10:57 +0000 | [diff] [blame] | 2871 | CharUnits GetAlignOfExpr(const Expr *E); |
| 2872 | CharUnits GetAlignOfType(QualType T); |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 2873 | static QualType GetObjectType(APValue::LValueBase B); |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2874 | bool TryEvaluateBuiltinObjectSize(const CallExpr *E); |
Eli Friedman | 4e7a241 | 2009-02-27 04:45:43 +0000 | [diff] [blame] | 2875 | // FIXME: Missing: array subscript of vector, member of vector |
Anders Carlsson | 9c18165 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 2876 | }; |
Chris Lattner | 05706e88 | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 2877 | } // end anonymous namespace |
Anders Carlsson | 4a3585b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 2878 | |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 2879 | /// EvaluateIntegerOrLValue - Evaluate an rvalue integral-typed expression, and |
| 2880 | /// produce either the integer value or a pointer. |
| 2881 | /// |
| 2882 | /// GCC has a heinous extension which folds casts between pointer types and |
| 2883 | /// pointer-sized integral types. We support this by allowing the evaluation of |
| 2884 | /// an integer rvalue to produce a pointer (represented as an lvalue) instead. |
| 2885 | /// Some simple arithmetic on such values is supported (they are treated much |
| 2886 | /// like char*). |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 2887 | static bool EvaluateIntegerOrLValue(const Expr* E, CCValue &Result, |
| 2888 | EvalInfo &Info) { |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 2889 | assert(E->isRValue() && E->getType()->isIntegralOrEnumerationType()); |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2890 | return IntExprEvaluator(Info, Result).Visit(E); |
Daniel Dunbar | ce39954 | 2009-02-20 18:22:23 +0000 | [diff] [blame] | 2891 | } |
Daniel Dunbar | ca097ad | 2009-02-19 20:17:33 +0000 | [diff] [blame] | 2892 | |
Daniel Dunbar | ce39954 | 2009-02-20 18:22:23 +0000 | [diff] [blame] | 2893 | static bool EvaluateInteger(const Expr* E, APSInt &Result, EvalInfo &Info) { |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 2894 | CCValue Val; |
Daniel Dunbar | ce39954 | 2009-02-20 18:22:23 +0000 | [diff] [blame] | 2895 | if (!EvaluateIntegerOrLValue(E, Val, Info) || !Val.isInt()) |
| 2896 | return false; |
Daniel Dunbar | ca097ad | 2009-02-19 20:17:33 +0000 | [diff] [blame] | 2897 | Result = Val.getInt(); |
| 2898 | return true; |
Anders Carlsson | 4a3585b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 2899 | } |
Anders Carlsson | 4a3585b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 2900 | |
Eli Friedman | fb8a93f | 2009-11-24 05:28:59 +0000 | [diff] [blame] | 2901 | bool IntExprEvaluator::CheckReferencedDecl(const Expr* E, const Decl* D) { |
Chris Lattner | 7174bf3 | 2008-07-12 00:38:25 +0000 | [diff] [blame] | 2902 | // Enums are integer constant exprs. |
Abramo Bagnara | 2caedf4 | 2011-06-30 09:36:05 +0000 | [diff] [blame] | 2903 | if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(D)) { |
Abramo Bagnara | 9ae292d | 2011-07-02 13:13:53 +0000 | [diff] [blame] | 2904 | // Check for signedness/width mismatches between E type and ECD value. |
| 2905 | bool SameSign = (ECD->getInitVal().isSigned() |
| 2906 | == E->getType()->isSignedIntegerOrEnumerationType()); |
| 2907 | bool SameWidth = (ECD->getInitVal().getBitWidth() |
| 2908 | == Info.Ctx.getIntWidth(E->getType())); |
| 2909 | if (SameSign && SameWidth) |
| 2910 | return Success(ECD->getInitVal(), E); |
| 2911 | else { |
| 2912 | // Get rid of mismatch (otherwise Success assertions will fail) |
| 2913 | // by computing a new value matching the type of E. |
| 2914 | llvm::APSInt Val = ECD->getInitVal(); |
| 2915 | if (!SameSign) |
| 2916 | Val.setIsSigned(!ECD->getInitVal().isSigned()); |
| 2917 | if (!SameWidth) |
| 2918 | Val = Val.extOrTrunc(Info.Ctx.getIntWidth(E->getType())); |
| 2919 | return Success(Val, E); |
| 2920 | } |
Abramo Bagnara | 2caedf4 | 2011-06-30 09:36:05 +0000 | [diff] [blame] | 2921 | } |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2922 | return false; |
Chris Lattner | 7174bf3 | 2008-07-12 00:38:25 +0000 | [diff] [blame] | 2923 | } |
| 2924 | |
Chris Lattner | 86ee286 | 2008-10-06 06:40:35 +0000 | [diff] [blame] | 2925 | /// EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way |
| 2926 | /// as GCC. |
| 2927 | static int EvaluateBuiltinClassifyType(const CallExpr *E) { |
| 2928 | // The following enum mimics the values returned by GCC. |
Sebastian Redl | 0f8b23f | 2009-03-16 23:22:08 +0000 | [diff] [blame] | 2929 | // FIXME: Does GCC differ between lvalue and rvalue references here? |
Chris Lattner | 86ee286 | 2008-10-06 06:40:35 +0000 | [diff] [blame] | 2930 | enum gcc_type_class { |
| 2931 | no_type_class = -1, |
| 2932 | void_type_class, integer_type_class, char_type_class, |
| 2933 | enumeral_type_class, boolean_type_class, |
| 2934 | pointer_type_class, reference_type_class, offset_type_class, |
| 2935 | real_type_class, complex_type_class, |
| 2936 | function_type_class, method_type_class, |
| 2937 | record_type_class, union_type_class, |
| 2938 | array_type_class, string_type_class, |
| 2939 | lang_type_class |
| 2940 | }; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2941 | |
| 2942 | // If no argument was supplied, default to "no_type_class". This isn't |
Chris Lattner | 86ee286 | 2008-10-06 06:40:35 +0000 | [diff] [blame] | 2943 | // ideal, however it is what gcc does. |
| 2944 | if (E->getNumArgs() == 0) |
| 2945 | return no_type_class; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2946 | |
Chris Lattner | 86ee286 | 2008-10-06 06:40:35 +0000 | [diff] [blame] | 2947 | QualType ArgTy = E->getArg(0)->getType(); |
| 2948 | if (ArgTy->isVoidType()) |
| 2949 | return void_type_class; |
| 2950 | else if (ArgTy->isEnumeralType()) |
| 2951 | return enumeral_type_class; |
| 2952 | else if (ArgTy->isBooleanType()) |
| 2953 | return boolean_type_class; |
| 2954 | else if (ArgTy->isCharType()) |
| 2955 | return string_type_class; // gcc doesn't appear to use char_type_class |
| 2956 | else if (ArgTy->isIntegerType()) |
| 2957 | return integer_type_class; |
| 2958 | else if (ArgTy->isPointerType()) |
| 2959 | return pointer_type_class; |
| 2960 | else if (ArgTy->isReferenceType()) |
| 2961 | return reference_type_class; |
| 2962 | else if (ArgTy->isRealType()) |
| 2963 | return real_type_class; |
| 2964 | else if (ArgTy->isComplexType()) |
| 2965 | return complex_type_class; |
| 2966 | else if (ArgTy->isFunctionType()) |
| 2967 | return function_type_class; |
Douglas Gregor | 8385a06 | 2010-04-26 21:31:17 +0000 | [diff] [blame] | 2968 | else if (ArgTy->isStructureOrClassType()) |
Chris Lattner | 86ee286 | 2008-10-06 06:40:35 +0000 | [diff] [blame] | 2969 | return record_type_class; |
| 2970 | else if (ArgTy->isUnionType()) |
| 2971 | return union_type_class; |
| 2972 | else if (ArgTy->isArrayType()) |
| 2973 | return array_type_class; |
| 2974 | else if (ArgTy->isUnionType()) |
| 2975 | return union_type_class; |
| 2976 | else // FIXME: offset_type_class, method_type_class, & lang_type_class? |
David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 2977 | llvm_unreachable("CallExpr::isBuiltinClassifyType(): unimplemented type"); |
Chris Lattner | 86ee286 | 2008-10-06 06:40:35 +0000 | [diff] [blame] | 2978 | return -1; |
| 2979 | } |
| 2980 | |
John McCall | 9500760 | 2010-05-10 23:27:23 +0000 | [diff] [blame] | 2981 | /// Retrieves the "underlying object type" of the given expression, |
| 2982 | /// as used by __builtin_object_size. |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 2983 | QualType IntExprEvaluator::GetObjectType(APValue::LValueBase B) { |
| 2984 | if (const ValueDecl *D = B.dyn_cast<const ValueDecl*>()) { |
| 2985 | if (const VarDecl *VD = dyn_cast<VarDecl>(D)) |
John McCall | 9500760 | 2010-05-10 23:27:23 +0000 | [diff] [blame] | 2986 | return VD->getType(); |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 2987 | } else if (const Expr *E = B.get<const Expr*>()) { |
| 2988 | if (isa<CompoundLiteralExpr>(E)) |
| 2989 | return E->getType(); |
John McCall | 9500760 | 2010-05-10 23:27:23 +0000 | [diff] [blame] | 2990 | } |
| 2991 | |
| 2992 | return QualType(); |
| 2993 | } |
| 2994 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 2995 | bool IntExprEvaluator::TryEvaluateBuiltinObjectSize(const CallExpr *E) { |
John McCall | 9500760 | 2010-05-10 23:27:23 +0000 | [diff] [blame] | 2996 | // TODO: Perhaps we should let LLVM lower this? |
| 2997 | LValue Base; |
| 2998 | if (!EvaluatePointer(E->getArg(0), Base, Info)) |
| 2999 | return false; |
| 3000 | |
| 3001 | // If we can prove the base is null, lower to zero now. |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 3002 | if (!Base.getLValueBase()) return Success(0, E); |
John McCall | 9500760 | 2010-05-10 23:27:23 +0000 | [diff] [blame] | 3003 | |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 3004 | QualType T = GetObjectType(Base.getLValueBase()); |
John McCall | 9500760 | 2010-05-10 23:27:23 +0000 | [diff] [blame] | 3005 | if (T.isNull() || |
| 3006 | T->isIncompleteType() || |
Eli Friedman | a170cd6 | 2010-08-05 02:49:48 +0000 | [diff] [blame] | 3007 | T->isFunctionType() || |
John McCall | 9500760 | 2010-05-10 23:27:23 +0000 | [diff] [blame] | 3008 | T->isVariablyModifiedType() || |
| 3009 | T->isDependentType()) |
| 3010 | return false; |
| 3011 | |
| 3012 | CharUnits Size = Info.Ctx.getTypeSizeInChars(T); |
| 3013 | CharUnits Offset = Base.getLValueOffset(); |
| 3014 | |
| 3015 | if (!Offset.isNegative() && Offset <= Size) |
| 3016 | Size -= Offset; |
| 3017 | else |
| 3018 | Size = CharUnits::Zero(); |
Ken Dyck | dbc0191 | 2011-03-11 02:13:43 +0000 | [diff] [blame] | 3019 | return Success(Size, E); |
John McCall | 9500760 | 2010-05-10 23:27:23 +0000 | [diff] [blame] | 3020 | } |
| 3021 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 3022 | bool IntExprEvaluator::VisitCallExpr(const CallExpr *E) { |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 3023 | switch (E->isBuiltinCall()) { |
Chris Lattner | 4deaa4e | 2008-10-06 05:28:25 +0000 | [diff] [blame] | 3024 | default: |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 3025 | return ExprEvaluatorBaseTy::VisitCallExpr(E); |
Mike Stump | 722cedf | 2009-10-26 18:35:08 +0000 | [diff] [blame] | 3026 | |
| 3027 | case Builtin::BI__builtin_object_size: { |
John McCall | 9500760 | 2010-05-10 23:27:23 +0000 | [diff] [blame] | 3028 | if (TryEvaluateBuiltinObjectSize(E)) |
| 3029 | return true; |
Mike Stump | 722cedf | 2009-10-26 18:35:08 +0000 | [diff] [blame] | 3030 | |
Eric Christopher | 9946970 | 2010-01-19 22:58:35 +0000 | [diff] [blame] | 3031 | // If evaluating the argument has side-effects we can't determine |
| 3032 | // the size of the object and lower it to unknown now. |
Fariborz Jahanian | 4127b8e | 2009-11-05 18:03:03 +0000 | [diff] [blame] | 3033 | if (E->getArg(0)->HasSideEffects(Info.Ctx)) { |
Richard Smith | caf3390 | 2011-10-10 18:28:20 +0000 | [diff] [blame] | 3034 | if (E->getArg(1)->EvaluateKnownConstInt(Info.Ctx).getZExtValue() <= 1) |
Chris Lattner | 4f10559 | 2009-11-03 19:48:51 +0000 | [diff] [blame] | 3035 | return Success(-1ULL, E); |
Mike Stump | 722cedf | 2009-10-26 18:35:08 +0000 | [diff] [blame] | 3036 | return Success(0, E); |
| 3037 | } |
Mike Stump | 876387b | 2009-10-27 22:09:17 +0000 | [diff] [blame] | 3038 | |
Mike Stump | 722cedf | 2009-10-26 18:35:08 +0000 | [diff] [blame] | 3039 | return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E); |
| 3040 | } |
| 3041 | |
Chris Lattner | 4deaa4e | 2008-10-06 05:28:25 +0000 | [diff] [blame] | 3042 | case Builtin::BI__builtin_classify_type: |
Daniel Dunbar | 8aafc89 | 2009-02-19 09:06:44 +0000 | [diff] [blame] | 3043 | return Success(EvaluateBuiltinClassifyType(E), E); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3044 | |
Richard Smith | 10c7c90 | 2011-12-09 02:04:48 +0000 | [diff] [blame] | 3045 | case Builtin::BI__builtin_constant_p: { |
| 3046 | const Expr *Arg = E->getArg(0); |
| 3047 | QualType ArgType = Arg->getType(); |
| 3048 | // __builtin_constant_p always has one operand. The rules which gcc follows |
| 3049 | // are not precisely documented, but are as follows: |
| 3050 | // |
| 3051 | // - If the operand is of integral, floating, complex or enumeration type, |
| 3052 | // and can be folded to a known value of that type, it returns 1. |
| 3053 | // - If the operand and can be folded to a pointer to the first character |
| 3054 | // of a string literal (or such a pointer cast to an integral type), it |
| 3055 | // returns 1. |
| 3056 | // |
| 3057 | // Otherwise, it returns 0. |
| 3058 | // |
| 3059 | // FIXME: GCC also intends to return 1 for literals of aggregate types, but |
| 3060 | // its support for this does not currently work. |
| 3061 | int IsConstant = 0; |
| 3062 | if (ArgType->isIntegralOrEnumerationType()) { |
| 3063 | // Note, a pointer cast to an integral type is only a constant if it is |
| 3064 | // a pointer to the first character of a string literal. |
| 3065 | Expr::EvalResult Result; |
| 3066 | if (Arg->EvaluateAsRValue(Result, Info.Ctx) && !Result.HasSideEffects) { |
| 3067 | APValue &V = Result.Val; |
| 3068 | if (V.getKind() == APValue::LValue) { |
| 3069 | if (const Expr *E = V.getLValueBase().dyn_cast<const Expr*>()) |
| 3070 | IsConstant = isa<StringLiteral>(E) && V.getLValueOffset().isZero(); |
| 3071 | } else { |
| 3072 | IsConstant = 1; |
| 3073 | } |
| 3074 | } |
| 3075 | } else if (ArgType->isFloatingType() || ArgType->isAnyComplexType()) { |
| 3076 | IsConstant = Arg->isEvaluatable(Info.Ctx); |
| 3077 | } else if (ArgType->isPointerType() || Arg->isGLValue()) { |
| 3078 | LValue LV; |
| 3079 | // Use a separate EvalInfo: ignore constexpr parameter and 'this' bindings |
| 3080 | // during the check. |
| 3081 | Expr::EvalStatus Status; |
| 3082 | EvalInfo SubInfo(Info.Ctx, Status); |
| 3083 | if ((Arg->isGLValue() ? EvaluateLValue(Arg, LV, SubInfo) |
| 3084 | : EvaluatePointer(Arg, LV, SubInfo)) && |
| 3085 | !Status.HasSideEffects) |
| 3086 | if (const Expr *E = LV.getLValueBase().dyn_cast<const Expr*>()) |
| 3087 | IsConstant = isa<StringLiteral>(E) && LV.getLValueOffset().isZero(); |
| 3088 | } |
| 3089 | |
| 3090 | return Success(IsConstant, E); |
| 3091 | } |
Chris Lattner | d545ad1 | 2009-09-23 06:06:36 +0000 | [diff] [blame] | 3092 | case Builtin::BI__builtin_eh_return_data_regno: { |
Richard Smith | caf3390 | 2011-10-10 18:28:20 +0000 | [diff] [blame] | 3093 | int Operand = E->getArg(0)->EvaluateKnownConstInt(Info.Ctx).getZExtValue(); |
Douglas Gregor | e8bbc12 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 3094 | Operand = Info.Ctx.getTargetInfo().getEHDataRegisterNumber(Operand); |
Chris Lattner | d545ad1 | 2009-09-23 06:06:36 +0000 | [diff] [blame] | 3095 | return Success(Operand, E); |
| 3096 | } |
Eli Friedman | d5c9399 | 2010-02-13 00:10:10 +0000 | [diff] [blame] | 3097 | |
| 3098 | case Builtin::BI__builtin_expect: |
| 3099 | return Visit(E->getArg(0)); |
Douglas Gregor | 6a6dac2 | 2010-09-10 06:27:15 +0000 | [diff] [blame] | 3100 | |
| 3101 | case Builtin::BIstrlen: |
| 3102 | case Builtin::BI__builtin_strlen: |
| 3103 | // As an extension, we support strlen() and __builtin_strlen() as constant |
| 3104 | // expressions when the argument is a string literal. |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 3105 | if (const StringLiteral *S |
Douglas Gregor | 6a6dac2 | 2010-09-10 06:27:15 +0000 | [diff] [blame] | 3106 | = dyn_cast<StringLiteral>(E->getArg(0)->IgnoreParenImpCasts())) { |
| 3107 | // The string literal may have embedded null characters. Find the first |
| 3108 | // one and truncate there. |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3109 | StringRef Str = S->getString(); |
| 3110 | StringRef::size_type Pos = Str.find(0); |
| 3111 | if (Pos != StringRef::npos) |
Douglas Gregor | 6a6dac2 | 2010-09-10 06:27:15 +0000 | [diff] [blame] | 3112 | Str = Str.substr(0, Pos); |
| 3113 | |
| 3114 | return Success(Str.size(), E); |
| 3115 | } |
| 3116 | |
| 3117 | return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E); |
Eli Friedman | a4c2602 | 2011-10-17 21:44:23 +0000 | [diff] [blame] | 3118 | |
| 3119 | case Builtin::BI__atomic_is_lock_free: { |
| 3120 | APSInt SizeVal; |
| 3121 | if (!EvaluateInteger(E->getArg(0), SizeVal, Info)) |
| 3122 | return false; |
| 3123 | |
| 3124 | // For __atomic_is_lock_free(sizeof(_Atomic(T))), if the size is a power |
| 3125 | // of two less than the maximum inline atomic width, we know it is |
| 3126 | // lock-free. If the size isn't a power of two, or greater than the |
| 3127 | // maximum alignment where we promote atomics, we know it is not lock-free |
| 3128 | // (at least not in the sense of atomic_is_lock_free). Otherwise, |
| 3129 | // the answer can only be determined at runtime; for example, 16-byte |
| 3130 | // atomics have lock-free implementations on some, but not all, |
| 3131 | // x86-64 processors. |
| 3132 | |
| 3133 | // Check power-of-two. |
| 3134 | CharUnits Size = CharUnits::fromQuantity(SizeVal.getZExtValue()); |
| 3135 | if (!Size.isPowerOfTwo()) |
| 3136 | #if 0 |
| 3137 | // FIXME: Suppress this folding until the ABI for the promotion width |
| 3138 | // settles. |
| 3139 | return Success(0, E); |
| 3140 | #else |
| 3141 | return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E); |
| 3142 | #endif |
| 3143 | |
| 3144 | #if 0 |
| 3145 | // Check against promotion width. |
| 3146 | // FIXME: Suppress this folding until the ABI for the promotion width |
| 3147 | // settles. |
| 3148 | unsigned PromoteWidthBits = |
| 3149 | Info.Ctx.getTargetInfo().getMaxAtomicPromoteWidth(); |
| 3150 | if (Size > Info.Ctx.toCharUnitsFromBits(PromoteWidthBits)) |
| 3151 | return Success(0, E); |
| 3152 | #endif |
| 3153 | |
| 3154 | // Check against inlining width. |
| 3155 | unsigned InlineWidthBits = |
| 3156 | Info.Ctx.getTargetInfo().getMaxAtomicInlineWidth(); |
| 3157 | if (Size <= Info.Ctx.toCharUnitsFromBits(InlineWidthBits)) |
| 3158 | return Success(1, E); |
| 3159 | |
| 3160 | return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E); |
| 3161 | } |
Chris Lattner | 4deaa4e | 2008-10-06 05:28:25 +0000 | [diff] [blame] | 3162 | } |
Chris Lattner | 7174bf3 | 2008-07-12 00:38:25 +0000 | [diff] [blame] | 3163 | } |
Anders Carlsson | 4a3585b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 3164 | |
Richard Smith | 8b3497e | 2011-10-31 01:37:14 +0000 | [diff] [blame] | 3165 | static bool HasSameBase(const LValue &A, const LValue &B) { |
| 3166 | if (!A.getLValueBase()) |
| 3167 | return !B.getLValueBase(); |
| 3168 | if (!B.getLValueBase()) |
| 3169 | return false; |
| 3170 | |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 3171 | if (A.getLValueBase().getOpaqueValue() != |
| 3172 | B.getLValueBase().getOpaqueValue()) { |
Richard Smith | 8b3497e | 2011-10-31 01:37:14 +0000 | [diff] [blame] | 3173 | const Decl *ADecl = GetLValueBaseDecl(A); |
| 3174 | if (!ADecl) |
| 3175 | return false; |
| 3176 | const Decl *BDecl = GetLValueBaseDecl(B); |
Richard Smith | 8081560 | 2011-11-07 05:07:52 +0000 | [diff] [blame] | 3177 | if (!BDecl || ADecl->getCanonicalDecl() != BDecl->getCanonicalDecl()) |
Richard Smith | 8b3497e | 2011-10-31 01:37:14 +0000 | [diff] [blame] | 3178 | return false; |
| 3179 | } |
| 3180 | |
| 3181 | return IsGlobalLValue(A.getLValueBase()) || |
Richard Smith | fec0992 | 2011-11-01 16:57:24 +0000 | [diff] [blame] | 3182 | A.getLValueFrame() == B.getLValueFrame(); |
Richard Smith | 8b3497e | 2011-10-31 01:37:14 +0000 | [diff] [blame] | 3183 | } |
| 3184 | |
Chris Lattner | e13042c | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 3185 | bool IntExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) { |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3186 | if (E->isAssignmentOp()) |
| 3187 | return Error(E->getOperatorLoc(), diag::note_invalid_subexpr_in_ice, E); |
| 3188 | |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3189 | if (E->getOpcode() == BO_Comma) { |
Richard Smith | 4a67812 | 2011-10-24 18:44:57 +0000 | [diff] [blame] | 3190 | VisitIgnoredValue(E->getLHS()); |
| 3191 | return Visit(E->getRHS()); |
Eli Friedman | 5a332ea | 2008-11-13 06:09:17 +0000 | [diff] [blame] | 3192 | } |
| 3193 | |
| 3194 | if (E->isLogicalOp()) { |
| 3195 | // These need to be handled specially because the operands aren't |
| 3196 | // necessarily integral |
Anders Carlsson | f50de0c | 2008-11-30 16:51:17 +0000 | [diff] [blame] | 3197 | bool lhsResult, rhsResult; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3198 | |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3199 | if (EvaluateAsBooleanCondition(E->getLHS(), lhsResult, Info)) { |
Anders Carlsson | 59689ed | 2008-11-22 21:04:56 +0000 | [diff] [blame] | 3200 | // We were able to evaluate the LHS, see if we can get away with not |
| 3201 | // evaluating the RHS: 0 && X -> 0, 1 || X -> 1 |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3202 | if (lhsResult == (E->getOpcode() == BO_LOr)) |
Daniel Dunbar | e3c92bc | 2009-02-19 18:37:50 +0000 | [diff] [blame] | 3203 | return Success(lhsResult, E); |
Anders Carlsson | 4c76e93 | 2008-11-24 04:21:33 +0000 | [diff] [blame] | 3204 | |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3205 | if (EvaluateAsBooleanCondition(E->getRHS(), rhsResult, Info)) { |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3206 | if (E->getOpcode() == BO_LOr) |
Daniel Dunbar | 8aafc89 | 2009-02-19 09:06:44 +0000 | [diff] [blame] | 3207 | return Success(lhsResult || rhsResult, E); |
Anders Carlsson | 4c76e93 | 2008-11-24 04:21:33 +0000 | [diff] [blame] | 3208 | else |
Daniel Dunbar | 8aafc89 | 2009-02-19 09:06:44 +0000 | [diff] [blame] | 3209 | return Success(lhsResult && rhsResult, E); |
Anders Carlsson | 4c76e93 | 2008-11-24 04:21:33 +0000 | [diff] [blame] | 3210 | } |
| 3211 | } else { |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3212 | if (EvaluateAsBooleanCondition(E->getRHS(), rhsResult, Info)) { |
Anders Carlsson | 4c76e93 | 2008-11-24 04:21:33 +0000 | [diff] [blame] | 3213 | // We can't evaluate the LHS; however, sometimes the result |
| 3214 | // is determined by the RHS: X && 0 -> 0, X || 1 -> 1. |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3215 | if (rhsResult == (E->getOpcode() == BO_LOr) || |
| 3216 | !rhsResult == (E->getOpcode() == BO_LAnd)) { |
Daniel Dunbar | 8aafc89 | 2009-02-19 09:06:44 +0000 | [diff] [blame] | 3217 | // Since we weren't able to evaluate the left hand side, it |
Anders Carlsson | f50de0c | 2008-11-30 16:51:17 +0000 | [diff] [blame] | 3218 | // must have had side effects. |
Richard Smith | 725810a | 2011-10-16 21:26:27 +0000 | [diff] [blame] | 3219 | Info.EvalStatus.HasSideEffects = true; |
Daniel Dunbar | 8aafc89 | 2009-02-19 09:06:44 +0000 | [diff] [blame] | 3220 | |
| 3221 | return Success(rhsResult, E); |
Anders Carlsson | 4c76e93 | 2008-11-24 04:21:33 +0000 | [diff] [blame] | 3222 | } |
| 3223 | } |
Anders Carlsson | 59689ed | 2008-11-22 21:04:56 +0000 | [diff] [blame] | 3224 | } |
Eli Friedman | 5a332ea | 2008-11-13 06:09:17 +0000 | [diff] [blame] | 3225 | |
Eli Friedman | 5a332ea | 2008-11-13 06:09:17 +0000 | [diff] [blame] | 3226 | return false; |
| 3227 | } |
| 3228 | |
Anders Carlsson | acc7981 | 2008-11-16 07:17:21 +0000 | [diff] [blame] | 3229 | QualType LHSTy = E->getLHS()->getType(); |
| 3230 | QualType RHSTy = E->getRHS()->getType(); |
Daniel Dunbar | 74f2425b | 2009-01-29 06:43:41 +0000 | [diff] [blame] | 3231 | |
| 3232 | if (LHSTy->isAnyComplexType()) { |
| 3233 | assert(RHSTy->isAnyComplexType() && "Invalid comparison"); |
John McCall | 93d91dc | 2010-05-07 17:22:02 +0000 | [diff] [blame] | 3234 | ComplexValue LHS, RHS; |
Daniel Dunbar | 74f2425b | 2009-01-29 06:43:41 +0000 | [diff] [blame] | 3235 | |
| 3236 | if (!EvaluateComplex(E->getLHS(), LHS, Info)) |
| 3237 | return false; |
| 3238 | |
| 3239 | if (!EvaluateComplex(E->getRHS(), RHS, Info)) |
| 3240 | return false; |
| 3241 | |
| 3242 | if (LHS.isComplexFloat()) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3243 | APFloat::cmpResult CR_r = |
Daniel Dunbar | 74f2425b | 2009-01-29 06:43:41 +0000 | [diff] [blame] | 3244 | LHS.getComplexFloatReal().compare(RHS.getComplexFloatReal()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3245 | APFloat::cmpResult CR_i = |
Daniel Dunbar | 74f2425b | 2009-01-29 06:43:41 +0000 | [diff] [blame] | 3246 | LHS.getComplexFloatImag().compare(RHS.getComplexFloatImag()); |
| 3247 | |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3248 | if (E->getOpcode() == BO_EQ) |
Daniel Dunbar | 8aafc89 | 2009-02-19 09:06:44 +0000 | [diff] [blame] | 3249 | return Success((CR_r == APFloat::cmpEqual && |
| 3250 | CR_i == APFloat::cmpEqual), E); |
| 3251 | else { |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3252 | assert(E->getOpcode() == BO_NE && |
Daniel Dunbar | 8aafc89 | 2009-02-19 09:06:44 +0000 | [diff] [blame] | 3253 | "Invalid complex comparison."); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3254 | return Success(((CR_r == APFloat::cmpGreaterThan || |
Mon P Wang | 75c645c | 2010-04-29 05:53:29 +0000 | [diff] [blame] | 3255 | CR_r == APFloat::cmpLessThan || |
| 3256 | CR_r == APFloat::cmpUnordered) || |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3257 | (CR_i == APFloat::cmpGreaterThan || |
Mon P Wang | 75c645c | 2010-04-29 05:53:29 +0000 | [diff] [blame] | 3258 | CR_i == APFloat::cmpLessThan || |
| 3259 | CR_i == APFloat::cmpUnordered)), E); |
Daniel Dunbar | 8aafc89 | 2009-02-19 09:06:44 +0000 | [diff] [blame] | 3260 | } |
Daniel Dunbar | 74f2425b | 2009-01-29 06:43:41 +0000 | [diff] [blame] | 3261 | } else { |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3262 | if (E->getOpcode() == BO_EQ) |
Daniel Dunbar | 8aafc89 | 2009-02-19 09:06:44 +0000 | [diff] [blame] | 3263 | return Success((LHS.getComplexIntReal() == RHS.getComplexIntReal() && |
| 3264 | LHS.getComplexIntImag() == RHS.getComplexIntImag()), E); |
| 3265 | else { |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3266 | assert(E->getOpcode() == BO_NE && |
Daniel Dunbar | 8aafc89 | 2009-02-19 09:06:44 +0000 | [diff] [blame] | 3267 | "Invalid compex comparison."); |
| 3268 | return Success((LHS.getComplexIntReal() != RHS.getComplexIntReal() || |
| 3269 | LHS.getComplexIntImag() != RHS.getComplexIntImag()), E); |
| 3270 | } |
Daniel Dunbar | 74f2425b | 2009-01-29 06:43:41 +0000 | [diff] [blame] | 3271 | } |
| 3272 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3273 | |
Anders Carlsson | acc7981 | 2008-11-16 07:17:21 +0000 | [diff] [blame] | 3274 | if (LHSTy->isRealFloatingType() && |
| 3275 | RHSTy->isRealFloatingType()) { |
| 3276 | APFloat RHS(0.0), LHS(0.0); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3277 | |
Anders Carlsson | acc7981 | 2008-11-16 07:17:21 +0000 | [diff] [blame] | 3278 | if (!EvaluateFloat(E->getRHS(), RHS, Info)) |
| 3279 | return false; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3280 | |
Anders Carlsson | acc7981 | 2008-11-16 07:17:21 +0000 | [diff] [blame] | 3281 | if (!EvaluateFloat(E->getLHS(), LHS, Info)) |
| 3282 | return false; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3283 | |
Anders Carlsson | acc7981 | 2008-11-16 07:17:21 +0000 | [diff] [blame] | 3284 | APFloat::cmpResult CR = LHS.compare(RHS); |
Anders Carlsson | 899c705 | 2008-11-16 22:46:56 +0000 | [diff] [blame] | 3285 | |
Anders Carlsson | acc7981 | 2008-11-16 07:17:21 +0000 | [diff] [blame] | 3286 | switch (E->getOpcode()) { |
| 3287 | default: |
David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 3288 | llvm_unreachable("Invalid binary operator!"); |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3289 | case BO_LT: |
Daniel Dunbar | 8aafc89 | 2009-02-19 09:06:44 +0000 | [diff] [blame] | 3290 | return Success(CR == APFloat::cmpLessThan, E); |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3291 | case BO_GT: |
Daniel Dunbar | 8aafc89 | 2009-02-19 09:06:44 +0000 | [diff] [blame] | 3292 | return Success(CR == APFloat::cmpGreaterThan, E); |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3293 | case BO_LE: |
Daniel Dunbar | 8aafc89 | 2009-02-19 09:06:44 +0000 | [diff] [blame] | 3294 | return Success(CR == APFloat::cmpLessThan || CR == APFloat::cmpEqual, E); |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3295 | case BO_GE: |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3296 | return Success(CR == APFloat::cmpGreaterThan || CR == APFloat::cmpEqual, |
Daniel Dunbar | 8aafc89 | 2009-02-19 09:06:44 +0000 | [diff] [blame] | 3297 | E); |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3298 | case BO_EQ: |
Daniel Dunbar | 8aafc89 | 2009-02-19 09:06:44 +0000 | [diff] [blame] | 3299 | return Success(CR == APFloat::cmpEqual, E); |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3300 | case BO_NE: |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3301 | return Success(CR == APFloat::cmpGreaterThan |
Mon P Wang | 75c645c | 2010-04-29 05:53:29 +0000 | [diff] [blame] | 3302 | || CR == APFloat::cmpLessThan |
| 3303 | || CR == APFloat::cmpUnordered, E); |
Anders Carlsson | acc7981 | 2008-11-16 07:17:21 +0000 | [diff] [blame] | 3304 | } |
Anders Carlsson | acc7981 | 2008-11-16 07:17:21 +0000 | [diff] [blame] | 3305 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3306 | |
Eli Friedman | a38da57 | 2009-04-28 19:17:36 +0000 | [diff] [blame] | 3307 | if (LHSTy->isPointerType() && RHSTy->isPointerType()) { |
Richard Smith | 8b3497e | 2011-10-31 01:37:14 +0000 | [diff] [blame] | 3308 | if (E->getOpcode() == BO_Sub || E->isComparisonOp()) { |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 3309 | LValue LHSValue; |
Anders Carlsson | 9f9e424 | 2008-11-16 19:01:22 +0000 | [diff] [blame] | 3310 | if (!EvaluatePointer(E->getLHS(), LHSValue, Info)) |
| 3311 | return false; |
Eli Friedman | 6400433 | 2009-03-23 04:38:34 +0000 | [diff] [blame] | 3312 | |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 3313 | LValue RHSValue; |
Anders Carlsson | 9f9e424 | 2008-11-16 19:01:22 +0000 | [diff] [blame] | 3314 | if (!EvaluatePointer(E->getRHS(), RHSValue, Info)) |
| 3315 | return false; |
Eli Friedman | 6400433 | 2009-03-23 04:38:34 +0000 | [diff] [blame] | 3316 | |
Richard Smith | 8b3497e | 2011-10-31 01:37:14 +0000 | [diff] [blame] | 3317 | // Reject differing bases from the normal codepath; we special-case |
| 3318 | // comparisons to null. |
| 3319 | if (!HasSameBase(LHSValue, RHSValue)) { |
Richard Smith | 83c6821 | 2011-10-31 05:11:32 +0000 | [diff] [blame] | 3320 | // Inequalities and subtractions between unrelated pointers have |
| 3321 | // unspecified or undefined behavior. |
Eli Friedman | 334046a | 2009-06-14 02:17:33 +0000 | [diff] [blame] | 3322 | if (!E->isEqualityOp()) |
| 3323 | return false; |
Eli Friedman | c6be94b | 2011-10-31 22:28:05 +0000 | [diff] [blame] | 3324 | // A constant address may compare equal to the address of a symbol. |
| 3325 | // The one exception is that address of an object cannot compare equal |
Eli Friedman | 42fbd62 | 2011-10-31 22:54:30 +0000 | [diff] [blame] | 3326 | // to a null pointer constant. |
Eli Friedman | c6be94b | 2011-10-31 22:28:05 +0000 | [diff] [blame] | 3327 | if ((!LHSValue.Base && !LHSValue.Offset.isZero()) || |
| 3328 | (!RHSValue.Base && !RHSValue.Offset.isZero())) |
| 3329 | return false; |
Richard Smith | 83c6821 | 2011-10-31 05:11:32 +0000 | [diff] [blame] | 3330 | // It's implementation-defined whether distinct literals will have |
Eli Friedman | 42fbd62 | 2011-10-31 22:54:30 +0000 | [diff] [blame] | 3331 | // distinct addresses. In clang, we do not guarantee the addresses are |
Richard Smith | e9e20dd3 | 2011-11-04 01:10:57 +0000 | [diff] [blame] | 3332 | // distinct. However, we do know that the address of a literal will be |
| 3333 | // non-null. |
| 3334 | if ((IsLiteralLValue(LHSValue) || IsLiteralLValue(RHSValue)) && |
| 3335 | LHSValue.Base && RHSValue.Base) |
Eli Friedman | 334046a | 2009-06-14 02:17:33 +0000 | [diff] [blame] | 3336 | return false; |
Richard Smith | 83c6821 | 2011-10-31 05:11:32 +0000 | [diff] [blame] | 3337 | // We can't tell whether weak symbols will end up pointing to the same |
| 3338 | // object. |
| 3339 | if (IsWeakLValue(LHSValue) || IsWeakLValue(RHSValue)) |
Eli Friedman | 334046a | 2009-06-14 02:17:33 +0000 | [diff] [blame] | 3340 | return false; |
Richard Smith | 83c6821 | 2011-10-31 05:11:32 +0000 | [diff] [blame] | 3341 | // Pointers with different bases cannot represent the same object. |
Eli Friedman | 42fbd62 | 2011-10-31 22:54:30 +0000 | [diff] [blame] | 3342 | // (Note that clang defaults to -fmerge-all-constants, which can |
| 3343 | // lead to inconsistent results for comparisons involving the address |
| 3344 | // of a constant; this generally doesn't matter in practice.) |
Richard Smith | 83c6821 | 2011-10-31 05:11:32 +0000 | [diff] [blame] | 3345 | return Success(E->getOpcode() == BO_NE, E); |
Eli Friedman | 334046a | 2009-06-14 02:17:33 +0000 | [diff] [blame] | 3346 | } |
Eli Friedman | 6400433 | 2009-03-23 04:38:34 +0000 | [diff] [blame] | 3347 | |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 3348 | // FIXME: Implement the C++11 restrictions: |
| 3349 | // - Pointer subtractions must be on elements of the same array. |
| 3350 | // - Pointer comparisons must be between members with the same access. |
| 3351 | |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3352 | if (E->getOpcode() == BO_Sub) { |
Chris Lattner | 882bdf2 | 2010-04-20 17:13:14 +0000 | [diff] [blame] | 3353 | QualType Type = E->getLHS()->getType(); |
| 3354 | QualType ElementType = Type->getAs<PointerType>()->getPointeeType(); |
Anders Carlsson | 9f9e424 | 2008-11-16 19:01:22 +0000 | [diff] [blame] | 3355 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 3356 | CharUnits ElementSize; |
| 3357 | if (!HandleSizeof(Info, ElementType, ElementSize)) |
| 3358 | return false; |
Eli Friedman | 6400433 | 2009-03-23 04:38:34 +0000 | [diff] [blame] | 3359 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 3360 | CharUnits Diff = LHSValue.getLValueOffset() - |
Ken Dyck | 0299083 | 2010-01-15 12:37:54 +0000 | [diff] [blame] | 3361 | RHSValue.getLValueOffset(); |
| 3362 | return Success(Diff / ElementSize, E); |
Eli Friedman | a38da57 | 2009-04-28 19:17:36 +0000 | [diff] [blame] | 3363 | } |
Richard Smith | 8b3497e | 2011-10-31 01:37:14 +0000 | [diff] [blame] | 3364 | |
| 3365 | const CharUnits &LHSOffset = LHSValue.getLValueOffset(); |
| 3366 | const CharUnits &RHSOffset = RHSValue.getLValueOffset(); |
| 3367 | switch (E->getOpcode()) { |
| 3368 | default: llvm_unreachable("missing comparison operator"); |
| 3369 | case BO_LT: return Success(LHSOffset < RHSOffset, E); |
| 3370 | case BO_GT: return Success(LHSOffset > RHSOffset, E); |
| 3371 | case BO_LE: return Success(LHSOffset <= RHSOffset, E); |
| 3372 | case BO_GE: return Success(LHSOffset >= RHSOffset, E); |
| 3373 | case BO_EQ: return Success(LHSOffset == RHSOffset, E); |
| 3374 | case BO_NE: return Success(LHSOffset != RHSOffset, E); |
Eli Friedman | a38da57 | 2009-04-28 19:17:36 +0000 | [diff] [blame] | 3375 | } |
Anders Carlsson | 9f9e424 | 2008-11-16 19:01:22 +0000 | [diff] [blame] | 3376 | } |
| 3377 | } |
Douglas Gregor | b90df60 | 2010-06-16 00:17:44 +0000 | [diff] [blame] | 3378 | if (!LHSTy->isIntegralOrEnumerationType() || |
| 3379 | !RHSTy->isIntegralOrEnumerationType()) { |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 3380 | // We can't continue from here for non-integral types. |
| 3381 | return ExprEvaluatorBaseTy::VisitBinaryOperator(E); |
Eli Friedman | 5a332ea | 2008-11-13 06:09:17 +0000 | [diff] [blame] | 3382 | } |
| 3383 | |
Anders Carlsson | 9c18165 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 3384 | // The LHS of a constant expr is always evaluated and needed. |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 3385 | CCValue LHSVal; |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3386 | if (!EvaluateIntegerOrLValue(E->getLHS(), LHSVal, Info)) |
Chris Lattner | 9941570 | 2008-07-12 00:14:42 +0000 | [diff] [blame] | 3387 | return false; // error in subexpression. |
Eli Friedman | bd84059 | 2008-07-27 05:46:18 +0000 | [diff] [blame] | 3388 | |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3389 | if (!Visit(E->getRHS())) |
Daniel Dunbar | ca097ad | 2009-02-19 20:17:33 +0000 | [diff] [blame] | 3390 | return false; |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 3391 | CCValue &RHSVal = Result; |
Eli Friedman | 94c25c6 | 2009-03-24 01:14:50 +0000 | [diff] [blame] | 3392 | |
| 3393 | // Handle cases like (unsigned long)&a + 4. |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3394 | if (E->isAdditiveOp() && LHSVal.isLValue() && RHSVal.isInt()) { |
Ken Dyck | 0299083 | 2010-01-15 12:37:54 +0000 | [diff] [blame] | 3395 | CharUnits AdditionalOffset = CharUnits::fromQuantity( |
| 3396 | RHSVal.getInt().getZExtValue()); |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3397 | if (E->getOpcode() == BO_Add) |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 3398 | LHSVal.getLValueOffset() += AdditionalOffset; |
Eli Friedman | 94c25c6 | 2009-03-24 01:14:50 +0000 | [diff] [blame] | 3399 | else |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 3400 | LHSVal.getLValueOffset() -= AdditionalOffset; |
| 3401 | Result = LHSVal; |
Eli Friedman | 94c25c6 | 2009-03-24 01:14:50 +0000 | [diff] [blame] | 3402 | return true; |
| 3403 | } |
| 3404 | |
| 3405 | // Handle cases like 4 + (unsigned long)&a |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3406 | if (E->getOpcode() == BO_Add && |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3407 | RHSVal.isLValue() && LHSVal.isInt()) { |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 3408 | RHSVal.getLValueOffset() += CharUnits::fromQuantity( |
| 3409 | LHSVal.getInt().getZExtValue()); |
| 3410 | // Note that RHSVal is Result. |
Eli Friedman | 94c25c6 | 2009-03-24 01:14:50 +0000 | [diff] [blame] | 3411 | return true; |
| 3412 | } |
| 3413 | |
| 3414 | // All the following cases expect both operands to be an integer |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3415 | if (!LHSVal.isInt() || !RHSVal.isInt()) |
Chris Lattner | e13042c | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 3416 | return false; |
Eli Friedman | 5a332ea | 2008-11-13 06:09:17 +0000 | [diff] [blame] | 3417 | |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3418 | APSInt &LHS = LHSVal.getInt(); |
| 3419 | APSInt &RHS = RHSVal.getInt(); |
Eli Friedman | 94c25c6 | 2009-03-24 01:14:50 +0000 | [diff] [blame] | 3420 | |
Anders Carlsson | 9c18165 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 3421 | switch (E->getOpcode()) { |
Chris Lattner | fac05ae | 2008-11-12 07:43:42 +0000 | [diff] [blame] | 3422 | default: |
Anders Carlsson | b33d6c8 | 2008-11-30 18:37:00 +0000 | [diff] [blame] | 3423 | return Error(E->getOperatorLoc(), diag::note_invalid_subexpr_in_ice, E); |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3424 | case BO_Mul: return Success(LHS * RHS, E); |
| 3425 | case BO_Add: return Success(LHS + RHS, E); |
| 3426 | case BO_Sub: return Success(LHS - RHS, E); |
| 3427 | case BO_And: return Success(LHS & RHS, E); |
| 3428 | case BO_Xor: return Success(LHS ^ RHS, E); |
| 3429 | case BO_Or: return Success(LHS | RHS, E); |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3430 | case BO_Div: |
Chris Lattner | 9941570 | 2008-07-12 00:14:42 +0000 | [diff] [blame] | 3431 | if (RHS == 0) |
Anders Carlsson | b33d6c8 | 2008-11-30 18:37:00 +0000 | [diff] [blame] | 3432 | return Error(E->getOperatorLoc(), diag::note_expr_divide_by_zero, E); |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3433 | return Success(LHS / RHS, E); |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3434 | case BO_Rem: |
Chris Lattner | 9941570 | 2008-07-12 00:14:42 +0000 | [diff] [blame] | 3435 | if (RHS == 0) |
Anders Carlsson | b33d6c8 | 2008-11-30 18:37:00 +0000 | [diff] [blame] | 3436 | return Error(E->getOperatorLoc(), diag::note_expr_divide_by_zero, E); |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3437 | return Success(LHS % RHS, E); |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3438 | case BO_Shl: { |
John McCall | 18a2c2c | 2010-11-09 22:22:12 +0000 | [diff] [blame] | 3439 | // During constant-folding, a negative shift is an opposite shift. |
| 3440 | if (RHS.isSigned() && RHS.isNegative()) { |
| 3441 | RHS = -RHS; |
| 3442 | goto shift_right; |
| 3443 | } |
| 3444 | |
| 3445 | shift_left: |
| 3446 | unsigned SA |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3447 | = (unsigned) RHS.getLimitedValue(LHS.getBitWidth()-1); |
| 3448 | return Success(LHS << SA, E); |
Daniel Dunbar | e3c92bc | 2009-02-19 18:37:50 +0000 | [diff] [blame] | 3449 | } |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3450 | case BO_Shr: { |
John McCall | 18a2c2c | 2010-11-09 22:22:12 +0000 | [diff] [blame] | 3451 | // During constant-folding, a negative shift is an opposite shift. |
| 3452 | if (RHS.isSigned() && RHS.isNegative()) { |
| 3453 | RHS = -RHS; |
| 3454 | goto shift_left; |
| 3455 | } |
| 3456 | |
| 3457 | shift_right: |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3458 | unsigned SA = |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3459 | (unsigned) RHS.getLimitedValue(LHS.getBitWidth()-1); |
| 3460 | return Success(LHS >> SA, E); |
Daniel Dunbar | e3c92bc | 2009-02-19 18:37:50 +0000 | [diff] [blame] | 3461 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3462 | |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3463 | case BO_LT: return Success(LHS < RHS, E); |
| 3464 | case BO_GT: return Success(LHS > RHS, E); |
| 3465 | case BO_LE: return Success(LHS <= RHS, E); |
| 3466 | case BO_GE: return Success(LHS >= RHS, E); |
| 3467 | case BO_EQ: return Success(LHS == RHS, E); |
| 3468 | case BO_NE: return Success(LHS != RHS, E); |
Eli Friedman | 8553a98 | 2008-11-13 02:13:11 +0000 | [diff] [blame] | 3469 | } |
Anders Carlsson | 9c18165 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 3470 | } |
| 3471 | |
Ken Dyck | 160146e | 2010-01-27 17:10:57 +0000 | [diff] [blame] | 3472 | CharUnits IntExprEvaluator::GetAlignOfType(QualType T) { |
Sebastian Redl | 22e2e5c | 2009-11-23 17:18:46 +0000 | [diff] [blame] | 3473 | // C++ [expr.sizeof]p2: "When applied to a reference or a reference type, |
| 3474 | // the result is the size of the referenced type." |
| 3475 | // C++ [expr.alignof]p3: "When alignof is applied to a reference type, the |
| 3476 | // result shall be the alignment of the referenced type." |
| 3477 | if (const ReferenceType *Ref = T->getAs<ReferenceType>()) |
| 3478 | T = Ref->getPointeeType(); |
Chad Rosier | 99ee782 | 2011-07-26 07:03:04 +0000 | [diff] [blame] | 3479 | |
| 3480 | // __alignof is defined to return the preferred alignment. |
| 3481 | return Info.Ctx.toCharUnitsFromBits( |
| 3482 | Info.Ctx.getPreferredTypeAlign(T.getTypePtr())); |
Chris Lattner | 24aeeab | 2009-01-24 21:09:06 +0000 | [diff] [blame] | 3483 | } |
| 3484 | |
Ken Dyck | 160146e | 2010-01-27 17:10:57 +0000 | [diff] [blame] | 3485 | CharUnits IntExprEvaluator::GetAlignOfExpr(const Expr *E) { |
Chris Lattner | 6806131 | 2009-01-24 21:53:27 +0000 | [diff] [blame] | 3486 | E = E->IgnoreParens(); |
| 3487 | |
| 3488 | // alignof decl is always accepted, even if it doesn't make sense: we default |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3489 | // to 1 in those cases. |
Chris Lattner | 6806131 | 2009-01-24 21:53:27 +0000 | [diff] [blame] | 3490 | if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) |
Ken Dyck | 160146e | 2010-01-27 17:10:57 +0000 | [diff] [blame] | 3491 | return Info.Ctx.getDeclAlign(DRE->getDecl(), |
| 3492 | /*RefAsPointee*/true); |
Eli Friedman | 6400433 | 2009-03-23 04:38:34 +0000 | [diff] [blame] | 3493 | |
Chris Lattner | 6806131 | 2009-01-24 21:53:27 +0000 | [diff] [blame] | 3494 | if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) |
Ken Dyck | 160146e | 2010-01-27 17:10:57 +0000 | [diff] [blame] | 3495 | return Info.Ctx.getDeclAlign(ME->getMemberDecl(), |
| 3496 | /*RefAsPointee*/true); |
Chris Lattner | 6806131 | 2009-01-24 21:53:27 +0000 | [diff] [blame] | 3497 | |
Chris Lattner | 24aeeab | 2009-01-24 21:09:06 +0000 | [diff] [blame] | 3498 | return GetAlignOfType(E->getType()); |
| 3499 | } |
| 3500 | |
| 3501 | |
Peter Collingbourne | e190dee | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3502 | /// VisitUnaryExprOrTypeTraitExpr - Evaluate a sizeof, alignof or vec_step with |
| 3503 | /// a result as the expression's type. |
| 3504 | bool IntExprEvaluator::VisitUnaryExprOrTypeTraitExpr( |
| 3505 | const UnaryExprOrTypeTraitExpr *E) { |
| 3506 | switch(E->getKind()) { |
| 3507 | case UETT_AlignOf: { |
Chris Lattner | 24aeeab | 2009-01-24 21:09:06 +0000 | [diff] [blame] | 3508 | if (E->isArgumentType()) |
Ken Dyck | dbc0191 | 2011-03-11 02:13:43 +0000 | [diff] [blame] | 3509 | return Success(GetAlignOfType(E->getArgumentType()), E); |
Chris Lattner | 24aeeab | 2009-01-24 21:09:06 +0000 | [diff] [blame] | 3510 | else |
Ken Dyck | dbc0191 | 2011-03-11 02:13:43 +0000 | [diff] [blame] | 3511 | return Success(GetAlignOfExpr(E->getArgumentExpr()), E); |
Chris Lattner | 24aeeab | 2009-01-24 21:09:06 +0000 | [diff] [blame] | 3512 | } |
Eli Friedman | 6400433 | 2009-03-23 04:38:34 +0000 | [diff] [blame] | 3513 | |
Peter Collingbourne | e190dee | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3514 | case UETT_VecStep: { |
| 3515 | QualType Ty = E->getTypeOfArgument(); |
Sebastian Redl | 6f28289 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 3516 | |
Peter Collingbourne | e190dee | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3517 | if (Ty->isVectorType()) { |
| 3518 | unsigned n = Ty->getAs<VectorType>()->getNumElements(); |
Eli Friedman | 6400433 | 2009-03-23 04:38:34 +0000 | [diff] [blame] | 3519 | |
Peter Collingbourne | e190dee | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3520 | // The vec_step built-in functions that take a 3-component |
| 3521 | // vector return 4. (OpenCL 1.1 spec 6.11.12) |
| 3522 | if (n == 3) |
| 3523 | n = 4; |
Eli Friedman | 2aa38fe | 2009-01-24 22:19:05 +0000 | [diff] [blame] | 3524 | |
Peter Collingbourne | e190dee | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3525 | return Success(n, E); |
| 3526 | } else |
| 3527 | return Success(1, E); |
| 3528 | } |
| 3529 | |
| 3530 | case UETT_SizeOf: { |
| 3531 | QualType SrcTy = E->getTypeOfArgument(); |
| 3532 | // C++ [expr.sizeof]p2: "When applied to a reference or a reference type, |
| 3533 | // the result is the size of the referenced type." |
| 3534 | // C++ [expr.alignof]p3: "When alignof is applied to a reference type, the |
| 3535 | // result shall be the alignment of the referenced type." |
| 3536 | if (const ReferenceType *Ref = SrcTy->getAs<ReferenceType>()) |
| 3537 | SrcTy = Ref->getPointeeType(); |
| 3538 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 3539 | CharUnits Sizeof; |
| 3540 | if (!HandleSizeof(Info, SrcTy, Sizeof)) |
Peter Collingbourne | e190dee | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3541 | return false; |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 3542 | return Success(Sizeof, E); |
Peter Collingbourne | e190dee | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3543 | } |
| 3544 | } |
| 3545 | |
| 3546 | llvm_unreachable("unknown expr/type trait"); |
| 3547 | return false; |
Chris Lattner | f8d7f72 | 2008-07-11 21:24:13 +0000 | [diff] [blame] | 3548 | } |
| 3549 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 3550 | bool IntExprEvaluator::VisitOffsetOfExpr(const OffsetOfExpr *OOE) { |
Douglas Gregor | 882211c | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 3551 | CharUnits Result; |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 3552 | unsigned n = OOE->getNumComponents(); |
Douglas Gregor | 882211c | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 3553 | if (n == 0) |
| 3554 | return false; |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 3555 | QualType CurrentType = OOE->getTypeSourceInfo()->getType(); |
Douglas Gregor | 882211c | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 3556 | for (unsigned i = 0; i != n; ++i) { |
| 3557 | OffsetOfExpr::OffsetOfNode ON = OOE->getComponent(i); |
| 3558 | switch (ON.getKind()) { |
| 3559 | case OffsetOfExpr::OffsetOfNode::Array: { |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 3560 | const Expr *Idx = OOE->getIndexExpr(ON.getArrayExprIndex()); |
Douglas Gregor | 882211c | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 3561 | APSInt IdxResult; |
| 3562 | if (!EvaluateInteger(Idx, IdxResult, Info)) |
| 3563 | return false; |
| 3564 | const ArrayType *AT = Info.Ctx.getAsArrayType(CurrentType); |
| 3565 | if (!AT) |
| 3566 | return false; |
| 3567 | CurrentType = AT->getElementType(); |
| 3568 | CharUnits ElementSize = Info.Ctx.getTypeSizeInChars(CurrentType); |
| 3569 | Result += IdxResult.getSExtValue() * ElementSize; |
| 3570 | break; |
| 3571 | } |
| 3572 | |
| 3573 | case OffsetOfExpr::OffsetOfNode::Field: { |
| 3574 | FieldDecl *MemberDecl = ON.getField(); |
| 3575 | const RecordType *RT = CurrentType->getAs<RecordType>(); |
| 3576 | if (!RT) |
| 3577 | return false; |
| 3578 | RecordDecl *RD = RT->getDecl(); |
| 3579 | const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD); |
John McCall | 4e81961 | 2011-01-20 07:57:12 +0000 | [diff] [blame] | 3580 | unsigned i = MemberDecl->getFieldIndex(); |
Douglas Gregor | d170206 | 2010-04-29 00:18:15 +0000 | [diff] [blame] | 3581 | assert(i < RL.getFieldCount() && "offsetof field in wrong type"); |
Ken Dyck | 86a7fcc | 2011-01-18 01:56:16 +0000 | [diff] [blame] | 3582 | Result += Info.Ctx.toCharUnitsFromBits(RL.getFieldOffset(i)); |
Douglas Gregor | 882211c | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 3583 | CurrentType = MemberDecl->getType().getNonReferenceType(); |
| 3584 | break; |
| 3585 | } |
| 3586 | |
| 3587 | case OffsetOfExpr::OffsetOfNode::Identifier: |
| 3588 | llvm_unreachable("dependent __builtin_offsetof"); |
Douglas Gregor | d170206 | 2010-04-29 00:18:15 +0000 | [diff] [blame] | 3589 | return false; |
| 3590 | |
| 3591 | case OffsetOfExpr::OffsetOfNode::Base: { |
| 3592 | CXXBaseSpecifier *BaseSpec = ON.getBase(); |
| 3593 | if (BaseSpec->isVirtual()) |
| 3594 | return false; |
| 3595 | |
| 3596 | // Find the layout of the class whose base we are looking into. |
| 3597 | const RecordType *RT = CurrentType->getAs<RecordType>(); |
| 3598 | if (!RT) |
| 3599 | return false; |
| 3600 | RecordDecl *RD = RT->getDecl(); |
| 3601 | const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD); |
| 3602 | |
| 3603 | // Find the base class itself. |
| 3604 | CurrentType = BaseSpec->getType(); |
| 3605 | const RecordType *BaseRT = CurrentType->getAs<RecordType>(); |
| 3606 | if (!BaseRT) |
| 3607 | return false; |
| 3608 | |
| 3609 | // Add the offset to the base. |
Ken Dyck | 02155cb | 2011-01-26 02:17:08 +0000 | [diff] [blame] | 3610 | Result += RL.getBaseClassOffset(cast<CXXRecordDecl>(BaseRT->getDecl())); |
Douglas Gregor | d170206 | 2010-04-29 00:18:15 +0000 | [diff] [blame] | 3611 | break; |
| 3612 | } |
Douglas Gregor | 882211c | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 3613 | } |
| 3614 | } |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 3615 | return Success(Result, OOE); |
Douglas Gregor | 882211c | 2010-04-28 22:16:22 +0000 | [diff] [blame] | 3616 | } |
| 3617 | |
Chris Lattner | e13042c | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 3618 | bool IntExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) { |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3619 | if (E->getOpcode() == UO_LNot) { |
Eli Friedman | 5a332ea | 2008-11-13 06:09:17 +0000 | [diff] [blame] | 3620 | // LNot's operand isn't necessarily an integer, so we handle it specially. |
| 3621 | bool bres; |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3622 | if (!EvaluateAsBooleanCondition(E->getSubExpr(), bres, Info)) |
Eli Friedman | 5a332ea | 2008-11-13 06:09:17 +0000 | [diff] [blame] | 3623 | return false; |
Daniel Dunbar | 8aafc89 | 2009-02-19 09:06:44 +0000 | [diff] [blame] | 3624 | return Success(!bres, E); |
Eli Friedman | 5a332ea | 2008-11-13 06:09:17 +0000 | [diff] [blame] | 3625 | } |
| 3626 | |
Daniel Dunbar | 79e042a | 2009-02-21 18:14:20 +0000 | [diff] [blame] | 3627 | // Only handle integral operations... |
Douglas Gregor | b90df60 | 2010-06-16 00:17:44 +0000 | [diff] [blame] | 3628 | if (!E->getSubExpr()->getType()->isIntegralOrEnumerationType()) |
Daniel Dunbar | 79e042a | 2009-02-21 18:14:20 +0000 | [diff] [blame] | 3629 | return false; |
| 3630 | |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3631 | // Get the operand value. |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 3632 | CCValue Val; |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3633 | if (!Evaluate(Val, Info, E->getSubExpr())) |
Chris Lattner | f09ad16 | 2008-07-11 22:15:16 +0000 | [diff] [blame] | 3634 | return false; |
Anders Carlsson | 9c18165 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 3635 | |
Chris Lattner | f09ad16 | 2008-07-11 22:15:16 +0000 | [diff] [blame] | 3636 | switch (E->getOpcode()) { |
Chris Lattner | 7174bf3 | 2008-07-12 00:38:25 +0000 | [diff] [blame] | 3637 | default: |
Chris Lattner | f09ad16 | 2008-07-11 22:15:16 +0000 | [diff] [blame] | 3638 | // Address, indirect, pre/post inc/dec, etc are not valid constant exprs. |
| 3639 | // See C99 6.6p3. |
Anders Carlsson | b33d6c8 | 2008-11-30 18:37:00 +0000 | [diff] [blame] | 3640 | return Error(E->getOperatorLoc(), diag::note_invalid_subexpr_in_ice, E); |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3641 | case UO_Extension: |
Chris Lattner | 7174bf3 | 2008-07-12 00:38:25 +0000 | [diff] [blame] | 3642 | // FIXME: Should extension allow i-c-e extension expressions in its scope? |
| 3643 | // If so, we could clear the diagnostic ID. |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3644 | return Success(Val, E); |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3645 | case UO_Plus: |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3646 | // The result is just the value. |
| 3647 | return Success(Val, E); |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3648 | case UO_Minus: |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3649 | if (!Val.isInt()) return false; |
| 3650 | return Success(-Val.getInt(), E); |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3651 | case UO_Not: |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3652 | if (!Val.isInt()) return false; |
| 3653 | return Success(~Val.getInt(), E); |
Anders Carlsson | 9c18165 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 3654 | } |
Anders Carlsson | 9c18165 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 3655 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3656 | |
Chris Lattner | 477c4be | 2008-07-12 01:15:53 +0000 | [diff] [blame] | 3657 | /// HandleCast - This is used to evaluate implicit or explicit casts where the |
| 3658 | /// result type is integer. |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 3659 | bool IntExprEvaluator::VisitCastExpr(const CastExpr *E) { |
| 3660 | const Expr *SubExpr = E->getSubExpr(); |
Anders Carlsson | 27b8c5c | 2008-11-30 18:14:57 +0000 | [diff] [blame] | 3661 | QualType DestType = E->getType(); |
Daniel Dunbar | cf04aa1 | 2009-02-19 22:16:29 +0000 | [diff] [blame] | 3662 | QualType SrcType = SubExpr->getType(); |
Anders Carlsson | 27b8c5c | 2008-11-30 18:14:57 +0000 | [diff] [blame] | 3663 | |
Eli Friedman | c757de2 | 2011-03-25 00:43:55 +0000 | [diff] [blame] | 3664 | switch (E->getCastKind()) { |
Eli Friedman | c757de2 | 2011-03-25 00:43:55 +0000 | [diff] [blame] | 3665 | case CK_BaseToDerived: |
| 3666 | case CK_DerivedToBase: |
| 3667 | case CK_UncheckedDerivedToBase: |
| 3668 | case CK_Dynamic: |
| 3669 | case CK_ToUnion: |
| 3670 | case CK_ArrayToPointerDecay: |
| 3671 | case CK_FunctionToPointerDecay: |
| 3672 | case CK_NullToPointer: |
| 3673 | case CK_NullToMemberPointer: |
| 3674 | case CK_BaseToDerivedMemberPointer: |
| 3675 | case CK_DerivedToBaseMemberPointer: |
| 3676 | case CK_ConstructorConversion: |
| 3677 | case CK_IntegralToPointer: |
| 3678 | case CK_ToVoid: |
| 3679 | case CK_VectorSplat: |
| 3680 | case CK_IntegralToFloating: |
| 3681 | case CK_FloatingCast: |
John McCall | 9320b87 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 3682 | case CK_CPointerToObjCPointerCast: |
| 3683 | case CK_BlockPointerToObjCPointerCast: |
Eli Friedman | c757de2 | 2011-03-25 00:43:55 +0000 | [diff] [blame] | 3684 | case CK_AnyPointerToBlockPointerCast: |
| 3685 | case CK_ObjCObjectLValueCast: |
| 3686 | case CK_FloatingRealToComplex: |
| 3687 | case CK_FloatingComplexToReal: |
| 3688 | case CK_FloatingComplexCast: |
| 3689 | case CK_FloatingComplexToIntegralComplex: |
| 3690 | case CK_IntegralRealToComplex: |
| 3691 | case CK_IntegralComplexCast: |
| 3692 | case CK_IntegralComplexToFloatingComplex: |
| 3693 | llvm_unreachable("invalid cast kind for integral value"); |
| 3694 | |
Eli Friedman | 9faf2f9 | 2011-03-25 19:07:11 +0000 | [diff] [blame] | 3695 | case CK_BitCast: |
Eli Friedman | c757de2 | 2011-03-25 00:43:55 +0000 | [diff] [blame] | 3696 | case CK_Dependent: |
Eli Friedman | c757de2 | 2011-03-25 00:43:55 +0000 | [diff] [blame] | 3697 | case CK_LValueBitCast: |
| 3698 | case CK_UserDefinedConversion: |
John McCall | 2d637d2 | 2011-09-10 06:18:15 +0000 | [diff] [blame] | 3699 | case CK_ARCProduceObject: |
| 3700 | case CK_ARCConsumeObject: |
| 3701 | case CK_ARCReclaimReturnedObject: |
| 3702 | case CK_ARCExtendBlockObject: |
Eli Friedman | c757de2 | 2011-03-25 00:43:55 +0000 | [diff] [blame] | 3703 | return false; |
| 3704 | |
| 3705 | case CK_LValueToRValue: |
| 3706 | case CK_NoOp: |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3707 | return ExprEvaluatorBaseTy::VisitCastExpr(E); |
Eli Friedman | c757de2 | 2011-03-25 00:43:55 +0000 | [diff] [blame] | 3708 | |
| 3709 | case CK_MemberPointerToBoolean: |
| 3710 | case CK_PointerToBoolean: |
| 3711 | case CK_IntegralToBoolean: |
| 3712 | case CK_FloatingToBoolean: |
| 3713 | case CK_FloatingComplexToBoolean: |
| 3714 | case CK_IntegralComplexToBoolean: { |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 3715 | bool BoolResult; |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3716 | if (!EvaluateAsBooleanCondition(SubExpr, BoolResult, Info)) |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 3717 | return false; |
Daniel Dunbar | 8aafc89 | 2009-02-19 09:06:44 +0000 | [diff] [blame] | 3718 | return Success(BoolResult, E); |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 3719 | } |
| 3720 | |
Eli Friedman | c757de2 | 2011-03-25 00:43:55 +0000 | [diff] [blame] | 3721 | case CK_IntegralCast: { |
Chris Lattner | 477c4be | 2008-07-12 01:15:53 +0000 | [diff] [blame] | 3722 | if (!Visit(SubExpr)) |
Chris Lattner | e13042c | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 3723 | return false; |
Daniel Dunbar | b6f953e | 2009-01-29 06:16:07 +0000 | [diff] [blame] | 3724 | |
Eli Friedman | 742421e | 2009-02-20 01:15:07 +0000 | [diff] [blame] | 3725 | if (!Result.isInt()) { |
| 3726 | // Only allow casts of lvalues if they are lossless. |
| 3727 | return Info.Ctx.getTypeSize(DestType) == Info.Ctx.getTypeSize(SrcType); |
| 3728 | } |
Daniel Dunbar | ca097ad | 2009-02-19 20:17:33 +0000 | [diff] [blame] | 3729 | |
Daniel Dunbar | 1c8560d | 2009-02-19 22:24:01 +0000 | [diff] [blame] | 3730 | return Success(HandleIntToIntCast(DestType, SrcType, |
Daniel Dunbar | ca097ad | 2009-02-19 20:17:33 +0000 | [diff] [blame] | 3731 | Result.getInt(), Info.Ctx), E); |
Chris Lattner | 477c4be | 2008-07-12 01:15:53 +0000 | [diff] [blame] | 3732 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3733 | |
Eli Friedman | c757de2 | 2011-03-25 00:43:55 +0000 | [diff] [blame] | 3734 | case CK_PointerToIntegral: { |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 3735 | LValue LV; |
Chris Lattner | cdf34e7 | 2008-07-11 22:52:41 +0000 | [diff] [blame] | 3736 | if (!EvaluatePointer(SubExpr, LV, Info)) |
Chris Lattner | e13042c | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 3737 | return false; |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 3738 | |
Daniel Dunbar | 1c8560d | 2009-02-19 22:24:01 +0000 | [diff] [blame] | 3739 | if (LV.getLValueBase()) { |
| 3740 | // Only allow based lvalue casts if they are lossless. |
| 3741 | if (Info.Ctx.getTypeSize(DestType) != Info.Ctx.getTypeSize(SrcType)) |
| 3742 | return false; |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 3743 | |
Richard Smith | cf74da7 | 2011-11-16 07:18:12 +0000 | [diff] [blame] | 3744 | LV.Designator.setInvalid(); |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 3745 | LV.moveInto(Result); |
Daniel Dunbar | 1c8560d | 2009-02-19 22:24:01 +0000 | [diff] [blame] | 3746 | return true; |
| 3747 | } |
| 3748 | |
Ken Dyck | 0299083 | 2010-01-15 12:37:54 +0000 | [diff] [blame] | 3749 | APSInt AsInt = Info.Ctx.MakeIntValue(LV.getLValueOffset().getQuantity(), |
| 3750 | SrcType); |
Daniel Dunbar | 1c8560d | 2009-02-19 22:24:01 +0000 | [diff] [blame] | 3751 | return Success(HandleIntToIntCast(DestType, SrcType, AsInt, Info.Ctx), E); |
Anders Carlsson | b5ad021 | 2008-07-08 14:30:00 +0000 | [diff] [blame] | 3752 | } |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 3753 | |
Eli Friedman | c757de2 | 2011-03-25 00:43:55 +0000 | [diff] [blame] | 3754 | case CK_IntegralComplexToReal: { |
John McCall | 93d91dc | 2010-05-07 17:22:02 +0000 | [diff] [blame] | 3755 | ComplexValue C; |
Eli Friedman | d3a5a9d | 2009-04-22 19:23:09 +0000 | [diff] [blame] | 3756 | if (!EvaluateComplex(SubExpr, C, Info)) |
| 3757 | return false; |
Eli Friedman | c757de2 | 2011-03-25 00:43:55 +0000 | [diff] [blame] | 3758 | return Success(C.getComplexIntReal(), E); |
Eli Friedman | d3a5a9d | 2009-04-22 19:23:09 +0000 | [diff] [blame] | 3759 | } |
Eli Friedman | c2b5017 | 2009-02-22 11:46:18 +0000 | [diff] [blame] | 3760 | |
Eli Friedman | c757de2 | 2011-03-25 00:43:55 +0000 | [diff] [blame] | 3761 | case CK_FloatingToIntegral: { |
| 3762 | APFloat F(0.0); |
| 3763 | if (!EvaluateFloat(SubExpr, F, Info)) |
| 3764 | return false; |
Chris Lattner | 477c4be | 2008-07-12 01:15:53 +0000 | [diff] [blame] | 3765 | |
Eli Friedman | c757de2 | 2011-03-25 00:43:55 +0000 | [diff] [blame] | 3766 | return Success(HandleFloatToIntCast(DestType, SrcType, F, Info.Ctx), E); |
| 3767 | } |
| 3768 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3769 | |
Eli Friedman | c757de2 | 2011-03-25 00:43:55 +0000 | [diff] [blame] | 3770 | llvm_unreachable("unknown cast resulting in integral value"); |
| 3771 | return false; |
Anders Carlsson | 9c18165 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 3772 | } |
Anders Carlsson | b5ad021 | 2008-07-08 14:30:00 +0000 | [diff] [blame] | 3773 | |
Eli Friedman | a1c7b6c | 2009-02-28 03:59:05 +0000 | [diff] [blame] | 3774 | bool IntExprEvaluator::VisitUnaryReal(const UnaryOperator *E) { |
| 3775 | if (E->getSubExpr()->getType()->isAnyComplexType()) { |
John McCall | 93d91dc | 2010-05-07 17:22:02 +0000 | [diff] [blame] | 3776 | ComplexValue LV; |
Eli Friedman | a1c7b6c | 2009-02-28 03:59:05 +0000 | [diff] [blame] | 3777 | if (!EvaluateComplex(E->getSubExpr(), LV, Info) || !LV.isComplexInt()) |
| 3778 | return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E); |
| 3779 | return Success(LV.getComplexIntReal(), E); |
| 3780 | } |
| 3781 | |
| 3782 | return Visit(E->getSubExpr()); |
| 3783 | } |
| 3784 | |
Eli Friedman | 4e7a241 | 2009-02-27 04:45:43 +0000 | [diff] [blame] | 3785 | bool IntExprEvaluator::VisitUnaryImag(const UnaryOperator *E) { |
Eli Friedman | a1c7b6c | 2009-02-28 03:59:05 +0000 | [diff] [blame] | 3786 | if (E->getSubExpr()->getType()->isComplexIntegerType()) { |
John McCall | 93d91dc | 2010-05-07 17:22:02 +0000 | [diff] [blame] | 3787 | ComplexValue LV; |
Eli Friedman | a1c7b6c | 2009-02-28 03:59:05 +0000 | [diff] [blame] | 3788 | if (!EvaluateComplex(E->getSubExpr(), LV, Info) || !LV.isComplexInt()) |
| 3789 | return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E); |
| 3790 | return Success(LV.getComplexIntImag(), E); |
| 3791 | } |
| 3792 | |
Richard Smith | 4a67812 | 2011-10-24 18:44:57 +0000 | [diff] [blame] | 3793 | VisitIgnoredValue(E->getSubExpr()); |
Eli Friedman | 4e7a241 | 2009-02-27 04:45:43 +0000 | [diff] [blame] | 3794 | return Success(0, E); |
| 3795 | } |
| 3796 | |
Douglas Gregor | 820ba7b | 2011-01-04 17:33:58 +0000 | [diff] [blame] | 3797 | bool IntExprEvaluator::VisitSizeOfPackExpr(const SizeOfPackExpr *E) { |
| 3798 | return Success(E->getPackLength(), E); |
| 3799 | } |
| 3800 | |
Sebastian Redl | 5f0180d | 2010-09-10 20:55:47 +0000 | [diff] [blame] | 3801 | bool IntExprEvaluator::VisitCXXNoexceptExpr(const CXXNoexceptExpr *E) { |
| 3802 | return Success(E->getValue(), E); |
| 3803 | } |
| 3804 | |
Chris Lattner | 05706e88 | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 3805 | //===----------------------------------------------------------------------===// |
Eli Friedman | 24c0154 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 3806 | // Float Evaluation |
| 3807 | //===----------------------------------------------------------------------===// |
| 3808 | |
| 3809 | namespace { |
Benjamin Kramer | 26222b6 | 2009-11-28 19:03:38 +0000 | [diff] [blame] | 3810 | class FloatExprEvaluator |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 3811 | : public ExprEvaluatorBase<FloatExprEvaluator, bool> { |
Eli Friedman | 24c0154 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 3812 | APFloat &Result; |
| 3813 | public: |
| 3814 | FloatExprEvaluator(EvalInfo &info, APFloat &result) |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 3815 | : ExprEvaluatorBaseTy(info), Result(result) {} |
Eli Friedman | 24c0154 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 3816 | |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 3817 | bool Success(const CCValue &V, const Expr *e) { |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 3818 | Result = V.getFloat(); |
| 3819 | return true; |
| 3820 | } |
| 3821 | bool Error(const Stmt *S) { |
Eli Friedman | 24c0154 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 3822 | return false; |
| 3823 | } |
| 3824 | |
Richard Smith | 4ce706a | 2011-10-11 21:43:33 +0000 | [diff] [blame] | 3825 | bool ValueInitialization(const Expr *E) { |
| 3826 | Result = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(E->getType())); |
| 3827 | return true; |
| 3828 | } |
| 3829 | |
Chris Lattner | 4deaa4e | 2008-10-06 05:28:25 +0000 | [diff] [blame] | 3830 | bool VisitCallExpr(const CallExpr *E); |
Eli Friedman | 24c0154 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 3831 | |
Daniel Dunbar | c3d79cf | 2008-10-16 03:51:50 +0000 | [diff] [blame] | 3832 | bool VisitUnaryOperator(const UnaryOperator *E); |
Eli Friedman | 24c0154 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 3833 | bool VisitBinaryOperator(const BinaryOperator *E); |
| 3834 | bool VisitFloatingLiteral(const FloatingLiteral *E); |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 3835 | bool VisitCastExpr(const CastExpr *E); |
Eli Friedman | c2b5017 | 2009-02-22 11:46:18 +0000 | [diff] [blame] | 3836 | |
John McCall | b1fb0d3 | 2010-05-07 22:08:54 +0000 | [diff] [blame] | 3837 | bool VisitUnaryReal(const UnaryOperator *E); |
| 3838 | bool VisitUnaryImag(const UnaryOperator *E); |
Eli Friedman | 449fe54 | 2009-03-23 04:56:01 +0000 | [diff] [blame] | 3839 | |
John McCall | b1fb0d3 | 2010-05-07 22:08:54 +0000 | [diff] [blame] | 3840 | // FIXME: Missing: array subscript of vector, member of vector, |
| 3841 | // ImplicitValueInitExpr |
Eli Friedman | 24c0154 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 3842 | }; |
| 3843 | } // end anonymous namespace |
| 3844 | |
| 3845 | static bool EvaluateFloat(const Expr* E, APFloat& Result, EvalInfo &Info) { |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 3846 | assert(E->isRValue() && E->getType()->isRealFloatingType()); |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 3847 | return FloatExprEvaluator(Info, Result).Visit(E); |
Eli Friedman | 24c0154 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 3848 | } |
| 3849 | |
Jay Foad | 39c7980 | 2011-01-12 09:06:06 +0000 | [diff] [blame] | 3850 | static bool TryEvaluateBuiltinNaN(const ASTContext &Context, |
John McCall | 1629149 | 2010-02-28 13:00:19 +0000 | [diff] [blame] | 3851 | QualType ResultTy, |
| 3852 | const Expr *Arg, |
| 3853 | bool SNaN, |
| 3854 | llvm::APFloat &Result) { |
| 3855 | const StringLiteral *S = dyn_cast<StringLiteral>(Arg->IgnoreParenCasts()); |
| 3856 | if (!S) return false; |
| 3857 | |
| 3858 | const llvm::fltSemantics &Sem = Context.getFloatTypeSemantics(ResultTy); |
| 3859 | |
| 3860 | llvm::APInt fill; |
| 3861 | |
| 3862 | // Treat empty strings as if they were zero. |
| 3863 | if (S->getString().empty()) |
| 3864 | fill = llvm::APInt(32, 0); |
| 3865 | else if (S->getString().getAsInteger(0, fill)) |
| 3866 | return false; |
| 3867 | |
| 3868 | if (SNaN) |
| 3869 | Result = llvm::APFloat::getSNaN(Sem, false, &fill); |
| 3870 | else |
| 3871 | Result = llvm::APFloat::getQNaN(Sem, false, &fill); |
| 3872 | return true; |
| 3873 | } |
| 3874 | |
Chris Lattner | 4deaa4e | 2008-10-06 05:28:25 +0000 | [diff] [blame] | 3875 | bool FloatExprEvaluator::VisitCallExpr(const CallExpr *E) { |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 3876 | switch (E->isBuiltinCall()) { |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 3877 | default: |
| 3878 | return ExprEvaluatorBaseTy::VisitCallExpr(E); |
| 3879 | |
Chris Lattner | 4deaa4e | 2008-10-06 05:28:25 +0000 | [diff] [blame] | 3880 | case Builtin::BI__builtin_huge_val: |
| 3881 | case Builtin::BI__builtin_huge_valf: |
| 3882 | case Builtin::BI__builtin_huge_vall: |
| 3883 | case Builtin::BI__builtin_inf: |
| 3884 | case Builtin::BI__builtin_inff: |
Daniel Dunbar | 1be9f88 | 2008-10-14 05:41:12 +0000 | [diff] [blame] | 3885 | case Builtin::BI__builtin_infl: { |
| 3886 | const llvm::fltSemantics &Sem = |
| 3887 | Info.Ctx.getFloatTypeSemantics(E->getType()); |
Chris Lattner | 37346e0 | 2008-10-06 05:53:16 +0000 | [diff] [blame] | 3888 | Result = llvm::APFloat::getInf(Sem); |
| 3889 | return true; |
Daniel Dunbar | 1be9f88 | 2008-10-14 05:41:12 +0000 | [diff] [blame] | 3890 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3891 | |
John McCall | 1629149 | 2010-02-28 13:00:19 +0000 | [diff] [blame] | 3892 | case Builtin::BI__builtin_nans: |
| 3893 | case Builtin::BI__builtin_nansf: |
| 3894 | case Builtin::BI__builtin_nansl: |
| 3895 | return TryEvaluateBuiltinNaN(Info.Ctx, E->getType(), E->getArg(0), |
| 3896 | true, Result); |
| 3897 | |
Chris Lattner | 0b7282e | 2008-10-06 06:31:58 +0000 | [diff] [blame] | 3898 | case Builtin::BI__builtin_nan: |
| 3899 | case Builtin::BI__builtin_nanf: |
| 3900 | case Builtin::BI__builtin_nanl: |
Mike Stump | 2346cd2 | 2009-05-30 03:56:50 +0000 | [diff] [blame] | 3901 | // If this is __builtin_nan() turn this into a nan, otherwise we |
Chris Lattner | 0b7282e | 2008-10-06 06:31:58 +0000 | [diff] [blame] | 3902 | // can't constant fold it. |
John McCall | 1629149 | 2010-02-28 13:00:19 +0000 | [diff] [blame] | 3903 | return TryEvaluateBuiltinNaN(Info.Ctx, E->getType(), E->getArg(0), |
| 3904 | false, Result); |
Daniel Dunbar | c3d79cf | 2008-10-16 03:51:50 +0000 | [diff] [blame] | 3905 | |
| 3906 | case Builtin::BI__builtin_fabs: |
| 3907 | case Builtin::BI__builtin_fabsf: |
| 3908 | case Builtin::BI__builtin_fabsl: |
| 3909 | if (!EvaluateFloat(E->getArg(0), Result, Info)) |
| 3910 | return false; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3911 | |
Daniel Dunbar | c3d79cf | 2008-10-16 03:51:50 +0000 | [diff] [blame] | 3912 | if (Result.isNegative()) |
| 3913 | Result.changeSign(); |
| 3914 | return true; |
| 3915 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3916 | case Builtin::BI__builtin_copysign: |
| 3917 | case Builtin::BI__builtin_copysignf: |
Daniel Dunbar | c3d79cf | 2008-10-16 03:51:50 +0000 | [diff] [blame] | 3918 | case Builtin::BI__builtin_copysignl: { |
| 3919 | APFloat RHS(0.); |
| 3920 | if (!EvaluateFloat(E->getArg(0), Result, Info) || |
| 3921 | !EvaluateFloat(E->getArg(1), RHS, Info)) |
| 3922 | return false; |
| 3923 | Result.copySign(RHS); |
| 3924 | return true; |
| 3925 | } |
Chris Lattner | 4deaa4e | 2008-10-06 05:28:25 +0000 | [diff] [blame] | 3926 | } |
| 3927 | } |
| 3928 | |
John McCall | b1fb0d3 | 2010-05-07 22:08:54 +0000 | [diff] [blame] | 3929 | bool FloatExprEvaluator::VisitUnaryReal(const UnaryOperator *E) { |
Eli Friedman | 9571953 | 2010-08-14 20:52:13 +0000 | [diff] [blame] | 3930 | if (E->getSubExpr()->getType()->isAnyComplexType()) { |
| 3931 | ComplexValue CV; |
| 3932 | if (!EvaluateComplex(E->getSubExpr(), CV, Info)) |
| 3933 | return false; |
| 3934 | Result = CV.FloatReal; |
| 3935 | return true; |
| 3936 | } |
| 3937 | |
| 3938 | return Visit(E->getSubExpr()); |
John McCall | b1fb0d3 | 2010-05-07 22:08:54 +0000 | [diff] [blame] | 3939 | } |
| 3940 | |
| 3941 | bool FloatExprEvaluator::VisitUnaryImag(const UnaryOperator *E) { |
Eli Friedman | 9571953 | 2010-08-14 20:52:13 +0000 | [diff] [blame] | 3942 | if (E->getSubExpr()->getType()->isAnyComplexType()) { |
| 3943 | ComplexValue CV; |
| 3944 | if (!EvaluateComplex(E->getSubExpr(), CV, Info)) |
| 3945 | return false; |
| 3946 | Result = CV.FloatImag; |
| 3947 | return true; |
| 3948 | } |
| 3949 | |
Richard Smith | 4a67812 | 2011-10-24 18:44:57 +0000 | [diff] [blame] | 3950 | VisitIgnoredValue(E->getSubExpr()); |
Eli Friedman | 9571953 | 2010-08-14 20:52:13 +0000 | [diff] [blame] | 3951 | const llvm::fltSemantics &Sem = Info.Ctx.getFloatTypeSemantics(E->getType()); |
| 3952 | Result = llvm::APFloat::getZero(Sem); |
John McCall | b1fb0d3 | 2010-05-07 22:08:54 +0000 | [diff] [blame] | 3953 | return true; |
| 3954 | } |
| 3955 | |
Daniel Dunbar | c3d79cf | 2008-10-16 03:51:50 +0000 | [diff] [blame] | 3956 | bool FloatExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) { |
Daniel Dunbar | c3d79cf | 2008-10-16 03:51:50 +0000 | [diff] [blame] | 3957 | switch (E->getOpcode()) { |
| 3958 | default: return false; |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3959 | case UO_Plus: |
Richard Smith | 390cd49 | 2011-10-30 23:17:09 +0000 | [diff] [blame] | 3960 | return EvaluateFloat(E->getSubExpr(), Result, Info); |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3961 | case UO_Minus: |
Richard Smith | 390cd49 | 2011-10-30 23:17:09 +0000 | [diff] [blame] | 3962 | if (!EvaluateFloat(E->getSubExpr(), Result, Info)) |
| 3963 | return false; |
Daniel Dunbar | c3d79cf | 2008-10-16 03:51:50 +0000 | [diff] [blame] | 3964 | Result.changeSign(); |
| 3965 | return true; |
| 3966 | } |
| 3967 | } |
Chris Lattner | 4deaa4e | 2008-10-06 05:28:25 +0000 | [diff] [blame] | 3968 | |
Eli Friedman | 24c0154 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 3969 | bool FloatExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) { |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 3970 | if (E->isPtrMemOp() || E->isAssignmentOp() || E->getOpcode() == BO_Comma) |
| 3971 | return ExprEvaluatorBaseTy::VisitBinaryOperator(E); |
Eli Friedman | 141fbf3 | 2009-11-16 04:25:37 +0000 | [diff] [blame] | 3972 | |
Daniel Dunbar | c3d79cf | 2008-10-16 03:51:50 +0000 | [diff] [blame] | 3973 | APFloat RHS(0.0); |
Eli Friedman | 24c0154 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 3974 | if (!EvaluateFloat(E->getLHS(), Result, Info)) |
| 3975 | return false; |
| 3976 | if (!EvaluateFloat(E->getRHS(), RHS, Info)) |
| 3977 | return false; |
| 3978 | |
| 3979 | switch (E->getOpcode()) { |
| 3980 | default: return false; |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3981 | case BO_Mul: |
Eli Friedman | 24c0154 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 3982 | Result.multiply(RHS, APFloat::rmNearestTiesToEven); |
| 3983 | return true; |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3984 | case BO_Add: |
Eli Friedman | 24c0154 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 3985 | Result.add(RHS, APFloat::rmNearestTiesToEven); |
| 3986 | return true; |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3987 | case BO_Sub: |
Eli Friedman | 24c0154 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 3988 | Result.subtract(RHS, APFloat::rmNearestTiesToEven); |
| 3989 | return true; |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3990 | case BO_Div: |
Eli Friedman | 24c0154 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 3991 | Result.divide(RHS, APFloat::rmNearestTiesToEven); |
| 3992 | return true; |
Eli Friedman | 24c0154 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 3993 | } |
| 3994 | } |
| 3995 | |
| 3996 | bool FloatExprEvaluator::VisitFloatingLiteral(const FloatingLiteral *E) { |
| 3997 | Result = E->getValue(); |
| 3998 | return true; |
| 3999 | } |
| 4000 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 4001 | bool FloatExprEvaluator::VisitCastExpr(const CastExpr *E) { |
| 4002 | const Expr* SubExpr = E->getSubExpr(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4003 | |
Eli Friedman | 8bfbe3a | 2011-03-25 00:54:52 +0000 | [diff] [blame] | 4004 | switch (E->getCastKind()) { |
| 4005 | default: |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 4006 | return ExprEvaluatorBaseTy::VisitCastExpr(E); |
Eli Friedman | 8bfbe3a | 2011-03-25 00:54:52 +0000 | [diff] [blame] | 4007 | |
| 4008 | case CK_IntegralToFloating: { |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 4009 | APSInt IntResult; |
Daniel Dunbar | e3c92bc | 2009-02-19 18:37:50 +0000 | [diff] [blame] | 4010 | if (!EvaluateInteger(SubExpr, IntResult, Info)) |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 4011 | return false; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4012 | Result = HandleIntToFloatCast(E->getType(), SubExpr->getType(), |
Daniel Dunbar | b6f953e | 2009-01-29 06:16:07 +0000 | [diff] [blame] | 4013 | IntResult, Info.Ctx); |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 4014 | return true; |
| 4015 | } |
Eli Friedman | 8bfbe3a | 2011-03-25 00:54:52 +0000 | [diff] [blame] | 4016 | |
| 4017 | case CK_FloatingCast: { |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 4018 | if (!Visit(SubExpr)) |
| 4019 | return false; |
Daniel Dunbar | b6f953e | 2009-01-29 06:16:07 +0000 | [diff] [blame] | 4020 | Result = HandleFloatToFloatCast(E->getType(), SubExpr->getType(), |
| 4021 | Result, Info.Ctx); |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 4022 | return true; |
| 4023 | } |
John McCall | d764625 | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4024 | |
Eli Friedman | 8bfbe3a | 2011-03-25 00:54:52 +0000 | [diff] [blame] | 4025 | case CK_FloatingComplexToReal: { |
John McCall | d764625 | 2010-11-14 08:17:51 +0000 | [diff] [blame] | 4026 | ComplexValue V; |
| 4027 | if (!EvaluateComplex(SubExpr, V, Info)) |
| 4028 | return false; |
| 4029 | Result = V.getComplexFloatReal(); |
| 4030 | return true; |
| 4031 | } |
Eli Friedman | 8bfbe3a | 2011-03-25 00:54:52 +0000 | [diff] [blame] | 4032 | } |
Eli Friedman | 9a156e5 | 2008-11-12 09:44:48 +0000 | [diff] [blame] | 4033 | |
| 4034 | return false; |
| 4035 | } |
| 4036 | |
Eli Friedman | 24c0154 | 2008-08-22 00:06:13 +0000 | [diff] [blame] | 4037 | //===----------------------------------------------------------------------===// |
Daniel Dunbar | f50e60b | 2009-01-28 22:24:07 +0000 | [diff] [blame] | 4038 | // Complex Evaluation (for float and integer) |
Anders Carlsson | 537969c | 2008-11-16 20:27:53 +0000 | [diff] [blame] | 4039 | //===----------------------------------------------------------------------===// |
| 4040 | |
| 4041 | namespace { |
Benjamin Kramer | 26222b6 | 2009-11-28 19:03:38 +0000 | [diff] [blame] | 4042 | class ComplexExprEvaluator |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 4043 | : public ExprEvaluatorBase<ComplexExprEvaluator, bool> { |
John McCall | 93d91dc | 2010-05-07 17:22:02 +0000 | [diff] [blame] | 4044 | ComplexValue &Result; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4045 | |
Anders Carlsson | 537969c | 2008-11-16 20:27:53 +0000 | [diff] [blame] | 4046 | public: |
John McCall | 93d91dc | 2010-05-07 17:22:02 +0000 | [diff] [blame] | 4047 | ComplexExprEvaluator(EvalInfo &info, ComplexValue &Result) |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 4048 | : ExprEvaluatorBaseTy(info), Result(Result) {} |
| 4049 | |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 4050 | bool Success(const CCValue &V, const Expr *e) { |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 4051 | Result.setFrom(V); |
| 4052 | return true; |
| 4053 | } |
| 4054 | bool Error(const Expr *E) { |
| 4055 | return false; |
| 4056 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4057 | |
Anders Carlsson | 537969c | 2008-11-16 20:27:53 +0000 | [diff] [blame] | 4058 | //===--------------------------------------------------------------------===// |
| 4059 | // Visitor Methods |
| 4060 | //===--------------------------------------------------------------------===// |
| 4061 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 4062 | bool VisitImaginaryLiteral(const ImaginaryLiteral *E); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4063 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 4064 | bool VisitCastExpr(const CastExpr *E); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4065 | |
John McCall | 93d91dc | 2010-05-07 17:22:02 +0000 | [diff] [blame] | 4066 | bool VisitBinaryOperator(const BinaryOperator *E); |
Abramo Bagnara | 9e0e709 | 2010-12-11 16:05:48 +0000 | [diff] [blame] | 4067 | bool VisitUnaryOperator(const UnaryOperator *E); |
Sebastian Redl | 12757ab | 2011-09-24 17:48:14 +0000 | [diff] [blame] | 4068 | // FIXME Missing: ImplicitValueInitExpr, InitListExpr |
Anders Carlsson | 537969c | 2008-11-16 20:27:53 +0000 | [diff] [blame] | 4069 | }; |
| 4070 | } // end anonymous namespace |
| 4071 | |
John McCall | 93d91dc | 2010-05-07 17:22:02 +0000 | [diff] [blame] | 4072 | static bool EvaluateComplex(const Expr *E, ComplexValue &Result, |
| 4073 | EvalInfo &Info) { |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 4074 | assert(E->isRValue() && E->getType()->isAnyComplexType()); |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 4075 | return ComplexExprEvaluator(Info, Result).Visit(E); |
Anders Carlsson | 537969c | 2008-11-16 20:27:53 +0000 | [diff] [blame] | 4076 | } |
| 4077 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 4078 | bool ComplexExprEvaluator::VisitImaginaryLiteral(const ImaginaryLiteral *E) { |
| 4079 | const Expr* SubExpr = E->getSubExpr(); |
Eli Friedman | c3e9df3 | 2010-08-16 23:27:44 +0000 | [diff] [blame] | 4080 | |
| 4081 | if (SubExpr->getType()->isRealFloatingType()) { |
| 4082 | Result.makeComplexFloat(); |
| 4083 | APFloat &Imag = Result.FloatImag; |
| 4084 | if (!EvaluateFloat(SubExpr, Imag, Info)) |
| 4085 | return false; |
| 4086 | |
| 4087 | Result.FloatReal = APFloat(Imag.getSemantics()); |
| 4088 | return true; |
| 4089 | } else { |
| 4090 | assert(SubExpr->getType()->isIntegerType() && |
| 4091 | "Unexpected imaginary literal."); |
| 4092 | |
| 4093 | Result.makeComplexInt(); |
| 4094 | APSInt &Imag = Result.IntImag; |
| 4095 | if (!EvaluateInteger(SubExpr, Imag, Info)) |
| 4096 | return false; |
| 4097 | |
| 4098 | Result.IntReal = APSInt(Imag.getBitWidth(), !Imag.isSigned()); |
| 4099 | return true; |
| 4100 | } |
| 4101 | } |
| 4102 | |
Peter Collingbourne | e920068 | 2011-05-13 03:29:01 +0000 | [diff] [blame] | 4103 | bool ComplexExprEvaluator::VisitCastExpr(const CastExpr *E) { |
Eli Friedman | c3e9df3 | 2010-08-16 23:27:44 +0000 | [diff] [blame] | 4104 | |
John McCall | fcef3cf | 2010-12-14 17:51:41 +0000 | [diff] [blame] | 4105 | switch (E->getCastKind()) { |
| 4106 | case CK_BitCast: |
John McCall | fcef3cf | 2010-12-14 17:51:41 +0000 | [diff] [blame] | 4107 | case CK_BaseToDerived: |
| 4108 | case CK_DerivedToBase: |
| 4109 | case CK_UncheckedDerivedToBase: |
| 4110 | case CK_Dynamic: |
| 4111 | case CK_ToUnion: |
| 4112 | case CK_ArrayToPointerDecay: |
| 4113 | case CK_FunctionToPointerDecay: |
| 4114 | case CK_NullToPointer: |
| 4115 | case CK_NullToMemberPointer: |
| 4116 | case CK_BaseToDerivedMemberPointer: |
| 4117 | case CK_DerivedToBaseMemberPointer: |
| 4118 | case CK_MemberPointerToBoolean: |
| 4119 | case CK_ConstructorConversion: |
| 4120 | case CK_IntegralToPointer: |
| 4121 | case CK_PointerToIntegral: |
| 4122 | case CK_PointerToBoolean: |
| 4123 | case CK_ToVoid: |
| 4124 | case CK_VectorSplat: |
| 4125 | case CK_IntegralCast: |
| 4126 | case CK_IntegralToBoolean: |
| 4127 | case CK_IntegralToFloating: |
| 4128 | case CK_FloatingToIntegral: |
| 4129 | case CK_FloatingToBoolean: |
| 4130 | case CK_FloatingCast: |
John McCall | 9320b87 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 4131 | case CK_CPointerToObjCPointerCast: |
| 4132 | case CK_BlockPointerToObjCPointerCast: |
John McCall | fcef3cf | 2010-12-14 17:51:41 +0000 | [diff] [blame] | 4133 | case CK_AnyPointerToBlockPointerCast: |
| 4134 | case CK_ObjCObjectLValueCast: |
| 4135 | case CK_FloatingComplexToReal: |
| 4136 | case CK_FloatingComplexToBoolean: |
| 4137 | case CK_IntegralComplexToReal: |
| 4138 | case CK_IntegralComplexToBoolean: |
John McCall | 2d637d2 | 2011-09-10 06:18:15 +0000 | [diff] [blame] | 4139 | case CK_ARCProduceObject: |
| 4140 | case CK_ARCConsumeObject: |
| 4141 | case CK_ARCReclaimReturnedObject: |
| 4142 | case CK_ARCExtendBlockObject: |
John McCall | fcef3cf | 2010-12-14 17:51:41 +0000 | [diff] [blame] | 4143 | llvm_unreachable("invalid cast kind for complex value"); |
John McCall | c5e62b4 | 2010-11-13 09:02:35 +0000 | [diff] [blame] | 4144 | |
John McCall | fcef3cf | 2010-12-14 17:51:41 +0000 | [diff] [blame] | 4145 | case CK_LValueToRValue: |
| 4146 | case CK_NoOp: |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 4147 | return ExprEvaluatorBaseTy::VisitCastExpr(E); |
John McCall | fcef3cf | 2010-12-14 17:51:41 +0000 | [diff] [blame] | 4148 | |
| 4149 | case CK_Dependent: |
Eli Friedman | c757de2 | 2011-03-25 00:43:55 +0000 | [diff] [blame] | 4150 | case CK_LValueBitCast: |
John McCall | fcef3cf | 2010-12-14 17:51:41 +0000 | [diff] [blame] | 4151 | case CK_UserDefinedConversion: |
| 4152 | return false; |
| 4153 | |
| 4154 | case CK_FloatingRealToComplex: { |
Eli Friedman | c3e9df3 | 2010-08-16 23:27:44 +0000 | [diff] [blame] | 4155 | APFloat &Real = Result.FloatReal; |
John McCall | fcef3cf | 2010-12-14 17:51:41 +0000 | [diff] [blame] | 4156 | if (!EvaluateFloat(E->getSubExpr(), Real, Info)) |
Eli Friedman | c3e9df3 | 2010-08-16 23:27:44 +0000 | [diff] [blame] | 4157 | return false; |
| 4158 | |
John McCall | fcef3cf | 2010-12-14 17:51:41 +0000 | [diff] [blame] | 4159 | Result.makeComplexFloat(); |
| 4160 | Result.FloatImag = APFloat(Real.getSemantics()); |
| 4161 | return true; |
Eli Friedman | c3e9df3 | 2010-08-16 23:27:44 +0000 | [diff] [blame] | 4162 | } |
| 4163 | |
John McCall | fcef3cf | 2010-12-14 17:51:41 +0000 | [diff] [blame] | 4164 | case CK_FloatingComplexCast: { |
| 4165 | if (!Visit(E->getSubExpr())) |
| 4166 | return false; |
| 4167 | |
| 4168 | QualType To = E->getType()->getAs<ComplexType>()->getElementType(); |
| 4169 | QualType From |
| 4170 | = E->getSubExpr()->getType()->getAs<ComplexType>()->getElementType(); |
| 4171 | |
| 4172 | Result.FloatReal |
| 4173 | = HandleFloatToFloatCast(To, From, Result.FloatReal, Info.Ctx); |
| 4174 | Result.FloatImag |
| 4175 | = HandleFloatToFloatCast(To, From, Result.FloatImag, Info.Ctx); |
| 4176 | return true; |
| 4177 | } |
| 4178 | |
| 4179 | case CK_FloatingComplexToIntegralComplex: { |
| 4180 | if (!Visit(E->getSubExpr())) |
| 4181 | return false; |
| 4182 | |
| 4183 | QualType To = E->getType()->getAs<ComplexType>()->getElementType(); |
| 4184 | QualType From |
| 4185 | = E->getSubExpr()->getType()->getAs<ComplexType>()->getElementType(); |
| 4186 | Result.makeComplexInt(); |
| 4187 | Result.IntReal = HandleFloatToIntCast(To, From, Result.FloatReal, Info.Ctx); |
| 4188 | Result.IntImag = HandleFloatToIntCast(To, From, Result.FloatImag, Info.Ctx); |
| 4189 | return true; |
| 4190 | } |
| 4191 | |
| 4192 | case CK_IntegralRealToComplex: { |
| 4193 | APSInt &Real = Result.IntReal; |
| 4194 | if (!EvaluateInteger(E->getSubExpr(), Real, Info)) |
| 4195 | return false; |
| 4196 | |
| 4197 | Result.makeComplexInt(); |
| 4198 | Result.IntImag = APSInt(Real.getBitWidth(), !Real.isSigned()); |
| 4199 | return true; |
| 4200 | } |
| 4201 | |
| 4202 | case CK_IntegralComplexCast: { |
| 4203 | if (!Visit(E->getSubExpr())) |
| 4204 | return false; |
| 4205 | |
| 4206 | QualType To = E->getType()->getAs<ComplexType>()->getElementType(); |
| 4207 | QualType From |
| 4208 | = E->getSubExpr()->getType()->getAs<ComplexType>()->getElementType(); |
| 4209 | |
| 4210 | Result.IntReal = HandleIntToIntCast(To, From, Result.IntReal, Info.Ctx); |
| 4211 | Result.IntImag = HandleIntToIntCast(To, From, Result.IntImag, Info.Ctx); |
| 4212 | return true; |
| 4213 | } |
| 4214 | |
| 4215 | case CK_IntegralComplexToFloatingComplex: { |
| 4216 | if (!Visit(E->getSubExpr())) |
| 4217 | return false; |
| 4218 | |
| 4219 | QualType To = E->getType()->getAs<ComplexType>()->getElementType(); |
| 4220 | QualType From |
| 4221 | = E->getSubExpr()->getType()->getAs<ComplexType>()->getElementType(); |
| 4222 | Result.makeComplexFloat(); |
| 4223 | Result.FloatReal = HandleIntToFloatCast(To, From, Result.IntReal, Info.Ctx); |
| 4224 | Result.FloatImag = HandleIntToFloatCast(To, From, Result.IntImag, Info.Ctx); |
| 4225 | return true; |
| 4226 | } |
| 4227 | } |
| 4228 | |
| 4229 | llvm_unreachable("unknown cast resulting in complex value"); |
Eli Friedman | c3e9df3 | 2010-08-16 23:27:44 +0000 | [diff] [blame] | 4230 | return false; |
| 4231 | } |
| 4232 | |
John McCall | 93d91dc | 2010-05-07 17:22:02 +0000 | [diff] [blame] | 4233 | bool ComplexExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) { |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 4234 | if (E->isPtrMemOp() || E->isAssignmentOp() || E->getOpcode() == BO_Comma) |
Richard Smith | 10f4d06 | 2011-11-16 17:22:48 +0000 | [diff] [blame] | 4235 | return ExprEvaluatorBaseTy::VisitBinaryOperator(E); |
| 4236 | |
John McCall | 93d91dc | 2010-05-07 17:22:02 +0000 | [diff] [blame] | 4237 | if (!Visit(E->getLHS())) |
| 4238 | return false; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4239 | |
John McCall | 93d91dc | 2010-05-07 17:22:02 +0000 | [diff] [blame] | 4240 | ComplexValue RHS; |
Daniel Dunbar | f50e60b | 2009-01-28 22:24:07 +0000 | [diff] [blame] | 4241 | if (!EvaluateComplex(E->getRHS(), RHS, Info)) |
John McCall | 93d91dc | 2010-05-07 17:22:02 +0000 | [diff] [blame] | 4242 | return false; |
Daniel Dunbar | f50e60b | 2009-01-28 22:24:07 +0000 | [diff] [blame] | 4243 | |
Daniel Dunbar | 0aa2606 | 2009-01-29 01:32:56 +0000 | [diff] [blame] | 4244 | assert(Result.isComplexFloat() == RHS.isComplexFloat() && |
| 4245 | "Invalid operands to binary operator."); |
Anders Carlsson | 9ddf7be | 2008-11-16 21:51:21 +0000 | [diff] [blame] | 4246 | switch (E->getOpcode()) { |
John McCall | 93d91dc | 2010-05-07 17:22:02 +0000 | [diff] [blame] | 4247 | default: return false; |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4248 | case BO_Add: |
Daniel Dunbar | f50e60b | 2009-01-28 22:24:07 +0000 | [diff] [blame] | 4249 | if (Result.isComplexFloat()) { |
| 4250 | Result.getComplexFloatReal().add(RHS.getComplexFloatReal(), |
| 4251 | APFloat::rmNearestTiesToEven); |
| 4252 | Result.getComplexFloatImag().add(RHS.getComplexFloatImag(), |
| 4253 | APFloat::rmNearestTiesToEven); |
| 4254 | } else { |
| 4255 | Result.getComplexIntReal() += RHS.getComplexIntReal(); |
| 4256 | Result.getComplexIntImag() += RHS.getComplexIntImag(); |
| 4257 | } |
Daniel Dunbar | 0aa2606 | 2009-01-29 01:32:56 +0000 | [diff] [blame] | 4258 | break; |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4259 | case BO_Sub: |
Daniel Dunbar | f50e60b | 2009-01-28 22:24:07 +0000 | [diff] [blame] | 4260 | if (Result.isComplexFloat()) { |
| 4261 | Result.getComplexFloatReal().subtract(RHS.getComplexFloatReal(), |
| 4262 | APFloat::rmNearestTiesToEven); |
| 4263 | Result.getComplexFloatImag().subtract(RHS.getComplexFloatImag(), |
| 4264 | APFloat::rmNearestTiesToEven); |
| 4265 | } else { |
| 4266 | Result.getComplexIntReal() -= RHS.getComplexIntReal(); |
| 4267 | Result.getComplexIntImag() -= RHS.getComplexIntImag(); |
| 4268 | } |
Daniel Dunbar | 0aa2606 | 2009-01-29 01:32:56 +0000 | [diff] [blame] | 4269 | break; |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4270 | case BO_Mul: |
Daniel Dunbar | 0aa2606 | 2009-01-29 01:32:56 +0000 | [diff] [blame] | 4271 | if (Result.isComplexFloat()) { |
John McCall | 93d91dc | 2010-05-07 17:22:02 +0000 | [diff] [blame] | 4272 | ComplexValue LHS = Result; |
Daniel Dunbar | 0aa2606 | 2009-01-29 01:32:56 +0000 | [diff] [blame] | 4273 | APFloat &LHS_r = LHS.getComplexFloatReal(); |
| 4274 | APFloat &LHS_i = LHS.getComplexFloatImag(); |
| 4275 | APFloat &RHS_r = RHS.getComplexFloatReal(); |
| 4276 | APFloat &RHS_i = RHS.getComplexFloatImag(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4277 | |
Daniel Dunbar | 0aa2606 | 2009-01-29 01:32:56 +0000 | [diff] [blame] | 4278 | APFloat Tmp = LHS_r; |
| 4279 | Tmp.multiply(RHS_r, APFloat::rmNearestTiesToEven); |
| 4280 | Result.getComplexFloatReal() = Tmp; |
| 4281 | Tmp = LHS_i; |
| 4282 | Tmp.multiply(RHS_i, APFloat::rmNearestTiesToEven); |
| 4283 | Result.getComplexFloatReal().subtract(Tmp, APFloat::rmNearestTiesToEven); |
| 4284 | |
| 4285 | Tmp = LHS_r; |
| 4286 | Tmp.multiply(RHS_i, APFloat::rmNearestTiesToEven); |
| 4287 | Result.getComplexFloatImag() = Tmp; |
| 4288 | Tmp = LHS_i; |
| 4289 | Tmp.multiply(RHS_r, APFloat::rmNearestTiesToEven); |
| 4290 | Result.getComplexFloatImag().add(Tmp, APFloat::rmNearestTiesToEven); |
| 4291 | } else { |
John McCall | 93d91dc | 2010-05-07 17:22:02 +0000 | [diff] [blame] | 4292 | ComplexValue LHS = Result; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4293 | Result.getComplexIntReal() = |
Daniel Dunbar | 0aa2606 | 2009-01-29 01:32:56 +0000 | [diff] [blame] | 4294 | (LHS.getComplexIntReal() * RHS.getComplexIntReal() - |
| 4295 | LHS.getComplexIntImag() * RHS.getComplexIntImag()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4296 | Result.getComplexIntImag() = |
Daniel Dunbar | 0aa2606 | 2009-01-29 01:32:56 +0000 | [diff] [blame] | 4297 | (LHS.getComplexIntReal() * RHS.getComplexIntImag() + |
| 4298 | LHS.getComplexIntImag() * RHS.getComplexIntReal()); |
| 4299 | } |
| 4300 | break; |
Abramo Bagnara | 9e0e709 | 2010-12-11 16:05:48 +0000 | [diff] [blame] | 4301 | case BO_Div: |
| 4302 | if (Result.isComplexFloat()) { |
| 4303 | ComplexValue LHS = Result; |
| 4304 | APFloat &LHS_r = LHS.getComplexFloatReal(); |
| 4305 | APFloat &LHS_i = LHS.getComplexFloatImag(); |
| 4306 | APFloat &RHS_r = RHS.getComplexFloatReal(); |
| 4307 | APFloat &RHS_i = RHS.getComplexFloatImag(); |
| 4308 | APFloat &Res_r = Result.getComplexFloatReal(); |
| 4309 | APFloat &Res_i = Result.getComplexFloatImag(); |
| 4310 | |
| 4311 | APFloat Den = RHS_r; |
| 4312 | Den.multiply(RHS_r, APFloat::rmNearestTiesToEven); |
| 4313 | APFloat Tmp = RHS_i; |
| 4314 | Tmp.multiply(RHS_i, APFloat::rmNearestTiesToEven); |
| 4315 | Den.add(Tmp, APFloat::rmNearestTiesToEven); |
| 4316 | |
| 4317 | Res_r = LHS_r; |
| 4318 | Res_r.multiply(RHS_r, APFloat::rmNearestTiesToEven); |
| 4319 | Tmp = LHS_i; |
| 4320 | Tmp.multiply(RHS_i, APFloat::rmNearestTiesToEven); |
| 4321 | Res_r.add(Tmp, APFloat::rmNearestTiesToEven); |
| 4322 | Res_r.divide(Den, APFloat::rmNearestTiesToEven); |
| 4323 | |
| 4324 | Res_i = LHS_i; |
| 4325 | Res_i.multiply(RHS_r, APFloat::rmNearestTiesToEven); |
| 4326 | Tmp = LHS_r; |
| 4327 | Tmp.multiply(RHS_i, APFloat::rmNearestTiesToEven); |
| 4328 | Res_i.subtract(Tmp, APFloat::rmNearestTiesToEven); |
| 4329 | Res_i.divide(Den, APFloat::rmNearestTiesToEven); |
| 4330 | } else { |
| 4331 | if (RHS.getComplexIntReal() == 0 && RHS.getComplexIntImag() == 0) { |
| 4332 | // FIXME: what about diagnostics? |
| 4333 | return false; |
| 4334 | } |
| 4335 | ComplexValue LHS = Result; |
| 4336 | APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() + |
| 4337 | RHS.getComplexIntImag() * RHS.getComplexIntImag(); |
| 4338 | Result.getComplexIntReal() = |
| 4339 | (LHS.getComplexIntReal() * RHS.getComplexIntReal() + |
| 4340 | LHS.getComplexIntImag() * RHS.getComplexIntImag()) / Den; |
| 4341 | Result.getComplexIntImag() = |
| 4342 | (LHS.getComplexIntImag() * RHS.getComplexIntReal() - |
| 4343 | LHS.getComplexIntReal() * RHS.getComplexIntImag()) / Den; |
| 4344 | } |
| 4345 | break; |
Anders Carlsson | 9ddf7be | 2008-11-16 21:51:21 +0000 | [diff] [blame] | 4346 | } |
| 4347 | |
John McCall | 93d91dc | 2010-05-07 17:22:02 +0000 | [diff] [blame] | 4348 | return true; |
Anders Carlsson | 9ddf7be | 2008-11-16 21:51:21 +0000 | [diff] [blame] | 4349 | } |
| 4350 | |
Abramo Bagnara | 9e0e709 | 2010-12-11 16:05:48 +0000 | [diff] [blame] | 4351 | bool ComplexExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) { |
| 4352 | // Get the operand value into 'Result'. |
| 4353 | if (!Visit(E->getSubExpr())) |
| 4354 | return false; |
| 4355 | |
| 4356 | switch (E->getOpcode()) { |
| 4357 | default: |
| 4358 | // FIXME: what about diagnostics? |
| 4359 | return false; |
| 4360 | case UO_Extension: |
| 4361 | return true; |
| 4362 | case UO_Plus: |
| 4363 | // The result is always just the subexpr. |
| 4364 | return true; |
| 4365 | case UO_Minus: |
| 4366 | if (Result.isComplexFloat()) { |
| 4367 | Result.getComplexFloatReal().changeSign(); |
| 4368 | Result.getComplexFloatImag().changeSign(); |
| 4369 | } |
| 4370 | else { |
| 4371 | Result.getComplexIntReal() = -Result.getComplexIntReal(); |
| 4372 | Result.getComplexIntImag() = -Result.getComplexIntImag(); |
| 4373 | } |
| 4374 | return true; |
| 4375 | case UO_Not: |
| 4376 | if (Result.isComplexFloat()) |
| 4377 | Result.getComplexFloatImag().changeSign(); |
| 4378 | else |
| 4379 | Result.getComplexIntImag() = -Result.getComplexIntImag(); |
| 4380 | return true; |
| 4381 | } |
| 4382 | } |
| 4383 | |
Anders Carlsson | 537969c | 2008-11-16 20:27:53 +0000 | [diff] [blame] | 4384 | //===----------------------------------------------------------------------===// |
Richard Smith | 42d3af9 | 2011-12-07 00:43:50 +0000 | [diff] [blame] | 4385 | // Void expression evaluation, primarily for a cast to void on the LHS of a |
| 4386 | // comma operator |
| 4387 | //===----------------------------------------------------------------------===// |
| 4388 | |
| 4389 | namespace { |
| 4390 | class VoidExprEvaluator |
| 4391 | : public ExprEvaluatorBase<VoidExprEvaluator, bool> { |
| 4392 | public: |
| 4393 | VoidExprEvaluator(EvalInfo &Info) : ExprEvaluatorBaseTy(Info) {} |
| 4394 | |
| 4395 | bool Success(const CCValue &V, const Expr *e) { return true; } |
| 4396 | bool Error(const Expr *E) { return false; } |
| 4397 | |
| 4398 | bool VisitCastExpr(const CastExpr *E) { |
| 4399 | switch (E->getCastKind()) { |
| 4400 | default: |
| 4401 | return ExprEvaluatorBaseTy::VisitCastExpr(E); |
| 4402 | case CK_ToVoid: |
| 4403 | VisitIgnoredValue(E->getSubExpr()); |
| 4404 | return true; |
| 4405 | } |
| 4406 | } |
| 4407 | }; |
| 4408 | } // end anonymous namespace |
| 4409 | |
| 4410 | static bool EvaluateVoid(const Expr *E, EvalInfo &Info) { |
| 4411 | assert(E->isRValue() && E->getType()->isVoidType()); |
| 4412 | return VoidExprEvaluator(Info).Visit(E); |
| 4413 | } |
| 4414 | |
| 4415 | //===----------------------------------------------------------------------===// |
Richard Smith | 7b553f1 | 2011-10-29 00:50:52 +0000 | [diff] [blame] | 4416 | // Top level Expr::EvaluateAsRValue method. |
Chris Lattner | 05706e88 | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 4417 | //===----------------------------------------------------------------------===// |
| 4418 | |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 4419 | static bool Evaluate(CCValue &Result, EvalInfo &Info, const Expr *E) { |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 4420 | // In C, function designators are not lvalues, but we evaluate them as if they |
| 4421 | // are. |
| 4422 | if (E->isGLValue() || E->getType()->isFunctionType()) { |
| 4423 | LValue LV; |
| 4424 | if (!EvaluateLValue(E, LV, Info)) |
| 4425 | return false; |
| 4426 | LV.moveInto(Result); |
| 4427 | } else if (E->getType()->isVectorType()) { |
Richard Smith | 725810a | 2011-10-16 21:26:27 +0000 | [diff] [blame] | 4428 | if (!EvaluateVector(E, Result, Info)) |
Nate Begeman | 2f2bdeb | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 4429 | return false; |
Douglas Gregor | 6ab2fa8 | 2011-05-20 16:38:50 +0000 | [diff] [blame] | 4430 | } else if (E->getType()->isIntegralOrEnumerationType()) { |
Richard Smith | 725810a | 2011-10-16 21:26:27 +0000 | [diff] [blame] | 4431 | if (!IntExprEvaluator(Info, Result).Visit(E)) |
Anders Carlsson | 475f4bc | 2008-11-22 21:50:49 +0000 | [diff] [blame] | 4432 | return false; |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 4433 | } else if (E->getType()->hasPointerRepresentation()) { |
| 4434 | LValue LV; |
| 4435 | if (!EvaluatePointer(E, LV, Info)) |
Anders Carlsson | 475f4bc | 2008-11-22 21:50:49 +0000 | [diff] [blame] | 4436 | return false; |
Richard Smith | 725810a | 2011-10-16 21:26:27 +0000 | [diff] [blame] | 4437 | LV.moveInto(Result); |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 4438 | } else if (E->getType()->isRealFloatingType()) { |
| 4439 | llvm::APFloat F(0.0); |
| 4440 | if (!EvaluateFloat(E, F, Info)) |
Anders Carlsson | 475f4bc | 2008-11-22 21:50:49 +0000 | [diff] [blame] | 4441 | return false; |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 4442 | Result = CCValue(F); |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 4443 | } else if (E->getType()->isAnyComplexType()) { |
| 4444 | ComplexValue C; |
| 4445 | if (!EvaluateComplex(E, C, Info)) |
Anders Carlsson | 475f4bc | 2008-11-22 21:50:49 +0000 | [diff] [blame] | 4446 | return false; |
Richard Smith | 725810a | 2011-10-16 21:26:27 +0000 | [diff] [blame] | 4447 | C.moveInto(Result); |
Richard Smith | ed5165f | 2011-11-04 05:33:44 +0000 | [diff] [blame] | 4448 | } else if (E->getType()->isMemberPointerType()) { |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 4449 | MemberPtr P; |
| 4450 | if (!EvaluateMemberPointer(E, P, Info)) |
| 4451 | return false; |
| 4452 | P.moveInto(Result); |
| 4453 | return true; |
Richard Smith | ed5165f | 2011-11-04 05:33:44 +0000 | [diff] [blame] | 4454 | } else if (E->getType()->isArrayType() && E->getType()->isLiteralType()) { |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 4455 | LValue LV; |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 4456 | LV.set(E, Info.CurrentCall); |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 4457 | if (!EvaluateArray(E, LV, Info.CurrentCall->Temporaries[E], Info)) |
Richard Smith | f3e9e43 | 2011-11-07 09:22:26 +0000 | [diff] [blame] | 4458 | return false; |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 4459 | Result = Info.CurrentCall->Temporaries[E]; |
Richard Smith | ed5165f | 2011-11-04 05:33:44 +0000 | [diff] [blame] | 4460 | } else if (E->getType()->isRecordType() && E->getType()->isLiteralType()) { |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 4461 | LValue LV; |
Richard Smith | ce40ad6 | 2011-11-12 22:28:03 +0000 | [diff] [blame] | 4462 | LV.set(E, Info.CurrentCall); |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 4463 | if (!EvaluateRecord(E, LV, Info.CurrentCall->Temporaries[E], Info)) |
| 4464 | return false; |
| 4465 | Result = Info.CurrentCall->Temporaries[E]; |
Richard Smith | 42d3af9 | 2011-12-07 00:43:50 +0000 | [diff] [blame] | 4466 | } else if (E->getType()->isVoidType()) { |
| 4467 | if (!EvaluateVoid(E, Info)) |
| 4468 | return false; |
Daniel Dunbar | f50e60b | 2009-01-28 22:24:07 +0000 | [diff] [blame] | 4469 | } else |
Anders Carlsson | 7c282e4 | 2008-11-22 22:56:32 +0000 | [diff] [blame] | 4470 | return false; |
Anders Carlsson | 475f4bc | 2008-11-22 21:50:49 +0000 | [diff] [blame] | 4471 | |
Anders Carlsson | 7b6f0af | 2008-11-30 16:58:53 +0000 | [diff] [blame] | 4472 | return true; |
| 4473 | } |
| 4474 | |
Richard Smith | ed5165f | 2011-11-04 05:33:44 +0000 | [diff] [blame] | 4475 | /// EvaluateConstantExpression - Evaluate an expression as a constant expression |
| 4476 | /// in-place in an APValue. In some cases, the in-place evaluation is essential, |
| 4477 | /// since later initializers for an object can indirectly refer to subobjects |
| 4478 | /// which were initialized earlier. |
| 4479 | static bool EvaluateConstantExpression(APValue &Result, EvalInfo &Info, |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 4480 | const LValue &This, const Expr *E) { |
Richard Smith | ed5165f | 2011-11-04 05:33:44 +0000 | [diff] [blame] | 4481 | if (E->isRValue() && E->getType()->isLiteralType()) { |
| 4482 | // Evaluate arrays and record types in-place, so that later initializers can |
| 4483 | // refer to earlier-initialized members of the object. |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 4484 | if (E->getType()->isArrayType()) |
| 4485 | return EvaluateArray(E, This, Result, Info); |
| 4486 | else if (E->getType()->isRecordType()) |
| 4487 | return EvaluateRecord(E, This, Result, Info); |
Richard Smith | ed5165f | 2011-11-04 05:33:44 +0000 | [diff] [blame] | 4488 | } |
| 4489 | |
| 4490 | // For any other type, in-place evaluation is unimportant. |
| 4491 | CCValue CoreConstResult; |
| 4492 | return Evaluate(CoreConstResult, Info, E) && |
| 4493 | CheckConstantExpression(CoreConstResult, Result); |
| 4494 | } |
| 4495 | |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 4496 | |
Richard Smith | 7b553f1 | 2011-10-29 00:50:52 +0000 | [diff] [blame] | 4497 | /// EvaluateAsRValue - Return true if this is a constant which we can fold using |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 4498 | /// any crazy technique (that has nothing to do with language standards) that |
| 4499 | /// we want to. If this function returns true, it returns the folded constant |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 4500 | /// in Result. If this expression is a glvalue, an lvalue-to-rvalue conversion |
| 4501 | /// will be applied to the result. |
Richard Smith | 7b553f1 | 2011-10-29 00:50:52 +0000 | [diff] [blame] | 4502 | bool Expr::EvaluateAsRValue(EvalResult &Result, const ASTContext &Ctx) const { |
Richard Smith | 5686e75 | 2011-11-10 03:30:42 +0000 | [diff] [blame] | 4503 | // FIXME: Evaluating initializers for large arrays can cause performance |
| 4504 | // problems, and we don't use such values yet. Once we have a more efficient |
| 4505 | // array representation, this should be reinstated, and used by CodeGen. |
Richard Smith | 027bf11 | 2011-11-17 22:56:20 +0000 | [diff] [blame] | 4506 | // The same problem affects large records. |
| 4507 | if (isRValue() && (getType()->isArrayType() || getType()->isRecordType()) && |
| 4508 | !Ctx.getLangOptions().CPlusPlus0x) |
Richard Smith | 5686e75 | 2011-11-10 03:30:42 +0000 | [diff] [blame] | 4509 | return false; |
| 4510 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 4511 | EvalInfo Info(Ctx, Result); |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 4512 | |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 4513 | // FIXME: If this is the initializer for an lvalue, pass that in. |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 4514 | CCValue Value; |
| 4515 | if (!::Evaluate(Value, Info, this)) |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 4516 | return false; |
| 4517 | |
| 4518 | if (isGLValue()) { |
| 4519 | LValue LV; |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 4520 | LV.setFrom(Value); |
| 4521 | if (!HandleLValueToRValueConversion(Info, getType(), LV, Value)) |
| 4522 | return false; |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 4523 | } |
| 4524 | |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 4525 | // Check this core constant expression is a constant expression, and if so, |
Richard Smith | ed5165f | 2011-11-04 05:33:44 +0000 | [diff] [blame] | 4526 | // convert it to one. |
| 4527 | return CheckConstantExpression(Value, Result.Val); |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 4528 | } |
| 4529 | |
Jay Foad | 39c7980 | 2011-01-12 09:06:06 +0000 | [diff] [blame] | 4530 | bool Expr::EvaluateAsBooleanCondition(bool &Result, |
| 4531 | const ASTContext &Ctx) const { |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 4532 | EvalResult Scratch; |
Richard Smith | 7b553f1 | 2011-10-29 00:50:52 +0000 | [diff] [blame] | 4533 | return EvaluateAsRValue(Scratch, Ctx) && |
Richard Smith | fec0992 | 2011-11-01 16:57:24 +0000 | [diff] [blame] | 4534 | HandleConversionToBool(CCValue(Scratch.Val, CCValue::GlobalValue()), |
Richard Smith | 0b0a0b6 | 2011-10-29 20:57:55 +0000 | [diff] [blame] | 4535 | Result); |
John McCall | 1be1c63 | 2010-01-05 23:42:56 +0000 | [diff] [blame] | 4536 | } |
| 4537 | |
Richard Smith | caf3390 | 2011-10-10 18:28:20 +0000 | [diff] [blame] | 4538 | bool Expr::EvaluateAsInt(APSInt &Result, const ASTContext &Ctx) const { |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 4539 | EvalResult ExprResult; |
Richard Smith | 7b553f1 | 2011-10-29 00:50:52 +0000 | [diff] [blame] | 4540 | if (!EvaluateAsRValue(ExprResult, Ctx) || ExprResult.HasSideEffects || |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 4541 | !ExprResult.Val.isInt()) { |
| 4542 | return false; |
| 4543 | } |
| 4544 | Result = ExprResult.Val.getInt(); |
| 4545 | return true; |
Richard Smith | caf3390 | 2011-10-10 18:28:20 +0000 | [diff] [blame] | 4546 | } |
| 4547 | |
Jay Foad | 39c7980 | 2011-01-12 09:06:06 +0000 | [diff] [blame] | 4548 | bool Expr::EvaluateAsLValue(EvalResult &Result, const ASTContext &Ctx) const { |
Anders Carlsson | 4316812 | 2009-04-10 04:54:13 +0000 | [diff] [blame] | 4549 | EvalInfo Info(Ctx, Result); |
| 4550 | |
John McCall | 45d55e4 | 2010-05-07 21:00:08 +0000 | [diff] [blame] | 4551 | LValue LV; |
Richard Smith | 8081560 | 2011-11-07 05:07:52 +0000 | [diff] [blame] | 4552 | return EvaluateLValue(this, LV, Info) && !Result.HasSideEffects && |
| 4553 | CheckLValueConstantExpression(LV, Result.Val); |
Eli Friedman | 7d45c48 | 2009-09-13 10:17:44 +0000 | [diff] [blame] | 4554 | } |
| 4555 | |
Richard Smith | 7b553f1 | 2011-10-29 00:50:52 +0000 | [diff] [blame] | 4556 | /// isEvaluatable - Call EvaluateAsRValue to see if this expression can be |
| 4557 | /// constant folded, but discard the result. |
Jay Foad | 39c7980 | 2011-01-12 09:06:06 +0000 | [diff] [blame] | 4558 | bool Expr::isEvaluatable(const ASTContext &Ctx) const { |
Anders Carlsson | 5b3638b | 2008-12-01 06:44:05 +0000 | [diff] [blame] | 4559 | EvalResult Result; |
Richard Smith | 7b553f1 | 2011-10-29 00:50:52 +0000 | [diff] [blame] | 4560 | return EvaluateAsRValue(Result, Ctx) && !Result.HasSideEffects; |
Chris Lattner | cb13691 | 2008-10-06 06:49:02 +0000 | [diff] [blame] | 4561 | } |
Anders Carlsson | 59689ed | 2008-11-22 21:04:56 +0000 | [diff] [blame] | 4562 | |
Jay Foad | 39c7980 | 2011-01-12 09:06:06 +0000 | [diff] [blame] | 4563 | bool Expr::HasSideEffects(const ASTContext &Ctx) const { |
Richard Smith | 725810a | 2011-10-16 21:26:27 +0000 | [diff] [blame] | 4564 | return HasSideEffect(Ctx).Visit(this); |
Fariborz Jahanian | 4127b8e | 2009-11-05 18:03:03 +0000 | [diff] [blame] | 4565 | } |
| 4566 | |
Richard Smith | caf3390 | 2011-10-10 18:28:20 +0000 | [diff] [blame] | 4567 | APSInt Expr::EvaluateKnownConstInt(const ASTContext &Ctx) const { |
Anders Carlsson | 6736d1a2 | 2008-12-19 20:58:05 +0000 | [diff] [blame] | 4568 | EvalResult EvalResult; |
Richard Smith | 7b553f1 | 2011-10-29 00:50:52 +0000 | [diff] [blame] | 4569 | bool Result = EvaluateAsRValue(EvalResult, Ctx); |
Jeffrey Yasskin | b332153 | 2010-12-23 01:01:28 +0000 | [diff] [blame] | 4570 | (void)Result; |
Anders Carlsson | 59689ed | 2008-11-22 21:04:56 +0000 | [diff] [blame] | 4571 | assert(Result && "Could not evaluate expression"); |
Anders Carlsson | 6736d1a2 | 2008-12-19 20:58:05 +0000 | [diff] [blame] | 4572 | assert(EvalResult.Val.isInt() && "Expression did not evaluate to integer"); |
Anders Carlsson | 59689ed | 2008-11-22 21:04:56 +0000 | [diff] [blame] | 4573 | |
Anders Carlsson | 6736d1a2 | 2008-12-19 20:58:05 +0000 | [diff] [blame] | 4574 | return EvalResult.Val.getInt(); |
Anders Carlsson | 59689ed | 2008-11-22 21:04:56 +0000 | [diff] [blame] | 4575 | } |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4576 | |
Abramo Bagnara | f819945 | 2010-05-14 17:07:14 +0000 | [diff] [blame] | 4577 | bool Expr::EvalResult::isGlobalLValue() const { |
| 4578 | assert(Val.isLValue()); |
| 4579 | return IsGlobalLValue(Val.getLValueBase()); |
| 4580 | } |
| 4581 | |
| 4582 | |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4583 | /// isIntegerConstantExpr - this recursive routine will test if an expression is |
| 4584 | /// an integer constant expression. |
| 4585 | |
| 4586 | /// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero, |
| 4587 | /// comma, etc |
| 4588 | /// |
| 4589 | /// FIXME: Handle offsetof. Two things to do: Handle GCC's __builtin_offsetof |
| 4590 | /// to support gcc 4.0+ and handle the idiom GCC recognizes with a null pointer |
| 4591 | /// cast+dereference. |
| 4592 | |
| 4593 | // CheckICE - This function does the fundamental ICE checking: the returned |
| 4594 | // ICEDiag contains a Val of 0, 1, or 2, and a possibly null SourceLocation. |
| 4595 | // Note that to reduce code duplication, this helper does no evaluation |
| 4596 | // itself; the caller checks whether the expression is evaluatable, and |
| 4597 | // in the rare cases where CheckICE actually cares about the evaluated |
| 4598 | // value, it calls into Evalute. |
| 4599 | // |
| 4600 | // Meanings of Val: |
Richard Smith | 7b553f1 | 2011-10-29 00:50:52 +0000 | [diff] [blame] | 4601 | // 0: This expression is an ICE. |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4602 | // 1: This expression is not an ICE, but if it isn't evaluated, it's |
| 4603 | // a legal subexpression for an ICE. This return value is used to handle |
| 4604 | // the comma operator in C99 mode. |
| 4605 | // 2: This expression is not an ICE, and is not a legal subexpression for one. |
| 4606 | |
Dan Gohman | 28ade55 | 2010-07-26 21:25:24 +0000 | [diff] [blame] | 4607 | namespace { |
| 4608 | |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4609 | struct ICEDiag { |
| 4610 | unsigned Val; |
| 4611 | SourceLocation Loc; |
| 4612 | |
| 4613 | public: |
| 4614 | ICEDiag(unsigned v, SourceLocation l) : Val(v), Loc(l) {} |
| 4615 | ICEDiag() : Val(0) {} |
| 4616 | }; |
| 4617 | |
Dan Gohman | 28ade55 | 2010-07-26 21:25:24 +0000 | [diff] [blame] | 4618 | } |
| 4619 | |
| 4620 | static ICEDiag NoDiag() { return ICEDiag(); } |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4621 | |
| 4622 | static ICEDiag CheckEvalInICE(const Expr* E, ASTContext &Ctx) { |
| 4623 | Expr::EvalResult EVResult; |
Richard Smith | 7b553f1 | 2011-10-29 00:50:52 +0000 | [diff] [blame] | 4624 | if (!E->EvaluateAsRValue(EVResult, Ctx) || EVResult.HasSideEffects || |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4625 | !EVResult.Val.isInt()) { |
| 4626 | return ICEDiag(2, E->getLocStart()); |
| 4627 | } |
| 4628 | return NoDiag(); |
| 4629 | } |
| 4630 | |
| 4631 | static ICEDiag CheckICE(const Expr* E, ASTContext &Ctx) { |
| 4632 | assert(!E->isValueDependent() && "Should not see value dependent exprs!"); |
Douglas Gregor | b90df60 | 2010-06-16 00:17:44 +0000 | [diff] [blame] | 4633 | if (!E->getType()->isIntegralOrEnumerationType()) { |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4634 | return ICEDiag(2, E->getLocStart()); |
| 4635 | } |
| 4636 | |
| 4637 | switch (E->getStmtClass()) { |
John McCall | bd06678 | 2011-02-09 08:16:59 +0000 | [diff] [blame] | 4638 | #define ABSTRACT_STMT(Node) |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4639 | #define STMT(Node, Base) case Expr::Node##Class: |
| 4640 | #define EXPR(Node, Base) |
| 4641 | #include "clang/AST/StmtNodes.inc" |
| 4642 | case Expr::PredefinedExprClass: |
| 4643 | case Expr::FloatingLiteralClass: |
| 4644 | case Expr::ImaginaryLiteralClass: |
| 4645 | case Expr::StringLiteralClass: |
| 4646 | case Expr::ArraySubscriptExprClass: |
| 4647 | case Expr::MemberExprClass: |
| 4648 | case Expr::CompoundAssignOperatorClass: |
| 4649 | case Expr::CompoundLiteralExprClass: |
| 4650 | case Expr::ExtVectorElementExprClass: |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4651 | case Expr::DesignatedInitExprClass: |
| 4652 | case Expr::ImplicitValueInitExprClass: |
| 4653 | case Expr::ParenListExprClass: |
| 4654 | case Expr::VAArgExprClass: |
| 4655 | case Expr::AddrLabelExprClass: |
| 4656 | case Expr::StmtExprClass: |
| 4657 | case Expr::CXXMemberCallExprClass: |
Peter Collingbourne | 41f8546 | 2011-02-09 21:07:24 +0000 | [diff] [blame] | 4658 | case Expr::CUDAKernelCallExprClass: |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4659 | case Expr::CXXDynamicCastExprClass: |
| 4660 | case Expr::CXXTypeidExprClass: |
Francois Pichet | 5cc0a67 | 2010-09-08 23:47:05 +0000 | [diff] [blame] | 4661 | case Expr::CXXUuidofExprClass: |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4662 | case Expr::CXXNullPtrLiteralExprClass: |
| 4663 | case Expr::CXXThisExprClass: |
| 4664 | case Expr::CXXThrowExprClass: |
| 4665 | case Expr::CXXNewExprClass: |
| 4666 | case Expr::CXXDeleteExprClass: |
| 4667 | case Expr::CXXPseudoDestructorExprClass: |
| 4668 | case Expr::UnresolvedLookupExprClass: |
| 4669 | case Expr::DependentScopeDeclRefExprClass: |
| 4670 | case Expr::CXXConstructExprClass: |
| 4671 | case Expr::CXXBindTemporaryExprClass: |
John McCall | 5d41378 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 4672 | case Expr::ExprWithCleanupsClass: |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4673 | case Expr::CXXTemporaryObjectExprClass: |
| 4674 | case Expr::CXXUnresolvedConstructExprClass: |
| 4675 | case Expr::CXXDependentScopeMemberExprClass: |
| 4676 | case Expr::UnresolvedMemberExprClass: |
| 4677 | case Expr::ObjCStringLiteralClass: |
| 4678 | case Expr::ObjCEncodeExprClass: |
| 4679 | case Expr::ObjCMessageExprClass: |
| 4680 | case Expr::ObjCSelectorExprClass: |
| 4681 | case Expr::ObjCProtocolExprClass: |
| 4682 | case Expr::ObjCIvarRefExprClass: |
| 4683 | case Expr::ObjCPropertyRefExprClass: |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4684 | case Expr::ObjCIsaExprClass: |
| 4685 | case Expr::ShuffleVectorExprClass: |
| 4686 | case Expr::BlockExprClass: |
| 4687 | case Expr::BlockDeclRefExprClass: |
| 4688 | case Expr::NoStmtClass: |
John McCall | 8d69a21 | 2010-11-15 23:31:06 +0000 | [diff] [blame] | 4689 | case Expr::OpaqueValueExprClass: |
Douglas Gregor | e8e9dd6 | 2011-01-03 17:17:50 +0000 | [diff] [blame] | 4690 | case Expr::PackExpansionExprClass: |
Douglas Gregor | cdbc539 | 2011-01-15 01:15:58 +0000 | [diff] [blame] | 4691 | case Expr::SubstNonTypeTemplateParmPackExprClass: |
Tanya Lattner | 55808c1 | 2011-06-04 00:47:47 +0000 | [diff] [blame] | 4692 | case Expr::AsTypeExprClass: |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4693 | case Expr::ObjCIndirectCopyRestoreExprClass: |
Douglas Gregor | fe31481 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 4694 | case Expr::MaterializeTemporaryExprClass: |
John McCall | fe96e0b | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 4695 | case Expr::PseudoObjectExprClass: |
Eli Friedman | df14b3a | 2011-10-11 02:20:01 +0000 | [diff] [blame] | 4696 | case Expr::AtomicExprClass: |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4697 | return ICEDiag(2, E->getLocStart()); |
| 4698 | |
Sebastian Redl | 12757ab | 2011-09-24 17:48:14 +0000 | [diff] [blame] | 4699 | case Expr::InitListExprClass: |
| 4700 | if (Ctx.getLangOptions().CPlusPlus0x) { |
| 4701 | const InitListExpr *ILE = cast<InitListExpr>(E); |
| 4702 | if (ILE->getNumInits() == 0) |
| 4703 | return NoDiag(); |
| 4704 | if (ILE->getNumInits() == 1) |
| 4705 | return CheckICE(ILE->getInit(0), Ctx); |
| 4706 | // Fall through for more than 1 expression. |
| 4707 | } |
| 4708 | return ICEDiag(2, E->getLocStart()); |
| 4709 | |
Douglas Gregor | 820ba7b | 2011-01-04 17:33:58 +0000 | [diff] [blame] | 4710 | case Expr::SizeOfPackExprClass: |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4711 | case Expr::GNUNullExprClass: |
| 4712 | // GCC considers the GNU __null value to be an integral constant expression. |
| 4713 | return NoDiag(); |
| 4714 | |
John McCall | 7c454bb | 2011-07-15 05:09:51 +0000 | [diff] [blame] | 4715 | case Expr::SubstNonTypeTemplateParmExprClass: |
| 4716 | return |
| 4717 | CheckICE(cast<SubstNonTypeTemplateParmExpr>(E)->getReplacement(), Ctx); |
| 4718 | |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4719 | case Expr::ParenExprClass: |
| 4720 | return CheckICE(cast<ParenExpr>(E)->getSubExpr(), Ctx); |
Peter Collingbourne | 9114759 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 4721 | case Expr::GenericSelectionExprClass: |
| 4722 | return CheckICE(cast<GenericSelectionExpr>(E)->getResultExpr(), Ctx); |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4723 | case Expr::IntegerLiteralClass: |
| 4724 | case Expr::CharacterLiteralClass: |
| 4725 | case Expr::CXXBoolLiteralExprClass: |
Douglas Gregor | 747eb78 | 2010-07-08 06:14:04 +0000 | [diff] [blame] | 4726 | case Expr::CXXScalarValueInitExprClass: |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4727 | case Expr::UnaryTypeTraitExprClass: |
Francois Pichet | 9dfa3ce | 2010-12-07 00:08:36 +0000 | [diff] [blame] | 4728 | case Expr::BinaryTypeTraitExprClass: |
John Wiegley | 6242b6a | 2011-04-28 00:16:57 +0000 | [diff] [blame] | 4729 | case Expr::ArrayTypeTraitExprClass: |
John Wiegley | f9f6584 | 2011-04-25 06:54:41 +0000 | [diff] [blame] | 4730 | case Expr::ExpressionTraitExprClass: |
Sebastian Redl | 4202c0f | 2010-09-10 20:55:43 +0000 | [diff] [blame] | 4731 | case Expr::CXXNoexceptExprClass: |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4732 | return NoDiag(); |
| 4733 | case Expr::CallExprClass: |
Alexis Hunt | 3b79186 | 2010-08-30 17:47:05 +0000 | [diff] [blame] | 4734 | case Expr::CXXOperatorCallExprClass: { |
Richard Smith | 62f6595 | 2011-10-24 22:35:48 +0000 | [diff] [blame] | 4735 | // C99 6.6/3 allows function calls within unevaluated subexpressions of |
| 4736 | // constant expressions, but they can never be ICEs because an ICE cannot |
| 4737 | // contain an operand of (pointer to) function type. |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4738 | const CallExpr *CE = cast<CallExpr>(E); |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 4739 | if (CE->isBuiltinCall()) |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4740 | return CheckEvalInICE(E, Ctx); |
| 4741 | return ICEDiag(2, E->getLocStart()); |
| 4742 | } |
| 4743 | case Expr::DeclRefExprClass: |
| 4744 | if (isa<EnumConstantDecl>(cast<DeclRefExpr>(E)->getDecl())) |
| 4745 | return NoDiag(); |
Richard Smith | 2790870 | 2011-10-24 17:54:18 +0000 | [diff] [blame] | 4746 | if (Ctx.getLangOptions().CPlusPlus && IsConstNonVolatile(E->getType())) { |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4747 | const NamedDecl *D = cast<DeclRefExpr>(E)->getDecl(); |
| 4748 | |
| 4749 | // Parameter variables are never constants. Without this check, |
| 4750 | // getAnyInitializer() can find a default argument, which leads |
| 4751 | // to chaos. |
| 4752 | if (isa<ParmVarDecl>(D)) |
| 4753 | return ICEDiag(2, cast<DeclRefExpr>(E)->getLocation()); |
| 4754 | |
| 4755 | // C++ 7.1.5.1p2 |
| 4756 | // A variable of non-volatile const-qualified integral or enumeration |
| 4757 | // type initialized by an ICE can be used in ICEs. |
| 4758 | if (const VarDecl *Dcl = dyn_cast<VarDecl>(D)) { |
Richard Smith | ec8dcd2 | 2011-11-08 01:31:09 +0000 | [diff] [blame] | 4759 | if (!Dcl->getType()->isIntegralOrEnumerationType()) |
| 4760 | return ICEDiag(2, cast<DeclRefExpr>(E)->getLocation()); |
| 4761 | |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4762 | // Look for a declaration of this variable that has an initializer. |
| 4763 | const VarDecl *ID = 0; |
| 4764 | const Expr *Init = Dcl->getAnyInitializer(ID); |
| 4765 | if (Init) { |
| 4766 | if (ID->isInitKnownICE()) { |
| 4767 | // We have already checked whether this subexpression is an |
| 4768 | // integral constant expression. |
| 4769 | if (ID->isInitICE()) |
| 4770 | return NoDiag(); |
| 4771 | else |
| 4772 | return ICEDiag(2, cast<DeclRefExpr>(E)->getLocation()); |
| 4773 | } |
| 4774 | |
| 4775 | // It's an ICE whether or not the definition we found is |
| 4776 | // out-of-line. See DR 721 and the discussion in Clang PR |
| 4777 | // 6206 for details. |
| 4778 | |
| 4779 | if (Dcl->isCheckingICE()) { |
| 4780 | return ICEDiag(2, cast<DeclRefExpr>(E)->getLocation()); |
| 4781 | } |
| 4782 | |
| 4783 | Dcl->setCheckingICE(); |
| 4784 | ICEDiag Result = CheckICE(Init, Ctx); |
| 4785 | // Cache the result of the ICE test. |
| 4786 | Dcl->setInitKnownICE(Result.Val == 0); |
| 4787 | return Result; |
| 4788 | } |
| 4789 | } |
| 4790 | } |
| 4791 | return ICEDiag(2, E->getLocStart()); |
| 4792 | case Expr::UnaryOperatorClass: { |
| 4793 | const UnaryOperator *Exp = cast<UnaryOperator>(E); |
| 4794 | switch (Exp->getOpcode()) { |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4795 | case UO_PostInc: |
| 4796 | case UO_PostDec: |
| 4797 | case UO_PreInc: |
| 4798 | case UO_PreDec: |
| 4799 | case UO_AddrOf: |
| 4800 | case UO_Deref: |
Richard Smith | 62f6595 | 2011-10-24 22:35:48 +0000 | [diff] [blame] | 4801 | // C99 6.6/3 allows increment and decrement within unevaluated |
| 4802 | // subexpressions of constant expressions, but they can never be ICEs |
| 4803 | // because an ICE cannot contain an lvalue operand. |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4804 | return ICEDiag(2, E->getLocStart()); |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4805 | case UO_Extension: |
| 4806 | case UO_LNot: |
| 4807 | case UO_Plus: |
| 4808 | case UO_Minus: |
| 4809 | case UO_Not: |
| 4810 | case UO_Real: |
| 4811 | case UO_Imag: |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4812 | return CheckICE(Exp->getSubExpr(), Ctx); |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4813 | } |
| 4814 | |
| 4815 | // OffsetOf falls through here. |
| 4816 | } |
| 4817 | case Expr::OffsetOfExprClass: { |
| 4818 | // Note that per C99, offsetof must be an ICE. And AFAIK, using |
Richard Smith | 7b553f1 | 2011-10-29 00:50:52 +0000 | [diff] [blame] | 4819 | // EvaluateAsRValue matches the proposed gcc behavior for cases like |
Richard Smith | 62f6595 | 2011-10-24 22:35:48 +0000 | [diff] [blame] | 4820 | // "offsetof(struct s{int x[4];}, x[1.0])". This doesn't affect |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4821 | // compliance: we should warn earlier for offsetof expressions with |
| 4822 | // array subscripts that aren't ICEs, and if the array subscripts |
| 4823 | // are ICEs, the value of the offsetof must be an integer constant. |
| 4824 | return CheckEvalInICE(E, Ctx); |
| 4825 | } |
Peter Collingbourne | e190dee | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 4826 | case Expr::UnaryExprOrTypeTraitExprClass: { |
| 4827 | const UnaryExprOrTypeTraitExpr *Exp = cast<UnaryExprOrTypeTraitExpr>(E); |
| 4828 | if ((Exp->getKind() == UETT_SizeOf) && |
| 4829 | Exp->getTypeOfArgument()->isVariableArrayType()) |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4830 | return ICEDiag(2, E->getLocStart()); |
| 4831 | return NoDiag(); |
| 4832 | } |
| 4833 | case Expr::BinaryOperatorClass: { |
| 4834 | const BinaryOperator *Exp = cast<BinaryOperator>(E); |
| 4835 | switch (Exp->getOpcode()) { |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4836 | case BO_PtrMemD: |
| 4837 | case BO_PtrMemI: |
| 4838 | case BO_Assign: |
| 4839 | case BO_MulAssign: |
| 4840 | case BO_DivAssign: |
| 4841 | case BO_RemAssign: |
| 4842 | case BO_AddAssign: |
| 4843 | case BO_SubAssign: |
| 4844 | case BO_ShlAssign: |
| 4845 | case BO_ShrAssign: |
| 4846 | case BO_AndAssign: |
| 4847 | case BO_XorAssign: |
| 4848 | case BO_OrAssign: |
Richard Smith | 62f6595 | 2011-10-24 22:35:48 +0000 | [diff] [blame] | 4849 | // C99 6.6/3 allows assignments within unevaluated subexpressions of |
| 4850 | // constant expressions, but they can never be ICEs because an ICE cannot |
| 4851 | // contain an lvalue operand. |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4852 | return ICEDiag(2, E->getLocStart()); |
| 4853 | |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4854 | case BO_Mul: |
| 4855 | case BO_Div: |
| 4856 | case BO_Rem: |
| 4857 | case BO_Add: |
| 4858 | case BO_Sub: |
| 4859 | case BO_Shl: |
| 4860 | case BO_Shr: |
| 4861 | case BO_LT: |
| 4862 | case BO_GT: |
| 4863 | case BO_LE: |
| 4864 | case BO_GE: |
| 4865 | case BO_EQ: |
| 4866 | case BO_NE: |
| 4867 | case BO_And: |
| 4868 | case BO_Xor: |
| 4869 | case BO_Or: |
| 4870 | case BO_Comma: { |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4871 | ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx); |
| 4872 | ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx); |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4873 | if (Exp->getOpcode() == BO_Div || |
| 4874 | Exp->getOpcode() == BO_Rem) { |
Richard Smith | 7b553f1 | 2011-10-29 00:50:52 +0000 | [diff] [blame] | 4875 | // EvaluateAsRValue gives an error for undefined Div/Rem, so make sure |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4876 | // we don't evaluate one. |
John McCall | 4b13633 | 2011-02-26 08:27:17 +0000 | [diff] [blame] | 4877 | if (LHSResult.Val == 0 && RHSResult.Val == 0) { |
Richard Smith | caf3390 | 2011-10-10 18:28:20 +0000 | [diff] [blame] | 4878 | llvm::APSInt REval = Exp->getRHS()->EvaluateKnownConstInt(Ctx); |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4879 | if (REval == 0) |
| 4880 | return ICEDiag(1, E->getLocStart()); |
| 4881 | if (REval.isSigned() && REval.isAllOnesValue()) { |
Richard Smith | caf3390 | 2011-10-10 18:28:20 +0000 | [diff] [blame] | 4882 | llvm::APSInt LEval = Exp->getLHS()->EvaluateKnownConstInt(Ctx); |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4883 | if (LEval.isMinSignedValue()) |
| 4884 | return ICEDiag(1, E->getLocStart()); |
| 4885 | } |
| 4886 | } |
| 4887 | } |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4888 | if (Exp->getOpcode() == BO_Comma) { |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4889 | if (Ctx.getLangOptions().C99) { |
| 4890 | // C99 6.6p3 introduces a strange edge case: comma can be in an ICE |
| 4891 | // if it isn't evaluated. |
| 4892 | if (LHSResult.Val == 0 && RHSResult.Val == 0) |
| 4893 | return ICEDiag(1, E->getLocStart()); |
| 4894 | } else { |
| 4895 | // In both C89 and C++, commas in ICEs are illegal. |
| 4896 | return ICEDiag(2, E->getLocStart()); |
| 4897 | } |
| 4898 | } |
| 4899 | if (LHSResult.Val >= RHSResult.Val) |
| 4900 | return LHSResult; |
| 4901 | return RHSResult; |
| 4902 | } |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4903 | case BO_LAnd: |
| 4904 | case BO_LOr: { |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4905 | ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx); |
Douglas Gregor | fcafc6e | 2011-05-24 16:02:01 +0000 | [diff] [blame] | 4906 | |
| 4907 | // C++0x [expr.const]p2: |
| 4908 | // [...] subexpressions of logical AND (5.14), logical OR |
| 4909 | // (5.15), and condi- tional (5.16) operations that are not |
| 4910 | // evaluated are not considered. |
| 4911 | if (Ctx.getLangOptions().CPlusPlus0x && LHSResult.Val == 0) { |
| 4912 | if (Exp->getOpcode() == BO_LAnd && |
Richard Smith | caf3390 | 2011-10-10 18:28:20 +0000 | [diff] [blame] | 4913 | Exp->getLHS()->EvaluateKnownConstInt(Ctx) == 0) |
Douglas Gregor | fcafc6e | 2011-05-24 16:02:01 +0000 | [diff] [blame] | 4914 | return LHSResult; |
| 4915 | |
| 4916 | if (Exp->getOpcode() == BO_LOr && |
Richard Smith | caf3390 | 2011-10-10 18:28:20 +0000 | [diff] [blame] | 4917 | Exp->getLHS()->EvaluateKnownConstInt(Ctx) != 0) |
Douglas Gregor | fcafc6e | 2011-05-24 16:02:01 +0000 | [diff] [blame] | 4918 | return LHSResult; |
| 4919 | } |
| 4920 | |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4921 | ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx); |
| 4922 | if (LHSResult.Val == 0 && RHSResult.Val == 1) { |
| 4923 | // Rare case where the RHS has a comma "side-effect"; we need |
| 4924 | // to actually check the condition to see whether the side |
| 4925 | // with the comma is evaluated. |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4926 | if ((Exp->getOpcode() == BO_LAnd) != |
Richard Smith | caf3390 | 2011-10-10 18:28:20 +0000 | [diff] [blame] | 4927 | (Exp->getLHS()->EvaluateKnownConstInt(Ctx) == 0)) |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4928 | return RHSResult; |
| 4929 | return NoDiag(); |
| 4930 | } |
| 4931 | |
| 4932 | if (LHSResult.Val >= RHSResult.Val) |
| 4933 | return LHSResult; |
| 4934 | return RHSResult; |
| 4935 | } |
| 4936 | } |
| 4937 | } |
| 4938 | case Expr::ImplicitCastExprClass: |
| 4939 | case Expr::CStyleCastExprClass: |
| 4940 | case Expr::CXXFunctionalCastExprClass: |
| 4941 | case Expr::CXXStaticCastExprClass: |
| 4942 | case Expr::CXXReinterpretCastExprClass: |
Richard Smith | c3e31e7 | 2011-10-24 18:26:35 +0000 | [diff] [blame] | 4943 | case Expr::CXXConstCastExprClass: |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4944 | case Expr::ObjCBridgedCastExprClass: { |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4945 | const Expr *SubExpr = cast<CastExpr>(E)->getSubExpr(); |
Richard Smith | 2d7bb04 | 2011-10-25 00:21:54 +0000 | [diff] [blame] | 4946 | if (isa<ExplicitCastExpr>(E) && |
Richard Smith | c3e31e7 | 2011-10-24 18:26:35 +0000 | [diff] [blame] | 4947 | isa<FloatingLiteral>(SubExpr->IgnoreParenImpCasts())) |
| 4948 | return NoDiag(); |
Eli Friedman | 76d4e43 | 2011-09-29 21:49:34 +0000 | [diff] [blame] | 4949 | switch (cast<CastExpr>(E)->getCastKind()) { |
| 4950 | case CK_LValueToRValue: |
| 4951 | case CK_NoOp: |
| 4952 | case CK_IntegralToBoolean: |
| 4953 | case CK_IntegralCast: |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4954 | return CheckICE(SubExpr, Ctx); |
Eli Friedman | 76d4e43 | 2011-09-29 21:49:34 +0000 | [diff] [blame] | 4955 | default: |
Eli Friedman | 76d4e43 | 2011-09-29 21:49:34 +0000 | [diff] [blame] | 4956 | return ICEDiag(2, E->getLocStart()); |
| 4957 | } |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4958 | } |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 4959 | case Expr::BinaryConditionalOperatorClass: { |
| 4960 | const BinaryConditionalOperator *Exp = cast<BinaryConditionalOperator>(E); |
| 4961 | ICEDiag CommonResult = CheckICE(Exp->getCommon(), Ctx); |
| 4962 | if (CommonResult.Val == 2) return CommonResult; |
| 4963 | ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx); |
| 4964 | if (FalseResult.Val == 2) return FalseResult; |
| 4965 | if (CommonResult.Val == 1) return CommonResult; |
| 4966 | if (FalseResult.Val == 1 && |
Richard Smith | caf3390 | 2011-10-10 18:28:20 +0000 | [diff] [blame] | 4967 | Exp->getCommon()->EvaluateKnownConstInt(Ctx) == 0) return NoDiag(); |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 4968 | return FalseResult; |
| 4969 | } |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4970 | case Expr::ConditionalOperatorClass: { |
| 4971 | const ConditionalOperator *Exp = cast<ConditionalOperator>(E); |
| 4972 | // If the condition (ignoring parens) is a __builtin_constant_p call, |
| 4973 | // then only the true side is actually considered in an integer constant |
| 4974 | // expression, and it is fully evaluated. This is an important GNU |
| 4975 | // extension. See GCC PR38377 for discussion. |
| 4976 | if (const CallExpr *CallCE |
| 4977 | = dyn_cast<CallExpr>(Exp->getCond()->IgnoreParenCasts())) |
Richard Smith | d62306a | 2011-11-10 06:34:14 +0000 | [diff] [blame] | 4978 | if (CallCE->isBuiltinCall() == Builtin::BI__builtin_constant_p) { |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4979 | Expr::EvalResult EVResult; |
Richard Smith | 7b553f1 | 2011-10-29 00:50:52 +0000 | [diff] [blame] | 4980 | if (!E->EvaluateAsRValue(EVResult, Ctx) || EVResult.HasSideEffects || |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4981 | !EVResult.Val.isInt()) { |
| 4982 | return ICEDiag(2, E->getLocStart()); |
| 4983 | } |
| 4984 | return NoDiag(); |
| 4985 | } |
| 4986 | ICEDiag CondResult = CheckICE(Exp->getCond(), Ctx); |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 4987 | if (CondResult.Val == 2) |
| 4988 | return CondResult; |
Douglas Gregor | fcafc6e | 2011-05-24 16:02:01 +0000 | [diff] [blame] | 4989 | |
| 4990 | // C++0x [expr.const]p2: |
| 4991 | // subexpressions of [...] conditional (5.16) operations that |
| 4992 | // are not evaluated are not considered |
| 4993 | bool TrueBranch = Ctx.getLangOptions().CPlusPlus0x |
Richard Smith | caf3390 | 2011-10-10 18:28:20 +0000 | [diff] [blame] | 4994 | ? Exp->getCond()->EvaluateKnownConstInt(Ctx) != 0 |
Douglas Gregor | fcafc6e | 2011-05-24 16:02:01 +0000 | [diff] [blame] | 4995 | : false; |
| 4996 | ICEDiag TrueResult = NoDiag(); |
| 4997 | if (!Ctx.getLangOptions().CPlusPlus0x || TrueBranch) |
| 4998 | TrueResult = CheckICE(Exp->getTrueExpr(), Ctx); |
| 4999 | ICEDiag FalseResult = NoDiag(); |
| 5000 | if (!Ctx.getLangOptions().CPlusPlus0x || !TrueBranch) |
| 5001 | FalseResult = CheckICE(Exp->getFalseExpr(), Ctx); |
| 5002 | |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 5003 | if (TrueResult.Val == 2) |
| 5004 | return TrueResult; |
| 5005 | if (FalseResult.Val == 2) |
| 5006 | return FalseResult; |
| 5007 | if (CondResult.Val == 1) |
| 5008 | return CondResult; |
| 5009 | if (TrueResult.Val == 0 && FalseResult.Val == 0) |
| 5010 | return NoDiag(); |
| 5011 | // Rare case where the diagnostics depend on which side is evaluated |
| 5012 | // Note that if we get here, CondResult is 0, and at least one of |
| 5013 | // TrueResult and FalseResult is non-zero. |
Richard Smith | caf3390 | 2011-10-10 18:28:20 +0000 | [diff] [blame] | 5014 | if (Exp->getCond()->EvaluateKnownConstInt(Ctx) == 0) { |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 5015 | return FalseResult; |
| 5016 | } |
| 5017 | return TrueResult; |
| 5018 | } |
| 5019 | case Expr::CXXDefaultArgExprClass: |
| 5020 | return CheckICE(cast<CXXDefaultArgExpr>(E)->getExpr(), Ctx); |
| 5021 | case Expr::ChooseExprClass: { |
| 5022 | return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(Ctx), Ctx); |
| 5023 | } |
| 5024 | } |
| 5025 | |
| 5026 | // Silence a GCC warning |
| 5027 | return ICEDiag(2, E->getLocStart()); |
| 5028 | } |
| 5029 | |
| 5030 | bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx, |
| 5031 | SourceLocation *Loc, bool isEvaluated) const { |
| 5032 | ICEDiag d = CheckICE(this, Ctx); |
| 5033 | if (d.Val != 0) { |
| 5034 | if (Loc) *Loc = d.Loc; |
| 5035 | return false; |
| 5036 | } |
Richard Smith | 11562c5 | 2011-10-28 17:51:58 +0000 | [diff] [blame] | 5037 | if (!EvaluateAsInt(Result, Ctx)) |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 5038 | llvm_unreachable("ICE cannot be evaluated!"); |
John McCall | 864e396 | 2010-05-07 05:32:02 +0000 | [diff] [blame] | 5039 | return true; |
| 5040 | } |