]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpParser.h
Merge clang 7.0.1 and several follow-up changes
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / source / Plugins / Process / minidump / MinidumpParser.h
1 //===-- MinidumpParser.h -----------------------------------------*- C++
2 //-*-===//
3 //
4 //                     The LLVM Compiler Infrastructure
5 //
6 // This file is distributed under the University of Illinois Open Source
7 // License. See LICENSE.TXT for details.
8 //
9 //===----------------------------------------------------------------------===//
10
11 #ifndef liblldb_MinidumpParser_h_
12 #define liblldb_MinidumpParser_h_
13
14 // Project includes
15 #include "MinidumpTypes.h"
16
17 #include "lldb/Utility/ArchSpec.h"
18 #include "lldb/Utility/DataBuffer.h"
19 #include "lldb/Utility/Status.h"
20 #include "lldb/Utility/UUID.h"
21
22 #include "llvm/ADT/ArrayRef.h"
23 #include "llvm/ADT/DenseMap.h"
24 #include "llvm/ADT/Optional.h"
25 #include "llvm/ADT/StringRef.h"
26
27 // C includes
28
29 // C++ includes
30 #include <cstring>
31 #include <unordered_map>
32
33 namespace lldb_private {
34
35 namespace minidump {
36
37 // Describes a range of memory captured in the Minidump
38 struct Range {
39   lldb::addr_t start; // virtual address of the beginning of the range
40   // range_ref - absolute pointer to the first byte of the range and size
41   llvm::ArrayRef<uint8_t> range_ref;
42
43   Range(lldb::addr_t start, llvm::ArrayRef<uint8_t> range_ref)
44       : start(start), range_ref(range_ref) {}
45 };
46
47 class MinidumpParser {
48 public:
49   static llvm::Optional<MinidumpParser>
50   Create(const lldb::DataBufferSP &data_buf_sp);
51
52   llvm::ArrayRef<uint8_t> GetData();
53
54   llvm::ArrayRef<uint8_t> GetStream(MinidumpStreamType stream_type);
55
56   llvm::Optional<std::string> GetMinidumpString(uint32_t rva);
57
58   UUID GetModuleUUID(const MinidumpModule* module);
59
60   llvm::ArrayRef<MinidumpThread> GetThreads();
61
62   llvm::ArrayRef<uint8_t> GetThreadContext(const MinidumpThread &td);
63
64   llvm::ArrayRef<uint8_t> GetThreadContextWow64(const MinidumpThread &td);
65
66   const MinidumpSystemInfo *GetSystemInfo();
67
68   ArchSpec GetArchitecture();
69
70   const MinidumpMiscInfo *GetMiscInfo();
71
72   llvm::Optional<LinuxProcStatus> GetLinuxProcStatus();
73
74   llvm::Optional<lldb::pid_t> GetPid();
75
76   llvm::ArrayRef<MinidumpModule> GetModuleList();
77
78   // There are cases in which there is more than one record in the ModuleList
79   // for the same module name.(e.g. when the binary has non contiguous segments)
80   // So this function returns a filtered module list - if it finds records that
81   // have the same name, it keeps the copy with the lowest load address.
82   std::vector<const MinidumpModule *> GetFilteredModuleList();
83
84   const MinidumpExceptionStream *GetExceptionStream();
85
86   llvm::Optional<Range> FindMemoryRange(lldb::addr_t addr);
87
88   llvm::ArrayRef<uint8_t> GetMemory(lldb::addr_t addr, size_t size);
89
90   llvm::Optional<MemoryRegionInfo> GetMemoryRegionInfo(lldb::addr_t);
91
92   // Perform consistency checks and initialize internal data structures
93   Status Initialize();
94
95 private:
96   MinidumpParser(const lldb::DataBufferSP &data_buf_sp);
97
98 private:
99   lldb::DataBufferSP m_data_sp;
100   llvm::DenseMap<uint32_t, MinidumpLocationDescriptor> m_directory_map;
101 };
102
103 } // end namespace minidump
104 } // end namespace lldb_private
105 #endif // liblldb_MinidumpParser_h_