@@ -84,7 +84,7 @@ class RegisterContextUnwind : public lldb_private::RegisterContext {
8484 // past the top (end) of the stack
8585 };
8686
87- // UnwindLLDB needs to pass around references to RegisterLocations
87+ // UnwindLLDB needs to pass around references to ConcreteRegisterLocations
8888 friend class UnwindLLDB ;
8989
9090 // Returns true if we have an unwind loop -- the same stack frame unwinding
@@ -135,29 +135,28 @@ class RegisterContextUnwind : public lldb_private::RegisterContext {
135135 // preserved a register that this
136136 // function didn't modify/use.
137137 //
138- // The RegisterLocation type may be set to eRegisterNotAvailable -- this will
139- // happen for a volatile register
140- // being queried mid-stack. Instead of floating frame 0's contents of that
141- // register up the stack (which may
142- // or may not be the value of that reg when the function was executing), we
143- // won't return any value.
138+ // The ConcreteRegisterLocation type may be set to eRegisterNotAvailable --
139+ // this will happen for a volatile register being queried mid-stack. Instead
140+ // of floating frame 0's contents of that register up the stack (which may or
141+ // may not be the value of that reg when the function was executing), we won't
142+ // return any value.
144143 //
145144 // If a non-volatile register (a "preserved" register) is requested mid-stack
146145 // and no frames "below" the requested
147146 // stack have saved the register anywhere, it is safe to assume that frame 0's
148147 // register values are still the same
149148 // as the requesting frame's.
150- lldb_private::UnwindLLDB::RegisterSearchResult
151- SavedLocationForRegister ( uint32_t lldb_regnum,
152- lldb_private::UnwindLLDB::RegisterLocation ®loc);
149+ lldb_private::UnwindLLDB::RegisterSearchResult SavedLocationForRegister (
150+ uint32_t lldb_regnum,
151+ lldb_private::UnwindLLDB::ConcreteRegisterLocation ®loc);
153152
154153 bool ReadRegisterValueFromRegisterLocation (
155- lldb_private::UnwindLLDB::RegisterLocation regloc,
154+ lldb_private::UnwindLLDB::ConcreteRegisterLocation regloc,
156155 const lldb_private::RegisterInfo *reg_info,
157156 lldb_private::RegisterValue &value);
158157
159158 bool WriteRegisterValueToRegisterLocation (
160- lldb_private::UnwindLLDB::RegisterLocation regloc,
159+ lldb_private::UnwindLLDB::ConcreteRegisterLocation regloc,
161160 const lldb_private::RegisterInfo *reg_info,
162161 const lldb_private::RegisterValue &value);
163162
@@ -249,7 +248,7 @@ class RegisterContextUnwind : public lldb_private::RegisterContext {
249248
250249 uint32_t m_frame_number; // What stack frame this RegisterContext is
251250
252- std::map<uint32_t , lldb_private::UnwindLLDB::RegisterLocation >
251+ std::map<uint32_t , lldb_private::UnwindLLDB::ConcreteRegisterLocation >
253252 m_registers; // where to find reg values for this frame
254253
255254 lldb_private::UnwindLLDB &m_parent_unwind; // The UnwindLLDB that is creating
0 commit comments