blob: f0862d0b85d2b74e83695c5b2ce46250ded1ee20 [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===- SymbolizableModule.h -------------------------------------*- C++ -*-===//
2//
Andrew Walbran16937d02019-10-22 13:54:20 +01003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01006//
7//===----------------------------------------------------------------------===//
8//
9// This file declares the SymbolizableModule interface.
10//
11//===----------------------------------------------------------------------===//
12#ifndef LLVM_DEBUGINFO_SYMBOLIZE_SYMBOLIZABLEMODULE_H
13#define LLVM_DEBUGINFO_SYMBOLIZE_SYMBOLIZABLEMODULE_H
14
15#include "llvm/DebugInfo/DIContext.h"
16#include <cstdint>
17
18namespace llvm {
19namespace symbolize {
20
21using FunctionNameKind = DILineInfoSpecifier::FunctionNameKind;
22
23class SymbolizableModule {
24public:
25 virtual ~SymbolizableModule() = default;
26
27 virtual DILineInfo symbolizeCode(uint64_t ModuleOffset,
28 FunctionNameKind FNKind,
29 bool UseSymbolTable) const = 0;
30 virtual DIInliningInfo symbolizeInlinedCode(uint64_t ModuleOffset,
31 FunctionNameKind FNKind,
32 bool UseSymbolTable) const = 0;
33 virtual DIGlobal symbolizeData(uint64_t ModuleOffset) const = 0;
34
35 // Return true if this is a 32-bit x86 PE COFF module.
36 virtual bool isWin32Module() const = 0;
37
38 // Returns the preferred base of the module, i.e. where the loader would place
39 // it in memory assuming there were no conflicts.
40 virtual uint64_t getModulePreferredBase() const = 0;
41};
42
43} // end namespace symbolize
44} // end namespace llvm
45
46#endif // LLVM_DEBUGINFO_SYMBOLIZE_SYMBOLIZABLEMODULE_H