forked from secure-software-engineering/phasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLLVMProjectIRDB.cpp
More file actions
426 lines (349 loc) · 11.6 KB
/
LLVMProjectIRDB.cpp
File metadata and controls
426 lines (349 loc) · 11.6 KB
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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
#include "phasar/PhasarLLVM/DB/LLVMProjectIRDB.h"
#include "phasar/Config/Configuration.h"
#include "phasar/PhasarLLVM/Utils/LLVMShorthands.h"
#include "phasar/Utils/Logger.h"
#include "phasar/Utils/Macros.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/IR/AssemblyAnnotationWriter.h"
#include "llvm/IR/GlobalVariable.h"
#include "llvm/IR/InstIterator.h"
#include "llvm/IR/LLVMContext.h"
#include "llvm/IR/Verifier.h"
#include "llvm/IRReader/IRReader.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/FormattedStream.h"
#include "llvm/Support/MemoryBufferRef.h"
#include "llvm/Support/SourceMgr.h"
#include "llvm/Support/WithColor.h"
#include <charconv>
#include <memory>
#include <system_error>
namespace psr {
[[deprecated]]
static void setOpaquePointersForCtx(llvm::LLVMContext &Ctx, bool Enable) {
#if LLVM_VERSION_MAJOR >= 15 && LLVM_VERSION_MAJOR < 17
if (!Enable) {
Ctx.setOpaquePointers(false);
}
#elif LLVM_VERSION_MAJOR < 15
if (Enable) {
Ctx.enableOpaquePointers();
}
#endif
}
namespace {
enum class IRDBParsingError {
CouldNotParse = 1,
CouldNotVerify = 2,
};
class IRDBParsingErrorCategory : public std::error_category {
[[nodiscard]] const char *name() const noexcept override {
return "IRDBParsingError";
}
[[nodiscard]] std::string message(int Value) const override {
switch (IRDBParsingError(Value)) {
case IRDBParsingError::CouldNotParse:
return "Could not parse LLVM IR";
case IRDBParsingError::CouldNotVerify:
return "Parsed LLVM IR could not be verified";
default:
return "Unknown error while parsing IRDB";
}
}
};
PSR_CONSTINIT IRDBParsingErrorCategory IRDBParsingErrorCat{};
std::error_code make_error_code(IRDBParsingError Err) noexcept {
return {int(Err), IRDBParsingErrorCat};
}
} // namespace
} // namespace psr
namespace std {
template <> struct is_error_code_enum<psr::IRDBParsingError> : true_type {};
} // namespace std
namespace psr {
llvm::ErrorOr<std::unique_ptr<llvm::Module>>
LLVMProjectIRDB::getParsedIRModuleOrErr(llvm::MemoryBufferRef IRFileContent,
llvm::LLVMContext &Ctx) noexcept {
llvm::SMDiagnostic Diag;
std::unique_ptr<llvm::Module> M = llvm::parseIR(IRFileContent, Diag, Ctx);
bool BrokenDebugInfo = false;
if (M == nullptr) {
Diag.print(nullptr, llvm::errs());
return IRDBParsingError::CouldNotParse;
}
if (llvm::verifyModule(*M, &llvm::errs(), &BrokenDebugInfo)) {
PHASAR_LOG_LEVEL(ERROR, IRFileContent.getBufferIdentifier()
<< " could not be parsed correctly!");
return IRDBParsingError::CouldNotVerify;
}
if (BrokenDebugInfo) {
PHASAR_LOG_LEVEL(WARNING, "Debug info is broken!");
}
return M;
}
llvm::ErrorOr<std::unique_ptr<llvm::Module>>
LLVMProjectIRDB::getParsedIRModuleOrErr(const llvm::Twine &IRFileName,
llvm::LLVMContext &Ctx) noexcept {
// Look at LLVM's IRReader.cpp for reference
auto FileOrErr =
llvm::MemoryBuffer::getFileOrSTDIN(IRFileName, /*IsText=*/true);
if (std::error_code EC = FileOrErr.getError()) {
return FileOrErr.getError();
}
return getParsedIRModuleOrErr(*FileOrErr.get(), Ctx);
}
llvm::ErrorOr<LLVMProjectIRDB>
LLVMProjectIRDB::load(const llvm::Twine &IRFileName) {
auto Ctx = std::make_unique<llvm::LLVMContext>();
auto M = getParsedIRModuleOrErr(IRFileName, *Ctx);
if (!M) {
return M.getError();
}
return LLVMProjectIRDB(std::move(*M), std::move(Ctx));
}
LLVMProjectIRDB LLVMProjectIRDB::loadOrExit(const llvm::Twine &IRFileName,
int ErrorExitCode) {
auto Ret = load(IRFileName);
if (!Ret) {
llvm::WithColor::error()
<< "Could not load LLVM-" << LLVM_VERSION_MAJOR << " IR file "
<< IRFileName << ": " << Ret.getError().message() << '\n';
std::exit(ErrorExitCode);
}
return std::move(*Ret);
}
LLVMProjectIRDB::LLVMProjectIRDB(const llvm::Twine &IRFileName)
: Ctx(new llvm::LLVMContext()) {
auto M = getParsedIRModuleOrErr(IRFileName, *Ctx);
if (!M) {
return;
}
auto *NonConst = M->get();
Mod = std::move(M.get());
ModulesToSlotTracker::setMSTForModule(Mod.get());
preprocessModule(NonConst);
}
LLVMProjectIRDB::LLVMProjectIRDB(const llvm::Twine &IRFileName,
bool EnableOpaquePointers)
: Ctx(new llvm::LLVMContext()) {
setOpaquePointersForCtx(*Ctx, EnableOpaquePointers);
auto M = getParsedIRModuleOrErr(IRFileName, *Ctx);
if (!M) {
llvm::WithColor::error()
<< "Could not load LLVM-" << LLVM_VERSION_MAJOR << " IR file "
<< IRFileName << ": " << M.getError().message() << '\n';
return;
}
auto *NonConst = M->get();
Mod = std::move(M.get());
ModulesToSlotTracker::setMSTForModule(Mod.get());
preprocessModule(NonConst);
}
void LLVMProjectIRDB::initInstructionIds() {
assert(Mod != nullptr);
size_t Id = 0;
for (auto &Global : Mod->globals()) {
IdToInst.push_back(&Global);
InstToId.try_emplace(&Global, Id);
++Id;
}
IdOffset = Id;
for (auto &Fun : *Mod) {
for (auto &Inst : llvm::instructions(Fun)) {
IdToInst.push_back(&Inst);
InstToId.try_emplace(&Inst, Id);
++Id;
}
}
assert(InstToId.size() == IdToInst.size());
}
/// We really don't need an LLVM Pass for this...
void LLVMProjectIRDB::preprocessModule(llvm::Module *NonConstMod) {
size_t Id = 0;
auto &Context = NonConstMod->getContext();
for (auto &Global : NonConstMod->globals()) {
llvm::MDNode *Node = llvm::MDNode::get(
Context, llvm::MDString::get(Context, std::to_string(Id)));
Global.setMetadata(PhasarConfig::MetaDataKind(), Node);
IdToInst.push_back(&Global);
InstToId.try_emplace(&Global, Id);
++Id;
}
IdOffset = Id;
for (auto &Fun : *NonConstMod) {
for (auto &Inst : llvm::instructions(Fun)) {
llvm::MDNode *Node = llvm::MDNode::get(
Context, llvm::MDString::get(Context, std::to_string(Id)));
Inst.setMetadata(PhasarConfig::MetaDataKind(), Node);
IdToInst.push_back(&Inst);
InstToId.try_emplace(&Inst, Id);
++Id;
}
}
assert(InstToId.size() == IdToInst.size());
}
LLVMProjectIRDB::LLVMProjectIRDB(llvm::Module *Mod, bool DoPreprocessing)
: Mod(Mod) {
assert(Mod != nullptr);
ModulesToSlotTracker::setMSTForModule(Mod);
if (DoPreprocessing) {
preprocessModule(Mod);
} else {
initInstructionIds();
}
}
LLVMProjectIRDB::LLVMProjectIRDB(std::unique_ptr<llvm::Module> Mod,
bool DoPreprocessing) {
assert(Mod != nullptr);
auto *NonConst = Mod.get();
ModulesToSlotTracker::setMSTForModule(NonConst);
this->Mod = std::move(Mod);
if (DoPreprocessing) {
preprocessModule(NonConst);
} else {
initInstructionIds();
}
}
LLVMProjectIRDB::LLVMProjectIRDB(std::unique_ptr<llvm::Module> Mod,
std::unique_ptr<llvm::LLVMContext> Ctx,
bool DoPreprocessing)
: LLVMProjectIRDB(std::move(Mod), DoPreprocessing) {
this->Ctx = std::move(Ctx);
}
LLVMProjectIRDB::LLVMProjectIRDB(llvm::MemoryBufferRef Buf)
: Ctx(new llvm::LLVMContext()) {
auto M = getParsedIRModuleOrErr(Buf, *Ctx);
if (!M) {
return;
}
auto *NonConst = M->get();
Mod = std::move(M.get());
ModulesToSlotTracker::setMSTForModule(Mod.get());
preprocessModule(NonConst);
}
LLVMProjectIRDB::LLVMProjectIRDB(llvm::MemoryBufferRef Buf,
bool EnableOpaquePointers)
: Ctx(new llvm::LLVMContext()) {
setOpaquePointersForCtx(*Ctx, EnableOpaquePointers);
auto M = getParsedIRModuleOrErr(Buf, *Ctx);
if (!M) {
llvm::WithColor::error() << "Could not load " << LLVM_VERSION_MAJOR
<< " IR buffer: " << Buf.getBufferIdentifier()
<< ": " << M.getError().message() << '\n';
return;
}
auto *NonConst = M->get();
Mod = std::move(M.get());
ModulesToSlotTracker::setMSTForModule(Mod.get());
preprocessModule(NonConst);
}
LLVMProjectIRDB::~LLVMProjectIRDB() {
if (Mod) {
ModulesToSlotTracker::deleteMSTForModule(Mod.get());
}
}
static llvm::Function *
internalGetFunctionDefinition(const llvm::Module &M,
llvm::StringRef FunctionName) {
auto *F = M.getFunction(FunctionName);
if (F && !F->isDeclaration()) {
return F;
}
return nullptr;
}
[[nodiscard]] bool LLVMProjectIRDB::debugInfoAvailableImpl() const {
return Mod->getNamedMetadata("llvm.dbg.cu") != nullptr;
}
/// Non-const overload
[[nodiscard]] llvm::Function *
LLVMProjectIRDB::getFunctionDefinition(llvm::StringRef FunctionName) {
return internalGetFunctionDefinition(*Mod, FunctionName);
}
[[nodiscard]] const llvm::Function *
LLVMProjectIRDB::getFunctionDefinitionImpl(llvm::StringRef FunctionName) const {
return internalGetFunctionDefinition(*Mod, FunctionName);
}
[[nodiscard]] const llvm::GlobalVariable *
LLVMProjectIRDB::getGlobalVariableImpl(
llvm::StringRef GlobalVariableName) const {
return Mod->getGlobalVariable(GlobalVariableName, true);
}
[[nodiscard]] const llvm::GlobalVariable *
LLVMProjectIRDB::getGlobalVariableDefinitionImpl(
llvm::StringRef GlobalVariableName) const {
const auto *G = getGlobalVariable(GlobalVariableName);
if (G && !G->isDeclaration()) {
return G;
}
return nullptr;
}
bool LLVMProjectIRDB::isValidImpl() const noexcept { return Mod != nullptr; }
void LLVMProjectIRDB::dumpImpl() const {
llvm::dbgs() << *Mod;
llvm::dbgs().flush();
}
void LLVMProjectIRDB::emitPreprocessedIR(llvm::raw_ostream &OS) const {
assert(isValid());
struct AAWriter : llvm::AssemblyAnnotationWriter {
const LLVMProjectIRDB *IRDB{};
explicit AAWriter(const LLVMProjectIRDB *IRDB) noexcept : IRDB(IRDB) {}
void printInfoComment(const llvm::Value &V,
llvm::formatted_raw_ostream &OS) override {
if (auto It = IRDB->InstToId.find(&V); It != IRDB->InstToId.end()) {
OS << "; | ID: " << It->second;
}
}
};
AAWriter AAW(this);
Mod->print(OS, &AAW);
}
void LLVMProjectIRDB::insertFunction(llvm::Function *F, bool DoPreprocessing) {
assert(F->getParent() == Mod.get() &&
"The new function F should be present in the module of the IRDB!");
size_t Id = IdToInst.size();
auto &Context = F->getContext();
for (auto &Inst : llvm::instructions(F)) {
if (DoPreprocessing) {
llvm::MDNode *Node = llvm::MDNode::get(
Context, llvm::MDString::get(Context, std::to_string(Id)));
Inst.setMetadata(PhasarConfig::MetaDataKind(), Node);
}
IdToInst.push_back(&Inst);
InstToId.try_emplace(&Inst, Id);
++Id;
}
assert(InstToId.size() == IdToInst.size());
}
template class ProjectIRDBBase<LLVMProjectIRDB>;
} // namespace psr
const llvm::Value *psr::fromMetaDataId(const LLVMProjectIRDB &IRDB,
llvm::StringRef Id) {
if (Id.empty() || Id[0] == '-') {
return nullptr;
}
auto ParseInt = [](llvm::StringRef Str) -> std::optional<unsigned> {
unsigned Num;
auto [Ptr, EC] = std::from_chars(Str.begin(), Str.end(), Num);
if (EC == std::errc{}) {
return Num;
}
PHASAR_LOG_LEVEL(WARNING,
"Invalid metadata id '"
<< Str << "': " << std::make_error_code(EC).message());
return std::nullopt;
};
if (auto Dot = Id.find('.'); Dot != llvm::StringRef::npos) {
auto FName = Id.slice(0, Dot);
auto ArgNr = ParseInt(Id.drop_front(Dot + 1));
if (!ArgNr) {
return nullptr;
}
const auto *F = IRDB.getFunction(FName);
if (F) {
return getNthFunctionArgument(F, *ArgNr);
}
return nullptr;
}
auto IdNr = ParseInt(Id);
return IdNr ? IRDB.getValueFromId(*IdNr) : nullptr;
}