blob: d3c07078759be398964d1c78fc8ea4f907e76fd2 [file] [log] [blame]
Jason Molendaab4f1922010-10-25 11:12:07 +00001//===-- UnwindLLDB.h --------------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef lldb_UnwindLLDB_h_
11#define lldb_UnwindLLDB_h_
12
Eugene Zelenkoab7f6d02015-10-21 18:46:17 +000013// C Includes
14// C++ Includes
Jason Molendaab4f1922010-10-25 11:12:07 +000015#include <vector>
16
Eugene Zelenkoab7f6d02015-10-21 18:46:17 +000017// Other libraries and framework includes
18// Project includes
Greg Claytone0d378b2011-03-24 21:19:54 +000019#include "lldb/lldb-public.h"
Jason Molendaa4bea722014-02-14 05:06:49 +000020#include "lldb/Core/ConstString.h"
Greg Claytone576ab22011-02-15 00:19:15 +000021#include "lldb/Symbol/FuncUnwinders.h"
22#include "lldb/Symbol/UnwindPlan.h"
23#include "lldb/Target/RegisterContext.h"
24#include "lldb/Target/Unwind.h"
25
Jason Molendaab4f1922010-10-25 11:12:07 +000026namespace lldb_private {
27
Jason Molenda707fec42011-11-01 03:21:25 +000028class RegisterContextLLDB;
29
Jason Molendaab4f1922010-10-25 11:12:07 +000030class UnwindLLDB : public lldb_private::Unwind
31{
32public:
33 UnwindLLDB (lldb_private::Thread &thread);
Eugene Zelenkoab7f6d02015-10-21 18:46:17 +000034
35 ~UnwindLLDB() override = default;
Jason Molenda707fec42011-11-01 03:21:25 +000036
Jason Molendaaff2a262012-11-16 01:03:31 +000037 enum RegisterSearchResult
38 {
39 eRegisterFound = 0,
40 eRegisterNotFound,
41 eRegisterIsVolatile
42 };
43
Jim Ingham8f077162011-10-21 01:49:48 +000044protected:
Jason Molenda707fec42011-11-01 03:21:25 +000045 friend class lldb_private::RegisterContextLLDB;
46
47 struct RegisterLocation {
48 enum RegisterLocationTypes
49 {
50 eRegisterNotSaved = 0, // register was not preserved by callee. If volatile reg, is unavailable
51 eRegisterSavedAtMemoryLocation, // register is saved at a specific word of target mem (target_memory_location)
52 eRegisterInRegister, // register is available in a (possible other) register (register_number)
53 eRegisterSavedAtHostMemoryLocation, // register is saved at a word in lldb's address space
Jason Molendace19fe32014-12-09 22:28:10 +000054 eRegisterValueInferred, // register val was computed (and is in inferred_value)
55 eRegisterInLiveRegisterContext // register value is in a live (stack frame #0) register
Jason Molenda707fec42011-11-01 03:21:25 +000056 };
57 int type;
58 union
59 {
60 lldb::addr_t target_memory_location;
61 uint32_t register_number; // in eRegisterKindLLDB register numbering system
62 void* host_memory_location;
63 uint64_t inferred_value; // eRegisterValueInferred - e.g. stack pointer == cfa + offset
64 } location;
65 };
66
Jason Molendaab4f1922010-10-25 11:12:07 +000067 void
Eugene Zelenkoab7f6d02015-10-21 18:46:17 +000068 DoClear() override
Jason Molendaab4f1922010-10-25 11:12:07 +000069 {
70 m_frames.clear();
Tamas Berghammer8d534642015-07-06 09:24:20 +000071 m_candidate_frame.reset();
Jim Inghamb0c72a52012-02-29 03:40:22 +000072 m_unwind_complete = false;
Jason Molendaab4f1922010-10-25 11:12:07 +000073 }
74
Eugene Zelenkoab7f6d02015-10-21 18:46:17 +000075 uint32_t
76 DoGetFrameCount() override;
Jason Molendaab4f1922010-10-25 11:12:07 +000077
78 bool
Eugene Zelenkoab7f6d02015-10-21 18:46:17 +000079 DoGetFrameInfoAtIndex(uint32_t frame_idx,
80 lldb::addr_t& cfa,
81 lldb::addr_t& start_pc) override;
Jason Molendaab4f1922010-10-25 11:12:07 +000082
Greg Clayton5ccbd292011-01-06 22:15:06 +000083 lldb::RegisterContextSP
Eugene Zelenkoab7f6d02015-10-21 18:46:17 +000084 DoCreateRegisterContextForFrame(lldb_private::StackFrame *frame) override;
Jason Molendaab4f1922010-10-25 11:12:07 +000085
Greg Clayton7b0992d2013-04-18 22:45:39 +000086 typedef std::shared_ptr<RegisterContextLLDB> RegisterContextLLDBSP;
Jason Molenda707fec42011-11-01 03:21:25 +000087
88 // Needed to retrieve the "next" frame (e.g. frame 2 needs to retrieve frame 1's RegisterContextLLDB)
89 // The RegisterContext for frame_num must already exist or this returns an empty shared pointer.
Greg Claytone1cd1be2012-01-29 20:56:30 +000090 RegisterContextLLDBSP
Jason Molenda707fec42011-11-01 03:21:25 +000091 GetRegisterContextForFrameNum (uint32_t frame_num);
92
93 // Iterate over the RegisterContextLLDB's in our m_frames vector, look for the first one that
94 // has a saved location for this reg.
95 bool
Jason Molenda23399d72013-06-05 00:12:50 +000096 SearchForSavedLocationForRegister (uint32_t lldb_regnum, lldb_private::UnwindLLDB::RegisterLocation &regloc, uint32_t starting_frame_num, bool pc_register);
Jason Molenda707fec42011-11-01 03:21:25 +000097
98
Jason Molendaa4bea722014-02-14 05:06:49 +000099 //------------------------------------------------------------------
100 /// Provide the list of user-specified trap handler functions
101 ///
102 /// The Platform is one source of trap handler function names; that
103 /// may be augmented via a setting. The setting needs to be converted
104 /// into an array of ConstStrings before it can be used - we only want
105 /// to do that once per thread so it's here in the UnwindLLDB object.
106 ///
107 /// @return
108 /// Vector of ConstStrings of trap handler function names. May be
109 /// empty.
110 //------------------------------------------------------------------
111 const std::vector<ConstString> &
112 GetUserSpecifiedTrapHandlerFunctionNames ()
113 {
114 return m_user_supplied_trap_handler_functions;
115 }
116
Jason Molendaab4f1922010-10-25 11:12:07 +0000117private:
118 struct Cursor
119 {
120 lldb::addr_t start_pc; // The start address of the function/symbol for this frame - current pc if unknown
121 lldb::addr_t cfa; // The canonical frame address for this stack frame
122 lldb_private::SymbolContext sctx; // A symbol context we'll contribute to & provide to the StackFrame creation
Greg Claytone1cd1be2012-01-29 20:56:30 +0000123 RegisterContextLLDBSP reg_ctx_lldb_sp; // These are all RegisterContextLLDB's
Jason Molendaab4f1922010-10-25 11:12:07 +0000124
Greg Claytone1cd1be2012-01-29 20:56:30 +0000125 Cursor () : start_pc (LLDB_INVALID_ADDRESS), cfa (LLDB_INVALID_ADDRESS), sctx(), reg_ctx_lldb_sp() { }
Jason Molenda45b49242010-11-09 01:21:22 +0000126 private:
Jason Molendafa19c3e72010-11-04 09:40:56 +0000127 DISALLOW_COPY_AND_ASSIGN (Cursor);
Jason Molendaab4f1922010-10-25 11:12:07 +0000128 };
129
Greg Clayton7b0992d2013-04-18 22:45:39 +0000130 typedef std::shared_ptr<Cursor> CursorSP;
Jason Molenda59762002010-11-04 00:53:20 +0000131 std::vector<CursorSP> m_frames;
Tamas Berghammer8d534642015-07-06 09:24:20 +0000132 CursorSP m_candidate_frame;
Jim Inghamb0c72a52012-02-29 03:40:22 +0000133 bool m_unwind_complete; // If this is true, we've enumerated all the frames in the stack, and m_frames.size() is the
134 // number of frames, etc. Otherwise we've only gone as far as directly asked, and m_frames.size()
135 // is how far we've currently gone.
136
Jason Molendaa4bea722014-02-14 05:06:49 +0000137 std::vector<ConstString> m_user_supplied_trap_handler_functions;
Jason Molendaab4f1922010-10-25 11:12:07 +0000138
Abhishek Aggarwalbe994642015-11-13 10:47:49 +0000139 //-----------------------------------------------------------------
140 // Check if Full UnwindPlan of First frame is valid or not.
141 // If not then try Fallback UnwindPlan of the frame. If Fallback
142 // UnwindPlan succeeds then update the Full UnwindPlan with the
143 // Fallback UnwindPlan.
144 //-----------------------------------------------------------------
145 void
146 UpdateUnwindPlanForFirstFrameIfInvalid (ABI* abi);
147
Tamas Berghammer8d534642015-07-06 09:24:20 +0000148 CursorSP
149 GetOneMoreFrame (ABI* abi);
150
151 bool
152 AddOneMoreFrame (ABI *abi);
153
154 bool
155 AddFirstFrame ();
Jason Molenda8fed2952010-11-09 02:31:21 +0000156
Jason Molendaab4f1922010-10-25 11:12:07 +0000157 //------------------------------------------------------------------
158 // For UnwindLLDB only
159 //------------------------------------------------------------------
160 DISALLOW_COPY_AND_ASSIGN (UnwindLLDB);
161};
162
Eugene Zelenkoab7f6d02015-10-21 18:46:17 +0000163} // namespace lldb_private
Jason Molendaab4f1922010-10-25 11:12:07 +0000164
Eugene Zelenkoab7f6d02015-10-21 18:46:17 +0000165#endif // lldb_UnwindLLDB_h_