forked from google/autofdo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
addr2cu.h
42 lines (33 loc) · 1.36 KB
/
addr2cu.h
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
#ifndef AUTOFDOADDR2CU_H_
#define AUTOFDOADDR2CU_H_
#include <cstdint>
#include <memory>
#include "third_party/abseil/absl/status/statusor.h"
#include "third_party/abseil/absl/strings/string_view.h"
#include "llvm/DebugInfo/DWARF/DWARFContext.h"
#include "llvm/DebugInfo/DWARF/DWARFFormValue.h"
#include "llvm/Object/ObjectFile.h"
namespace devtools_crosstool_autofdo {
// Creates an `llvm::DWARFContext` instance, which can then be used to create
// an `Addr2Cu` instance.
absl::StatusOr<std::unique_ptr<llvm::DWARFContext>> CreateDWARFContext(
const llvm::object::ObjectFile &obj, absl::string_view dwp_file = "");
// Utility class that gets the module name for a code address with
// the help of debug information.
class Addr2Cu {
public:
explicit Addr2Cu(llvm::DWARFContext &dwarf_context)
: dwarf_context_(dwarf_context) {}
Addr2Cu(const Addr2Cu&) = delete;
Addr2Cu& operator=(const Addr2Cu&) = delete;
Addr2Cu(Addr2Cu &&) = delete;
Addr2Cu& operator=(Addr2Cu &&) = delete;
// Returns the file name for the compile unit that contains the given code
// address. Note: the returned string_view lives as long as `dwarf_context_`.
absl::StatusOr<absl::string_view> GetCompileUnitFileNameForCodeAddress(
uint64_t code_address);
private:
llvm::DWARFContext &dwarf_context_;
};
} // namespace devtools_crosstool_autofdo
#endif // AUTOFDOADDR2CU_H_