blob: cf93c86d0b521318a7d1f79264634bff1829e2af [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- ValueObject.cpp -----------------------------------------*- 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
Daniel Malea93a64302012-12-05 00:20:57 +000010#include "lldb/lldb-python.h"
11
Chris Lattner30fdc8d2010-06-08 16:52:24 +000012#include "lldb/Core/ValueObject.h"
13
14// C Includes
Greg Claytonf5e56de2010-09-14 23:36:40 +000015#include <stdlib.h>
16
Chris Lattner30fdc8d2010-06-08 16:52:24 +000017// C++ Includes
18// Other libraries and framework includes
Chris Lattner30fdc8d2010-06-08 16:52:24 +000019#include "llvm/Support/raw_ostream.h"
Jim Ingham5a369122010-09-28 01:25:32 +000020#include "clang/AST/Type.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000021
22// Project includes
23#include "lldb/Core/DataBufferHeap.h"
Enrico Granata4becb372011-06-29 22:27:15 +000024#include "lldb/Core/Debugger.h"
Enrico Granata6f3533f2011-07-29 19:53:35 +000025#include "lldb/Core/Log.h"
Greg Clayton1f746072012-08-29 21:13:06 +000026#include "lldb/Core/Module.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000027#include "lldb/Core/StreamString.h"
Enrico Granata21fd13f2012-10-27 02:05:48 +000028#include "lldb/Core/ValueObjectCast.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000029#include "lldb/Core/ValueObjectChild.h"
Greg Clayton8b2fe6d2010-12-14 02:59:59 +000030#include "lldb/Core/ValueObjectConstResult.h"
Jim Ingham78a685a2011-04-16 00:01:13 +000031#include "lldb/Core/ValueObjectDynamicValue.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000032#include "lldb/Core/ValueObjectList.h"
Greg Claytonb2dcc362011-05-05 23:32:56 +000033#include "lldb/Core/ValueObjectMemory.h"
Enrico Granatad55546b2011-07-22 00:16:08 +000034#include "lldb/Core/ValueObjectSyntheticFilter.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000035
Enrico Granata5548cb52013-01-28 23:47:25 +000036#include "lldb/DataFormatters/DataVisualization.h"
Enrico Granata4d93b8c2013-09-30 19:11:51 +000037#include "lldb/DataFormatters/ValueObjectPrinter.h"
Enrico Granata5548cb52013-01-28 23:47:25 +000038
Greg Clayton7fb56d02011-02-01 01:31:41 +000039#include "lldb/Host/Endian.h"
40
Enrico Granata61a80ba2011-08-12 16:42:31 +000041#include "lldb/Interpreter/CommandInterpreter.h"
Enrico Granataf2bbf712011-07-15 02:26:42 +000042#include "lldb/Interpreter/ScriptInterpreterPython.h"
43
Greg Claytone1a916a2010-07-21 22:12:05 +000044#include "lldb/Symbol/ClangASTType.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000045#include "lldb/Symbol/ClangASTContext.h"
46#include "lldb/Symbol/Type.h"
47
Jim Ingham53c47f12010-09-10 23:12:17 +000048#include "lldb/Target/ExecutionContext.h"
Jim Ingham5a369122010-09-28 01:25:32 +000049#include "lldb/Target/LanguageRuntime.h"
Enrico Granatac3e320a2011-08-02 17:27:39 +000050#include "lldb/Target/ObjCLanguageRuntime.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000051#include "lldb/Target/Process.h"
52#include "lldb/Target/RegisterContext.h"
Greg Claytond5944cd2013-12-06 01:12:00 +000053#include "lldb/Target/SectionLoadList.h"
Greg Claytonf5e56de2010-09-14 23:36:40 +000054#include "lldb/Target/Target.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000055#include "lldb/Target/Thread.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000056
57using namespace lldb;
58using namespace lldb_private;
Enrico Granataf4efecd2011-07-12 22:56:10 +000059using namespace lldb_utility;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000060
Greg Claytonafacd142011-09-02 01:15:17 +000061static user_id_t g_value_obj_uid = 0;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000062
63//----------------------------------------------------------------------
64// ValueObject constructor
65//----------------------------------------------------------------------
Jim Ingham6035b672011-03-31 00:19:25 +000066ValueObject::ValueObject (ValueObject &parent) :
Chris Lattner30fdc8d2010-06-08 16:52:24 +000067 UserID (++g_value_obj_uid), // Unique identifier for every value object
Jim Ingham6035b672011-03-31 00:19:25 +000068 m_parent (&parent),
Enrico Granata4873e522013-04-11 22:48:58 +000069 m_root (NULL),
Stephen Wilson71c21d12011-04-11 19:41:40 +000070 m_update_point (parent.GetUpdatePoint ()),
Chris Lattner30fdc8d2010-06-08 16:52:24 +000071 m_name (),
72 m_data (),
73 m_value (),
74 m_error (),
Greg Clayton288bdf92010-09-02 02:59:18 +000075 m_value_str (),
76 m_old_value_str (),
77 m_location_str (),
78 m_summary_str (),
Jim Ingham53c47f12010-09-10 23:12:17 +000079 m_object_desc_str (),
Jim Ingham58b59f92011-04-22 23:53:53 +000080 m_manager(parent.GetManager()),
Greg Clayton288bdf92010-09-02 02:59:18 +000081 m_children (),
82 m_synthetic_children (),
Jim Ingham58b59f92011-04-22 23:53:53 +000083 m_dynamic_value (NULL),
Enrico Granatad55546b2011-07-22 00:16:08 +000084 m_synthetic_value(NULL),
Jim Ingham58b59f92011-04-22 23:53:53 +000085 m_deref_valobj(NULL),
Greg Clayton32c40852010-10-06 03:09:11 +000086 m_format (eFormatDefault),
Enrico Granatab294fd22013-05-31 19:18:19 +000087 m_last_format (eFormatDefault),
Enrico Granata9df29e32011-07-19 20:57:44 +000088 m_last_format_mgr_revision(0),
Enrico Granata0c489f52012-03-01 04:24:26 +000089 m_type_summary_sp(),
90 m_type_format_sp(),
91 m_synthetic_children_sp(),
Jim Ingham4b536182011-08-09 02:12:22 +000092 m_user_id_of_forced_summary(),
Daniel Dunbara08823f2011-10-31 22:50:49 +000093 m_address_type_of_ptr_or_ref_children(eAddressTypeInvalid),
Greg Clayton288bdf92010-09-02 02:59:18 +000094 m_value_is_valid (false),
95 m_value_did_change (false),
96 m_children_count_valid (false),
Greg Clayton8b2fe6d2010-12-14 02:59:59 +000097 m_old_value_valid (false),
Enrico Granata4becb372011-06-29 22:27:15 +000098 m_is_deref_of_parent (false),
Enrico Granata0a3958e2011-07-02 00:25:22 +000099 m_is_array_item_for_pointer(false),
Enrico Granata9fc19442011-07-06 02:13:41 +0000100 m_is_bitfield_for_scalar(false),
Enrico Granata6f3533f2011-07-29 19:53:35 +0000101 m_is_child_at_offset(false),
Sean Callanan72772842012-02-22 23:57:45 +0000102 m_is_getting_summary(false),
103 m_did_calculate_complete_objc_class_type(false)
Jim Ingham6035b672011-03-31 00:19:25 +0000104{
Jim Ingham58b59f92011-04-22 23:53:53 +0000105 m_manager->ManageObject(this);
Jim Ingham6035b672011-03-31 00:19:25 +0000106}
107
108//----------------------------------------------------------------------
109// ValueObject constructor
110//----------------------------------------------------------------------
Enrico Granata9128ee22011-09-06 19:20:51 +0000111ValueObject::ValueObject (ExecutionContextScope *exe_scope,
112 AddressType child_ptr_or_ref_addr_type) :
Jim Ingham6035b672011-03-31 00:19:25 +0000113 UserID (++g_value_obj_uid), // Unique identifier for every value object
114 m_parent (NULL),
Enrico Granata4873e522013-04-11 22:48:58 +0000115 m_root (NULL),
Stephen Wilson71c21d12011-04-11 19:41:40 +0000116 m_update_point (exe_scope),
Jim Ingham6035b672011-03-31 00:19:25 +0000117 m_name (),
118 m_data (),
119 m_value (),
120 m_error (),
121 m_value_str (),
122 m_old_value_str (),
123 m_location_str (),
124 m_summary_str (),
125 m_object_desc_str (),
Jim Ingham58b59f92011-04-22 23:53:53 +0000126 m_manager(),
Jim Ingham6035b672011-03-31 00:19:25 +0000127 m_children (),
128 m_synthetic_children (),
Jim Ingham58b59f92011-04-22 23:53:53 +0000129 m_dynamic_value (NULL),
Enrico Granatad55546b2011-07-22 00:16:08 +0000130 m_synthetic_value(NULL),
Jim Ingham58b59f92011-04-22 23:53:53 +0000131 m_deref_valobj(NULL),
Jim Ingham6035b672011-03-31 00:19:25 +0000132 m_format (eFormatDefault),
Enrico Granatab294fd22013-05-31 19:18:19 +0000133 m_last_format (eFormatDefault),
Enrico Granata9df29e32011-07-19 20:57:44 +0000134 m_last_format_mgr_revision(0),
Enrico Granata0c489f52012-03-01 04:24:26 +0000135 m_type_summary_sp(),
136 m_type_format_sp(),
137 m_synthetic_children_sp(),
Jim Ingham4b536182011-08-09 02:12:22 +0000138 m_user_id_of_forced_summary(),
Daniel Dunbara08823f2011-10-31 22:50:49 +0000139 m_address_type_of_ptr_or_ref_children(child_ptr_or_ref_addr_type),
Jim Ingham6035b672011-03-31 00:19:25 +0000140 m_value_is_valid (false),
141 m_value_did_change (false),
142 m_children_count_valid (false),
143 m_old_value_valid (false),
Enrico Granata4becb372011-06-29 22:27:15 +0000144 m_is_deref_of_parent (false),
Enrico Granata0a3958e2011-07-02 00:25:22 +0000145 m_is_array_item_for_pointer(false),
Enrico Granata9fc19442011-07-06 02:13:41 +0000146 m_is_bitfield_for_scalar(false),
Enrico Granata6f3533f2011-07-29 19:53:35 +0000147 m_is_child_at_offset(false),
Sean Callanan72772842012-02-22 23:57:45 +0000148 m_is_getting_summary(false),
149 m_did_calculate_complete_objc_class_type(false)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000150{
Jim Ingham58b59f92011-04-22 23:53:53 +0000151 m_manager = new ValueObjectManager();
152 m_manager->ManageObject (this);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000153}
154
155//----------------------------------------------------------------------
156// Destructor
157//----------------------------------------------------------------------
158ValueObject::~ValueObject ()
159{
160}
161
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000162bool
Enrico Granata0a3958e2011-07-02 00:25:22 +0000163ValueObject::UpdateValueIfNeeded (bool update_format)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000164{
Enrico Granata4becb372011-06-29 22:27:15 +0000165
Enrico Granata9128ee22011-09-06 19:20:51 +0000166 bool did_change_formats = false;
167
Enrico Granata0a3958e2011-07-02 00:25:22 +0000168 if (update_format)
Enrico Granata5548cb52013-01-28 23:47:25 +0000169 did_change_formats = UpdateFormatsIfNeeded();
Enrico Granata4becb372011-06-29 22:27:15 +0000170
Greg Claytonb71f3842010-10-05 03:13:51 +0000171 // If this is a constant value, then our success is predicated on whether
172 // we have an error or not
173 if (GetIsConstant())
Enrico Granata9128ee22011-09-06 19:20:51 +0000174 {
Enrico Granatab1c6c482013-10-09 00:33:55 +0000175 // if you are constant, things might still have changed behind your back
176 // (e.g. you are a frozen object and things have changed deeper than you cared to freeze-dry yourself)
177 // in this case, your value has not changed, but "computed" entries might have, so you might now have
178 // a different summary, or a different object description. clear these so we will recompute them
Enrico Granata9128ee22011-09-06 19:20:51 +0000179 if (update_format && !did_change_formats)
Enrico Granatab1c6c482013-10-09 00:33:55 +0000180 ClearUserVisibleData(eClearUserVisibleDataItemsSummary | eClearUserVisibleDataItemsDescription);
Greg Claytonb71f3842010-10-05 03:13:51 +0000181 return m_error.Success();
Enrico Granata9128ee22011-09-06 19:20:51 +0000182 }
Greg Claytonb71f3842010-10-05 03:13:51 +0000183
Jim Ingham6035b672011-03-31 00:19:25 +0000184 bool first_update = m_update_point.IsFirstEvaluation();
185
186 if (m_update_point.NeedsUpdating())
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000187 {
Jim Ingham6035b672011-03-31 00:19:25 +0000188 m_update_point.SetUpdated();
189
190 // Save the old value using swap to avoid a string copy which
191 // also will clear our m_value_str
192 if (m_value_str.empty())
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000193 {
Jim Ingham6035b672011-03-31 00:19:25 +0000194 m_old_value_valid = false;
195 }
196 else
197 {
198 m_old_value_valid = true;
199 m_old_value_str.swap (m_value_str);
Enrico Granata86cc9822012-03-19 22:58:49 +0000200 ClearUserVisibleData(eClearUserVisibleDataItemsValue);
Jim Ingham6035b672011-03-31 00:19:25 +0000201 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000202
Enrico Granataf2bbf712011-07-15 02:26:42 +0000203 ClearUserVisibleData();
204
Greg Claytonefbc7d22012-03-09 04:23:44 +0000205 if (IsInScope())
Jim Ingham6035b672011-03-31 00:19:25 +0000206 {
Greg Claytonefbc7d22012-03-09 04:23:44 +0000207 const bool value_was_valid = GetValueIsValid();
208 SetValueDidChange (false);
209
210 m_error.Clear();
211
212 // Call the pure virtual function to update the value
213 bool success = UpdateValue ();
214
215 SetValueIsValid (success);
216
217 if (first_update)
218 SetValueDidChange (false);
219 else if (!m_value_did_change && success == false)
220 {
221 // The value wasn't gotten successfully, so we mark this
222 // as changed if the value used to be valid and now isn't
223 SetValueDidChange (value_was_valid);
224 }
225 }
226 else
227 {
228 m_error.SetErrorString("out of scope");
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000229 }
230 }
231 return m_error.Success();
232}
233
Enrico Granata9128ee22011-09-06 19:20:51 +0000234bool
Enrico Granata5548cb52013-01-28 23:47:25 +0000235ValueObject::UpdateFormatsIfNeeded()
Enrico Granata4becb372011-06-29 22:27:15 +0000236{
Greg Clayton5160ce52013-03-27 23:08:40 +0000237 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_TYPES));
Enrico Granata6f3533f2011-07-29 19:53:35 +0000238 if (log)
Enrico Granatad2284832012-10-17 22:23:56 +0000239 log->Printf("[%s %p] checking for FormatManager revisions. ValueObject rev: %d - Global rev: %d",
Enrico Granata6f3533f2011-07-29 19:53:35 +0000240 GetName().GetCString(),
Enrico Granatad2284832012-10-17 22:23:56 +0000241 this,
Enrico Granata4becb372011-06-29 22:27:15 +0000242 m_last_format_mgr_revision,
Enrico Granata85933ed2011-08-18 16:38:26 +0000243 DataVisualization::GetCurrentRevision());
Enrico Granata9128ee22011-09-06 19:20:51 +0000244
245 bool any_change = false;
246
Enrico Granata5548cb52013-01-28 23:47:25 +0000247 if ( (m_last_format_mgr_revision != DataVisualization::GetCurrentRevision()))
Enrico Granata4becb372011-06-29 22:27:15 +0000248 {
Enrico Granata852cc952013-10-08 19:03:22 +0000249 SetValueFormat(DataVisualization::GetFormat (*this, eNoDynamicValues));
Enrico Granata5548cb52013-01-28 23:47:25 +0000250 SetSummaryFormat(DataVisualization::GetSummaryFormat (*this, GetDynamicValueType()));
Jason Molenda7a9a72b2012-05-16 00:38:08 +0000251#ifndef LLDB_DISABLE_PYTHON
Enrico Granata5548cb52013-01-28 23:47:25 +0000252 SetSyntheticChildren(DataVisualization::GetSyntheticChildren (*this, GetDynamicValueType()));
Jason Molenda7a9a72b2012-05-16 00:38:08 +0000253#endif
Enrico Granata1490c6f2011-07-19 02:34:21 +0000254
Enrico Granata85933ed2011-08-18 16:38:26 +0000255 m_last_format_mgr_revision = DataVisualization::GetCurrentRevision();
Enrico Granata855cd902011-09-06 22:59:55 +0000256
257 any_change = true;
Enrico Granata4becb372011-06-29 22:27:15 +0000258 }
Enrico Granata9128ee22011-09-06 19:20:51 +0000259
260 return any_change;
261
Enrico Granata4becb372011-06-29 22:27:15 +0000262}
263
Jim Ingham16e0c682011-08-12 23:34:31 +0000264void
265ValueObject::SetNeedsUpdate ()
266{
267 m_update_point.SetNeedsUpdate();
268 // We have to clear the value string here so ConstResult children will notice if their values are
269 // changed by hand (i.e. with SetValueAsCString).
Enrico Granata86cc9822012-03-19 22:58:49 +0000270 ClearUserVisibleData(eClearUserVisibleDataItemsValue);
Jim Ingham16e0c682011-08-12 23:34:31 +0000271}
272
Enrico Granata13ac0e22012-10-17 19:03:34 +0000273void
Enrico Granatae3e91512012-10-22 18:18:36 +0000274ValueObject::ClearDynamicTypeInformation ()
Enrico Granata13ac0e22012-10-17 19:03:34 +0000275{
Enrico Granata38c54632013-10-30 00:04:29 +0000276 m_children_count_valid = false;
Enrico Granata13ac0e22012-10-17 19:03:34 +0000277 m_did_calculate_complete_objc_class_type = false;
Enrico Granatae3e91512012-10-22 18:18:36 +0000278 m_last_format_mgr_revision = 0;
Enrico Granata13ac0e22012-10-17 19:03:34 +0000279 m_override_type = ClangASTType();
Enrico Granatae3e91512012-10-22 18:18:36 +0000280 SetValueFormat(lldb::TypeFormatImplSP());
281 SetSummaryFormat(lldb::TypeSummaryImplSP());
282 SetSyntheticChildren(lldb::SyntheticChildrenSP());
Enrico Granata13ac0e22012-10-17 19:03:34 +0000283}
284
Sean Callanan72772842012-02-22 23:57:45 +0000285ClangASTType
286ValueObject::MaybeCalculateCompleteType ()
287{
Greg Clayton57ee3062013-07-11 22:46:58 +0000288 ClangASTType clang_type(GetClangTypeImpl());
Sean Callanan356e17c2012-03-30 02:04:38 +0000289
Sean Callanan72772842012-02-22 23:57:45 +0000290 if (m_did_calculate_complete_objc_class_type)
291 {
292 if (m_override_type.IsValid())
293 return m_override_type;
294 else
Greg Clayton57ee3062013-07-11 22:46:58 +0000295 return clang_type;
Sean Callanan72772842012-02-22 23:57:45 +0000296 }
297
Greg Clayton57ee3062013-07-11 22:46:58 +0000298 ClangASTType class_type;
299 bool is_pointer_type = false;
Sean Callanan72772842012-02-22 23:57:45 +0000300
Greg Clayton57ee3062013-07-11 22:46:58 +0000301 if (clang_type.IsObjCObjectPointerType(&class_type))
Sean Callanan72772842012-02-22 23:57:45 +0000302 {
303 is_pointer_type = true;
304 }
Greg Clayton57ee3062013-07-11 22:46:58 +0000305 else if (clang_type.IsObjCObjectOrInterfaceType())
Sean Callanan72772842012-02-22 23:57:45 +0000306 {
Greg Clayton57ee3062013-07-11 22:46:58 +0000307 class_type = clang_type;
Sean Callanan72772842012-02-22 23:57:45 +0000308 }
309 else
310 {
Greg Clayton57ee3062013-07-11 22:46:58 +0000311 return clang_type;
Sean Callanan72772842012-02-22 23:57:45 +0000312 }
313
314 m_did_calculate_complete_objc_class_type = true;
315
Greg Clayton57ee3062013-07-11 22:46:58 +0000316 if (class_type)
Sean Callanan72772842012-02-22 23:57:45 +0000317 {
Greg Clayton57ee3062013-07-11 22:46:58 +0000318 ConstString class_name (class_type.GetConstTypeName());
Sean Callanan72772842012-02-22 23:57:45 +0000319
Greg Clayton57ee3062013-07-11 22:46:58 +0000320 if (class_name)
321 {
322 ProcessSP process_sp(GetUpdatePoint().GetExecutionContextRef().GetProcessSP());
323
324 if (process_sp)
325 {
326 ObjCLanguageRuntime *objc_language_runtime(process_sp->GetObjCLanguageRuntime());
327
328 if (objc_language_runtime)
329 {
330 TypeSP complete_objc_class_type_sp = objc_language_runtime->LookupInCompleteClassCache(class_name);
331
332 if (complete_objc_class_type_sp)
333 {
334 ClangASTType complete_class(complete_objc_class_type_sp->GetClangFullType());
335
336 if (complete_class.GetCompleteType())
337 {
338 if (is_pointer_type)
339 {
340 m_override_type = complete_class.GetPointerType();
341 }
342 else
343 {
344 m_override_type = complete_class;
345 }
346
347 if (m_override_type.IsValid())
348 return m_override_type;
349 }
350 }
351 }
352 }
353 }
Sean Callanan72772842012-02-22 23:57:45 +0000354 }
Greg Clayton57ee3062013-07-11 22:46:58 +0000355 return clang_type;
Sean Callanan72772842012-02-22 23:57:45 +0000356}
357
Greg Clayton57ee3062013-07-11 22:46:58 +0000358ClangASTType
Sean Callanan72772842012-02-22 23:57:45 +0000359ValueObject::GetClangType ()
360{
Greg Clayton57ee3062013-07-11 22:46:58 +0000361 return MaybeCalculateCompleteType();
Sean Callanan72772842012-02-22 23:57:45 +0000362}
363
Enrico Granatadc4db5a2013-10-29 00:28:35 +0000364TypeImpl
365ValueObject::GetTypeImpl ()
366{
367 return TypeImpl(GetClangType());
368}
369
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000370DataExtractor &
371ValueObject::GetDataExtractor ()
372{
Enrico Granatac3e320a2011-08-02 17:27:39 +0000373 UpdateValueIfNeeded(false);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000374 return m_data;
375}
376
377const Error &
Greg Clayton262f80d2011-07-06 16:49:27 +0000378ValueObject::GetError()
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000379{
Enrico Granatac3e320a2011-08-02 17:27:39 +0000380 UpdateValueIfNeeded(false);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000381 return m_error;
382}
383
384const ConstString &
385ValueObject::GetName() const
386{
387 return m_name;
388}
389
390const char *
Jim Ingham6035b672011-03-31 00:19:25 +0000391ValueObject::GetLocationAsCString ()
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000392{
Enrico Granata82fabf82013-04-30 20:45:04 +0000393 return GetLocationAsCStringImpl(m_value,
394 m_data);
395}
396
397const char *
398ValueObject::GetLocationAsCStringImpl (const Value& value,
399 const DataExtractor& data)
400{
Enrico Granatac3e320a2011-08-02 17:27:39 +0000401 if (UpdateValueIfNeeded(false))
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000402 {
403 if (m_location_str.empty())
404 {
405 StreamString sstr;
Enrico Granata82fabf82013-04-30 20:45:04 +0000406
407 Value::ValueType value_type = value.GetValueType();
408
409 switch (value_type)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000410 {
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000411 case Value::eValueTypeScalar:
Greg Clayton0665a0f2012-10-30 18:18:43 +0000412 case Value::eValueTypeVector:
Enrico Granata82fabf82013-04-30 20:45:04 +0000413 if (value.GetContextType() == Value::eContextTypeRegisterInfo)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000414 {
Enrico Granata82fabf82013-04-30 20:45:04 +0000415 RegisterInfo *reg_info = value.GetRegisterInfo();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000416 if (reg_info)
417 {
418 if (reg_info->name)
419 m_location_str = reg_info->name;
420 else if (reg_info->alt_name)
421 m_location_str = reg_info->alt_name;
Enrico Granata82fabf82013-04-30 20:45:04 +0000422 if (m_location_str.empty())
423 m_location_str = (reg_info->encoding == lldb::eEncodingVector) ? "vector" : "scalar";
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000424 }
425 }
Enrico Granata82fabf82013-04-30 20:45:04 +0000426 if (m_location_str.empty())
427 m_location_str = (value_type == Value::eValueTypeVector) ? "vector" : "scalar";
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000428 break;
429
430 case Value::eValueTypeLoadAddress:
431 case Value::eValueTypeFileAddress:
432 case Value::eValueTypeHostAddress:
433 {
Enrico Granata82fabf82013-04-30 20:45:04 +0000434 uint32_t addr_nibble_size = data.GetAddressByteSize() * 2;
435 sstr.Printf("0x%*.*llx", addr_nibble_size, addr_nibble_size, value.GetScalar().ULongLong(LLDB_INVALID_ADDRESS));
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000436 m_location_str.swap(sstr.GetString());
437 }
438 break;
439 }
440 }
441 }
442 return m_location_str.c_str();
443}
444
445Value &
446ValueObject::GetValue()
447{
448 return m_value;
449}
450
451const Value &
452ValueObject::GetValue() const
453{
454 return m_value;
455}
456
457bool
Jim Ingham6035b672011-03-31 00:19:25 +0000458ValueObject::ResolveValue (Scalar &scalar)
Greg Clayton8f343b02010-11-04 01:54:29 +0000459{
Enrico Granata6fd87d52011-08-04 01:41:02 +0000460 if (UpdateValueIfNeeded(false)) // make sure that you are up to date before returning anything
461 {
Greg Claytoncc4d0142012-02-17 07:49:44 +0000462 ExecutionContext exe_ctx (GetExecutionContextRef());
Jim Ingham16e0c682011-08-12 23:34:31 +0000463 Value tmp_value(m_value);
Greg Clayton57ee3062013-07-11 22:46:58 +0000464 scalar = tmp_value.ResolveValue(&exe_ctx);
Greg Claytondcad5022011-12-29 01:26:56 +0000465 if (scalar.IsValid())
466 {
467 const uint32_t bitfield_bit_size = GetBitfieldBitSize();
468 if (bitfield_bit_size)
469 return scalar.ExtractBitfield (bitfield_bit_size, GetBitfieldBitOffset());
470 return true;
471 }
Enrico Granata6fd87d52011-08-04 01:41:02 +0000472 }
Greg Claytondcad5022011-12-29 01:26:56 +0000473 return false;
Greg Clayton8f343b02010-11-04 01:54:29 +0000474}
475
476bool
Greg Clayton288bdf92010-09-02 02:59:18 +0000477ValueObject::GetValueIsValid () const
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000478{
Greg Clayton288bdf92010-09-02 02:59:18 +0000479 return m_value_is_valid;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000480}
481
482
483void
484ValueObject::SetValueIsValid (bool b)
485{
Greg Clayton288bdf92010-09-02 02:59:18 +0000486 m_value_is_valid = b;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000487}
488
489bool
Jim Ingham6035b672011-03-31 00:19:25 +0000490ValueObject::GetValueDidChange ()
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000491{
Jim Ingham6035b672011-03-31 00:19:25 +0000492 GetValueAsCString ();
Greg Clayton288bdf92010-09-02 02:59:18 +0000493 return m_value_did_change;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000494}
495
496void
497ValueObject::SetValueDidChange (bool value_changed)
498{
Greg Clayton288bdf92010-09-02 02:59:18 +0000499 m_value_did_change = value_changed;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000500}
501
502ValueObjectSP
Greg Claytonc7bece562013-01-25 18:06:21 +0000503ValueObject::GetChildAtIndex (size_t idx, bool can_create)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000504{
505 ValueObjectSP child_sp;
Greg Claytondea8cb42011-06-29 22:09:02 +0000506 // We may need to update our value if we are dynamic
507 if (IsPossibleDynamicType ())
Enrico Granatac3e320a2011-08-02 17:27:39 +0000508 UpdateValueIfNeeded(false);
Greg Claytondea8cb42011-06-29 22:09:02 +0000509 if (idx < GetNumChildren())
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000510 {
Greg Claytondea8cb42011-06-29 22:09:02 +0000511 // Check if we have already made the child value object?
Enrico Granata9d60f602012-03-09 03:09:58 +0000512 if (can_create && !m_children.HasChildAtIndex(idx))
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000513 {
Greg Claytondea8cb42011-06-29 22:09:02 +0000514 // No we haven't created the child at this index, so lets have our
515 // subclass do it and cache the result for quick future access.
Enrico Granata9d60f602012-03-09 03:09:58 +0000516 m_children.SetChildAtIndex(idx,CreateChildAtIndex (idx, false, 0));
Jim Ingham78a685a2011-04-16 00:01:13 +0000517 }
Greg Claytondea8cb42011-06-29 22:09:02 +0000518
Enrico Granata9d60f602012-03-09 03:09:58 +0000519 ValueObject* child = m_children.GetChildAtIndex(idx);
520 if (child != NULL)
521 return child->GetSP();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000522 }
523 return child_sp;
524}
525
Enrico Granata3309d882013-01-12 01:00:22 +0000526ValueObjectSP
Greg Claytonc7bece562013-01-25 18:06:21 +0000527ValueObject::GetChildAtIndexPath (const std::initializer_list<size_t>& idxs,
528 size_t* index_of_error)
Enrico Granata3309d882013-01-12 01:00:22 +0000529{
530 if (idxs.size() == 0)
531 return GetSP();
532 ValueObjectSP root(GetSP());
Greg Claytonc7bece562013-01-25 18:06:21 +0000533 for (size_t idx : idxs)
Enrico Granata3309d882013-01-12 01:00:22 +0000534 {
535 root = root->GetChildAtIndex(idx, true);
536 if (!root)
537 {
538 if (index_of_error)
539 *index_of_error = idx;
540 return root;
541 }
542 }
543 return root;
544}
545
546ValueObjectSP
Greg Claytonc7bece562013-01-25 18:06:21 +0000547ValueObject::GetChildAtIndexPath (const std::initializer_list< std::pair<size_t, bool> >& idxs,
548 size_t* index_of_error)
Enrico Granata3309d882013-01-12 01:00:22 +0000549{
550 if (idxs.size() == 0)
551 return GetSP();
552 ValueObjectSP root(GetSP());
Greg Claytonc7bece562013-01-25 18:06:21 +0000553 for (std::pair<size_t, bool> idx : idxs)
Enrico Granata3309d882013-01-12 01:00:22 +0000554 {
555 root = root->GetChildAtIndex(idx.first, idx.second);
556 if (!root)
557 {
558 if (index_of_error)
559 *index_of_error = idx.first;
560 return root;
561 }
562 }
563 return root;
564}
565
566lldb::ValueObjectSP
Greg Claytonc7bece562013-01-25 18:06:21 +0000567ValueObject::GetChildAtIndexPath (const std::vector<size_t> &idxs,
568 size_t* index_of_error)
Enrico Granata3309d882013-01-12 01:00:22 +0000569{
570 if (idxs.size() == 0)
571 return GetSP();
572 ValueObjectSP root(GetSP());
Greg Claytonc7bece562013-01-25 18:06:21 +0000573 for (size_t idx : idxs)
Enrico Granata3309d882013-01-12 01:00:22 +0000574 {
575 root = root->GetChildAtIndex(idx, true);
576 if (!root)
577 {
578 if (index_of_error)
579 *index_of_error = idx;
580 return root;
581 }
582 }
583 return root;
584}
585
586lldb::ValueObjectSP
Greg Claytonc7bece562013-01-25 18:06:21 +0000587ValueObject::GetChildAtIndexPath (const std::vector< std::pair<size_t, bool> > &idxs,
588 size_t* index_of_error)
Enrico Granata3309d882013-01-12 01:00:22 +0000589{
590 if (idxs.size() == 0)
591 return GetSP();
592 ValueObjectSP root(GetSP());
Greg Claytonc7bece562013-01-25 18:06:21 +0000593 for (std::pair<size_t, bool> idx : idxs)
Enrico Granata3309d882013-01-12 01:00:22 +0000594 {
595 root = root->GetChildAtIndex(idx.first, idx.second);
596 if (!root)
597 {
598 if (index_of_error)
599 *index_of_error = idx.first;
600 return root;
601 }
602 }
603 return root;
604}
605
Enrico Granatae2e220a2013-09-12 00:48:47 +0000606lldb::ValueObjectSP
607ValueObject::GetChildAtNamePath (const std::initializer_list<ConstString> &names,
608 ConstString* name_of_error)
609{
610 if (names.size() == 0)
611 return GetSP();
612 ValueObjectSP root(GetSP());
613 for (ConstString name : names)
614 {
615 root = root->GetChildMemberWithName(name, true);
616 if (!root)
617 {
618 if (name_of_error)
619 *name_of_error = name;
620 return root;
621 }
622 }
623 return root;
624}
625
626lldb::ValueObjectSP
627ValueObject::GetChildAtNamePath (const std::vector<ConstString> &names,
628 ConstString* name_of_error)
629{
630 if (names.size() == 0)
631 return GetSP();
632 ValueObjectSP root(GetSP());
633 for (ConstString name : names)
634 {
635 root = root->GetChildMemberWithName(name, true);
636 if (!root)
637 {
638 if (name_of_error)
639 *name_of_error = name;
640 return root;
641 }
642 }
643 return root;
644}
645
646lldb::ValueObjectSP
647ValueObject::GetChildAtNamePath (const std::initializer_list< std::pair<ConstString, bool> > &names,
648 ConstString* name_of_error)
649{
650 if (names.size() == 0)
651 return GetSP();
652 ValueObjectSP root(GetSP());
653 for (std::pair<ConstString, bool> name : names)
654 {
655 root = root->GetChildMemberWithName(name.first, name.second);
656 if (!root)
657 {
658 if (name_of_error)
659 *name_of_error = name.first;
660 return root;
661 }
662 }
663 return root;
664}
665
666lldb::ValueObjectSP
667ValueObject::GetChildAtNamePath (const std::vector< std::pair<ConstString, bool> > &names,
668 ConstString* name_of_error)
669{
670 if (names.size() == 0)
671 return GetSP();
672 ValueObjectSP root(GetSP());
673 for (std::pair<ConstString, bool> name : names)
674 {
675 root = root->GetChildMemberWithName(name.first, name.second);
676 if (!root)
677 {
678 if (name_of_error)
679 *name_of_error = name.first;
680 return root;
681 }
682 }
683 return root;
684}
685
Greg Claytonc7bece562013-01-25 18:06:21 +0000686size_t
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000687ValueObject::GetIndexOfChildWithName (const ConstString &name)
688{
689 bool omit_empty_base_classes = true;
Greg Clayton57ee3062013-07-11 22:46:58 +0000690 return GetClangType().GetIndexOfChildWithName (name.GetCString(), omit_empty_base_classes);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000691}
692
693ValueObjectSP
694ValueObject::GetChildMemberWithName (const ConstString &name, bool can_create)
695{
Greg Clayton710dd5a2011-01-08 20:28:42 +0000696 // when getting a child by name, it could be buried inside some base
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000697 // classes (which really aren't part of the expression path), so we
698 // need a vector of indexes that can get us down to the correct child
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000699 ValueObjectSP child_sp;
Jim Ingham78a685a2011-04-16 00:01:13 +0000700
Greg Claytondea8cb42011-06-29 22:09:02 +0000701 // We may need to update our value if we are dynamic
702 if (IsPossibleDynamicType ())
Enrico Granatac3e320a2011-08-02 17:27:39 +0000703 UpdateValueIfNeeded(false);
Greg Claytondea8cb42011-06-29 22:09:02 +0000704
705 std::vector<uint32_t> child_indexes;
Greg Claytondea8cb42011-06-29 22:09:02 +0000706 bool omit_empty_base_classes = true;
Greg Clayton57ee3062013-07-11 22:46:58 +0000707 const size_t num_child_indexes = GetClangType().GetIndexOfChildMemberWithName (name.GetCString(),
708 omit_empty_base_classes,
709 child_indexes);
Greg Claytondea8cb42011-06-29 22:09:02 +0000710 if (num_child_indexes > 0)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000711 {
Greg Claytondea8cb42011-06-29 22:09:02 +0000712 std::vector<uint32_t>::const_iterator pos = child_indexes.begin ();
713 std::vector<uint32_t>::const_iterator end = child_indexes.end ();
714
715 child_sp = GetChildAtIndex(*pos, can_create);
716 for (++pos; pos != end; ++pos)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000717 {
Greg Claytondea8cb42011-06-29 22:09:02 +0000718 if (child_sp)
Jim Ingham78a685a2011-04-16 00:01:13 +0000719 {
Greg Claytondea8cb42011-06-29 22:09:02 +0000720 ValueObjectSP new_child_sp(child_sp->GetChildAtIndex (*pos, can_create));
721 child_sp = new_child_sp;
Jim Ingham78a685a2011-04-16 00:01:13 +0000722 }
Greg Claytondea8cb42011-06-29 22:09:02 +0000723 else
724 {
725 child_sp.reset();
726 }
727
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000728 }
729 }
730 return child_sp;
731}
732
733
Greg Claytonc7bece562013-01-25 18:06:21 +0000734size_t
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000735ValueObject::GetNumChildren ()
736{
Enrico Granatac5bc4122012-03-27 02:35:13 +0000737 UpdateValueIfNeeded();
Greg Clayton288bdf92010-09-02 02:59:18 +0000738 if (!m_children_count_valid)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000739 {
740 SetNumChildren (CalculateNumChildren());
741 }
Enrico Granata9d60f602012-03-09 03:09:58 +0000742 return m_children.GetChildrenCount();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000743}
Greg Clayton4a792072012-10-23 01:50:10 +0000744
745bool
746ValueObject::MightHaveChildren()
747{
Enrico Granatadb8142b2012-10-23 02:07:54 +0000748 bool has_children = false;
Greg Clayton2452ab72013-02-08 22:02:02 +0000749 const uint32_t type_info = GetTypeInfo();
750 if (type_info)
Greg Clayton4a792072012-10-23 01:50:10 +0000751 {
Greg Clayton57ee3062013-07-11 22:46:58 +0000752 if (type_info & (ClangASTType::eTypeHasChildren |
753 ClangASTType::eTypeIsPointer |
754 ClangASTType::eTypeIsReference))
Greg Clayton4a792072012-10-23 01:50:10 +0000755 has_children = true;
756 }
757 else
758 {
759 has_children = GetNumChildren () > 0;
760 }
761 return has_children;
762}
763
764// Should only be called by ValueObject::GetNumChildren()
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000765void
Greg Claytonc7bece562013-01-25 18:06:21 +0000766ValueObject::SetNumChildren (size_t num_children)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000767{
Greg Clayton288bdf92010-09-02 02:59:18 +0000768 m_children_count_valid = true;
Enrico Granata9d60f602012-03-09 03:09:58 +0000769 m_children.SetChildrenCount(num_children);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000770}
771
772void
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000773ValueObject::SetName (const ConstString &name)
774{
775 m_name = name;
776}
777
Jim Ingham58b59f92011-04-22 23:53:53 +0000778ValueObject *
Greg Claytonc7bece562013-01-25 18:06:21 +0000779ValueObject::CreateChildAtIndex (size_t idx, bool synthetic_array_member, int32_t synthetic_index)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000780{
Jim Ingham2eec4872011-05-07 00:10:58 +0000781 ValueObject *valobj = NULL;
Jim Ingham78a685a2011-04-16 00:01:13 +0000782
Greg Claytondea8cb42011-06-29 22:09:02 +0000783 bool omit_empty_base_classes = true;
Greg Claytondaf515f2011-07-09 20:12:33 +0000784 bool ignore_array_bounds = synthetic_array_member;
Greg Claytondea8cb42011-06-29 22:09:02 +0000785 std::string child_name_str;
786 uint32_t child_byte_size = 0;
787 int32_t child_byte_offset = 0;
788 uint32_t child_bitfield_bit_size = 0;
789 uint32_t child_bitfield_bit_offset = 0;
790 bool child_is_base_class = false;
791 bool child_is_deref_of_parent = false;
792
793 const bool transparent_pointers = synthetic_array_member == false;
Greg Clayton57ee3062013-07-11 22:46:58 +0000794 ClangASTType child_clang_type;
Greg Claytondea8cb42011-06-29 22:09:02 +0000795
Greg Claytoncc4d0142012-02-17 07:49:44 +0000796 ExecutionContext exe_ctx (GetExecutionContextRef());
Greg Claytondea8cb42011-06-29 22:09:02 +0000797
Greg Clayton57ee3062013-07-11 22:46:58 +0000798 child_clang_type = GetClangType().GetChildClangTypeAtIndex (&exe_ctx,
799 GetName().GetCString(),
800 idx,
801 transparent_pointers,
802 omit_empty_base_classes,
803 ignore_array_bounds,
804 child_name_str,
805 child_byte_size,
806 child_byte_offset,
807 child_bitfield_bit_size,
808 child_bitfield_bit_offset,
809 child_is_base_class,
810 child_is_deref_of_parent);
Greg Clayton4ef877f2012-12-06 02:33:54 +0000811 if (child_clang_type)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000812 {
Greg Claytondea8cb42011-06-29 22:09:02 +0000813 if (synthetic_index)
814 child_byte_offset += child_byte_size * synthetic_index;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000815
Greg Claytondea8cb42011-06-29 22:09:02 +0000816 ConstString child_name;
817 if (!child_name_str.empty())
818 child_name.SetCString (child_name_str.c_str());
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000819
Greg Claytondea8cb42011-06-29 22:09:02 +0000820 valobj = new ValueObjectChild (*this,
Greg Claytondea8cb42011-06-29 22:09:02 +0000821 child_clang_type,
822 child_name,
823 child_byte_size,
824 child_byte_offset,
825 child_bitfield_bit_size,
826 child_bitfield_bit_offset,
827 child_is_base_class,
Enrico Granata9128ee22011-09-06 19:20:51 +0000828 child_is_deref_of_parent,
829 eAddressTypeInvalid);
830 //if (valobj)
831 // valobj->SetAddressTypeOfChildren(eAddressTypeInvalid);
832 }
Jim Ingham78a685a2011-04-16 00:01:13 +0000833
Jim Ingham58b59f92011-04-22 23:53:53 +0000834 return valobj;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000835}
836
Enrico Granata0c489f52012-03-01 04:24:26 +0000837bool
838ValueObject::GetSummaryAsCString (TypeSummaryImpl* summary_ptr,
839 std::string& destination)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000840{
Enrico Granata0c489f52012-03-01 04:24:26 +0000841 destination.clear();
842
843 // ideally we would like to bail out if passing NULL, but if we do so
844 // we end up not providing the summary for function pointers anymore
845 if (/*summary_ptr == NULL ||*/ m_is_getting_summary)
846 return false;
Greg Clayton48ca8b82012-01-07 20:58:07 +0000847
848 m_is_getting_summary = true;
Enrico Granataf18c03e2012-04-04 17:34:10 +0000849
850 // this is a hot path in code and we prefer to avoid setting this string all too often also clearing out other
851 // information that we might care to see in a crash log. might be useful in very specific situations though.
852 /*Host::SetCrashDescriptionWithFormat("Trying to fetch a summary for %s %s. Summary provider's description is %s",
853 GetTypeName().GetCString(),
854 GetName().GetCString(),
855 summary_ptr->GetDescription().c_str());*/
856
Enrico Granata0c489f52012-03-01 04:24:26 +0000857 if (UpdateValueIfNeeded (false))
858 {
859 if (summary_ptr)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000860 {
Enrico Granata86cc9822012-03-19 22:58:49 +0000861 if (HasSyntheticValue())
862 m_synthetic_value->UpdateValueIfNeeded(); // the summary might depend on the synthetic children being up-to-date (e.g. ${svar%#})
863 summary_ptr->FormatObject(this, destination);
Enrico Granata0c489f52012-03-01 04:24:26 +0000864 }
865 else
866 {
Greg Clayton57ee3062013-07-11 22:46:58 +0000867 ClangASTType clang_type = GetClangType();
Enrico Granata0c489f52012-03-01 04:24:26 +0000868
869 // Do some default printout for function pointers
870 if (clang_type)
Enrico Granata4becb372011-06-29 22:27:15 +0000871 {
Greg Clayton57ee3062013-07-11 22:46:58 +0000872 if (clang_type.IsFunctionPointerType ())
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000873 {
Greg Clayton57ee3062013-07-11 22:46:58 +0000874 StreamString sstr;
Enrico Granata0c489f52012-03-01 04:24:26 +0000875 AddressType func_ptr_address_type = eAddressTypeInvalid;
876 addr_t func_ptr_address = GetPointerValue (&func_ptr_address_type);
877 if (func_ptr_address != 0 && func_ptr_address != LLDB_INVALID_ADDRESS)
Enrico Granataf2bbf712011-07-15 02:26:42 +0000878 {
Enrico Granata0c489f52012-03-01 04:24:26 +0000879 switch (func_ptr_address_type)
Jim Ingham6035b672011-03-31 00:19:25 +0000880 {
Greg Claytoncc4d0142012-02-17 07:49:44 +0000881 case eAddressTypeInvalid:
882 case eAddressTypeFile:
883 break;
Enrico Granata0c489f52012-03-01 04:24:26 +0000884
Greg Claytoncc4d0142012-02-17 07:49:44 +0000885 case eAddressTypeLoad:
Enrico Granata0c489f52012-03-01 04:24:26 +0000886 {
887 ExecutionContext exe_ctx (GetExecutionContextRef());
888
889 Address so_addr;
890 Target *target = exe_ctx.GetTargetPtr();
891 if (target && target->GetSectionLoadList().IsEmpty() == false)
Greg Claytoncc4d0142012-02-17 07:49:44 +0000892 {
Enrico Granata0c489f52012-03-01 04:24:26 +0000893 if (target->GetSectionLoadList().ResolveLoadAddress(func_ptr_address, so_addr))
Enrico Granataf2bbf712011-07-15 02:26:42 +0000894 {
Enrico Granata0c489f52012-03-01 04:24:26 +0000895 so_addr.Dump (&sstr,
896 exe_ctx.GetBestExecutionContextScope(),
897 Address::DumpStyleResolvedDescription,
898 Address::DumpStyleSectionNameOffset);
Enrico Granataf2bbf712011-07-15 02:26:42 +0000899 }
Enrico Granataf2bbf712011-07-15 02:26:42 +0000900 }
Enrico Granata0c489f52012-03-01 04:24:26 +0000901 }
Greg Claytoncc4d0142012-02-17 07:49:44 +0000902 break;
Enrico Granata0c489f52012-03-01 04:24:26 +0000903
Greg Claytoncc4d0142012-02-17 07:49:44 +0000904 case eAddressTypeHost:
905 break;
Greg Claytoncc4d0142012-02-17 07:49:44 +0000906 }
Enrico Granata0c489f52012-03-01 04:24:26 +0000907 }
908 if (sstr.GetSize() > 0)
909 {
910 destination.assign (1, '(');
911 destination.append (sstr.GetData(), sstr.GetSize());
912 destination.append (1, ')');
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000913 }
914 }
915 }
916 }
917 }
Greg Clayton48ca8b82012-01-07 20:58:07 +0000918 m_is_getting_summary = false;
Enrico Granata0c489f52012-03-01 04:24:26 +0000919 return !destination.empty();
920}
921
922const char *
923ValueObject::GetSummaryAsCString ()
924{
925 if (UpdateValueIfNeeded(true) && m_summary_str.empty())
926 {
927 GetSummaryAsCString(GetSummaryFormat().get(),
928 m_summary_str);
929 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000930 if (m_summary_str.empty())
931 return NULL;
932 return m_summary_str.c_str();
933}
934
Enrico Granataf9fa6ee2011-07-12 00:18:11 +0000935bool
936ValueObject::IsCStringContainer(bool check_pointer)
937{
Greg Clayton57ee3062013-07-11 22:46:58 +0000938 ClangASTType pointee_or_element_clang_type;
939 const Flags type_flags (GetTypeInfo (&pointee_or_element_clang_type));
940 bool is_char_arr_ptr (type_flags.AnySet (ClangASTType::eTypeIsArray | ClangASTType::eTypeIsPointer) &&
941 pointee_or_element_clang_type.IsCharType ());
Enrico Granataf9fa6ee2011-07-12 00:18:11 +0000942 if (!is_char_arr_ptr)
943 return false;
944 if (!check_pointer)
945 return true;
Greg Clayton57ee3062013-07-11 22:46:58 +0000946 if (type_flags.Test(ClangASTType::eTypeIsArray))
Enrico Granataf9fa6ee2011-07-12 00:18:11 +0000947 return true;
Greg Claytonafacd142011-09-02 01:15:17 +0000948 addr_t cstr_address = LLDB_INVALID_ADDRESS;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +0000949 AddressType cstr_address_type = eAddressTypeInvalid;
Enrico Granata9128ee22011-09-06 19:20:51 +0000950 cstr_address = GetAddressOf (true, &cstr_address_type);
Enrico Granataf9fa6ee2011-07-12 00:18:11 +0000951 return (cstr_address != LLDB_INVALID_ADDRESS);
952}
953
Enrico Granata9128ee22011-09-06 19:20:51 +0000954size_t
955ValueObject::GetPointeeData (DataExtractor& data,
956 uint32_t item_idx,
957 uint32_t item_count)
958{
Greg Clayton57ee3062013-07-11 22:46:58 +0000959 ClangASTType pointee_or_element_clang_type;
Greg Clayton2452ab72013-02-08 22:02:02 +0000960 const uint32_t type_info = GetTypeInfo (&pointee_or_element_clang_type);
Greg Clayton57ee3062013-07-11 22:46:58 +0000961 const bool is_pointer_type = type_info & ClangASTType::eTypeIsPointer;
962 const bool is_array_type = type_info & ClangASTType::eTypeIsArray;
Greg Clayton2452ab72013-02-08 22:02:02 +0000963 if (!(is_pointer_type || is_array_type))
Enrico Granata9128ee22011-09-06 19:20:51 +0000964 return 0;
965
966 if (item_count == 0)
967 return 0;
968
Greg Clayton57ee3062013-07-11 22:46:58 +0000969 const uint64_t item_type_size = pointee_or_element_clang_type.GetByteSize();
Enrico Granata9128ee22011-09-06 19:20:51 +0000970 const uint64_t bytes = item_count * item_type_size;
Enrico Granata9128ee22011-09-06 19:20:51 +0000971 const uint64_t offset = item_idx * item_type_size;
972
973 if (item_idx == 0 && item_count == 1) // simply a deref
974 {
Greg Clayton2452ab72013-02-08 22:02:02 +0000975 if (is_pointer_type)
Enrico Granata9128ee22011-09-06 19:20:51 +0000976 {
977 Error error;
978 ValueObjectSP pointee_sp = Dereference(error);
979 if (error.Fail() || pointee_sp.get() == NULL)
980 return 0;
Greg Clayton1e3be5b2014-01-23 22:55:05 +0000981 return pointee_sp->GetData(data);
Enrico Granata9128ee22011-09-06 19:20:51 +0000982 }
983 else
984 {
985 ValueObjectSP child_sp = GetChildAtIndex(0, true);
986 if (child_sp.get() == NULL)
987 return 0;
Greg Clayton1e3be5b2014-01-23 22:55:05 +0000988 return child_sp->GetData(data);
Enrico Granata9128ee22011-09-06 19:20:51 +0000989 }
990 return true;
991 }
992 else /* (items > 1) */
993 {
994 Error error;
995 lldb_private::DataBufferHeap* heap_buf_ptr = NULL;
996 lldb::DataBufferSP data_sp(heap_buf_ptr = new lldb_private::DataBufferHeap());
997
998 AddressType addr_type;
Greg Clayton2452ab72013-02-08 22:02:02 +0000999 lldb::addr_t addr = is_pointer_type ? GetPointerValue(&addr_type) : GetAddressOf(true, &addr_type);
Enrico Granata9128ee22011-09-06 19:20:51 +00001000
Enrico Granata9128ee22011-09-06 19:20:51 +00001001 switch (addr_type)
1002 {
1003 case eAddressTypeFile:
1004 {
Greg Claytone72dfb32012-02-24 01:59:29 +00001005 ModuleSP module_sp (GetModule());
1006 if (module_sp)
Enrico Granata9128ee22011-09-06 19:20:51 +00001007 {
Enrico Granata9c2efe32012-08-07 01:49:34 +00001008 addr = addr + offset;
Enrico Granata9128ee22011-09-06 19:20:51 +00001009 Address so_addr;
Greg Claytone72dfb32012-02-24 01:59:29 +00001010 module_sp->ResolveFileAddress(addr, so_addr);
Greg Claytoncc4d0142012-02-17 07:49:44 +00001011 ExecutionContext exe_ctx (GetExecutionContextRef());
1012 Target* target = exe_ctx.GetTargetPtr();
1013 if (target)
Enrico Granata9128ee22011-09-06 19:20:51 +00001014 {
Greg Claytoncc4d0142012-02-17 07:49:44 +00001015 heap_buf_ptr->SetByteSize(bytes);
1016 size_t bytes_read = target->ReadMemory(so_addr, false, heap_buf_ptr->GetBytes(), bytes, error);
1017 if (error.Success())
Enrico Granata9128ee22011-09-06 19:20:51 +00001018 {
Greg Claytoncc4d0142012-02-17 07:49:44 +00001019 data.SetData(data_sp);
1020 return bytes_read;
Enrico Granata9128ee22011-09-06 19:20:51 +00001021 }
1022 }
1023 }
1024 }
1025 break;
1026 case eAddressTypeLoad:
Enrico Granata9128ee22011-09-06 19:20:51 +00001027 {
Greg Claytoncc4d0142012-02-17 07:49:44 +00001028 ExecutionContext exe_ctx (GetExecutionContextRef());
1029 Process *process = exe_ctx.GetProcessPtr();
Enrico Granata9128ee22011-09-06 19:20:51 +00001030 if (process)
1031 {
1032 heap_buf_ptr->SetByteSize(bytes);
1033 size_t bytes_read = process->ReadMemory(addr + offset, heap_buf_ptr->GetBytes(), bytes, error);
Enrico Granata5e1480c2013-10-30 17:52:44 +00001034 if (error.Success() || bytes_read > 0)
Enrico Granata9128ee22011-09-06 19:20:51 +00001035 {
1036 data.SetData(data_sp);
1037 return bytes_read;
1038 }
1039 }
1040 }
1041 break;
1042 case eAddressTypeHost:
1043 {
Greg Clayton57ee3062013-07-11 22:46:58 +00001044 const uint64_t max_bytes = GetClangType().GetByteSize();
Greg Clayton2452ab72013-02-08 22:02:02 +00001045 if (max_bytes > offset)
1046 {
1047 size_t bytes_read = std::min<uint64_t>(max_bytes - offset, bytes);
1048 heap_buf_ptr->CopyData((uint8_t*)(addr + offset), bytes_read);
1049 data.SetData(data_sp);
1050 return bytes_read;
1051 }
Enrico Granata9128ee22011-09-06 19:20:51 +00001052 }
1053 break;
1054 case eAddressTypeInvalid:
Enrico Granata9128ee22011-09-06 19:20:51 +00001055 break;
1056 }
1057 }
1058 return 0;
1059}
1060
Greg Claytonfaac1112013-03-14 18:31:44 +00001061uint64_t
Enrico Granata9128ee22011-09-06 19:20:51 +00001062ValueObject::GetData (DataExtractor& data)
1063{
1064 UpdateValueIfNeeded(false);
Greg Claytoncc4d0142012-02-17 07:49:44 +00001065 ExecutionContext exe_ctx (GetExecutionContextRef());
Greg Clayton57ee3062013-07-11 22:46:58 +00001066 Error error = m_value.GetValueAsData(&exe_ctx, data, 0, GetModule().get());
Enrico Granata9128ee22011-09-06 19:20:51 +00001067 if (error.Fail())
Sean Callananed185ab2013-04-19 19:47:32 +00001068 {
1069 if (m_data.GetByteSize())
1070 {
1071 data = m_data;
1072 return data.GetByteSize();
1073 }
1074 else
1075 {
1076 return 0;
1077 }
1078 }
Enrico Granata9128ee22011-09-06 19:20:51 +00001079 data.SetAddressByteSize(m_data.GetAddressByteSize());
1080 data.SetByteOrder(m_data.GetByteOrder());
1081 return data.GetByteSize();
1082}
1083
Sean Callanan389823e2013-04-13 01:21:23 +00001084bool
1085ValueObject::SetData (DataExtractor &data, Error &error)
1086{
1087 error.Clear();
1088 // Make sure our value is up to date first so that our location and location
1089 // type is valid.
1090 if (!UpdateValueIfNeeded(false))
1091 {
1092 error.SetErrorString("unable to read value");
1093 return false;
1094 }
1095
1096 uint64_t count = 0;
Greg Clayton57ee3062013-07-11 22:46:58 +00001097 const Encoding encoding = GetClangType().GetEncoding(count);
Sean Callanan389823e2013-04-13 01:21:23 +00001098
1099 const size_t byte_size = GetByteSize();
1100
1101 Value::ValueType value_type = m_value.GetValueType();
1102
1103 switch (value_type)
1104 {
1105 case Value::eValueTypeScalar:
1106 {
1107 Error set_error = m_value.GetScalar().SetValueFromData(data, encoding, byte_size);
1108
1109 if (!set_error.Success())
1110 {
1111 error.SetErrorStringWithFormat("unable to set scalar value: %s", set_error.AsCString());
1112 return false;
1113 }
1114 }
1115 break;
1116 case Value::eValueTypeLoadAddress:
1117 {
1118 // If it is a load address, then the scalar value is the storage location
1119 // of the data, and we have to shove this value down to that load location.
1120 ExecutionContext exe_ctx (GetExecutionContextRef());
1121 Process *process = exe_ctx.GetProcessPtr();
1122 if (process)
1123 {
1124 addr_t target_addr = m_value.GetScalar().ULongLong(LLDB_INVALID_ADDRESS);
1125 size_t bytes_written = process->WriteMemory(target_addr,
1126 data.GetDataStart(),
1127 byte_size,
1128 error);
1129 if (!error.Success())
1130 return false;
1131 if (bytes_written != byte_size)
1132 {
1133 error.SetErrorString("unable to write value to memory");
1134 return false;
1135 }
1136 }
1137 }
1138 break;
1139 case Value::eValueTypeHostAddress:
1140 {
1141 // If it is a host address, then we stuff the scalar as a DataBuffer into the Value's data.
1142 DataBufferSP buffer_sp (new DataBufferHeap(byte_size, 0));
1143 m_data.SetData(buffer_sp, 0);
1144 data.CopyByteOrderedData (0,
1145 byte_size,
1146 const_cast<uint8_t *>(m_data.GetDataStart()),
1147 byte_size,
1148 m_data.GetByteOrder());
1149 m_value.GetScalar() = (uintptr_t)m_data.GetDataStart();
1150 }
1151 break;
1152 case Value::eValueTypeFileAddress:
1153 case Value::eValueTypeVector:
1154 break;
1155 }
1156
1157 // If we have reached this point, then we have successfully changed the value.
1158 SetNeedsUpdate();
1159 return true;
1160}
1161
Enrico Granata9128ee22011-09-06 19:20:51 +00001162// will compute strlen(str), but without consuming more than
1163// maxlen bytes out of str (this serves the purpose of reading
1164// chunks of a string without having to worry about
1165// missing NULL terminators in the chunk)
1166// of course, if strlen(str) > maxlen, the function will return
1167// maxlen_value (which should be != maxlen, because that allows you
1168// to know whether strlen(str) == maxlen or strlen(str) > maxlen)
1169static uint32_t
1170strlen_or_inf (const char* str,
1171 uint32_t maxlen,
1172 uint32_t maxlen_value)
1173{
1174 uint32_t len = 0;
Greg Clayton8dd5c172011-10-05 22:19:51 +00001175 if (str)
Enrico Granata9128ee22011-09-06 19:20:51 +00001176 {
Greg Clayton8dd5c172011-10-05 22:19:51 +00001177 while(*str)
1178 {
1179 len++;str++;
Greg Clayton2452ab72013-02-08 22:02:02 +00001180 if (len >= maxlen)
Greg Clayton8dd5c172011-10-05 22:19:51 +00001181 return maxlen_value;
1182 }
Enrico Granata9128ee22011-09-06 19:20:51 +00001183 }
1184 return len;
1185}
1186
Enrico Granataea2bc0f2013-02-21 19:57:10 +00001187size_t
Greg Claytoncc4d0142012-02-17 07:49:44 +00001188ValueObject::ReadPointedString (Stream& s,
1189 Error& error,
1190 uint32_t max_length,
1191 bool honor_array,
1192 Format item_format)
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00001193{
Greg Claytoncc4d0142012-02-17 07:49:44 +00001194 ExecutionContext exe_ctx (GetExecutionContextRef());
1195 Target* target = exe_ctx.GetTargetPtr();
1196
Enrico Granata7e0db2a2013-02-28 22:01:33 +00001197 if (!target)
1198 {
1199 s << "<no target to read from>";
1200 error.SetErrorString("no target to read from");
1201 return 0;
1202 }
1203
1204 if (max_length == 0)
Greg Claytoncc4d0142012-02-17 07:49:44 +00001205 max_length = target->GetMaximumSizeOfStringSummary();
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00001206
Enrico Granataea2bc0f2013-02-21 19:57:10 +00001207 size_t bytes_read = 0;
1208 size_t total_bytes_read = 0;
1209
Greg Clayton57ee3062013-07-11 22:46:58 +00001210 ClangASTType clang_type = GetClangType();
1211 ClangASTType elem_or_pointee_clang_type;
Greg Clayton2452ab72013-02-08 22:02:02 +00001212 const Flags type_flags (GetTypeInfo (&elem_or_pointee_clang_type));
Greg Clayton57ee3062013-07-11 22:46:58 +00001213 if (type_flags.AnySet (ClangASTType::eTypeIsArray | ClangASTType::eTypeIsPointer) &&
1214 elem_or_pointee_clang_type.IsCharType ())
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00001215 {
Enrico Granata7e0db2a2013-02-28 22:01:33 +00001216 addr_t cstr_address = LLDB_INVALID_ADDRESS;
1217 AddressType cstr_address_type = eAddressTypeInvalid;
1218
1219 size_t cstr_len = 0;
1220 bool capped_data = false;
Greg Clayton57ee3062013-07-11 22:46:58 +00001221 if (type_flags.Test (ClangASTType::eTypeIsArray))
Greg Claytoncc4d0142012-02-17 07:49:44 +00001222 {
Enrico Granata7e0db2a2013-02-28 22:01:33 +00001223 // We have an array
Greg Clayton57ee3062013-07-11 22:46:58 +00001224 uint64_t array_size = 0;
1225 if (clang_type.IsArrayType(NULL, &array_size, NULL))
Enrico Granata7e0db2a2013-02-28 22:01:33 +00001226 {
Greg Clayton57ee3062013-07-11 22:46:58 +00001227 cstr_len = array_size;
1228 if (cstr_len > max_length)
1229 {
1230 capped_data = true;
1231 cstr_len = max_length;
1232 }
Enrico Granata7e0db2a2013-02-28 22:01:33 +00001233 }
1234 cstr_address = GetAddressOf (true, &cstr_address_type);
Greg Claytoncc4d0142012-02-17 07:49:44 +00001235 }
1236 else
1237 {
Enrico Granata7e0db2a2013-02-28 22:01:33 +00001238 // We have a pointer
1239 cstr_address = GetPointerValue (&cstr_address_type);
1240 }
1241
1242 if (cstr_address == 0 || cstr_address == LLDB_INVALID_ADDRESS)
1243 {
1244 s << "<invalid address>";
1245 error.SetErrorString("invalid address");
1246 return 0;
1247 }
1248
1249 Address cstr_so_addr (cstr_address);
1250 DataExtractor data;
1251 if (cstr_len > 0 && honor_array)
1252 {
1253 // I am using GetPointeeData() here to abstract the fact that some ValueObjects are actually frozen pointers in the host
1254 // but the pointed-to data lives in the debuggee, and GetPointeeData() automatically takes care of this
1255 GetPointeeData(data, 0, cstr_len);
1256
1257 if ((bytes_read = data.GetByteSize()) > 0)
1258 {
1259 total_bytes_read = bytes_read;
1260 s << '"';
1261 data.Dump (&s,
1262 0, // Start offset in "data"
1263 item_format,
1264 1, // Size of item (1 byte for a char!)
1265 bytes_read, // How many bytes to print?
1266 UINT32_MAX, // num per line
1267 LLDB_INVALID_ADDRESS,// base address
1268 0, // bitfield bit size
1269 0); // bitfield bit offset
1270 if (capped_data)
1271 s << "...";
1272 s << '"';
1273 }
1274 }
1275 else
1276 {
1277 cstr_len = max_length;
1278 const size_t k_max_buf_size = 64;
1279
1280 size_t offset = 0;
Greg Claytoncc4d0142012-02-17 07:49:44 +00001281
Enrico Granata7e0db2a2013-02-28 22:01:33 +00001282 int cstr_len_displayed = -1;
1283 bool capped_cstr = false;
1284 // I am using GetPointeeData() here to abstract the fact that some ValueObjects are actually frozen pointers in the host
1285 // but the pointed-to data lives in the debuggee, and GetPointeeData() automatically takes care of this
1286 while ((bytes_read = GetPointeeData(data, offset, k_max_buf_size)) > 0)
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00001287 {
Enrico Granata7e0db2a2013-02-28 22:01:33 +00001288 total_bytes_read += bytes_read;
1289 const char *cstr = data.PeekCStr(0);
1290 size_t len = strlen_or_inf (cstr, k_max_buf_size, k_max_buf_size+1);
1291 if (len > k_max_buf_size)
1292 len = k_max_buf_size;
1293 if (cstr && cstr_len_displayed < 0)
1294 s << '"';
1295
1296 if (cstr_len_displayed < 0)
1297 cstr_len_displayed = len;
1298
1299 if (len == 0)
1300 break;
1301 cstr_len_displayed += len;
1302 if (len > bytes_read)
1303 len = bytes_read;
1304 if (len > cstr_len)
1305 len = cstr_len;
1306
1307 data.Dump (&s,
1308 0, // Start offset in "data"
1309 item_format,
1310 1, // Size of item (1 byte for a char!)
1311 len, // How many bytes to print?
1312 UINT32_MAX, // num per line
1313 LLDB_INVALID_ADDRESS,// base address
1314 0, // bitfield bit size
1315 0); // bitfield bit offset
1316
1317 if (len < k_max_buf_size)
1318 break;
1319
1320 if (len >= cstr_len)
Enrico Granata6f3533f2011-07-29 19:53:35 +00001321 {
Enrico Granata7e0db2a2013-02-28 22:01:33 +00001322 capped_cstr = true;
1323 break;
Greg Claytoncc4d0142012-02-17 07:49:44 +00001324 }
Enrico Granata7e0db2a2013-02-28 22:01:33 +00001325
1326 cstr_len -= len;
1327 offset += len;
Greg Claytoncc4d0142012-02-17 07:49:44 +00001328 }
Enrico Granata7e0db2a2013-02-28 22:01:33 +00001329
1330 if (cstr_len_displayed >= 0)
Greg Claytoncc4d0142012-02-17 07:49:44 +00001331 {
Enrico Granata7e0db2a2013-02-28 22:01:33 +00001332 s << '"';
1333 if (capped_cstr)
1334 s << "...";
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00001335 }
Greg Claytoncc4d0142012-02-17 07:49:44 +00001336 }
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00001337 }
1338 else
1339 {
Enrico Granata7e0db2a2013-02-28 22:01:33 +00001340 error.SetErrorString("not a string object");
Enrico Granata6f3533f2011-07-29 19:53:35 +00001341 s << "<not a string object>";
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00001342 }
Enrico Granataea2bc0f2013-02-21 19:57:10 +00001343 return total_bytes_read;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00001344}
1345
Jim Ingham53c47f12010-09-10 23:12:17 +00001346const char *
Jim Ingham6035b672011-03-31 00:19:25 +00001347ValueObject::GetObjectDescription ()
Jim Ingham53c47f12010-09-10 23:12:17 +00001348{
Enrico Granata0a3958e2011-07-02 00:25:22 +00001349
Enrico Granatad8b5fce2011-08-02 23:12:24 +00001350 if (!UpdateValueIfNeeded (true))
Jim Ingham53c47f12010-09-10 23:12:17 +00001351 return NULL;
Enrico Granata0a3958e2011-07-02 00:25:22 +00001352
1353 if (!m_object_desc_str.empty())
1354 return m_object_desc_str.c_str();
1355
Greg Claytoncc4d0142012-02-17 07:49:44 +00001356 ExecutionContext exe_ctx (GetExecutionContextRef());
1357 Process *process = exe_ctx.GetProcessPtr();
Jim Ingham5a369122010-09-28 01:25:32 +00001358 if (process == NULL)
Jim Ingham53c47f12010-09-10 23:12:17 +00001359 return NULL;
Jim Ingham5a369122010-09-28 01:25:32 +00001360
Jim Ingham53c47f12010-09-10 23:12:17 +00001361 StreamString s;
Jim Ingham5a369122010-09-28 01:25:32 +00001362
Greg Claytonafacd142011-09-02 01:15:17 +00001363 LanguageType language = GetObjectRuntimeLanguage();
Jim Ingham5a369122010-09-28 01:25:32 +00001364 LanguageRuntime *runtime = process->GetLanguageRuntime(language);
1365
Jim Inghama2cf2632010-12-23 02:29:54 +00001366 if (runtime == NULL)
1367 {
Jim Inghamb7603bb2011-03-18 00:05:18 +00001368 // Aw, hell, if the things a pointer, or even just an integer, let's try ObjC anyway...
Greg Clayton57ee3062013-07-11 22:46:58 +00001369 ClangASTType clang_type = GetClangType();
1370 if (clang_type)
Jim Inghama2cf2632010-12-23 02:29:54 +00001371 {
Jim Inghamb7603bb2011-03-18 00:05:18 +00001372 bool is_signed;
Greg Clayton57ee3062013-07-11 22:46:58 +00001373 if (clang_type.IsIntegerType (is_signed) || clang_type.IsPointerType ())
Jim Inghamb7603bb2011-03-18 00:05:18 +00001374 {
Greg Claytonafacd142011-09-02 01:15:17 +00001375 runtime = process->GetLanguageRuntime(eLanguageTypeObjC);
Jim Inghamb7603bb2011-03-18 00:05:18 +00001376 }
Jim Inghama2cf2632010-12-23 02:29:54 +00001377 }
1378 }
1379
Jim Ingham8d543de2011-03-31 23:01:21 +00001380 if (runtime && runtime->GetObjectDescription(s, *this))
Jim Ingham53c47f12010-09-10 23:12:17 +00001381 {
1382 m_object_desc_str.append (s.GetData());
1383 }
Sean Callanan672ad942010-10-23 00:18:49 +00001384
1385 if (m_object_desc_str.empty())
1386 return NULL;
1387 else
1388 return m_object_desc_str.c_str();
Jim Ingham53c47f12010-09-10 23:12:17 +00001389}
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001390
Enrico Granata0c489f52012-03-01 04:24:26 +00001391bool
Enrico Granata4939b982013-12-22 09:24:22 +00001392ValueObject::GetValueAsCString (const lldb_private::TypeFormatImpl& format,
1393 std::string& destination)
1394{
1395 if (UpdateValueIfNeeded(false))
1396 return format.FormatObject(this,destination);
1397 else
1398 return false;
1399}
1400
1401bool
Enrico Granata0c489f52012-03-01 04:24:26 +00001402ValueObject::GetValueAsCString (lldb::Format format,
1403 std::string& destination)
1404{
Enrico Granata30f287f2013-12-28 08:44:02 +00001405 return GetValueAsCString(TypeFormatImpl_Format(format),destination);
Enrico Granata0c489f52012-03-01 04:24:26 +00001406}
1407
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001408const char *
Jim Ingham6035b672011-03-31 00:19:25 +00001409ValueObject::GetValueAsCString ()
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001410{
Enrico Granatab294fd22013-05-31 19:18:19 +00001411 if (UpdateValueIfNeeded(true))
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001412 {
Enrico Granata4939b982013-12-22 09:24:22 +00001413 lldb::TypeFormatImplSP format_sp;
Enrico Granata0c489f52012-03-01 04:24:26 +00001414 lldb::Format my_format = GetFormat();
Enrico Granatac953a6a2012-12-11 02:17:22 +00001415 if (my_format == lldb::eFormatDefault)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001416 {
Enrico Granata0c489f52012-03-01 04:24:26 +00001417 if (m_type_format_sp)
Enrico Granata4939b982013-12-22 09:24:22 +00001418 format_sp = m_type_format_sp;
Enrico Granata0c489f52012-03-01 04:24:26 +00001419 else
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001420 {
Enrico Granata0c489f52012-03-01 04:24:26 +00001421 if (m_is_bitfield_for_scalar)
1422 my_format = eFormatUnsigned;
1423 else
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001424 {
Enrico Granata0c489f52012-03-01 04:24:26 +00001425 if (m_value.GetContextType() == Value::eContextTypeRegisterInfo)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001426 {
1427 const RegisterInfo *reg_info = m_value.GetRegisterInfo();
1428 if (reg_info)
Enrico Granata0c489f52012-03-01 04:24:26 +00001429 my_format = reg_info->format;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001430 }
Enrico Granata0c489f52012-03-01 04:24:26 +00001431 else
1432 {
Greg Clayton57ee3062013-07-11 22:46:58 +00001433 my_format = GetClangType().GetFormat();
Enrico Granata0c489f52012-03-01 04:24:26 +00001434 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001435 }
1436 }
1437 }
Enrico Granatab294fd22013-05-31 19:18:19 +00001438 if (my_format != m_last_format || m_value_str.empty())
Enrico Granata297e69f2012-03-06 23:21:16 +00001439 {
Enrico Granatab294fd22013-05-31 19:18:19 +00001440 m_last_format = my_format;
Enrico Granata4939b982013-12-22 09:24:22 +00001441 if (!format_sp)
Enrico Granata30f287f2013-12-28 08:44:02 +00001442 format_sp.reset(new TypeFormatImpl_Format(my_format));
Enrico Granata4939b982013-12-22 09:24:22 +00001443 if (GetValueAsCString(*format_sp.get(), m_value_str))
Enrico Granata297e69f2012-03-06 23:21:16 +00001444 {
Enrico Granatab294fd22013-05-31 19:18:19 +00001445 if (!m_value_did_change && m_old_value_valid)
1446 {
1447 // The value was gotten successfully, so we consider the
1448 // value as changed if the value string differs
1449 SetValueDidChange (m_old_value_str != m_value_str);
1450 }
Enrico Granata297e69f2012-03-06 23:21:16 +00001451 }
1452 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001453 }
1454 if (m_value_str.empty())
1455 return NULL;
1456 return m_value_str.c_str();
1457}
1458
Enrico Granatac3e320a2011-08-02 17:27:39 +00001459// if > 8bytes, 0 is returned. this method should mostly be used
1460// to read address values out of pointers
Greg Clayton56d9a1b2011-08-22 02:49:39 +00001461uint64_t
Johnny Chen3f476c42012-06-05 19:37:43 +00001462ValueObject::GetValueAsUnsigned (uint64_t fail_value, bool *success)
Enrico Granatac3e320a2011-08-02 17:27:39 +00001463{
1464 // If our byte size is zero this is an aggregate type that has children
Greg Clayton57ee3062013-07-11 22:46:58 +00001465 if (!GetClangType().IsAggregateType())
Enrico Granatac3e320a2011-08-02 17:27:39 +00001466 {
Greg Clayton56d9a1b2011-08-22 02:49:39 +00001467 Scalar scalar;
1468 if (ResolveValue (scalar))
Johnny Chen3f476c42012-06-05 19:37:43 +00001469 {
1470 if (success)
1471 *success = true;
Enrico Granata48ea80f2012-10-24 20:24:39 +00001472 return scalar.ULongLong(fail_value);
Johnny Chen3f476c42012-06-05 19:37:43 +00001473 }
1474 // fallthrough, otherwise...
Enrico Granatac3e320a2011-08-02 17:27:39 +00001475 }
Johnny Chen3f476c42012-06-05 19:37:43 +00001476
1477 if (success)
1478 *success = false;
Greg Clayton56d9a1b2011-08-22 02:49:39 +00001479 return fail_value;
Enrico Granatac3e320a2011-08-02 17:27:39 +00001480}
1481
Enrico Granatad7373f62013-10-31 18:57:50 +00001482int64_t
1483ValueObject::GetValueAsSigned (int64_t fail_value, bool *success)
1484{
1485 // If our byte size is zero this is an aggregate type that has children
1486 if (!GetClangType().IsAggregateType())
1487 {
1488 Scalar scalar;
1489 if (ResolveValue (scalar))
1490 {
1491 if (success)
1492 *success = true;
1493 return scalar.SLongLong(fail_value);
1494 }
1495 // fallthrough, otherwise...
1496 }
1497
1498 if (success)
1499 *success = false;
1500 return fail_value;
1501}
1502
Enrico Granatad64d0bc2011-08-19 21:13:46 +00001503// if any more "special cases" are added to ValueObject::DumpPrintableRepresentation() please keep
1504// this call up to date by returning true for your new special cases. We will eventually move
1505// to checking this call result before trying to display special cases
1506bool
Enrico Granata86cc9822012-03-19 22:58:49 +00001507ValueObject::HasSpecialPrintableRepresentation(ValueObjectRepresentationStyle val_obj_display,
1508 Format custom_format)
Enrico Granatad64d0bc2011-08-19 21:13:46 +00001509{
Greg Clayton57ee3062013-07-11 22:46:58 +00001510 Flags flags(GetTypeInfo());
1511 if (flags.AnySet(ClangASTType::eTypeIsArray | ClangASTType::eTypeIsPointer)
Enrico Granata86cc9822012-03-19 22:58:49 +00001512 && val_obj_display == ValueObject::eValueObjectRepresentationStyleValue)
Enrico Granatad64d0bc2011-08-19 21:13:46 +00001513 {
1514 if (IsCStringContainer(true) &&
Greg Claytonafacd142011-09-02 01:15:17 +00001515 (custom_format == eFormatCString ||
1516 custom_format == eFormatCharArray ||
1517 custom_format == eFormatChar ||
1518 custom_format == eFormatVectorOfChar))
Enrico Granatad64d0bc2011-08-19 21:13:46 +00001519 return true;
1520
Greg Clayton57ee3062013-07-11 22:46:58 +00001521 if (flags.Test(ClangASTType::eTypeIsArray))
Enrico Granatad64d0bc2011-08-19 21:13:46 +00001522 {
Greg Claytonafacd142011-09-02 01:15:17 +00001523 if ((custom_format == eFormatBytes) ||
1524 (custom_format == eFormatBytesWithASCII))
Enrico Granatad64d0bc2011-08-19 21:13:46 +00001525 return true;
1526
Greg Claytonafacd142011-09-02 01:15:17 +00001527 if ((custom_format == eFormatVectorOfChar) ||
1528 (custom_format == eFormatVectorOfFloat32) ||
1529 (custom_format == eFormatVectorOfFloat64) ||
1530 (custom_format == eFormatVectorOfSInt16) ||
1531 (custom_format == eFormatVectorOfSInt32) ||
1532 (custom_format == eFormatVectorOfSInt64) ||
1533 (custom_format == eFormatVectorOfSInt8) ||
1534 (custom_format == eFormatVectorOfUInt128) ||
1535 (custom_format == eFormatVectorOfUInt16) ||
1536 (custom_format == eFormatVectorOfUInt32) ||
1537 (custom_format == eFormatVectorOfUInt64) ||
1538 (custom_format == eFormatVectorOfUInt8))
Enrico Granatad64d0bc2011-08-19 21:13:46 +00001539 return true;
1540 }
1541 }
1542 return false;
1543}
1544
Enrico Granata9fc19442011-07-06 02:13:41 +00001545bool
1546ValueObject::DumpPrintableRepresentation(Stream& s,
1547 ValueObjectRepresentationStyle val_obj_display,
Greg Claytonafacd142011-09-02 01:15:17 +00001548 Format custom_format,
Enrico Granata0dba9b32014-01-08 01:36:59 +00001549 PrintableRepresentationSpecialCases special,
1550 bool do_dump_error)
Enrico Granata9fc19442011-07-06 02:13:41 +00001551{
Enrico Granataf4efecd2011-07-12 22:56:10 +00001552
Greg Clayton57ee3062013-07-11 22:46:58 +00001553 Flags flags(GetTypeInfo());
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00001554
Enrico Granata86cc9822012-03-19 22:58:49 +00001555 bool allow_special = ((special & ePrintableRepresentationSpecialCasesAllow) == ePrintableRepresentationSpecialCasesAllow);
1556 bool only_special = ((special & ePrintableRepresentationSpecialCasesOnly) == ePrintableRepresentationSpecialCasesOnly);
1557
1558 if (allow_special)
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00001559 {
Greg Clayton57ee3062013-07-11 22:46:58 +00001560 if (flags.AnySet(ClangASTType::eTypeIsArray | ClangASTType::eTypeIsPointer)
Enrico Granata86cc9822012-03-19 22:58:49 +00001561 && val_obj_display == ValueObject::eValueObjectRepresentationStyleValue)
Enrico Granataf4efecd2011-07-12 22:56:10 +00001562 {
Enrico Granata86cc9822012-03-19 22:58:49 +00001563 // when being asked to get a printable display an array or pointer type directly,
1564 // try to "do the right thing"
1565
1566 if (IsCStringContainer(true) &&
1567 (custom_format == eFormatCString ||
1568 custom_format == eFormatCharArray ||
1569 custom_format == eFormatChar ||
1570 custom_format == eFormatVectorOfChar)) // print char[] & char* directly
Enrico Granataf4efecd2011-07-12 22:56:10 +00001571 {
Enrico Granata86cc9822012-03-19 22:58:49 +00001572 Error error;
1573 ReadPointedString(s,
1574 error,
1575 0,
1576 (custom_format == eFormatVectorOfChar) ||
1577 (custom_format == eFormatCharArray));
1578 return !error.Fail();
Enrico Granataf4efecd2011-07-12 22:56:10 +00001579 }
1580
Enrico Granata86cc9822012-03-19 22:58:49 +00001581 if (custom_format == eFormatEnum)
1582 return false;
1583
1584 // this only works for arrays, because I have no way to know when
1585 // the pointed memory ends, and no special \0 end of data marker
Greg Clayton57ee3062013-07-11 22:46:58 +00001586 if (flags.Test(ClangASTType::eTypeIsArray))
Enrico Granataf4efecd2011-07-12 22:56:10 +00001587 {
Enrico Granata86cc9822012-03-19 22:58:49 +00001588 if ((custom_format == eFormatBytes) ||
1589 (custom_format == eFormatBytesWithASCII))
Enrico Granataf4efecd2011-07-12 22:56:10 +00001590 {
Greg Claytonc7bece562013-01-25 18:06:21 +00001591 const size_t count = GetNumChildren();
Enrico Granata86cc9822012-03-19 22:58:49 +00001592
1593 s << '[';
Greg Claytonc7bece562013-01-25 18:06:21 +00001594 for (size_t low = 0; low < count; low++)
Enrico Granataf4efecd2011-07-12 22:56:10 +00001595 {
Enrico Granata86cc9822012-03-19 22:58:49 +00001596
1597 if (low)
1598 s << ',';
1599
1600 ValueObjectSP child = GetChildAtIndex(low,true);
1601 if (!child.get())
1602 {
1603 s << "<invalid child>";
1604 continue;
1605 }
1606 child->DumpPrintableRepresentation(s, ValueObject::eValueObjectRepresentationStyleValue, custom_format);
1607 }
1608
1609 s << ']';
1610
1611 return true;
1612 }
Enrico Granataf4efecd2011-07-12 22:56:10 +00001613
Enrico Granata86cc9822012-03-19 22:58:49 +00001614 if ((custom_format == eFormatVectorOfChar) ||
1615 (custom_format == eFormatVectorOfFloat32) ||
1616 (custom_format == eFormatVectorOfFloat64) ||
1617 (custom_format == eFormatVectorOfSInt16) ||
1618 (custom_format == eFormatVectorOfSInt32) ||
1619 (custom_format == eFormatVectorOfSInt64) ||
1620 (custom_format == eFormatVectorOfSInt8) ||
1621 (custom_format == eFormatVectorOfUInt128) ||
1622 (custom_format == eFormatVectorOfUInt16) ||
1623 (custom_format == eFormatVectorOfUInt32) ||
1624 (custom_format == eFormatVectorOfUInt64) ||
1625 (custom_format == eFormatVectorOfUInt8)) // arrays of bytes, bytes with ASCII or any vector format should be printed directly
1626 {
Greg Claytonc7bece562013-01-25 18:06:21 +00001627 const size_t count = GetNumChildren();
Enrico Granata86cc9822012-03-19 22:58:49 +00001628
1629 Format format = FormatManager::GetSingleItemFormat(custom_format);
1630
1631 s << '[';
Greg Claytonc7bece562013-01-25 18:06:21 +00001632 for (size_t low = 0; low < count; low++)
Enrico Granata86cc9822012-03-19 22:58:49 +00001633 {
1634
1635 if (low)
1636 s << ',';
1637
1638 ValueObjectSP child = GetChildAtIndex(low,true);
1639 if (!child.get())
1640 {
1641 s << "<invalid child>";
1642 continue;
1643 }
1644 child->DumpPrintableRepresentation(s, ValueObject::eValueObjectRepresentationStyleValue, format);
1645 }
1646
1647 s << ']';
1648
1649 return true;
1650 }
Enrico Granataf4efecd2011-07-12 22:56:10 +00001651 }
Enrico Granata86cc9822012-03-19 22:58:49 +00001652
1653 if ((custom_format == eFormatBoolean) ||
1654 (custom_format == eFormatBinary) ||
1655 (custom_format == eFormatChar) ||
1656 (custom_format == eFormatCharPrintable) ||
1657 (custom_format == eFormatComplexFloat) ||
1658 (custom_format == eFormatDecimal) ||
1659 (custom_format == eFormatHex) ||
Enrico Granata7ec18e32012-08-09 19:33:34 +00001660 (custom_format == eFormatHexUppercase) ||
Enrico Granata86cc9822012-03-19 22:58:49 +00001661 (custom_format == eFormatFloat) ||
1662 (custom_format == eFormatOctal) ||
1663 (custom_format == eFormatOSType) ||
1664 (custom_format == eFormatUnicode16) ||
1665 (custom_format == eFormatUnicode32) ||
1666 (custom_format == eFormatUnsigned) ||
1667 (custom_format == eFormatPointer) ||
1668 (custom_format == eFormatComplexInteger) ||
1669 (custom_format == eFormatComplex) ||
1670 (custom_format == eFormatDefault)) // use the [] operator
1671 return false;
Enrico Granataf4efecd2011-07-12 22:56:10 +00001672 }
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00001673 }
Enrico Granata85933ed2011-08-18 16:38:26 +00001674
1675 if (only_special)
1676 return false;
1677
Enrico Granata86cc9822012-03-19 22:58:49 +00001678 bool var_success = false;
1679
1680 {
Greg Claytonc7bece562013-01-25 18:06:21 +00001681 const char *cstr = NULL;
Enrico Granata2c75f112013-06-21 00:04:51 +00001682
1683 // this is a local stream that we are using to ensure that the data pointed to by cstr survives
1684 // long enough for us to copy it to its destination - it is necessary to have this temporary storage
1685 // area for cases where our desired output is not backed by some other longer-term storage
Greg Claytonc7bece562013-01-25 18:06:21 +00001686 StreamString strm;
Enrico Granata86cc9822012-03-19 22:58:49 +00001687
Enrico Granata90890bb2014-01-23 01:21:18 +00001688 bool reset_format = false;
1689 if (custom_format != eFormatInvalid && GetFormat() == lldb::eFormatDefault)
1690 {
1691 reset_format = true;
Enrico Granata86cc9822012-03-19 22:58:49 +00001692 SetFormat(custom_format);
Enrico Granata90890bb2014-01-23 01:21:18 +00001693 }
Enrico Granata86cc9822012-03-19 22:58:49 +00001694
1695 switch(val_obj_display)
1696 {
1697 case eValueObjectRepresentationStyleValue:
Greg Claytonc7bece562013-01-25 18:06:21 +00001698 cstr = GetValueAsCString();
Enrico Granata86cc9822012-03-19 22:58:49 +00001699 break;
1700
1701 case eValueObjectRepresentationStyleSummary:
Greg Claytonc7bece562013-01-25 18:06:21 +00001702 cstr = GetSummaryAsCString();
Enrico Granata86cc9822012-03-19 22:58:49 +00001703 break;
1704
1705 case eValueObjectRepresentationStyleLanguageSpecific:
Greg Claytonc7bece562013-01-25 18:06:21 +00001706 cstr = GetObjectDescription();
Enrico Granata86cc9822012-03-19 22:58:49 +00001707 break;
1708
1709 case eValueObjectRepresentationStyleLocation:
Greg Claytonc7bece562013-01-25 18:06:21 +00001710 cstr = GetLocationAsCString();
Enrico Granata86cc9822012-03-19 22:58:49 +00001711 break;
1712
1713 case eValueObjectRepresentationStyleChildrenCount:
Greg Claytonc7bece562013-01-25 18:06:21 +00001714 strm.Printf("%zu", GetNumChildren());
1715 cstr = strm.GetString().c_str();
Enrico Granata86cc9822012-03-19 22:58:49 +00001716 break;
1717
1718 case eValueObjectRepresentationStyleType:
Greg Claytonc7bece562013-01-25 18:06:21 +00001719 cstr = GetTypeName().AsCString();
Enrico Granata86cc9822012-03-19 22:58:49 +00001720 break;
Enrico Granata2c75f112013-06-21 00:04:51 +00001721
1722 case eValueObjectRepresentationStyleName:
1723 cstr = GetName().AsCString();
1724 break;
1725
1726 case eValueObjectRepresentationStyleExpressionPath:
1727 GetExpressionPath(strm, false);
1728 cstr = strm.GetString().c_str();
1729 break;
Enrico Granata86cc9822012-03-19 22:58:49 +00001730 }
1731
Greg Claytonc7bece562013-01-25 18:06:21 +00001732 if (!cstr)
Enrico Granata86cc9822012-03-19 22:58:49 +00001733 {
1734 if (val_obj_display == eValueObjectRepresentationStyleValue)
Greg Claytonc7bece562013-01-25 18:06:21 +00001735 cstr = GetSummaryAsCString();
Enrico Granata86cc9822012-03-19 22:58:49 +00001736 else if (val_obj_display == eValueObjectRepresentationStyleSummary)
1737 {
Greg Clayton57ee3062013-07-11 22:46:58 +00001738 if (GetClangType().IsAggregateType())
Enrico Granata86cc9822012-03-19 22:58:49 +00001739 {
Greg Claytonc7bece562013-01-25 18:06:21 +00001740 strm.Printf("%s @ %s", GetTypeName().AsCString(), GetLocationAsCString());
1741 cstr = strm.GetString().c_str();
Enrico Granata86cc9822012-03-19 22:58:49 +00001742 }
1743 else
Greg Claytonc7bece562013-01-25 18:06:21 +00001744 cstr = GetValueAsCString();
Enrico Granata86cc9822012-03-19 22:58:49 +00001745 }
1746 }
1747
Enrico Granata90890bb2014-01-23 01:21:18 +00001748
Greg Claytonc7bece562013-01-25 18:06:21 +00001749 if (cstr)
Enrico Granata90890bb2014-01-23 01:21:18 +00001750 {
Greg Claytonc7bece562013-01-25 18:06:21 +00001751 s.PutCString(cstr);
Enrico Granata90890bb2014-01-23 01:21:18 +00001752 if (reset_format)
1753 SetFormat(lldb::eFormatDefault);
1754 }
Enrico Granata86cc9822012-03-19 22:58:49 +00001755 else
1756 {
Enrico Granata90890bb2014-01-23 01:21:18 +00001757 if (reset_format)
1758 SetFormat(lldb::eFormatDefault);
Enrico Granata86cc9822012-03-19 22:58:49 +00001759 if (m_error.Fail())
Enrico Granata0dba9b32014-01-08 01:36:59 +00001760 {
1761 if (do_dump_error)
1762 s.Printf("<%s>", m_error.AsCString());
1763 else
1764 return false;
1765 }
Enrico Granata86cc9822012-03-19 22:58:49 +00001766 else if (val_obj_display == eValueObjectRepresentationStyleSummary)
1767 s.PutCString("<no summary available>");
1768 else if (val_obj_display == eValueObjectRepresentationStyleValue)
1769 s.PutCString("<no value available>");
1770 else if (val_obj_display == eValueObjectRepresentationStyleLanguageSpecific)
1771 s.PutCString("<not a valid Objective-C object>"); // edit this if we have other runtimes that support a description
1772 else
1773 s.PutCString("<no printable representation>");
1774 }
1775
1776 // we should only return false here if we could not do *anything*
1777 // even if we have an error message as output, that's a success
1778 // from our callers' perspective, so return true
1779 var_success = true;
Enrico Granata86cc9822012-03-19 22:58:49 +00001780 }
1781
Enrico Granataf4efecd2011-07-12 22:56:10 +00001782 return var_success;
Enrico Granata9fc19442011-07-06 02:13:41 +00001783}
1784
Greg Clayton737b9322010-09-13 03:32:57 +00001785addr_t
Enrico Granata9128ee22011-09-06 19:20:51 +00001786ValueObject::GetAddressOf (bool scalar_is_load_address, AddressType *address_type)
Greg Clayton73b472d2010-10-27 03:32:59 +00001787{
Enrico Granatac3e320a2011-08-02 17:27:39 +00001788 if (!UpdateValueIfNeeded(false))
Jim Ingham78a685a2011-04-16 00:01:13 +00001789 return LLDB_INVALID_ADDRESS;
1790
Greg Clayton73b472d2010-10-27 03:32:59 +00001791 switch (m_value.GetValueType())
1792 {
1793 case Value::eValueTypeScalar:
Greg Clayton0665a0f2012-10-30 18:18:43 +00001794 case Value::eValueTypeVector:
Greg Clayton73b472d2010-10-27 03:32:59 +00001795 if (scalar_is_load_address)
1796 {
Enrico Granata9128ee22011-09-06 19:20:51 +00001797 if(address_type)
1798 *address_type = eAddressTypeLoad;
Greg Clayton73b472d2010-10-27 03:32:59 +00001799 return m_value.GetScalar().ULongLong(LLDB_INVALID_ADDRESS);
1800 }
1801 break;
1802
1803 case Value::eValueTypeLoadAddress:
1804 case Value::eValueTypeFileAddress:
1805 case Value::eValueTypeHostAddress:
1806 {
Enrico Granata9128ee22011-09-06 19:20:51 +00001807 if(address_type)
1808 *address_type = m_value.GetValueAddressType ();
Greg Clayton73b472d2010-10-27 03:32:59 +00001809 return m_value.GetScalar().ULongLong(LLDB_INVALID_ADDRESS);
1810 }
1811 break;
1812 }
Enrico Granata9128ee22011-09-06 19:20:51 +00001813 if (address_type)
1814 *address_type = eAddressTypeInvalid;
Greg Clayton73b472d2010-10-27 03:32:59 +00001815 return LLDB_INVALID_ADDRESS;
1816}
1817
1818addr_t
Enrico Granata9128ee22011-09-06 19:20:51 +00001819ValueObject::GetPointerValue (AddressType *address_type)
Greg Clayton737b9322010-09-13 03:32:57 +00001820{
Greg Claytonafacd142011-09-02 01:15:17 +00001821 addr_t address = LLDB_INVALID_ADDRESS;
Enrico Granata9128ee22011-09-06 19:20:51 +00001822 if(address_type)
1823 *address_type = eAddressTypeInvalid;
Jim Ingham78a685a2011-04-16 00:01:13 +00001824
Enrico Granatac3e320a2011-08-02 17:27:39 +00001825 if (!UpdateValueIfNeeded(false))
Jim Ingham78a685a2011-04-16 00:01:13 +00001826 return address;
1827
Greg Clayton73b472d2010-10-27 03:32:59 +00001828 switch (m_value.GetValueType())
Greg Clayton737b9322010-09-13 03:32:57 +00001829 {
1830 case Value::eValueTypeScalar:
Greg Clayton0665a0f2012-10-30 18:18:43 +00001831 case Value::eValueTypeVector:
Enrico Granata9128ee22011-09-06 19:20:51 +00001832 address = m_value.GetScalar().ULongLong(LLDB_INVALID_ADDRESS);
Greg Clayton737b9322010-09-13 03:32:57 +00001833 break;
1834
Enrico Granata9128ee22011-09-06 19:20:51 +00001835 case Value::eValueTypeHostAddress:
Greg Clayton737b9322010-09-13 03:32:57 +00001836 case Value::eValueTypeLoadAddress:
1837 case Value::eValueTypeFileAddress:
Greg Clayton737b9322010-09-13 03:32:57 +00001838 {
Greg Claytonc7bece562013-01-25 18:06:21 +00001839 lldb::offset_t data_offset = 0;
Greg Clayton737b9322010-09-13 03:32:57 +00001840 address = m_data.GetPointer(&data_offset);
Greg Clayton737b9322010-09-13 03:32:57 +00001841 }
1842 break;
1843 }
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00001844
Enrico Granata9128ee22011-09-06 19:20:51 +00001845 if (address_type)
1846 *address_type = GetAddressTypeOfChildren();
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00001847
Greg Clayton737b9322010-09-13 03:32:57 +00001848 return address;
1849}
1850
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001851bool
Enrico Granata07a4ac22012-05-08 21:25:06 +00001852ValueObject::SetValueFromCString (const char *value_str, Error& error)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001853{
Enrico Granata07a4ac22012-05-08 21:25:06 +00001854 error.Clear();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001855 // Make sure our value is up to date first so that our location and location
1856 // type is valid.
Enrico Granatac3e320a2011-08-02 17:27:39 +00001857 if (!UpdateValueIfNeeded(false))
Enrico Granata07a4ac22012-05-08 21:25:06 +00001858 {
1859 error.SetErrorString("unable to read value");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001860 return false;
Enrico Granata07a4ac22012-05-08 21:25:06 +00001861 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001862
Greg Claytonfaac1112013-03-14 18:31:44 +00001863 uint64_t count = 0;
Greg Clayton57ee3062013-07-11 22:46:58 +00001864 const Encoding encoding = GetClangType().GetEncoding (count);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001865
Greg Claytonb1320972010-07-14 00:18:15 +00001866 const size_t byte_size = GetByteSize();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001867
Jim Ingham16e0c682011-08-12 23:34:31 +00001868 Value::ValueType value_type = m_value.GetValueType();
1869
1870 if (value_type == Value::eValueTypeScalar)
1871 {
1872 // If the value is already a scalar, then let the scalar change itself:
1873 m_value.GetScalar().SetValueFromCString (value_str, encoding, byte_size);
1874 }
1875 else if (byte_size <= Scalar::GetMaxByteSize())
1876 {
1877 // If the value fits in a scalar, then make a new scalar and again let the
1878 // scalar code do the conversion, then figure out where to put the new value.
1879 Scalar new_scalar;
Jim Ingham16e0c682011-08-12 23:34:31 +00001880 error = new_scalar.SetValueFromCString (value_str, encoding, byte_size);
1881 if (error.Success())
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001882 {
Jim Ingham4b536182011-08-09 02:12:22 +00001883 switch (value_type)
1884 {
Greg Claytoncc4d0142012-02-17 07:49:44 +00001885 case Value::eValueTypeLoadAddress:
Jim Ingham16e0c682011-08-12 23:34:31 +00001886 {
1887 // If it is a load address, then the scalar value is the storage location
1888 // of the data, and we have to shove this value down to that load location.
Greg Claytoncc4d0142012-02-17 07:49:44 +00001889 ExecutionContext exe_ctx (GetExecutionContextRef());
1890 Process *process = exe_ctx.GetProcessPtr();
1891 if (process)
Jim Ingham16e0c682011-08-12 23:34:31 +00001892 {
Enrico Granata48ea80f2012-10-24 20:24:39 +00001893 addr_t target_addr = m_value.GetScalar().ULongLong(LLDB_INVALID_ADDRESS);
Greg Claytoncc4d0142012-02-17 07:49:44 +00001894 size_t bytes_written = process->WriteScalarToMemory (target_addr,
1895 new_scalar,
1896 byte_size,
1897 error);
Enrico Granata07a4ac22012-05-08 21:25:06 +00001898 if (!error.Success())
1899 return false;
1900 if (bytes_written != byte_size)
1901 {
1902 error.SetErrorString("unable to write value to memory");
1903 return false;
1904 }
Jim Ingham16e0c682011-08-12 23:34:31 +00001905 }
1906 }
Jim Ingham4b536182011-08-09 02:12:22 +00001907 break;
Greg Claytoncc4d0142012-02-17 07:49:44 +00001908 case Value::eValueTypeHostAddress:
Jim Ingham16e0c682011-08-12 23:34:31 +00001909 {
1910 // If it is a host address, then we stuff the scalar as a DataBuffer into the Value's data.
1911 DataExtractor new_data;
1912 new_data.SetByteOrder (m_data.GetByteOrder());
1913
1914 DataBufferSP buffer_sp (new DataBufferHeap(byte_size, 0));
1915 m_data.SetData(buffer_sp, 0);
1916 bool success = new_scalar.GetData(new_data);
1917 if (success)
1918 {
Greg Claytoncc4d0142012-02-17 07:49:44 +00001919 new_data.CopyByteOrderedData (0,
1920 byte_size,
1921 const_cast<uint8_t *>(m_data.GetDataStart()),
1922 byte_size,
1923 m_data.GetByteOrder());
Jim Ingham16e0c682011-08-12 23:34:31 +00001924 }
1925 m_value.GetScalar() = (uintptr_t)m_data.GetDataStart();
1926
1927 }
Jim Ingham4b536182011-08-09 02:12:22 +00001928 break;
Greg Claytoncc4d0142012-02-17 07:49:44 +00001929 case Value::eValueTypeFileAddress:
1930 case Value::eValueTypeScalar:
Greg Clayton0665a0f2012-10-30 18:18:43 +00001931 case Value::eValueTypeVector:
1932 break;
Jim Ingham4b536182011-08-09 02:12:22 +00001933 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001934 }
1935 else
1936 {
Jim Ingham16e0c682011-08-12 23:34:31 +00001937 return false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001938 }
Jim Ingham16e0c682011-08-12 23:34:31 +00001939 }
1940 else
1941 {
1942 // We don't support setting things bigger than a scalar at present.
Enrico Granata07a4ac22012-05-08 21:25:06 +00001943 error.SetErrorString("unable to write aggregate data type");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001944 return false;
1945 }
Jim Ingham16e0c682011-08-12 23:34:31 +00001946
1947 // If we have reached this point, then we have successfully changed the value.
1948 SetNeedsUpdate();
1949 return true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001950}
1951
Greg Clayton81e871e2012-02-04 02:27:34 +00001952bool
1953ValueObject::GetDeclaration (Declaration &decl)
1954{
1955 decl.Clear();
1956 return false;
1957}
1958
Greg Clayton84db9102012-03-26 23:03:23 +00001959ConstString
1960ValueObject::GetTypeName()
1961{
Greg Clayton57ee3062013-07-11 22:46:58 +00001962 return GetClangType().GetConstTypeName();
Greg Clayton84db9102012-03-26 23:03:23 +00001963}
1964
1965ConstString
1966ValueObject::GetQualifiedTypeName()
1967{
Greg Clayton57ee3062013-07-11 22:46:58 +00001968 return GetClangType().GetConstQualifiedTypeName();
Greg Clayton84db9102012-03-26 23:03:23 +00001969}
1970
1971
Greg Claytonafacd142011-09-02 01:15:17 +00001972LanguageType
Jim Ingham5a369122010-09-28 01:25:32 +00001973ValueObject::GetObjectRuntimeLanguage ()
1974{
Greg Clayton57ee3062013-07-11 22:46:58 +00001975 return GetClangType().GetMinimumLanguage ();
Jim Ingham5a369122010-09-28 01:25:32 +00001976}
1977
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001978void
Jim Ingham58b59f92011-04-22 23:53:53 +00001979ValueObject::AddSyntheticChild (const ConstString &key, ValueObject *valobj)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001980{
Jim Ingham58b59f92011-04-22 23:53:53 +00001981 m_synthetic_children[key] = valobj;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001982}
1983
1984ValueObjectSP
1985ValueObject::GetSyntheticChild (const ConstString &key) const
1986{
1987 ValueObjectSP synthetic_child_sp;
Jim Ingham58b59f92011-04-22 23:53:53 +00001988 std::map<ConstString, ValueObject *>::const_iterator pos = m_synthetic_children.find (key);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001989 if (pos != m_synthetic_children.end())
Jim Ingham58b59f92011-04-22 23:53:53 +00001990 synthetic_child_sp = pos->second->GetSP();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001991 return synthetic_child_sp;
1992}
1993
Greg Clayton2452ab72013-02-08 22:02:02 +00001994uint32_t
Greg Clayton57ee3062013-07-11 22:46:58 +00001995ValueObject::GetTypeInfo (ClangASTType *pointee_or_element_clang_type)
Greg Clayton2452ab72013-02-08 22:02:02 +00001996{
Greg Clayton57ee3062013-07-11 22:46:58 +00001997 return GetClangType().GetTypeInfo (pointee_or_element_clang_type);
Greg Clayton2452ab72013-02-08 22:02:02 +00001998}
1999
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002000bool
2001ValueObject::IsPointerType ()
2002{
Greg Clayton57ee3062013-07-11 22:46:58 +00002003 return GetClangType().IsPointerType();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002004}
2005
Jim Inghamb7603bb2011-03-18 00:05:18 +00002006bool
Greg Claytondaf515f2011-07-09 20:12:33 +00002007ValueObject::IsArrayType ()
2008{
Greg Clayton57ee3062013-07-11 22:46:58 +00002009 return GetClangType().IsArrayType (NULL, NULL, NULL);
Greg Claytondaf515f2011-07-09 20:12:33 +00002010}
2011
2012bool
Enrico Granata9fc19442011-07-06 02:13:41 +00002013ValueObject::IsScalarType ()
2014{
Greg Clayton57ee3062013-07-11 22:46:58 +00002015 return GetClangType().IsScalarType ();
Enrico Granata9fc19442011-07-06 02:13:41 +00002016}
2017
2018bool
Jim Inghamb7603bb2011-03-18 00:05:18 +00002019ValueObject::IsIntegerType (bool &is_signed)
2020{
Greg Clayton57ee3062013-07-11 22:46:58 +00002021 return GetClangType().IsIntegerType (is_signed);
Jim Inghamb7603bb2011-03-18 00:05:18 +00002022}
Greg Clayton73b472d2010-10-27 03:32:59 +00002023
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002024bool
2025ValueObject::IsPointerOrReferenceType ()
2026{
Greg Clayton57ee3062013-07-11 22:46:58 +00002027 return GetClangType().IsPointerOrReferenceType ();
Greg Clayton007d5be2011-05-30 00:49:24 +00002028}
2029
2030bool
Greg Claytondea8cb42011-06-29 22:09:02 +00002031ValueObject::IsPossibleDynamicType ()
2032{
Enrico Granatafd4c84e2012-05-21 16:51:35 +00002033 ExecutionContext exe_ctx (GetExecutionContextRef());
2034 Process *process = exe_ctx.GetProcessPtr();
2035 if (process)
2036 return process->IsPossibleDynamicValue(*this);
2037 else
Greg Clayton57ee3062013-07-11 22:46:58 +00002038 return GetClangType().IsPossibleDynamicType (NULL, true, true);
Greg Claytondea8cb42011-06-29 22:09:02 +00002039}
2040
Enrico Granata9e7b3882012-12-13 23:50:33 +00002041bool
2042ValueObject::IsObjCNil ()
2043{
Greg Clayton57ee3062013-07-11 22:46:58 +00002044 const uint32_t mask = ClangASTType::eTypeIsObjC | ClangASTType::eTypeIsPointer;
2045 bool isObjCpointer = (((GetClangType().GetTypeInfo(NULL)) & mask) == mask);
Enrico Granata7277d202013-03-15 23:33:15 +00002046 if (!isObjCpointer)
2047 return false;
Enrico Granata9e7b3882012-12-13 23:50:33 +00002048 bool canReadValue = true;
2049 bool isZero = GetValueAsUnsigned(0,&canReadValue) == 0;
Enrico Granata7277d202013-03-15 23:33:15 +00002050 return canReadValue && isZero;
Enrico Granata9e7b3882012-12-13 23:50:33 +00002051}
2052
Greg Claytonafacd142011-09-02 01:15:17 +00002053ValueObjectSP
Greg Claytonc7bece562013-01-25 18:06:21 +00002054ValueObject::GetSyntheticArrayMember (size_t index, bool can_create)
Enrico Granatad64d0bc2011-08-19 21:13:46 +00002055{
Greg Clayton2452ab72013-02-08 22:02:02 +00002056 const uint32_t type_info = GetTypeInfo ();
Greg Clayton57ee3062013-07-11 22:46:58 +00002057 if (type_info & ClangASTType::eTypeIsArray)
Enrico Granatad64d0bc2011-08-19 21:13:46 +00002058 return GetSyntheticArrayMemberFromArray(index, can_create);
2059
Greg Clayton57ee3062013-07-11 22:46:58 +00002060 if (type_info & ClangASTType::eTypeIsPointer)
Enrico Granatad64d0bc2011-08-19 21:13:46 +00002061 return GetSyntheticArrayMemberFromPointer(index, can_create);
2062
2063 return ValueObjectSP();
2064
2065}
2066
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002067ValueObjectSP
Greg Claytonc7bece562013-01-25 18:06:21 +00002068ValueObject::GetSyntheticArrayMemberFromPointer (size_t index, bool can_create)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002069{
2070 ValueObjectSP synthetic_child_sp;
2071 if (IsPointerType ())
2072 {
2073 char index_str[64];
Greg Claytonc7bece562013-01-25 18:06:21 +00002074 snprintf(index_str, sizeof(index_str), "[%zu]", index);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002075 ConstString index_const_str(index_str);
2076 // Check if we have already created a synthetic array member in this
2077 // valid object. If we have we will re-use it.
2078 synthetic_child_sp = GetSyntheticChild (index_const_str);
2079 if (!synthetic_child_sp)
2080 {
Jim Ingham58b59f92011-04-22 23:53:53 +00002081 ValueObject *synthetic_child;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002082 // We haven't made a synthetic array member for INDEX yet, so
2083 // lets make one and cache it for any future reference.
Jim Ingham58b59f92011-04-22 23:53:53 +00002084 synthetic_child = CreateChildAtIndex(0, true, index);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002085
2086 // Cache the value if we got one back...
Jim Ingham58b59f92011-04-22 23:53:53 +00002087 if (synthetic_child)
2088 {
2089 AddSyntheticChild(index_const_str, synthetic_child);
2090 synthetic_child_sp = synthetic_child->GetSP();
Enrico Granata6f3533f2011-07-29 19:53:35 +00002091 synthetic_child_sp->SetName(ConstString(index_str));
Enrico Granata0a3958e2011-07-02 00:25:22 +00002092 synthetic_child_sp->m_is_array_item_for_pointer = true;
Jim Ingham58b59f92011-04-22 23:53:53 +00002093 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002094 }
2095 }
2096 return synthetic_child_sp;
2097}
Jim Ingham22777012010-09-23 02:01:19 +00002098
Greg Claytondaf515f2011-07-09 20:12:33 +00002099// This allows you to create an array member using and index
2100// that doesn't not fall in the normal bounds of the array.
2101// Many times structure can be defined as:
2102// struct Collection
2103// {
2104// uint32_t item_count;
2105// Item item_array[0];
2106// };
2107// The size of the "item_array" is 1, but many times in practice
2108// there are more items in "item_array".
2109
2110ValueObjectSP
Greg Claytonc7bece562013-01-25 18:06:21 +00002111ValueObject::GetSyntheticArrayMemberFromArray (size_t index, bool can_create)
Greg Claytondaf515f2011-07-09 20:12:33 +00002112{
2113 ValueObjectSP synthetic_child_sp;
2114 if (IsArrayType ())
2115 {
2116 char index_str[64];
Greg Claytonc7bece562013-01-25 18:06:21 +00002117 snprintf(index_str, sizeof(index_str), "[%zu]", index);
Greg Claytondaf515f2011-07-09 20:12:33 +00002118 ConstString index_const_str(index_str);
2119 // Check if we have already created a synthetic array member in this
2120 // valid object. If we have we will re-use it.
2121 synthetic_child_sp = GetSyntheticChild (index_const_str);
2122 if (!synthetic_child_sp)
2123 {
2124 ValueObject *synthetic_child;
2125 // We haven't made a synthetic array member for INDEX yet, so
2126 // lets make one and cache it for any future reference.
2127 synthetic_child = CreateChildAtIndex(0, true, index);
2128
2129 // Cache the value if we got one back...
2130 if (synthetic_child)
2131 {
2132 AddSyntheticChild(index_const_str, synthetic_child);
2133 synthetic_child_sp = synthetic_child->GetSP();
Enrico Granata6f3533f2011-07-29 19:53:35 +00002134 synthetic_child_sp->SetName(ConstString(index_str));
Greg Claytondaf515f2011-07-09 20:12:33 +00002135 synthetic_child_sp->m_is_array_item_for_pointer = true;
2136 }
2137 }
2138 }
2139 return synthetic_child_sp;
2140}
2141
Enrico Granata9fc19442011-07-06 02:13:41 +00002142ValueObjectSP
2143ValueObject::GetSyntheticBitFieldChild (uint32_t from, uint32_t to, bool can_create)
2144{
2145 ValueObjectSP synthetic_child_sp;
2146 if (IsScalarType ())
2147 {
2148 char index_str[64];
2149 snprintf(index_str, sizeof(index_str), "[%i-%i]", from, to);
2150 ConstString index_const_str(index_str);
2151 // Check if we have already created a synthetic array member in this
2152 // valid object. If we have we will re-use it.
2153 synthetic_child_sp = GetSyntheticChild (index_const_str);
2154 if (!synthetic_child_sp)
2155 {
Enrico Granata9fc19442011-07-06 02:13:41 +00002156 // We haven't made a synthetic array member for INDEX yet, so
2157 // lets make one and cache it for any future reference.
Greg Clayton57ee3062013-07-11 22:46:58 +00002158 ValueObjectChild *synthetic_child = new ValueObjectChild (*this,
2159 GetClangType(),
2160 index_const_str,
2161 GetByteSize(),
2162 0,
2163 to-from+1,
2164 from,
2165 false,
2166 false,
2167 eAddressTypeInvalid);
Enrico Granata9fc19442011-07-06 02:13:41 +00002168
2169 // Cache the value if we got one back...
2170 if (synthetic_child)
2171 {
2172 AddSyntheticChild(index_const_str, synthetic_child);
2173 synthetic_child_sp = synthetic_child->GetSP();
Enrico Granata6f3533f2011-07-29 19:53:35 +00002174 synthetic_child_sp->SetName(ConstString(index_str));
Enrico Granata9fc19442011-07-06 02:13:41 +00002175 synthetic_child_sp->m_is_bitfield_for_scalar = true;
2176 }
2177 }
2178 }
2179 return synthetic_child_sp;
2180}
2181
Greg Claytonafacd142011-09-02 01:15:17 +00002182ValueObjectSP
Enrico Granata6f3533f2011-07-29 19:53:35 +00002183ValueObject::GetSyntheticChildAtOffset(uint32_t offset, const ClangASTType& type, bool can_create)
2184{
2185
2186 ValueObjectSP synthetic_child_sp;
2187
2188 char name_str[64];
2189 snprintf(name_str, sizeof(name_str), "@%i", offset);
2190 ConstString name_const_str(name_str);
2191
2192 // Check if we have already created a synthetic array member in this
2193 // valid object. If we have we will re-use it.
2194 synthetic_child_sp = GetSyntheticChild (name_const_str);
2195
2196 if (synthetic_child_sp.get())
2197 return synthetic_child_sp;
2198
2199 if (!can_create)
Greg Claytonafacd142011-09-02 01:15:17 +00002200 return ValueObjectSP();
Enrico Granata6f3533f2011-07-29 19:53:35 +00002201
2202 ValueObjectChild *synthetic_child = new ValueObjectChild(*this,
Greg Clayton57ee3062013-07-11 22:46:58 +00002203 type,
Enrico Granata6f3533f2011-07-29 19:53:35 +00002204 name_const_str,
Greg Clayton57ee3062013-07-11 22:46:58 +00002205 type.GetByteSize(),
Enrico Granata6f3533f2011-07-29 19:53:35 +00002206 offset,
2207 0,
2208 0,
2209 false,
Enrico Granata9128ee22011-09-06 19:20:51 +00002210 false,
2211 eAddressTypeInvalid);
Enrico Granata6f3533f2011-07-29 19:53:35 +00002212 if (synthetic_child)
2213 {
2214 AddSyntheticChild(name_const_str, synthetic_child);
2215 synthetic_child_sp = synthetic_child->GetSP();
2216 synthetic_child_sp->SetName(name_const_str);
2217 synthetic_child_sp->m_is_child_at_offset = true;
2218 }
2219 return synthetic_child_sp;
2220}
2221
Enrico Granatad55546b2011-07-22 00:16:08 +00002222// your expression path needs to have a leading . or ->
2223// (unless it somehow "looks like" an array, in which case it has
2224// a leading [ symbol). while the [ is meaningful and should be shown
2225// to the user, . and -> are just parser design, but by no means
2226// added information for the user.. strip them off
2227static const char*
2228SkipLeadingExpressionPathSeparators(const char* expression)
2229{
2230 if (!expression || !expression[0])
2231 return expression;
2232 if (expression[0] == '.')
2233 return expression+1;
2234 if (expression[0] == '-' && expression[1] == '>')
2235 return expression+2;
2236 return expression;
2237}
2238
Greg Claytonafacd142011-09-02 01:15:17 +00002239ValueObjectSP
Enrico Granatad55546b2011-07-22 00:16:08 +00002240ValueObject::GetSyntheticExpressionPathChild(const char* expression, bool can_create)
2241{
2242 ValueObjectSP synthetic_child_sp;
2243 ConstString name_const_string(expression);
2244 // Check if we have already created a synthetic array member in this
2245 // valid object. If we have we will re-use it.
2246 synthetic_child_sp = GetSyntheticChild (name_const_string);
2247 if (!synthetic_child_sp)
2248 {
2249 // We haven't made a synthetic array member for expression yet, so
2250 // lets make one and cache it for any future reference.
Enrico Granatadf31a8a2012-08-02 17:34:05 +00002251 synthetic_child_sp = GetValueForExpressionPath(expression,
2252 NULL, NULL, NULL,
2253 GetValueForExpressionPathOptions().DontAllowSyntheticChildren());
Enrico Granatad55546b2011-07-22 00:16:08 +00002254
2255 // Cache the value if we got one back...
2256 if (synthetic_child_sp.get())
2257 {
Enrico Granataea2bc0f2013-02-21 19:57:10 +00002258 // FIXME: this causes a "real" child to end up with its name changed to the contents of expression
Enrico Granatad55546b2011-07-22 00:16:08 +00002259 AddSyntheticChild(name_const_string, synthetic_child_sp.get());
Enrico Granata6f3533f2011-07-29 19:53:35 +00002260 synthetic_child_sp->SetName(ConstString(SkipLeadingExpressionPathSeparators(expression)));
Enrico Granatad55546b2011-07-22 00:16:08 +00002261 }
2262 }
2263 return synthetic_child_sp;
2264}
2265
2266void
Enrico Granata86cc9822012-03-19 22:58:49 +00002267ValueObject::CalculateSyntheticValue (bool use_synthetic)
Enrico Granatad55546b2011-07-22 00:16:08 +00002268{
Enrico Granata86cc9822012-03-19 22:58:49 +00002269 if (use_synthetic == false)
Enrico Granatad55546b2011-07-22 00:16:08 +00002270 return;
2271
Enrico Granatac5bc4122012-03-27 02:35:13 +00002272 TargetSP target_sp(GetTargetSP());
Enrico Granata5d5f60c2013-09-24 22:58:37 +00002273 if (target_sp && target_sp->GetEnableSyntheticValue() == false)
Enrico Granatac5bc4122012-03-27 02:35:13 +00002274 {
2275 m_synthetic_value = NULL;
2276 return;
2277 }
2278
Enrico Granatae3e91512012-10-22 18:18:36 +00002279 lldb::SyntheticChildrenSP current_synth_sp(m_synthetic_children_sp);
2280
Enrico Granata5548cb52013-01-28 23:47:25 +00002281 if (!UpdateFormatsIfNeeded() && m_synthetic_value)
Enrico Granata86cc9822012-03-19 22:58:49 +00002282 return;
Enrico Granatad55546b2011-07-22 00:16:08 +00002283
Enrico Granata0c489f52012-03-01 04:24:26 +00002284 if (m_synthetic_children_sp.get() == NULL)
Enrico Granatad55546b2011-07-22 00:16:08 +00002285 return;
2286
Enrico Granatae3e91512012-10-22 18:18:36 +00002287 if (current_synth_sp == m_synthetic_children_sp && m_synthetic_value)
2288 return;
2289
Enrico Granata86cc9822012-03-19 22:58:49 +00002290 m_synthetic_value = new ValueObjectSynthetic(*this, m_synthetic_children_sp);
Enrico Granatad55546b2011-07-22 00:16:08 +00002291}
2292
Jim Ingham78a685a2011-04-16 00:01:13 +00002293void
Greg Claytonafacd142011-09-02 01:15:17 +00002294ValueObject::CalculateDynamicValue (DynamicValueType use_dynamic)
Jim Ingham22777012010-09-23 02:01:19 +00002295{
Greg Claytonafacd142011-09-02 01:15:17 +00002296 if (use_dynamic == eNoDynamicValues)
Jim Ingham2837b762011-05-04 03:43:18 +00002297 return;
2298
Jim Ingham58b59f92011-04-22 23:53:53 +00002299 if (!m_dynamic_value && !IsDynamic())
Jim Ingham78a685a2011-04-16 00:01:13 +00002300 {
Greg Claytoncc4d0142012-02-17 07:49:44 +00002301 ExecutionContext exe_ctx (GetExecutionContextRef());
2302 Process *process = exe_ctx.GetProcessPtr();
Enrico Granatafd4c84e2012-05-21 16:51:35 +00002303 if (process && process->IsPossibleDynamicValue(*this))
Enrico Granatae3e91512012-10-22 18:18:36 +00002304 {
2305 ClearDynamicTypeInformation ();
Enrico Granatafd4c84e2012-05-21 16:51:35 +00002306 m_dynamic_value = new ValueObjectDynamicValue (*this, use_dynamic);
Enrico Granatae3e91512012-10-22 18:18:36 +00002307 }
Jim Ingham78a685a2011-04-16 00:01:13 +00002308 }
2309}
2310
Jim Ingham58b59f92011-04-22 23:53:53 +00002311ValueObjectSP
Jim Ingham2837b762011-05-04 03:43:18 +00002312ValueObject::GetDynamicValue (DynamicValueType use_dynamic)
Jim Ingham78a685a2011-04-16 00:01:13 +00002313{
Greg Claytonafacd142011-09-02 01:15:17 +00002314 if (use_dynamic == eNoDynamicValues)
Jim Ingham2837b762011-05-04 03:43:18 +00002315 return ValueObjectSP();
2316
2317 if (!IsDynamic() && m_dynamic_value == NULL)
Jim Ingham78a685a2011-04-16 00:01:13 +00002318 {
Jim Ingham2837b762011-05-04 03:43:18 +00002319 CalculateDynamicValue(use_dynamic);
Jim Ingham78a685a2011-04-16 00:01:13 +00002320 }
Jim Ingham58b59f92011-04-22 23:53:53 +00002321 if (m_dynamic_value)
2322 return m_dynamic_value->GetSP();
2323 else
2324 return ValueObjectSP();
Jim Ingham22777012010-09-23 02:01:19 +00002325}
Greg Clayton1d3afba2010-10-05 00:00:42 +00002326
Jim Ingham60dbabb2011-12-08 19:44:08 +00002327ValueObjectSP
2328ValueObject::GetStaticValue()
2329{
2330 return GetSP();
2331}
2332
Enrico Granata886147f2012-05-08 18:47:08 +00002333lldb::ValueObjectSP
2334ValueObject::GetNonSyntheticValue ()
2335{
2336 return GetSP();
2337}
2338
Enrico Granatad55546b2011-07-22 00:16:08 +00002339ValueObjectSP
Enrico Granata86cc9822012-03-19 22:58:49 +00002340ValueObject::GetSyntheticValue (bool use_synthetic)
Enrico Granatad55546b2011-07-22 00:16:08 +00002341{
Enrico Granata86cc9822012-03-19 22:58:49 +00002342 if (use_synthetic == false)
2343 return ValueObjectSP();
2344
Enrico Granatad55546b2011-07-22 00:16:08 +00002345 CalculateSyntheticValue(use_synthetic);
2346
2347 if (m_synthetic_value)
2348 return m_synthetic_value->GetSP();
2349 else
Enrico Granata86cc9822012-03-19 22:58:49 +00002350 return ValueObjectSP();
Enrico Granatad55546b2011-07-22 00:16:08 +00002351}
2352
Greg Claytone221f822011-01-21 01:59:00 +00002353bool
Enrico Granata27b625e2011-08-09 01:04:56 +00002354ValueObject::HasSyntheticValue()
2355{
Enrico Granata5548cb52013-01-28 23:47:25 +00002356 UpdateFormatsIfNeeded();
Enrico Granata27b625e2011-08-09 01:04:56 +00002357
Enrico Granata0c489f52012-03-01 04:24:26 +00002358 if (m_synthetic_children_sp.get() == NULL)
Enrico Granata27b625e2011-08-09 01:04:56 +00002359 return false;
2360
Enrico Granata86cc9822012-03-19 22:58:49 +00002361 CalculateSyntheticValue(true);
Enrico Granata27b625e2011-08-09 01:04:56 +00002362
2363 if (m_synthetic_value)
2364 return true;
2365 else
2366 return false;
2367}
2368
2369bool
Greg Claytone221f822011-01-21 01:59:00 +00002370ValueObject::GetBaseClassPath (Stream &s)
2371{
2372 if (IsBaseClass())
2373 {
Jim Ingham78a685a2011-04-16 00:01:13 +00002374 bool parent_had_base_class = GetParent() && GetParent()->GetBaseClassPath (s);
Greg Clayton57ee3062013-07-11 22:46:58 +00002375 ClangASTType clang_type = GetClangType();
Greg Claytone221f822011-01-21 01:59:00 +00002376 std::string cxx_class_name;
Greg Clayton57ee3062013-07-11 22:46:58 +00002377 bool this_had_base_class = clang_type.GetCXXClassName (cxx_class_name);
Greg Claytone221f822011-01-21 01:59:00 +00002378 if (this_had_base_class)
2379 {
2380 if (parent_had_base_class)
2381 s.PutCString("::");
2382 s.PutCString(cxx_class_name.c_str());
2383 }
2384 return parent_had_base_class || this_had_base_class;
2385 }
2386 return false;
2387}
2388
2389
2390ValueObject *
2391ValueObject::GetNonBaseClassParent()
2392{
Jim Ingham78a685a2011-04-16 00:01:13 +00002393 if (GetParent())
Greg Claytone221f822011-01-21 01:59:00 +00002394 {
Jim Ingham78a685a2011-04-16 00:01:13 +00002395 if (GetParent()->IsBaseClass())
2396 return GetParent()->GetNonBaseClassParent();
Greg Claytone221f822011-01-21 01:59:00 +00002397 else
Jim Ingham78a685a2011-04-16 00:01:13 +00002398 return GetParent();
Greg Claytone221f822011-01-21 01:59:00 +00002399 }
2400 return NULL;
2401}
Greg Clayton1d3afba2010-10-05 00:00:42 +00002402
2403void
Enrico Granata4becb372011-06-29 22:27:15 +00002404ValueObject::GetExpressionPath (Stream &s, bool qualify_cxx_base_classes, GetExpressionPathFormat epformat)
Greg Clayton8f92f0a2010-10-14 22:52:14 +00002405{
Greg Claytone221f822011-01-21 01:59:00 +00002406 const bool is_deref_of_parent = IsDereferenceOfParent ();
Greg Claytone221f822011-01-21 01:59:00 +00002407
Enrico Granata86cc9822012-03-19 22:58:49 +00002408 if (is_deref_of_parent && epformat == eGetExpressionPathFormatDereferencePointers)
Enrico Granata85933ed2011-08-18 16:38:26 +00002409 {
Enrico Granata4becb372011-06-29 22:27:15 +00002410 // this is the original format of GetExpressionPath() producing code like *(a_ptr).memberName, which is entirely
2411 // fine, until you put this into StackFrame::GetValueForVariableExpressionPath() which prefers to see a_ptr->memberName.
2412 // the eHonorPointers mode is meant to produce strings in this latter format
2413 s.PutCString("*(");
2414 }
Greg Claytone221f822011-01-21 01:59:00 +00002415
Enrico Granata4becb372011-06-29 22:27:15 +00002416 ValueObject* parent = GetParent();
2417
2418 if (parent)
2419 parent->GetExpressionPath (s, qualify_cxx_base_classes, epformat);
Enrico Granata0a3958e2011-07-02 00:25:22 +00002420
2421 // if we are a deref_of_parent just because we are synthetic array
2422 // members made up to allow ptr[%d] syntax to work in variable
2423 // printing, then add our name ([%d]) to the expression path
Enrico Granata86cc9822012-03-19 22:58:49 +00002424 if (m_is_array_item_for_pointer && epformat == eGetExpressionPathFormatHonorPointers)
Enrico Granata0a3958e2011-07-02 00:25:22 +00002425 s.PutCString(m_name.AsCString());
Enrico Granata4becb372011-06-29 22:27:15 +00002426
Greg Claytone221f822011-01-21 01:59:00 +00002427 if (!IsBaseClass())
2428 {
2429 if (!is_deref_of_parent)
Greg Clayton8f92f0a2010-10-14 22:52:14 +00002430 {
Greg Claytone221f822011-01-21 01:59:00 +00002431 ValueObject *non_base_class_parent = GetNonBaseClassParent();
2432 if (non_base_class_parent)
Greg Clayton8f92f0a2010-10-14 22:52:14 +00002433 {
Greg Clayton57ee3062013-07-11 22:46:58 +00002434 ClangASTType non_base_class_parent_clang_type = non_base_class_parent->GetClangType();
Greg Claytone221f822011-01-21 01:59:00 +00002435 if (non_base_class_parent_clang_type)
2436 {
Enrico Granata86cc9822012-03-19 22:58:49 +00002437 if (parent && parent->IsDereferenceOfParent() && epformat == eGetExpressionPathFormatHonorPointers)
Greg Claytone221f822011-01-21 01:59:00 +00002438 {
2439 s.PutCString("->");
2440 }
Enrico Granata4becb372011-06-29 22:27:15 +00002441 else
2442 {
Greg Clayton57ee3062013-07-11 22:46:58 +00002443 const uint32_t non_base_class_parent_type_info = non_base_class_parent_clang_type.GetTypeInfo();
2444
2445 if (non_base_class_parent_type_info & ClangASTType::eTypeIsPointer)
Enrico Granata4becb372011-06-29 22:27:15 +00002446 {
2447 s.PutCString("->");
2448 }
Greg Clayton57ee3062013-07-11 22:46:58 +00002449 else if ((non_base_class_parent_type_info & ClangASTType::eTypeHasChildren) &&
2450 !(non_base_class_parent_type_info & ClangASTType::eTypeIsArray))
Enrico Granata4becb372011-06-29 22:27:15 +00002451 {
2452 s.PutChar('.');
2453 }
Greg Claytone221f822011-01-21 01:59:00 +00002454 }
2455 }
Greg Clayton8f92f0a2010-10-14 22:52:14 +00002456 }
Greg Claytone221f822011-01-21 01:59:00 +00002457
2458 const char *name = GetName().GetCString();
2459 if (name)
Greg Clayton8f92f0a2010-10-14 22:52:14 +00002460 {
Greg Claytone221f822011-01-21 01:59:00 +00002461 if (qualify_cxx_base_classes)
2462 {
2463 if (GetBaseClassPath (s))
2464 s.PutCString("::");
2465 }
2466 s.PutCString(name);
Greg Clayton8f92f0a2010-10-14 22:52:14 +00002467 }
2468 }
2469 }
2470
Enrico Granata86cc9822012-03-19 22:58:49 +00002471 if (is_deref_of_parent && epformat == eGetExpressionPathFormatDereferencePointers)
Enrico Granata85933ed2011-08-18 16:38:26 +00002472 {
Greg Claytone221f822011-01-21 01:59:00 +00002473 s.PutChar(')');
Enrico Granata4becb372011-06-29 22:27:15 +00002474 }
Greg Clayton8f92f0a2010-10-14 22:52:14 +00002475}
2476
Greg Claytonafacd142011-09-02 01:15:17 +00002477ValueObjectSP
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002478ValueObject::GetValueForExpressionPath(const char* expression,
2479 const char** first_unparsed,
2480 ExpressionPathScanEndReason* reason_to_stop,
2481 ExpressionPathEndResultType* final_value_type,
2482 const GetValueForExpressionPathOptions& options,
2483 ExpressionPathAftermath* final_task_on_target)
2484{
2485
2486 const char* dummy_first_unparsed;
Enrico Granataea2bc0f2013-02-21 19:57:10 +00002487 ExpressionPathScanEndReason dummy_reason_to_stop = ValueObject::eExpressionPathScanEndReasonUnknown;
2488 ExpressionPathEndResultType dummy_final_value_type = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granata86cc9822012-03-19 22:58:49 +00002489 ExpressionPathAftermath dummy_final_task_on_target = ValueObject::eExpressionPathAftermathNothing;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002490
2491 ValueObjectSP ret_val = GetValueForExpressionPath_Impl(expression,
2492 first_unparsed ? first_unparsed : &dummy_first_unparsed,
2493 reason_to_stop ? reason_to_stop : &dummy_reason_to_stop,
2494 final_value_type ? final_value_type : &dummy_final_value_type,
2495 options,
2496 final_task_on_target ? final_task_on_target : &dummy_final_task_on_target);
2497
Enrico Granata86cc9822012-03-19 22:58:49 +00002498 if (!final_task_on_target || *final_task_on_target == ValueObject::eExpressionPathAftermathNothing)
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002499 return ret_val;
Enrico Granata385ad4e2012-03-03 00:45:57 +00002500
Enrico Granata86cc9822012-03-19 22:58:49 +00002501 if (ret_val.get() && ((final_value_type ? *final_value_type : dummy_final_value_type) == eExpressionPathEndResultTypePlain)) // I can only deref and takeaddress of plain objects
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002502 {
Enrico Granata86cc9822012-03-19 22:58:49 +00002503 if ( (final_task_on_target ? *final_task_on_target : dummy_final_task_on_target) == ValueObject::eExpressionPathAftermathDereference)
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002504 {
2505 Error error;
2506 ValueObjectSP final_value = ret_val->Dereference(error);
2507 if (error.Fail() || !final_value.get())
2508 {
Enrico Granata385ad4e2012-03-03 00:45:57 +00002509 if (reason_to_stop)
Enrico Granata86cc9822012-03-19 22:58:49 +00002510 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonDereferencingFailed;
Enrico Granata385ad4e2012-03-03 00:45:57 +00002511 if (final_value_type)
Enrico Granata86cc9822012-03-19 22:58:49 +00002512 *final_value_type = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002513 return ValueObjectSP();
2514 }
2515 else
2516 {
Enrico Granata385ad4e2012-03-03 00:45:57 +00002517 if (final_task_on_target)
Enrico Granata86cc9822012-03-19 22:58:49 +00002518 *final_task_on_target = ValueObject::eExpressionPathAftermathNothing;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002519 return final_value;
2520 }
2521 }
Enrico Granata86cc9822012-03-19 22:58:49 +00002522 if (*final_task_on_target == ValueObject::eExpressionPathAftermathTakeAddress)
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002523 {
2524 Error error;
2525 ValueObjectSP final_value = ret_val->AddressOf(error);
2526 if (error.Fail() || !final_value.get())
2527 {
Enrico Granata385ad4e2012-03-03 00:45:57 +00002528 if (reason_to_stop)
Enrico Granata86cc9822012-03-19 22:58:49 +00002529 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonTakingAddressFailed;
Enrico Granata385ad4e2012-03-03 00:45:57 +00002530 if (final_value_type)
Enrico Granata86cc9822012-03-19 22:58:49 +00002531 *final_value_type = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002532 return ValueObjectSP();
2533 }
2534 else
2535 {
Enrico Granata385ad4e2012-03-03 00:45:57 +00002536 if (final_task_on_target)
Enrico Granata86cc9822012-03-19 22:58:49 +00002537 *final_task_on_target = ValueObject::eExpressionPathAftermathNothing;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002538 return final_value;
2539 }
2540 }
2541 }
2542 return ret_val; // final_task_on_target will still have its original value, so you know I did not do it
2543}
2544
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002545int
2546ValueObject::GetValuesForExpressionPath(const char* expression,
Greg Claytonafacd142011-09-02 01:15:17 +00002547 ValueObjectListSP& list,
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002548 const char** first_unparsed,
2549 ExpressionPathScanEndReason* reason_to_stop,
2550 ExpressionPathEndResultType* final_value_type,
2551 const GetValueForExpressionPathOptions& options,
2552 ExpressionPathAftermath* final_task_on_target)
2553{
2554 const char* dummy_first_unparsed;
2555 ExpressionPathScanEndReason dummy_reason_to_stop;
2556 ExpressionPathEndResultType dummy_final_value_type;
Enrico Granata86cc9822012-03-19 22:58:49 +00002557 ExpressionPathAftermath dummy_final_task_on_target = ValueObject::eExpressionPathAftermathNothing;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002558
2559 ValueObjectSP ret_val = GetValueForExpressionPath_Impl(expression,
2560 first_unparsed ? first_unparsed : &dummy_first_unparsed,
2561 reason_to_stop ? reason_to_stop : &dummy_reason_to_stop,
2562 final_value_type ? final_value_type : &dummy_final_value_type,
2563 options,
2564 final_task_on_target ? final_task_on_target : &dummy_final_task_on_target);
2565
2566 if (!ret_val.get()) // if there are errors, I add nothing to the list
2567 return 0;
2568
Enrico Granata86ea8d82012-03-29 01:34:34 +00002569 if ( (reason_to_stop ? *reason_to_stop : dummy_reason_to_stop) != eExpressionPathScanEndReasonArrayRangeOperatorMet)
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002570 {
2571 // I need not expand a range, just post-process the final value and return
Enrico Granata86cc9822012-03-19 22:58:49 +00002572 if (!final_task_on_target || *final_task_on_target == ValueObject::eExpressionPathAftermathNothing)
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002573 {
2574 list->Append(ret_val);
2575 return 1;
2576 }
Enrico Granata86ea8d82012-03-29 01:34:34 +00002577 if (ret_val.get() && (final_value_type ? *final_value_type : dummy_final_value_type) == eExpressionPathEndResultTypePlain) // I can only deref and takeaddress of plain objects
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002578 {
Enrico Granata86cc9822012-03-19 22:58:49 +00002579 if (*final_task_on_target == ValueObject::eExpressionPathAftermathDereference)
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002580 {
2581 Error error;
2582 ValueObjectSP final_value = ret_val->Dereference(error);
2583 if (error.Fail() || !final_value.get())
2584 {
Greg Clayton23f59502012-07-17 03:23:13 +00002585 if (reason_to_stop)
2586 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonDereferencingFailed;
2587 if (final_value_type)
2588 *final_value_type = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002589 return 0;
2590 }
2591 else
2592 {
Enrico Granata86cc9822012-03-19 22:58:49 +00002593 *final_task_on_target = ValueObject::eExpressionPathAftermathNothing;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002594 list->Append(final_value);
2595 return 1;
2596 }
2597 }
Enrico Granata86cc9822012-03-19 22:58:49 +00002598 if (*final_task_on_target == ValueObject::eExpressionPathAftermathTakeAddress)
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002599 {
2600 Error error;
2601 ValueObjectSP final_value = ret_val->AddressOf(error);
2602 if (error.Fail() || !final_value.get())
2603 {
Greg Clayton23f59502012-07-17 03:23:13 +00002604 if (reason_to_stop)
2605 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonTakingAddressFailed;
2606 if (final_value_type)
2607 *final_value_type = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002608 return 0;
2609 }
2610 else
2611 {
Enrico Granata86cc9822012-03-19 22:58:49 +00002612 *final_task_on_target = ValueObject::eExpressionPathAftermathNothing;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002613 list->Append(final_value);
2614 return 1;
2615 }
2616 }
2617 }
2618 }
2619 else
2620 {
2621 return ExpandArraySliceExpression(first_unparsed ? *first_unparsed : dummy_first_unparsed,
2622 first_unparsed ? first_unparsed : &dummy_first_unparsed,
2623 ret_val,
2624 list,
2625 reason_to_stop ? reason_to_stop : &dummy_reason_to_stop,
2626 final_value_type ? final_value_type : &dummy_final_value_type,
2627 options,
2628 final_task_on_target ? final_task_on_target : &dummy_final_task_on_target);
2629 }
2630 // in any non-covered case, just do the obviously right thing
2631 list->Append(ret_val);
2632 return 1;
2633}
2634
Greg Claytonafacd142011-09-02 01:15:17 +00002635ValueObjectSP
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002636ValueObject::GetValueForExpressionPath_Impl(const char* expression_cstr,
2637 const char** first_unparsed,
2638 ExpressionPathScanEndReason* reason_to_stop,
2639 ExpressionPathEndResultType* final_result,
2640 const GetValueForExpressionPathOptions& options,
2641 ExpressionPathAftermath* what_next)
2642{
2643 ValueObjectSP root = GetSP();
2644
2645 if (!root.get())
2646 return ValueObjectSP();
2647
2648 *first_unparsed = expression_cstr;
2649
2650 while (true)
2651 {
2652
2653 const char* expression_cstr = *first_unparsed; // hide the top level expression_cstr
2654
Greg Clayton57ee3062013-07-11 22:46:58 +00002655 ClangASTType root_clang_type = root->GetClangType();
2656 ClangASTType pointee_clang_type;
2657 Flags pointee_clang_type_info;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002658
Greg Clayton57ee3062013-07-11 22:46:58 +00002659 Flags root_clang_type_info(root_clang_type.GetTypeInfo(&pointee_clang_type));
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002660 if (pointee_clang_type)
Greg Clayton57ee3062013-07-11 22:46:58 +00002661 pointee_clang_type_info.Reset(pointee_clang_type.GetTypeInfo());
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002662
2663 if (!expression_cstr || *expression_cstr == '\0')
2664 {
Enrico Granata86cc9822012-03-19 22:58:49 +00002665 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonEndOfString;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002666 return root;
2667 }
2668
2669 switch (*expression_cstr)
2670 {
2671 case '-':
2672 {
2673 if (options.m_check_dot_vs_arrow_syntax &&
Greg Clayton57ee3062013-07-11 22:46:58 +00002674 root_clang_type_info.Test(ClangASTType::eTypeIsPointer) ) // if you are trying to use -> on a non-pointer and I must catch the error
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002675 {
2676 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002677 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonArrowInsteadOfDot;
2678 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002679 return ValueObjectSP();
2680 }
Greg Clayton57ee3062013-07-11 22:46:58 +00002681 if (root_clang_type_info.Test(ClangASTType::eTypeIsObjC) && // if yo are trying to extract an ObjC IVar when this is forbidden
2682 root_clang_type_info.Test(ClangASTType::eTypeIsPointer) &&
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002683 options.m_no_fragile_ivar)
2684 {
2685 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002686 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonFragileIVarNotAllowed;
2687 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002688 return ValueObjectSP();
2689 }
2690 if (expression_cstr[1] != '>')
2691 {
2692 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002693 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonUnexpectedSymbol;
2694 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002695 return ValueObjectSP();
2696 }
2697 expression_cstr++; // skip the -
2698 }
2699 case '.': // or fallthrough from ->
2700 {
2701 if (options.m_check_dot_vs_arrow_syntax && *expression_cstr == '.' &&
Greg Clayton57ee3062013-07-11 22:46:58 +00002702 root_clang_type_info.Test(ClangASTType::eTypeIsPointer)) // if you are trying to use . on a pointer and I must catch the error
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002703 {
2704 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002705 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonDotInsteadOfArrow;
2706 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002707 return ValueObjectSP();
2708 }
2709 expression_cstr++; // skip .
2710 const char *next_separator = strpbrk(expression_cstr+1,"-.[");
2711 ConstString child_name;
2712 if (!next_separator) // if no other separator just expand this last layer
2713 {
2714 child_name.SetCString (expression_cstr);
Enrico Granata8c9d3562011-08-11 17:08:01 +00002715 ValueObjectSP child_valobj_sp = root->GetChildMemberWithName(child_name, true);
2716
2717 if (child_valobj_sp.get()) // we know we are done, so just return
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002718 {
Daniel Maleaa85e6b62012-12-07 22:21:08 +00002719 *first_unparsed = "";
Enrico Granata86cc9822012-03-19 22:58:49 +00002720 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonEndOfString;
2721 *final_result = ValueObject::eExpressionPathEndResultTypePlain;
Enrico Granata8c9d3562011-08-11 17:08:01 +00002722 return child_valobj_sp;
2723 }
2724 else if (options.m_no_synthetic_children == false) // let's try with synthetic children
2725 {
Enrico Granata86cc9822012-03-19 22:58:49 +00002726 if (root->IsSynthetic())
Enrico Granatadf31a8a2012-08-02 17:34:05 +00002727 {
2728 *first_unparsed = expression_cstr;
2729 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
2730 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
2731 return ValueObjectSP();
2732 }
2733
2734 child_valobj_sp = root->GetSyntheticValue();
Enrico Granata86cc9822012-03-19 22:58:49 +00002735 if (child_valobj_sp.get())
2736 child_valobj_sp = child_valobj_sp->GetChildMemberWithName(child_name, true);
Enrico Granata8c9d3562011-08-11 17:08:01 +00002737 }
2738
2739 // if we are here and options.m_no_synthetic_children is true, child_valobj_sp is going to be a NULL SP,
2740 // so we hit the "else" branch, and return an error
2741 if(child_valobj_sp.get()) // if it worked, just return
2742 {
Daniel Maleaa85e6b62012-12-07 22:21:08 +00002743 *first_unparsed = "";
Enrico Granata86cc9822012-03-19 22:58:49 +00002744 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonEndOfString;
2745 *final_result = ValueObject::eExpressionPathEndResultTypePlain;
Enrico Granata8c9d3562011-08-11 17:08:01 +00002746 return child_valobj_sp;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002747 }
2748 else
2749 {
2750 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002751 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
2752 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002753 return ValueObjectSP();
2754 }
2755 }
2756 else // other layers do expand
2757 {
2758 child_name.SetCStringWithLength(expression_cstr, next_separator - expression_cstr);
Enrico Granata8c9d3562011-08-11 17:08:01 +00002759 ValueObjectSP child_valobj_sp = root->GetChildMemberWithName(child_name, true);
2760 if (child_valobj_sp.get()) // store the new root and move on
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002761 {
Enrico Granata8c9d3562011-08-11 17:08:01 +00002762 root = child_valobj_sp;
2763 *first_unparsed = next_separator;
Enrico Granata86cc9822012-03-19 22:58:49 +00002764 *final_result = ValueObject::eExpressionPathEndResultTypePlain;
Enrico Granata8c9d3562011-08-11 17:08:01 +00002765 continue;
2766 }
2767 else if (options.m_no_synthetic_children == false) // let's try with synthetic children
2768 {
Enrico Granatadf31a8a2012-08-02 17:34:05 +00002769 if (root->IsSynthetic())
2770 {
2771 *first_unparsed = expression_cstr;
2772 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
2773 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
2774 return ValueObjectSP();
2775 }
2776
Enrico Granata86cc9822012-03-19 22:58:49 +00002777 child_valobj_sp = root->GetSyntheticValue(true);
2778 if (child_valobj_sp)
2779 child_valobj_sp = child_valobj_sp->GetChildMemberWithName(child_name, true);
Enrico Granata8c9d3562011-08-11 17:08:01 +00002780 }
2781
2782 // if we are here and options.m_no_synthetic_children is true, child_valobj_sp is going to be a NULL SP,
2783 // so we hit the "else" branch, and return an error
2784 if(child_valobj_sp.get()) // if it worked, move on
2785 {
2786 root = child_valobj_sp;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002787 *first_unparsed = next_separator;
Enrico Granata86cc9822012-03-19 22:58:49 +00002788 *final_result = ValueObject::eExpressionPathEndResultTypePlain;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002789 continue;
2790 }
2791 else
2792 {
2793 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002794 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
2795 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002796 return ValueObjectSP();
2797 }
2798 }
2799 break;
2800 }
2801 case '[':
2802 {
Greg Clayton57ee3062013-07-11 22:46:58 +00002803 if (!root_clang_type_info.Test(ClangASTType::eTypeIsArray) && !root_clang_type_info.Test(ClangASTType::eTypeIsPointer) && !root_clang_type_info.Test(ClangASTType::eTypeIsVector)) // if this is not a T[] nor a T*
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002804 {
Greg Clayton57ee3062013-07-11 22:46:58 +00002805 if (!root_clang_type_info.Test(ClangASTType::eTypeIsScalar)) // if this is not even a scalar...
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002806 {
Enrico Granata27b625e2011-08-09 01:04:56 +00002807 if (options.m_no_synthetic_children) // ...only chance left is synthetic
2808 {
2809 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002810 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonRangeOperatorInvalid;
2811 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granata27b625e2011-08-09 01:04:56 +00002812 return ValueObjectSP();
2813 }
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002814 }
2815 else if (!options.m_allow_bitfields_syntax) // if this is a scalar, check that we can expand bitfields
2816 {
2817 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002818 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonRangeOperatorNotAllowed;
2819 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002820 return ValueObjectSP();
2821 }
2822 }
2823 if (*(expression_cstr+1) == ']') // if this is an unbounded range it only works for arrays
2824 {
Greg Clayton57ee3062013-07-11 22:46:58 +00002825 if (!root_clang_type_info.Test(ClangASTType::eTypeIsArray))
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002826 {
2827 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002828 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonEmptyRangeNotAllowed;
2829 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002830 return ValueObjectSP();
2831 }
2832 else // even if something follows, we cannot expand unbounded ranges, just let the caller do it
2833 {
2834 *first_unparsed = expression_cstr+2;
Enrico Granata86cc9822012-03-19 22:58:49 +00002835 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonArrayRangeOperatorMet;
2836 *final_result = ValueObject::eExpressionPathEndResultTypeUnboundedRange;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002837 return root;
2838 }
2839 }
2840 const char *separator_position = ::strchr(expression_cstr+1,'-');
2841 const char *close_bracket_position = ::strchr(expression_cstr+1,']');
2842 if (!close_bracket_position) // if there is no ], this is a syntax error
2843 {
2844 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002845 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonUnexpectedSymbol;
2846 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002847 return ValueObjectSP();
2848 }
2849 if (!separator_position || separator_position > close_bracket_position) // if no separator, this is either [] or [N]
2850 {
2851 char *end = NULL;
2852 unsigned long index = ::strtoul (expression_cstr+1, &end, 0);
2853 if (!end || end != close_bracket_position) // if something weird is in our way return an error
2854 {
2855 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002856 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonUnexpectedSymbol;
2857 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002858 return ValueObjectSP();
2859 }
2860 if (end - expression_cstr == 1) // if this is [], only return a valid value for arrays
2861 {
Greg Clayton57ee3062013-07-11 22:46:58 +00002862 if (root_clang_type_info.Test(ClangASTType::eTypeIsArray))
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002863 {
2864 *first_unparsed = expression_cstr+2;
Enrico Granata86cc9822012-03-19 22:58:49 +00002865 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonArrayRangeOperatorMet;
2866 *final_result = ValueObject::eExpressionPathEndResultTypeUnboundedRange;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002867 return root;
2868 }
2869 else
2870 {
2871 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002872 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonEmptyRangeNotAllowed;
2873 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002874 return ValueObjectSP();
2875 }
2876 }
2877 // from here on we do have a valid index
Greg Clayton57ee3062013-07-11 22:46:58 +00002878 if (root_clang_type_info.Test(ClangASTType::eTypeIsArray))
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002879 {
Greg Claytondaf515f2011-07-09 20:12:33 +00002880 ValueObjectSP child_valobj_sp = root->GetChildAtIndex(index, true);
2881 if (!child_valobj_sp)
2882 child_valobj_sp = root->GetSyntheticArrayMemberFromArray(index, true);
Enrico Granata27b625e2011-08-09 01:04:56 +00002883 if (!child_valobj_sp)
Enrico Granata86cc9822012-03-19 22:58:49 +00002884 if (root->HasSyntheticValue() && root->GetSyntheticValue()->GetNumChildren() > index)
2885 child_valobj_sp = root->GetSyntheticValue()->GetChildAtIndex(index, true);
Greg Claytondaf515f2011-07-09 20:12:33 +00002886 if (child_valobj_sp)
2887 {
2888 root = child_valobj_sp;
2889 *first_unparsed = end+1; // skip ]
Enrico Granata86cc9822012-03-19 22:58:49 +00002890 *final_result = ValueObject::eExpressionPathEndResultTypePlain;
Greg Claytondaf515f2011-07-09 20:12:33 +00002891 continue;
2892 }
2893 else
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002894 {
2895 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002896 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
2897 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002898 return ValueObjectSP();
2899 }
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002900 }
Greg Clayton57ee3062013-07-11 22:46:58 +00002901 else if (root_clang_type_info.Test(ClangASTType::eTypeIsPointer))
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002902 {
Enrico Granata86cc9822012-03-19 22:58:49 +00002903 if (*what_next == ValueObject::eExpressionPathAftermathDereference && // if this is a ptr-to-scalar, I am accessing it by index and I would have deref'ed anyway, then do it now and use this as a bitfield
Greg Clayton57ee3062013-07-11 22:46:58 +00002904 pointee_clang_type_info.Test(ClangASTType::eTypeIsScalar))
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002905 {
2906 Error error;
2907 root = root->Dereference(error);
2908 if (error.Fail() || !root.get())
2909 {
2910 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002911 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonDereferencingFailed;
2912 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002913 return ValueObjectSP();
2914 }
2915 else
2916 {
Enrico Granata86cc9822012-03-19 22:58:49 +00002917 *what_next = eExpressionPathAftermathNothing;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002918 continue;
2919 }
2920 }
2921 else
2922 {
Greg Clayton57ee3062013-07-11 22:46:58 +00002923 if (root->GetClangType().GetMinimumLanguage() == eLanguageTypeObjC
2924 && pointee_clang_type_info.AllClear(ClangASTType::eTypeIsPointer)
Greg Clayton84db9102012-03-26 23:03:23 +00002925 && root->HasSyntheticValue()
2926 && options.m_no_synthetic_children == false)
Enrico Granata27b625e2011-08-09 01:04:56 +00002927 {
Enrico Granata86cc9822012-03-19 22:58:49 +00002928 root = root->GetSyntheticValue()->GetChildAtIndex(index, true);
Enrico Granata27b625e2011-08-09 01:04:56 +00002929 }
2930 else
2931 root = root->GetSyntheticArrayMemberFromPointer(index, true);
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002932 if (!root.get())
2933 {
2934 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002935 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
2936 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002937 return ValueObjectSP();
2938 }
2939 else
2940 {
2941 *first_unparsed = end+1; // skip ]
Enrico Granata86cc9822012-03-19 22:58:49 +00002942 *final_result = ValueObject::eExpressionPathEndResultTypePlain;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002943 continue;
2944 }
2945 }
2946 }
Greg Clayton57ee3062013-07-11 22:46:58 +00002947 else if (root_clang_type_info.Test(ClangASTType::eTypeIsScalar))
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002948 {
2949 root = root->GetSyntheticBitFieldChild(index, index, true);
2950 if (!root.get())
2951 {
2952 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002953 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
2954 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002955 return ValueObjectSP();
2956 }
2957 else // we do not know how to expand members of bitfields, so we just return and let the caller do any further processing
2958 {
2959 *first_unparsed = end+1; // skip ]
Enrico Granata86cc9822012-03-19 22:58:49 +00002960 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonBitfieldRangeOperatorMet;
2961 *final_result = ValueObject::eExpressionPathEndResultTypeBitfield;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002962 return root;
2963 }
2964 }
Greg Clayton57ee3062013-07-11 22:46:58 +00002965 else if (root_clang_type_info.Test(ClangASTType::eTypeIsVector))
Enrico Granata08a1bb82013-06-19 00:00:45 +00002966 {
2967 root = root->GetChildAtIndex(index, true);
2968 if (!root.get())
2969 {
2970 *first_unparsed = expression_cstr;
2971 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
2972 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
2973 return ValueObjectSP();
2974 }
2975 else
2976 {
2977 *first_unparsed = end+1; // skip ]
2978 *final_result = ValueObject::eExpressionPathEndResultTypePlain;
2979 continue;
2980 }
2981 }
Enrico Granata86cc9822012-03-19 22:58:49 +00002982 else if (options.m_no_synthetic_children == false)
Enrico Granata27b625e2011-08-09 01:04:56 +00002983 {
Enrico Granata86cc9822012-03-19 22:58:49 +00002984 if (root->HasSyntheticValue())
2985 root = root->GetSyntheticValue();
2986 else if (!root->IsSynthetic())
2987 {
2988 *first_unparsed = expression_cstr;
2989 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonSyntheticValueMissing;
2990 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
2991 return ValueObjectSP();
2992 }
2993 // if we are here, then root itself is a synthetic VO.. should be good to go
2994
Enrico Granata27b625e2011-08-09 01:04:56 +00002995 if (!root.get())
2996 {
2997 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002998 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonSyntheticValueMissing;
2999 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
3000 return ValueObjectSP();
3001 }
3002 root = root->GetChildAtIndex(index, true);
3003 if (!root.get())
3004 {
3005 *first_unparsed = expression_cstr;
3006 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
3007 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granata27b625e2011-08-09 01:04:56 +00003008 return ValueObjectSP();
3009 }
Enrico Granata8c9d3562011-08-11 17:08:01 +00003010 else
3011 {
3012 *first_unparsed = end+1; // skip ]
Enrico Granata86cc9822012-03-19 22:58:49 +00003013 *final_result = ValueObject::eExpressionPathEndResultTypePlain;
Enrico Granata8c9d3562011-08-11 17:08:01 +00003014 continue;
3015 }
Enrico Granata27b625e2011-08-09 01:04:56 +00003016 }
3017 else
3018 {
3019 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003020 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
3021 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granata27b625e2011-08-09 01:04:56 +00003022 return ValueObjectSP();
3023 }
Enrico Granatafc7a7f32011-07-08 02:51:01 +00003024 }
3025 else // we have a low and a high index
3026 {
3027 char *end = NULL;
3028 unsigned long index_lower = ::strtoul (expression_cstr+1, &end, 0);
3029 if (!end || end != separator_position) // if something weird is in our way return an error
3030 {
3031 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003032 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonUnexpectedSymbol;
3033 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00003034 return ValueObjectSP();
3035 }
3036 unsigned long index_higher = ::strtoul (separator_position+1, &end, 0);
3037 if (!end || end != close_bracket_position) // if something weird is in our way return an error
3038 {
3039 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003040 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonUnexpectedSymbol;
3041 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00003042 return ValueObjectSP();
3043 }
3044 if (index_lower > index_higher) // swap indices if required
3045 {
3046 unsigned long temp = index_lower;
3047 index_lower = index_higher;
3048 index_higher = temp;
3049 }
Greg Clayton57ee3062013-07-11 22:46:58 +00003050 if (root_clang_type_info.Test(ClangASTType::eTypeIsScalar)) // expansion only works for scalars
Enrico Granatafc7a7f32011-07-08 02:51:01 +00003051 {
3052 root = root->GetSyntheticBitFieldChild(index_lower, index_higher, true);
3053 if (!root.get())
3054 {
3055 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003056 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
3057 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00003058 return ValueObjectSP();
3059 }
3060 else
3061 {
3062 *first_unparsed = end+1; // skip ]
Enrico Granata86cc9822012-03-19 22:58:49 +00003063 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonBitfieldRangeOperatorMet;
3064 *final_result = ValueObject::eExpressionPathEndResultTypeBitfield;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00003065 return root;
3066 }
3067 }
Greg Clayton57ee3062013-07-11 22:46:58 +00003068 else if (root_clang_type_info.Test(ClangASTType::eTypeIsPointer) && // if this is a ptr-to-scalar, I am accessing it by index and I would have deref'ed anyway, then do it now and use this as a bitfield
Enrico Granata86cc9822012-03-19 22:58:49 +00003069 *what_next == ValueObject::eExpressionPathAftermathDereference &&
Greg Clayton57ee3062013-07-11 22:46:58 +00003070 pointee_clang_type_info.Test(ClangASTType::eTypeIsScalar))
Enrico Granatafc7a7f32011-07-08 02:51:01 +00003071 {
3072 Error error;
3073 root = root->Dereference(error);
3074 if (error.Fail() || !root.get())
3075 {
3076 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003077 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonDereferencingFailed;
3078 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00003079 return ValueObjectSP();
3080 }
3081 else
3082 {
Enrico Granata86cc9822012-03-19 22:58:49 +00003083 *what_next = ValueObject::eExpressionPathAftermathNothing;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00003084 continue;
3085 }
3086 }
3087 else
3088 {
3089 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003090 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonArrayRangeOperatorMet;
3091 *final_result = ValueObject::eExpressionPathEndResultTypeBoundedRange;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00003092 return root;
3093 }
3094 }
3095 break;
3096 }
3097 default: // some non-separator is in the way
3098 {
3099 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003100 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonUnexpectedSymbol;
3101 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00003102 return ValueObjectSP();
3103 break;
3104 }
3105 }
3106 }
3107}
3108
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003109int
3110ValueObject::ExpandArraySliceExpression(const char* expression_cstr,
3111 const char** first_unparsed,
Greg Claytonafacd142011-09-02 01:15:17 +00003112 ValueObjectSP root,
3113 ValueObjectListSP& list,
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003114 ExpressionPathScanEndReason* reason_to_stop,
3115 ExpressionPathEndResultType* final_result,
3116 const GetValueForExpressionPathOptions& options,
3117 ExpressionPathAftermath* what_next)
3118{
3119 if (!root.get())
3120 return 0;
3121
3122 *first_unparsed = expression_cstr;
3123
3124 while (true)
3125 {
3126
3127 const char* expression_cstr = *first_unparsed; // hide the top level expression_cstr
3128
Greg Clayton57ee3062013-07-11 22:46:58 +00003129 ClangASTType root_clang_type = root->GetClangType();
3130 ClangASTType pointee_clang_type;
3131 Flags pointee_clang_type_info;
3132 Flags root_clang_type_info(root_clang_type.GetTypeInfo(&pointee_clang_type));
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003133 if (pointee_clang_type)
Greg Clayton57ee3062013-07-11 22:46:58 +00003134 pointee_clang_type_info.Reset(pointee_clang_type.GetTypeInfo());
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003135
3136 if (!expression_cstr || *expression_cstr == '\0')
3137 {
Enrico Granata86cc9822012-03-19 22:58:49 +00003138 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonEndOfString;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003139 list->Append(root);
3140 return 1;
3141 }
3142
3143 switch (*expression_cstr)
3144 {
3145 case '[':
3146 {
Greg Clayton57ee3062013-07-11 22:46:58 +00003147 if (!root_clang_type_info.Test(ClangASTType::eTypeIsArray) && !root_clang_type_info.Test(ClangASTType::eTypeIsPointer)) // if this is not a T[] nor a T*
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003148 {
Greg Clayton57ee3062013-07-11 22:46:58 +00003149 if (!root_clang_type_info.Test(ClangASTType::eTypeIsScalar)) // if this is not even a scalar, this syntax is just plain wrong!
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003150 {
3151 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003152 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonRangeOperatorInvalid;
3153 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003154 return 0;
3155 }
3156 else if (!options.m_allow_bitfields_syntax) // if this is a scalar, check that we can expand bitfields
3157 {
3158 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003159 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonRangeOperatorNotAllowed;
3160 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003161 return 0;
3162 }
3163 }
3164 if (*(expression_cstr+1) == ']') // if this is an unbounded range it only works for arrays
3165 {
Greg Clayton57ee3062013-07-11 22:46:58 +00003166 if (!root_clang_type_info.Test(ClangASTType::eTypeIsArray))
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003167 {
3168 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003169 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonEmptyRangeNotAllowed;
3170 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003171 return 0;
3172 }
3173 else // expand this into list
3174 {
Greg Claytonc7bece562013-01-25 18:06:21 +00003175 const size_t max_index = root->GetNumChildren() - 1;
3176 for (size_t index = 0; index < max_index; index++)
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003177 {
3178 ValueObjectSP child =
3179 root->GetChildAtIndex(index, true);
3180 list->Append(child);
3181 }
3182 *first_unparsed = expression_cstr+2;
Enrico Granata86cc9822012-03-19 22:58:49 +00003183 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonRangeOperatorExpanded;
3184 *final_result = ValueObject::eExpressionPathEndResultTypeValueObjectList;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003185 return max_index; // tell me number of items I added to the VOList
3186 }
3187 }
3188 const char *separator_position = ::strchr(expression_cstr+1,'-');
3189 const char *close_bracket_position = ::strchr(expression_cstr+1,']');
3190 if (!close_bracket_position) // if there is no ], this is a syntax error
3191 {
3192 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003193 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonUnexpectedSymbol;
3194 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003195 return 0;
3196 }
3197 if (!separator_position || separator_position > close_bracket_position) // if no separator, this is either [] or [N]
3198 {
3199 char *end = NULL;
3200 unsigned long index = ::strtoul (expression_cstr+1, &end, 0);
3201 if (!end || end != close_bracket_position) // if something weird is in our way return an error
3202 {
3203 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003204 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonUnexpectedSymbol;
3205 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003206 return 0;
3207 }
3208 if (end - expression_cstr == 1) // if this is [], only return a valid value for arrays
3209 {
Greg Clayton57ee3062013-07-11 22:46:58 +00003210 if (root_clang_type_info.Test(ClangASTType::eTypeIsArray))
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003211 {
Greg Claytonc7bece562013-01-25 18:06:21 +00003212 const size_t max_index = root->GetNumChildren() - 1;
3213 for (size_t index = 0; index < max_index; index++)
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003214 {
3215 ValueObjectSP child =
3216 root->GetChildAtIndex(index, true);
3217 list->Append(child);
3218 }
3219 *first_unparsed = expression_cstr+2;
Enrico Granata86cc9822012-03-19 22:58:49 +00003220 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonRangeOperatorExpanded;
3221 *final_result = ValueObject::eExpressionPathEndResultTypeValueObjectList;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003222 return max_index; // tell me number of items I added to the VOList
3223 }
3224 else
3225 {
3226 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003227 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonEmptyRangeNotAllowed;
3228 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003229 return 0;
3230 }
3231 }
3232 // from here on we do have a valid index
Greg Clayton57ee3062013-07-11 22:46:58 +00003233 if (root_clang_type_info.Test(ClangASTType::eTypeIsArray))
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003234 {
3235 root = root->GetChildAtIndex(index, true);
3236 if (!root.get())
3237 {
3238 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003239 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
3240 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003241 return 0;
3242 }
3243 else
3244 {
3245 list->Append(root);
3246 *first_unparsed = end+1; // skip ]
Enrico Granata86cc9822012-03-19 22:58:49 +00003247 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonRangeOperatorExpanded;
3248 *final_result = ValueObject::eExpressionPathEndResultTypeValueObjectList;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003249 return 1;
3250 }
3251 }
Greg Clayton57ee3062013-07-11 22:46:58 +00003252 else if (root_clang_type_info.Test(ClangASTType::eTypeIsPointer))
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003253 {
Enrico Granata86cc9822012-03-19 22:58:49 +00003254 if (*what_next == ValueObject::eExpressionPathAftermathDereference && // if this is a ptr-to-scalar, I am accessing it by index and I would have deref'ed anyway, then do it now and use this as a bitfield
Greg Clayton57ee3062013-07-11 22:46:58 +00003255 pointee_clang_type_info.Test(ClangASTType::eTypeIsScalar))
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003256 {
3257 Error error;
3258 root = root->Dereference(error);
3259 if (error.Fail() || !root.get())
3260 {
3261 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003262 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonDereferencingFailed;
3263 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003264 return 0;
3265 }
3266 else
3267 {
Enrico Granata86cc9822012-03-19 22:58:49 +00003268 *what_next = eExpressionPathAftermathNothing;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003269 continue;
3270 }
3271 }
3272 else
3273 {
3274 root = root->GetSyntheticArrayMemberFromPointer(index, true);
3275 if (!root.get())
3276 {
3277 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003278 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
3279 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003280 return 0;
3281 }
3282 else
3283 {
3284 list->Append(root);
3285 *first_unparsed = end+1; // skip ]
Enrico Granata86cc9822012-03-19 22:58:49 +00003286 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonRangeOperatorExpanded;
3287 *final_result = ValueObject::eExpressionPathEndResultTypeValueObjectList;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003288 return 1;
3289 }
3290 }
3291 }
3292 else /*if (ClangASTContext::IsScalarType(root_clang_type))*/
3293 {
3294 root = root->GetSyntheticBitFieldChild(index, index, true);
3295 if (!root.get())
3296 {
3297 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003298 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
3299 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003300 return 0;
3301 }
3302 else // we do not know how to expand members of bitfields, so we just return and let the caller do any further processing
3303 {
3304 list->Append(root);
3305 *first_unparsed = end+1; // skip ]
Enrico Granata86cc9822012-03-19 22:58:49 +00003306 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonRangeOperatorExpanded;
3307 *final_result = ValueObject::eExpressionPathEndResultTypeValueObjectList;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003308 return 1;
3309 }
3310 }
3311 }
3312 else // we have a low and a high index
3313 {
3314 char *end = NULL;
3315 unsigned long index_lower = ::strtoul (expression_cstr+1, &end, 0);
3316 if (!end || end != separator_position) // if something weird is in our way return an error
3317 {
3318 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003319 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonUnexpectedSymbol;
3320 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003321 return 0;
3322 }
3323 unsigned long index_higher = ::strtoul (separator_position+1, &end, 0);
3324 if (!end || end != close_bracket_position) // if something weird is in our way return an error
3325 {
3326 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003327 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonUnexpectedSymbol;
3328 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003329 return 0;
3330 }
3331 if (index_lower > index_higher) // swap indices if required
3332 {
3333 unsigned long temp = index_lower;
3334 index_lower = index_higher;
3335 index_higher = temp;
3336 }
Greg Clayton57ee3062013-07-11 22:46:58 +00003337 if (root_clang_type_info.Test(ClangASTType::eTypeIsScalar)) // expansion only works for scalars
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003338 {
3339 root = root->GetSyntheticBitFieldChild(index_lower, index_higher, true);
3340 if (!root.get())
3341 {
3342 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003343 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
3344 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003345 return 0;
3346 }
3347 else
3348 {
3349 list->Append(root);
3350 *first_unparsed = end+1; // skip ]
Enrico Granata86cc9822012-03-19 22:58:49 +00003351 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonRangeOperatorExpanded;
3352 *final_result = ValueObject::eExpressionPathEndResultTypeValueObjectList;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003353 return 1;
3354 }
3355 }
Greg Clayton57ee3062013-07-11 22:46:58 +00003356 else if (root_clang_type_info.Test(ClangASTType::eTypeIsPointer) && // if this is a ptr-to-scalar, I am accessing it by index and I would have deref'ed anyway, then do it now and use this as a bitfield
Enrico Granata86cc9822012-03-19 22:58:49 +00003357 *what_next == ValueObject::eExpressionPathAftermathDereference &&
Greg Clayton57ee3062013-07-11 22:46:58 +00003358 pointee_clang_type_info.Test(ClangASTType::eTypeIsScalar))
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003359 {
3360 Error error;
3361 root = root->Dereference(error);
3362 if (error.Fail() || !root.get())
3363 {
3364 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003365 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonDereferencingFailed;
3366 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003367 return 0;
3368 }
3369 else
3370 {
Enrico Granata86cc9822012-03-19 22:58:49 +00003371 *what_next = ValueObject::eExpressionPathAftermathNothing;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003372 continue;
3373 }
3374 }
3375 else
3376 {
Johnny Chen44805302011-07-19 19:48:13 +00003377 for (unsigned long index = index_lower;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003378 index <= index_higher; index++)
3379 {
3380 ValueObjectSP child =
3381 root->GetChildAtIndex(index, true);
3382 list->Append(child);
3383 }
3384 *first_unparsed = end+1;
Enrico Granata86cc9822012-03-19 22:58:49 +00003385 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonRangeOperatorExpanded;
3386 *final_result = ValueObject::eExpressionPathEndResultTypeValueObjectList;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003387 return index_higher-index_lower+1; // tell me number of items I added to the VOList
3388 }
3389 }
3390 break;
3391 }
3392 default: // some non-[ separator, or something entirely wrong, is in the way
3393 {
3394 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003395 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonUnexpectedSymbol;
3396 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003397 return 0;
3398 break;
3399 }
3400 }
3401 }
3402}
3403
Enrico Granata4d93b8c2013-09-30 19:11:51 +00003404void
3405ValueObject::LogValueObject (Log *log)
Greg Clayton1d3afba2010-10-05 00:00:42 +00003406{
Enrico Granata4d93b8c2013-09-30 19:11:51 +00003407 if (log)
3408 return LogValueObject (log, DumpValueObjectOptions::DefaultOptions());
Greg Clayton1d3afba2010-10-05 00:00:42 +00003409}
3410
Enrico Granata0c489f52012-03-01 04:24:26 +00003411void
Enrico Granata4d93b8c2013-09-30 19:11:51 +00003412ValueObject::LogValueObject (Log *log, const DumpValueObjectOptions& options)
Greg Claytonf830dbb2012-03-22 18:15:37 +00003413{
Enrico Granata4d93b8c2013-09-30 19:11:51 +00003414 if (log)
Greg Claytonf830dbb2012-03-22 18:15:37 +00003415 {
3416 StreamString s;
Enrico Granata4d93b8c2013-09-30 19:11:51 +00003417 Dump (s, options);
Greg Claytonf830dbb2012-03-22 18:15:37 +00003418 if (s.GetSize())
3419 log->PutCString(s.GetData());
3420 }
3421}
3422
3423void
Enrico Granata4d93b8c2013-09-30 19:11:51 +00003424ValueObject::Dump (Stream &s)
Enrico Granata0c489f52012-03-01 04:24:26 +00003425{
3426
Enrico Granata4d93b8c2013-09-30 19:11:51 +00003427 ValueObjectPrinter printer(this,&s,DumpValueObjectOptions::DefaultOptions());
3428 printer.PrintValueObject();
Enrico Granata0c489f52012-03-01 04:24:26 +00003429}
3430
3431void
Enrico Granata4d93b8c2013-09-30 19:11:51 +00003432ValueObject::Dump (Stream &s,
3433 const DumpValueObjectOptions& options)
Enrico Granata0c489f52012-03-01 04:24:26 +00003434{
Enrico Granata4d93b8c2013-09-30 19:11:51 +00003435 ValueObjectPrinter printer(this,&s,options);
3436 printer.PrintValueObject();
Enrico Granata0c489f52012-03-01 04:24:26 +00003437}
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003438
3439ValueObjectSP
Jim Ingham6035b672011-03-31 00:19:25 +00003440ValueObject::CreateConstantValue (const ConstString &name)
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003441{
3442 ValueObjectSP valobj_sp;
3443
Enrico Granatac3e320a2011-08-02 17:27:39 +00003444 if (UpdateValueIfNeeded(false) && m_error.Success())
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003445 {
Greg Claytoncc4d0142012-02-17 07:49:44 +00003446 ExecutionContext exe_ctx (GetExecutionContextRef());
Greg Claytoncc4d0142012-02-17 07:49:44 +00003447
3448 DataExtractor data;
3449 data.SetByteOrder (m_data.GetByteOrder());
3450 data.SetAddressByteSize(m_data.GetAddressByteSize());
3451
Enrico Granata9f1e2042012-04-24 22:15:37 +00003452 if (IsBitfield())
3453 {
3454 Value v(Scalar(GetValueAsUnsigned(UINT64_MAX)));
Greg Clayton57ee3062013-07-11 22:46:58 +00003455 m_error = v.GetValueAsData (&exe_ctx, data, 0, GetModule().get());
Enrico Granata9f1e2042012-04-24 22:15:37 +00003456 }
3457 else
Greg Clayton57ee3062013-07-11 22:46:58 +00003458 m_error = m_value.GetValueAsData (&exe_ctx, data, 0, GetModule().get());
Greg Claytoncc4d0142012-02-17 07:49:44 +00003459
3460 valobj_sp = ValueObjectConstResult::Create (exe_ctx.GetBestExecutionContextScope(),
Greg Claytoncc4d0142012-02-17 07:49:44 +00003461 GetClangType(),
3462 name,
3463 data,
3464 GetAddressOf());
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003465 }
Jim Ingham6035b672011-03-31 00:19:25 +00003466
3467 if (!valobj_sp)
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003468 {
Greg Claytoneeb15652013-12-10 23:16:40 +00003469 ExecutionContext exe_ctx (GetExecutionContextRef());
3470 valobj_sp = ValueObjectConstResult::Create (exe_ctx.GetBestExecutionContextScope(), m_error);
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003471 }
3472 return valobj_sp;
3473}
3474
Greg Claytonafacd142011-09-02 01:15:17 +00003475ValueObjectSP
Greg Claytonaf67cec2010-12-20 20:49:23 +00003476ValueObject::Dereference (Error &error)
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003477{
Jim Ingham58b59f92011-04-22 23:53:53 +00003478 if (m_deref_valobj)
3479 return m_deref_valobj->GetSP();
Jim Ingham78a685a2011-04-16 00:01:13 +00003480
Greg Clayton54979cd2010-12-15 05:08:08 +00003481 const bool is_pointer_type = IsPointerType();
3482 if (is_pointer_type)
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003483 {
3484 bool omit_empty_base_classes = true;
Greg Claytondaf515f2011-07-09 20:12:33 +00003485 bool ignore_array_bounds = false;
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003486
3487 std::string child_name_str;
3488 uint32_t child_byte_size = 0;
3489 int32_t child_byte_offset = 0;
3490 uint32_t child_bitfield_bit_size = 0;
3491 uint32_t child_bitfield_bit_offset = 0;
3492 bool child_is_base_class = false;
Greg Claytone221f822011-01-21 01:59:00 +00003493 bool child_is_deref_of_parent = false;
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003494 const bool transparent_pointers = false;
Greg Clayton57ee3062013-07-11 22:46:58 +00003495 ClangASTType clang_type = GetClangType();
3496 ClangASTType child_clang_type;
Jim Inghamd555bac2011-06-24 22:03:24 +00003497
Greg Claytoncc4d0142012-02-17 07:49:44 +00003498 ExecutionContext exe_ctx (GetExecutionContextRef());
Jim Inghamd555bac2011-06-24 22:03:24 +00003499
Greg Clayton57ee3062013-07-11 22:46:58 +00003500 child_clang_type = clang_type.GetChildClangTypeAtIndex (&exe_ctx,
3501 GetName().GetCString(),
3502 0,
3503 transparent_pointers,
3504 omit_empty_base_classes,
3505 ignore_array_bounds,
3506 child_name_str,
3507 child_byte_size,
3508 child_byte_offset,
3509 child_bitfield_bit_size,
3510 child_bitfield_bit_offset,
3511 child_is_base_class,
3512 child_is_deref_of_parent);
Greg Clayton3e06bd92011-01-09 21:07:35 +00003513 if (child_clang_type && child_byte_size)
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003514 {
3515 ConstString child_name;
3516 if (!child_name_str.empty())
3517 child_name.SetCString (child_name_str.c_str());
3518
Jim Ingham58b59f92011-04-22 23:53:53 +00003519 m_deref_valobj = new ValueObjectChild (*this,
Jim Ingham58b59f92011-04-22 23:53:53 +00003520 child_clang_type,
3521 child_name,
3522 child_byte_size,
3523 child_byte_offset,
3524 child_bitfield_bit_size,
3525 child_bitfield_bit_offset,
3526 child_is_base_class,
Enrico Granata9128ee22011-09-06 19:20:51 +00003527 child_is_deref_of_parent,
3528 eAddressTypeInvalid);
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003529 }
3530 }
Greg Clayton54979cd2010-12-15 05:08:08 +00003531
Jim Ingham58b59f92011-04-22 23:53:53 +00003532 if (m_deref_valobj)
Greg Clayton54979cd2010-12-15 05:08:08 +00003533 {
3534 error.Clear();
Jim Ingham58b59f92011-04-22 23:53:53 +00003535 return m_deref_valobj->GetSP();
Greg Clayton54979cd2010-12-15 05:08:08 +00003536 }
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003537 else
3538 {
Greg Clayton54979cd2010-12-15 05:08:08 +00003539 StreamString strm;
Greg Clayton6beaaa62011-01-17 03:46:26 +00003540 GetExpressionPath(strm, true);
Greg Clayton54979cd2010-12-15 05:08:08 +00003541
3542 if (is_pointer_type)
3543 error.SetErrorStringWithFormat("dereference failed: (%s) %s", GetTypeName().AsCString("<invalid type>"), strm.GetString().c_str());
3544 else
3545 error.SetErrorStringWithFormat("not a pointer type: (%s) %s", GetTypeName().AsCString("<invalid type>"), strm.GetString().c_str());
Jim Ingham58b59f92011-04-22 23:53:53 +00003546 return ValueObjectSP();
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003547 }
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003548}
3549
Greg Claytonafacd142011-09-02 01:15:17 +00003550ValueObjectSP
Greg Clayton54979cd2010-12-15 05:08:08 +00003551ValueObject::AddressOf (Error &error)
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003552{
Jim Ingham78a685a2011-04-16 00:01:13 +00003553 if (m_addr_of_valobj_sp)
3554 return m_addr_of_valobj_sp;
3555
Greg Claytone0d378b2011-03-24 21:19:54 +00003556 AddressType address_type = eAddressTypeInvalid;
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003557 const bool scalar_is_load_address = false;
Enrico Granata9128ee22011-09-06 19:20:51 +00003558 addr_t addr = GetAddressOf (scalar_is_load_address, &address_type);
Greg Clayton54979cd2010-12-15 05:08:08 +00003559 error.Clear();
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003560 if (addr != LLDB_INVALID_ADDRESS)
3561 {
3562 switch (address_type)
3563 {
3564 case eAddressTypeInvalid:
Greg Clayton54979cd2010-12-15 05:08:08 +00003565 {
3566 StreamString expr_path_strm;
Greg Clayton6beaaa62011-01-17 03:46:26 +00003567 GetExpressionPath(expr_path_strm, true);
Greg Clayton54979cd2010-12-15 05:08:08 +00003568 error.SetErrorStringWithFormat("'%s' is not in memory", expr_path_strm.GetString().c_str());
3569 }
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003570 break;
Greg Clayton54979cd2010-12-15 05:08:08 +00003571
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003572 case eAddressTypeFile:
3573 case eAddressTypeLoad:
3574 case eAddressTypeHost:
3575 {
Greg Clayton57ee3062013-07-11 22:46:58 +00003576 ClangASTType clang_type = GetClangType();
3577 if (clang_type)
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003578 {
3579 std::string name (1, '&');
3580 name.append (m_name.AsCString(""));
Greg Claytoncc4d0142012-02-17 07:49:44 +00003581 ExecutionContext exe_ctx (GetExecutionContextRef());
3582 m_addr_of_valobj_sp = ValueObjectConstResult::Create (exe_ctx.GetBestExecutionContextScope(),
Greg Clayton57ee3062013-07-11 22:46:58 +00003583 clang_type.GetPointerType(),
Jim Ingham58b59f92011-04-22 23:53:53 +00003584 ConstString (name.c_str()),
3585 addr,
3586 eAddressTypeInvalid,
3587 m_data.GetAddressByteSize());
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003588 }
3589 }
3590 break;
3591 }
3592 }
Sean Callananed185ab2013-04-19 19:47:32 +00003593 else
3594 {
3595 StreamString expr_path_strm;
3596 GetExpressionPath(expr_path_strm, true);
3597 error.SetErrorStringWithFormat("'%s' doesn't have a valid address", expr_path_strm.GetString().c_str());
3598 }
3599
Jim Ingham78a685a2011-04-16 00:01:13 +00003600 return m_addr_of_valobj_sp;
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003601}
3602
Greg Clayton9a142cf2012-02-03 05:34:10 +00003603ValueObjectSP
3604ValueObject::Cast (const ClangASTType &clang_ast_type)
3605{
Greg Clayton81e871e2012-02-04 02:27:34 +00003606 return ValueObjectCast::Create (*this, GetName(), clang_ast_type);
Greg Clayton9a142cf2012-02-03 05:34:10 +00003607}
Greg Claytonb2dcc362011-05-05 23:32:56 +00003608
Greg Claytonafacd142011-09-02 01:15:17 +00003609ValueObjectSP
Greg Claytonb2dcc362011-05-05 23:32:56 +00003610ValueObject::CastPointerType (const char *name, ClangASTType &clang_ast_type)
3611{
Greg Claytonafacd142011-09-02 01:15:17 +00003612 ValueObjectSP valobj_sp;
Greg Claytonb2dcc362011-05-05 23:32:56 +00003613 AddressType address_type;
Enrico Granata9128ee22011-09-06 19:20:51 +00003614 addr_t ptr_value = GetPointerValue (&address_type);
Greg Claytonb2dcc362011-05-05 23:32:56 +00003615
3616 if (ptr_value != LLDB_INVALID_ADDRESS)
3617 {
Greg Claytone72dfb32012-02-24 01:59:29 +00003618 Address ptr_addr (ptr_value);
Greg Claytoncc4d0142012-02-17 07:49:44 +00003619 ExecutionContext exe_ctx (GetExecutionContextRef());
3620 valobj_sp = ValueObjectMemory::Create (exe_ctx.GetBestExecutionContextScope(),
Greg Claytonb2dcc362011-05-05 23:32:56 +00003621 name,
3622 ptr_addr,
3623 clang_ast_type);
3624 }
3625 return valobj_sp;
3626}
3627
Greg Claytonafacd142011-09-02 01:15:17 +00003628ValueObjectSP
Greg Claytonb2dcc362011-05-05 23:32:56 +00003629ValueObject::CastPointerType (const char *name, TypeSP &type_sp)
3630{
Greg Claytonafacd142011-09-02 01:15:17 +00003631 ValueObjectSP valobj_sp;
Greg Claytonb2dcc362011-05-05 23:32:56 +00003632 AddressType address_type;
Enrico Granata9128ee22011-09-06 19:20:51 +00003633 addr_t ptr_value = GetPointerValue (&address_type);
Greg Claytonb2dcc362011-05-05 23:32:56 +00003634
3635 if (ptr_value != LLDB_INVALID_ADDRESS)
3636 {
Greg Claytone72dfb32012-02-24 01:59:29 +00003637 Address ptr_addr (ptr_value);
Greg Claytoncc4d0142012-02-17 07:49:44 +00003638 ExecutionContext exe_ctx (GetExecutionContextRef());
3639 valobj_sp = ValueObjectMemory::Create (exe_ctx.GetBestExecutionContextScope(),
Greg Claytonb2dcc362011-05-05 23:32:56 +00003640 name,
3641 ptr_addr,
3642 type_sp);
3643 }
3644 return valobj_sp;
3645}
3646
Jim Ingham6035b672011-03-31 00:19:25 +00003647ValueObject::EvaluationPoint::EvaluationPoint () :
Greg Claytoncc4d0142012-02-17 07:49:44 +00003648 m_mod_id(),
3649 m_exe_ctx_ref(),
3650 m_needs_update (true),
3651 m_first_update (true)
Jim Ingham6035b672011-03-31 00:19:25 +00003652{
3653}
3654
3655ValueObject::EvaluationPoint::EvaluationPoint (ExecutionContextScope *exe_scope, bool use_selected):
Greg Claytoncc4d0142012-02-17 07:49:44 +00003656 m_mod_id(),
3657 m_exe_ctx_ref(),
Jim Ingham6035b672011-03-31 00:19:25 +00003658 m_needs_update (true),
Greg Claytoncc4d0142012-02-17 07:49:44 +00003659 m_first_update (true)
Jim Ingham6035b672011-03-31 00:19:25 +00003660{
Greg Claytoncc4d0142012-02-17 07:49:44 +00003661 ExecutionContext exe_ctx(exe_scope);
3662 TargetSP target_sp (exe_ctx.GetTargetSP());
3663 if (target_sp)
Jim Ingham6035b672011-03-31 00:19:25 +00003664 {
Greg Claytoncc4d0142012-02-17 07:49:44 +00003665 m_exe_ctx_ref.SetTargetSP (target_sp);
3666 ProcessSP process_sp (exe_ctx.GetProcessSP());
3667 if (!process_sp)
3668 process_sp = target_sp->GetProcessSP();
Jim Ingham6035b672011-03-31 00:19:25 +00003669
Greg Claytoncc4d0142012-02-17 07:49:44 +00003670 if (process_sp)
Jim Ingham6035b672011-03-31 00:19:25 +00003671 {
Greg Claytoncc4d0142012-02-17 07:49:44 +00003672 m_mod_id = process_sp->GetModID();
3673 m_exe_ctx_ref.SetProcessSP (process_sp);
Jim Ingham4b536182011-08-09 02:12:22 +00003674
Greg Claytoncc4d0142012-02-17 07:49:44 +00003675 ThreadSP thread_sp (exe_ctx.GetThreadSP());
Jim Ingham6035b672011-03-31 00:19:25 +00003676
Greg Claytoncc4d0142012-02-17 07:49:44 +00003677 if (!thread_sp)
Jim Ingham6035b672011-03-31 00:19:25 +00003678 {
3679 if (use_selected)
Greg Claytoncc4d0142012-02-17 07:49:44 +00003680 thread_sp = process_sp->GetThreadList().GetSelectedThread();
Jim Ingham6035b672011-03-31 00:19:25 +00003681 }
Jim Ingham6035b672011-03-31 00:19:25 +00003682
Greg Claytoncc4d0142012-02-17 07:49:44 +00003683 if (thread_sp)
Jim Ingham6035b672011-03-31 00:19:25 +00003684 {
Greg Claytoncc4d0142012-02-17 07:49:44 +00003685 m_exe_ctx_ref.SetThreadSP(thread_sp);
Greg Claytonc14ee322011-09-22 04:58:26 +00003686
Jason Molendab57e4a12013-11-04 09:33:30 +00003687 StackFrameSP frame_sp (exe_ctx.GetFrameSP());
Greg Claytoncc4d0142012-02-17 07:49:44 +00003688 if (!frame_sp)
Jim Ingham6035b672011-03-31 00:19:25 +00003689 {
3690 if (use_selected)
Greg Claytoncc4d0142012-02-17 07:49:44 +00003691 frame_sp = thread_sp->GetSelectedFrame();
Jim Ingham6035b672011-03-31 00:19:25 +00003692 }
Greg Claytoncc4d0142012-02-17 07:49:44 +00003693 if (frame_sp)
3694 m_exe_ctx_ref.SetFrameSP(frame_sp);
Jim Ingham6035b672011-03-31 00:19:25 +00003695 }
3696 }
3697 }
Jim Ingham6035b672011-03-31 00:19:25 +00003698}
3699
3700ValueObject::EvaluationPoint::EvaluationPoint (const ValueObject::EvaluationPoint &rhs) :
Greg Claytoncc4d0142012-02-17 07:49:44 +00003701 m_mod_id(),
3702 m_exe_ctx_ref(rhs.m_exe_ctx_ref),
3703 m_needs_update (true),
3704 m_first_update (true)
Jim Ingham6035b672011-03-31 00:19:25 +00003705{
3706}
3707
3708ValueObject::EvaluationPoint::~EvaluationPoint ()
3709{
3710}
3711
Jim Ingham6035b672011-03-31 00:19:25 +00003712// This function checks the EvaluationPoint against the current process state. If the current
3713// state matches the evaluation point, or the evaluation point is already invalid, then we return
3714// false, meaning "no change". If the current state is different, we update our state, and return
3715// true meaning "yes, change". If we did see a change, we also set m_needs_update to true, so
3716// future calls to NeedsUpdate will return true.
Jim Ingham9ee01152011-12-10 01:49:43 +00003717// exe_scope will be set to the current execution context scope.
Jim Ingham6035b672011-03-31 00:19:25 +00003718
3719bool
Greg Claytoncc4d0142012-02-17 07:49:44 +00003720ValueObject::EvaluationPoint::SyncWithProcessState()
Jim Ingham6035b672011-03-31 00:19:25 +00003721{
Jim Ingham73ca05a2011-12-17 01:35:57 +00003722
3723 // Start with the target, if it is NULL, then we're obviously not going to get any further:
Greg Clayton44d93782014-01-27 23:43:24 +00003724 const bool thread_and_frame_only_if_stopped = true;
3725 ExecutionContext exe_ctx(m_exe_ctx_ref.Lock(thread_and_frame_only_if_stopped));
Jim Ingham73ca05a2011-12-17 01:35:57 +00003726
Greg Claytoncc4d0142012-02-17 07:49:44 +00003727 if (exe_ctx.GetTargetPtr() == NULL)
Jim Ingham73ca05a2011-12-17 01:35:57 +00003728 return false;
3729
Jim Ingham6035b672011-03-31 00:19:25 +00003730 // If we don't have a process nothing can change.
Greg Claytoncc4d0142012-02-17 07:49:44 +00003731 Process *process = exe_ctx.GetProcessPtr();
3732 if (process == NULL)
Jim Ingham6035b672011-03-31 00:19:25 +00003733 return false;
Jim Ingham73ca05a2011-12-17 01:35:57 +00003734
Jim Ingham6035b672011-03-31 00:19:25 +00003735 // If our stop id is the current stop ID, nothing has changed:
Greg Claytoncc4d0142012-02-17 07:49:44 +00003736 ProcessModID current_mod_id = process->GetModID();
Jim Ingham4b536182011-08-09 02:12:22 +00003737
Jim Ingham78a685a2011-04-16 00:01:13 +00003738 // If the current stop id is 0, either we haven't run yet, or the process state has been cleared.
3739 // In either case, we aren't going to be able to sync with the process state.
Jim Ingham4b536182011-08-09 02:12:22 +00003740 if (current_mod_id.GetStopID() == 0)
Jim Ingham78a685a2011-04-16 00:01:13 +00003741 return false;
Jim Ingham9ee01152011-12-10 01:49:43 +00003742
Greg Clayton23f59502012-07-17 03:23:13 +00003743 bool changed = false;
3744 const bool was_valid = m_mod_id.IsValid();
3745 if (was_valid)
Greg Clayton7e9b1fd2011-08-12 21:40:01 +00003746 {
3747 if (m_mod_id == current_mod_id)
3748 {
Jim Ingham5cfbe4a2012-01-12 22:42:34 +00003749 // Everything is already up to date in this object, no need to
Greg Clayton7e9b1fd2011-08-12 21:40:01 +00003750 // update the execution context scope.
Jim Ingham9ee01152011-12-10 01:49:43 +00003751 changed = false;
Greg Clayton7e9b1fd2011-08-12 21:40:01 +00003752 }
Jim Ingham9ee01152011-12-10 01:49:43 +00003753 else
3754 {
3755 m_mod_id = current_mod_id;
3756 m_needs_update = true;
3757 changed = true;
3758 }
Greg Clayton7e9b1fd2011-08-12 21:40:01 +00003759 }
Jim Ingham6035b672011-03-31 00:19:25 +00003760
Jim Ingham73ca05a2011-12-17 01:35:57 +00003761 // Now re-look up the thread and frame in case the underlying objects have gone away & been recreated.
3762 // That way we'll be sure to return a valid exe_scope.
3763 // If we used to have a thread or a frame but can't find it anymore, then mark ourselves as invalid.
Jim Ingham6035b672011-03-31 00:19:25 +00003764
Greg Claytoncc4d0142012-02-17 07:49:44 +00003765 if (m_exe_ctx_ref.HasThreadRef())
Jim Ingham6035b672011-03-31 00:19:25 +00003766 {
Greg Claytoncc4d0142012-02-17 07:49:44 +00003767 ThreadSP thread_sp (m_exe_ctx_ref.GetThreadSP());
3768 if (thread_sp)
Greg Clayton262f80d2011-07-06 16:49:27 +00003769 {
Greg Claytoncc4d0142012-02-17 07:49:44 +00003770 if (m_exe_ctx_ref.HasFrameRef())
3771 {
Jason Molendab57e4a12013-11-04 09:33:30 +00003772 StackFrameSP frame_sp (m_exe_ctx_ref.GetFrameSP());
Greg Claytoncc4d0142012-02-17 07:49:44 +00003773 if (!frame_sp)
3774 {
3775 // We used to have a frame, but now it is gone
3776 SetInvalid();
Greg Clayton23f59502012-07-17 03:23:13 +00003777 changed = was_valid;
Greg Claytoncc4d0142012-02-17 07:49:44 +00003778 }
3779 }
Greg Clayton262f80d2011-07-06 16:49:27 +00003780 }
Jim Ingham6035b672011-03-31 00:19:25 +00003781 else
3782 {
Greg Claytoncc4d0142012-02-17 07:49:44 +00003783 // We used to have a thread, but now it is gone
3784 SetInvalid();
Greg Clayton23f59502012-07-17 03:23:13 +00003785 changed = was_valid;
Jim Ingham6035b672011-03-31 00:19:25 +00003786 }
Greg Claytoncc4d0142012-02-17 07:49:44 +00003787
Jim Ingham6035b672011-03-31 00:19:25 +00003788 }
Jim Ingham9ee01152011-12-10 01:49:43 +00003789 return changed;
Jim Ingham6035b672011-03-31 00:19:25 +00003790}
3791
Jim Ingham61be0902011-05-02 18:13:59 +00003792void
3793ValueObject::EvaluationPoint::SetUpdated ()
3794{
Greg Claytoncc4d0142012-02-17 07:49:44 +00003795 ProcessSP process_sp(m_exe_ctx_ref.GetProcessSP());
3796 if (process_sp)
3797 m_mod_id = process_sp->GetModID();
Jim Ingham61be0902011-05-02 18:13:59 +00003798 m_first_update = false;
3799 m_needs_update = false;
Jim Ingham61be0902011-05-02 18:13:59 +00003800}
3801
3802
Enrico Granataf2bbf712011-07-15 02:26:42 +00003803
3804void
Enrico Granata86cc9822012-03-19 22:58:49 +00003805ValueObject::ClearUserVisibleData(uint32_t clear_mask)
Enrico Granataf2bbf712011-07-15 02:26:42 +00003806{
Enrico Granata86cc9822012-03-19 22:58:49 +00003807 if ((clear_mask & eClearUserVisibleDataItemsValue) == eClearUserVisibleDataItemsValue)
3808 m_value_str.clear();
3809
3810 if ((clear_mask & eClearUserVisibleDataItemsLocation) == eClearUserVisibleDataItemsLocation)
3811 m_location_str.clear();
3812
3813 if ((clear_mask & eClearUserVisibleDataItemsSummary) == eClearUserVisibleDataItemsSummary)
3814 {
Enrico Granata86cc9822012-03-19 22:58:49 +00003815 m_summary_str.clear();
3816 }
3817
3818 if ((clear_mask & eClearUserVisibleDataItemsDescription) == eClearUserVisibleDataItemsDescription)
3819 m_object_desc_str.clear();
3820
3821 if ((clear_mask & eClearUserVisibleDataItemsSyntheticChildren) == eClearUserVisibleDataItemsSyntheticChildren)
3822 {
3823 if (m_synthetic_value)
3824 m_synthetic_value = NULL;
3825 }
Johnny Chen44805302011-07-19 19:48:13 +00003826}
Enrico Granata9128ee22011-09-06 19:20:51 +00003827
3828SymbolContextScope *
3829ValueObject::GetSymbolContextScope()
3830{
3831 if (m_parent)
3832 {
3833 if (!m_parent->IsPointerOrReferenceType())
3834 return m_parent->GetSymbolContextScope();
3835 }
3836 return NULL;
3837}
Enrico Granatab2698cd2012-09-13 18:27:09 +00003838
3839lldb::ValueObjectSP
3840ValueObject::CreateValueObjectFromExpression (const char* name,
3841 const char* expression,
3842 const ExecutionContext& exe_ctx)
3843{
3844 lldb::ValueObjectSP retval_sp;
3845 lldb::TargetSP target_sp(exe_ctx.GetTargetSP());
3846 if (!target_sp)
3847 return retval_sp;
3848 if (!expression || !*expression)
3849 return retval_sp;
3850 target_sp->EvaluateExpression (expression,
3851 exe_ctx.GetFrameSP().get(),
3852 retval_sp);
3853 if (retval_sp && name && *name)
3854 retval_sp->SetName(ConstString(name));
3855 return retval_sp;
3856}
3857
3858lldb::ValueObjectSP
3859ValueObject::CreateValueObjectFromAddress (const char* name,
3860 uint64_t address,
3861 const ExecutionContext& exe_ctx,
3862 ClangASTType type)
3863{
Greg Clayton57ee3062013-07-11 22:46:58 +00003864 if (type)
Enrico Granatab2698cd2012-09-13 18:27:09 +00003865 {
Greg Clayton57ee3062013-07-11 22:46:58 +00003866 ClangASTType pointer_type(type.GetPointerType());
3867 if (pointer_type)
3868 {
3869 lldb::DataBufferSP buffer(new lldb_private::DataBufferHeap(&address,sizeof(lldb::addr_t)));
3870 lldb::ValueObjectSP ptr_result_valobj_sp(ValueObjectConstResult::Create (exe_ctx.GetBestExecutionContextScope(),
3871 pointer_type,
3872 ConstString(name),
3873 buffer,
3874 lldb::endian::InlHostByteOrder(),
3875 exe_ctx.GetAddressByteSize()));
3876 if (ptr_result_valobj_sp)
3877 {
3878 ptr_result_valobj_sp->GetValue().SetValueType(Value::eValueTypeLoadAddress);
3879 Error err;
3880 ptr_result_valobj_sp = ptr_result_valobj_sp->Dereference(err);
3881 if (ptr_result_valobj_sp && name && *name)
3882 ptr_result_valobj_sp->SetName(ConstString(name));
3883 }
3884 return ptr_result_valobj_sp;
3885 }
Enrico Granatab2698cd2012-09-13 18:27:09 +00003886 }
Greg Clayton57ee3062013-07-11 22:46:58 +00003887 return lldb::ValueObjectSP();
Enrico Granatab2698cd2012-09-13 18:27:09 +00003888}
3889
3890lldb::ValueObjectSP
3891ValueObject::CreateValueObjectFromData (const char* name,
3892 DataExtractor& data,
3893 const ExecutionContext& exe_ctx,
3894 ClangASTType type)
3895{
3896 lldb::ValueObjectSP new_value_sp;
3897 new_value_sp = ValueObjectConstResult::Create (exe_ctx.GetBestExecutionContextScope(),
Greg Clayton57ee3062013-07-11 22:46:58 +00003898 type,
Enrico Granatab2698cd2012-09-13 18:27:09 +00003899 ConstString(name),
3900 data,
3901 LLDB_INVALID_ADDRESS);
3902 new_value_sp->SetAddressTypeOfChildren(eAddressTypeLoad);
3903 if (new_value_sp && name && *name)
3904 new_value_sp->SetName(ConstString(name));
3905 return new_value_sp;
3906}
Enrico Granata4873e522013-04-11 22:48:58 +00003907
3908ModuleSP
3909ValueObject::GetModule ()
3910{
3911 ValueObject* root(GetRoot());
3912 if (root != this)
3913 return root->GetModule();
3914 return lldb::ModuleSP();
3915}
3916
3917ValueObject*
3918ValueObject::GetRoot ()
3919{
3920 if (m_root)
3921 return m_root;
3922 ValueObject* parent = m_parent;
3923 if (!parent)
3924 return (m_root = this);
3925 while (parent->m_parent)
3926 {
3927 if (parent->m_root)
3928 return (m_root = parent->m_root);
3929 parent = parent->m_parent;
3930 }
3931 return (m_root = parent);
3932}
3933
3934AddressType
3935ValueObject::GetAddressTypeOfChildren()
3936{
3937 if (m_address_type_of_ptr_or_ref_children == eAddressTypeInvalid)
3938 {
3939 ValueObject* root(GetRoot());
3940 if (root != this)
3941 return root->GetAddressTypeOfChildren();
3942 }
3943 return m_address_type_of_ptr_or_ref_children;
3944}
3945
3946lldb::DynamicValueType
3947ValueObject::GetDynamicValueType ()
3948{
3949 ValueObject* with_dv_info = this;
3950 while (with_dv_info)
3951 {
3952 if (with_dv_info->HasDynamicValueTypeInfo())
3953 return with_dv_info->GetDynamicValueTypeImpl();
3954 with_dv_info = with_dv_info->m_parent;
3955 }
3956 return lldb::eNoDynamicValues;
3957}
Enrico Granata39d51412013-05-31 17:43:40 +00003958
Enrico Granata4873e522013-04-11 22:48:58 +00003959lldb::Format
3960ValueObject::GetFormat () const
3961{
3962 const ValueObject* with_fmt_info = this;
3963 while (with_fmt_info)
3964 {
3965 if (with_fmt_info->m_format != lldb::eFormatDefault)
3966 return with_fmt_info->m_format;
3967 with_fmt_info = with_fmt_info->m_parent;
3968 }
3969 return m_format;
3970}