-
-
Notifications
You must be signed in to change notification settings - Fork 243
/
Insights.cpp
257 lines (215 loc) · 10.3 KB
/
Insights.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
/******************************************************************************
*
* C++ Insights, copyright (C) by Andreas Fertig
* Distributed under an MIT license. See LICENSE for details
*
****************************************************************************/
#include "clang/AST/ASTContext.h"
#include "clang/Frontend/CompilerInstance.h"
#include "clang/Frontend/FrontendActions.h"
#include "clang/Rewrite/Core/Rewriter.h"
#include "clang/Tooling/CommonOptionsParser.h"
#include "clang/Tooling/Tooling.h"
#include "llvm/Support/MemoryBuffer.h"
#include "llvm/Support/Path.h"
#include "llvm/Support/Signals.h"
#include "llvm/Support/raw_ostream.h"
#include "CodeGenerator.h"
#include "DPrint.h"
#include "FunctionDeclHandler.h"
#include "GlobalVariableHandler.h"
#include "Insights.h"
#include "RecordDeclHandler.h"
#include "TemplateHandler.h"
#include "version.h"
//-----------------------------------------------------------------------------
using namespace clang;
using namespace clang::ast_matchers;
using namespace clang::driver;
using namespace clang::tooling;
using namespace clang::insights;
//-----------------------------------------------------------------------------
static InsightsOptions gInsightsOptions{};
//-----------------------------------------------------------------------------
const InsightsOptions& GetInsightsOptions()
{
return gInsightsOptions;
}
//-----------------------------------------------------------------------------
static llvm::cl::OptionCategory gInsightCategory("Insights"sv);
//-----------------------------------------------------------------------------
static llvm::cl::OptionCategory gInsightEduCategory(
"Insights-Educational"sv,
"This transformations are only for education purposes. The resulting code most likely does not compile."sv);
//-----------------------------------------------------------------------------
static llvm::cl::opt<bool> gStdinMode("stdin",
llvm::cl::desc("Override source file's content (in the overlaying\n"
"virtual file system) with input from <stdin> and run\n"
"the tool on the new content with the compilation\n"
"options of the source file. This mode is currently\n"
"used for editor integration."sv),
llvm::cl::init(false),
llvm::cl::cat(gInsightCategory));
//-----------------------------------------------------------------------------
static llvm::cl::opt<bool>
gUseLibCpp("use-libc++", llvm::cl::desc("Use libc++."sv), llvm::cl::init(false), llvm::cl::cat(gInsightCategory));
//-----------------------------------------------------------------------------
#define INSIGHTS_OPT(option, name, deflt, description, category) \
static llvm::cl::opt<bool, true> g##name(option, \
llvm::cl::desc(std::string_view{description}), \
llvm::cl::NotHidden, \
llvm::cl::location(gInsightsOptions.name), \
llvm::cl::init(deflt), \
llvm::cl::cat(category));
//-----------------------------------------------------------------------------
#include "InsightsOptions.def"
//-----------------------------------------------------------------------------
static const ASTContext* gAST{};
const ASTContext& GetGlobalAST()
{
return *gAST;
}
//-----------------------------------------------------------------------------
static const CompilerInstance* gCI{};
const CompilerInstance& GetGlobalCI()
{
return *gCI;
}
//-----------------------------------------------------------------------------
class CppInsightASTConsumer final : public ASTConsumer
{
public:
explicit CppInsightASTConsumer(Rewriter& rewriter)
: ASTConsumer()
, mMatcher{}
, mRecordDeclHandler{rewriter, mMatcher}
, mTemplateHandler{rewriter, mMatcher}
, mGlobalVariableHandler{rewriter, mMatcher}
, mFunctionDeclHandler{rewriter, mMatcher}
, mRewriter{rewriter}
{
}
void HandleTranslationUnit(ASTContext& context) override
{
gAST = &context;
mMatcher.matchAST(context);
// Check whether we had static local variables which we transformed. Then for the placement-new we need to
// include the header <new>.
if(CodeGenerator::NeedToInsertNewHeader() or CodeGenerator::NeedToInsertExceptionHeader() or
CodeGenerator::NeedToInsertUtilityHeader() or GetInsightsOptions().ShowCoroutineTransformation) {
const auto& sm = context.getSourceManager();
const auto& mainFileId = sm.getMainFileID();
const auto loc = sm.translateFileLineCol(sm.getFileEntryForID(mainFileId), 1, 1);
if(GetInsightsOptions().ShowCoroutineTransformation) {
mRewriter.InsertText(
loc,
R"(/*************************************************************************************
* NOTE: The coroutine transformation you've enabled is a hand coded transformation! *
* Most of it is _not_ present in the AST. What you see is an approximation. *
*************************************************************************************/
)"sv);
}
if(CodeGenerator::NeedToInsertNewHeader()) {
mRewriter.InsertText(
loc,
"#include <new> // for thread-safe static's placement new\n#include <stdint.h> // for "
"uint64_t under Linux/GCC\n"sv);
}
if(CodeGenerator::NeedToInsertExceptionHeader()) {
mRewriter.InsertText(loc, "#include <exception> // for noexcept transformation\n"sv);
}
if(CodeGenerator::NeedToInsertUtilityHeader()) {
mRewriter.InsertText(loc, "#include <utility> // std::move\n"sv);
}
}
}
private:
MatchFinder mMatcher;
RecordDeclHandler mRecordDeclHandler;
TemplateHandler mTemplateHandler;
GlobalVariableHandler mGlobalVariableHandler;
FunctionDeclHandler mFunctionDeclHandler;
Rewriter& mRewriter;
};
//-----------------------------------------------------------------------------
class CppInsightFrontendAction final : public ASTFrontendAction
{
public:
CppInsightFrontendAction() = default;
void EndSourceFileAction() override
{
mRewriter.getEditBuffer(mRewriter.getSourceMgr().getMainFileID()).write(llvm::outs());
}
std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance& CI, StringRef /*file*/) override
{
gCI = &CI;
mRewriter.setSourceMgr(CI.getSourceManager(), CI.getLangOpts());
return std ::make_unique<CppInsightASTConsumer>(mRewriter);
}
private:
Rewriter mRewriter;
};
//-----------------------------------------------------------------------------
#include "clang/Basic/Version.h"
static void PrintVersion(raw_ostream& ostream)
{
ostream << "cpp-insights " << INSIGHTS_VERSION << " https://cppinsights.io (" << GIT_REPO_URL << " "
<< GIT_COMMIT_HASH << ")"
<< "\n";
#ifdef INSIGHTS_DEBUG
ostream << " Build with debug enabled\n";
#endif
ostream << " LLVM Revision: " << clang::getLLVMRevision() << '\n';
ostream << " Clang Revision: " << clang::getClangFullCPPVersion() << '\n';
}
//-----------------------------------------------------------------------------
int main(int argc, const char** argv)
{
llvm::sys::PrintStackTraceOnErrorSignal(argv[0]);
llvm::cl::HideUnrelatedOptions(gInsightCategory);
llvm::cl::SetVersionPrinter(&PrintVersion);
auto opExpected = CommonOptionsParser::create(argc, argv, gInsightCategory);
if(auto err = opExpected.takeError()) {
llvm::errs() << toString(std::move(err)) << "\n";
return 1;
}
CommonOptionsParser& op{opExpected.get()};
ClangTool tool(op.getCompilations(), op.getSourcePathList());
llvm::StringRef sourceFilePath = op.getSourcePathList().front();
if(gStdinMode) {
assert((op.getSourcePathList().size() == 1) and "Expect exactly one file path in STDINMode.");
llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> codeOrErr = llvm::MemoryBuffer::getSTDIN();
if(const std::error_code errorCode = codeOrErr.getError()) {
llvm::errs() << errorCode.message() << "\n";
return 1;
}
// In STDINMode, we override the file content with the <stdin> input.
// Since `tool.mapVirtualFile` takes `StringRef`, we define `Code` outside of
// the if-block so that `Code` is not released after the if-block.
std::unique_ptr<llvm::MemoryBuffer> inMemoryCode{std::move(codeOrErr.get())};
if(inMemoryCode->getBufferSize() == 0) {
Error("empty file\n");
return 1; // Skip empty files.
}
tool.mapVirtualFile(sourceFilePath, inMemoryCode->getBuffer());
}
auto prependArgument = [&](auto arg) {
tool.appendArgumentsAdjuster(getInsertArgumentAdjuster(arg, ArgumentInsertPosition::BEGIN));
};
// Special handling to spare users to figure out what include paths to add.
// For some reason, Clang on Apple seems to require an additional hint for the C++ headers.
#ifdef __APPLE__
gUseLibCpp = true;
#endif /* __APPLE__ */
if(gUseLibCpp) {
prependArgument(INSIGHTS_LLVM_INCLUDE_DIR);
prependArgument("-stdlib=libc++");
#ifdef __APPLE__
prependArgument("-nostdinc++"); // macos Monterey
#endif /* __APPLE__ */
}
prependArgument(INSIGHTS_CLANG_RESOURCE_INCLUDE_DIR);
prependArgument(INSIGHTS_CLANG_RESOURCE_DIR);
return tool.run(newFrontendActionFactory<CppInsightFrontendAction>().get());
}
//-----------------------------------------------------------------------------