mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
45 lines
1.1 KiB
C++
45 lines
1.1 KiB
C++
#pragma once
|
|
|
|
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
#include "llvm/Object/Binary.h"
|
|
|
|
#include "revng/Model/Binary.h"
|
|
|
|
struct ImporterOptions;
|
|
|
|
class DwarfImporter {
|
|
private:
|
|
TupleTree<model::Binary> &Model;
|
|
std::vector<std::string> LoadedFiles;
|
|
using DwarfID = std::pair<size_t, size_t>;
|
|
std::map<DwarfID, model::QualifiedType> DwarfToModel;
|
|
|
|
public:
|
|
DwarfImporter(TupleTree<model::Binary> &Model) : Model(Model) {}
|
|
|
|
public:
|
|
model::QualifiedType *findType(DwarfID ID) {
|
|
auto It = DwarfToModel.find(ID);
|
|
return It == DwarfToModel.end() ? nullptr : &It->second;
|
|
}
|
|
|
|
const model::QualifiedType &
|
|
recordType(DwarfID ID, const model::QualifiedType &QT) {
|
|
revng_assert(DwarfToModel.count(ID) == 0);
|
|
return DwarfToModel.insert({ ID, QT }).first->second;
|
|
}
|
|
|
|
TupleTree<model::Binary> &getModel() { return Model; }
|
|
|
|
public:
|
|
void import(llvm::StringRef FileName, const ImporterOptions &Options);
|
|
|
|
private:
|
|
void import(const llvm::object::Binary &TheBinary,
|
|
llvm::StringRef FileName,
|
|
std::uint64_t PreferredBaseAddress);
|
|
};
|