Eugene Zelenko | 1eab6c1 | 2017-11-14 23:35:42 +0000 | [diff] [blame] | 1 | //===- Stmt.cpp - Statement AST Node Implementation -----------------------===// |
Chris Lattner | f42cce7 | 2006-10-25 04:09:21 +0000 | [diff] [blame] | 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Chris Lattner | f42cce7 | 2006-10-25 04:09:21 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This file implements the Stmt class and statement subclasses. |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
Eugene Zelenko | 7855e77 | 2018-04-03 00:11:50 +0000 | [diff] [blame] | 13 | #include "clang/AST/Stmt.h" |
Benjamin Kramer | 444a130 | 2012-12-01 17:12:56 +0000 | [diff] [blame] | 14 | #include "clang/AST/ASTContext.h" |
| 15 | #include "clang/AST/ASTDiagnostic.h" |
Eugene Zelenko | 1eab6c1 | 2017-11-14 23:35:42 +0000 | [diff] [blame] | 16 | #include "clang/AST/Decl.h" |
| 17 | #include "clang/AST/DeclGroup.h" |
Eugene Zelenko | 7855e77 | 2018-04-03 00:11:50 +0000 | [diff] [blame] | 18 | #include "clang/AST/Expr.h" |
Saar Raz | a0f50d7 | 2020-01-18 09:11:43 +0200 | [diff] [blame] | 19 | #include "clang/AST/ExprConcepts.h" |
Chris Lattner | 2937565 | 2006-12-04 18:06:35 +0000 | [diff] [blame] | 20 | #include "clang/AST/ExprCXX.h" |
Steve Naroff | 021ca18 | 2008-05-29 21:12:08 +0000 | [diff] [blame] | 21 | #include "clang/AST/ExprObjC.h" |
Alexey Bataev | 1a3320e | 2015-08-25 14:24:04 +0000 | [diff] [blame] | 22 | #include "clang/AST/ExprOpenMP.h" |
Chris Lattner | f0b64d7 | 2009-04-26 01:32:48 +0000 | [diff] [blame] | 23 | #include "clang/AST/StmtCXX.h" |
| 24 | #include "clang/AST/StmtObjC.h" |
Alexey Bataev | 5ec3eb1 | 2013-07-19 03:13:43 +0000 | [diff] [blame] | 25 | #include "clang/AST/StmtOpenMP.h" |
Sebastian Redl | 54c04d4 | 2008-12-22 19:15:10 +0000 | [diff] [blame] | 26 | #include "clang/AST/Type.h" |
Jordan Rose | a7d0384 | 2013-02-08 22:30:41 +0000 | [diff] [blame] | 27 | #include "clang/Basic/CharInfo.h" |
Eugene Zelenko | 1eab6c1 | 2017-11-14 23:35:42 +0000 | [diff] [blame] | 28 | #include "clang/Basic/LLVM.h" |
| 29 | #include "clang/Basic/SourceLocation.h" |
Chris Lattner | 1a8f394 | 2010-04-23 16:29:58 +0000 | [diff] [blame] | 30 | #include "clang/Basic/TargetInfo.h" |
Benjamin Kramer | 444a130 | 2012-12-01 17:12:56 +0000 | [diff] [blame] | 31 | #include "clang/Lex/Token.h" |
Eugene Zelenko | 1eab6c1 | 2017-11-14 23:35:42 +0000 | [diff] [blame] | 32 | #include "llvm/ADT/SmallVector.h" |
Chad Rosier | 14836ba | 2012-08-24 17:05:45 +0000 | [diff] [blame] | 33 | #include "llvm/ADT/StringExtras.h" |
Eugene Zelenko | 1eab6c1 | 2017-11-14 23:35:42 +0000 | [diff] [blame] | 34 | #include "llvm/ADT/StringRef.h" |
| 35 | #include "llvm/Support/Casting.h" |
| 36 | #include "llvm/Support/Compiler.h" |
| 37 | #include "llvm/Support/ErrorHandling.h" |
| 38 | #include "llvm/Support/MathExtras.h" |
Chandler Carruth | bfb154a | 2011-07-04 06:13:27 +0000 | [diff] [blame] | 39 | #include "llvm/Support/raw_ostream.h" |
Eugene Zelenko | 1eab6c1 | 2017-11-14 23:35:42 +0000 | [diff] [blame] | 40 | #include <algorithm> |
| 41 | #include <cassert> |
| 42 | #include <cstring> |
| 43 | #include <string> |
| 44 | #include <utility> |
Bruno Ricci | c397a26 | 2019-08-27 11:35:49 +0000 | [diff] [blame] | 45 | #include <type_traits> |
Eugene Zelenko | 1eab6c1 | 2017-11-14 23:35:42 +0000 | [diff] [blame] | 46 | |
Chris Lattner | f42cce7 | 2006-10-25 04:09:21 +0000 | [diff] [blame] | 47 | using namespace clang; |
| 48 | |
Steve Naroff | f84d11f | 2007-05-23 21:48:04 +0000 | [diff] [blame] | 49 | static struct StmtClassNameTable { |
Chris Lattner | 4d15a0d | 2007-08-25 01:42:24 +0000 | [diff] [blame] | 50 | const char *Name; |
| 51 | unsigned Counter; |
| 52 | unsigned Size; |
Alexis Hunt | 656bb31 | 2010-05-05 15:24:00 +0000 | [diff] [blame] | 53 | } StmtClassInfo[Stmt::lastStmtConstant+1]; |
Chris Lattner | 4d15a0d | 2007-08-25 01:42:24 +0000 | [diff] [blame] | 54 | |
| 55 | static StmtClassNameTable &getStmtInfoTableEntry(Stmt::StmtClass E) { |
| 56 | static bool Initialized = false; |
| 57 | if (Initialized) |
| 58 | return StmtClassInfo[E]; |
| 59 | |
Alexander Kornienko | 2a8c18d | 2018-04-06 15:14:32 +0000 | [diff] [blame] | 60 | // Initialize the table on the first use. |
Chris Lattner | 4d15a0d | 2007-08-25 01:42:24 +0000 | [diff] [blame] | 61 | Initialized = true; |
Alexis Hunt | abb2ac8 | 2010-05-18 06:22:21 +0000 | [diff] [blame] | 62 | #define ABSTRACT_STMT(STMT) |
Douglas Gregor | be35ce9 | 2008-11-14 12:46:07 +0000 | [diff] [blame] | 63 | #define STMT(CLASS, PARENT) \ |
| 64 | StmtClassInfo[(unsigned)Stmt::CLASS##Class].Name = #CLASS; \ |
| 65 | StmtClassInfo[(unsigned)Stmt::CLASS##Class].Size = sizeof(CLASS); |
Alexis Hunt | 656bb31 | 2010-05-05 15:24:00 +0000 | [diff] [blame] | 66 | #include "clang/AST/StmtNodes.inc" |
Nico Weber | de565e3 | 2008-08-05 23:15:29 +0000 | [diff] [blame] | 67 | |
Chris Lattner | 4d15a0d | 2007-08-25 01:42:24 +0000 | [diff] [blame] | 68 | return StmtClassInfo[E]; |
| 69 | } |
| 70 | |
Craig Topper | 3793291 | 2013-08-18 10:09:15 +0000 | [diff] [blame] | 71 | void *Stmt::operator new(size_t bytes, const ASTContext& C, |
Craig Topper | 5a05001 | 2013-08-18 17:45:38 +0000 | [diff] [blame] | 72 | unsigned alignment) { |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 73 | return ::operator new(bytes, C, alignment); |
| 74 | } |
| 75 | |
Steve Naroff | f1e5369 | 2007-03-23 22:27:02 +0000 | [diff] [blame] | 76 | const char *Stmt::getStmtClassName() const { |
John McCall | 925b1662 | 2010-10-26 08:39:16 +0000 | [diff] [blame] | 77 | return getStmtInfoTableEntry((StmtClass) StmtBits.sClass).Name; |
Steve Naroff | f1e5369 | 2007-03-23 22:27:02 +0000 | [diff] [blame] | 78 | } |
Steve Naroff | f84d11f | 2007-05-23 21:48:04 +0000 | [diff] [blame] | 79 | |
Bruno Ricci | 65034b8 | 2018-12-04 16:04:19 +0000 | [diff] [blame] | 80 | // Check that no statement / expression class is polymorphic. LLVM style RTTI |
| 81 | // should be used instead. If absolutely needed an exception can still be added |
| 82 | // here by defining the appropriate macro (but please don't do this). |
| 83 | #define STMT(CLASS, PARENT) \ |
| 84 | static_assert(!std::is_polymorphic<CLASS>::value, \ |
| 85 | #CLASS " should not be polymorphic!"); |
| 86 | #include "clang/AST/StmtNodes.inc" |
| 87 | |
Bruno Ricci | c397a26 | 2019-08-27 11:35:49 +0000 | [diff] [blame] | 88 | // Check that no statement / expression class has a non-trival destructor. |
| 89 | // Statements and expressions are allocated with the BumpPtrAllocator from |
| 90 | // ASTContext and therefore their destructor is not executed. |
| 91 | #define STMT(CLASS, PARENT) \ |
| 92 | static_assert(std::is_trivially_destructible<CLASS>::value, \ |
| 93 | #CLASS " should be trivially destructible!"); |
| 94 | // FIXME: InitListExpr is not trivially destructible due to its ASTVector. |
| 95 | #define INITLISTEXPR(CLASS, PARENT) |
| 96 | #include "clang/AST/StmtNodes.inc" |
| 97 | |
Steve Naroff | f84d11f | 2007-05-23 21:48:04 +0000 | [diff] [blame] | 98 | void Stmt::PrintStats() { |
Chris Lattner | 4d15a0d | 2007-08-25 01:42:24 +0000 | [diff] [blame] | 99 | // Ensure the table is primed. |
| 100 | getStmtInfoTableEntry(Stmt::NullStmtClass); |
Nico Weber | de565e3 | 2008-08-05 23:15:29 +0000 | [diff] [blame] | 101 | |
Steve Naroff | f84d11f | 2007-05-23 21:48:04 +0000 | [diff] [blame] | 102 | unsigned sum = 0; |
Chandler Carruth | bfb154a | 2011-07-04 06:13:27 +0000 | [diff] [blame] | 103 | llvm::errs() << "\n*** Stmt/Expr Stats:\n"; |
Alexis Hunt | 656bb31 | 2010-05-05 15:24:00 +0000 | [diff] [blame] | 104 | for (int i = 0; i != Stmt::lastStmtConstant+1; i++) { |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 105 | if (StmtClassInfo[i].Name == nullptr) continue; |
Chris Lattner | 4d15a0d | 2007-08-25 01:42:24 +0000 | [diff] [blame] | 106 | sum += StmtClassInfo[i].Counter; |
Steve Naroff | f84d11f | 2007-05-23 21:48:04 +0000 | [diff] [blame] | 107 | } |
Chandler Carruth | bfb154a | 2011-07-04 06:13:27 +0000 | [diff] [blame] | 108 | llvm::errs() << " " << sum << " stmts/exprs total.\n"; |
Steve Naroff | f84d11f | 2007-05-23 21:48:04 +0000 | [diff] [blame] | 109 | sum = 0; |
Alexis Hunt | 656bb31 | 2010-05-05 15:24:00 +0000 | [diff] [blame] | 110 | for (int i = 0; i != Stmt::lastStmtConstant+1; i++) { |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 111 | if (StmtClassInfo[i].Name == nullptr) continue; |
Douglas Gregor | a30d046 | 2009-05-26 14:40:08 +0000 | [diff] [blame] | 112 | if (StmtClassInfo[i].Counter == 0) continue; |
Chandler Carruth | bfb154a | 2011-07-04 06:13:27 +0000 | [diff] [blame] | 113 | llvm::errs() << " " << StmtClassInfo[i].Counter << " " |
| 114 | << StmtClassInfo[i].Name << ", " << StmtClassInfo[i].Size |
| 115 | << " each (" << StmtClassInfo[i].Counter*StmtClassInfo[i].Size |
| 116 | << " bytes)\n"; |
Chris Lattner | 4d15a0d | 2007-08-25 01:42:24 +0000 | [diff] [blame] | 117 | sum += StmtClassInfo[i].Counter*StmtClassInfo[i].Size; |
Steve Naroff | f84d11f | 2007-05-23 21:48:04 +0000 | [diff] [blame] | 118 | } |
Chandler Carruth | bfb154a | 2011-07-04 06:13:27 +0000 | [diff] [blame] | 119 | |
| 120 | llvm::errs() << "Total bytes = " << sum << "\n"; |
Steve Naroff | f84d11f | 2007-05-23 21:48:04 +0000 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | void Stmt::addStmtClass(StmtClass s) { |
Chris Lattner | 4d15a0d | 2007-08-25 01:42:24 +0000 | [diff] [blame] | 124 | ++getStmtInfoTableEntry(s).Counter; |
Steve Naroff | f84d11f | 2007-05-23 21:48:04 +0000 | [diff] [blame] | 125 | } |
| 126 | |
Daniel Dunbar | 6290557 | 2012-03-05 21:42:49 +0000 | [diff] [blame] | 127 | bool Stmt::StatisticsEnabled = false; |
| 128 | void Stmt::EnableStatistics() { |
| 129 | StatisticsEnabled = true; |
Steve Naroff | f84d11f | 2007-05-23 21:48:04 +0000 | [diff] [blame] | 130 | } |
| 131 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 132 | /// Skip no-op (attributed, compound) container stmts and skip captured |
Alexander Musman | a5f070a | 2014-10-01 06:03:56 +0000 | [diff] [blame] | 133 | /// stmt at the top, if \a IgnoreCaptured is true. |
| 134 | Stmt *Stmt::IgnoreContainers(bool IgnoreCaptured) { |
| 135 | Stmt *S = this; |
| 136 | if (IgnoreCaptured) |
| 137 | if (auto CapS = dyn_cast_or_null<CapturedStmt>(S)) |
| 138 | S = CapS->getCapturedStmt(); |
| 139 | while (true) { |
| 140 | if (auto AS = dyn_cast_or_null<AttributedStmt>(S)) |
| 141 | S = AS->getSubStmt(); |
| 142 | else if (auto CS = dyn_cast_or_null<CompoundStmt>(S)) { |
| 143 | if (CS->size() != 1) |
| 144 | break; |
| 145 | S = CS->body_back(); |
| 146 | } else |
| 147 | break; |
| 148 | } |
| 149 | return S; |
| 150 | } |
| 151 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 152 | /// Strip off all label-like statements. |
Chandler Carruth | a626d64 | 2011-09-10 00:02:34 +0000 | [diff] [blame] | 153 | /// |
Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 154 | /// This will strip off label statements, case statements, attributed |
| 155 | /// statements and default statements recursively. |
Chandler Carruth | a626d64 | 2011-09-10 00:02:34 +0000 | [diff] [blame] | 156 | const Stmt *Stmt::stripLabelLikeStatements() const { |
| 157 | const Stmt *S = this; |
| 158 | while (true) { |
Eugene Zelenko | 7855e77 | 2018-04-03 00:11:50 +0000 | [diff] [blame] | 159 | if (const auto *LS = dyn_cast<LabelStmt>(S)) |
Chandler Carruth | a626d64 | 2011-09-10 00:02:34 +0000 | [diff] [blame] | 160 | S = LS->getSubStmt(); |
Eugene Zelenko | 7855e77 | 2018-04-03 00:11:50 +0000 | [diff] [blame] | 161 | else if (const auto *SC = dyn_cast<SwitchCase>(S)) |
Chandler Carruth | a626d64 | 2011-09-10 00:02:34 +0000 | [diff] [blame] | 162 | S = SC->getSubStmt(); |
Eugene Zelenko | 7855e77 | 2018-04-03 00:11:50 +0000 | [diff] [blame] | 163 | else if (const auto *AS = dyn_cast<AttributedStmt>(S)) |
Richard Smith | c202b28 | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 164 | S = AS->getSubStmt(); |
Chandler Carruth | a626d64 | 2011-09-10 00:02:34 +0000 | [diff] [blame] | 165 | else |
| 166 | return S; |
| 167 | } |
| 168 | } |
| 169 | |
John McCall | bd06678 | 2011-02-09 08:16:59 +0000 | [diff] [blame] | 170 | namespace { |
Eugene Zelenko | 1eab6c1 | 2017-11-14 23:35:42 +0000 | [diff] [blame] | 171 | |
John McCall | bd06678 | 2011-02-09 08:16:59 +0000 | [diff] [blame] | 172 | struct good {}; |
| 173 | struct bad {}; |
John McCall | f75152f | 2011-02-09 08:31:17 +0000 | [diff] [blame] | 174 | |
| 175 | // These silly little functions have to be static inline to suppress |
| 176 | // unused warnings, and they have to be defined to suppress other |
| 177 | // warnings. |
Eugene Zelenko | 7855e77 | 2018-04-03 00:11:50 +0000 | [diff] [blame] | 178 | static good is_good(good) { return good(); } |
John McCall | bd06678 | 2011-02-09 08:16:59 +0000 | [diff] [blame] | 179 | |
| 180 | typedef Stmt::child_range children_t(); |
Nick Lewycky | bae992f | 2011-02-09 08:42:57 +0000 | [diff] [blame] | 181 | template <class T> good implements_children(children_t T::*) { |
| 182 | return good(); |
| 183 | } |
Eli Friedman | dc41d79 | 2013-09-10 22:57:15 +0000 | [diff] [blame] | 184 | LLVM_ATTRIBUTE_UNUSED |
Eugene Zelenko | 7855e77 | 2018-04-03 00:11:50 +0000 | [diff] [blame] | 185 | static bad implements_children(children_t Stmt::*) { |
Nick Lewycky | bae992f | 2011-02-09 08:42:57 +0000 | [diff] [blame] | 186 | return bad(); |
| 187 | } |
John McCall | bd06678 | 2011-02-09 08:16:59 +0000 | [diff] [blame] | 188 | |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 189 | typedef SourceLocation getBeginLoc_t() const; |
| 190 | template <class T> good implements_getBeginLoc(getBeginLoc_t T::*) { |
Nick Lewycky | bae992f | 2011-02-09 08:42:57 +0000 | [diff] [blame] | 191 | return good(); |
| 192 | } |
Eli Friedman | dc41d79 | 2013-09-10 22:57:15 +0000 | [diff] [blame] | 193 | LLVM_ATTRIBUTE_UNUSED |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 194 | static bad implements_getBeginLoc(getBeginLoc_t Stmt::*) { return bad(); } |
Erik Verbruggen | 11a2ecc | 2012-12-25 14:51:39 +0000 | [diff] [blame] | 195 | |
| 196 | typedef SourceLocation getLocEnd_t() const; |
Stephen Kelly | 1c301dc | 2018-08-09 21:09:38 +0000 | [diff] [blame] | 197 | template <class T> good implements_getEndLoc(getLocEnd_t T::*) { |
Erik Verbruggen | 11a2ecc | 2012-12-25 14:51:39 +0000 | [diff] [blame] | 198 | return good(); |
| 199 | } |
Eli Friedman | dc41d79 | 2013-09-10 22:57:15 +0000 | [diff] [blame] | 200 | LLVM_ATTRIBUTE_UNUSED |
Stephen Kelly | 1c301dc | 2018-08-09 21:09:38 +0000 | [diff] [blame] | 201 | static bad implements_getEndLoc(getLocEnd_t Stmt::*) { return bad(); } |
John McCall | bd06678 | 2011-02-09 08:16:59 +0000 | [diff] [blame] | 202 | |
| 203 | #define ASSERT_IMPLEMENTS_children(type) \ |
Eli Friedman | dc41d79 | 2013-09-10 22:57:15 +0000 | [diff] [blame] | 204 | (void) is_good(implements_children(&type::children)) |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 205 | #define ASSERT_IMPLEMENTS_getBeginLoc(type) \ |
| 206 | (void)is_good(implements_getBeginLoc(&type::getBeginLoc)) |
Stephen Kelly | 1c301dc | 2018-08-09 21:09:38 +0000 | [diff] [blame] | 207 | #define ASSERT_IMPLEMENTS_getEndLoc(type) \ |
| 208 | (void)is_good(implements_getEndLoc(&type::getEndLoc)) |
Eugene Zelenko | 1eab6c1 | 2017-11-14 23:35:42 +0000 | [diff] [blame] | 209 | |
| 210 | } // namespace |
John McCall | bd06678 | 2011-02-09 08:16:59 +0000 | [diff] [blame] | 211 | |
| 212 | /// Check whether the various Stmt classes implement their member |
| 213 | /// functions. |
Eli Friedman | dc41d79 | 2013-09-10 22:57:15 +0000 | [diff] [blame] | 214 | LLVM_ATTRIBUTE_UNUSED |
John McCall | bd06678 | 2011-02-09 08:16:59 +0000 | [diff] [blame] | 215 | static inline void check_implementations() { |
| 216 | #define ABSTRACT_STMT(type) |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 217 | #define STMT(type, base) \ |
| 218 | ASSERT_IMPLEMENTS_children(type); \ |
| 219 | ASSERT_IMPLEMENTS_getBeginLoc(type); \ |
Stephen Kelly | 1c301dc | 2018-08-09 21:09:38 +0000 | [diff] [blame] | 220 | ASSERT_IMPLEMENTS_getEndLoc(type); |
John McCall | bd06678 | 2011-02-09 08:16:59 +0000 | [diff] [blame] | 221 | #include "clang/AST/StmtNodes.inc" |
| 222 | } |
| 223 | |
| 224 | Stmt::child_range Stmt::children() { |
| 225 | switch (getStmtClass()) { |
| 226 | case Stmt::NoStmtClass: llvm_unreachable("statement without class"); |
| 227 | #define ABSTRACT_STMT(type) |
| 228 | #define STMT(type, base) \ |
| 229 | case Stmt::type##Class: \ |
| 230 | return static_cast<type*>(this)->children(); |
| 231 | #include "clang/AST/StmtNodes.inc" |
| 232 | } |
| 233 | llvm_unreachable("unknown statement kind!"); |
John McCall | bd06678 | 2011-02-09 08:16:59 +0000 | [diff] [blame] | 234 | } |
| 235 | |
Erik Verbruggen | 11a2ecc | 2012-12-25 14:51:39 +0000 | [diff] [blame] | 236 | // Amusing macro metaprogramming hack: check whether a class provides |
| 237 | // a more specific implementation of getSourceRange. |
| 238 | // |
| 239 | // See also Expr.cpp:getExprLoc(). |
| 240 | namespace { |
Eugene Zelenko | 1eab6c1 | 2017-11-14 23:35:42 +0000 | [diff] [blame] | 241 | |
Erik Verbruggen | 11a2ecc | 2012-12-25 14:51:39 +0000 | [diff] [blame] | 242 | /// This implementation is used when a class provides a custom |
| 243 | /// implementation of getSourceRange. |
| 244 | template <class S, class T> |
| 245 | SourceRange getSourceRangeImpl(const Stmt *stmt, |
| 246 | SourceRange (T::*v)() const) { |
| 247 | return static_cast<const S*>(stmt)->getSourceRange(); |
| 248 | } |
| 249 | |
| 250 | /// This implementation is used when a class doesn't provide a custom |
| 251 | /// implementation of getSourceRange. Overload resolution should pick it over |
| 252 | /// the implementation above because it's more specialized according to |
| 253 | /// function template partial ordering. |
| 254 | template <class S> |
| 255 | SourceRange getSourceRangeImpl(const Stmt *stmt, |
| 256 | SourceRange (Stmt::*v)() const) { |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 257 | return SourceRange(static_cast<const S *>(stmt)->getBeginLoc(), |
Stephen Kelly | 1c301dc | 2018-08-09 21:09:38 +0000 | [diff] [blame] | 258 | static_cast<const S *>(stmt)->getEndLoc()); |
Erik Verbruggen | 11a2ecc | 2012-12-25 14:51:39 +0000 | [diff] [blame] | 259 | } |
Eugene Zelenko | 1eab6c1 | 2017-11-14 23:35:42 +0000 | [diff] [blame] | 260 | |
| 261 | } // namespace |
Erik Verbruggen | 11a2ecc | 2012-12-25 14:51:39 +0000 | [diff] [blame] | 262 | |
John McCall | bd06678 | 2011-02-09 08:16:59 +0000 | [diff] [blame] | 263 | SourceRange Stmt::getSourceRange() const { |
| 264 | switch (getStmtClass()) { |
| 265 | case Stmt::NoStmtClass: llvm_unreachable("statement without class"); |
| 266 | #define ABSTRACT_STMT(type) |
| 267 | #define STMT(type, base) \ |
| 268 | case Stmt::type##Class: \ |
Erik Verbruggen | 11a2ecc | 2012-12-25 14:51:39 +0000 | [diff] [blame] | 269 | return getSourceRangeImpl<type>(this, &type::getSourceRange); |
John McCall | bd06678 | 2011-02-09 08:16:59 +0000 | [diff] [blame] | 270 | #include "clang/AST/StmtNodes.inc" |
| 271 | } |
| 272 | llvm_unreachable("unknown statement kind!"); |
John McCall | bd06678 | 2011-02-09 08:16:59 +0000 | [diff] [blame] | 273 | } |
| 274 | |
Stephen Kelly | 724e9e5 | 2018-08-09 20:05:03 +0000 | [diff] [blame] | 275 | SourceLocation Stmt::getBeginLoc() const { |
Daniel Dunbar | b0ab5e9 | 2012-03-09 15:39:19 +0000 | [diff] [blame] | 276 | switch (getStmtClass()) { |
| 277 | case Stmt::NoStmtClass: llvm_unreachable("statement without class"); |
| 278 | #define ABSTRACT_STMT(type) |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 279 | #define STMT(type, base) \ |
| 280 | case Stmt::type##Class: \ |
| 281 | return static_cast<const type *>(this)->getBeginLoc(); |
Daniel Dunbar | b0ab5e9 | 2012-03-09 15:39:19 +0000 | [diff] [blame] | 282 | #include "clang/AST/StmtNodes.inc" |
| 283 | } |
| 284 | llvm_unreachable("unknown statement kind"); |
| 285 | } |
| 286 | |
Stephen Kelly | 02a67ba | 2018-08-09 20:05:47 +0000 | [diff] [blame] | 287 | SourceLocation Stmt::getEndLoc() const { |
Daniel Dunbar | b0ab5e9 | 2012-03-09 15:39:19 +0000 | [diff] [blame] | 288 | switch (getStmtClass()) { |
| 289 | case Stmt::NoStmtClass: llvm_unreachable("statement without class"); |
| 290 | #define ABSTRACT_STMT(type) |
Stephen Kelly | 1c301dc | 2018-08-09 21:09:38 +0000 | [diff] [blame] | 291 | #define STMT(type, base) \ |
| 292 | case Stmt::type##Class: \ |
| 293 | return static_cast<const type *>(this)->getEndLoc(); |
Daniel Dunbar | b0ab5e9 | 2012-03-09 15:39:19 +0000 | [diff] [blame] | 294 | #include "clang/AST/StmtNodes.inc" |
| 295 | } |
| 296 | llvm_unreachable("unknown statement kind"); |
| 297 | } |
| 298 | |
George Karpenkov | 5eb4cc6 | 2018-09-15 02:01:47 +0000 | [diff] [blame] | 299 | int64_t Stmt::getID(const ASTContext &Context) const { |
Artem Dergachev | 057647d | 2018-12-03 22:19:05 +0000 | [diff] [blame] | 300 | return Context.getAllocator().identifyKnownAlignedObject<Stmt>(this); |
George Karpenkov | 5eb4cc6 | 2018-09-15 02:01:47 +0000 | [diff] [blame] | 301 | } |
| 302 | |
Benjamin Kramer | 0742090 | 2017-12-24 16:24:20 +0000 | [diff] [blame] | 303 | CompoundStmt::CompoundStmt(ArrayRef<Stmt *> Stmts, SourceLocation LB, |
| 304 | SourceLocation RB) |
Bruno Ricci | 41d11c0 | 2018-10-27 18:43:27 +0000 | [diff] [blame] | 305 | : Stmt(CompoundStmtClass), RBraceLoc(RB) { |
Nico Weber | a2a0eb9 | 2012-12-29 20:03:39 +0000 | [diff] [blame] | 306 | CompoundStmtBits.NumStmts = Stmts.size(); |
Benjamin Kramer | 0742090 | 2017-12-24 16:24:20 +0000 | [diff] [blame] | 307 | setStmts(Stmts); |
Bruno Ricci | 41d11c0 | 2018-10-27 18:43:27 +0000 | [diff] [blame] | 308 | CompoundStmtBits.LBraceLoc = LB; |
Benjamin Kramer | e2a929d | 2012-07-04 17:03:41 +0000 | [diff] [blame] | 309 | } |
| 310 | |
Benjamin Kramer | 0742090 | 2017-12-24 16:24:20 +0000 | [diff] [blame] | 311 | void CompoundStmt::setStmts(ArrayRef<Stmt *> Stmts) { |
Craig Topper | 9ee84ad | 2015-12-04 05:01:44 +0000 | [diff] [blame] | 312 | assert(CompoundStmtBits.NumStmts == Stmts.size() && |
| 313 | "NumStmts doesn't fit in bits of CompoundStmtBits.NumStmts!"); |
Douglas Gregor | a9af1d1 | 2009-04-17 00:04:06 +0000 | [diff] [blame] | 314 | |
Benjamin Kramer | 0742090 | 2017-12-24 16:24:20 +0000 | [diff] [blame] | 315 | std::copy(Stmts.begin(), Stmts.end(), body_begin()); |
| 316 | } |
| 317 | |
| 318 | CompoundStmt *CompoundStmt::Create(const ASTContext &C, ArrayRef<Stmt *> Stmts, |
| 319 | SourceLocation LB, SourceLocation RB) { |
| 320 | void *Mem = |
| 321 | C.Allocate(totalSizeToAlloc<Stmt *>(Stmts.size()), alignof(CompoundStmt)); |
| 322 | return new (Mem) CompoundStmt(Stmts, LB, RB); |
| 323 | } |
| 324 | |
| 325 | CompoundStmt *CompoundStmt::CreateEmpty(const ASTContext &C, |
| 326 | unsigned NumStmts) { |
| 327 | void *Mem = |
| 328 | C.Allocate(totalSizeToAlloc<Stmt *>(NumStmts), alignof(CompoundStmt)); |
| 329 | CompoundStmt *New = new (Mem) CompoundStmt(EmptyShell()); |
| 330 | New->CompoundStmtBits.NumStmts = NumStmts; |
| 331 | return New; |
Douglas Gregor | a9af1d1 | 2009-04-17 00:04:06 +0000 | [diff] [blame] | 332 | } |
Steve Naroff | f84d11f | 2007-05-23 21:48:04 +0000 | [diff] [blame] | 333 | |
Richard Smith | a6e8d5e | 2019-02-15 00:27:53 +0000 | [diff] [blame] | 334 | const Expr *ValueStmt::getExprStmt() const { |
| 335 | const Stmt *S = this; |
| 336 | do { |
| 337 | if (const auto *E = dyn_cast<Expr>(S)) |
| 338 | return E; |
| 339 | |
| 340 | if (const auto *LS = dyn_cast<LabelStmt>(S)) |
| 341 | S = LS->getSubStmt(); |
| 342 | else if (const auto *AS = dyn_cast<AttributedStmt>(S)) |
| 343 | S = AS->getSubStmt(); |
| 344 | else |
| 345 | llvm_unreachable("unknown kind of ValueStmt"); |
| 346 | } while (isa<ValueStmt>(S)); |
| 347 | |
| 348 | return nullptr; |
| 349 | } |
| 350 | |
Chris Lattner | eefa10e | 2007-05-28 06:56:27 +0000 | [diff] [blame] | 351 | const char *LabelStmt::getName() const { |
Chris Lattner | c8e630e | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 352 | return getDecl()->getIdentifier()->getNameStart(); |
Chris Lattner | eefa10e | 2007-05-28 06:56:27 +0000 | [diff] [blame] | 353 | } |
| 354 | |
Craig Topper | e6960e2 | 2013-08-22 05:28:54 +0000 | [diff] [blame] | 355 | AttributedStmt *AttributedStmt::Create(const ASTContext &C, SourceLocation Loc, |
Alexander Kornienko | 20f6fc6 | 2012-07-09 10:04:07 +0000 | [diff] [blame] | 356 | ArrayRef<const Attr*> Attrs, |
| 357 | Stmt *SubStmt) { |
Aaron Ballman | f3d9b09 | 2014-05-13 14:55:01 +0000 | [diff] [blame] | 358 | assert(!Attrs.empty() && "Attrs should not be empty"); |
Benjamin Kramer | 917fdbe | 2017-12-24 16:24:11 +0000 | [diff] [blame] | 359 | void *Mem = C.Allocate(totalSizeToAlloc<const Attr *>(Attrs.size()), |
Benjamin Kramer | c3f8925 | 2016-10-20 14:27:22 +0000 | [diff] [blame] | 360 | alignof(AttributedStmt)); |
Alexander Kornienko | 20f6fc6 | 2012-07-09 10:04:07 +0000 | [diff] [blame] | 361 | return new (Mem) AttributedStmt(Loc, Attrs, SubStmt); |
| 362 | } |
| 363 | |
Craig Topper | e6960e2 | 2013-08-22 05:28:54 +0000 | [diff] [blame] | 364 | AttributedStmt *AttributedStmt::CreateEmpty(const ASTContext &C, |
| 365 | unsigned NumAttrs) { |
Alexander Kornienko | 20f6fc6 | 2012-07-09 10:04:07 +0000 | [diff] [blame] | 366 | assert(NumAttrs > 0 && "NumAttrs should be greater than zero"); |
Benjamin Kramer | 917fdbe | 2017-12-24 16:24:11 +0000 | [diff] [blame] | 367 | void *Mem = C.Allocate(totalSizeToAlloc<const Attr *>(NumAttrs), |
Benjamin Kramer | c3f8925 | 2016-10-20 14:27:22 +0000 | [diff] [blame] | 368 | alignof(AttributedStmt)); |
Alexander Kornienko | 20f6fc6 | 2012-07-09 10:04:07 +0000 | [diff] [blame] | 369 | return new (Mem) AttributedStmt(EmptyShell(), NumAttrs); |
| 370 | } |
| 371 | |
Craig Topper | c571c81 | 2013-08-22 06:02:26 +0000 | [diff] [blame] | 372 | std::string AsmStmt::generateAsmString(const ASTContext &C) const { |
Eugene Zelenko | 7855e77 | 2018-04-03 00:11:50 +0000 | [diff] [blame] | 373 | if (const auto *gccAsmStmt = dyn_cast<GCCAsmStmt>(this)) |
Chad Rosier | f70b7e2 | 2012-08-28 18:21:14 +0000 | [diff] [blame] | 374 | return gccAsmStmt->generateAsmString(C); |
Eugene Zelenko | 7855e77 | 2018-04-03 00:11:50 +0000 | [diff] [blame] | 375 | if (const auto *msAsmStmt = dyn_cast<MSAsmStmt>(this)) |
Chad Rosier | f70b7e2 | 2012-08-28 18:21:14 +0000 | [diff] [blame] | 376 | return msAsmStmt->generateAsmString(C); |
Chad Rosier | bbbe9ab | 2012-08-28 17:43:23 +0000 | [diff] [blame] | 377 | llvm_unreachable("unknown asm statement kind!"); |
| 378 | } |
| 379 | |
| 380 | StringRef AsmStmt::getOutputConstraint(unsigned i) const { |
Eugene Zelenko | 7855e77 | 2018-04-03 00:11:50 +0000 | [diff] [blame] | 381 | if (const auto *gccAsmStmt = dyn_cast<GCCAsmStmt>(this)) |
Chad Rosier | f70b7e2 | 2012-08-28 18:21:14 +0000 | [diff] [blame] | 382 | return gccAsmStmt->getOutputConstraint(i); |
Eugene Zelenko | 7855e77 | 2018-04-03 00:11:50 +0000 | [diff] [blame] | 383 | if (const auto *msAsmStmt = dyn_cast<MSAsmStmt>(this)) |
Chad Rosier | f70b7e2 | 2012-08-28 18:21:14 +0000 | [diff] [blame] | 384 | return msAsmStmt->getOutputConstraint(i); |
Chad Rosier | bbbe9ab | 2012-08-28 17:43:23 +0000 | [diff] [blame] | 385 | llvm_unreachable("unknown asm statement kind!"); |
| 386 | } |
| 387 | |
| 388 | const Expr *AsmStmt::getOutputExpr(unsigned i) const { |
Eugene Zelenko | 7855e77 | 2018-04-03 00:11:50 +0000 | [diff] [blame] | 389 | if (const auto *gccAsmStmt = dyn_cast<GCCAsmStmt>(this)) |
Chad Rosier | f70b7e2 | 2012-08-28 18:21:14 +0000 | [diff] [blame] | 390 | return gccAsmStmt->getOutputExpr(i); |
Eugene Zelenko | 7855e77 | 2018-04-03 00:11:50 +0000 | [diff] [blame] | 391 | if (const auto *msAsmStmt = dyn_cast<MSAsmStmt>(this)) |
Chad Rosier | f70b7e2 | 2012-08-28 18:21:14 +0000 | [diff] [blame] | 392 | return msAsmStmt->getOutputExpr(i); |
Chad Rosier | bbbe9ab | 2012-08-28 17:43:23 +0000 | [diff] [blame] | 393 | llvm_unreachable("unknown asm statement kind!"); |
| 394 | } |
| 395 | |
| 396 | StringRef AsmStmt::getInputConstraint(unsigned i) const { |
Eugene Zelenko | 7855e77 | 2018-04-03 00:11:50 +0000 | [diff] [blame] | 397 | if (const auto *gccAsmStmt = dyn_cast<GCCAsmStmt>(this)) |
Chad Rosier | f70b7e2 | 2012-08-28 18:21:14 +0000 | [diff] [blame] | 398 | return gccAsmStmt->getInputConstraint(i); |
Eugene Zelenko | 7855e77 | 2018-04-03 00:11:50 +0000 | [diff] [blame] | 399 | if (const auto *msAsmStmt = dyn_cast<MSAsmStmt>(this)) |
Chad Rosier | f70b7e2 | 2012-08-28 18:21:14 +0000 | [diff] [blame] | 400 | return msAsmStmt->getInputConstraint(i); |
Chad Rosier | bbbe9ab | 2012-08-28 17:43:23 +0000 | [diff] [blame] | 401 | llvm_unreachable("unknown asm statement kind!"); |
| 402 | } |
| 403 | |
| 404 | const Expr *AsmStmt::getInputExpr(unsigned i) const { |
Eugene Zelenko | 7855e77 | 2018-04-03 00:11:50 +0000 | [diff] [blame] | 405 | if (const auto *gccAsmStmt = dyn_cast<GCCAsmStmt>(this)) |
Chad Rosier | f70b7e2 | 2012-08-28 18:21:14 +0000 | [diff] [blame] | 406 | return gccAsmStmt->getInputExpr(i); |
Eugene Zelenko | 7855e77 | 2018-04-03 00:11:50 +0000 | [diff] [blame] | 407 | if (const auto *msAsmStmt = dyn_cast<MSAsmStmt>(this)) |
Chad Rosier | f70b7e2 | 2012-08-28 18:21:14 +0000 | [diff] [blame] | 408 | return msAsmStmt->getInputExpr(i); |
Chad Rosier | bbbe9ab | 2012-08-28 17:43:23 +0000 | [diff] [blame] | 409 | llvm_unreachable("unknown asm statement kind!"); |
| 410 | } |
| 411 | |
| 412 | StringRef AsmStmt::getClobber(unsigned i) const { |
Eugene Zelenko | 7855e77 | 2018-04-03 00:11:50 +0000 | [diff] [blame] | 413 | if (const auto *gccAsmStmt = dyn_cast<GCCAsmStmt>(this)) |
Chad Rosier | f70b7e2 | 2012-08-28 18:21:14 +0000 | [diff] [blame] | 414 | return gccAsmStmt->getClobber(i); |
Eugene Zelenko | 7855e77 | 2018-04-03 00:11:50 +0000 | [diff] [blame] | 415 | if (const auto *msAsmStmt = dyn_cast<MSAsmStmt>(this)) |
Chad Rosier | f70b7e2 | 2012-08-28 18:21:14 +0000 | [diff] [blame] | 416 | return msAsmStmt->getClobber(i); |
Chad Rosier | bbbe9ab | 2012-08-28 17:43:23 +0000 | [diff] [blame] | 417 | llvm_unreachable("unknown asm statement kind!"); |
| 418 | } |
| 419 | |
Chad Rosier | a1b5c8c | 2012-08-28 00:24:05 +0000 | [diff] [blame] | 420 | /// getNumPlusOperands - Return the number of output operands that have a "+" |
| 421 | /// constraint. |
| 422 | unsigned AsmStmt::getNumPlusOperands() const { |
| 423 | unsigned Res = 0; |
| 424 | for (unsigned i = 0, e = getNumOutputs(); i != e; ++i) |
| 425 | if (isOutputPlusConstraint(i)) |
| 426 | ++Res; |
| 427 | return Res; |
| 428 | } |
| 429 | |
Akira Hatanaka | 987f186 | 2014-08-22 06:05:21 +0000 | [diff] [blame] | 430 | char GCCAsmStmt::AsmStringPiece::getModifier() const { |
| 431 | assert(isOperand() && "Only Operands can have modifiers."); |
| 432 | return isLetter(Str[0]) ? Str[0] : '\0'; |
| 433 | } |
| 434 | |
Chad Rosier | 6100ae1 | 2012-08-27 23:47:56 +0000 | [diff] [blame] | 435 | StringRef GCCAsmStmt::getClobber(unsigned i) const { |
| 436 | return getClobberStringLiteral(i)->getString(); |
| 437 | } |
| 438 | |
Chad Rosier | de70e0e | 2012-08-25 00:11:56 +0000 | [diff] [blame] | 439 | Expr *GCCAsmStmt::getOutputExpr(unsigned i) { |
Ted Kremenek | 5778acf | 2008-10-27 18:40:21 +0000 | [diff] [blame] | 440 | return cast<Expr>(Exprs[i]); |
| 441 | } |
Chris Lattner | 72bbf17 | 2009-03-10 04:59:06 +0000 | [diff] [blame] | 442 | |
| 443 | /// getOutputConstraint - Return the constraint string for the specified |
| 444 | /// output operand. All output constraints are known to be non-empty (either |
| 445 | /// '=' or '+'). |
Chad Rosier | de70e0e | 2012-08-25 00:11:56 +0000 | [diff] [blame] | 446 | StringRef GCCAsmStmt::getOutputConstraint(unsigned i) const { |
Anders Carlsson | 66de081 | 2010-01-30 20:38:10 +0000 | [diff] [blame] | 447 | return getOutputConstraintLiteral(i)->getString(); |
Ted Kremenek | 5778acf | 2008-10-27 18:40:21 +0000 | [diff] [blame] | 448 | } |
Chris Lattner | 72bbf17 | 2009-03-10 04:59:06 +0000 | [diff] [blame] | 449 | |
Chad Rosier | de70e0e | 2012-08-25 00:11:56 +0000 | [diff] [blame] | 450 | Expr *GCCAsmStmt::getInputExpr(unsigned i) { |
Ted Kremenek | 5778acf | 2008-10-27 18:40:21 +0000 | [diff] [blame] | 451 | return cast<Expr>(Exprs[i + NumOutputs]); |
| 452 | } |
Eugene Zelenko | 1eab6c1 | 2017-11-14 23:35:42 +0000 | [diff] [blame] | 453 | |
Chad Rosier | de70e0e | 2012-08-25 00:11:56 +0000 | [diff] [blame] | 454 | void GCCAsmStmt::setInputExpr(unsigned i, Expr *E) { |
Chris Lattner | 93ede02 | 2011-02-21 22:09:29 +0000 | [diff] [blame] | 455 | Exprs[i + NumOutputs] = E; |
| 456 | } |
| 457 | |
Jennifer Yu | b8fee67 | 2019-06-03 15:57:25 +0000 | [diff] [blame] | 458 | AddrLabelExpr *GCCAsmStmt::getLabelExpr(unsigned i) const { |
Bill Wendling | 50cac24 | 2020-02-24 18:32:50 -0800 | [diff] [blame] | 459 | return cast<AddrLabelExpr>(Exprs[i + NumOutputs + NumInputs]); |
Jennifer Yu | b8fee67 | 2019-06-03 15:57:25 +0000 | [diff] [blame] | 460 | } |
| 461 | |
| 462 | StringRef GCCAsmStmt::getLabelName(unsigned i) const { |
| 463 | return getLabelExpr(i)->getLabel()->getName(); |
| 464 | } |
| 465 | |
Chris Lattner | 72bbf17 | 2009-03-10 04:59:06 +0000 | [diff] [blame] | 466 | /// getInputConstraint - Return the specified input constraint. Unlike output |
| 467 | /// constraints, these can be empty. |
Chad Rosier | de70e0e | 2012-08-25 00:11:56 +0000 | [diff] [blame] | 468 | StringRef GCCAsmStmt::getInputConstraint(unsigned i) const { |
Anders Carlsson | 66de081 | 2010-01-30 20:38:10 +0000 | [diff] [blame] | 469 | return getInputConstraintLiteral(i)->getString(); |
Ted Kremenek | 5778acf | 2008-10-27 18:40:21 +0000 | [diff] [blame] | 470 | } |
| 471 | |
Craig Topper | c571c81 | 2013-08-22 06:02:26 +0000 | [diff] [blame] | 472 | void GCCAsmStmt::setOutputsAndInputsAndClobbers(const ASTContext &C, |
| 473 | IdentifierInfo **Names, |
| 474 | StringLiteral **Constraints, |
| 475 | Stmt **Exprs, |
| 476 | unsigned NumOutputs, |
| 477 | unsigned NumInputs, |
Jennifer Yu | b8fee67 | 2019-06-03 15:57:25 +0000 | [diff] [blame] | 478 | unsigned NumLabels, |
Craig Topper | c571c81 | 2013-08-22 06:02:26 +0000 | [diff] [blame] | 479 | StringLiteral **Clobbers, |
| 480 | unsigned NumClobbers) { |
Douglas Gregor | f994f06 | 2009-04-17 20:57:14 +0000 | [diff] [blame] | 481 | this->NumOutputs = NumOutputs; |
| 482 | this->NumInputs = NumInputs; |
Anders Carlsson | 98323d2 | 2010-01-30 23:19:41 +0000 | [diff] [blame] | 483 | this->NumClobbers = NumClobbers; |
Jennifer Yu | b8fee67 | 2019-06-03 15:57:25 +0000 | [diff] [blame] | 484 | this->NumLabels = NumLabels; |
| 485 | assert(!(NumOutputs && NumLabels) && "asm goto cannot have outputs"); |
Anders Carlsson | 98323d2 | 2010-01-30 23:19:41 +0000 | [diff] [blame] | 486 | |
Jennifer Yu | b8fee67 | 2019-06-03 15:57:25 +0000 | [diff] [blame] | 487 | unsigned NumExprs = NumOutputs + NumInputs + NumLabels; |
Chad Rosier | 42032fa | 2012-08-07 23:12:23 +0000 | [diff] [blame] | 488 | |
Anders Carlsson | 98323d2 | 2010-01-30 23:19:41 +0000 | [diff] [blame] | 489 | C.Deallocate(this->Names); |
| 490 | this->Names = new (C) IdentifierInfo*[NumExprs]; |
| 491 | std::copy(Names, Names + NumExprs, this->Names); |
Chad Rosier | 42032fa | 2012-08-07 23:12:23 +0000 | [diff] [blame] | 492 | |
Anders Carlsson | 98323d2 | 2010-01-30 23:19:41 +0000 | [diff] [blame] | 493 | C.Deallocate(this->Exprs); |
| 494 | this->Exprs = new (C) Stmt*[NumExprs]; |
| 495 | std::copy(Exprs, Exprs + NumExprs, this->Exprs); |
Chad Rosier | 42032fa | 2012-08-07 23:12:23 +0000 | [diff] [blame] | 496 | |
Benjamin Kramer | 851f57e | 2019-05-30 07:21:08 +0000 | [diff] [blame] | 497 | unsigned NumConstraints = NumOutputs + NumInputs; |
Anders Carlsson | 98323d2 | 2010-01-30 23:19:41 +0000 | [diff] [blame] | 498 | C.Deallocate(this->Constraints); |
Benjamin Kramer | 851f57e | 2019-05-30 07:21:08 +0000 | [diff] [blame] | 499 | this->Constraints = new (C) StringLiteral*[NumConstraints]; |
| 500 | std::copy(Constraints, Constraints + NumConstraints, this->Constraints); |
Chad Rosier | 42032fa | 2012-08-07 23:12:23 +0000 | [diff] [blame] | 501 | |
Anders Carlsson | 98323d2 | 2010-01-30 23:19:41 +0000 | [diff] [blame] | 502 | C.Deallocate(this->Clobbers); |
| 503 | this->Clobbers = new (C) StringLiteral*[NumClobbers]; |
| 504 | std::copy(Clobbers, Clobbers + NumClobbers, this->Clobbers); |
Douglas Gregor | f994f06 | 2009-04-17 20:57:14 +0000 | [diff] [blame] | 505 | } |
| 506 | |
Chris Lattner | d7d5fdf | 2009-03-10 06:33:24 +0000 | [diff] [blame] | 507 | /// getNamedOperand - Given a symbolic operand reference like %[foo], |
| 508 | /// translate this into a numeric value needed to reference the same operand. |
| 509 | /// This returns -1 if the operand name is invalid. |
Chad Rosier | de70e0e | 2012-08-25 00:11:56 +0000 | [diff] [blame] | 510 | int GCCAsmStmt::getNamedOperand(StringRef SymbolicName) const { |
Chris Lattner | d7d5fdf | 2009-03-10 06:33:24 +0000 | [diff] [blame] | 511 | unsigned NumPlusOperands = 0; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 512 | |
Chris Lattner | d7d5fdf | 2009-03-10 06:33:24 +0000 | [diff] [blame] | 513 | // Check if this is an output operand. |
| 514 | for (unsigned i = 0, e = getNumOutputs(); i != e; ++i) { |
| 515 | if (getOutputName(i) == SymbolicName) |
| 516 | return i; |
Chris Lattner | d7d5fdf | 2009-03-10 06:33:24 +0000 | [diff] [blame] | 517 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 518 | |
Chris Lattner | d7d5fdf | 2009-03-10 06:33:24 +0000 | [diff] [blame] | 519 | for (unsigned i = 0, e = getNumInputs(); i != e; ++i) |
| 520 | if (getInputName(i) == SymbolicName) |
| 521 | return getNumOutputs() + NumPlusOperands + i; |
| 522 | |
Jennifer Yu | b8fee67 | 2019-06-03 15:57:25 +0000 | [diff] [blame] | 523 | for (unsigned i = 0, e = getNumLabels(); i != e; ++i) |
| 524 | if (getLabelName(i) == SymbolicName) |
Bill Wendling | 50cac24 | 2020-02-24 18:32:50 -0800 | [diff] [blame] | 525 | return i + getNumOutputs() + getNumInputs(); |
Jennifer Yu | b8fee67 | 2019-06-03 15:57:25 +0000 | [diff] [blame] | 526 | |
Chris Lattner | d7d5fdf | 2009-03-10 06:33:24 +0000 | [diff] [blame] | 527 | // Not found. |
| 528 | return -1; |
| 529 | } |
| 530 | |
Chris Lattner | 35b5836 | 2009-03-10 23:21:44 +0000 | [diff] [blame] | 531 | /// AnalyzeAsmString - Analyze the asm string of the current asm, decomposing |
| 532 | /// it into pieces. If the asm string is erroneous, emit errors and return |
| 533 | /// true, otherwise return false. |
Chad Rosier | de70e0e | 2012-08-25 00:11:56 +0000 | [diff] [blame] | 534 | unsigned GCCAsmStmt::AnalyzeAsmString(SmallVectorImpl<AsmStringPiece>&Pieces, |
Craig Topper | c571c81 | 2013-08-22 06:02:26 +0000 | [diff] [blame] | 535 | const ASTContext &C, unsigned &DiagOffs) const { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 536 | StringRef Str = getAsmString()->getString(); |
Benjamin Kramer | 35b077e | 2010-08-17 12:54:38 +0000 | [diff] [blame] | 537 | const char *StrStart = Str.begin(); |
| 538 | const char *StrEnd = Str.end(); |
Chris Lattner | a41b847 | 2009-03-10 23:51:40 +0000 | [diff] [blame] | 539 | const char *CurPtr = StrStart; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 540 | |
Chris Lattner | 35b5836 | 2009-03-10 23:21:44 +0000 | [diff] [blame] | 541 | // "Simple" inline asms have no constraints or operands, just convert the asm |
| 542 | // string to escape $'s. |
| 543 | if (isSimple()) { |
| 544 | std::string Result; |
Chris Lattner | a41b847 | 2009-03-10 23:51:40 +0000 | [diff] [blame] | 545 | for (; CurPtr != StrEnd; ++CurPtr) { |
| 546 | switch (*CurPtr) { |
Chris Lattner | 35b5836 | 2009-03-10 23:21:44 +0000 | [diff] [blame] | 547 | case '$': |
| 548 | Result += "$$"; |
| 549 | break; |
| 550 | default: |
Chris Lattner | a41b847 | 2009-03-10 23:51:40 +0000 | [diff] [blame] | 551 | Result += *CurPtr; |
Chris Lattner | 35b5836 | 2009-03-10 23:21:44 +0000 | [diff] [blame] | 552 | break; |
| 553 | } |
| 554 | } |
| 555 | Pieces.push_back(AsmStringPiece(Result)); |
Chris Lattner | a41b847 | 2009-03-10 23:51:40 +0000 | [diff] [blame] | 556 | return 0; |
Chris Lattner | 35b5836 | 2009-03-10 23:21:44 +0000 | [diff] [blame] | 557 | } |
| 558 | |
| 559 | // CurStringPiece - The current string that we are building up as we scan the |
| 560 | // asm string. |
| 561 | std::string CurStringPiece; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 562 | |
Douglas Gregor | e8bbc12 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 563 | bool HasVariants = !C.getTargetInfo().hasNoAsmVariants(); |
Chad Rosier | 42032fa | 2012-08-07 23:12:23 +0000 | [diff] [blame] | 564 | |
Richard Smith | d18ab80 | 2016-05-16 22:52:23 +0000 | [diff] [blame] | 565 | unsigned LastAsmStringToken = 0; |
| 566 | unsigned LastAsmStringOffset = 0; |
| 567 | |
Eugene Zelenko | 1eab6c1 | 2017-11-14 23:35:42 +0000 | [diff] [blame] | 568 | while (true) { |
Chris Lattner | 35b5836 | 2009-03-10 23:21:44 +0000 | [diff] [blame] | 569 | // Done with the string? |
Chris Lattner | a41b847 | 2009-03-10 23:51:40 +0000 | [diff] [blame] | 570 | if (CurPtr == StrEnd) { |
Chris Lattner | 35b5836 | 2009-03-10 23:21:44 +0000 | [diff] [blame] | 571 | if (!CurStringPiece.empty()) |
| 572 | Pieces.push_back(AsmStringPiece(CurStringPiece)); |
Chris Lattner | a41b847 | 2009-03-10 23:51:40 +0000 | [diff] [blame] | 573 | return 0; |
Chris Lattner | 35b5836 | 2009-03-10 23:21:44 +0000 | [diff] [blame] | 574 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 575 | |
Chris Lattner | a41b847 | 2009-03-10 23:51:40 +0000 | [diff] [blame] | 576 | char CurChar = *CurPtr++; |
Chris Lattner | da081a8 | 2010-04-05 18:44:00 +0000 | [diff] [blame] | 577 | switch (CurChar) { |
| 578 | case '$': CurStringPiece += "$$"; continue; |
Chris Lattner | 1a8f394 | 2010-04-23 16:29:58 +0000 | [diff] [blame] | 579 | case '{': CurStringPiece += (HasVariants ? "$(" : "{"); continue; |
| 580 | case '|': CurStringPiece += (HasVariants ? "$|" : "|"); continue; |
| 581 | case '}': CurStringPiece += (HasVariants ? "$)" : "}"); continue; |
Chris Lattner | da081a8 | 2010-04-05 18:44:00 +0000 | [diff] [blame] | 582 | case '%': |
| 583 | break; |
| 584 | default: |
Chris Lattner | 35b5836 | 2009-03-10 23:21:44 +0000 | [diff] [blame] | 585 | CurStringPiece += CurChar; |
| 586 | continue; |
| 587 | } |
Chad Rosier | 42032fa | 2012-08-07 23:12:23 +0000 | [diff] [blame] | 588 | |
Chris Lattner | 35b5836 | 2009-03-10 23:21:44 +0000 | [diff] [blame] | 589 | // Escaped "%" character in asm string. |
Chris Lattner | 3fa25c6 | 2009-03-11 00:06:36 +0000 | [diff] [blame] | 590 | if (CurPtr == StrEnd) { |
| 591 | // % at end of string is invalid (no escape). |
| 592 | DiagOffs = CurPtr-StrStart-1; |
| 593 | return diag::err_asm_invalid_escape; |
| 594 | } |
Michael Zuckerman | 2460bad | 2016-10-31 15:27:54 +0000 | [diff] [blame] | 595 | // Handle escaped char and continue looping over the asm string. |
Chris Lattner | a41b847 | 2009-03-10 23:51:40 +0000 | [diff] [blame] | 596 | char EscapedChar = *CurPtr++; |
Michael Zuckerman | 2460bad | 2016-10-31 15:27:54 +0000 | [diff] [blame] | 597 | switch (EscapedChar) { |
| 598 | default: |
| 599 | break; |
| 600 | case '%': // %% -> % |
| 601 | case '{': // %{ -> { |
| 602 | case '}': // %} -> } |
| 603 | CurStringPiece += EscapedChar; |
Chris Lattner | 35b5836 | 2009-03-10 23:21:44 +0000 | [diff] [blame] | 604 | continue; |
Michael Zuckerman | 2460bad | 2016-10-31 15:27:54 +0000 | [diff] [blame] | 605 | case '=': // %= -> Generate a unique ID. |
Chris Lattner | 35b5836 | 2009-03-10 23:21:44 +0000 | [diff] [blame] | 606 | CurStringPiece += "${:uid}"; |
| 607 | continue; |
| 608 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 609 | |
Chris Lattner | 35b5836 | 2009-03-10 23:21:44 +0000 | [diff] [blame] | 610 | // Otherwise, we have an operand. If we have accumulated a string so far, |
| 611 | // add it to the Pieces list. |
| 612 | if (!CurStringPiece.empty()) { |
| 613 | Pieces.push_back(AsmStringPiece(CurStringPiece)); |
| 614 | CurStringPiece.clear(); |
| 615 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 616 | |
Akira Hatanaka | 987f186 | 2014-08-22 06:05:21 +0000 | [diff] [blame] | 617 | // Handle operands that have asmSymbolicName (e.g., %x[foo]) and those that |
| 618 | // don't (e.g., %x4). 'x' following the '%' is the constraint modifier. |
| 619 | |
| 620 | const char *Begin = CurPtr - 1; // Points to the character following '%'. |
| 621 | const char *Percent = Begin - 1; // Points to '%'. |
| 622 | |
Jordan Rose | a7d0384 | 2013-02-08 22:30:41 +0000 | [diff] [blame] | 623 | if (isLetter(EscapedChar)) { |
Benjamin Kramer | e87c38b | 2011-07-05 11:13:37 +0000 | [diff] [blame] | 624 | if (CurPtr == StrEnd) { // Premature end. |
| 625 | DiagOffs = CurPtr-StrStart-1; |
| 626 | return diag::err_asm_invalid_escape; |
| 627 | } |
Chris Lattner | a41b847 | 2009-03-10 23:51:40 +0000 | [diff] [blame] | 628 | EscapedChar = *CurPtr++; |
Chris Lattner | 35b5836 | 2009-03-10 23:21:44 +0000 | [diff] [blame] | 629 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 630 | |
Akira Hatanaka | 987f186 | 2014-08-22 06:05:21 +0000 | [diff] [blame] | 631 | const TargetInfo &TI = C.getTargetInfo(); |
| 632 | const SourceManager &SM = C.getSourceManager(); |
| 633 | const LangOptions &LO = C.getLangOpts(); |
| 634 | |
| 635 | // Handle operands that don't have asmSymbolicName (e.g., %x4). |
Jordan Rose | a7d0384 | 2013-02-08 22:30:41 +0000 | [diff] [blame] | 636 | if (isDigit(EscapedChar)) { |
Chris Lattner | 35b5836 | 2009-03-10 23:21:44 +0000 | [diff] [blame] | 637 | // %n - Assembler operand n |
Chris Lattner | 99d892b | 2009-03-11 22:52:17 +0000 | [diff] [blame] | 638 | unsigned N = 0; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 639 | |
Chris Lattner | 99d892b | 2009-03-11 22:52:17 +0000 | [diff] [blame] | 640 | --CurPtr; |
Jordan Rose | a7d0384 | 2013-02-08 22:30:41 +0000 | [diff] [blame] | 641 | while (CurPtr != StrEnd && isDigit(*CurPtr)) |
Chris Lattner | 84f3afa | 2009-03-11 23:09:16 +0000 | [diff] [blame] | 642 | N = N*10 + ((*CurPtr++)-'0'); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 643 | |
Jennifer Yu | b8fee67 | 2019-06-03 15:57:25 +0000 | [diff] [blame] | 644 | unsigned NumOperands = getNumOutputs() + getNumPlusOperands() + |
| 645 | getNumInputs() + getNumLabels(); |
Chris Lattner | 1431192 | 2009-03-11 00:23:13 +0000 | [diff] [blame] | 646 | if (N >= NumOperands) { |
| 647 | DiagOffs = CurPtr-StrStart-1; |
| 648 | return diag::err_asm_invalid_operand_number; |
| 649 | } |
| 650 | |
Akira Hatanaka | 987f186 | 2014-08-22 06:05:21 +0000 | [diff] [blame] | 651 | // Str contains "x4" (Operand without the leading %). |
| 652 | std::string Str(Begin, CurPtr - Begin); |
| 653 | |
| 654 | // (BeginLoc, EndLoc) represents the range of the operand we are currently |
| 655 | // processing. Unlike Str, the range includes the leading '%'. |
Richard Smith | d18ab80 | 2016-05-16 22:52:23 +0000 | [diff] [blame] | 656 | SourceLocation BeginLoc = getAsmString()->getLocationOfByte( |
| 657 | Percent - StrStart, SM, LO, TI, &LastAsmStringToken, |
| 658 | &LastAsmStringOffset); |
| 659 | SourceLocation EndLoc = getAsmString()->getLocationOfByte( |
| 660 | CurPtr - StrStart, SM, LO, TI, &LastAsmStringToken, |
| 661 | &LastAsmStringOffset); |
Akira Hatanaka | 987f186 | 2014-08-22 06:05:21 +0000 | [diff] [blame] | 662 | |
Benjamin Kramer | 3204b15 | 2015-05-29 19:42:19 +0000 | [diff] [blame] | 663 | Pieces.emplace_back(N, std::move(Str), BeginLoc, EndLoc); |
Chris Lattner | 35b5836 | 2009-03-10 23:21:44 +0000 | [diff] [blame] | 664 | continue; |
| 665 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 666 | |
Akira Hatanaka | 987f186 | 2014-08-22 06:05:21 +0000 | [diff] [blame] | 667 | // Handle operands that have asmSymbolicName (e.g., %x[foo]). |
Chris Lattner | 35b5836 | 2009-03-10 23:21:44 +0000 | [diff] [blame] | 668 | if (EscapedChar == '[') { |
Chris Lattner | 3fa25c6 | 2009-03-11 00:06:36 +0000 | [diff] [blame] | 669 | DiagOffs = CurPtr-StrStart-1; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 670 | |
Chris Lattner | 3fa25c6 | 2009-03-11 00:06:36 +0000 | [diff] [blame] | 671 | // Find the ']'. |
Chris Lattner | a41b847 | 2009-03-10 23:51:40 +0000 | [diff] [blame] | 672 | const char *NameEnd = (const char*)memchr(CurPtr, ']', StrEnd-CurPtr); |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 673 | if (NameEnd == nullptr) |
Chris Lattner | 3fa25c6 | 2009-03-11 00:06:36 +0000 | [diff] [blame] | 674 | return diag::err_asm_unterminated_symbolic_operand_name; |
| 675 | if (NameEnd == CurPtr) |
| 676 | return diag::err_asm_empty_symbolic_operand_name; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 677 | |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 678 | StringRef SymbolicName(CurPtr, NameEnd - CurPtr); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 679 | |
Chris Lattner | 35b5836 | 2009-03-10 23:21:44 +0000 | [diff] [blame] | 680 | int N = getNamedOperand(SymbolicName); |
Chris Lattner | 3fa25c6 | 2009-03-11 00:06:36 +0000 | [diff] [blame] | 681 | if (N == -1) { |
| 682 | // Verify that an operand with that name exists. |
| 683 | DiagOffs = CurPtr-StrStart; |
| 684 | return diag::err_asm_unknown_symbolic_operand_name; |
| 685 | } |
Akira Hatanaka | 987f186 | 2014-08-22 06:05:21 +0000 | [diff] [blame] | 686 | |
| 687 | // Str contains "x[foo]" (Operand without the leading %). |
| 688 | std::string Str(Begin, NameEnd + 1 - Begin); |
| 689 | |
| 690 | // (BeginLoc, EndLoc) represents the range of the operand we are currently |
| 691 | // processing. Unlike Str, the range includes the leading '%'. |
Richard Smith | d18ab80 | 2016-05-16 22:52:23 +0000 | [diff] [blame] | 692 | SourceLocation BeginLoc = getAsmString()->getLocationOfByte( |
| 693 | Percent - StrStart, SM, LO, TI, &LastAsmStringToken, |
| 694 | &LastAsmStringOffset); |
| 695 | SourceLocation EndLoc = getAsmString()->getLocationOfByte( |
| 696 | NameEnd + 1 - StrStart, SM, LO, TI, &LastAsmStringToken, |
| 697 | &LastAsmStringOffset); |
Akira Hatanaka | 987f186 | 2014-08-22 06:05:21 +0000 | [diff] [blame] | 698 | |
Benjamin Kramer | 3204b15 | 2015-05-29 19:42:19 +0000 | [diff] [blame] | 699 | Pieces.emplace_back(N, std::move(Str), BeginLoc, EndLoc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 700 | |
Chris Lattner | 3fa25c6 | 2009-03-11 00:06:36 +0000 | [diff] [blame] | 701 | CurPtr = NameEnd+1; |
Chris Lattner | 35b5836 | 2009-03-10 23:21:44 +0000 | [diff] [blame] | 702 | continue; |
| 703 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 704 | |
Chris Lattner | 0cdaa2e | 2009-03-10 23:57:07 +0000 | [diff] [blame] | 705 | DiagOffs = CurPtr-StrStart-1; |
Chris Lattner | a41b847 | 2009-03-10 23:51:40 +0000 | [diff] [blame] | 706 | return diag::err_asm_invalid_escape; |
Chris Lattner | 35b5836 | 2009-03-10 23:21:44 +0000 | [diff] [blame] | 707 | } |
| 708 | } |
Chad Rosier | 3b0c260 | 2012-08-27 20:23:31 +0000 | [diff] [blame] | 709 | |
| 710 | /// Assemble final IR asm string (GCC-style). |
Craig Topper | c571c81 | 2013-08-22 06:02:26 +0000 | [diff] [blame] | 711 | std::string GCCAsmStmt::generateAsmString(const ASTContext &C) const { |
Chad Rosier | 14836ba | 2012-08-24 17:05:45 +0000 | [diff] [blame] | 712 | // Analyze the asm string to decompose it into its pieces. We know that Sema |
| 713 | // has already done this, so it is guaranteed to be successful. |
Chad Rosier | de70e0e | 2012-08-25 00:11:56 +0000 | [diff] [blame] | 714 | SmallVector<GCCAsmStmt::AsmStringPiece, 4> Pieces; |
Chad Rosier | 14836ba | 2012-08-24 17:05:45 +0000 | [diff] [blame] | 715 | unsigned DiagOffs; |
| 716 | AnalyzeAsmString(Pieces, C, DiagOffs); |
| 717 | |
| 718 | std::string AsmString; |
Eugene Zelenko | 7855e77 | 2018-04-03 00:11:50 +0000 | [diff] [blame] | 719 | for (const auto &Piece : Pieces) { |
| 720 | if (Piece.isString()) |
| 721 | AsmString += Piece.getString(); |
| 722 | else if (Piece.getModifier() == '\0') |
| 723 | AsmString += '$' + llvm::utostr(Piece.getOperandNo()); |
Chad Rosier | 14836ba | 2012-08-24 17:05:45 +0000 | [diff] [blame] | 724 | else |
Eugene Zelenko | 7855e77 | 2018-04-03 00:11:50 +0000 | [diff] [blame] | 725 | AsmString += "${" + llvm::utostr(Piece.getOperandNo()) + ':' + |
| 726 | Piece.getModifier() + '}'; |
Chad Rosier | 14836ba | 2012-08-24 17:05:45 +0000 | [diff] [blame] | 727 | } |
| 728 | return AsmString; |
| 729 | } |
Chris Lattner | 35b5836 | 2009-03-10 23:21:44 +0000 | [diff] [blame] | 730 | |
Chad Rosier | 3b0c260 | 2012-08-27 20:23:31 +0000 | [diff] [blame] | 731 | /// Assemble final IR asm string (MS-style). |
Craig Topper | c571c81 | 2013-08-22 06:02:26 +0000 | [diff] [blame] | 732 | std::string MSAsmStmt::generateAsmString(const ASTContext &C) const { |
Chad Rosier | 3b0c260 | 2012-08-27 20:23:31 +0000 | [diff] [blame] | 733 | // FIXME: This needs to be translated into the IR string representation. |
Benjamin Kramer | adcd026 | 2020-01-28 20:23:46 +0100 | [diff] [blame] | 734 | return std::string(AsmStr); |
Chad Rosier | 3b0c260 | 2012-08-27 20:23:31 +0000 | [diff] [blame] | 735 | } |
| 736 | |
Chad Rosier | fe31e62 | 2012-08-24 00:07:09 +0000 | [diff] [blame] | 737 | Expr *MSAsmStmt::getOutputExpr(unsigned i) { |
| 738 | return cast<Expr>(Exprs[i]); |
| 739 | } |
| 740 | |
| 741 | Expr *MSAsmStmt::getInputExpr(unsigned i) { |
| 742 | return cast<Expr>(Exprs[i + NumOutputs]); |
| 743 | } |
Eugene Zelenko | 1eab6c1 | 2017-11-14 23:35:42 +0000 | [diff] [blame] | 744 | |
Chad Rosier | fe31e62 | 2012-08-24 00:07:09 +0000 | [diff] [blame] | 745 | void MSAsmStmt::setInputExpr(unsigned i, Expr *E) { |
| 746 | Exprs[i + NumOutputs] = E; |
| 747 | } |
| 748 | |
Chris Lattner | 86f5e13 | 2008-01-30 05:01:46 +0000 | [diff] [blame] | 749 | //===----------------------------------------------------------------------===// |
| 750 | // Constructors |
| 751 | //===----------------------------------------------------------------------===// |
| 752 | |
Craig Topper | e6960e2 | 2013-08-22 05:28:54 +0000 | [diff] [blame] | 753 | GCCAsmStmt::GCCAsmStmt(const ASTContext &C, SourceLocation asmloc, |
| 754 | bool issimple, bool isvolatile, unsigned numoutputs, |
| 755 | unsigned numinputs, IdentifierInfo **names, |
| 756 | StringLiteral **constraints, Expr **exprs, |
| 757 | StringLiteral *asmstr, unsigned numclobbers, |
Jennifer Yu | b8fee67 | 2019-06-03 15:57:25 +0000 | [diff] [blame] | 758 | StringLiteral **clobbers, unsigned numlabels, |
| 759 | SourceLocation rparenloc) |
Eugene Zelenko | 1eab6c1 | 2017-11-14 23:35:42 +0000 | [diff] [blame] | 760 | : AsmStmt(GCCAsmStmtClass, asmloc, issimple, isvolatile, numoutputs, |
Jennifer Yu | b8fee67 | 2019-06-03 15:57:25 +0000 | [diff] [blame] | 761 | numinputs, numclobbers), |
| 762 | RParenLoc(rparenloc), AsmStr(asmstr), NumLabels(numlabels) { |
| 763 | unsigned NumExprs = NumOutputs + NumInputs + NumLabels; |
Chad Rosier | 42032fa | 2012-08-07 23:12:23 +0000 | [diff] [blame] | 764 | |
Anders Carlsson | 98323d2 | 2010-01-30 23:19:41 +0000 | [diff] [blame] | 765 | Names = new (C) IdentifierInfo*[NumExprs]; |
| 766 | std::copy(names, names + NumExprs, Names); |
| 767 | |
| 768 | Exprs = new (C) Stmt*[NumExprs]; |
| 769 | std::copy(exprs, exprs + NumExprs, Exprs); |
| 770 | |
Benjamin Kramer | 851f57e | 2019-05-30 07:21:08 +0000 | [diff] [blame] | 771 | unsigned NumConstraints = NumOutputs + NumInputs; |
| 772 | Constraints = new (C) StringLiteral*[NumConstraints]; |
| 773 | std::copy(constraints, constraints + NumConstraints, Constraints); |
Anders Carlsson | 98323d2 | 2010-01-30 23:19:41 +0000 | [diff] [blame] | 774 | |
| 775 | Clobbers = new (C) StringLiteral*[NumClobbers]; |
| 776 | std::copy(clobbers, clobbers + NumClobbers, Clobbers); |
Anders Carlsson | 94ea8aa | 2007-11-22 01:36:19 +0000 | [diff] [blame] | 777 | } |
| 778 | |
Craig Topper | e6960e2 | 2013-08-22 05:28:54 +0000 | [diff] [blame] | 779 | MSAsmStmt::MSAsmStmt(const ASTContext &C, SourceLocation asmloc, |
Chad Rosier | 7dbef3e | 2012-08-16 00:06:53 +0000 | [diff] [blame] | 780 | SourceLocation lbraceloc, bool issimple, bool isvolatile, |
Chad Rosier | f8037a1 | 2012-10-16 21:55:39 +0000 | [diff] [blame] | 781 | ArrayRef<Token> asmtoks, unsigned numoutputs, |
John McCall | f413f5e | 2013-05-03 00:10:13 +0000 | [diff] [blame] | 782 | unsigned numinputs, |
Chad Rosier | f8037a1 | 2012-10-16 21:55:39 +0000 | [diff] [blame] | 783 | ArrayRef<StringRef> constraints, ArrayRef<Expr*> exprs, |
| 784 | StringRef asmstr, ArrayRef<StringRef> clobbers, |
| 785 | SourceLocation endloc) |
Eugene Zelenko | 1eab6c1 | 2017-11-14 23:35:42 +0000 | [diff] [blame] | 786 | : AsmStmt(MSAsmStmtClass, asmloc, issimple, isvolatile, numoutputs, |
| 787 | numinputs, clobbers.size()), LBraceLoc(lbraceloc), |
| 788 | EndLoc(endloc), NumAsmToks(asmtoks.size()) { |
John McCall | f413f5e | 2013-05-03 00:10:13 +0000 | [diff] [blame] | 789 | initialize(C, asmstr, asmtoks, constraints, exprs, clobbers); |
| 790 | } |
Chad Rosier | 7dbef3e | 2012-08-16 00:06:53 +0000 | [diff] [blame] | 791 | |
Craig Topper | e6960e2 | 2013-08-22 05:28:54 +0000 | [diff] [blame] | 792 | static StringRef copyIntoContext(const ASTContext &C, StringRef str) { |
Benjamin Kramer | 2ab0d88 | 2015-08-04 12:34:23 +0000 | [diff] [blame] | 793 | return str.copy(C); |
John McCall | f413f5e | 2013-05-03 00:10:13 +0000 | [diff] [blame] | 794 | } |
| 795 | |
Craig Topper | e6960e2 | 2013-08-22 05:28:54 +0000 | [diff] [blame] | 796 | void MSAsmStmt::initialize(const ASTContext &C, StringRef asmstr, |
John McCall | f413f5e | 2013-05-03 00:10:13 +0000 | [diff] [blame] | 797 | ArrayRef<Token> asmtoks, |
| 798 | ArrayRef<StringRef> constraints, |
| 799 | ArrayRef<Expr*> exprs, |
| 800 | ArrayRef<StringRef> clobbers) { |
| 801 | assert(NumAsmToks == asmtoks.size()); |
| 802 | assert(NumClobbers == clobbers.size()); |
| 803 | |
Craig Topper | caf138e | 2015-12-05 07:41:42 +0000 | [diff] [blame] | 804 | assert(exprs.size() == NumOutputs + NumInputs); |
| 805 | assert(exprs.size() == constraints.size()); |
John McCall | f413f5e | 2013-05-03 00:10:13 +0000 | [diff] [blame] | 806 | |
| 807 | AsmStr = copyIntoContext(C, asmstr); |
Chad Rosier | 99fc381 | 2012-08-07 00:29:06 +0000 | [diff] [blame] | 808 | |
Craig Topper | caf138e | 2015-12-05 07:41:42 +0000 | [diff] [blame] | 809 | Exprs = new (C) Stmt*[exprs.size()]; |
| 810 | std::copy(exprs.begin(), exprs.end(), Exprs); |
Chad Rosier | fe31e62 | 2012-08-24 00:07:09 +0000 | [diff] [blame] | 811 | |
Craig Topper | caf138e | 2015-12-05 07:41:42 +0000 | [diff] [blame] | 812 | AsmToks = new (C) Token[asmtoks.size()]; |
| 813 | std::copy(asmtoks.begin(), asmtoks.end(), AsmToks); |
Chad Rosier | 3ed0bd9 | 2012-08-08 19:48:07 +0000 | [diff] [blame] | 814 | |
Craig Topper | caf138e | 2015-12-05 07:41:42 +0000 | [diff] [blame] | 815 | Constraints = new (C) StringRef[exprs.size()]; |
| 816 | std::transform(constraints.begin(), constraints.end(), Constraints, |
| 817 | [&](StringRef Constraint) { |
| 818 | return copyIntoContext(C, Constraint); |
| 819 | }); |
Chad Rosier | 3dd7bf2 | 2012-08-28 20:28:20 +0000 | [diff] [blame] | 820 | |
Chad Rosier | baf53f9 | 2012-08-10 21:36:25 +0000 | [diff] [blame] | 821 | Clobbers = new (C) StringRef[NumClobbers]; |
Craig Topper | caf138e | 2015-12-05 07:41:42 +0000 | [diff] [blame] | 822 | // FIXME: Avoid the allocation/copy if at all possible. |
| 823 | std::transform(clobbers.begin(), clobbers.end(), Clobbers, |
| 824 | [&](StringRef Clobber) { |
| 825 | return copyIntoContext(C, Clobber); |
| 826 | }); |
Chad Rosier | 3250302 | 2012-06-11 20:47:18 +0000 | [diff] [blame] | 827 | } |
| 828 | |
Bruno Ricci | b1cc94b | 2018-10-27 21:12:20 +0000 | [diff] [blame] | 829 | IfStmt::IfStmt(const ASTContext &Ctx, SourceLocation IL, bool IsConstexpr, |
Zequan Wu | 94c6cea | 2020-08-10 16:29:33 -0700 | [diff] [blame^] | 830 | Stmt *Init, VarDecl *Var, Expr *Cond, SourceLocation LPL, |
| 831 | SourceLocation RPL, Stmt *Then, SourceLocation EL, Stmt *Else) |
| 832 | : Stmt(IfStmtClass), LParenLoc(LPL), RParenLoc(RPL) { |
Bruno Ricci | b1cc94b | 2018-10-27 21:12:20 +0000 | [diff] [blame] | 833 | bool HasElse = Else != nullptr; |
| 834 | bool HasVar = Var != nullptr; |
| 835 | bool HasInit = Init != nullptr; |
| 836 | IfStmtBits.HasElse = HasElse; |
| 837 | IfStmtBits.HasVar = HasVar; |
| 838 | IfStmtBits.HasInit = HasInit; |
| 839 | |
Richard Smith | b130fe7 | 2016-06-23 19:16:49 +0000 | [diff] [blame] | 840 | setConstexpr(IsConstexpr); |
Bruno Ricci | b1cc94b | 2018-10-27 21:12:20 +0000 | [diff] [blame] | 841 | |
| 842 | setCond(Cond); |
| 843 | setThen(Then); |
| 844 | if (HasElse) |
| 845 | setElse(Else); |
| 846 | if (HasVar) |
| 847 | setConditionVariable(Ctx, Var); |
| 848 | if (HasInit) |
| 849 | setInit(Init); |
| 850 | |
| 851 | setIfLoc(IL); |
| 852 | if (HasElse) |
| 853 | setElseLoc(EL); |
Douglas Gregor | 27b98ea | 2010-06-21 23:44:13 +0000 | [diff] [blame] | 854 | } |
| 855 | |
Bruno Ricci | b1cc94b | 2018-10-27 21:12:20 +0000 | [diff] [blame] | 856 | IfStmt::IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit) |
| 857 | : Stmt(IfStmtClass, Empty) { |
| 858 | IfStmtBits.HasElse = HasElse; |
| 859 | IfStmtBits.HasVar = HasVar; |
| 860 | IfStmtBits.HasInit = HasInit; |
| 861 | } |
Chad Rosier | 42032fa | 2012-08-07 23:12:23 +0000 | [diff] [blame] | 862 | |
Bruno Ricci | b1cc94b | 2018-10-27 21:12:20 +0000 | [diff] [blame] | 863 | IfStmt *IfStmt::Create(const ASTContext &Ctx, SourceLocation IL, |
| 864 | bool IsConstexpr, Stmt *Init, VarDecl *Var, Expr *Cond, |
Zequan Wu | 94c6cea | 2020-08-10 16:29:33 -0700 | [diff] [blame^] | 865 | SourceLocation LPL, SourceLocation RPL, Stmt *Then, |
| 866 | SourceLocation EL, Stmt *Else) { |
Bruno Ricci | b1cc94b | 2018-10-27 21:12:20 +0000 | [diff] [blame] | 867 | bool HasElse = Else != nullptr; |
| 868 | bool HasVar = Var != nullptr; |
| 869 | bool HasInit = Init != nullptr; |
| 870 | void *Mem = Ctx.Allocate( |
| 871 | totalSizeToAlloc<Stmt *, SourceLocation>( |
| 872 | NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse), |
| 873 | alignof(IfStmt)); |
| 874 | return new (Mem) |
Zequan Wu | 94c6cea | 2020-08-10 16:29:33 -0700 | [diff] [blame^] | 875 | IfStmt(Ctx, IL, IsConstexpr, Init, Var, Cond, LPL, RPL, Then, EL, Else); |
Bruno Ricci | b1cc94b | 2018-10-27 21:12:20 +0000 | [diff] [blame] | 876 | } |
| 877 | |
| 878 | IfStmt *IfStmt::CreateEmpty(const ASTContext &Ctx, bool HasElse, bool HasVar, |
| 879 | bool HasInit) { |
| 880 | void *Mem = Ctx.Allocate( |
| 881 | totalSizeToAlloc<Stmt *, SourceLocation>( |
| 882 | NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse), |
| 883 | alignof(IfStmt)); |
| 884 | return new (Mem) IfStmt(EmptyShell(), HasElse, HasVar, HasInit); |
| 885 | } |
| 886 | |
| 887 | VarDecl *IfStmt::getConditionVariable() { |
| 888 | auto *DS = getConditionVariableDeclStmt(); |
| 889 | if (!DS) |
| 890 | return nullptr; |
Douglas Gregor | 27b98ea | 2010-06-21 23:44:13 +0000 | [diff] [blame] | 891 | return cast<VarDecl>(DS->getSingleDecl()); |
| 892 | } |
| 893 | |
Bruno Ricci | b1cc94b | 2018-10-27 21:12:20 +0000 | [diff] [blame] | 894 | void IfStmt::setConditionVariable(const ASTContext &Ctx, VarDecl *V) { |
| 895 | assert(hasVarStorage() && |
| 896 | "This if statement has no storage for a condition variable!"); |
| 897 | |
Douglas Gregor | 27b98ea | 2010-06-21 23:44:13 +0000 | [diff] [blame] | 898 | if (!V) { |
Bruno Ricci | b1cc94b | 2018-10-27 21:12:20 +0000 | [diff] [blame] | 899 | getTrailingObjects<Stmt *>()[varOffset()] = nullptr; |
Douglas Gregor | 27b98ea | 2010-06-21 23:44:13 +0000 | [diff] [blame] | 900 | return; |
| 901 | } |
Chad Rosier | 42032fa | 2012-08-07 23:12:23 +0000 | [diff] [blame] | 902 | |
Daniel Dunbar | 62ee641 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 903 | SourceRange VarRange = V->getSourceRange(); |
Bruno Ricci | b1cc94b | 2018-10-27 21:12:20 +0000 | [diff] [blame] | 904 | getTrailingObjects<Stmt *>()[varOffset()] = new (Ctx) |
| 905 | DeclStmt(DeclGroupRef(V), VarRange.getBegin(), VarRange.getEnd()); |
Douglas Gregor | 27b98ea | 2010-06-21 23:44:13 +0000 | [diff] [blame] | 906 | } |
| 907 | |
Erik Pilkington | 5cd5717 | 2016-08-16 17:44:11 +0000 | [diff] [blame] | 908 | bool IfStmt::isObjCAvailabilityCheck() const { |
Bruno Ricci | b1cc94b | 2018-10-27 21:12:20 +0000 | [diff] [blame] | 909 | return isa<ObjCAvailabilityCheckExpr>(getCond()); |
Erik Pilkington | 5cd5717 | 2016-08-16 17:44:11 +0000 | [diff] [blame] | 910 | } |
| 911 | |
Richard Smith | fbf60b7 | 2019-12-13 14:10:13 -0800 | [diff] [blame] | 912 | Optional<const Stmt*> IfStmt::getNondiscardedCase(const ASTContext &Ctx) const { |
| 913 | if (!isConstexpr() || getCond()->isValueDependent()) |
| 914 | return None; |
| 915 | return !getCond()->EvaluateKnownConstInt(Ctx) ? getElse() : getThen(); |
| 916 | } |
| 917 | |
Craig Topper | e6960e2 | 2013-08-22 05:28:54 +0000 | [diff] [blame] | 918 | ForStmt::ForStmt(const ASTContext &C, Stmt *Init, Expr *Cond, VarDecl *condVar, |
Chad Rosier | 42032fa | 2012-08-07 23:12:23 +0000 | [diff] [blame] | 919 | Expr *Inc, Stmt *Body, SourceLocation FL, SourceLocation LP, |
Douglas Gregor | 27b98ea | 2010-06-21 23:44:13 +0000 | [diff] [blame] | 920 | SourceLocation RP) |
Bruno Ricci | 41d11c0 | 2018-10-27 18:43:27 +0000 | [diff] [blame] | 921 | : Stmt(ForStmtClass), LParenLoc(LP), RParenLoc(RP) |
Douglas Gregor | 27b98ea | 2010-06-21 23:44:13 +0000 | [diff] [blame] | 922 | { |
| 923 | SubExprs[INIT] = Init; |
| 924 | setConditionVariable(C, condVar); |
Pavel Labath | 515f4db | 2013-09-03 14:41:16 +0000 | [diff] [blame] | 925 | SubExprs[COND] = Cond; |
| 926 | SubExprs[INC] = Inc; |
Douglas Gregor | 27b98ea | 2010-06-21 23:44:13 +0000 | [diff] [blame] | 927 | SubExprs[BODY] = Body; |
Bruno Ricci | 41d11c0 | 2018-10-27 18:43:27 +0000 | [diff] [blame] | 928 | ForStmtBits.ForLoc = FL; |
Douglas Gregor | 27b98ea | 2010-06-21 23:44:13 +0000 | [diff] [blame] | 929 | } |
| 930 | |
| 931 | VarDecl *ForStmt::getConditionVariable() const { |
| 932 | if (!SubExprs[CONDVAR]) |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 933 | return nullptr; |
Chad Rosier | 42032fa | 2012-08-07 23:12:23 +0000 | [diff] [blame] | 934 | |
Eugene Zelenko | 7855e77 | 2018-04-03 00:11:50 +0000 | [diff] [blame] | 935 | auto *DS = cast<DeclStmt>(SubExprs[CONDVAR]); |
Douglas Gregor | 27b98ea | 2010-06-21 23:44:13 +0000 | [diff] [blame] | 936 | return cast<VarDecl>(DS->getSingleDecl()); |
| 937 | } |
| 938 | |
Craig Topper | e6960e2 | 2013-08-22 05:28:54 +0000 | [diff] [blame] | 939 | void ForStmt::setConditionVariable(const ASTContext &C, VarDecl *V) { |
Douglas Gregor | 27b98ea | 2010-06-21 23:44:13 +0000 | [diff] [blame] | 940 | if (!V) { |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 941 | SubExprs[CONDVAR] = nullptr; |
Douglas Gregor | 27b98ea | 2010-06-21 23:44:13 +0000 | [diff] [blame] | 942 | return; |
| 943 | } |
Chad Rosier | 42032fa | 2012-08-07 23:12:23 +0000 | [diff] [blame] | 944 | |
Daniel Dunbar | 62ee641 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 945 | SourceRange VarRange = V->getSourceRange(); |
| 946 | SubExprs[CONDVAR] = new (C) DeclStmt(DeclGroupRef(V), VarRange.getBegin(), |
| 947 | VarRange.getEnd()); |
Douglas Gregor | 27b98ea | 2010-06-21 23:44:13 +0000 | [diff] [blame] | 948 | } |
| 949 | |
Bruno Ricci | e2806f8 | 2018-10-29 16:12:37 +0000 | [diff] [blame] | 950 | SwitchStmt::SwitchStmt(const ASTContext &Ctx, Stmt *Init, VarDecl *Var, |
Zequan Wu | 94c6cea | 2020-08-10 16:29:33 -0700 | [diff] [blame^] | 951 | Expr *Cond, SourceLocation LParenLoc, |
| 952 | SourceLocation RParenLoc) |
| 953 | : Stmt(SwitchStmtClass), FirstCase(nullptr), LParenLoc(LParenLoc), |
| 954 | RParenLoc(RParenLoc) { |
Bruno Ricci | e2806f8 | 2018-10-29 16:12:37 +0000 | [diff] [blame] | 955 | bool HasInit = Init != nullptr; |
| 956 | bool HasVar = Var != nullptr; |
| 957 | SwitchStmtBits.HasInit = HasInit; |
| 958 | SwitchStmtBits.HasVar = HasVar; |
| 959 | SwitchStmtBits.AllEnumCasesCovered = false; |
| 960 | |
| 961 | setCond(Cond); |
| 962 | setBody(nullptr); |
| 963 | if (HasInit) |
| 964 | setInit(Init); |
| 965 | if (HasVar) |
| 966 | setConditionVariable(Ctx, Var); |
| 967 | |
| 968 | setSwitchLoc(SourceLocation{}); |
Douglas Gregor | 27b98ea | 2010-06-21 23:44:13 +0000 | [diff] [blame] | 969 | } |
| 970 | |
Bruno Ricci | e2806f8 | 2018-10-29 16:12:37 +0000 | [diff] [blame] | 971 | SwitchStmt::SwitchStmt(EmptyShell Empty, bool HasInit, bool HasVar) |
| 972 | : Stmt(SwitchStmtClass, Empty) { |
| 973 | SwitchStmtBits.HasInit = HasInit; |
| 974 | SwitchStmtBits.HasVar = HasVar; |
| 975 | SwitchStmtBits.AllEnumCasesCovered = false; |
| 976 | } |
Chad Rosier | 42032fa | 2012-08-07 23:12:23 +0000 | [diff] [blame] | 977 | |
Bruno Ricci | e2806f8 | 2018-10-29 16:12:37 +0000 | [diff] [blame] | 978 | SwitchStmt *SwitchStmt::Create(const ASTContext &Ctx, Stmt *Init, VarDecl *Var, |
Zequan Wu | 94c6cea | 2020-08-10 16:29:33 -0700 | [diff] [blame^] | 979 | Expr *Cond, SourceLocation LParenLoc, |
| 980 | SourceLocation RParenLoc) { |
Bruno Ricci | e2806f8 | 2018-10-29 16:12:37 +0000 | [diff] [blame] | 981 | bool HasInit = Init != nullptr; |
| 982 | bool HasVar = Var != nullptr; |
| 983 | void *Mem = Ctx.Allocate( |
| 984 | totalSizeToAlloc<Stmt *>(NumMandatoryStmtPtr + HasInit + HasVar), |
| 985 | alignof(SwitchStmt)); |
Zequan Wu | 94c6cea | 2020-08-10 16:29:33 -0700 | [diff] [blame^] | 986 | return new (Mem) SwitchStmt(Ctx, Init, Var, Cond, LParenLoc, RParenLoc); |
Bruno Ricci | e2806f8 | 2018-10-29 16:12:37 +0000 | [diff] [blame] | 987 | } |
| 988 | |
| 989 | SwitchStmt *SwitchStmt::CreateEmpty(const ASTContext &Ctx, bool HasInit, |
| 990 | bool HasVar) { |
| 991 | void *Mem = Ctx.Allocate( |
| 992 | totalSizeToAlloc<Stmt *>(NumMandatoryStmtPtr + HasInit + HasVar), |
| 993 | alignof(SwitchStmt)); |
| 994 | return new (Mem) SwitchStmt(EmptyShell(), HasInit, HasVar); |
| 995 | } |
| 996 | |
| 997 | VarDecl *SwitchStmt::getConditionVariable() { |
| 998 | auto *DS = getConditionVariableDeclStmt(); |
| 999 | if (!DS) |
| 1000 | return nullptr; |
Douglas Gregor | 27b98ea | 2010-06-21 23:44:13 +0000 | [diff] [blame] | 1001 | return cast<VarDecl>(DS->getSingleDecl()); |
| 1002 | } |
| 1003 | |
Bruno Ricci | e2806f8 | 2018-10-29 16:12:37 +0000 | [diff] [blame] | 1004 | void SwitchStmt::setConditionVariable(const ASTContext &Ctx, VarDecl *V) { |
| 1005 | assert(hasVarStorage() && |
| 1006 | "This switch statement has no storage for a condition variable!"); |
| 1007 | |
Douglas Gregor | 27b98ea | 2010-06-21 23:44:13 +0000 | [diff] [blame] | 1008 | if (!V) { |
Bruno Ricci | e2806f8 | 2018-10-29 16:12:37 +0000 | [diff] [blame] | 1009 | getTrailingObjects<Stmt *>()[varOffset()] = nullptr; |
Douglas Gregor | 27b98ea | 2010-06-21 23:44:13 +0000 | [diff] [blame] | 1010 | return; |
| 1011 | } |
Chad Rosier | 42032fa | 2012-08-07 23:12:23 +0000 | [diff] [blame] | 1012 | |
Daniel Dunbar | 62ee641 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 1013 | SourceRange VarRange = V->getSourceRange(); |
Bruno Ricci | e2806f8 | 2018-10-29 16:12:37 +0000 | [diff] [blame] | 1014 | getTrailingObjects<Stmt *>()[varOffset()] = new (Ctx) |
| 1015 | DeclStmt(DeclGroupRef(V), VarRange.getBegin(), VarRange.getEnd()); |
Douglas Gregor | 27b98ea | 2010-06-21 23:44:13 +0000 | [diff] [blame] | 1016 | } |
| 1017 | |
Bruno Ricci | bacf751 | 2018-10-30 13:42:41 +0000 | [diff] [blame] | 1018 | WhileStmt::WhileStmt(const ASTContext &Ctx, VarDecl *Var, Expr *Cond, |
Vy Nguyen | 17ea41e | 2020-07-09 23:19:06 -0400 | [diff] [blame] | 1019 | Stmt *Body, SourceLocation WL, SourceLocation LParenLoc, |
| 1020 | SourceLocation RParenLoc) |
Bruno Ricci | bacf751 | 2018-10-30 13:42:41 +0000 | [diff] [blame] | 1021 | : Stmt(WhileStmtClass) { |
| 1022 | bool HasVar = Var != nullptr; |
| 1023 | WhileStmtBits.HasVar = HasVar; |
| 1024 | |
| 1025 | setCond(Cond); |
| 1026 | setBody(Body); |
| 1027 | if (HasVar) |
| 1028 | setConditionVariable(Ctx, Var); |
| 1029 | |
| 1030 | setWhileLoc(WL); |
Vy Nguyen | 17ea41e | 2020-07-09 23:19:06 -0400 | [diff] [blame] | 1031 | setLParenLoc(LParenLoc); |
| 1032 | setRParenLoc(RParenLoc); |
Douglas Gregor | 27b98ea | 2010-06-21 23:44:13 +0000 | [diff] [blame] | 1033 | } |
| 1034 | |
Bruno Ricci | bacf751 | 2018-10-30 13:42:41 +0000 | [diff] [blame] | 1035 | WhileStmt::WhileStmt(EmptyShell Empty, bool HasVar) |
| 1036 | : Stmt(WhileStmtClass, Empty) { |
| 1037 | WhileStmtBits.HasVar = HasVar; |
| 1038 | } |
Chad Rosier | 42032fa | 2012-08-07 23:12:23 +0000 | [diff] [blame] | 1039 | |
Bruno Ricci | bacf751 | 2018-10-30 13:42:41 +0000 | [diff] [blame] | 1040 | WhileStmt *WhileStmt::Create(const ASTContext &Ctx, VarDecl *Var, Expr *Cond, |
Vy Nguyen | 17ea41e | 2020-07-09 23:19:06 -0400 | [diff] [blame] | 1041 | Stmt *Body, SourceLocation WL, |
| 1042 | SourceLocation LParenLoc, |
| 1043 | SourceLocation RParenLoc) { |
Bruno Ricci | bacf751 | 2018-10-30 13:42:41 +0000 | [diff] [blame] | 1044 | bool HasVar = Var != nullptr; |
| 1045 | void *Mem = |
| 1046 | Ctx.Allocate(totalSizeToAlloc<Stmt *>(NumMandatoryStmtPtr + HasVar), |
| 1047 | alignof(WhileStmt)); |
Vy Nguyen | 17ea41e | 2020-07-09 23:19:06 -0400 | [diff] [blame] | 1048 | return new (Mem) WhileStmt(Ctx, Var, Cond, Body, WL, LParenLoc, RParenLoc); |
Bruno Ricci | bacf751 | 2018-10-30 13:42:41 +0000 | [diff] [blame] | 1049 | } |
| 1050 | |
| 1051 | WhileStmt *WhileStmt::CreateEmpty(const ASTContext &Ctx, bool HasVar) { |
| 1052 | void *Mem = |
| 1053 | Ctx.Allocate(totalSizeToAlloc<Stmt *>(NumMandatoryStmtPtr + HasVar), |
| 1054 | alignof(WhileStmt)); |
| 1055 | return new (Mem) WhileStmt(EmptyShell(), HasVar); |
| 1056 | } |
| 1057 | |
| 1058 | VarDecl *WhileStmt::getConditionVariable() { |
| 1059 | auto *DS = getConditionVariableDeclStmt(); |
| 1060 | if (!DS) |
| 1061 | return nullptr; |
Douglas Gregor | 27b98ea | 2010-06-21 23:44:13 +0000 | [diff] [blame] | 1062 | return cast<VarDecl>(DS->getSingleDecl()); |
| 1063 | } |
| 1064 | |
Bruno Ricci | bacf751 | 2018-10-30 13:42:41 +0000 | [diff] [blame] | 1065 | void WhileStmt::setConditionVariable(const ASTContext &Ctx, VarDecl *V) { |
| 1066 | assert(hasVarStorage() && |
| 1067 | "This while statement has no storage for a condition variable!"); |
| 1068 | |
Douglas Gregor | 27b98ea | 2010-06-21 23:44:13 +0000 | [diff] [blame] | 1069 | if (!V) { |
Bruno Ricci | bacf751 | 2018-10-30 13:42:41 +0000 | [diff] [blame] | 1070 | getTrailingObjects<Stmt *>()[varOffset()] = nullptr; |
Douglas Gregor | 27b98ea | 2010-06-21 23:44:13 +0000 | [diff] [blame] | 1071 | return; |
| 1072 | } |
Daniel Dunbar | 62ee641 | 2012-03-09 18:35:03 +0000 | [diff] [blame] | 1073 | |
| 1074 | SourceRange VarRange = V->getSourceRange(); |
Bruno Ricci | bacf751 | 2018-10-30 13:42:41 +0000 | [diff] [blame] | 1075 | getTrailingObjects<Stmt *>()[varOffset()] = new (Ctx) |
| 1076 | DeclStmt(DeclGroupRef(V), VarRange.getBegin(), VarRange.getEnd()); |
Douglas Gregor | 27b98ea | 2010-06-21 23:44:13 +0000 | [diff] [blame] | 1077 | } |
| 1078 | |
Ted Kremenek | 066dd93 | 2007-08-24 21:09:09 +0000 | [diff] [blame] | 1079 | // IndirectGotoStmt |
Chris Lattner | c8e630e | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 1080 | LabelDecl *IndirectGotoStmt::getConstantTarget() { |
Eugene Zelenko | 7855e77 | 2018-04-03 00:11:50 +0000 | [diff] [blame] | 1081 | if (auto *E = dyn_cast<AddrLabelExpr>(getTarget()->IgnoreParenImpCasts())) |
John McCall | 9de9160 | 2010-10-28 08:53:48 +0000 | [diff] [blame] | 1082 | return E->getLabel(); |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1083 | return nullptr; |
John McCall | 9de9160 | 2010-10-28 08:53:48 +0000 | [diff] [blame] | 1084 | } |
Ted Kremenek | 066dd93 | 2007-08-24 21:09:09 +0000 | [diff] [blame] | 1085 | |
Ted Kremenek | 066dd93 | 2007-08-24 21:09:09 +0000 | [diff] [blame] | 1086 | // ReturnStmt |
Bruno Ricci | 023b1d1 | 2018-10-30 14:40:49 +0000 | [diff] [blame] | 1087 | ReturnStmt::ReturnStmt(SourceLocation RL, Expr *E, const VarDecl *NRVOCandidate) |
| 1088 | : Stmt(ReturnStmtClass), RetExpr(E) { |
| 1089 | bool HasNRVOCandidate = NRVOCandidate != nullptr; |
| 1090 | ReturnStmtBits.HasNRVOCandidate = HasNRVOCandidate; |
| 1091 | if (HasNRVOCandidate) |
| 1092 | setNRVOCandidate(NRVOCandidate); |
| 1093 | setReturnLoc(RL); |
Ted Kremenek | c6501db | 2008-06-17 03:11:08 +0000 | [diff] [blame] | 1094 | } |
Bruno Ricci | 023b1d1 | 2018-10-30 14:40:49 +0000 | [diff] [blame] | 1095 | |
| 1096 | ReturnStmt::ReturnStmt(EmptyShell Empty, bool HasNRVOCandidate) |
| 1097 | : Stmt(ReturnStmtClass, Empty) { |
| 1098 | ReturnStmtBits.HasNRVOCandidate = HasNRVOCandidate; |
| 1099 | } |
| 1100 | |
| 1101 | ReturnStmt *ReturnStmt::Create(const ASTContext &Ctx, SourceLocation RL, |
| 1102 | Expr *E, const VarDecl *NRVOCandidate) { |
| 1103 | bool HasNRVOCandidate = NRVOCandidate != nullptr; |
| 1104 | void *Mem = Ctx.Allocate(totalSizeToAlloc<const VarDecl *>(HasNRVOCandidate), |
| 1105 | alignof(ReturnStmt)); |
| 1106 | return new (Mem) ReturnStmt(RL, E, NRVOCandidate); |
| 1107 | } |
| 1108 | |
| 1109 | ReturnStmt *ReturnStmt::CreateEmpty(const ASTContext &Ctx, |
| 1110 | bool HasNRVOCandidate) { |
| 1111 | void *Mem = Ctx.Allocate(totalSizeToAlloc<const VarDecl *>(HasNRVOCandidate), |
| 1112 | alignof(ReturnStmt)); |
| 1113 | return new (Mem) ReturnStmt(EmptyShell(), HasNRVOCandidate); |
Ted Kremenek | 066dd93 | 2007-08-24 21:09:09 +0000 | [diff] [blame] | 1114 | } |
John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 1115 | |
Bruno Ricci | 5b3057175 | 2018-10-28 12:30:53 +0000 | [diff] [blame] | 1116 | // CaseStmt |
| 1117 | CaseStmt *CaseStmt::Create(const ASTContext &Ctx, Expr *lhs, Expr *rhs, |
| 1118 | SourceLocation caseLoc, SourceLocation ellipsisLoc, |
| 1119 | SourceLocation colonLoc) { |
| 1120 | bool CaseStmtIsGNURange = rhs != nullptr; |
| 1121 | void *Mem = Ctx.Allocate( |
| 1122 | totalSizeToAlloc<Stmt *, SourceLocation>( |
| 1123 | NumMandatoryStmtPtr + CaseStmtIsGNURange, CaseStmtIsGNURange), |
| 1124 | alignof(CaseStmt)); |
| 1125 | return new (Mem) CaseStmt(lhs, rhs, caseLoc, ellipsisLoc, colonLoc); |
| 1126 | } |
| 1127 | |
| 1128 | CaseStmt *CaseStmt::CreateEmpty(const ASTContext &Ctx, |
| 1129 | bool CaseStmtIsGNURange) { |
| 1130 | void *Mem = Ctx.Allocate( |
| 1131 | totalSizeToAlloc<Stmt *, SourceLocation>( |
| 1132 | NumMandatoryStmtPtr + CaseStmtIsGNURange, CaseStmtIsGNURange), |
| 1133 | alignof(CaseStmt)); |
| 1134 | return new (Mem) CaseStmt(EmptyShell(), CaseStmtIsGNURange); |
| 1135 | } |
| 1136 | |
Eugene Zelenko | 1eab6c1 | 2017-11-14 23:35:42 +0000 | [diff] [blame] | 1137 | SEHTryStmt::SEHTryStmt(bool IsCXXTry, SourceLocation TryLoc, Stmt *TryBlock, |
Warren Hunt | f6be4cb | 2014-07-25 20:52:51 +0000 | [diff] [blame] | 1138 | Stmt *Handler) |
Eugene Zelenko | 1eab6c1 | 2017-11-14 23:35:42 +0000 | [diff] [blame] | 1139 | : Stmt(SEHTryStmtClass), IsCXXTry(IsCXXTry), TryLoc(TryLoc) { |
Warren Hunt | f6be4cb | 2014-07-25 20:52:51 +0000 | [diff] [blame] | 1140 | Children[TRY] = TryBlock; |
John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 1141 | Children[HANDLER] = Handler; |
| 1142 | } |
| 1143 | |
Warren Hunt | f6be4cb | 2014-07-25 20:52:51 +0000 | [diff] [blame] | 1144 | SEHTryStmt* SEHTryStmt::Create(const ASTContext &C, bool IsCXXTry, |
Craig Topper | e6960e2 | 2013-08-22 05:28:54 +0000 | [diff] [blame] | 1145 | SourceLocation TryLoc, Stmt *TryBlock, |
Warren Hunt | f6be4cb | 2014-07-25 20:52:51 +0000 | [diff] [blame] | 1146 | Stmt *Handler) { |
| 1147 | return new(C) SEHTryStmt(IsCXXTry,TryLoc,TryBlock,Handler); |
John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 1148 | } |
| 1149 | |
| 1150 | SEHExceptStmt* SEHTryStmt::getExceptHandler() const { |
| 1151 | return dyn_cast<SEHExceptStmt>(getHandler()); |
| 1152 | } |
| 1153 | |
| 1154 | SEHFinallyStmt* SEHTryStmt::getFinallyHandler() const { |
| 1155 | return dyn_cast<SEHFinallyStmt>(getHandler()); |
| 1156 | } |
| 1157 | |
Eugene Zelenko | 1eab6c1 | 2017-11-14 23:35:42 +0000 | [diff] [blame] | 1158 | SEHExceptStmt::SEHExceptStmt(SourceLocation Loc, Expr *FilterExpr, Stmt *Block) |
| 1159 | : Stmt(SEHExceptStmtClass), Loc(Loc) { |
Pavel Labath | 515f4db | 2013-09-03 14:41:16 +0000 | [diff] [blame] | 1160 | Children[FILTER_EXPR] = FilterExpr; |
John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 1161 | Children[BLOCK] = Block; |
| 1162 | } |
| 1163 | |
Craig Topper | e6960e2 | 2013-08-22 05:28:54 +0000 | [diff] [blame] | 1164 | SEHExceptStmt* SEHExceptStmt::Create(const ASTContext &C, SourceLocation Loc, |
| 1165 | Expr *FilterExpr, Stmt *Block) { |
John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 1166 | return new(C) SEHExceptStmt(Loc,FilterExpr,Block); |
| 1167 | } |
| 1168 | |
Eugene Zelenko | 1eab6c1 | 2017-11-14 23:35:42 +0000 | [diff] [blame] | 1169 | SEHFinallyStmt::SEHFinallyStmt(SourceLocation Loc, Stmt *Block) |
| 1170 | : Stmt(SEHFinallyStmtClass), Loc(Loc), Block(Block) {} |
John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 1171 | |
Craig Topper | e6960e2 | 2013-08-22 05:28:54 +0000 | [diff] [blame] | 1172 | SEHFinallyStmt* SEHFinallyStmt::Create(const ASTContext &C, SourceLocation Loc, |
John Wiegley | 1c0675e | 2011-04-28 01:08:34 +0000 | [diff] [blame] | 1173 | Stmt *Block) { |
| 1174 | return new(C)SEHFinallyStmt(Loc,Block); |
| 1175 | } |
Tareq A. Siraj | 24110cc | 2013-04-16 18:53:08 +0000 | [diff] [blame] | 1176 | |
Samuel Antao | 4af1b7b | 2015-12-02 17:44:43 +0000 | [diff] [blame] | 1177 | CapturedStmt::Capture::Capture(SourceLocation Loc, VariableCaptureKind Kind, |
| 1178 | VarDecl *Var) |
| 1179 | : VarAndKind(Var, Kind), Loc(Loc) { |
| 1180 | switch (Kind) { |
| 1181 | case VCK_This: |
| 1182 | assert(!Var && "'this' capture cannot have a variable!"); |
| 1183 | break; |
| 1184 | case VCK_ByRef: |
| 1185 | assert(Var && "capturing by reference must have a variable!"); |
| 1186 | break; |
| 1187 | case VCK_ByCopy: |
| 1188 | assert(Var && "capturing by copy must have a variable!"); |
| 1189 | assert( |
| 1190 | (Var->getType()->isScalarType() || (Var->getType()->isReferenceType() && |
| 1191 | Var->getType() |
| 1192 | ->castAs<ReferenceType>() |
| 1193 | ->getPointeeType() |
| 1194 | ->isScalarType())) && |
| 1195 | "captures by copy are expected to have a scalar type!"); |
| 1196 | break; |
| 1197 | case VCK_VLAType: |
| 1198 | assert(!Var && |
| 1199 | "Variable-length array type capture cannot have a variable!"); |
| 1200 | break; |
| 1201 | } |
| 1202 | } |
| 1203 | |
Chandler Carruth | 21c9060 | 2015-12-30 03:24:14 +0000 | [diff] [blame] | 1204 | CapturedStmt::VariableCaptureKind |
| 1205 | CapturedStmt::Capture::getCaptureKind() const { |
| 1206 | return VarAndKind.getInt(); |
| 1207 | } |
| 1208 | |
| 1209 | VarDecl *CapturedStmt::Capture::getCapturedVar() const { |
| 1210 | assert((capturesVariable() || capturesVariableByCopy()) && |
| 1211 | "No variable available for 'this' or VAT capture"); |
| 1212 | return VarAndKind.getPointer(); |
| 1213 | } |
| 1214 | |
Tareq A. Siraj | 24110cc | 2013-04-16 18:53:08 +0000 | [diff] [blame] | 1215 | CapturedStmt::Capture *CapturedStmt::getStoredCaptures() const { |
| 1216 | unsigned Size = sizeof(CapturedStmt) + sizeof(Stmt *) * (NumCaptures + 1); |
| 1217 | |
| 1218 | // Offset of the first Capture object. |
Benjamin Kramer | c3f8925 | 2016-10-20 14:27:22 +0000 | [diff] [blame] | 1219 | unsigned FirstCaptureOffset = llvm::alignTo(Size, alignof(Capture)); |
Tareq A. Siraj | 24110cc | 2013-04-16 18:53:08 +0000 | [diff] [blame] | 1220 | |
| 1221 | return reinterpret_cast<Capture *>( |
| 1222 | reinterpret_cast<char *>(const_cast<CapturedStmt *>(this)) |
| 1223 | + FirstCaptureOffset); |
| 1224 | } |
| 1225 | |
Wei Pan | 17fbf6e | 2013-05-04 03:59:06 +0000 | [diff] [blame] | 1226 | CapturedStmt::CapturedStmt(Stmt *S, CapturedRegionKind Kind, |
| 1227 | ArrayRef<Capture> Captures, |
Tareq A. Siraj | 24110cc | 2013-04-16 18:53:08 +0000 | [diff] [blame] | 1228 | ArrayRef<Expr *> CaptureInits, |
Tareq A. Siraj | 6dfa25a | 2013-04-16 19:37:38 +0000 | [diff] [blame] | 1229 | CapturedDecl *CD, |
Tareq A. Siraj | 24110cc | 2013-04-16 18:53:08 +0000 | [diff] [blame] | 1230 | RecordDecl *RD) |
| 1231 | : Stmt(CapturedStmtClass), NumCaptures(Captures.size()), |
Wei Pan | 17fbf6e | 2013-05-04 03:59:06 +0000 | [diff] [blame] | 1232 | CapDeclAndKind(CD, Kind), TheRecordDecl(RD) { |
Tareq A. Siraj | 24110cc | 2013-04-16 18:53:08 +0000 | [diff] [blame] | 1233 | assert( S && "null captured statement"); |
Tareq A. Siraj | 6dfa25a | 2013-04-16 19:37:38 +0000 | [diff] [blame] | 1234 | assert(CD && "null captured declaration for captured statement"); |
Tareq A. Siraj | 24110cc | 2013-04-16 18:53:08 +0000 | [diff] [blame] | 1235 | assert(RD && "null record declaration for captured statement"); |
| 1236 | |
| 1237 | // Copy initialization expressions. |
| 1238 | Stmt **Stored = getStoredStmts(); |
| 1239 | for (unsigned I = 0, N = NumCaptures; I != N; ++I) |
| 1240 | *Stored++ = CaptureInits[I]; |
| 1241 | |
| 1242 | // Copy the statement being captured. |
| 1243 | *Stored = S; |
| 1244 | |
| 1245 | // Copy all Capture objects. |
| 1246 | Capture *Buffer = getStoredCaptures(); |
| 1247 | std::copy(Captures.begin(), Captures.end(), Buffer); |
| 1248 | } |
| 1249 | |
| 1250 | CapturedStmt::CapturedStmt(EmptyShell Empty, unsigned NumCaptures) |
| 1251 | : Stmt(CapturedStmtClass, Empty), NumCaptures(NumCaptures), |
Eugene Zelenko | 1eab6c1 | 2017-11-14 23:35:42 +0000 | [diff] [blame] | 1252 | CapDeclAndKind(nullptr, CR_Default) { |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1253 | getStoredStmts()[NumCaptures] = nullptr; |
Tareq A. Siraj | 24110cc | 2013-04-16 18:53:08 +0000 | [diff] [blame] | 1254 | } |
| 1255 | |
Craig Topper | e6960e2 | 2013-08-22 05:28:54 +0000 | [diff] [blame] | 1256 | CapturedStmt *CapturedStmt::Create(const ASTContext &Context, Stmt *S, |
Wei Pan | 17fbf6e | 2013-05-04 03:59:06 +0000 | [diff] [blame] | 1257 | CapturedRegionKind Kind, |
Tareq A. Siraj | 24110cc | 2013-04-16 18:53:08 +0000 | [diff] [blame] | 1258 | ArrayRef<Capture> Captures, |
| 1259 | ArrayRef<Expr *> CaptureInits, |
Tareq A. Siraj | 6dfa25a | 2013-04-16 19:37:38 +0000 | [diff] [blame] | 1260 | CapturedDecl *CD, |
Tareq A. Siraj | 24110cc | 2013-04-16 18:53:08 +0000 | [diff] [blame] | 1261 | RecordDecl *RD) { |
| 1262 | // The layout is |
| 1263 | // |
| 1264 | // ----------------------------------------------------------- |
| 1265 | // | CapturedStmt, Init, ..., Init, S, Capture, ..., Capture | |
| 1266 | // ----------------^-------------------^---------------------- |
| 1267 | // getStoredStmts() getStoredCaptures() |
| 1268 | // |
| 1269 | // where S is the statement being captured. |
| 1270 | // |
| 1271 | assert(CaptureInits.size() == Captures.size() && "wrong number of arguments"); |
| 1272 | |
| 1273 | unsigned Size = sizeof(CapturedStmt) + sizeof(Stmt *) * (Captures.size() + 1); |
| 1274 | if (!Captures.empty()) { |
| 1275 | // Realign for the following Capture array. |
Benjamin Kramer | c3f8925 | 2016-10-20 14:27:22 +0000 | [diff] [blame] | 1276 | Size = llvm::alignTo(Size, alignof(Capture)); |
Tareq A. Siraj | 24110cc | 2013-04-16 18:53:08 +0000 | [diff] [blame] | 1277 | Size += sizeof(Capture) * Captures.size(); |
| 1278 | } |
| 1279 | |
| 1280 | void *Mem = Context.Allocate(Size); |
Wei Pan | 17fbf6e | 2013-05-04 03:59:06 +0000 | [diff] [blame] | 1281 | return new (Mem) CapturedStmt(S, Kind, Captures, CaptureInits, CD, RD); |
Tareq A. Siraj | 24110cc | 2013-04-16 18:53:08 +0000 | [diff] [blame] | 1282 | } |
| 1283 | |
Craig Topper | e6960e2 | 2013-08-22 05:28:54 +0000 | [diff] [blame] | 1284 | CapturedStmt *CapturedStmt::CreateDeserialized(const ASTContext &Context, |
Tareq A. Siraj | 24110cc | 2013-04-16 18:53:08 +0000 | [diff] [blame] | 1285 | unsigned NumCaptures) { |
| 1286 | unsigned Size = sizeof(CapturedStmt) + sizeof(Stmt *) * (NumCaptures + 1); |
| 1287 | if (NumCaptures > 0) { |
| 1288 | // Realign for the following Capture array. |
Benjamin Kramer | c3f8925 | 2016-10-20 14:27:22 +0000 | [diff] [blame] | 1289 | Size = llvm::alignTo(Size, alignof(Capture)); |
Tareq A. Siraj | 24110cc | 2013-04-16 18:53:08 +0000 | [diff] [blame] | 1290 | Size += sizeof(Capture) * NumCaptures; |
| 1291 | } |
| 1292 | |
| 1293 | void *Mem = Context.Allocate(Size); |
| 1294 | return new (Mem) CapturedStmt(EmptyShell(), NumCaptures); |
| 1295 | } |
| 1296 | |
| 1297 | Stmt::child_range CapturedStmt::children() { |
Simon Pilgrim | 2c51880 | 2017-03-30 14:13:19 +0000 | [diff] [blame] | 1298 | // Children are captured field initializers. |
Tareq A. Siraj | 6dfa25a | 2013-04-16 19:37:38 +0000 | [diff] [blame] | 1299 | return child_range(getStoredStmts(), getStoredStmts() + NumCaptures); |
Tareq A. Siraj | 24110cc | 2013-04-16 18:53:08 +0000 | [diff] [blame] | 1300 | } |
| 1301 | |
Bruno Ricci | 0618650 | 2019-04-12 15:36:02 +0000 | [diff] [blame] | 1302 | Stmt::const_child_range CapturedStmt::children() const { |
| 1303 | return const_child_range(getStoredStmts(), getStoredStmts() + NumCaptures); |
| 1304 | } |
| 1305 | |
Chandler Carruth | 21c9060 | 2015-12-30 03:24:14 +0000 | [diff] [blame] | 1306 | CapturedDecl *CapturedStmt::getCapturedDecl() { |
| 1307 | return CapDeclAndKind.getPointer(); |
| 1308 | } |
Eugene Zelenko | 1eab6c1 | 2017-11-14 23:35:42 +0000 | [diff] [blame] | 1309 | |
Chandler Carruth | 21c9060 | 2015-12-30 03:24:14 +0000 | [diff] [blame] | 1310 | const CapturedDecl *CapturedStmt::getCapturedDecl() const { |
| 1311 | return CapDeclAndKind.getPointer(); |
| 1312 | } |
| 1313 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1314 | /// Set the outlined function declaration. |
Chandler Carruth | 21c9060 | 2015-12-30 03:24:14 +0000 | [diff] [blame] | 1315 | void CapturedStmt::setCapturedDecl(CapturedDecl *D) { |
| 1316 | assert(D && "null CapturedDecl"); |
| 1317 | CapDeclAndKind.setPointer(D); |
| 1318 | } |
| 1319 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1320 | /// Retrieve the captured region kind. |
Chandler Carruth | 21c9060 | 2015-12-30 03:24:14 +0000 | [diff] [blame] | 1321 | CapturedRegionKind CapturedStmt::getCapturedRegionKind() const { |
| 1322 | return CapDeclAndKind.getInt(); |
| 1323 | } |
| 1324 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1325 | /// Set the captured region kind. |
Chandler Carruth | 21c9060 | 2015-12-30 03:24:14 +0000 | [diff] [blame] | 1326 | void CapturedStmt::setCapturedRegionKind(CapturedRegionKind Kind) { |
| 1327 | CapDeclAndKind.setInt(Kind); |
| 1328 | } |
| 1329 | |
Tareq A. Siraj | 24110cc | 2013-04-16 18:53:08 +0000 | [diff] [blame] | 1330 | bool CapturedStmt::capturesVariable(const VarDecl *Var) const { |
Aaron Ballman | c656303a | 2014-03-14 18:08:33 +0000 | [diff] [blame] | 1331 | for (const auto &I : captures()) { |
Alexey Bataev | 2c84541 | 2017-05-15 16:26:15 +0000 | [diff] [blame] | 1332 | if (!I.capturesVariable() && !I.capturesVariableByCopy()) |
Tareq A. Siraj | 24110cc | 2013-04-16 18:53:08 +0000 | [diff] [blame] | 1333 | continue; |
Alexey Bataev | e85de8f | 2017-09-20 20:11:31 +0000 | [diff] [blame] | 1334 | if (I.getCapturedVar()->getCanonicalDecl() == Var->getCanonicalDecl()) |
Tareq A. Siraj | 24110cc | 2013-04-16 18:53:08 +0000 | [diff] [blame] | 1335 | return true; |
| 1336 | } |
| 1337 | |
| 1338 | return false; |
| 1339 | } |