blob: 3a5df4bf91af3ef2924f74ea06af3508e5ffaac4 [file] [log] [blame]
Jonas Devlieghereedff5f42019-02-06 04:33:14 +00001#include "clang/AST/AST.h"
2#include "clang/AST/ASTConsumer.h"
3#include "clang/AST/RecursiveASTVisitor.h"
Jonas Devlieghere1ca9dd82019-02-12 18:19:34 +00004#include "clang/CodeGen/ObjectFilePCHContainerOperations.h"
Jonas Devlieghereedff5f42019-02-06 04:33:14 +00005#include "clang/Frontend/ASTConsumers.h"
6#include "clang/Frontend/CompilerInstance.h"
7#include "clang/Frontend/FrontendActions.h"
8#include "clang/Rewrite/Core/Rewriter.h"
9#include "clang/Tooling/CommonOptionsParser.h"
10#include "clang/Tooling/Tooling.h"
11
12#include "llvm/ADT/StringExtras.h"
13#include "llvm/ADT/StringRef.h"
14#include "llvm/Support/raw_ostream.h"
15
16#include <sstream>
17#include <string>
18
19using namespace clang;
20using namespace clang::driver;
21using namespace clang::tooling;
22
23static llvm::cl::OptionCategory InstrCategory("LLDB Instrumentation Generator");
24
25/// Get the macro name for recording method calls.
26///
27/// LLDB_RECORD_METHOD
28/// LLDB_RECORD_METHOD_CONST
29/// LLDB_RECORD_METHOD_NO_ARGS
30/// LLDB_RECORD_METHOD_CONST_NO_ARGS
31/// LLDB_RECORD_STATIC_METHOD
32/// LLDB_RECORD_STATIC_METHOD_NO_ARGS
33static std::string GetRecordMethodMacroName(bool Static, bool Const,
34 bool NoArgs) {
35 std::string Macro;
36 llvm::raw_string_ostream OS(Macro);
37
38 OS << "LLDB_RECORD";
39 if (Static)
40 OS << "_STATIC";
41 OS << "_METHOD";
42 if (Const)
43 OS << "_CONST";
44 if (NoArgs)
45 OS << "_NO_ARGS";
46
47 return OS.str();
48}
49
50/// Get the macro name for register methods.
51///
52/// LLDB_REGISTER_CONSTRUCTOR
53/// LLDB_REGISTER_METHOD
54/// LLDB_REGISTER_METHOD_CONST
55/// LLDB_REGISTER_STATIC_METHOD
56static std::string GetRegisterMethodMacroName(bool Static, bool Const) {
57 std::string Macro;
58 llvm::raw_string_ostream OS(Macro);
59
60 OS << "LLDB_REGISTER";
61 if (Static)
62 OS << "_STATIC";
63 OS << "_METHOD";
64 if (Const)
65 OS << "_CONST";
66
67 return OS.str();
68}
69
70static std::string GetRecordMethodMacro(StringRef Result, StringRef Class,
71 StringRef Method, StringRef Signature,
72 StringRef Values, bool Static,
73 bool Const) {
74 std::string Macro;
75 llvm::raw_string_ostream OS(Macro);
76
77 OS << GetRecordMethodMacroName(Static, Const, Values.empty());
78 OS << "(" << Result << ", " << Class << ", " << Method;
79
80 if (!Values.empty()) {
81 OS << ", (" << Signature << "), " << Values << ");\n\n";
82 } else {
83 OS << ");\n\n";
84 }
85
86 return OS.str();
87}
88
89static std::string GetRecordConstructorMacro(StringRef Class,
90 StringRef Signature,
91 StringRef Values) {
92 std::string Macro;
93 llvm::raw_string_ostream OS(Macro);
94 if (!Values.empty()) {
95 OS << "LLDB_RECORD_CONSTRUCTOR(" << Class << ", (" << Signature << "), "
96 << Values << ");\n\n";
97 } else {
98 OS << "LLDB_RECORD_CONSTRUCTOR_NO_ARGS(" << Class << ");\n\n";
99 }
100 return OS.str();
101}
102
103static std::string GetRegisterConstructorMacro(StringRef Class,
104 StringRef Signature) {
105 std::string Macro;
106 llvm::raw_string_ostream OS(Macro);
107 OS << "LLDB_REGISTER_CONSTRUCTOR(" << Class << ", (" << Signature
108 << "));\n\n";
109 return OS.str();
110}
111
112static std::string GetRegisterMethodMacro(StringRef Result, StringRef Class,
113 StringRef Method, StringRef Signature,
114 bool Static, bool Const) {
115 std::string Macro;
116 llvm::raw_string_ostream OS(Macro);
117 OS << GetRegisterMethodMacroName(Static, Const);
118 OS << "(" << Result << ", " << Class << ", " << Method << ", (" << Signature
119 << "));\n";
120 return OS.str();
121}
122
Jonas Devlieghere091b9252019-02-19 01:04:31 +0000123class SBReturnVisitor : public RecursiveASTVisitor<SBReturnVisitor> {
124public:
125 SBReturnVisitor(Rewriter &R) : MyRewriter(R) {}
126
127 bool VisitReturnStmt(ReturnStmt *Stmt) {
128 Expr *E = Stmt->getRetValue();
129
130 if (E->getBeginLoc().isMacroID())
131 return false;
132
133 SourceRange R(E->getBeginLoc(), E->getEndLoc());
134
135 StringRef WrittenExpr = Lexer::getSourceText(
136 CharSourceRange::getTokenRange(R), MyRewriter.getSourceMgr(),
137 MyRewriter.getLangOpts());
138
139 std::string ReplacementText =
140 "LLDB_RECORD_RESULT(" + WrittenExpr.str() + ")";
141 MyRewriter.ReplaceText(R, ReplacementText);
142
143 return true;
144 }
145
146private:
147 Rewriter &MyRewriter;
148};
149
Jonas Devlieghereedff5f42019-02-06 04:33:14 +0000150class SBVisitor : public RecursiveASTVisitor<SBVisitor> {
151public:
152 SBVisitor(Rewriter &R, ASTContext &Context)
153 : MyRewriter(R), Context(Context) {}
154
155 bool VisitCXXMethodDecl(CXXMethodDecl *Decl) {
156 // Not all decls should be registered. Please refer to that method's
157 // comment for details.
158 if (ShouldSkip(Decl))
159 return false;
160
Jonas Devlieghereee04d4d2019-02-19 23:13:29 +0000161 // Skip CXXMethodDecls that already starts with a macro. This should make
162 // it easier to rerun the tool to find missing macros.
163 Stmt *Body = Decl->getBody();
164 for (auto &C : Body->children()) {
165 if (C->getBeginLoc().isMacroID())
166 return false;
167 break;
168 }
169
Jonas Devlieghereedff5f42019-02-06 04:33:14 +0000170 // Print 'bool' instead of '_Bool'.
171 PrintingPolicy Policy(Context.getLangOpts());
172 Policy.Bool = true;
173
174 // Collect the functions parameter types and names.
175 std::vector<std::string> ParamTypes;
176 std::vector<std::string> ParamNames;
177 for (auto *P : Decl->parameters()) {
178 QualType T = P->getType();
179
180 // Currently we don't support functions that have function pointers as an
181 // argument.
182 if (T->isFunctionPointerType())
183 return false;
184
185 // Currently we don't support functions that have void pointers as an
186 // argument.
187 if (T->isVoidPointerType())
188 return false;
189
190 ParamTypes.push_back(T.getAsString(Policy));
191 ParamNames.push_back(P->getNameAsString());
192 }
193
194 // Convert the two lists to string for the macros.
195 std::string ParamTypesStr = llvm::join(ParamTypes, ", ");
196 std::string ParamNamesStr = llvm::join(ParamNames, ", ");
197
198 CXXRecordDecl *Record = Decl->getParent();
199 QualType ReturnType = Decl->getReturnType();
200
201 // Construct the macros.
202 std::string Macro;
203 if (isa<CXXConstructorDecl>(Decl)) {
204 llvm::outs() << GetRegisterConstructorMacro(Record->getNameAsString(),
205 ParamTypesStr);
206
207 Macro = GetRecordConstructorMacro(Record->getNameAsString(),
208 ParamTypesStr, ParamNamesStr);
209 } else {
210 llvm::outs() << GetRegisterMethodMacro(
211 ReturnType.getAsString(Policy), Record->getNameAsString(),
212 Decl->getNameAsString(), ParamTypesStr, Decl->isStatic(),
213 Decl->isConst());
214
215 Macro = GetRecordMethodMacro(
216 ReturnType.getAsString(Policy), Record->getNameAsString(),
217 Decl->getNameAsString(), ParamTypesStr, ParamNamesStr,
218 Decl->isStatic(), Decl->isConst());
219 }
220
Jonas Devlieghereedff5f42019-02-06 04:33:14 +0000221 // Insert the macro at the beginning of the function. We don't attempt to
222 // fix the formatting and instead rely on clang-format to fix it after the
223 // tool has run. This is also the reason that the macros end with two
224 // newlines, counting on clang-format to normalize this in case the macro
225 // got inserted before an existing newline.
226 SourceLocation InsertLoc = Lexer::getLocForEndOfToken(
227 Body->getBeginLoc(), 0, MyRewriter.getSourceMgr(),
228 MyRewriter.getLangOpts());
229 MyRewriter.InsertTextAfter(InsertLoc, Macro);
230
Jonas Devlieghere091b9252019-02-19 01:04:31 +0000231 // If the function returns a class or struct, we need to wrap its return
232 // statement(s).
233 if (ReturnType->isStructureOrClassType()) {
234 SBReturnVisitor Visitor(MyRewriter);
235 Visitor.TraverseDecl(Decl);
236 }
237
Jonas Devlieghereedff5f42019-02-06 04:33:14 +0000238 return true;
239 }
240
241private:
242 /// Determine whether we need to consider the given CXXMethodDecl.
243 ///
244 /// Currently we skip the following cases:
245 /// 1. Decls outside the main source file,
246 /// 2. Decls that are only present in the source file,
247 /// 3. Decls that are not definitions,
Jonas Devlieghere091b9252019-02-19 01:04:31 +0000248 /// 4. Non-public methods,
249 /// 5. Variadic methods.
250 /// 6. Destructors.
Jonas Devlieghereedff5f42019-02-06 04:33:14 +0000251 bool ShouldSkip(CXXMethodDecl *Decl) {
252 // Skip anything outside the main file.
253 if (!MyRewriter.getSourceMgr().isInMainFile(Decl->getBeginLoc()))
254 return true;
255
256 // Skip if the canonical decl in the current decl. It means that the method
257 // is declared in the implementation and is therefore not exposed as part
258 // of the API.
259 if (Decl == Decl->getCanonicalDecl())
260 return true;
261
262 // Skip decls that have no body, i.e. are just declarations.
263 Stmt *Body = Decl->getBody();
264 if (!Body)
265 return true;
266
Jonas Devlieghere091b9252019-02-19 01:04:31 +0000267 // Skip non-public methods.
Jonas Devlieghereedff5f42019-02-06 04:33:14 +0000268 AccessSpecifier AS = Decl->getAccess();
269 if (AS != AccessSpecifier::AS_public)
270 return true;
271
Jonas Devlieghere091b9252019-02-19 01:04:31 +0000272 // Skip variadic methods.
273 if (Decl->isVariadic())
274 return true;
275
Jonas Devlieghereedff5f42019-02-06 04:33:14 +0000276 // Skip destructors.
277 if (isa<CXXDestructorDecl>(Decl))
278 return true;
279
280 return false;
281 }
282
283 Rewriter &MyRewriter;
284 ASTContext &Context;
285};
286
287class SBConsumer : public ASTConsumer {
288public:
289 SBConsumer(Rewriter &R, ASTContext &Context) : Visitor(R, Context) {}
290
291 // Override the method that gets called for each parsed top-level
292 // declaration.
293 bool HandleTopLevelDecl(DeclGroupRef DR) override {
294 for (DeclGroupRef::iterator b = DR.begin(), e = DR.end(); b != e; ++b) {
295 Visitor.TraverseDecl(*b);
296 }
297 return true;
298 }
299
300private:
301 SBVisitor Visitor;
302};
303
304class SBAction : public ASTFrontendAction {
305public:
306 SBAction() = default;
307
308 void EndSourceFileAction() override { MyRewriter.overwriteChangedFiles(); }
309
310 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
311 StringRef file) override {
312 MyRewriter.setSourceMgr(CI.getSourceManager(), CI.getLangOpts());
313 return llvm::make_unique<SBConsumer>(MyRewriter, CI.getASTContext());
314 }
315
316private:
317 Rewriter MyRewriter;
318};
319
320int main(int argc, const char **argv) {
321 CommonOptionsParser OP(argc, argv, InstrCategory,
322 "Utility for generating the macros for LLDB's "
323 "instrumentation framework.");
Jonas Devlieghere1ca9dd82019-02-12 18:19:34 +0000324
325 auto PCHOpts = std::make_shared<PCHContainerOperations>();
326 PCHOpts->registerWriter(llvm::make_unique<ObjectFilePCHContainerWriter>());
327 PCHOpts->registerReader(llvm::make_unique<ObjectFilePCHContainerReader>());
328
329 ClangTool T(OP.getCompilations(), OP.getSourcePathList(), PCHOpts);
Jonas Devlieghereedff5f42019-02-06 04:33:14 +0000330 return T.run(newFrontendActionFactory<SBAction>().get());
331}