blob: 10e5ab452f0f9bebb7faf116bc3d408dec365ce9 [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 Granata465f4bc2014-02-15 01:24:44 +00001688 if (custom_format != eFormatInvalid)
Enrico Granata86cc9822012-03-19 22:58:49 +00001689 SetFormat(custom_format);
1690
1691 switch(val_obj_display)
1692 {
1693 case eValueObjectRepresentationStyleValue:
Greg Claytonc7bece562013-01-25 18:06:21 +00001694 cstr = GetValueAsCString();
Enrico Granata86cc9822012-03-19 22:58:49 +00001695 break;
1696
1697 case eValueObjectRepresentationStyleSummary:
Greg Claytonc7bece562013-01-25 18:06:21 +00001698 cstr = GetSummaryAsCString();
Enrico Granata86cc9822012-03-19 22:58:49 +00001699 break;
1700
1701 case eValueObjectRepresentationStyleLanguageSpecific:
Greg Claytonc7bece562013-01-25 18:06:21 +00001702 cstr = GetObjectDescription();
Enrico Granata86cc9822012-03-19 22:58:49 +00001703 break;
1704
1705 case eValueObjectRepresentationStyleLocation:
Greg Claytonc7bece562013-01-25 18:06:21 +00001706 cstr = GetLocationAsCString();
Enrico Granata86cc9822012-03-19 22:58:49 +00001707 break;
1708
1709 case eValueObjectRepresentationStyleChildrenCount:
Greg Claytonc7bece562013-01-25 18:06:21 +00001710 strm.Printf("%zu", GetNumChildren());
1711 cstr = strm.GetString().c_str();
Enrico Granata86cc9822012-03-19 22:58:49 +00001712 break;
1713
1714 case eValueObjectRepresentationStyleType:
Greg Claytonc7bece562013-01-25 18:06:21 +00001715 cstr = GetTypeName().AsCString();
Enrico Granata86cc9822012-03-19 22:58:49 +00001716 break;
Enrico Granata2c75f112013-06-21 00:04:51 +00001717
1718 case eValueObjectRepresentationStyleName:
1719 cstr = GetName().AsCString();
1720 break;
1721
1722 case eValueObjectRepresentationStyleExpressionPath:
1723 GetExpressionPath(strm, false);
1724 cstr = strm.GetString().c_str();
1725 break;
Enrico Granata86cc9822012-03-19 22:58:49 +00001726 }
1727
Greg Claytonc7bece562013-01-25 18:06:21 +00001728 if (!cstr)
Enrico Granata86cc9822012-03-19 22:58:49 +00001729 {
1730 if (val_obj_display == eValueObjectRepresentationStyleValue)
Greg Claytonc7bece562013-01-25 18:06:21 +00001731 cstr = GetSummaryAsCString();
Enrico Granata86cc9822012-03-19 22:58:49 +00001732 else if (val_obj_display == eValueObjectRepresentationStyleSummary)
1733 {
Greg Clayton57ee3062013-07-11 22:46:58 +00001734 if (GetClangType().IsAggregateType())
Enrico Granata86cc9822012-03-19 22:58:49 +00001735 {
Greg Claytonc7bece562013-01-25 18:06:21 +00001736 strm.Printf("%s @ %s", GetTypeName().AsCString(), GetLocationAsCString());
1737 cstr = strm.GetString().c_str();
Enrico Granata86cc9822012-03-19 22:58:49 +00001738 }
1739 else
Greg Claytonc7bece562013-01-25 18:06:21 +00001740 cstr = GetValueAsCString();
Enrico Granata86cc9822012-03-19 22:58:49 +00001741 }
1742 }
1743
Greg Claytonc7bece562013-01-25 18:06:21 +00001744 if (cstr)
1745 s.PutCString(cstr);
Enrico Granata86cc9822012-03-19 22:58:49 +00001746 else
1747 {
1748 if (m_error.Fail())
Enrico Granata0dba9b32014-01-08 01:36:59 +00001749 {
1750 if (do_dump_error)
1751 s.Printf("<%s>", m_error.AsCString());
1752 else
1753 return false;
1754 }
Enrico Granata86cc9822012-03-19 22:58:49 +00001755 else if (val_obj_display == eValueObjectRepresentationStyleSummary)
1756 s.PutCString("<no summary available>");
1757 else if (val_obj_display == eValueObjectRepresentationStyleValue)
1758 s.PutCString("<no value available>");
1759 else if (val_obj_display == eValueObjectRepresentationStyleLanguageSpecific)
1760 s.PutCString("<not a valid Objective-C object>"); // edit this if we have other runtimes that support a description
1761 else
1762 s.PutCString("<no printable representation>");
1763 }
1764
1765 // we should only return false here if we could not do *anything*
1766 // even if we have an error message as output, that's a success
1767 // from our callers' perspective, so return true
1768 var_success = true;
Enrico Granata465f4bc2014-02-15 01:24:44 +00001769
1770 if (custom_format != eFormatInvalid)
1771 SetFormat(eFormatDefault);
Enrico Granata86cc9822012-03-19 22:58:49 +00001772 }
1773
Enrico Granataf4efecd2011-07-12 22:56:10 +00001774 return var_success;
Enrico Granata9fc19442011-07-06 02:13:41 +00001775}
1776
Greg Clayton737b9322010-09-13 03:32:57 +00001777addr_t
Enrico Granata9128ee22011-09-06 19:20:51 +00001778ValueObject::GetAddressOf (bool scalar_is_load_address, AddressType *address_type)
Greg Clayton73b472d2010-10-27 03:32:59 +00001779{
Enrico Granatac3e320a2011-08-02 17:27:39 +00001780 if (!UpdateValueIfNeeded(false))
Jim Ingham78a685a2011-04-16 00:01:13 +00001781 return LLDB_INVALID_ADDRESS;
1782
Greg Clayton73b472d2010-10-27 03:32:59 +00001783 switch (m_value.GetValueType())
1784 {
1785 case Value::eValueTypeScalar:
Greg Clayton0665a0f2012-10-30 18:18:43 +00001786 case Value::eValueTypeVector:
Greg Clayton73b472d2010-10-27 03:32:59 +00001787 if (scalar_is_load_address)
1788 {
Enrico Granata9128ee22011-09-06 19:20:51 +00001789 if(address_type)
1790 *address_type = eAddressTypeLoad;
Greg Clayton73b472d2010-10-27 03:32:59 +00001791 return m_value.GetScalar().ULongLong(LLDB_INVALID_ADDRESS);
1792 }
1793 break;
1794
1795 case Value::eValueTypeLoadAddress:
1796 case Value::eValueTypeFileAddress:
1797 case Value::eValueTypeHostAddress:
1798 {
Enrico Granata9128ee22011-09-06 19:20:51 +00001799 if(address_type)
1800 *address_type = m_value.GetValueAddressType ();
Greg Clayton73b472d2010-10-27 03:32:59 +00001801 return m_value.GetScalar().ULongLong(LLDB_INVALID_ADDRESS);
1802 }
1803 break;
1804 }
Enrico Granata9128ee22011-09-06 19:20:51 +00001805 if (address_type)
1806 *address_type = eAddressTypeInvalid;
Greg Clayton73b472d2010-10-27 03:32:59 +00001807 return LLDB_INVALID_ADDRESS;
1808}
1809
1810addr_t
Enrico Granata9128ee22011-09-06 19:20:51 +00001811ValueObject::GetPointerValue (AddressType *address_type)
Greg Clayton737b9322010-09-13 03:32:57 +00001812{
Greg Claytonafacd142011-09-02 01:15:17 +00001813 addr_t address = LLDB_INVALID_ADDRESS;
Enrico Granata9128ee22011-09-06 19:20:51 +00001814 if(address_type)
1815 *address_type = eAddressTypeInvalid;
Jim Ingham78a685a2011-04-16 00:01:13 +00001816
Enrico Granatac3e320a2011-08-02 17:27:39 +00001817 if (!UpdateValueIfNeeded(false))
Jim Ingham78a685a2011-04-16 00:01:13 +00001818 return address;
1819
Greg Clayton73b472d2010-10-27 03:32:59 +00001820 switch (m_value.GetValueType())
Greg Clayton737b9322010-09-13 03:32:57 +00001821 {
1822 case Value::eValueTypeScalar:
Greg Clayton0665a0f2012-10-30 18:18:43 +00001823 case Value::eValueTypeVector:
Enrico Granata9128ee22011-09-06 19:20:51 +00001824 address = m_value.GetScalar().ULongLong(LLDB_INVALID_ADDRESS);
Greg Clayton737b9322010-09-13 03:32:57 +00001825 break;
1826
Enrico Granata9128ee22011-09-06 19:20:51 +00001827 case Value::eValueTypeHostAddress:
Greg Clayton737b9322010-09-13 03:32:57 +00001828 case Value::eValueTypeLoadAddress:
1829 case Value::eValueTypeFileAddress:
Greg Clayton737b9322010-09-13 03:32:57 +00001830 {
Greg Claytonc7bece562013-01-25 18:06:21 +00001831 lldb::offset_t data_offset = 0;
Greg Clayton737b9322010-09-13 03:32:57 +00001832 address = m_data.GetPointer(&data_offset);
Greg Clayton737b9322010-09-13 03:32:57 +00001833 }
1834 break;
1835 }
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00001836
Enrico Granata9128ee22011-09-06 19:20:51 +00001837 if (address_type)
1838 *address_type = GetAddressTypeOfChildren();
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00001839
Greg Clayton737b9322010-09-13 03:32:57 +00001840 return address;
1841}
1842
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001843bool
Enrico Granata07a4ac22012-05-08 21:25:06 +00001844ValueObject::SetValueFromCString (const char *value_str, Error& error)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001845{
Enrico Granata07a4ac22012-05-08 21:25:06 +00001846 error.Clear();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001847 // Make sure our value is up to date first so that our location and location
1848 // type is valid.
Enrico Granatac3e320a2011-08-02 17:27:39 +00001849 if (!UpdateValueIfNeeded(false))
Enrico Granata07a4ac22012-05-08 21:25:06 +00001850 {
1851 error.SetErrorString("unable to read value");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001852 return false;
Enrico Granata07a4ac22012-05-08 21:25:06 +00001853 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001854
Greg Claytonfaac1112013-03-14 18:31:44 +00001855 uint64_t count = 0;
Greg Clayton57ee3062013-07-11 22:46:58 +00001856 const Encoding encoding = GetClangType().GetEncoding (count);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001857
Greg Claytonb1320972010-07-14 00:18:15 +00001858 const size_t byte_size = GetByteSize();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001859
Jim Ingham16e0c682011-08-12 23:34:31 +00001860 Value::ValueType value_type = m_value.GetValueType();
1861
1862 if (value_type == Value::eValueTypeScalar)
1863 {
1864 // If the value is already a scalar, then let the scalar change itself:
1865 m_value.GetScalar().SetValueFromCString (value_str, encoding, byte_size);
1866 }
1867 else if (byte_size <= Scalar::GetMaxByteSize())
1868 {
1869 // If the value fits in a scalar, then make a new scalar and again let the
1870 // scalar code do the conversion, then figure out where to put the new value.
1871 Scalar new_scalar;
Jim Ingham16e0c682011-08-12 23:34:31 +00001872 error = new_scalar.SetValueFromCString (value_str, encoding, byte_size);
1873 if (error.Success())
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001874 {
Jim Ingham4b536182011-08-09 02:12:22 +00001875 switch (value_type)
1876 {
Greg Claytoncc4d0142012-02-17 07:49:44 +00001877 case Value::eValueTypeLoadAddress:
Jim Ingham16e0c682011-08-12 23:34:31 +00001878 {
1879 // If it is a load address, then the scalar value is the storage location
1880 // of the data, and we have to shove this value down to that load location.
Greg Claytoncc4d0142012-02-17 07:49:44 +00001881 ExecutionContext exe_ctx (GetExecutionContextRef());
1882 Process *process = exe_ctx.GetProcessPtr();
1883 if (process)
Jim Ingham16e0c682011-08-12 23:34:31 +00001884 {
Enrico Granata48ea80f2012-10-24 20:24:39 +00001885 addr_t target_addr = m_value.GetScalar().ULongLong(LLDB_INVALID_ADDRESS);
Greg Claytoncc4d0142012-02-17 07:49:44 +00001886 size_t bytes_written = process->WriteScalarToMemory (target_addr,
1887 new_scalar,
1888 byte_size,
1889 error);
Enrico Granata07a4ac22012-05-08 21:25:06 +00001890 if (!error.Success())
1891 return false;
1892 if (bytes_written != byte_size)
1893 {
1894 error.SetErrorString("unable to write value to memory");
1895 return false;
1896 }
Jim Ingham16e0c682011-08-12 23:34:31 +00001897 }
1898 }
Jim Ingham4b536182011-08-09 02:12:22 +00001899 break;
Greg Claytoncc4d0142012-02-17 07:49:44 +00001900 case Value::eValueTypeHostAddress:
Jim Ingham16e0c682011-08-12 23:34:31 +00001901 {
1902 // If it is a host address, then we stuff the scalar as a DataBuffer into the Value's data.
1903 DataExtractor new_data;
1904 new_data.SetByteOrder (m_data.GetByteOrder());
1905
1906 DataBufferSP buffer_sp (new DataBufferHeap(byte_size, 0));
1907 m_data.SetData(buffer_sp, 0);
1908 bool success = new_scalar.GetData(new_data);
1909 if (success)
1910 {
Greg Claytoncc4d0142012-02-17 07:49:44 +00001911 new_data.CopyByteOrderedData (0,
1912 byte_size,
1913 const_cast<uint8_t *>(m_data.GetDataStart()),
1914 byte_size,
1915 m_data.GetByteOrder());
Jim Ingham16e0c682011-08-12 23:34:31 +00001916 }
1917 m_value.GetScalar() = (uintptr_t)m_data.GetDataStart();
1918
1919 }
Jim Ingham4b536182011-08-09 02:12:22 +00001920 break;
Greg Claytoncc4d0142012-02-17 07:49:44 +00001921 case Value::eValueTypeFileAddress:
1922 case Value::eValueTypeScalar:
Greg Clayton0665a0f2012-10-30 18:18:43 +00001923 case Value::eValueTypeVector:
1924 break;
Jim Ingham4b536182011-08-09 02:12:22 +00001925 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001926 }
1927 else
1928 {
Jim Ingham16e0c682011-08-12 23:34:31 +00001929 return false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001930 }
Jim Ingham16e0c682011-08-12 23:34:31 +00001931 }
1932 else
1933 {
1934 // We don't support setting things bigger than a scalar at present.
Enrico Granata07a4ac22012-05-08 21:25:06 +00001935 error.SetErrorString("unable to write aggregate data type");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001936 return false;
1937 }
Jim Ingham16e0c682011-08-12 23:34:31 +00001938
1939 // If we have reached this point, then we have successfully changed the value.
1940 SetNeedsUpdate();
1941 return true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001942}
1943
Greg Clayton81e871e2012-02-04 02:27:34 +00001944bool
1945ValueObject::GetDeclaration (Declaration &decl)
1946{
1947 decl.Clear();
1948 return false;
1949}
1950
Greg Clayton84db9102012-03-26 23:03:23 +00001951ConstString
1952ValueObject::GetTypeName()
1953{
Greg Clayton57ee3062013-07-11 22:46:58 +00001954 return GetClangType().GetConstTypeName();
Greg Clayton84db9102012-03-26 23:03:23 +00001955}
1956
1957ConstString
1958ValueObject::GetQualifiedTypeName()
1959{
Greg Clayton57ee3062013-07-11 22:46:58 +00001960 return GetClangType().GetConstQualifiedTypeName();
Greg Clayton84db9102012-03-26 23:03:23 +00001961}
1962
1963
Greg Claytonafacd142011-09-02 01:15:17 +00001964LanguageType
Jim Ingham5a369122010-09-28 01:25:32 +00001965ValueObject::GetObjectRuntimeLanguage ()
1966{
Greg Clayton57ee3062013-07-11 22:46:58 +00001967 return GetClangType().GetMinimumLanguage ();
Jim Ingham5a369122010-09-28 01:25:32 +00001968}
1969
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001970void
Jim Ingham58b59f92011-04-22 23:53:53 +00001971ValueObject::AddSyntheticChild (const ConstString &key, ValueObject *valobj)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001972{
Jim Ingham58b59f92011-04-22 23:53:53 +00001973 m_synthetic_children[key] = valobj;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001974}
1975
1976ValueObjectSP
1977ValueObject::GetSyntheticChild (const ConstString &key) const
1978{
1979 ValueObjectSP synthetic_child_sp;
Jim Ingham58b59f92011-04-22 23:53:53 +00001980 std::map<ConstString, ValueObject *>::const_iterator pos = m_synthetic_children.find (key);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001981 if (pos != m_synthetic_children.end())
Jim Ingham58b59f92011-04-22 23:53:53 +00001982 synthetic_child_sp = pos->second->GetSP();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001983 return synthetic_child_sp;
1984}
1985
Greg Clayton2452ab72013-02-08 22:02:02 +00001986uint32_t
Greg Clayton57ee3062013-07-11 22:46:58 +00001987ValueObject::GetTypeInfo (ClangASTType *pointee_or_element_clang_type)
Greg Clayton2452ab72013-02-08 22:02:02 +00001988{
Greg Clayton57ee3062013-07-11 22:46:58 +00001989 return GetClangType().GetTypeInfo (pointee_or_element_clang_type);
Greg Clayton2452ab72013-02-08 22:02:02 +00001990}
1991
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001992bool
1993ValueObject::IsPointerType ()
1994{
Greg Clayton57ee3062013-07-11 22:46:58 +00001995 return GetClangType().IsPointerType();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001996}
1997
Jim Inghamb7603bb2011-03-18 00:05:18 +00001998bool
Greg Claytondaf515f2011-07-09 20:12:33 +00001999ValueObject::IsArrayType ()
2000{
Greg Clayton57ee3062013-07-11 22:46:58 +00002001 return GetClangType().IsArrayType (NULL, NULL, NULL);
Greg Claytondaf515f2011-07-09 20:12:33 +00002002}
2003
2004bool
Enrico Granata9fc19442011-07-06 02:13:41 +00002005ValueObject::IsScalarType ()
2006{
Greg Clayton57ee3062013-07-11 22:46:58 +00002007 return GetClangType().IsScalarType ();
Enrico Granata9fc19442011-07-06 02:13:41 +00002008}
2009
2010bool
Jim Inghamb7603bb2011-03-18 00:05:18 +00002011ValueObject::IsIntegerType (bool &is_signed)
2012{
Greg Clayton57ee3062013-07-11 22:46:58 +00002013 return GetClangType().IsIntegerType (is_signed);
Jim Inghamb7603bb2011-03-18 00:05:18 +00002014}
Greg Clayton73b472d2010-10-27 03:32:59 +00002015
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002016bool
2017ValueObject::IsPointerOrReferenceType ()
2018{
Greg Clayton57ee3062013-07-11 22:46:58 +00002019 return GetClangType().IsPointerOrReferenceType ();
Greg Clayton007d5be2011-05-30 00:49:24 +00002020}
2021
2022bool
Greg Claytondea8cb42011-06-29 22:09:02 +00002023ValueObject::IsPossibleDynamicType ()
2024{
Enrico Granatafd4c84e2012-05-21 16:51:35 +00002025 ExecutionContext exe_ctx (GetExecutionContextRef());
2026 Process *process = exe_ctx.GetProcessPtr();
2027 if (process)
2028 return process->IsPossibleDynamicValue(*this);
2029 else
Greg Clayton57ee3062013-07-11 22:46:58 +00002030 return GetClangType().IsPossibleDynamicType (NULL, true, true);
Greg Claytondea8cb42011-06-29 22:09:02 +00002031}
2032
Enrico Granata9e7b3882012-12-13 23:50:33 +00002033bool
2034ValueObject::IsObjCNil ()
2035{
Greg Clayton57ee3062013-07-11 22:46:58 +00002036 const uint32_t mask = ClangASTType::eTypeIsObjC | ClangASTType::eTypeIsPointer;
2037 bool isObjCpointer = (((GetClangType().GetTypeInfo(NULL)) & mask) == mask);
Enrico Granata7277d202013-03-15 23:33:15 +00002038 if (!isObjCpointer)
2039 return false;
Enrico Granata9e7b3882012-12-13 23:50:33 +00002040 bool canReadValue = true;
2041 bool isZero = GetValueAsUnsigned(0,&canReadValue) == 0;
Enrico Granata7277d202013-03-15 23:33:15 +00002042 return canReadValue && isZero;
Enrico Granata9e7b3882012-12-13 23:50:33 +00002043}
2044
Greg Claytonafacd142011-09-02 01:15:17 +00002045ValueObjectSP
Greg Claytonc7bece562013-01-25 18:06:21 +00002046ValueObject::GetSyntheticArrayMember (size_t index, bool can_create)
Enrico Granatad64d0bc2011-08-19 21:13:46 +00002047{
Greg Clayton2452ab72013-02-08 22:02:02 +00002048 const uint32_t type_info = GetTypeInfo ();
Greg Clayton57ee3062013-07-11 22:46:58 +00002049 if (type_info & ClangASTType::eTypeIsArray)
Enrico Granatad64d0bc2011-08-19 21:13:46 +00002050 return GetSyntheticArrayMemberFromArray(index, can_create);
2051
Greg Clayton57ee3062013-07-11 22:46:58 +00002052 if (type_info & ClangASTType::eTypeIsPointer)
Enrico Granatad64d0bc2011-08-19 21:13:46 +00002053 return GetSyntheticArrayMemberFromPointer(index, can_create);
2054
2055 return ValueObjectSP();
2056
2057}
2058
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002059ValueObjectSP
Greg Claytonc7bece562013-01-25 18:06:21 +00002060ValueObject::GetSyntheticArrayMemberFromPointer (size_t index, bool can_create)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002061{
2062 ValueObjectSP synthetic_child_sp;
2063 if (IsPointerType ())
2064 {
2065 char index_str[64];
Greg Claytonc7bece562013-01-25 18:06:21 +00002066 snprintf(index_str, sizeof(index_str), "[%zu]", index);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002067 ConstString index_const_str(index_str);
2068 // Check if we have already created a synthetic array member in this
2069 // valid object. If we have we will re-use it.
2070 synthetic_child_sp = GetSyntheticChild (index_const_str);
2071 if (!synthetic_child_sp)
2072 {
Jim Ingham58b59f92011-04-22 23:53:53 +00002073 ValueObject *synthetic_child;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002074 // We haven't made a synthetic array member for INDEX yet, so
2075 // lets make one and cache it for any future reference.
Jim Ingham58b59f92011-04-22 23:53:53 +00002076 synthetic_child = CreateChildAtIndex(0, true, index);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002077
2078 // Cache the value if we got one back...
Jim Ingham58b59f92011-04-22 23:53:53 +00002079 if (synthetic_child)
2080 {
2081 AddSyntheticChild(index_const_str, synthetic_child);
2082 synthetic_child_sp = synthetic_child->GetSP();
Enrico Granata6f3533f2011-07-29 19:53:35 +00002083 synthetic_child_sp->SetName(ConstString(index_str));
Enrico Granata0a3958e2011-07-02 00:25:22 +00002084 synthetic_child_sp->m_is_array_item_for_pointer = true;
Jim Ingham58b59f92011-04-22 23:53:53 +00002085 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002086 }
2087 }
2088 return synthetic_child_sp;
2089}
Jim Ingham22777012010-09-23 02:01:19 +00002090
Greg Claytondaf515f2011-07-09 20:12:33 +00002091// This allows you to create an array member using and index
2092// that doesn't not fall in the normal bounds of the array.
2093// Many times structure can be defined as:
2094// struct Collection
2095// {
2096// uint32_t item_count;
2097// Item item_array[0];
2098// };
2099// The size of the "item_array" is 1, but many times in practice
2100// there are more items in "item_array".
2101
2102ValueObjectSP
Greg Claytonc7bece562013-01-25 18:06:21 +00002103ValueObject::GetSyntheticArrayMemberFromArray (size_t index, bool can_create)
Greg Claytondaf515f2011-07-09 20:12:33 +00002104{
2105 ValueObjectSP synthetic_child_sp;
2106 if (IsArrayType ())
2107 {
2108 char index_str[64];
Greg Claytonc7bece562013-01-25 18:06:21 +00002109 snprintf(index_str, sizeof(index_str), "[%zu]", index);
Greg Claytondaf515f2011-07-09 20:12:33 +00002110 ConstString index_const_str(index_str);
2111 // Check if we have already created a synthetic array member in this
2112 // valid object. If we have we will re-use it.
2113 synthetic_child_sp = GetSyntheticChild (index_const_str);
2114 if (!synthetic_child_sp)
2115 {
2116 ValueObject *synthetic_child;
2117 // We haven't made a synthetic array member for INDEX yet, so
2118 // lets make one and cache it for any future reference.
2119 synthetic_child = CreateChildAtIndex(0, true, index);
2120
2121 // Cache the value if we got one back...
2122 if (synthetic_child)
2123 {
2124 AddSyntheticChild(index_const_str, synthetic_child);
2125 synthetic_child_sp = synthetic_child->GetSP();
Enrico Granata6f3533f2011-07-29 19:53:35 +00002126 synthetic_child_sp->SetName(ConstString(index_str));
Greg Claytondaf515f2011-07-09 20:12:33 +00002127 synthetic_child_sp->m_is_array_item_for_pointer = true;
2128 }
2129 }
2130 }
2131 return synthetic_child_sp;
2132}
2133
Enrico Granata9fc19442011-07-06 02:13:41 +00002134ValueObjectSP
2135ValueObject::GetSyntheticBitFieldChild (uint32_t from, uint32_t to, bool can_create)
2136{
2137 ValueObjectSP synthetic_child_sp;
2138 if (IsScalarType ())
2139 {
2140 char index_str[64];
2141 snprintf(index_str, sizeof(index_str), "[%i-%i]", from, to);
2142 ConstString index_const_str(index_str);
2143 // Check if we have already created a synthetic array member in this
2144 // valid object. If we have we will re-use it.
2145 synthetic_child_sp = GetSyntheticChild (index_const_str);
2146 if (!synthetic_child_sp)
2147 {
Enrico Granata9fc19442011-07-06 02:13:41 +00002148 // We haven't made a synthetic array member for INDEX yet, so
2149 // lets make one and cache it for any future reference.
Greg Clayton57ee3062013-07-11 22:46:58 +00002150 ValueObjectChild *synthetic_child = new ValueObjectChild (*this,
2151 GetClangType(),
2152 index_const_str,
2153 GetByteSize(),
2154 0,
2155 to-from+1,
2156 from,
2157 false,
2158 false,
2159 eAddressTypeInvalid);
Enrico Granata9fc19442011-07-06 02:13:41 +00002160
2161 // Cache the value if we got one back...
2162 if (synthetic_child)
2163 {
2164 AddSyntheticChild(index_const_str, synthetic_child);
2165 synthetic_child_sp = synthetic_child->GetSP();
Enrico Granata6f3533f2011-07-29 19:53:35 +00002166 synthetic_child_sp->SetName(ConstString(index_str));
Enrico Granata9fc19442011-07-06 02:13:41 +00002167 synthetic_child_sp->m_is_bitfield_for_scalar = true;
2168 }
2169 }
2170 }
2171 return synthetic_child_sp;
2172}
2173
Greg Claytonafacd142011-09-02 01:15:17 +00002174ValueObjectSP
Enrico Granata6f3533f2011-07-29 19:53:35 +00002175ValueObject::GetSyntheticChildAtOffset(uint32_t offset, const ClangASTType& type, bool can_create)
2176{
2177
2178 ValueObjectSP synthetic_child_sp;
2179
2180 char name_str[64];
2181 snprintf(name_str, sizeof(name_str), "@%i", offset);
2182 ConstString name_const_str(name_str);
2183
2184 // Check if we have already created a synthetic array member in this
2185 // valid object. If we have we will re-use it.
2186 synthetic_child_sp = GetSyntheticChild (name_const_str);
2187
2188 if (synthetic_child_sp.get())
2189 return synthetic_child_sp;
2190
2191 if (!can_create)
Greg Claytonafacd142011-09-02 01:15:17 +00002192 return ValueObjectSP();
Enrico Granata6f3533f2011-07-29 19:53:35 +00002193
2194 ValueObjectChild *synthetic_child = new ValueObjectChild(*this,
Greg Clayton57ee3062013-07-11 22:46:58 +00002195 type,
Enrico Granata6f3533f2011-07-29 19:53:35 +00002196 name_const_str,
Greg Clayton57ee3062013-07-11 22:46:58 +00002197 type.GetByteSize(),
Enrico Granata6f3533f2011-07-29 19:53:35 +00002198 offset,
2199 0,
2200 0,
2201 false,
Enrico Granata9128ee22011-09-06 19:20:51 +00002202 false,
2203 eAddressTypeInvalid);
Enrico Granata6f3533f2011-07-29 19:53:35 +00002204 if (synthetic_child)
2205 {
2206 AddSyntheticChild(name_const_str, synthetic_child);
2207 synthetic_child_sp = synthetic_child->GetSP();
2208 synthetic_child_sp->SetName(name_const_str);
2209 synthetic_child_sp->m_is_child_at_offset = true;
2210 }
2211 return synthetic_child_sp;
2212}
2213
Enrico Granatad55546b2011-07-22 00:16:08 +00002214// your expression path needs to have a leading . or ->
2215// (unless it somehow "looks like" an array, in which case it has
2216// a leading [ symbol). while the [ is meaningful and should be shown
2217// to the user, . and -> are just parser design, but by no means
2218// added information for the user.. strip them off
2219static const char*
2220SkipLeadingExpressionPathSeparators(const char* expression)
2221{
2222 if (!expression || !expression[0])
2223 return expression;
2224 if (expression[0] == '.')
2225 return expression+1;
2226 if (expression[0] == '-' && expression[1] == '>')
2227 return expression+2;
2228 return expression;
2229}
2230
Greg Claytonafacd142011-09-02 01:15:17 +00002231ValueObjectSP
Enrico Granatad55546b2011-07-22 00:16:08 +00002232ValueObject::GetSyntheticExpressionPathChild(const char* expression, bool can_create)
2233{
2234 ValueObjectSP synthetic_child_sp;
2235 ConstString name_const_string(expression);
2236 // Check if we have already created a synthetic array member in this
2237 // valid object. If we have we will re-use it.
2238 synthetic_child_sp = GetSyntheticChild (name_const_string);
2239 if (!synthetic_child_sp)
2240 {
2241 // We haven't made a synthetic array member for expression yet, so
2242 // lets make one and cache it for any future reference.
Enrico Granatadf31a8a2012-08-02 17:34:05 +00002243 synthetic_child_sp = GetValueForExpressionPath(expression,
2244 NULL, NULL, NULL,
2245 GetValueForExpressionPathOptions().DontAllowSyntheticChildren());
Enrico Granatad55546b2011-07-22 00:16:08 +00002246
2247 // Cache the value if we got one back...
2248 if (synthetic_child_sp.get())
2249 {
Enrico Granataea2bc0f2013-02-21 19:57:10 +00002250 // 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 +00002251 AddSyntheticChild(name_const_string, synthetic_child_sp.get());
Enrico Granata6f3533f2011-07-29 19:53:35 +00002252 synthetic_child_sp->SetName(ConstString(SkipLeadingExpressionPathSeparators(expression)));
Enrico Granatad55546b2011-07-22 00:16:08 +00002253 }
2254 }
2255 return synthetic_child_sp;
2256}
2257
2258void
Enrico Granata86cc9822012-03-19 22:58:49 +00002259ValueObject::CalculateSyntheticValue (bool use_synthetic)
Enrico Granatad55546b2011-07-22 00:16:08 +00002260{
Enrico Granata86cc9822012-03-19 22:58:49 +00002261 if (use_synthetic == false)
Enrico Granatad55546b2011-07-22 00:16:08 +00002262 return;
2263
Enrico Granatac5bc4122012-03-27 02:35:13 +00002264 TargetSP target_sp(GetTargetSP());
Enrico Granata5d5f60c2013-09-24 22:58:37 +00002265 if (target_sp && target_sp->GetEnableSyntheticValue() == false)
Enrico Granatac5bc4122012-03-27 02:35:13 +00002266 {
2267 m_synthetic_value = NULL;
2268 return;
2269 }
2270
Enrico Granatae3e91512012-10-22 18:18:36 +00002271 lldb::SyntheticChildrenSP current_synth_sp(m_synthetic_children_sp);
2272
Enrico Granata5548cb52013-01-28 23:47:25 +00002273 if (!UpdateFormatsIfNeeded() && m_synthetic_value)
Enrico Granata86cc9822012-03-19 22:58:49 +00002274 return;
Enrico Granatad55546b2011-07-22 00:16:08 +00002275
Enrico Granata0c489f52012-03-01 04:24:26 +00002276 if (m_synthetic_children_sp.get() == NULL)
Enrico Granatad55546b2011-07-22 00:16:08 +00002277 return;
2278
Enrico Granatae3e91512012-10-22 18:18:36 +00002279 if (current_synth_sp == m_synthetic_children_sp && m_synthetic_value)
2280 return;
2281
Enrico Granata86cc9822012-03-19 22:58:49 +00002282 m_synthetic_value = new ValueObjectSynthetic(*this, m_synthetic_children_sp);
Enrico Granatad55546b2011-07-22 00:16:08 +00002283}
2284
Jim Ingham78a685a2011-04-16 00:01:13 +00002285void
Greg Claytonafacd142011-09-02 01:15:17 +00002286ValueObject::CalculateDynamicValue (DynamicValueType use_dynamic)
Jim Ingham22777012010-09-23 02:01:19 +00002287{
Greg Claytonafacd142011-09-02 01:15:17 +00002288 if (use_dynamic == eNoDynamicValues)
Jim Ingham2837b762011-05-04 03:43:18 +00002289 return;
2290
Jim Ingham58b59f92011-04-22 23:53:53 +00002291 if (!m_dynamic_value && !IsDynamic())
Jim Ingham78a685a2011-04-16 00:01:13 +00002292 {
Greg Claytoncc4d0142012-02-17 07:49:44 +00002293 ExecutionContext exe_ctx (GetExecutionContextRef());
2294 Process *process = exe_ctx.GetProcessPtr();
Enrico Granatafd4c84e2012-05-21 16:51:35 +00002295 if (process && process->IsPossibleDynamicValue(*this))
Enrico Granatae3e91512012-10-22 18:18:36 +00002296 {
2297 ClearDynamicTypeInformation ();
Enrico Granatafd4c84e2012-05-21 16:51:35 +00002298 m_dynamic_value = new ValueObjectDynamicValue (*this, use_dynamic);
Enrico Granatae3e91512012-10-22 18:18:36 +00002299 }
Jim Ingham78a685a2011-04-16 00:01:13 +00002300 }
2301}
2302
Jim Ingham58b59f92011-04-22 23:53:53 +00002303ValueObjectSP
Jim Ingham2837b762011-05-04 03:43:18 +00002304ValueObject::GetDynamicValue (DynamicValueType use_dynamic)
Jim Ingham78a685a2011-04-16 00:01:13 +00002305{
Greg Claytonafacd142011-09-02 01:15:17 +00002306 if (use_dynamic == eNoDynamicValues)
Jim Ingham2837b762011-05-04 03:43:18 +00002307 return ValueObjectSP();
2308
2309 if (!IsDynamic() && m_dynamic_value == NULL)
Jim Ingham78a685a2011-04-16 00:01:13 +00002310 {
Jim Ingham2837b762011-05-04 03:43:18 +00002311 CalculateDynamicValue(use_dynamic);
Jim Ingham78a685a2011-04-16 00:01:13 +00002312 }
Jim Ingham58b59f92011-04-22 23:53:53 +00002313 if (m_dynamic_value)
2314 return m_dynamic_value->GetSP();
2315 else
2316 return ValueObjectSP();
Jim Ingham22777012010-09-23 02:01:19 +00002317}
Greg Clayton1d3afba2010-10-05 00:00:42 +00002318
Jim Ingham60dbabb2011-12-08 19:44:08 +00002319ValueObjectSP
2320ValueObject::GetStaticValue()
2321{
2322 return GetSP();
2323}
2324
Enrico Granata886147f2012-05-08 18:47:08 +00002325lldb::ValueObjectSP
2326ValueObject::GetNonSyntheticValue ()
2327{
2328 return GetSP();
2329}
2330
Enrico Granatad55546b2011-07-22 00:16:08 +00002331ValueObjectSP
Enrico Granata86cc9822012-03-19 22:58:49 +00002332ValueObject::GetSyntheticValue (bool use_synthetic)
Enrico Granatad55546b2011-07-22 00:16:08 +00002333{
Enrico Granata86cc9822012-03-19 22:58:49 +00002334 if (use_synthetic == false)
2335 return ValueObjectSP();
2336
Enrico Granatad55546b2011-07-22 00:16:08 +00002337 CalculateSyntheticValue(use_synthetic);
2338
2339 if (m_synthetic_value)
2340 return m_synthetic_value->GetSP();
2341 else
Enrico Granata86cc9822012-03-19 22:58:49 +00002342 return ValueObjectSP();
Enrico Granatad55546b2011-07-22 00:16:08 +00002343}
2344
Greg Claytone221f822011-01-21 01:59:00 +00002345bool
Enrico Granata27b625e2011-08-09 01:04:56 +00002346ValueObject::HasSyntheticValue()
2347{
Enrico Granata5548cb52013-01-28 23:47:25 +00002348 UpdateFormatsIfNeeded();
Enrico Granata27b625e2011-08-09 01:04:56 +00002349
Enrico Granata0c489f52012-03-01 04:24:26 +00002350 if (m_synthetic_children_sp.get() == NULL)
Enrico Granata27b625e2011-08-09 01:04:56 +00002351 return false;
2352
Enrico Granata86cc9822012-03-19 22:58:49 +00002353 CalculateSyntheticValue(true);
Enrico Granata27b625e2011-08-09 01:04:56 +00002354
2355 if (m_synthetic_value)
2356 return true;
2357 else
2358 return false;
2359}
2360
2361bool
Greg Claytone221f822011-01-21 01:59:00 +00002362ValueObject::GetBaseClassPath (Stream &s)
2363{
2364 if (IsBaseClass())
2365 {
Jim Ingham78a685a2011-04-16 00:01:13 +00002366 bool parent_had_base_class = GetParent() && GetParent()->GetBaseClassPath (s);
Greg Clayton57ee3062013-07-11 22:46:58 +00002367 ClangASTType clang_type = GetClangType();
Greg Claytone221f822011-01-21 01:59:00 +00002368 std::string cxx_class_name;
Greg Clayton57ee3062013-07-11 22:46:58 +00002369 bool this_had_base_class = clang_type.GetCXXClassName (cxx_class_name);
Greg Claytone221f822011-01-21 01:59:00 +00002370 if (this_had_base_class)
2371 {
2372 if (parent_had_base_class)
2373 s.PutCString("::");
2374 s.PutCString(cxx_class_name.c_str());
2375 }
2376 return parent_had_base_class || this_had_base_class;
2377 }
2378 return false;
2379}
2380
2381
2382ValueObject *
2383ValueObject::GetNonBaseClassParent()
2384{
Jim Ingham78a685a2011-04-16 00:01:13 +00002385 if (GetParent())
Greg Claytone221f822011-01-21 01:59:00 +00002386 {
Jim Ingham78a685a2011-04-16 00:01:13 +00002387 if (GetParent()->IsBaseClass())
2388 return GetParent()->GetNonBaseClassParent();
Greg Claytone221f822011-01-21 01:59:00 +00002389 else
Jim Ingham78a685a2011-04-16 00:01:13 +00002390 return GetParent();
Greg Claytone221f822011-01-21 01:59:00 +00002391 }
2392 return NULL;
2393}
Greg Clayton1d3afba2010-10-05 00:00:42 +00002394
2395void
Enrico Granata4becb372011-06-29 22:27:15 +00002396ValueObject::GetExpressionPath (Stream &s, bool qualify_cxx_base_classes, GetExpressionPathFormat epformat)
Greg Clayton8f92f0a2010-10-14 22:52:14 +00002397{
Greg Claytone221f822011-01-21 01:59:00 +00002398 const bool is_deref_of_parent = IsDereferenceOfParent ();
Greg Claytone221f822011-01-21 01:59:00 +00002399
Enrico Granata86cc9822012-03-19 22:58:49 +00002400 if (is_deref_of_parent && epformat == eGetExpressionPathFormatDereferencePointers)
Enrico Granata85933ed2011-08-18 16:38:26 +00002401 {
Enrico Granata4becb372011-06-29 22:27:15 +00002402 // this is the original format of GetExpressionPath() producing code like *(a_ptr).memberName, which is entirely
2403 // fine, until you put this into StackFrame::GetValueForVariableExpressionPath() which prefers to see a_ptr->memberName.
2404 // the eHonorPointers mode is meant to produce strings in this latter format
2405 s.PutCString("*(");
2406 }
Greg Claytone221f822011-01-21 01:59:00 +00002407
Enrico Granata4becb372011-06-29 22:27:15 +00002408 ValueObject* parent = GetParent();
2409
2410 if (parent)
2411 parent->GetExpressionPath (s, qualify_cxx_base_classes, epformat);
Enrico Granata0a3958e2011-07-02 00:25:22 +00002412
2413 // if we are a deref_of_parent just because we are synthetic array
2414 // members made up to allow ptr[%d] syntax to work in variable
2415 // printing, then add our name ([%d]) to the expression path
Enrico Granata86cc9822012-03-19 22:58:49 +00002416 if (m_is_array_item_for_pointer && epformat == eGetExpressionPathFormatHonorPointers)
Enrico Granata0a3958e2011-07-02 00:25:22 +00002417 s.PutCString(m_name.AsCString());
Enrico Granata4becb372011-06-29 22:27:15 +00002418
Greg Claytone221f822011-01-21 01:59:00 +00002419 if (!IsBaseClass())
2420 {
2421 if (!is_deref_of_parent)
Greg Clayton8f92f0a2010-10-14 22:52:14 +00002422 {
Greg Claytone221f822011-01-21 01:59:00 +00002423 ValueObject *non_base_class_parent = GetNonBaseClassParent();
2424 if (non_base_class_parent)
Greg Clayton8f92f0a2010-10-14 22:52:14 +00002425 {
Greg Clayton57ee3062013-07-11 22:46:58 +00002426 ClangASTType non_base_class_parent_clang_type = non_base_class_parent->GetClangType();
Greg Claytone221f822011-01-21 01:59:00 +00002427 if (non_base_class_parent_clang_type)
2428 {
Enrico Granata86cc9822012-03-19 22:58:49 +00002429 if (parent && parent->IsDereferenceOfParent() && epformat == eGetExpressionPathFormatHonorPointers)
Greg Claytone221f822011-01-21 01:59:00 +00002430 {
2431 s.PutCString("->");
2432 }
Enrico Granata4becb372011-06-29 22:27:15 +00002433 else
2434 {
Greg Clayton57ee3062013-07-11 22:46:58 +00002435 const uint32_t non_base_class_parent_type_info = non_base_class_parent_clang_type.GetTypeInfo();
2436
2437 if (non_base_class_parent_type_info & ClangASTType::eTypeIsPointer)
Enrico Granata4becb372011-06-29 22:27:15 +00002438 {
2439 s.PutCString("->");
2440 }
Greg Clayton57ee3062013-07-11 22:46:58 +00002441 else if ((non_base_class_parent_type_info & ClangASTType::eTypeHasChildren) &&
2442 !(non_base_class_parent_type_info & ClangASTType::eTypeIsArray))
Enrico Granata4becb372011-06-29 22:27:15 +00002443 {
2444 s.PutChar('.');
2445 }
Greg Claytone221f822011-01-21 01:59:00 +00002446 }
2447 }
Greg Clayton8f92f0a2010-10-14 22:52:14 +00002448 }
Greg Claytone221f822011-01-21 01:59:00 +00002449
2450 const char *name = GetName().GetCString();
2451 if (name)
Greg Clayton8f92f0a2010-10-14 22:52:14 +00002452 {
Greg Claytone221f822011-01-21 01:59:00 +00002453 if (qualify_cxx_base_classes)
2454 {
2455 if (GetBaseClassPath (s))
2456 s.PutCString("::");
2457 }
2458 s.PutCString(name);
Greg Clayton8f92f0a2010-10-14 22:52:14 +00002459 }
2460 }
2461 }
2462
Enrico Granata86cc9822012-03-19 22:58:49 +00002463 if (is_deref_of_parent && epformat == eGetExpressionPathFormatDereferencePointers)
Enrico Granata85933ed2011-08-18 16:38:26 +00002464 {
Greg Claytone221f822011-01-21 01:59:00 +00002465 s.PutChar(')');
Enrico Granata4becb372011-06-29 22:27:15 +00002466 }
Greg Clayton8f92f0a2010-10-14 22:52:14 +00002467}
2468
Greg Claytonafacd142011-09-02 01:15:17 +00002469ValueObjectSP
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002470ValueObject::GetValueForExpressionPath(const char* expression,
2471 const char** first_unparsed,
2472 ExpressionPathScanEndReason* reason_to_stop,
2473 ExpressionPathEndResultType* final_value_type,
2474 const GetValueForExpressionPathOptions& options,
2475 ExpressionPathAftermath* final_task_on_target)
2476{
2477
2478 const char* dummy_first_unparsed;
Enrico Granataea2bc0f2013-02-21 19:57:10 +00002479 ExpressionPathScanEndReason dummy_reason_to_stop = ValueObject::eExpressionPathScanEndReasonUnknown;
2480 ExpressionPathEndResultType dummy_final_value_type = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granata86cc9822012-03-19 22:58:49 +00002481 ExpressionPathAftermath dummy_final_task_on_target = ValueObject::eExpressionPathAftermathNothing;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002482
2483 ValueObjectSP ret_val = GetValueForExpressionPath_Impl(expression,
2484 first_unparsed ? first_unparsed : &dummy_first_unparsed,
2485 reason_to_stop ? reason_to_stop : &dummy_reason_to_stop,
2486 final_value_type ? final_value_type : &dummy_final_value_type,
2487 options,
2488 final_task_on_target ? final_task_on_target : &dummy_final_task_on_target);
2489
Enrico Granata86cc9822012-03-19 22:58:49 +00002490 if (!final_task_on_target || *final_task_on_target == ValueObject::eExpressionPathAftermathNothing)
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002491 return ret_val;
Enrico Granata385ad4e2012-03-03 00:45:57 +00002492
Enrico Granata86cc9822012-03-19 22:58:49 +00002493 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 +00002494 {
Enrico Granata86cc9822012-03-19 22:58:49 +00002495 if ( (final_task_on_target ? *final_task_on_target : dummy_final_task_on_target) == ValueObject::eExpressionPathAftermathDereference)
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002496 {
2497 Error error;
2498 ValueObjectSP final_value = ret_val->Dereference(error);
2499 if (error.Fail() || !final_value.get())
2500 {
Enrico Granata385ad4e2012-03-03 00:45:57 +00002501 if (reason_to_stop)
Enrico Granata86cc9822012-03-19 22:58:49 +00002502 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonDereferencingFailed;
Enrico Granata385ad4e2012-03-03 00:45:57 +00002503 if (final_value_type)
Enrico Granata86cc9822012-03-19 22:58:49 +00002504 *final_value_type = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002505 return ValueObjectSP();
2506 }
2507 else
2508 {
Enrico Granata385ad4e2012-03-03 00:45:57 +00002509 if (final_task_on_target)
Enrico Granata86cc9822012-03-19 22:58:49 +00002510 *final_task_on_target = ValueObject::eExpressionPathAftermathNothing;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002511 return final_value;
2512 }
2513 }
Enrico Granata86cc9822012-03-19 22:58:49 +00002514 if (*final_task_on_target == ValueObject::eExpressionPathAftermathTakeAddress)
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002515 {
2516 Error error;
2517 ValueObjectSP final_value = ret_val->AddressOf(error);
2518 if (error.Fail() || !final_value.get())
2519 {
Enrico Granata385ad4e2012-03-03 00:45:57 +00002520 if (reason_to_stop)
Enrico Granata86cc9822012-03-19 22:58:49 +00002521 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonTakingAddressFailed;
Enrico Granata385ad4e2012-03-03 00:45:57 +00002522 if (final_value_type)
Enrico Granata86cc9822012-03-19 22:58:49 +00002523 *final_value_type = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002524 return ValueObjectSP();
2525 }
2526 else
2527 {
Enrico Granata385ad4e2012-03-03 00:45:57 +00002528 if (final_task_on_target)
Enrico Granata86cc9822012-03-19 22:58:49 +00002529 *final_task_on_target = ValueObject::eExpressionPathAftermathNothing;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002530 return final_value;
2531 }
2532 }
2533 }
2534 return ret_val; // final_task_on_target will still have its original value, so you know I did not do it
2535}
2536
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002537int
2538ValueObject::GetValuesForExpressionPath(const char* expression,
Greg Claytonafacd142011-09-02 01:15:17 +00002539 ValueObjectListSP& list,
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002540 const char** first_unparsed,
2541 ExpressionPathScanEndReason* reason_to_stop,
2542 ExpressionPathEndResultType* final_value_type,
2543 const GetValueForExpressionPathOptions& options,
2544 ExpressionPathAftermath* final_task_on_target)
2545{
2546 const char* dummy_first_unparsed;
2547 ExpressionPathScanEndReason dummy_reason_to_stop;
2548 ExpressionPathEndResultType dummy_final_value_type;
Enrico Granata86cc9822012-03-19 22:58:49 +00002549 ExpressionPathAftermath dummy_final_task_on_target = ValueObject::eExpressionPathAftermathNothing;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002550
2551 ValueObjectSP ret_val = GetValueForExpressionPath_Impl(expression,
2552 first_unparsed ? first_unparsed : &dummy_first_unparsed,
2553 reason_to_stop ? reason_to_stop : &dummy_reason_to_stop,
2554 final_value_type ? final_value_type : &dummy_final_value_type,
2555 options,
2556 final_task_on_target ? final_task_on_target : &dummy_final_task_on_target);
2557
2558 if (!ret_val.get()) // if there are errors, I add nothing to the list
2559 return 0;
2560
Enrico Granata86ea8d82012-03-29 01:34:34 +00002561 if ( (reason_to_stop ? *reason_to_stop : dummy_reason_to_stop) != eExpressionPathScanEndReasonArrayRangeOperatorMet)
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002562 {
2563 // I need not expand a range, just post-process the final value and return
Enrico Granata86cc9822012-03-19 22:58:49 +00002564 if (!final_task_on_target || *final_task_on_target == ValueObject::eExpressionPathAftermathNothing)
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002565 {
2566 list->Append(ret_val);
2567 return 1;
2568 }
Enrico Granata86ea8d82012-03-29 01:34:34 +00002569 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 +00002570 {
Enrico Granata86cc9822012-03-19 22:58:49 +00002571 if (*final_task_on_target == ValueObject::eExpressionPathAftermathDereference)
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002572 {
2573 Error error;
2574 ValueObjectSP final_value = ret_val->Dereference(error);
2575 if (error.Fail() || !final_value.get())
2576 {
Greg Clayton23f59502012-07-17 03:23:13 +00002577 if (reason_to_stop)
2578 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonDereferencingFailed;
2579 if (final_value_type)
2580 *final_value_type = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002581 return 0;
2582 }
2583 else
2584 {
Enrico Granata86cc9822012-03-19 22:58:49 +00002585 *final_task_on_target = ValueObject::eExpressionPathAftermathNothing;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002586 list->Append(final_value);
2587 return 1;
2588 }
2589 }
Enrico Granata86cc9822012-03-19 22:58:49 +00002590 if (*final_task_on_target == ValueObject::eExpressionPathAftermathTakeAddress)
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002591 {
2592 Error error;
2593 ValueObjectSP final_value = ret_val->AddressOf(error);
2594 if (error.Fail() || !final_value.get())
2595 {
Greg Clayton23f59502012-07-17 03:23:13 +00002596 if (reason_to_stop)
2597 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonTakingAddressFailed;
2598 if (final_value_type)
2599 *final_value_type = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002600 return 0;
2601 }
2602 else
2603 {
Enrico Granata86cc9822012-03-19 22:58:49 +00002604 *final_task_on_target = ValueObject::eExpressionPathAftermathNothing;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002605 list->Append(final_value);
2606 return 1;
2607 }
2608 }
2609 }
2610 }
2611 else
2612 {
2613 return ExpandArraySliceExpression(first_unparsed ? *first_unparsed : dummy_first_unparsed,
2614 first_unparsed ? first_unparsed : &dummy_first_unparsed,
2615 ret_val,
2616 list,
2617 reason_to_stop ? reason_to_stop : &dummy_reason_to_stop,
2618 final_value_type ? final_value_type : &dummy_final_value_type,
2619 options,
2620 final_task_on_target ? final_task_on_target : &dummy_final_task_on_target);
2621 }
2622 // in any non-covered case, just do the obviously right thing
2623 list->Append(ret_val);
2624 return 1;
2625}
2626
Greg Claytonafacd142011-09-02 01:15:17 +00002627ValueObjectSP
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002628ValueObject::GetValueForExpressionPath_Impl(const char* expression_cstr,
2629 const char** first_unparsed,
2630 ExpressionPathScanEndReason* reason_to_stop,
2631 ExpressionPathEndResultType* final_result,
2632 const GetValueForExpressionPathOptions& options,
2633 ExpressionPathAftermath* what_next)
2634{
2635 ValueObjectSP root = GetSP();
2636
2637 if (!root.get())
2638 return ValueObjectSP();
2639
2640 *first_unparsed = expression_cstr;
2641
2642 while (true)
2643 {
2644
2645 const char* expression_cstr = *first_unparsed; // hide the top level expression_cstr
2646
Greg Clayton57ee3062013-07-11 22:46:58 +00002647 ClangASTType root_clang_type = root->GetClangType();
2648 ClangASTType pointee_clang_type;
2649 Flags pointee_clang_type_info;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002650
Greg Clayton57ee3062013-07-11 22:46:58 +00002651 Flags root_clang_type_info(root_clang_type.GetTypeInfo(&pointee_clang_type));
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00002652 if (pointee_clang_type)
Greg Clayton57ee3062013-07-11 22:46:58 +00002653 pointee_clang_type_info.Reset(pointee_clang_type.GetTypeInfo());
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002654
2655 if (!expression_cstr || *expression_cstr == '\0')
2656 {
Enrico Granata86cc9822012-03-19 22:58:49 +00002657 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonEndOfString;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002658 return root;
2659 }
2660
2661 switch (*expression_cstr)
2662 {
2663 case '-':
2664 {
2665 if (options.m_check_dot_vs_arrow_syntax &&
Greg Clayton57ee3062013-07-11 22:46:58 +00002666 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 +00002667 {
2668 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002669 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonArrowInsteadOfDot;
2670 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002671 return ValueObjectSP();
2672 }
Greg Clayton57ee3062013-07-11 22:46:58 +00002673 if (root_clang_type_info.Test(ClangASTType::eTypeIsObjC) && // if yo are trying to extract an ObjC IVar when this is forbidden
2674 root_clang_type_info.Test(ClangASTType::eTypeIsPointer) &&
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002675 options.m_no_fragile_ivar)
2676 {
2677 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002678 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonFragileIVarNotAllowed;
2679 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002680 return ValueObjectSP();
2681 }
2682 if (expression_cstr[1] != '>')
2683 {
2684 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002685 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonUnexpectedSymbol;
2686 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002687 return ValueObjectSP();
2688 }
2689 expression_cstr++; // skip the -
2690 }
2691 case '.': // or fallthrough from ->
2692 {
2693 if (options.m_check_dot_vs_arrow_syntax && *expression_cstr == '.' &&
Greg Clayton57ee3062013-07-11 22:46:58 +00002694 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 +00002695 {
2696 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002697 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonDotInsteadOfArrow;
2698 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002699 return ValueObjectSP();
2700 }
2701 expression_cstr++; // skip .
2702 const char *next_separator = strpbrk(expression_cstr+1,"-.[");
2703 ConstString child_name;
2704 if (!next_separator) // if no other separator just expand this last layer
2705 {
2706 child_name.SetCString (expression_cstr);
Enrico Granata8c9d3562011-08-11 17:08:01 +00002707 ValueObjectSP child_valobj_sp = root->GetChildMemberWithName(child_name, true);
2708
2709 if (child_valobj_sp.get()) // we know we are done, so just return
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002710 {
Daniel Maleaa85e6b62012-12-07 22:21:08 +00002711 *first_unparsed = "";
Enrico Granata86cc9822012-03-19 22:58:49 +00002712 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonEndOfString;
2713 *final_result = ValueObject::eExpressionPathEndResultTypePlain;
Enrico Granata8c9d3562011-08-11 17:08:01 +00002714 return child_valobj_sp;
2715 }
2716 else if (options.m_no_synthetic_children == false) // let's try with synthetic children
2717 {
Enrico Granata86cc9822012-03-19 22:58:49 +00002718 if (root->IsSynthetic())
Enrico Granatadf31a8a2012-08-02 17:34:05 +00002719 {
2720 *first_unparsed = expression_cstr;
2721 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
2722 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
2723 return ValueObjectSP();
2724 }
2725
2726 child_valobj_sp = root->GetSyntheticValue();
Enrico Granata86cc9822012-03-19 22:58:49 +00002727 if (child_valobj_sp.get())
2728 child_valobj_sp = child_valobj_sp->GetChildMemberWithName(child_name, true);
Enrico Granata8c9d3562011-08-11 17:08:01 +00002729 }
2730
2731 // if we are here and options.m_no_synthetic_children is true, child_valobj_sp is going to be a NULL SP,
2732 // so we hit the "else" branch, and return an error
2733 if(child_valobj_sp.get()) // if it worked, just return
2734 {
Daniel Maleaa85e6b62012-12-07 22:21:08 +00002735 *first_unparsed = "";
Enrico Granata86cc9822012-03-19 22:58:49 +00002736 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonEndOfString;
2737 *final_result = ValueObject::eExpressionPathEndResultTypePlain;
Enrico Granata8c9d3562011-08-11 17:08:01 +00002738 return child_valobj_sp;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002739 }
2740 else
2741 {
2742 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002743 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
2744 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002745 return ValueObjectSP();
2746 }
2747 }
2748 else // other layers do expand
2749 {
2750 child_name.SetCStringWithLength(expression_cstr, next_separator - expression_cstr);
Enrico Granata8c9d3562011-08-11 17:08:01 +00002751 ValueObjectSP child_valobj_sp = root->GetChildMemberWithName(child_name, true);
2752 if (child_valobj_sp.get()) // store the new root and move on
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002753 {
Enrico Granata8c9d3562011-08-11 17:08:01 +00002754 root = child_valobj_sp;
2755 *first_unparsed = next_separator;
Enrico Granata86cc9822012-03-19 22:58:49 +00002756 *final_result = ValueObject::eExpressionPathEndResultTypePlain;
Enrico Granata8c9d3562011-08-11 17:08:01 +00002757 continue;
2758 }
2759 else if (options.m_no_synthetic_children == false) // let's try with synthetic children
2760 {
Enrico Granatadf31a8a2012-08-02 17:34:05 +00002761 if (root->IsSynthetic())
2762 {
2763 *first_unparsed = expression_cstr;
2764 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
2765 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
2766 return ValueObjectSP();
2767 }
2768
Enrico Granata86cc9822012-03-19 22:58:49 +00002769 child_valobj_sp = root->GetSyntheticValue(true);
2770 if (child_valobj_sp)
2771 child_valobj_sp = child_valobj_sp->GetChildMemberWithName(child_name, true);
Enrico Granata8c9d3562011-08-11 17:08:01 +00002772 }
2773
2774 // if we are here and options.m_no_synthetic_children is true, child_valobj_sp is going to be a NULL SP,
2775 // so we hit the "else" branch, and return an error
2776 if(child_valobj_sp.get()) // if it worked, move on
2777 {
2778 root = child_valobj_sp;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002779 *first_unparsed = next_separator;
Enrico Granata86cc9822012-03-19 22:58:49 +00002780 *final_result = ValueObject::eExpressionPathEndResultTypePlain;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002781 continue;
2782 }
2783 else
2784 {
2785 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002786 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
2787 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002788 return ValueObjectSP();
2789 }
2790 }
2791 break;
2792 }
2793 case '[':
2794 {
Greg Clayton57ee3062013-07-11 22:46:58 +00002795 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 +00002796 {
Greg Clayton57ee3062013-07-11 22:46:58 +00002797 if (!root_clang_type_info.Test(ClangASTType::eTypeIsScalar)) // if this is not even a scalar...
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002798 {
Enrico Granata27b625e2011-08-09 01:04:56 +00002799 if (options.m_no_synthetic_children) // ...only chance left is synthetic
2800 {
2801 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002802 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonRangeOperatorInvalid;
2803 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granata27b625e2011-08-09 01:04:56 +00002804 return ValueObjectSP();
2805 }
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002806 }
2807 else if (!options.m_allow_bitfields_syntax) // if this is a scalar, check that we can expand bitfields
2808 {
2809 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002810 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonRangeOperatorNotAllowed;
2811 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002812 return ValueObjectSP();
2813 }
2814 }
2815 if (*(expression_cstr+1) == ']') // if this is an unbounded range it only works for arrays
2816 {
Greg Clayton57ee3062013-07-11 22:46:58 +00002817 if (!root_clang_type_info.Test(ClangASTType::eTypeIsArray))
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002818 {
2819 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002820 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonEmptyRangeNotAllowed;
2821 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002822 return ValueObjectSP();
2823 }
2824 else // even if something follows, we cannot expand unbounded ranges, just let the caller do it
2825 {
2826 *first_unparsed = expression_cstr+2;
Enrico Granata86cc9822012-03-19 22:58:49 +00002827 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonArrayRangeOperatorMet;
2828 *final_result = ValueObject::eExpressionPathEndResultTypeUnboundedRange;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002829 return root;
2830 }
2831 }
2832 const char *separator_position = ::strchr(expression_cstr+1,'-');
2833 const char *close_bracket_position = ::strchr(expression_cstr+1,']');
2834 if (!close_bracket_position) // if there is no ], this is a syntax error
2835 {
2836 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002837 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonUnexpectedSymbol;
2838 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002839 return ValueObjectSP();
2840 }
2841 if (!separator_position || separator_position > close_bracket_position) // if no separator, this is either [] or [N]
2842 {
2843 char *end = NULL;
2844 unsigned long index = ::strtoul (expression_cstr+1, &end, 0);
2845 if (!end || end != close_bracket_position) // if something weird is in our way return an error
2846 {
2847 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002848 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonUnexpectedSymbol;
2849 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002850 return ValueObjectSP();
2851 }
2852 if (end - expression_cstr == 1) // if this is [], only return a valid value for arrays
2853 {
Greg Clayton57ee3062013-07-11 22:46:58 +00002854 if (root_clang_type_info.Test(ClangASTType::eTypeIsArray))
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002855 {
2856 *first_unparsed = expression_cstr+2;
Enrico Granata86cc9822012-03-19 22:58:49 +00002857 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonArrayRangeOperatorMet;
2858 *final_result = ValueObject::eExpressionPathEndResultTypeUnboundedRange;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002859 return root;
2860 }
2861 else
2862 {
2863 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002864 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonEmptyRangeNotAllowed;
2865 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002866 return ValueObjectSP();
2867 }
2868 }
2869 // from here on we do have a valid index
Greg Clayton57ee3062013-07-11 22:46:58 +00002870 if (root_clang_type_info.Test(ClangASTType::eTypeIsArray))
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002871 {
Greg Claytondaf515f2011-07-09 20:12:33 +00002872 ValueObjectSP child_valobj_sp = root->GetChildAtIndex(index, true);
2873 if (!child_valobj_sp)
2874 child_valobj_sp = root->GetSyntheticArrayMemberFromArray(index, true);
Enrico Granata27b625e2011-08-09 01:04:56 +00002875 if (!child_valobj_sp)
Enrico Granata86cc9822012-03-19 22:58:49 +00002876 if (root->HasSyntheticValue() && root->GetSyntheticValue()->GetNumChildren() > index)
2877 child_valobj_sp = root->GetSyntheticValue()->GetChildAtIndex(index, true);
Greg Claytondaf515f2011-07-09 20:12:33 +00002878 if (child_valobj_sp)
2879 {
2880 root = child_valobj_sp;
2881 *first_unparsed = end+1; // skip ]
Enrico Granata86cc9822012-03-19 22:58:49 +00002882 *final_result = ValueObject::eExpressionPathEndResultTypePlain;
Greg Claytondaf515f2011-07-09 20:12:33 +00002883 continue;
2884 }
2885 else
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002886 {
2887 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002888 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
2889 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002890 return ValueObjectSP();
2891 }
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002892 }
Greg Clayton57ee3062013-07-11 22:46:58 +00002893 else if (root_clang_type_info.Test(ClangASTType::eTypeIsPointer))
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002894 {
Enrico Granata86cc9822012-03-19 22:58:49 +00002895 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 +00002896 pointee_clang_type_info.Test(ClangASTType::eTypeIsScalar))
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002897 {
2898 Error error;
2899 root = root->Dereference(error);
2900 if (error.Fail() || !root.get())
2901 {
2902 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002903 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonDereferencingFailed;
2904 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002905 return ValueObjectSP();
2906 }
2907 else
2908 {
Enrico Granata86cc9822012-03-19 22:58:49 +00002909 *what_next = eExpressionPathAftermathNothing;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002910 continue;
2911 }
2912 }
2913 else
2914 {
Greg Clayton57ee3062013-07-11 22:46:58 +00002915 if (root->GetClangType().GetMinimumLanguage() == eLanguageTypeObjC
2916 && pointee_clang_type_info.AllClear(ClangASTType::eTypeIsPointer)
Greg Clayton84db9102012-03-26 23:03:23 +00002917 && root->HasSyntheticValue()
2918 && options.m_no_synthetic_children == false)
Enrico Granata27b625e2011-08-09 01:04:56 +00002919 {
Enrico Granata86cc9822012-03-19 22:58:49 +00002920 root = root->GetSyntheticValue()->GetChildAtIndex(index, true);
Enrico Granata27b625e2011-08-09 01:04:56 +00002921 }
2922 else
2923 root = root->GetSyntheticArrayMemberFromPointer(index, true);
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002924 if (!root.get())
2925 {
2926 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002927 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
2928 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002929 return ValueObjectSP();
2930 }
2931 else
2932 {
2933 *first_unparsed = end+1; // skip ]
Enrico Granata86cc9822012-03-19 22:58:49 +00002934 *final_result = ValueObject::eExpressionPathEndResultTypePlain;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002935 continue;
2936 }
2937 }
2938 }
Greg Clayton57ee3062013-07-11 22:46:58 +00002939 else if (root_clang_type_info.Test(ClangASTType::eTypeIsScalar))
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002940 {
2941 root = root->GetSyntheticBitFieldChild(index, index, true);
2942 if (!root.get())
2943 {
2944 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002945 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
2946 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002947 return ValueObjectSP();
2948 }
2949 else // we do not know how to expand members of bitfields, so we just return and let the caller do any further processing
2950 {
2951 *first_unparsed = end+1; // skip ]
Enrico Granata86cc9822012-03-19 22:58:49 +00002952 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonBitfieldRangeOperatorMet;
2953 *final_result = ValueObject::eExpressionPathEndResultTypeBitfield;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00002954 return root;
2955 }
2956 }
Greg Clayton57ee3062013-07-11 22:46:58 +00002957 else if (root_clang_type_info.Test(ClangASTType::eTypeIsVector))
Enrico Granata08a1bb82013-06-19 00:00:45 +00002958 {
2959 root = root->GetChildAtIndex(index, true);
2960 if (!root.get())
2961 {
2962 *first_unparsed = expression_cstr;
2963 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
2964 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
2965 return ValueObjectSP();
2966 }
2967 else
2968 {
2969 *first_unparsed = end+1; // skip ]
2970 *final_result = ValueObject::eExpressionPathEndResultTypePlain;
2971 continue;
2972 }
2973 }
Enrico Granata86cc9822012-03-19 22:58:49 +00002974 else if (options.m_no_synthetic_children == false)
Enrico Granata27b625e2011-08-09 01:04:56 +00002975 {
Enrico Granata86cc9822012-03-19 22:58:49 +00002976 if (root->HasSyntheticValue())
2977 root = root->GetSyntheticValue();
2978 else if (!root->IsSynthetic())
2979 {
2980 *first_unparsed = expression_cstr;
2981 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonSyntheticValueMissing;
2982 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
2983 return ValueObjectSP();
2984 }
2985 // if we are here, then root itself is a synthetic VO.. should be good to go
2986
Enrico Granata27b625e2011-08-09 01:04:56 +00002987 if (!root.get())
2988 {
2989 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00002990 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonSyntheticValueMissing;
2991 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
2992 return ValueObjectSP();
2993 }
2994 root = root->GetChildAtIndex(index, true);
2995 if (!root.get())
2996 {
2997 *first_unparsed = expression_cstr;
2998 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
2999 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granata27b625e2011-08-09 01:04:56 +00003000 return ValueObjectSP();
3001 }
Enrico Granata8c9d3562011-08-11 17:08:01 +00003002 else
3003 {
3004 *first_unparsed = end+1; // skip ]
Enrico Granata86cc9822012-03-19 22:58:49 +00003005 *final_result = ValueObject::eExpressionPathEndResultTypePlain;
Enrico Granata8c9d3562011-08-11 17:08:01 +00003006 continue;
3007 }
Enrico Granata27b625e2011-08-09 01:04:56 +00003008 }
3009 else
3010 {
3011 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003012 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
3013 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granata27b625e2011-08-09 01:04:56 +00003014 return ValueObjectSP();
3015 }
Enrico Granatafc7a7f32011-07-08 02:51:01 +00003016 }
3017 else // we have a low and a high index
3018 {
3019 char *end = NULL;
3020 unsigned long index_lower = ::strtoul (expression_cstr+1, &end, 0);
3021 if (!end || end != separator_position) // if something weird is in our way return an error
3022 {
3023 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003024 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonUnexpectedSymbol;
3025 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00003026 return ValueObjectSP();
3027 }
3028 unsigned long index_higher = ::strtoul (separator_position+1, &end, 0);
3029 if (!end || end != close_bracket_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 if (index_lower > index_higher) // swap indices if required
3037 {
3038 unsigned long temp = index_lower;
3039 index_lower = index_higher;
3040 index_higher = temp;
3041 }
Greg Clayton57ee3062013-07-11 22:46:58 +00003042 if (root_clang_type_info.Test(ClangASTType::eTypeIsScalar)) // expansion only works for scalars
Enrico Granatafc7a7f32011-07-08 02:51:01 +00003043 {
3044 root = root->GetSyntheticBitFieldChild(index_lower, index_higher, true);
3045 if (!root.get())
3046 {
3047 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003048 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
3049 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00003050 return ValueObjectSP();
3051 }
3052 else
3053 {
3054 *first_unparsed = end+1; // skip ]
Enrico Granata86cc9822012-03-19 22:58:49 +00003055 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonBitfieldRangeOperatorMet;
3056 *final_result = ValueObject::eExpressionPathEndResultTypeBitfield;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00003057 return root;
3058 }
3059 }
Greg Clayton57ee3062013-07-11 22:46:58 +00003060 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 +00003061 *what_next == ValueObject::eExpressionPathAftermathDereference &&
Greg Clayton57ee3062013-07-11 22:46:58 +00003062 pointee_clang_type_info.Test(ClangASTType::eTypeIsScalar))
Enrico Granatafc7a7f32011-07-08 02:51:01 +00003063 {
3064 Error error;
3065 root = root->Dereference(error);
3066 if (error.Fail() || !root.get())
3067 {
3068 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003069 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonDereferencingFailed;
3070 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00003071 return ValueObjectSP();
3072 }
3073 else
3074 {
Enrico Granata86cc9822012-03-19 22:58:49 +00003075 *what_next = ValueObject::eExpressionPathAftermathNothing;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00003076 continue;
3077 }
3078 }
3079 else
3080 {
3081 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003082 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonArrayRangeOperatorMet;
3083 *final_result = ValueObject::eExpressionPathEndResultTypeBoundedRange;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00003084 return root;
3085 }
3086 }
3087 break;
3088 }
3089 default: // some non-separator is in the way
3090 {
3091 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003092 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonUnexpectedSymbol;
3093 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granatafc7a7f32011-07-08 02:51:01 +00003094 return ValueObjectSP();
3095 break;
3096 }
3097 }
3098 }
3099}
3100
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003101int
3102ValueObject::ExpandArraySliceExpression(const char* expression_cstr,
3103 const char** first_unparsed,
Greg Claytonafacd142011-09-02 01:15:17 +00003104 ValueObjectSP root,
3105 ValueObjectListSP& list,
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003106 ExpressionPathScanEndReason* reason_to_stop,
3107 ExpressionPathEndResultType* final_result,
3108 const GetValueForExpressionPathOptions& options,
3109 ExpressionPathAftermath* what_next)
3110{
3111 if (!root.get())
3112 return 0;
3113
3114 *first_unparsed = expression_cstr;
3115
3116 while (true)
3117 {
3118
3119 const char* expression_cstr = *first_unparsed; // hide the top level expression_cstr
3120
Greg Clayton57ee3062013-07-11 22:46:58 +00003121 ClangASTType root_clang_type = root->GetClangType();
3122 ClangASTType pointee_clang_type;
3123 Flags pointee_clang_type_info;
3124 Flags root_clang_type_info(root_clang_type.GetTypeInfo(&pointee_clang_type));
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003125 if (pointee_clang_type)
Greg Clayton57ee3062013-07-11 22:46:58 +00003126 pointee_clang_type_info.Reset(pointee_clang_type.GetTypeInfo());
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003127
3128 if (!expression_cstr || *expression_cstr == '\0')
3129 {
Enrico Granata86cc9822012-03-19 22:58:49 +00003130 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonEndOfString;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003131 list->Append(root);
3132 return 1;
3133 }
3134
3135 switch (*expression_cstr)
3136 {
3137 case '[':
3138 {
Greg Clayton57ee3062013-07-11 22:46:58 +00003139 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 +00003140 {
Greg Clayton57ee3062013-07-11 22:46:58 +00003141 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 +00003142 {
3143 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003144 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonRangeOperatorInvalid;
3145 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003146 return 0;
3147 }
3148 else if (!options.m_allow_bitfields_syntax) // if this is a scalar, check that we can expand bitfields
3149 {
3150 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003151 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonRangeOperatorNotAllowed;
3152 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003153 return 0;
3154 }
3155 }
3156 if (*(expression_cstr+1) == ']') // if this is an unbounded range it only works for arrays
3157 {
Greg Clayton57ee3062013-07-11 22:46:58 +00003158 if (!root_clang_type_info.Test(ClangASTType::eTypeIsArray))
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003159 {
3160 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003161 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonEmptyRangeNotAllowed;
3162 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003163 return 0;
3164 }
3165 else // expand this into list
3166 {
Greg Claytonc7bece562013-01-25 18:06:21 +00003167 const size_t max_index = root->GetNumChildren() - 1;
3168 for (size_t index = 0; index < max_index; index++)
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003169 {
3170 ValueObjectSP child =
3171 root->GetChildAtIndex(index, true);
3172 list->Append(child);
3173 }
3174 *first_unparsed = expression_cstr+2;
Enrico Granata86cc9822012-03-19 22:58:49 +00003175 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonRangeOperatorExpanded;
3176 *final_result = ValueObject::eExpressionPathEndResultTypeValueObjectList;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003177 return max_index; // tell me number of items I added to the VOList
3178 }
3179 }
3180 const char *separator_position = ::strchr(expression_cstr+1,'-');
3181 const char *close_bracket_position = ::strchr(expression_cstr+1,']');
3182 if (!close_bracket_position) // if there is no ], this is a syntax error
3183 {
3184 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003185 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonUnexpectedSymbol;
3186 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003187 return 0;
3188 }
3189 if (!separator_position || separator_position > close_bracket_position) // if no separator, this is either [] or [N]
3190 {
3191 char *end = NULL;
3192 unsigned long index = ::strtoul (expression_cstr+1, &end, 0);
3193 if (!end || end != close_bracket_position) // if something weird is in our way return an error
3194 {
3195 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003196 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonUnexpectedSymbol;
3197 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003198 return 0;
3199 }
3200 if (end - expression_cstr == 1) // if this is [], only return a valid value for arrays
3201 {
Greg Clayton57ee3062013-07-11 22:46:58 +00003202 if (root_clang_type_info.Test(ClangASTType::eTypeIsArray))
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003203 {
Greg Claytonc7bece562013-01-25 18:06:21 +00003204 const size_t max_index = root->GetNumChildren() - 1;
3205 for (size_t index = 0; index < max_index; index++)
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003206 {
3207 ValueObjectSP child =
3208 root->GetChildAtIndex(index, true);
3209 list->Append(child);
3210 }
3211 *first_unparsed = expression_cstr+2;
Enrico Granata86cc9822012-03-19 22:58:49 +00003212 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonRangeOperatorExpanded;
3213 *final_result = ValueObject::eExpressionPathEndResultTypeValueObjectList;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003214 return max_index; // tell me number of items I added to the VOList
3215 }
3216 else
3217 {
3218 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003219 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonEmptyRangeNotAllowed;
3220 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003221 return 0;
3222 }
3223 }
3224 // from here on we do have a valid index
Greg Clayton57ee3062013-07-11 22:46:58 +00003225 if (root_clang_type_info.Test(ClangASTType::eTypeIsArray))
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003226 {
3227 root = root->GetChildAtIndex(index, true);
3228 if (!root.get())
3229 {
3230 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003231 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
3232 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003233 return 0;
3234 }
3235 else
3236 {
3237 list->Append(root);
3238 *first_unparsed = end+1; // skip ]
Enrico Granata86cc9822012-03-19 22:58:49 +00003239 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonRangeOperatorExpanded;
3240 *final_result = ValueObject::eExpressionPathEndResultTypeValueObjectList;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003241 return 1;
3242 }
3243 }
Greg Clayton57ee3062013-07-11 22:46:58 +00003244 else if (root_clang_type_info.Test(ClangASTType::eTypeIsPointer))
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003245 {
Enrico Granata86cc9822012-03-19 22:58:49 +00003246 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 +00003247 pointee_clang_type_info.Test(ClangASTType::eTypeIsScalar))
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003248 {
3249 Error error;
3250 root = root->Dereference(error);
3251 if (error.Fail() || !root.get())
3252 {
3253 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003254 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonDereferencingFailed;
3255 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003256 return 0;
3257 }
3258 else
3259 {
Enrico Granata86cc9822012-03-19 22:58:49 +00003260 *what_next = eExpressionPathAftermathNothing;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003261 continue;
3262 }
3263 }
3264 else
3265 {
3266 root = root->GetSyntheticArrayMemberFromPointer(index, true);
3267 if (!root.get())
3268 {
3269 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003270 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
3271 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003272 return 0;
3273 }
3274 else
3275 {
3276 list->Append(root);
3277 *first_unparsed = end+1; // skip ]
Enrico Granata86cc9822012-03-19 22:58:49 +00003278 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonRangeOperatorExpanded;
3279 *final_result = ValueObject::eExpressionPathEndResultTypeValueObjectList;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003280 return 1;
3281 }
3282 }
3283 }
3284 else /*if (ClangASTContext::IsScalarType(root_clang_type))*/
3285 {
3286 root = root->GetSyntheticBitFieldChild(index, index, true);
3287 if (!root.get())
3288 {
3289 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003290 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
3291 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003292 return 0;
3293 }
3294 else // we do not know how to expand members of bitfields, so we just return and let the caller do any further processing
3295 {
3296 list->Append(root);
3297 *first_unparsed = end+1; // skip ]
Enrico Granata86cc9822012-03-19 22:58:49 +00003298 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonRangeOperatorExpanded;
3299 *final_result = ValueObject::eExpressionPathEndResultTypeValueObjectList;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003300 return 1;
3301 }
3302 }
3303 }
3304 else // we have a low and a high index
3305 {
3306 char *end = NULL;
3307 unsigned long index_lower = ::strtoul (expression_cstr+1, &end, 0);
3308 if (!end || end != separator_position) // if something weird is in our way return an error
3309 {
3310 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003311 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonUnexpectedSymbol;
3312 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003313 return 0;
3314 }
3315 unsigned long index_higher = ::strtoul (separator_position+1, &end, 0);
3316 if (!end || end != close_bracket_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 if (index_lower > index_higher) // swap indices if required
3324 {
3325 unsigned long temp = index_lower;
3326 index_lower = index_higher;
3327 index_higher = temp;
3328 }
Greg Clayton57ee3062013-07-11 22:46:58 +00003329 if (root_clang_type_info.Test(ClangASTType::eTypeIsScalar)) // expansion only works for scalars
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003330 {
3331 root = root->GetSyntheticBitFieldChild(index_lower, index_higher, true);
3332 if (!root.get())
3333 {
3334 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003335 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonNoSuchChild;
3336 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003337 return 0;
3338 }
3339 else
3340 {
3341 list->Append(root);
3342 *first_unparsed = end+1; // skip ]
Enrico Granata86cc9822012-03-19 22:58:49 +00003343 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonRangeOperatorExpanded;
3344 *final_result = ValueObject::eExpressionPathEndResultTypeValueObjectList;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003345 return 1;
3346 }
3347 }
Greg Clayton57ee3062013-07-11 22:46:58 +00003348 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 +00003349 *what_next == ValueObject::eExpressionPathAftermathDereference &&
Greg Clayton57ee3062013-07-11 22:46:58 +00003350 pointee_clang_type_info.Test(ClangASTType::eTypeIsScalar))
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003351 {
3352 Error error;
3353 root = root->Dereference(error);
3354 if (error.Fail() || !root.get())
3355 {
3356 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003357 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonDereferencingFailed;
3358 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003359 return 0;
3360 }
3361 else
3362 {
Enrico Granata86cc9822012-03-19 22:58:49 +00003363 *what_next = ValueObject::eExpressionPathAftermathNothing;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003364 continue;
3365 }
3366 }
3367 else
3368 {
Johnny Chen44805302011-07-19 19:48:13 +00003369 for (unsigned long index = index_lower;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003370 index <= index_higher; index++)
3371 {
3372 ValueObjectSP child =
3373 root->GetChildAtIndex(index, true);
3374 list->Append(child);
3375 }
3376 *first_unparsed = end+1;
Enrico Granata86cc9822012-03-19 22:58:49 +00003377 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonRangeOperatorExpanded;
3378 *final_result = ValueObject::eExpressionPathEndResultTypeValueObjectList;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003379 return index_higher-index_lower+1; // tell me number of items I added to the VOList
3380 }
3381 }
3382 break;
3383 }
3384 default: // some non-[ separator, or something entirely wrong, is in the way
3385 {
3386 *first_unparsed = expression_cstr;
Enrico Granata86cc9822012-03-19 22:58:49 +00003387 *reason_to_stop = ValueObject::eExpressionPathScanEndReasonUnexpectedSymbol;
3388 *final_result = ValueObject::eExpressionPathEndResultTypeInvalid;
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00003389 return 0;
3390 break;
3391 }
3392 }
3393 }
3394}
3395
Enrico Granata4d93b8c2013-09-30 19:11:51 +00003396void
3397ValueObject::LogValueObject (Log *log)
Greg Clayton1d3afba2010-10-05 00:00:42 +00003398{
Enrico Granata4d93b8c2013-09-30 19:11:51 +00003399 if (log)
3400 return LogValueObject (log, DumpValueObjectOptions::DefaultOptions());
Greg Clayton1d3afba2010-10-05 00:00:42 +00003401}
3402
Enrico Granata0c489f52012-03-01 04:24:26 +00003403void
Enrico Granata4d93b8c2013-09-30 19:11:51 +00003404ValueObject::LogValueObject (Log *log, const DumpValueObjectOptions& options)
Greg Claytonf830dbb2012-03-22 18:15:37 +00003405{
Enrico Granata4d93b8c2013-09-30 19:11:51 +00003406 if (log)
Greg Claytonf830dbb2012-03-22 18:15:37 +00003407 {
3408 StreamString s;
Enrico Granata4d93b8c2013-09-30 19:11:51 +00003409 Dump (s, options);
Greg Claytonf830dbb2012-03-22 18:15:37 +00003410 if (s.GetSize())
3411 log->PutCString(s.GetData());
3412 }
3413}
3414
3415void
Enrico Granata4d93b8c2013-09-30 19:11:51 +00003416ValueObject::Dump (Stream &s)
Enrico Granata0c489f52012-03-01 04:24:26 +00003417{
3418
Enrico Granata4d93b8c2013-09-30 19:11:51 +00003419 ValueObjectPrinter printer(this,&s,DumpValueObjectOptions::DefaultOptions());
3420 printer.PrintValueObject();
Enrico Granata0c489f52012-03-01 04:24:26 +00003421}
3422
3423void
Enrico Granata4d93b8c2013-09-30 19:11:51 +00003424ValueObject::Dump (Stream &s,
3425 const DumpValueObjectOptions& options)
Enrico Granata0c489f52012-03-01 04:24:26 +00003426{
Enrico Granata4d93b8c2013-09-30 19:11:51 +00003427 ValueObjectPrinter printer(this,&s,options);
3428 printer.PrintValueObject();
Enrico Granata0c489f52012-03-01 04:24:26 +00003429}
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003430
3431ValueObjectSP
Jim Ingham6035b672011-03-31 00:19:25 +00003432ValueObject::CreateConstantValue (const ConstString &name)
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003433{
3434 ValueObjectSP valobj_sp;
3435
Enrico Granatac3e320a2011-08-02 17:27:39 +00003436 if (UpdateValueIfNeeded(false) && m_error.Success())
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003437 {
Greg Claytoncc4d0142012-02-17 07:49:44 +00003438 ExecutionContext exe_ctx (GetExecutionContextRef());
Greg Claytoncc4d0142012-02-17 07:49:44 +00003439
3440 DataExtractor data;
3441 data.SetByteOrder (m_data.GetByteOrder());
3442 data.SetAddressByteSize(m_data.GetAddressByteSize());
3443
Enrico Granata9f1e2042012-04-24 22:15:37 +00003444 if (IsBitfield())
3445 {
3446 Value v(Scalar(GetValueAsUnsigned(UINT64_MAX)));
Greg Clayton57ee3062013-07-11 22:46:58 +00003447 m_error = v.GetValueAsData (&exe_ctx, data, 0, GetModule().get());
Enrico Granata9f1e2042012-04-24 22:15:37 +00003448 }
3449 else
Greg Clayton57ee3062013-07-11 22:46:58 +00003450 m_error = m_value.GetValueAsData (&exe_ctx, data, 0, GetModule().get());
Greg Claytoncc4d0142012-02-17 07:49:44 +00003451
3452 valobj_sp = ValueObjectConstResult::Create (exe_ctx.GetBestExecutionContextScope(),
Greg Claytoncc4d0142012-02-17 07:49:44 +00003453 GetClangType(),
3454 name,
3455 data,
3456 GetAddressOf());
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003457 }
Jim Ingham6035b672011-03-31 00:19:25 +00003458
3459 if (!valobj_sp)
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003460 {
Greg Claytoneeb15652013-12-10 23:16:40 +00003461 ExecutionContext exe_ctx (GetExecutionContextRef());
3462 valobj_sp = ValueObjectConstResult::Create (exe_ctx.GetBestExecutionContextScope(), m_error);
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003463 }
3464 return valobj_sp;
3465}
3466
Greg Claytonafacd142011-09-02 01:15:17 +00003467ValueObjectSP
Greg Claytonaf67cec2010-12-20 20:49:23 +00003468ValueObject::Dereference (Error &error)
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003469{
Jim Ingham58b59f92011-04-22 23:53:53 +00003470 if (m_deref_valobj)
3471 return m_deref_valobj->GetSP();
Jim Ingham78a685a2011-04-16 00:01:13 +00003472
Greg Clayton54979cd2010-12-15 05:08:08 +00003473 const bool is_pointer_type = IsPointerType();
3474 if (is_pointer_type)
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003475 {
3476 bool omit_empty_base_classes = true;
Greg Claytondaf515f2011-07-09 20:12:33 +00003477 bool ignore_array_bounds = false;
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003478
3479 std::string child_name_str;
3480 uint32_t child_byte_size = 0;
3481 int32_t child_byte_offset = 0;
3482 uint32_t child_bitfield_bit_size = 0;
3483 uint32_t child_bitfield_bit_offset = 0;
3484 bool child_is_base_class = false;
Greg Claytone221f822011-01-21 01:59:00 +00003485 bool child_is_deref_of_parent = false;
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003486 const bool transparent_pointers = false;
Greg Clayton57ee3062013-07-11 22:46:58 +00003487 ClangASTType clang_type = GetClangType();
3488 ClangASTType child_clang_type;
Jim Inghamd555bac2011-06-24 22:03:24 +00003489
Greg Claytoncc4d0142012-02-17 07:49:44 +00003490 ExecutionContext exe_ctx (GetExecutionContextRef());
Jim Inghamd555bac2011-06-24 22:03:24 +00003491
Greg Clayton57ee3062013-07-11 22:46:58 +00003492 child_clang_type = clang_type.GetChildClangTypeAtIndex (&exe_ctx,
3493 GetName().GetCString(),
3494 0,
3495 transparent_pointers,
3496 omit_empty_base_classes,
3497 ignore_array_bounds,
3498 child_name_str,
3499 child_byte_size,
3500 child_byte_offset,
3501 child_bitfield_bit_size,
3502 child_bitfield_bit_offset,
3503 child_is_base_class,
3504 child_is_deref_of_parent);
Greg Clayton3e06bd92011-01-09 21:07:35 +00003505 if (child_clang_type && child_byte_size)
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003506 {
3507 ConstString child_name;
3508 if (!child_name_str.empty())
3509 child_name.SetCString (child_name_str.c_str());
3510
Jim Ingham58b59f92011-04-22 23:53:53 +00003511 m_deref_valobj = new ValueObjectChild (*this,
Jim Ingham58b59f92011-04-22 23:53:53 +00003512 child_clang_type,
3513 child_name,
3514 child_byte_size,
3515 child_byte_offset,
3516 child_bitfield_bit_size,
3517 child_bitfield_bit_offset,
3518 child_is_base_class,
Enrico Granata9128ee22011-09-06 19:20:51 +00003519 child_is_deref_of_parent,
3520 eAddressTypeInvalid);
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003521 }
3522 }
Greg Clayton54979cd2010-12-15 05:08:08 +00003523
Jim Ingham58b59f92011-04-22 23:53:53 +00003524 if (m_deref_valobj)
Greg Clayton54979cd2010-12-15 05:08:08 +00003525 {
3526 error.Clear();
Jim Ingham58b59f92011-04-22 23:53:53 +00003527 return m_deref_valobj->GetSP();
Greg Clayton54979cd2010-12-15 05:08:08 +00003528 }
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003529 else
3530 {
Greg Clayton54979cd2010-12-15 05:08:08 +00003531 StreamString strm;
Greg Clayton6beaaa62011-01-17 03:46:26 +00003532 GetExpressionPath(strm, true);
Greg Clayton54979cd2010-12-15 05:08:08 +00003533
3534 if (is_pointer_type)
3535 error.SetErrorStringWithFormat("dereference failed: (%s) %s", GetTypeName().AsCString("<invalid type>"), strm.GetString().c_str());
3536 else
3537 error.SetErrorStringWithFormat("not a pointer type: (%s) %s", GetTypeName().AsCString("<invalid type>"), strm.GetString().c_str());
Jim Ingham58b59f92011-04-22 23:53:53 +00003538 return ValueObjectSP();
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003539 }
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003540}
3541
Greg Claytonafacd142011-09-02 01:15:17 +00003542ValueObjectSP
Greg Clayton54979cd2010-12-15 05:08:08 +00003543ValueObject::AddressOf (Error &error)
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003544{
Jim Ingham78a685a2011-04-16 00:01:13 +00003545 if (m_addr_of_valobj_sp)
3546 return m_addr_of_valobj_sp;
3547
Greg Claytone0d378b2011-03-24 21:19:54 +00003548 AddressType address_type = eAddressTypeInvalid;
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003549 const bool scalar_is_load_address = false;
Enrico Granata9128ee22011-09-06 19:20:51 +00003550 addr_t addr = GetAddressOf (scalar_is_load_address, &address_type);
Greg Clayton54979cd2010-12-15 05:08:08 +00003551 error.Clear();
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003552 if (addr != LLDB_INVALID_ADDRESS)
3553 {
3554 switch (address_type)
3555 {
3556 case eAddressTypeInvalid:
Greg Clayton54979cd2010-12-15 05:08:08 +00003557 {
3558 StreamString expr_path_strm;
Greg Clayton6beaaa62011-01-17 03:46:26 +00003559 GetExpressionPath(expr_path_strm, true);
Greg Clayton54979cd2010-12-15 05:08:08 +00003560 error.SetErrorStringWithFormat("'%s' is not in memory", expr_path_strm.GetString().c_str());
3561 }
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003562 break;
Greg Clayton54979cd2010-12-15 05:08:08 +00003563
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003564 case eAddressTypeFile:
3565 case eAddressTypeLoad:
3566 case eAddressTypeHost:
3567 {
Greg Clayton57ee3062013-07-11 22:46:58 +00003568 ClangASTType clang_type = GetClangType();
3569 if (clang_type)
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003570 {
3571 std::string name (1, '&');
3572 name.append (m_name.AsCString(""));
Greg Claytoncc4d0142012-02-17 07:49:44 +00003573 ExecutionContext exe_ctx (GetExecutionContextRef());
3574 m_addr_of_valobj_sp = ValueObjectConstResult::Create (exe_ctx.GetBestExecutionContextScope(),
Greg Clayton57ee3062013-07-11 22:46:58 +00003575 clang_type.GetPointerType(),
Jim Ingham58b59f92011-04-22 23:53:53 +00003576 ConstString (name.c_str()),
3577 addr,
3578 eAddressTypeInvalid,
3579 m_data.GetAddressByteSize());
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003580 }
3581 }
3582 break;
3583 }
3584 }
Sean Callananed185ab2013-04-19 19:47:32 +00003585 else
3586 {
3587 StreamString expr_path_strm;
3588 GetExpressionPath(expr_path_strm, true);
3589 error.SetErrorStringWithFormat("'%s' doesn't have a valid address", expr_path_strm.GetString().c_str());
3590 }
3591
Jim Ingham78a685a2011-04-16 00:01:13 +00003592 return m_addr_of_valobj_sp;
Greg Clayton8b2fe6d2010-12-14 02:59:59 +00003593}
3594
Greg Clayton9a142cf2012-02-03 05:34:10 +00003595ValueObjectSP
3596ValueObject::Cast (const ClangASTType &clang_ast_type)
3597{
Greg Clayton81e871e2012-02-04 02:27:34 +00003598 return ValueObjectCast::Create (*this, GetName(), clang_ast_type);
Greg Clayton9a142cf2012-02-03 05:34:10 +00003599}
Greg Claytonb2dcc362011-05-05 23:32:56 +00003600
Greg Claytonafacd142011-09-02 01:15:17 +00003601ValueObjectSP
Greg Claytonb2dcc362011-05-05 23:32:56 +00003602ValueObject::CastPointerType (const char *name, ClangASTType &clang_ast_type)
3603{
Greg Claytonafacd142011-09-02 01:15:17 +00003604 ValueObjectSP valobj_sp;
Greg Claytonb2dcc362011-05-05 23:32:56 +00003605 AddressType address_type;
Enrico Granata9128ee22011-09-06 19:20:51 +00003606 addr_t ptr_value = GetPointerValue (&address_type);
Greg Claytonb2dcc362011-05-05 23:32:56 +00003607
3608 if (ptr_value != LLDB_INVALID_ADDRESS)
3609 {
Greg Claytone72dfb32012-02-24 01:59:29 +00003610 Address ptr_addr (ptr_value);
Greg Claytoncc4d0142012-02-17 07:49:44 +00003611 ExecutionContext exe_ctx (GetExecutionContextRef());
3612 valobj_sp = ValueObjectMemory::Create (exe_ctx.GetBestExecutionContextScope(),
Greg Claytonb2dcc362011-05-05 23:32:56 +00003613 name,
3614 ptr_addr,
3615 clang_ast_type);
3616 }
3617 return valobj_sp;
3618}
3619
Greg Claytonafacd142011-09-02 01:15:17 +00003620ValueObjectSP
Greg Claytonb2dcc362011-05-05 23:32:56 +00003621ValueObject::CastPointerType (const char *name, TypeSP &type_sp)
3622{
Greg Claytonafacd142011-09-02 01:15:17 +00003623 ValueObjectSP valobj_sp;
Greg Claytonb2dcc362011-05-05 23:32:56 +00003624 AddressType address_type;
Enrico Granata9128ee22011-09-06 19:20:51 +00003625 addr_t ptr_value = GetPointerValue (&address_type);
Greg Claytonb2dcc362011-05-05 23:32:56 +00003626
3627 if (ptr_value != LLDB_INVALID_ADDRESS)
3628 {
Greg Claytone72dfb32012-02-24 01:59:29 +00003629 Address ptr_addr (ptr_value);
Greg Claytoncc4d0142012-02-17 07:49:44 +00003630 ExecutionContext exe_ctx (GetExecutionContextRef());
3631 valobj_sp = ValueObjectMemory::Create (exe_ctx.GetBestExecutionContextScope(),
Greg Claytonb2dcc362011-05-05 23:32:56 +00003632 name,
3633 ptr_addr,
3634 type_sp);
3635 }
3636 return valobj_sp;
3637}
3638
Jim Ingham6035b672011-03-31 00:19:25 +00003639ValueObject::EvaluationPoint::EvaluationPoint () :
Greg Claytoncc4d0142012-02-17 07:49:44 +00003640 m_mod_id(),
3641 m_exe_ctx_ref(),
3642 m_needs_update (true),
3643 m_first_update (true)
Jim Ingham6035b672011-03-31 00:19:25 +00003644{
3645}
3646
3647ValueObject::EvaluationPoint::EvaluationPoint (ExecutionContextScope *exe_scope, bool use_selected):
Greg Claytoncc4d0142012-02-17 07:49:44 +00003648 m_mod_id(),
3649 m_exe_ctx_ref(),
Jim Ingham6035b672011-03-31 00:19:25 +00003650 m_needs_update (true),
Greg Claytoncc4d0142012-02-17 07:49:44 +00003651 m_first_update (true)
Jim Ingham6035b672011-03-31 00:19:25 +00003652{
Greg Claytoncc4d0142012-02-17 07:49:44 +00003653 ExecutionContext exe_ctx(exe_scope);
3654 TargetSP target_sp (exe_ctx.GetTargetSP());
3655 if (target_sp)
Jim Ingham6035b672011-03-31 00:19:25 +00003656 {
Greg Claytoncc4d0142012-02-17 07:49:44 +00003657 m_exe_ctx_ref.SetTargetSP (target_sp);
3658 ProcessSP process_sp (exe_ctx.GetProcessSP());
3659 if (!process_sp)
3660 process_sp = target_sp->GetProcessSP();
Jim Ingham6035b672011-03-31 00:19:25 +00003661
Greg Claytoncc4d0142012-02-17 07:49:44 +00003662 if (process_sp)
Jim Ingham6035b672011-03-31 00:19:25 +00003663 {
Greg Claytoncc4d0142012-02-17 07:49:44 +00003664 m_mod_id = process_sp->GetModID();
3665 m_exe_ctx_ref.SetProcessSP (process_sp);
Jim Ingham4b536182011-08-09 02:12:22 +00003666
Greg Claytoncc4d0142012-02-17 07:49:44 +00003667 ThreadSP thread_sp (exe_ctx.GetThreadSP());
Jim Ingham6035b672011-03-31 00:19:25 +00003668
Greg Claytoncc4d0142012-02-17 07:49:44 +00003669 if (!thread_sp)
Jim Ingham6035b672011-03-31 00:19:25 +00003670 {
3671 if (use_selected)
Greg Claytoncc4d0142012-02-17 07:49:44 +00003672 thread_sp = process_sp->GetThreadList().GetSelectedThread();
Jim Ingham6035b672011-03-31 00:19:25 +00003673 }
Jim Ingham6035b672011-03-31 00:19:25 +00003674
Greg Claytoncc4d0142012-02-17 07:49:44 +00003675 if (thread_sp)
Jim Ingham6035b672011-03-31 00:19:25 +00003676 {
Greg Claytoncc4d0142012-02-17 07:49:44 +00003677 m_exe_ctx_ref.SetThreadSP(thread_sp);
Greg Claytonc14ee322011-09-22 04:58:26 +00003678
Jason Molendab57e4a12013-11-04 09:33:30 +00003679 StackFrameSP frame_sp (exe_ctx.GetFrameSP());
Greg Claytoncc4d0142012-02-17 07:49:44 +00003680 if (!frame_sp)
Jim Ingham6035b672011-03-31 00:19:25 +00003681 {
3682 if (use_selected)
Greg Claytoncc4d0142012-02-17 07:49:44 +00003683 frame_sp = thread_sp->GetSelectedFrame();
Jim Ingham6035b672011-03-31 00:19:25 +00003684 }
Greg Claytoncc4d0142012-02-17 07:49:44 +00003685 if (frame_sp)
3686 m_exe_ctx_ref.SetFrameSP(frame_sp);
Jim Ingham6035b672011-03-31 00:19:25 +00003687 }
3688 }
3689 }
Jim Ingham6035b672011-03-31 00:19:25 +00003690}
3691
3692ValueObject::EvaluationPoint::EvaluationPoint (const ValueObject::EvaluationPoint &rhs) :
Greg Claytoncc4d0142012-02-17 07:49:44 +00003693 m_mod_id(),
3694 m_exe_ctx_ref(rhs.m_exe_ctx_ref),
3695 m_needs_update (true),
3696 m_first_update (true)
Jim Ingham6035b672011-03-31 00:19:25 +00003697{
3698}
3699
3700ValueObject::EvaluationPoint::~EvaluationPoint ()
3701{
3702}
3703
Jim Ingham6035b672011-03-31 00:19:25 +00003704// This function checks the EvaluationPoint against the current process state. If the current
3705// state matches the evaluation point, or the evaluation point is already invalid, then we return
3706// false, meaning "no change". If the current state is different, we update our state, and return
3707// true meaning "yes, change". If we did see a change, we also set m_needs_update to true, so
3708// future calls to NeedsUpdate will return true.
Jim Ingham9ee01152011-12-10 01:49:43 +00003709// exe_scope will be set to the current execution context scope.
Jim Ingham6035b672011-03-31 00:19:25 +00003710
3711bool
Greg Claytoncc4d0142012-02-17 07:49:44 +00003712ValueObject::EvaluationPoint::SyncWithProcessState()
Jim Ingham6035b672011-03-31 00:19:25 +00003713{
Jim Ingham73ca05a2011-12-17 01:35:57 +00003714
3715 // 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 +00003716 const bool thread_and_frame_only_if_stopped = true;
3717 ExecutionContext exe_ctx(m_exe_ctx_ref.Lock(thread_and_frame_only_if_stopped));
Jim Ingham73ca05a2011-12-17 01:35:57 +00003718
Greg Claytoncc4d0142012-02-17 07:49:44 +00003719 if (exe_ctx.GetTargetPtr() == NULL)
Jim Ingham73ca05a2011-12-17 01:35:57 +00003720 return false;
3721
Jim Ingham6035b672011-03-31 00:19:25 +00003722 // If we don't have a process nothing can change.
Greg Claytoncc4d0142012-02-17 07:49:44 +00003723 Process *process = exe_ctx.GetProcessPtr();
3724 if (process == NULL)
Jim Ingham6035b672011-03-31 00:19:25 +00003725 return false;
Jim Ingham73ca05a2011-12-17 01:35:57 +00003726
Jim Ingham6035b672011-03-31 00:19:25 +00003727 // If our stop id is the current stop ID, nothing has changed:
Greg Claytoncc4d0142012-02-17 07:49:44 +00003728 ProcessModID current_mod_id = process->GetModID();
Jim Ingham4b536182011-08-09 02:12:22 +00003729
Jim Ingham78a685a2011-04-16 00:01:13 +00003730 // If the current stop id is 0, either we haven't run yet, or the process state has been cleared.
3731 // In either case, we aren't going to be able to sync with the process state.
Jim Ingham4b536182011-08-09 02:12:22 +00003732 if (current_mod_id.GetStopID() == 0)
Jim Ingham78a685a2011-04-16 00:01:13 +00003733 return false;
Jim Ingham9ee01152011-12-10 01:49:43 +00003734
Greg Clayton23f59502012-07-17 03:23:13 +00003735 bool changed = false;
3736 const bool was_valid = m_mod_id.IsValid();
3737 if (was_valid)
Greg Clayton7e9b1fd2011-08-12 21:40:01 +00003738 {
3739 if (m_mod_id == current_mod_id)
3740 {
Jim Ingham5cfbe4a2012-01-12 22:42:34 +00003741 // Everything is already up to date in this object, no need to
Greg Clayton7e9b1fd2011-08-12 21:40:01 +00003742 // update the execution context scope.
Jim Ingham9ee01152011-12-10 01:49:43 +00003743 changed = false;
Greg Clayton7e9b1fd2011-08-12 21:40:01 +00003744 }
Jim Ingham9ee01152011-12-10 01:49:43 +00003745 else
3746 {
3747 m_mod_id = current_mod_id;
3748 m_needs_update = true;
3749 changed = true;
3750 }
Greg Clayton7e9b1fd2011-08-12 21:40:01 +00003751 }
Jim Ingham6035b672011-03-31 00:19:25 +00003752
Jim Ingham73ca05a2011-12-17 01:35:57 +00003753 // Now re-look up the thread and frame in case the underlying objects have gone away & been recreated.
3754 // That way we'll be sure to return a valid exe_scope.
3755 // 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 +00003756
Greg Claytoncc4d0142012-02-17 07:49:44 +00003757 if (m_exe_ctx_ref.HasThreadRef())
Jim Ingham6035b672011-03-31 00:19:25 +00003758 {
Greg Claytoncc4d0142012-02-17 07:49:44 +00003759 ThreadSP thread_sp (m_exe_ctx_ref.GetThreadSP());
3760 if (thread_sp)
Greg Clayton262f80d2011-07-06 16:49:27 +00003761 {
Greg Claytoncc4d0142012-02-17 07:49:44 +00003762 if (m_exe_ctx_ref.HasFrameRef())
3763 {
Jason Molendab57e4a12013-11-04 09:33:30 +00003764 StackFrameSP frame_sp (m_exe_ctx_ref.GetFrameSP());
Greg Claytoncc4d0142012-02-17 07:49:44 +00003765 if (!frame_sp)
3766 {
3767 // We used to have a frame, but now it is gone
3768 SetInvalid();
Greg Clayton23f59502012-07-17 03:23:13 +00003769 changed = was_valid;
Greg Claytoncc4d0142012-02-17 07:49:44 +00003770 }
3771 }
Greg Clayton262f80d2011-07-06 16:49:27 +00003772 }
Jim Ingham6035b672011-03-31 00:19:25 +00003773 else
3774 {
Greg Claytoncc4d0142012-02-17 07:49:44 +00003775 // We used to have a thread, but now it is gone
3776 SetInvalid();
Greg Clayton23f59502012-07-17 03:23:13 +00003777 changed = was_valid;
Jim Ingham6035b672011-03-31 00:19:25 +00003778 }
Greg Claytoncc4d0142012-02-17 07:49:44 +00003779
Jim Ingham6035b672011-03-31 00:19:25 +00003780 }
Jim Ingham9ee01152011-12-10 01:49:43 +00003781 return changed;
Jim Ingham6035b672011-03-31 00:19:25 +00003782}
3783
Jim Ingham61be0902011-05-02 18:13:59 +00003784void
3785ValueObject::EvaluationPoint::SetUpdated ()
3786{
Greg Claytoncc4d0142012-02-17 07:49:44 +00003787 ProcessSP process_sp(m_exe_ctx_ref.GetProcessSP());
3788 if (process_sp)
3789 m_mod_id = process_sp->GetModID();
Jim Ingham61be0902011-05-02 18:13:59 +00003790 m_first_update = false;
3791 m_needs_update = false;
Jim Ingham61be0902011-05-02 18:13:59 +00003792}
3793
3794
Enrico Granataf2bbf712011-07-15 02:26:42 +00003795
3796void
Enrico Granata86cc9822012-03-19 22:58:49 +00003797ValueObject::ClearUserVisibleData(uint32_t clear_mask)
Enrico Granataf2bbf712011-07-15 02:26:42 +00003798{
Enrico Granata86cc9822012-03-19 22:58:49 +00003799 if ((clear_mask & eClearUserVisibleDataItemsValue) == eClearUserVisibleDataItemsValue)
3800 m_value_str.clear();
3801
3802 if ((clear_mask & eClearUserVisibleDataItemsLocation) == eClearUserVisibleDataItemsLocation)
3803 m_location_str.clear();
3804
3805 if ((clear_mask & eClearUserVisibleDataItemsSummary) == eClearUserVisibleDataItemsSummary)
3806 {
Enrico Granata86cc9822012-03-19 22:58:49 +00003807 m_summary_str.clear();
3808 }
3809
3810 if ((clear_mask & eClearUserVisibleDataItemsDescription) == eClearUserVisibleDataItemsDescription)
3811 m_object_desc_str.clear();
3812
3813 if ((clear_mask & eClearUserVisibleDataItemsSyntheticChildren) == eClearUserVisibleDataItemsSyntheticChildren)
3814 {
3815 if (m_synthetic_value)
3816 m_synthetic_value = NULL;
3817 }
Johnny Chen44805302011-07-19 19:48:13 +00003818}
Enrico Granata9128ee22011-09-06 19:20:51 +00003819
3820SymbolContextScope *
3821ValueObject::GetSymbolContextScope()
3822{
3823 if (m_parent)
3824 {
3825 if (!m_parent->IsPointerOrReferenceType())
3826 return m_parent->GetSymbolContextScope();
3827 }
3828 return NULL;
3829}
Enrico Granatab2698cd2012-09-13 18:27:09 +00003830
3831lldb::ValueObjectSP
3832ValueObject::CreateValueObjectFromExpression (const char* name,
3833 const char* expression,
3834 const ExecutionContext& exe_ctx)
3835{
3836 lldb::ValueObjectSP retval_sp;
3837 lldb::TargetSP target_sp(exe_ctx.GetTargetSP());
3838 if (!target_sp)
3839 return retval_sp;
3840 if (!expression || !*expression)
3841 return retval_sp;
3842 target_sp->EvaluateExpression (expression,
3843 exe_ctx.GetFrameSP().get(),
3844 retval_sp);
3845 if (retval_sp && name && *name)
3846 retval_sp->SetName(ConstString(name));
3847 return retval_sp;
3848}
3849
3850lldb::ValueObjectSP
3851ValueObject::CreateValueObjectFromAddress (const char* name,
3852 uint64_t address,
3853 const ExecutionContext& exe_ctx,
3854 ClangASTType type)
3855{
Greg Clayton57ee3062013-07-11 22:46:58 +00003856 if (type)
Enrico Granatab2698cd2012-09-13 18:27:09 +00003857 {
Greg Clayton57ee3062013-07-11 22:46:58 +00003858 ClangASTType pointer_type(type.GetPointerType());
3859 if (pointer_type)
3860 {
3861 lldb::DataBufferSP buffer(new lldb_private::DataBufferHeap(&address,sizeof(lldb::addr_t)));
3862 lldb::ValueObjectSP ptr_result_valobj_sp(ValueObjectConstResult::Create (exe_ctx.GetBestExecutionContextScope(),
3863 pointer_type,
3864 ConstString(name),
3865 buffer,
3866 lldb::endian::InlHostByteOrder(),
3867 exe_ctx.GetAddressByteSize()));
3868 if (ptr_result_valobj_sp)
3869 {
3870 ptr_result_valobj_sp->GetValue().SetValueType(Value::eValueTypeLoadAddress);
3871 Error err;
3872 ptr_result_valobj_sp = ptr_result_valobj_sp->Dereference(err);
3873 if (ptr_result_valobj_sp && name && *name)
3874 ptr_result_valobj_sp->SetName(ConstString(name));
3875 }
3876 return ptr_result_valobj_sp;
3877 }
Enrico Granatab2698cd2012-09-13 18:27:09 +00003878 }
Greg Clayton57ee3062013-07-11 22:46:58 +00003879 return lldb::ValueObjectSP();
Enrico Granatab2698cd2012-09-13 18:27:09 +00003880}
3881
3882lldb::ValueObjectSP
3883ValueObject::CreateValueObjectFromData (const char* name,
3884 DataExtractor& data,
3885 const ExecutionContext& exe_ctx,
3886 ClangASTType type)
3887{
3888 lldb::ValueObjectSP new_value_sp;
3889 new_value_sp = ValueObjectConstResult::Create (exe_ctx.GetBestExecutionContextScope(),
Greg Clayton57ee3062013-07-11 22:46:58 +00003890 type,
Enrico Granatab2698cd2012-09-13 18:27:09 +00003891 ConstString(name),
3892 data,
3893 LLDB_INVALID_ADDRESS);
3894 new_value_sp->SetAddressTypeOfChildren(eAddressTypeLoad);
3895 if (new_value_sp && name && *name)
3896 new_value_sp->SetName(ConstString(name));
3897 return new_value_sp;
3898}
Enrico Granata4873e522013-04-11 22:48:58 +00003899
3900ModuleSP
3901ValueObject::GetModule ()
3902{
3903 ValueObject* root(GetRoot());
3904 if (root != this)
3905 return root->GetModule();
3906 return lldb::ModuleSP();
3907}
3908
3909ValueObject*
3910ValueObject::GetRoot ()
3911{
3912 if (m_root)
3913 return m_root;
3914 ValueObject* parent = m_parent;
3915 if (!parent)
3916 return (m_root = this);
3917 while (parent->m_parent)
3918 {
3919 if (parent->m_root)
3920 return (m_root = parent->m_root);
3921 parent = parent->m_parent;
3922 }
3923 return (m_root = parent);
3924}
3925
3926AddressType
3927ValueObject::GetAddressTypeOfChildren()
3928{
3929 if (m_address_type_of_ptr_or_ref_children == eAddressTypeInvalid)
3930 {
3931 ValueObject* root(GetRoot());
3932 if (root != this)
3933 return root->GetAddressTypeOfChildren();
3934 }
3935 return m_address_type_of_ptr_or_ref_children;
3936}
3937
3938lldb::DynamicValueType
3939ValueObject::GetDynamicValueType ()
3940{
3941 ValueObject* with_dv_info = this;
3942 while (with_dv_info)
3943 {
3944 if (with_dv_info->HasDynamicValueTypeInfo())
3945 return with_dv_info->GetDynamicValueTypeImpl();
3946 with_dv_info = with_dv_info->m_parent;
3947 }
3948 return lldb::eNoDynamicValues;
3949}
Enrico Granata39d51412013-05-31 17:43:40 +00003950
Enrico Granata4873e522013-04-11 22:48:58 +00003951lldb::Format
3952ValueObject::GetFormat () const
3953{
3954 const ValueObject* with_fmt_info = this;
3955 while (with_fmt_info)
3956 {
3957 if (with_fmt_info->m_format != lldb::eFormatDefault)
3958 return with_fmt_info->m_format;
3959 with_fmt_info = with_fmt_info->m_parent;
3960 }
3961 return m_format;
3962}