Jonas Devlieghere | edff5f4 | 2019-02-06 04:33:14 +0000 | [diff] [blame] | 1 | #include "clang/AST/AST.h" |
| 2 | #include "clang/AST/ASTConsumer.h" |
| 3 | #include "clang/AST/RecursiveASTVisitor.h" |
Jonas Devlieghere | 1ca9dd8 | 2019-02-12 18:19:34 +0000 | [diff] [blame] | 4 | #include "clang/CodeGen/ObjectFilePCHContainerOperations.h" |
Jonas Devlieghere | edff5f4 | 2019-02-06 04:33:14 +0000 | [diff] [blame] | 5 | #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 | |
| 19 | using namespace clang; |
| 20 | using namespace clang::driver; |
| 21 | using namespace clang::tooling; |
| 22 | |
| 23 | static 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 |
| 33 | static 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 |
| 56 | static 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 | |
| 70 | static 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 | |
| 89 | static 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 | |
| 103 | static 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 | |
| 112 | static 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 Devlieghere | 091b925 | 2019-02-19 01:04:31 +0000 | [diff] [blame] | 123 | class SBReturnVisitor : public RecursiveASTVisitor<SBReturnVisitor> { |
| 124 | public: |
| 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 | |
| 146 | private: |
| 147 | Rewriter &MyRewriter; |
| 148 | }; |
| 149 | |
Jonas Devlieghere | edff5f4 | 2019-02-06 04:33:14 +0000 | [diff] [blame] | 150 | class SBVisitor : public RecursiveASTVisitor<SBVisitor> { |
| 151 | public: |
| 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 | |
| 161 | // Print 'bool' instead of '_Bool'. |
| 162 | PrintingPolicy Policy(Context.getLangOpts()); |
| 163 | Policy.Bool = true; |
| 164 | |
| 165 | // Collect the functions parameter types and names. |
| 166 | std::vector<std::string> ParamTypes; |
| 167 | std::vector<std::string> ParamNames; |
| 168 | for (auto *P : Decl->parameters()) { |
| 169 | QualType T = P->getType(); |
| 170 | |
| 171 | // Currently we don't support functions that have function pointers as an |
| 172 | // argument. |
| 173 | if (T->isFunctionPointerType()) |
| 174 | return false; |
| 175 | |
| 176 | // Currently we don't support functions that have void pointers as an |
| 177 | // argument. |
| 178 | if (T->isVoidPointerType()) |
| 179 | return false; |
| 180 | |
| 181 | ParamTypes.push_back(T.getAsString(Policy)); |
| 182 | ParamNames.push_back(P->getNameAsString()); |
| 183 | } |
| 184 | |
| 185 | // Convert the two lists to string for the macros. |
| 186 | std::string ParamTypesStr = llvm::join(ParamTypes, ", "); |
| 187 | std::string ParamNamesStr = llvm::join(ParamNames, ", "); |
| 188 | |
| 189 | CXXRecordDecl *Record = Decl->getParent(); |
| 190 | QualType ReturnType = Decl->getReturnType(); |
| 191 | |
| 192 | // Construct the macros. |
| 193 | std::string Macro; |
| 194 | if (isa<CXXConstructorDecl>(Decl)) { |
| 195 | llvm::outs() << GetRegisterConstructorMacro(Record->getNameAsString(), |
| 196 | ParamTypesStr); |
| 197 | |
| 198 | Macro = GetRecordConstructorMacro(Record->getNameAsString(), |
| 199 | ParamTypesStr, ParamNamesStr); |
| 200 | } else { |
| 201 | llvm::outs() << GetRegisterMethodMacro( |
| 202 | ReturnType.getAsString(Policy), Record->getNameAsString(), |
| 203 | Decl->getNameAsString(), ParamTypesStr, Decl->isStatic(), |
| 204 | Decl->isConst()); |
| 205 | |
| 206 | Macro = GetRecordMethodMacro( |
| 207 | ReturnType.getAsString(Policy), Record->getNameAsString(), |
| 208 | Decl->getNameAsString(), ParamTypesStr, ParamNamesStr, |
| 209 | Decl->isStatic(), Decl->isConst()); |
| 210 | } |
| 211 | |
| 212 | // If this CXXMethodDecl already starts with a macro we're done. |
| 213 | Stmt *Body = Decl->getBody(); |
| 214 | for (auto &C : Body->children()) { |
| 215 | if (C->getBeginLoc().isMacroID()) |
| 216 | return false; |
| 217 | break; |
| 218 | } |
| 219 | |
| 220 | // Insert the macro at the beginning of the function. We don't attempt to |
| 221 | // fix the formatting and instead rely on clang-format to fix it after the |
| 222 | // tool has run. This is also the reason that the macros end with two |
| 223 | // newlines, counting on clang-format to normalize this in case the macro |
| 224 | // got inserted before an existing newline. |
| 225 | SourceLocation InsertLoc = Lexer::getLocForEndOfToken( |
| 226 | Body->getBeginLoc(), 0, MyRewriter.getSourceMgr(), |
| 227 | MyRewriter.getLangOpts()); |
| 228 | MyRewriter.InsertTextAfter(InsertLoc, Macro); |
| 229 | |
Jonas Devlieghere | 091b925 | 2019-02-19 01:04:31 +0000 | [diff] [blame] | 230 | // If the function returns a class or struct, we need to wrap its return |
| 231 | // statement(s). |
| 232 | if (ReturnType->isStructureOrClassType()) { |
| 233 | SBReturnVisitor Visitor(MyRewriter); |
| 234 | Visitor.TraverseDecl(Decl); |
| 235 | } |
| 236 | |
Jonas Devlieghere | edff5f4 | 2019-02-06 04:33:14 +0000 | [diff] [blame] | 237 | return true; |
| 238 | } |
| 239 | |
| 240 | private: |
| 241 | /// Determine whether we need to consider the given CXXMethodDecl. |
| 242 | /// |
| 243 | /// Currently we skip the following cases: |
| 244 | /// 1. Decls outside the main source file, |
| 245 | /// 2. Decls that are only present in the source file, |
| 246 | /// 3. Decls that are not definitions, |
Jonas Devlieghere | 091b925 | 2019-02-19 01:04:31 +0000 | [diff] [blame] | 247 | /// 4. Non-public methods, |
| 248 | /// 5. Variadic methods. |
| 249 | /// 6. Destructors. |
Jonas Devlieghere | edff5f4 | 2019-02-06 04:33:14 +0000 | [diff] [blame] | 250 | bool ShouldSkip(CXXMethodDecl *Decl) { |
| 251 | // Skip anything outside the main file. |
| 252 | if (!MyRewriter.getSourceMgr().isInMainFile(Decl->getBeginLoc())) |
| 253 | return true; |
| 254 | |
| 255 | // Skip if the canonical decl in the current decl. It means that the method |
| 256 | // is declared in the implementation and is therefore not exposed as part |
| 257 | // of the API. |
| 258 | if (Decl == Decl->getCanonicalDecl()) |
| 259 | return true; |
| 260 | |
| 261 | // Skip decls that have no body, i.e. are just declarations. |
| 262 | Stmt *Body = Decl->getBody(); |
| 263 | if (!Body) |
| 264 | return true; |
| 265 | |
Jonas Devlieghere | 091b925 | 2019-02-19 01:04:31 +0000 | [diff] [blame] | 266 | // Skip non-public methods. |
Jonas Devlieghere | edff5f4 | 2019-02-06 04:33:14 +0000 | [diff] [blame] | 267 | AccessSpecifier AS = Decl->getAccess(); |
| 268 | if (AS != AccessSpecifier::AS_public) |
| 269 | return true; |
| 270 | |
Jonas Devlieghere | 091b925 | 2019-02-19 01:04:31 +0000 | [diff] [blame] | 271 | // Skip variadic methods. |
| 272 | if (Decl->isVariadic()) |
| 273 | return true; |
| 274 | |
Jonas Devlieghere | edff5f4 | 2019-02-06 04:33:14 +0000 | [diff] [blame] | 275 | // Skip destructors. |
| 276 | if (isa<CXXDestructorDecl>(Decl)) |
| 277 | return true; |
| 278 | |
| 279 | return false; |
| 280 | } |
| 281 | |
| 282 | Rewriter &MyRewriter; |
| 283 | ASTContext &Context; |
| 284 | }; |
| 285 | |
| 286 | class SBConsumer : public ASTConsumer { |
| 287 | public: |
| 288 | SBConsumer(Rewriter &R, ASTContext &Context) : Visitor(R, Context) {} |
| 289 | |
| 290 | // Override the method that gets called for each parsed top-level |
| 291 | // declaration. |
| 292 | bool HandleTopLevelDecl(DeclGroupRef DR) override { |
| 293 | for (DeclGroupRef::iterator b = DR.begin(), e = DR.end(); b != e; ++b) { |
| 294 | Visitor.TraverseDecl(*b); |
| 295 | } |
| 296 | return true; |
| 297 | } |
| 298 | |
| 299 | private: |
| 300 | SBVisitor Visitor; |
| 301 | }; |
| 302 | |
| 303 | class SBAction : public ASTFrontendAction { |
| 304 | public: |
| 305 | SBAction() = default; |
| 306 | |
| 307 | void EndSourceFileAction() override { MyRewriter.overwriteChangedFiles(); } |
| 308 | |
| 309 | std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, |
| 310 | StringRef file) override { |
| 311 | MyRewriter.setSourceMgr(CI.getSourceManager(), CI.getLangOpts()); |
| 312 | return llvm::make_unique<SBConsumer>(MyRewriter, CI.getASTContext()); |
| 313 | } |
| 314 | |
| 315 | private: |
| 316 | Rewriter MyRewriter; |
| 317 | }; |
| 318 | |
| 319 | int main(int argc, const char **argv) { |
| 320 | CommonOptionsParser OP(argc, argv, InstrCategory, |
| 321 | "Utility for generating the macros for LLDB's " |
| 322 | "instrumentation framework."); |
Jonas Devlieghere | 1ca9dd8 | 2019-02-12 18:19:34 +0000 | [diff] [blame] | 323 | |
| 324 | auto PCHOpts = std::make_shared<PCHContainerOperations>(); |
| 325 | PCHOpts->registerWriter(llvm::make_unique<ObjectFilePCHContainerWriter>()); |
| 326 | PCHOpts->registerReader(llvm::make_unique<ObjectFilePCHContainerReader>()); |
| 327 | |
| 328 | ClangTool T(OP.getCompilations(), OP.getSourcePathList(), PCHOpts); |
Jonas Devlieghere | edff5f4 | 2019-02-06 04:33:14 +0000 | [diff] [blame] | 329 | return T.run(newFrontendActionFactory<SBAction>().get()); |
| 330 | } |