blob: a6545b19d600062c1e897a31766bc387118e125e [file] [log] [blame]
Chris Lattner24943d22010-06-08 16:52:24 +00001//===-- Target.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
10#include "lldb/Target/Target.h"
11
12// C Includes
13// C++ Includes
14// Other libraries and framework includes
15// Project includes
16#include "lldb/Breakpoint/BreakpointResolver.h"
17#include "lldb/Breakpoint/BreakpointResolverAddress.h"
18#include "lldb/Breakpoint/BreakpointResolverFileLine.h"
Jim Ingham03c8ee52011-09-21 01:17:13 +000019#include "lldb/Breakpoint/BreakpointResolverFileRegex.h"
Chris Lattner24943d22010-06-08 16:52:24 +000020#include "lldb/Breakpoint/BreakpointResolverName.h"
Johnny Chenecd4feb2011-10-14 00:42:25 +000021#include "lldb/Breakpoint/Watchpoint.h"
Greg Clayton427f2902010-12-14 02:59:59 +000022#include "lldb/Core/Debugger.h"
Chris Lattner24943d22010-06-08 16:52:24 +000023#include "lldb/Core/Event.h"
24#include "lldb/Core/Log.h"
Greg Clayton49ce8962012-08-29 21:13:06 +000025#include "lldb/Core/Module.h"
26#include "lldb/Core/ModuleSpec.h"
27#include "lldb/Core/Section.h"
Chris Lattner24943d22010-06-08 16:52:24 +000028#include "lldb/Core/StreamString.h"
Greg Clayton427f2902010-12-14 02:59:59 +000029#include "lldb/Core/Timer.h"
30#include "lldb/Core/ValueObject.h"
Sean Callanandcf03f82011-11-15 22:27:19 +000031#include "lldb/Expression/ClangASTSource.h"
Greg Claytonf15996e2011-04-07 22:46:35 +000032#include "lldb/Expression/ClangUserExpression.h"
Chris Lattner24943d22010-06-08 16:52:24 +000033#include "lldb/Host/Host.h"
Jim Inghamd60d94a2011-03-11 03:53:59 +000034#include "lldb/Interpreter/CommandInterpreter.h"
35#include "lldb/Interpreter/CommandReturnObject.h"
Johnny Chen3f883492012-06-04 23:19:54 +000036#include "lldb/Interpreter/OptionGroupWatchpoint.h"
Greg Clayton73844aa2012-08-22 17:17:09 +000037#include "lldb/Interpreter/OptionValues.h"
38#include "lldb/Interpreter/Property.h"
Chris Lattner24943d22010-06-08 16:52:24 +000039#include "lldb/lldb-private-log.h"
40#include "lldb/Symbol/ObjectFile.h"
41#include "lldb/Target/Process.h"
Greg Clayton427f2902010-12-14 02:59:59 +000042#include "lldb/Target/StackFrame.h"
Jim Inghamd60d94a2011-03-11 03:53:59 +000043#include "lldb/Target/Thread.h"
44#include "lldb/Target/ThreadSpec.h"
Chris Lattner24943d22010-06-08 16:52:24 +000045
46using namespace lldb;
47using namespace lldb_private;
48
Jim Ingham5a15e692012-02-16 06:50:00 +000049ConstString &
50Target::GetStaticBroadcasterClass ()
51{
52 static ConstString class_name ("lldb.target");
53 return class_name;
54}
55
Chris Lattner24943d22010-06-08 16:52:24 +000056//----------------------------------------------------------------------
57// Target constructor
58//----------------------------------------------------------------------
Greg Clayton24bc5d92011-03-30 18:16:51 +000059Target::Target(Debugger &debugger, const ArchSpec &target_arch, const lldb::PlatformSP &platform_sp) :
Greg Clayton73844aa2012-08-22 17:17:09 +000060 TargetProperties (this),
Jim Ingham5a15e692012-02-16 06:50:00 +000061 Broadcaster (&debugger, "lldb.target"),
Greg Clayton24bc5d92011-03-30 18:16:51 +000062 ExecutionContextScope (),
Greg Clayton63094e02010-06-23 01:19:29 +000063 m_debugger (debugger),
Greg Clayton24bc5d92011-03-30 18:16:51 +000064 m_platform_sp (platform_sp),
Greg Claytonbdcda462010-12-20 20:49:23 +000065 m_mutex (Mutex::eMutexTypeRecursive),
Greg Clayton24bc5d92011-03-30 18:16:51 +000066 m_arch (target_arch),
67 m_images (),
Greg Claytoneea26402010-09-14 23:36:40 +000068 m_section_load_list (),
Chris Lattner24943d22010-06-08 16:52:24 +000069 m_breakpoint_list (false),
70 m_internal_breakpoint_list (true),
Johnny Chenecd4feb2011-10-14 00:42:25 +000071 m_watchpoint_list (),
Greg Clayton24bc5d92011-03-30 18:16:51 +000072 m_process_sp (),
Filipe Cabecinhasf7d782b2012-05-19 09:59:08 +000073 m_valid (true),
Greg Clayton24bc5d92011-03-30 18:16:51 +000074 m_search_filter_sp (),
Chris Lattner24943d22010-06-08 16:52:24 +000075 m_image_search_paths (ImageSearchPathsChanged, this),
Greg Clayton427f2902010-12-14 02:59:59 +000076 m_scratch_ast_context_ap (NULL),
Sean Callanan4938bd62011-11-16 18:20:47 +000077 m_scratch_ast_source_ap (NULL),
78 m_ast_importer_ap (NULL),
Jim Inghamd60d94a2011-03-11 03:53:59 +000079 m_persistent_variables (),
Jim Inghamcc637462011-09-13 00:29:56 +000080 m_source_manager(*this),
Greg Clayton24bc5d92011-03-30 18:16:51 +000081 m_stop_hooks (),
Jim Ingham3613ae12011-05-12 02:06:14 +000082 m_stop_hook_next_id (0),
Enrico Granatadba1de82012-03-27 02:35:13 +000083 m_suppress_stop_hooks (false),
84 m_suppress_synthetic_value(false)
Chris Lattner24943d22010-06-08 16:52:24 +000085{
Greg Clayton49ce6822010-10-31 03:01:06 +000086 SetEventName (eBroadcastBitBreakpointChanged, "breakpoint-changed");
87 SetEventName (eBroadcastBitModulesLoaded, "modules-loaded");
88 SetEventName (eBroadcastBitModulesUnloaded, "modules-unloaded");
Jim Ingham5a15e692012-02-16 06:50:00 +000089
90 CheckInWithManager();
Greg Clayton49ce6822010-10-31 03:01:06 +000091
Greg Claytone005f2c2010-11-06 01:53:30 +000092 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_OBJECT));
Chris Lattner24943d22010-06-08 16:52:24 +000093 if (log)
94 log->Printf ("%p Target::Target()", this);
95}
96
97//----------------------------------------------------------------------
98// Destructor
99//----------------------------------------------------------------------
100Target::~Target()
101{
Greg Claytone005f2c2010-11-06 01:53:30 +0000102 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_OBJECT));
Chris Lattner24943d22010-06-08 16:52:24 +0000103 if (log)
104 log->Printf ("%p Target::~Target()", this);
105 DeleteCurrentProcess ();
106}
107
108void
Caroline Tice7826c882010-10-26 03:11:13 +0000109Target::Dump (Stream *s, lldb::DescriptionLevel description_level)
Chris Lattner24943d22010-06-08 16:52:24 +0000110{
Greg Clayton3fed8b92010-10-08 00:21:05 +0000111// s->Printf("%.*p: ", (int)sizeof(void*) * 2, this);
Caroline Tice7826c882010-10-26 03:11:13 +0000112 if (description_level != lldb::eDescriptionLevelBrief)
113 {
114 s->Indent();
115 s->PutCString("Target\n");
116 s->IndentMore();
Greg Clayton3f5ee7f2010-10-29 04:59:35 +0000117 m_images.Dump(s);
118 m_breakpoint_list.Dump(s);
119 m_internal_breakpoint_list.Dump(s);
120 s->IndentLess();
Caroline Tice7826c882010-10-26 03:11:13 +0000121 }
122 else
123 {
Greg Clayton5beb99d2011-08-11 02:48:45 +0000124 Module *exe_module = GetExecutableModulePointer();
125 if (exe_module)
126 s->PutCString (exe_module->GetFileSpec().GetFilename().GetCString());
Jim Ingham53fe9cc2011-05-12 01:12:28 +0000127 else
128 s->PutCString ("No executable module.");
Caroline Tice7826c882010-10-26 03:11:13 +0000129 }
Chris Lattner24943d22010-06-08 16:52:24 +0000130}
131
132void
133Target::DeleteCurrentProcess ()
134{
135 if (m_process_sp.get())
136 {
Greg Clayton49480b12010-09-14 23:52:43 +0000137 m_section_load_list.Clear();
Chris Lattner24943d22010-06-08 16:52:24 +0000138 if (m_process_sp->IsAlive())
139 m_process_sp->Destroy();
Jim Ingham88fa7bd2011-02-16 17:54:55 +0000140
141 m_process_sp->Finalize();
Chris Lattner24943d22010-06-08 16:52:24 +0000142
143 // Do any cleanup of the target we need to do between process instances.
144 // NB It is better to do this before destroying the process in case the
145 // clean up needs some help from the process.
146 m_breakpoint_list.ClearAllBreakpointSites();
147 m_internal_breakpoint_list.ClearAllBreakpointSites();
Johnny Chenecd4feb2011-10-14 00:42:25 +0000148 // Disable watchpoints just on the debugger side.
Johnny Chen116a5cd2012-02-25 06:44:30 +0000149 Mutex::Locker locker;
150 this->GetWatchpointList().GetListMutex(locker);
Johnny Chenecd4feb2011-10-14 00:42:25 +0000151 DisableAllWatchpoints(false);
Johnny Chen116a5cd2012-02-25 06:44:30 +0000152 ClearAllWatchpointHitCounts();
Chris Lattner24943d22010-06-08 16:52:24 +0000153 m_process_sp.reset();
154 }
155}
156
157const lldb::ProcessSP &
Greg Clayton46c9a352012-02-09 06:16:32 +0000158Target::CreateProcess (Listener &listener, const char *plugin_name, const FileSpec *crash_file)
Chris Lattner24943d22010-06-08 16:52:24 +0000159{
160 DeleteCurrentProcess ();
Greg Clayton46c9a352012-02-09 06:16:32 +0000161 m_process_sp = Process::FindPlugin(*this, plugin_name, listener, crash_file);
Chris Lattner24943d22010-06-08 16:52:24 +0000162 return m_process_sp;
163}
164
165const lldb::ProcessSP &
166Target::GetProcessSP () const
167{
168 return m_process_sp;
169}
170
Greg Clayton153ccd72011-08-10 02:10:13 +0000171void
172Target::Destroy()
173{
174 Mutex::Locker locker (m_mutex);
Filipe Cabecinhasf7d782b2012-05-19 09:59:08 +0000175 m_valid = false;
Greg Clayton153ccd72011-08-10 02:10:13 +0000176 DeleteCurrentProcess ();
177 m_platform_sp.reset();
178 m_arch.Clear();
179 m_images.Clear();
180 m_section_load_list.Clear();
181 const bool notify = false;
182 m_breakpoint_list.RemoveAll(notify);
183 m_internal_breakpoint_list.RemoveAll(notify);
184 m_last_created_breakpoint.reset();
Johnny Chenecd4feb2011-10-14 00:42:25 +0000185 m_last_created_watchpoint.reset();
Greg Clayton153ccd72011-08-10 02:10:13 +0000186 m_search_filter_sp.reset();
187 m_image_search_paths.Clear(notify);
188 m_scratch_ast_context_ap.reset();
Sean Callanandcf03f82011-11-15 22:27:19 +0000189 m_scratch_ast_source_ap.reset();
Sean Callanan4938bd62011-11-16 18:20:47 +0000190 m_ast_importer_ap.reset();
Greg Clayton153ccd72011-08-10 02:10:13 +0000191 m_persistent_variables.Clear();
192 m_stop_hooks.clear();
193 m_stop_hook_next_id = 0;
194 m_suppress_stop_hooks = false;
Enrico Granatadba1de82012-03-27 02:35:13 +0000195 m_suppress_synthetic_value = false;
Greg Clayton153ccd72011-08-10 02:10:13 +0000196}
197
198
Chris Lattner24943d22010-06-08 16:52:24 +0000199BreakpointList &
200Target::GetBreakpointList(bool internal)
201{
202 if (internal)
203 return m_internal_breakpoint_list;
204 else
205 return m_breakpoint_list;
206}
207
208const BreakpointList &
209Target::GetBreakpointList(bool internal) const
210{
211 if (internal)
212 return m_internal_breakpoint_list;
213 else
214 return m_breakpoint_list;
215}
216
217BreakpointSP
218Target::GetBreakpointByID (break_id_t break_id)
219{
220 BreakpointSP bp_sp;
221
222 if (LLDB_BREAK_ID_IS_INTERNAL (break_id))
223 bp_sp = m_internal_breakpoint_list.FindBreakpointByID (break_id);
224 else
225 bp_sp = m_breakpoint_list.FindBreakpointByID (break_id);
226
227 return bp_sp;
228}
229
230BreakpointSP
Jim Inghamd6d47972011-09-23 00:54:11 +0000231Target::CreateSourceRegexBreakpoint (const FileSpecList *containingModules,
Greg Clayton49ce8962012-08-29 21:13:06 +0000232 const FileSpecList *source_file_spec_list,
233 RegularExpression &source_regex,
234 bool internal)
Chris Lattner24943d22010-06-08 16:52:24 +0000235{
Jim Inghamd6d47972011-09-23 00:54:11 +0000236 SearchFilterSP filter_sp(GetSearchFilterForModuleAndCUList (containingModules, source_file_spec_list));
237 BreakpointResolverSP resolver_sp(new BreakpointResolverFileRegex (NULL, source_regex));
Jim Ingham03c8ee52011-09-21 01:17:13 +0000238 return CreateBreakpoint (filter_sp, resolver_sp, internal);
239}
240
241
242BreakpointSP
Jim Ingham2cf5ccb2012-05-22 00:12:20 +0000243Target::CreateBreakpoint (const FileSpecList *containingModules,
244 const FileSpec &file,
245 uint32_t line_no,
Greg Clayton49ce8962012-08-29 21:13:06 +0000246 LazyBool check_inlines,
Jim Ingham2cf5ccb2012-05-22 00:12:20 +0000247 LazyBool skip_prologue,
248 bool internal)
Jim Ingham03c8ee52011-09-21 01:17:13 +0000249{
Greg Clayton49ce8962012-08-29 21:13:06 +0000250 if (check_inlines == eLazyBoolCalculate)
251 {
252 const InlineStrategy inline_strategy = GetInlineStrategy();
253 switch (inline_strategy)
254 {
255 case eInlineBreakpointsNever:
256 check_inlines = eLazyBoolNo;
257 break;
258
259 case eInlineBreakpointsHeaders:
260 if (file.IsSourceImplementationFile())
261 check_inlines = eLazyBoolNo;
262 else
263 check_inlines = eLazyBoolYes;
264 break;
265
266 case eInlineBreakpointsAlways:
267 check_inlines = eLazyBoolYes;
268 break;
269 }
270 }
Greg Clayton46365522012-09-07 23:48:57 +0000271 SearchFilterSP filter_sp;
272 if (check_inlines == eLazyBoolNo)
273 {
274 // Not checking for inlines, we are looking only for matching compile units
275 FileSpecList compile_unit_list;
276 compile_unit_list.Append (file);
277 filter_sp = GetSearchFilterForModuleAndCUList (containingModules, &compile_unit_list);
278 }
279 else
280 {
281 filter_sp = GetSearchFilterForModuleList (containingModules);
282 }
Greg Clayton49ce8962012-08-29 21:13:06 +0000283 BreakpointResolverSP resolver_sp(new BreakpointResolverFileLine (NULL,
284 file,
285 line_no,
286 check_inlines,
Jim Ingham2cf5ccb2012-05-22 00:12:20 +0000287 skip_prologue == eLazyBoolCalculate ? GetSkipPrologue() : skip_prologue));
Chris Lattner24943d22010-06-08 16:52:24 +0000288 return CreateBreakpoint (filter_sp, resolver_sp, internal);
289}
290
291
292BreakpointSP
Greg Clayton33ed1702010-08-24 00:45:41 +0000293Target::CreateBreakpoint (lldb::addr_t addr, bool internal)
Chris Lattner24943d22010-06-08 16:52:24 +0000294{
Chris Lattner24943d22010-06-08 16:52:24 +0000295 Address so_addr;
296 // Attempt to resolve our load address if possible, though it is ok if
297 // it doesn't resolve to section/offset.
298
Greg Clayton33ed1702010-08-24 00:45:41 +0000299 // Try and resolve as a load address if possible
Greg Claytoneea26402010-09-14 23:36:40 +0000300 m_section_load_list.ResolveLoadAddress(addr, so_addr);
Greg Clayton33ed1702010-08-24 00:45:41 +0000301 if (!so_addr.IsValid())
302 {
303 // The address didn't resolve, so just set this as an absolute address
304 so_addr.SetOffset (addr);
305 }
306 BreakpointSP bp_sp (CreateBreakpoint(so_addr, internal));
Chris Lattner24943d22010-06-08 16:52:24 +0000307 return bp_sp;
308}
309
310BreakpointSP
311Target::CreateBreakpoint (Address &addr, bool internal)
312{
Greg Clayton13d24fb2012-01-29 20:56:30 +0000313 SearchFilterSP filter_sp(new SearchFilterForNonModuleSpecificSearches (shared_from_this()));
Chris Lattner24943d22010-06-08 16:52:24 +0000314 BreakpointResolverSP resolver_sp (new BreakpointResolverAddress (NULL, addr));
315 return CreateBreakpoint (filter_sp, resolver_sp, internal);
316}
317
318BreakpointSP
Jim Inghamd6d47972011-09-23 00:54:11 +0000319Target::CreateBreakpoint (const FileSpecList *containingModules,
320 const FileSpecList *containingSourceFiles,
Greg Clayton7dd98df2011-07-12 17:06:17 +0000321 const char *func_name,
322 uint32_t func_name_type_mask,
Jim Ingham2cf5ccb2012-05-22 00:12:20 +0000323 LazyBool skip_prologue,
324 bool internal)
Chris Lattner24943d22010-06-08 16:52:24 +0000325{
Greg Clayton12bec712010-06-28 21:30:43 +0000326 BreakpointSP bp_sp;
327 if (func_name)
328 {
Jim Inghamd6d47972011-09-23 00:54:11 +0000329 SearchFilterSP filter_sp(GetSearchFilterForModuleAndCUList (containingModules, containingSourceFiles));
Greg Clayton7dd98df2011-07-12 17:06:17 +0000330
331 BreakpointResolverSP resolver_sp (new BreakpointResolverName (NULL,
332 func_name,
333 func_name_type_mask,
334 Breakpoint::Exact,
335 skip_prologue == eLazyBoolCalculate ? GetSkipPrologue() : skip_prologue));
Greg Clayton12bec712010-06-28 21:30:43 +0000336 bp_sp = CreateBreakpoint (filter_sp, resolver_sp, internal);
337 }
338 return bp_sp;
Chris Lattner24943d22010-06-08 16:52:24 +0000339}
340
Jim Ingham4722b102012-03-06 00:37:27 +0000341lldb::BreakpointSP
342Target::CreateBreakpoint (const FileSpecList *containingModules,
Greg Claytonbd5c23d2012-05-15 02:33:01 +0000343 const FileSpecList *containingSourceFiles,
344 const std::vector<std::string> &func_names,
345 uint32_t func_name_type_mask,
Jim Ingham2cf5ccb2012-05-22 00:12:20 +0000346 LazyBool skip_prologue,
347 bool internal)
Jim Ingham4722b102012-03-06 00:37:27 +0000348{
349 BreakpointSP bp_sp;
350 size_t num_names = func_names.size();
351 if (num_names > 0)
352 {
353 SearchFilterSP filter_sp(GetSearchFilterForModuleAndCUList (containingModules, containingSourceFiles));
354
355 BreakpointResolverSP resolver_sp (new BreakpointResolverName (NULL,
356 func_names,
357 func_name_type_mask,
358 skip_prologue == eLazyBoolCalculate ? GetSkipPrologue() : skip_prologue));
359 bp_sp = CreateBreakpoint (filter_sp, resolver_sp, internal);
360 }
361 return bp_sp;
362}
363
Jim Inghamc1053622012-03-03 02:05:11 +0000364BreakpointSP
365Target::CreateBreakpoint (const FileSpecList *containingModules,
366 const FileSpecList *containingSourceFiles,
367 const char *func_names[],
368 size_t num_names,
369 uint32_t func_name_type_mask,
Jim Ingham2cf5ccb2012-05-22 00:12:20 +0000370 LazyBool skip_prologue,
371 bool internal)
Jim Inghamc1053622012-03-03 02:05:11 +0000372{
373 BreakpointSP bp_sp;
374 if (num_names > 0)
375 {
376 SearchFilterSP filter_sp(GetSearchFilterForModuleAndCUList (containingModules, containingSourceFiles));
377
378 BreakpointResolverSP resolver_sp (new BreakpointResolverName (NULL,
379 func_names,
380 num_names,
Jim Ingham4722b102012-03-06 00:37:27 +0000381 func_name_type_mask,
Jim Inghamc1053622012-03-03 02:05:11 +0000382 skip_prologue == eLazyBoolCalculate ? GetSkipPrologue() : skip_prologue));
383 bp_sp = CreateBreakpoint (filter_sp, resolver_sp, internal);
384 }
385 return bp_sp;
386}
Chris Lattner24943d22010-06-08 16:52:24 +0000387
388SearchFilterSP
389Target::GetSearchFilterForModule (const FileSpec *containingModule)
390{
391 SearchFilterSP filter_sp;
Chris Lattner24943d22010-06-08 16:52:24 +0000392 if (containingModule != NULL)
393 {
394 // TODO: We should look into sharing module based search filters
395 // across many breakpoints like we do for the simple target based one
Greg Clayton13d24fb2012-01-29 20:56:30 +0000396 filter_sp.reset (new SearchFilterByModule (shared_from_this(), *containingModule));
Chris Lattner24943d22010-06-08 16:52:24 +0000397 }
398 else
399 {
400 if (m_search_filter_sp.get() == NULL)
Greg Clayton13d24fb2012-01-29 20:56:30 +0000401 m_search_filter_sp.reset (new SearchFilterForNonModuleSpecificSearches (shared_from_this()));
Chris Lattner24943d22010-06-08 16:52:24 +0000402 filter_sp = m_search_filter_sp;
403 }
404 return filter_sp;
405}
406
Jim Ingham03c8ee52011-09-21 01:17:13 +0000407SearchFilterSP
408Target::GetSearchFilterForModuleList (const FileSpecList *containingModules)
409{
410 SearchFilterSP filter_sp;
Jim Ingham03c8ee52011-09-21 01:17:13 +0000411 if (containingModules && containingModules->GetSize() != 0)
412 {
413 // TODO: We should look into sharing module based search filters
414 // across many breakpoints like we do for the simple target based one
Greg Clayton13d24fb2012-01-29 20:56:30 +0000415 filter_sp.reset (new SearchFilterByModuleList (shared_from_this(), *containingModules));
Jim Ingham03c8ee52011-09-21 01:17:13 +0000416 }
417 else
418 {
419 if (m_search_filter_sp.get() == NULL)
Greg Clayton13d24fb2012-01-29 20:56:30 +0000420 m_search_filter_sp.reset (new SearchFilterForNonModuleSpecificSearches (shared_from_this()));
Jim Ingham03c8ee52011-09-21 01:17:13 +0000421 filter_sp = m_search_filter_sp;
422 }
423 return filter_sp;
424}
425
Jim Inghamd6d47972011-09-23 00:54:11 +0000426SearchFilterSP
Jim Ingham2cf5ccb2012-05-22 00:12:20 +0000427Target::GetSearchFilterForModuleAndCUList (const FileSpecList *containingModules,
428 const FileSpecList *containingSourceFiles)
Jim Inghamd6d47972011-09-23 00:54:11 +0000429{
430 if (containingSourceFiles == NULL || containingSourceFiles->GetSize() == 0)
431 return GetSearchFilterForModuleList(containingModules);
432
433 SearchFilterSP filter_sp;
Jim Inghamd6d47972011-09-23 00:54:11 +0000434 if (containingModules == NULL)
435 {
436 // We could make a special "CU List only SearchFilter". Better yet was if these could be composable,
437 // but that will take a little reworking.
438
Greg Clayton13d24fb2012-01-29 20:56:30 +0000439 filter_sp.reset (new SearchFilterByModuleListAndCU (shared_from_this(), FileSpecList(), *containingSourceFiles));
Jim Inghamd6d47972011-09-23 00:54:11 +0000440 }
441 else
442 {
Greg Clayton13d24fb2012-01-29 20:56:30 +0000443 filter_sp.reset (new SearchFilterByModuleListAndCU (shared_from_this(), *containingModules, *containingSourceFiles));
Jim Inghamd6d47972011-09-23 00:54:11 +0000444 }
445 return filter_sp;
446}
447
Chris Lattner24943d22010-06-08 16:52:24 +0000448BreakpointSP
Jim Inghamd6d47972011-09-23 00:54:11 +0000449Target::CreateFuncRegexBreakpoint (const FileSpecList *containingModules,
Jim Ingham2cf5ccb2012-05-22 00:12:20 +0000450 const FileSpecList *containingSourceFiles,
451 RegularExpression &func_regex,
452 LazyBool skip_prologue,
453 bool internal)
Chris Lattner24943d22010-06-08 16:52:24 +0000454{
Jim Inghamd6d47972011-09-23 00:54:11 +0000455 SearchFilterSP filter_sp(GetSearchFilterForModuleAndCUList (containingModules, containingSourceFiles));
Greg Clayton7dd98df2011-07-12 17:06:17 +0000456 BreakpointResolverSP resolver_sp(new BreakpointResolverName (NULL,
457 func_regex,
458 skip_prologue == eLazyBoolCalculate ? GetSkipPrologue() : skip_prologue));
Chris Lattner24943d22010-06-08 16:52:24 +0000459
460 return CreateBreakpoint (filter_sp, resolver_sp, internal);
461}
462
Jim Ingham3df164e2012-03-05 04:47:34 +0000463lldb::BreakpointSP
464Target::CreateExceptionBreakpoint (enum lldb::LanguageType language, bool catch_bp, bool throw_bp, bool internal)
465{
466 return LanguageRuntime::CreateExceptionBreakpoint (*this, language, catch_bp, throw_bp, internal);
467}
468
Chris Lattner24943d22010-06-08 16:52:24 +0000469BreakpointSP
470Target::CreateBreakpoint (SearchFilterSP &filter_sp, BreakpointResolverSP &resolver_sp, bool internal)
471{
472 BreakpointSP bp_sp;
473 if (filter_sp && resolver_sp)
474 {
475 bp_sp.reset(new Breakpoint (*this, filter_sp, resolver_sp));
476 resolver_sp->SetBreakpoint (bp_sp.get());
477
478 if (internal)
Greg Claytonc7f5d5c2010-07-23 23:33:17 +0000479 m_internal_breakpoint_list.Add (bp_sp, false);
Chris Lattner24943d22010-06-08 16:52:24 +0000480 else
Greg Claytonc7f5d5c2010-07-23 23:33:17 +0000481 m_breakpoint_list.Add (bp_sp, true);
Chris Lattner24943d22010-06-08 16:52:24 +0000482
Greg Claytone005f2c2010-11-06 01:53:30 +0000483 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_BREAKPOINTS));
Chris Lattner24943d22010-06-08 16:52:24 +0000484 if (log)
485 {
486 StreamString s;
487 bp_sp->GetDescription(&s, lldb::eDescriptionLevelVerbose);
488 log->Printf ("Target::%s (internal = %s) => break_id = %s\n", __FUNCTION__, internal ? "yes" : "no", s.GetData());
489 }
490
Chris Lattner24943d22010-06-08 16:52:24 +0000491 bp_sp->ResolveBreakpoint();
492 }
Jim Inghamd1686902010-10-14 23:45:03 +0000493
494 if (!internal && bp_sp)
495 {
496 m_last_created_breakpoint = bp_sp;
497 }
498
Chris Lattner24943d22010-06-08 16:52:24 +0000499 return bp_sp;
500}
501
Johnny Chenda5a8022011-09-20 23:28:55 +0000502bool
503Target::ProcessIsValid()
504{
505 return (m_process_sp && m_process_sp->IsAlive());
506}
507
Johnny Chen3f883492012-06-04 23:19:54 +0000508static bool
509CheckIfWatchpointsExhausted(Target *target, Error &error)
510{
511 uint32_t num_supported_hardware_watchpoints;
512 Error rc = target->GetProcessSP()->GetWatchpointSupportInfo(num_supported_hardware_watchpoints);
513 if (rc.Success())
514 {
515 uint32_t num_current_watchpoints = target->GetWatchpointList().GetSize();
516 if (num_current_watchpoints >= num_supported_hardware_watchpoints)
517 error.SetErrorStringWithFormat("number of supported hardware watchpoints (%u) has been reached",
518 num_supported_hardware_watchpoints);
519 }
520 return false;
521}
522
Johnny Chenecd4feb2011-10-14 00:42:25 +0000523// See also Watchpoint::SetWatchpointType(uint32_t type) and
Johnny Chen87ff53b2011-09-14 00:26:03 +0000524// the OptionGroupWatchpoint::WatchType enum type.
Johnny Chenecd4feb2011-10-14 00:42:25 +0000525WatchpointSP
Johnny Chen3f883492012-06-04 23:19:54 +0000526Target::CreateWatchpoint(lldb::addr_t addr, size_t size, uint32_t type, Error &error)
Johnny Chen34bbf852011-09-12 23:38:44 +0000527{
Johnny Chen5b2fc572011-09-14 20:23:45 +0000528 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_WATCHPOINTS));
529 if (log)
530 log->Printf("Target::%s (addr = 0x%8.8llx size = %zu type = %u)\n",
531 __FUNCTION__, addr, size, type);
532
Johnny Chenecd4feb2011-10-14 00:42:25 +0000533 WatchpointSP wp_sp;
Johnny Chenda5a8022011-09-20 23:28:55 +0000534 if (!ProcessIsValid())
Johnny Chen3f883492012-06-04 23:19:54 +0000535 {
536 error.SetErrorString("process is not alive");
Johnny Chenecd4feb2011-10-14 00:42:25 +0000537 return wp_sp;
Johnny Chen3f883492012-06-04 23:19:54 +0000538 }
Johnny Chen22a56cc2011-09-14 22:20:15 +0000539 if (addr == LLDB_INVALID_ADDRESS || size == 0)
Johnny Chen3f883492012-06-04 23:19:54 +0000540 {
541 if (size == 0)
542 error.SetErrorString("cannot set a watchpoint with watch_size of 0");
543 else
544 error.SetErrorStringWithFormat("invalid watch address: %llu", addr);
Johnny Chenecd4feb2011-10-14 00:42:25 +0000545 return wp_sp;
Johnny Chen3f883492012-06-04 23:19:54 +0000546 }
Johnny Chen9bf11992011-09-13 01:15:36 +0000547
Johnny Chenecd4feb2011-10-14 00:42:25 +0000548 // Currently we only support one watchpoint per address, with total number
549 // of watchpoints limited by the hardware which the inferior is running on.
Johnny Chenbbf6aa52012-05-31 22:56:36 +0000550
551 // Grab the list mutex while doing operations.
552 Mutex::Locker locker;
553 this->GetWatchpointList().GetListMutex(locker);
Johnny Chenecd4feb2011-10-14 00:42:25 +0000554 WatchpointSP matched_sp = m_watchpoint_list.FindByAddress(addr);
Johnny Chen69b6ec82011-09-13 23:29:31 +0000555 if (matched_sp)
556 {
Johnny Chen5b2fc572011-09-14 20:23:45 +0000557 size_t old_size = matched_sp->GetByteSize();
Johnny Chen69b6ec82011-09-13 23:29:31 +0000558 uint32_t old_type =
Johnny Chen5b2fc572011-09-14 20:23:45 +0000559 (matched_sp->WatchpointRead() ? LLDB_WATCH_TYPE_READ : 0) |
560 (matched_sp->WatchpointWrite() ? LLDB_WATCH_TYPE_WRITE : 0);
Johnny Chenecd4feb2011-10-14 00:42:25 +0000561 // Return the existing watchpoint if both size and type match.
Johnny Chen22a56cc2011-09-14 22:20:15 +0000562 if (size == old_size && type == old_type) {
Johnny Chenecd4feb2011-10-14 00:42:25 +0000563 wp_sp = matched_sp;
564 wp_sp->SetEnabled(false);
Johnny Chen22a56cc2011-09-14 22:20:15 +0000565 } else {
Johnny Chenecd4feb2011-10-14 00:42:25 +0000566 // Nil the matched watchpoint; we will be creating a new one.
Johnny Chen22a56cc2011-09-14 22:20:15 +0000567 m_process_sp->DisableWatchpoint(matched_sp.get());
Johnny Chenecd4feb2011-10-14 00:42:25 +0000568 m_watchpoint_list.Remove(matched_sp->GetID());
Johnny Chen22a56cc2011-09-14 22:20:15 +0000569 }
Johnny Chen69b6ec82011-09-13 23:29:31 +0000570 }
571
Johnny Chenecd4feb2011-10-14 00:42:25 +0000572 if (!wp_sp) {
573 Watchpoint *new_wp = new Watchpoint(addr, size);
574 if (!new_wp) {
575 printf("Watchpoint ctor failed, out of memory?\n");
576 return wp_sp;
Johnny Chen22a56cc2011-09-14 22:20:15 +0000577 }
Johnny Chenecd4feb2011-10-14 00:42:25 +0000578 new_wp->SetWatchpointType(type);
579 new_wp->SetTarget(this);
580 wp_sp.reset(new_wp);
581 m_watchpoint_list.Add(wp_sp);
Johnny Chen22a56cc2011-09-14 22:20:15 +0000582 }
Johnny Chen5b2fc572011-09-14 20:23:45 +0000583
Johnny Chen3f883492012-06-04 23:19:54 +0000584 error = m_process_sp->EnableWatchpoint(wp_sp.get());
Johnny Chen5b2fc572011-09-14 20:23:45 +0000585 if (log)
586 log->Printf("Target::%s (creation of watchpoint %s with id = %u)\n",
587 __FUNCTION__,
Johnny Chen3f883492012-06-04 23:19:54 +0000588 error.Success() ? "succeeded" : "failed",
Johnny Chenecd4feb2011-10-14 00:42:25 +0000589 wp_sp->GetID());
Johnny Chen5b2fc572011-09-14 20:23:45 +0000590
Johnny Chen3f883492012-06-04 23:19:54 +0000591 if (error.Fail()) {
Johnny Chen155599b2012-03-26 22:00:10 +0000592 // Enabling the watchpoint on the device side failed.
593 // Remove the said watchpoint from the list maintained by the target instance.
594 m_watchpoint_list.Remove(wp_sp->GetID());
Johnny Chen3f883492012-06-04 23:19:54 +0000595 // See if we could provide more helpful error message.
596 if (!CheckIfWatchpointsExhausted(this, error))
597 {
598 if (!OptionGroupWatchpoint::IsWatchSizeSupported(size))
599 error.SetErrorStringWithFormat("watch size of %lu is not supported", size);
600 }
Johnny Chenecd4feb2011-10-14 00:42:25 +0000601 wp_sp.reset();
Johnny Chen155599b2012-03-26 22:00:10 +0000602 }
Johnny Chen5eb54bb2011-09-27 20:29:45 +0000603 else
Johnny Chenecd4feb2011-10-14 00:42:25 +0000604 m_last_created_watchpoint = wp_sp;
605 return wp_sp;
Johnny Chen34bbf852011-09-12 23:38:44 +0000606}
607
Chris Lattner24943d22010-06-08 16:52:24 +0000608void
609Target::RemoveAllBreakpoints (bool internal_also)
610{
Greg Claytone005f2c2010-11-06 01:53:30 +0000611 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_BREAKPOINTS));
Chris Lattner24943d22010-06-08 16:52:24 +0000612 if (log)
613 log->Printf ("Target::%s (internal_also = %s)\n", __FUNCTION__, internal_also ? "yes" : "no");
614
Greg Claytonc7f5d5c2010-07-23 23:33:17 +0000615 m_breakpoint_list.RemoveAll (true);
Chris Lattner24943d22010-06-08 16:52:24 +0000616 if (internal_also)
Greg Claytonc7f5d5c2010-07-23 23:33:17 +0000617 m_internal_breakpoint_list.RemoveAll (false);
Jim Inghamd1686902010-10-14 23:45:03 +0000618
619 m_last_created_breakpoint.reset();
Chris Lattner24943d22010-06-08 16:52:24 +0000620}
621
622void
623Target::DisableAllBreakpoints (bool internal_also)
624{
Greg Claytone005f2c2010-11-06 01:53:30 +0000625 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_BREAKPOINTS));
Chris Lattner24943d22010-06-08 16:52:24 +0000626 if (log)
627 log->Printf ("Target::%s (internal_also = %s)\n", __FUNCTION__, internal_also ? "yes" : "no");
628
629 m_breakpoint_list.SetEnabledAll (false);
630 if (internal_also)
631 m_internal_breakpoint_list.SetEnabledAll (false);
632}
633
634void
635Target::EnableAllBreakpoints (bool internal_also)
636{
Greg Claytone005f2c2010-11-06 01:53:30 +0000637 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_BREAKPOINTS));
Chris Lattner24943d22010-06-08 16:52:24 +0000638 if (log)
639 log->Printf ("Target::%s (internal_also = %s)\n", __FUNCTION__, internal_also ? "yes" : "no");
640
641 m_breakpoint_list.SetEnabledAll (true);
642 if (internal_also)
643 m_internal_breakpoint_list.SetEnabledAll (true);
644}
645
646bool
647Target::RemoveBreakpointByID (break_id_t break_id)
648{
Greg Claytone005f2c2010-11-06 01:53:30 +0000649 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_BREAKPOINTS));
Chris Lattner24943d22010-06-08 16:52:24 +0000650 if (log)
651 log->Printf ("Target::%s (break_id = %i, internal = %s)\n", __FUNCTION__, break_id, LLDB_BREAK_ID_IS_INTERNAL (break_id) ? "yes" : "no");
652
653 if (DisableBreakpointByID (break_id))
654 {
655 if (LLDB_BREAK_ID_IS_INTERNAL (break_id))
Greg Claytonc7f5d5c2010-07-23 23:33:17 +0000656 m_internal_breakpoint_list.Remove(break_id, false);
Chris Lattner24943d22010-06-08 16:52:24 +0000657 else
Jim Inghamd1686902010-10-14 23:45:03 +0000658 {
Greg Clayton22c9e0d2011-01-24 23:35:47 +0000659 if (m_last_created_breakpoint)
660 {
661 if (m_last_created_breakpoint->GetID() == break_id)
662 m_last_created_breakpoint.reset();
663 }
Greg Claytonc7f5d5c2010-07-23 23:33:17 +0000664 m_breakpoint_list.Remove(break_id, true);
Jim Inghamd1686902010-10-14 23:45:03 +0000665 }
Chris Lattner24943d22010-06-08 16:52:24 +0000666 return true;
667 }
668 return false;
669}
670
671bool
672Target::DisableBreakpointByID (break_id_t break_id)
673{
Greg Claytone005f2c2010-11-06 01:53:30 +0000674 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_BREAKPOINTS));
Chris Lattner24943d22010-06-08 16:52:24 +0000675 if (log)
676 log->Printf ("Target::%s (break_id = %i, internal = %s)\n", __FUNCTION__, break_id, LLDB_BREAK_ID_IS_INTERNAL (break_id) ? "yes" : "no");
677
678 BreakpointSP bp_sp;
679
680 if (LLDB_BREAK_ID_IS_INTERNAL (break_id))
681 bp_sp = m_internal_breakpoint_list.FindBreakpointByID (break_id);
682 else
683 bp_sp = m_breakpoint_list.FindBreakpointByID (break_id);
684 if (bp_sp)
685 {
686 bp_sp->SetEnabled (false);
687 return true;
688 }
689 return false;
690}
691
692bool
693Target::EnableBreakpointByID (break_id_t break_id)
694{
Greg Claytone005f2c2010-11-06 01:53:30 +0000695 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_BREAKPOINTS));
Chris Lattner24943d22010-06-08 16:52:24 +0000696 if (log)
697 log->Printf ("Target::%s (break_id = %i, internal = %s)\n",
698 __FUNCTION__,
699 break_id,
700 LLDB_BREAK_ID_IS_INTERNAL (break_id) ? "yes" : "no");
701
702 BreakpointSP bp_sp;
703
704 if (LLDB_BREAK_ID_IS_INTERNAL (break_id))
705 bp_sp = m_internal_breakpoint_list.FindBreakpointByID (break_id);
706 else
707 bp_sp = m_breakpoint_list.FindBreakpointByID (break_id);
708
709 if (bp_sp)
710 {
711 bp_sp->SetEnabled (true);
712 return true;
713 }
714 return false;
715}
716
Johnny Chenc86582f2011-09-23 21:21:43 +0000717// The flag 'end_to_end', default to true, signifies that the operation is
718// performed end to end, for both the debugger and the debuggee.
719
Johnny Chenecd4feb2011-10-14 00:42:25 +0000720// Assumption: Caller holds the list mutex lock for m_watchpoint_list for end
721// to end operations.
Johnny Chenda5a8022011-09-20 23:28:55 +0000722bool
Johnny Chenecd4feb2011-10-14 00:42:25 +0000723Target::RemoveAllWatchpoints (bool end_to_end)
Johnny Chenda5a8022011-09-20 23:28:55 +0000724{
725 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_WATCHPOINTS));
726 if (log)
727 log->Printf ("Target::%s\n", __FUNCTION__);
728
Johnny Chenc86582f2011-09-23 21:21:43 +0000729 if (!end_to_end) {
Johnny Chenecd4feb2011-10-14 00:42:25 +0000730 m_watchpoint_list.RemoveAll();
Johnny Chenc86582f2011-09-23 21:21:43 +0000731 return true;
732 }
733
734 // Otherwise, it's an end to end operation.
735
Johnny Chenda5a8022011-09-20 23:28:55 +0000736 if (!ProcessIsValid())
737 return false;
738
Johnny Chenecd4feb2011-10-14 00:42:25 +0000739 size_t num_watchpoints = m_watchpoint_list.GetSize();
Johnny Chenda5a8022011-09-20 23:28:55 +0000740 for (size_t i = 0; i < num_watchpoints; ++i)
741 {
Johnny Chenecd4feb2011-10-14 00:42:25 +0000742 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i);
743 if (!wp_sp)
Johnny Chenda5a8022011-09-20 23:28:55 +0000744 return false;
745
Johnny Chenecd4feb2011-10-14 00:42:25 +0000746 Error rc = m_process_sp->DisableWatchpoint(wp_sp.get());
Johnny Chenda5a8022011-09-20 23:28:55 +0000747 if (rc.Fail())
748 return false;
749 }
Johnny Chenecd4feb2011-10-14 00:42:25 +0000750 m_watchpoint_list.RemoveAll ();
Johnny Chenda5a8022011-09-20 23:28:55 +0000751 return true; // Success!
752}
753
Johnny Chenecd4feb2011-10-14 00:42:25 +0000754// Assumption: Caller holds the list mutex lock for m_watchpoint_list for end to
755// end operations.
Johnny Chenda5a8022011-09-20 23:28:55 +0000756bool
Johnny Chenecd4feb2011-10-14 00:42:25 +0000757Target::DisableAllWatchpoints (bool end_to_end)
Johnny Chenda5a8022011-09-20 23:28:55 +0000758{
759 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_WATCHPOINTS));
760 if (log)
761 log->Printf ("Target::%s\n", __FUNCTION__);
762
Johnny Chenc86582f2011-09-23 21:21:43 +0000763 if (!end_to_end) {
Johnny Chenecd4feb2011-10-14 00:42:25 +0000764 m_watchpoint_list.SetEnabledAll(false);
Johnny Chenc86582f2011-09-23 21:21:43 +0000765 return true;
766 }
767
768 // Otherwise, it's an end to end operation.
769
Johnny Chenda5a8022011-09-20 23:28:55 +0000770 if (!ProcessIsValid())
771 return false;
772
Johnny Chenecd4feb2011-10-14 00:42:25 +0000773 size_t num_watchpoints = m_watchpoint_list.GetSize();
Johnny Chenda5a8022011-09-20 23:28:55 +0000774 for (size_t i = 0; i < num_watchpoints; ++i)
775 {
Johnny Chenecd4feb2011-10-14 00:42:25 +0000776 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i);
777 if (!wp_sp)
Johnny Chenda5a8022011-09-20 23:28:55 +0000778 return false;
779
Johnny Chenecd4feb2011-10-14 00:42:25 +0000780 Error rc = m_process_sp->DisableWatchpoint(wp_sp.get());
Johnny Chenda5a8022011-09-20 23:28:55 +0000781 if (rc.Fail())
782 return false;
783 }
Johnny Chenda5a8022011-09-20 23:28:55 +0000784 return true; // Success!
785}
786
Johnny Chenecd4feb2011-10-14 00:42:25 +0000787// Assumption: Caller holds the list mutex lock for m_watchpoint_list for end to
788// end operations.
Johnny Chenda5a8022011-09-20 23:28:55 +0000789bool
Johnny Chenecd4feb2011-10-14 00:42:25 +0000790Target::EnableAllWatchpoints (bool end_to_end)
Johnny Chenda5a8022011-09-20 23:28:55 +0000791{
792 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_WATCHPOINTS));
793 if (log)
794 log->Printf ("Target::%s\n", __FUNCTION__);
795
Johnny Chenc86582f2011-09-23 21:21:43 +0000796 if (!end_to_end) {
Johnny Chenecd4feb2011-10-14 00:42:25 +0000797 m_watchpoint_list.SetEnabledAll(true);
Johnny Chenc86582f2011-09-23 21:21:43 +0000798 return true;
799 }
800
801 // Otherwise, it's an end to end operation.
802
Johnny Chenda5a8022011-09-20 23:28:55 +0000803 if (!ProcessIsValid())
804 return false;
805
Johnny Chenecd4feb2011-10-14 00:42:25 +0000806 size_t num_watchpoints = m_watchpoint_list.GetSize();
Johnny Chenda5a8022011-09-20 23:28:55 +0000807 for (size_t i = 0; i < num_watchpoints; ++i)
808 {
Johnny Chenecd4feb2011-10-14 00:42:25 +0000809 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i);
810 if (!wp_sp)
Johnny Chenda5a8022011-09-20 23:28:55 +0000811 return false;
812
Johnny Chenecd4feb2011-10-14 00:42:25 +0000813 Error rc = m_process_sp->EnableWatchpoint(wp_sp.get());
Johnny Chenda5a8022011-09-20 23:28:55 +0000814 if (rc.Fail())
815 return false;
816 }
Johnny Chenda5a8022011-09-20 23:28:55 +0000817 return true; // Success!
818}
819
Johnny Chen116a5cd2012-02-25 06:44:30 +0000820// Assumption: Caller holds the list mutex lock for m_watchpoint_list.
821bool
822Target::ClearAllWatchpointHitCounts ()
823{
824 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_WATCHPOINTS));
825 if (log)
826 log->Printf ("Target::%s\n", __FUNCTION__);
827
828 size_t num_watchpoints = m_watchpoint_list.GetSize();
829 for (size_t i = 0; i < num_watchpoints; ++i)
830 {
831 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i);
832 if (!wp_sp)
833 return false;
834
835 wp_sp->ResetHitCount();
836 }
837 return true; // Success!
838}
839
Johnny Chenecd4feb2011-10-14 00:42:25 +0000840// Assumption: Caller holds the list mutex lock for m_watchpoint_list
Johnny Chene14cf4e2011-10-05 21:35:46 +0000841// during these operations.
842bool
Johnny Chenecd4feb2011-10-14 00:42:25 +0000843Target::IgnoreAllWatchpoints (uint32_t ignore_count)
Johnny Chene14cf4e2011-10-05 21:35:46 +0000844{
845 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_WATCHPOINTS));
846 if (log)
847 log->Printf ("Target::%s\n", __FUNCTION__);
848
849 if (!ProcessIsValid())
850 return false;
851
Johnny Chenecd4feb2011-10-14 00:42:25 +0000852 size_t num_watchpoints = m_watchpoint_list.GetSize();
Johnny Chene14cf4e2011-10-05 21:35:46 +0000853 for (size_t i = 0; i < num_watchpoints; ++i)
854 {
Johnny Chenecd4feb2011-10-14 00:42:25 +0000855 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i);
856 if (!wp_sp)
Johnny Chene14cf4e2011-10-05 21:35:46 +0000857 return false;
858
Johnny Chenecd4feb2011-10-14 00:42:25 +0000859 wp_sp->SetIgnoreCount(ignore_count);
Johnny Chene14cf4e2011-10-05 21:35:46 +0000860 }
861 return true; // Success!
862}
863
Johnny Chenecd4feb2011-10-14 00:42:25 +0000864// Assumption: Caller holds the list mutex lock for m_watchpoint_list.
Johnny Chenda5a8022011-09-20 23:28:55 +0000865bool
Johnny Chenecd4feb2011-10-14 00:42:25 +0000866Target::DisableWatchpointByID (lldb::watch_id_t watch_id)
Johnny Chenda5a8022011-09-20 23:28:55 +0000867{
868 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_WATCHPOINTS));
869 if (log)
870 log->Printf ("Target::%s (watch_id = %i)\n", __FUNCTION__, watch_id);
871
872 if (!ProcessIsValid())
873 return false;
874
Johnny Chenecd4feb2011-10-14 00:42:25 +0000875 WatchpointSP wp_sp = m_watchpoint_list.FindByID (watch_id);
876 if (wp_sp)
Johnny Chenda5a8022011-09-20 23:28:55 +0000877 {
Johnny Chenecd4feb2011-10-14 00:42:25 +0000878 Error rc = m_process_sp->DisableWatchpoint(wp_sp.get());
Johnny Chen01acfa72011-09-22 18:04:58 +0000879 if (rc.Success())
880 return true;
Johnny Chenda5a8022011-09-20 23:28:55 +0000881
Johnny Chen01acfa72011-09-22 18:04:58 +0000882 // Else, fallthrough.
Johnny Chenda5a8022011-09-20 23:28:55 +0000883 }
884 return false;
885}
886
Johnny Chenecd4feb2011-10-14 00:42:25 +0000887// Assumption: Caller holds the list mutex lock for m_watchpoint_list.
Johnny Chenda5a8022011-09-20 23:28:55 +0000888bool
Johnny Chenecd4feb2011-10-14 00:42:25 +0000889Target::EnableWatchpointByID (lldb::watch_id_t watch_id)
Johnny Chenda5a8022011-09-20 23:28:55 +0000890{
891 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_WATCHPOINTS));
892 if (log)
893 log->Printf ("Target::%s (watch_id = %i)\n", __FUNCTION__, watch_id);
894
895 if (!ProcessIsValid())
896 return false;
897
Johnny Chenecd4feb2011-10-14 00:42:25 +0000898 WatchpointSP wp_sp = m_watchpoint_list.FindByID (watch_id);
899 if (wp_sp)
Johnny Chenda5a8022011-09-20 23:28:55 +0000900 {
Johnny Chenecd4feb2011-10-14 00:42:25 +0000901 Error rc = m_process_sp->EnableWatchpoint(wp_sp.get());
Johnny Chen01acfa72011-09-22 18:04:58 +0000902 if (rc.Success())
903 return true;
Johnny Chenda5a8022011-09-20 23:28:55 +0000904
Johnny Chen01acfa72011-09-22 18:04:58 +0000905 // Else, fallthrough.
Johnny Chenda5a8022011-09-20 23:28:55 +0000906 }
907 return false;
908}
909
Johnny Chenecd4feb2011-10-14 00:42:25 +0000910// Assumption: Caller holds the list mutex lock for m_watchpoint_list.
Johnny Chenda5a8022011-09-20 23:28:55 +0000911bool
Johnny Chenecd4feb2011-10-14 00:42:25 +0000912Target::RemoveWatchpointByID (lldb::watch_id_t watch_id)
Johnny Chenda5a8022011-09-20 23:28:55 +0000913{
914 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_WATCHPOINTS));
915 if (log)
916 log->Printf ("Target::%s (watch_id = %i)\n", __FUNCTION__, watch_id);
917
Johnny Chenecd4feb2011-10-14 00:42:25 +0000918 if (DisableWatchpointByID (watch_id))
Johnny Chenda5a8022011-09-20 23:28:55 +0000919 {
Johnny Chenecd4feb2011-10-14 00:42:25 +0000920 m_watchpoint_list.Remove(watch_id);
Johnny Chenda5a8022011-09-20 23:28:55 +0000921 return true;
922 }
923 return false;
924}
925
Johnny Chenecd4feb2011-10-14 00:42:25 +0000926// Assumption: Caller holds the list mutex lock for m_watchpoint_list.
Johnny Chene14cf4e2011-10-05 21:35:46 +0000927bool
Johnny Chenecd4feb2011-10-14 00:42:25 +0000928Target::IgnoreWatchpointByID (lldb::watch_id_t watch_id, uint32_t ignore_count)
Johnny Chene14cf4e2011-10-05 21:35:46 +0000929{
930 LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_WATCHPOINTS));
931 if (log)
932 log->Printf ("Target::%s (watch_id = %i)\n", __FUNCTION__, watch_id);
933
934 if (!ProcessIsValid())
935 return false;
936
Johnny Chenecd4feb2011-10-14 00:42:25 +0000937 WatchpointSP wp_sp = m_watchpoint_list.FindByID (watch_id);
938 if (wp_sp)
Johnny Chene14cf4e2011-10-05 21:35:46 +0000939 {
Johnny Chenecd4feb2011-10-14 00:42:25 +0000940 wp_sp->SetIgnoreCount(ignore_count);
Johnny Chene14cf4e2011-10-05 21:35:46 +0000941 return true;
942 }
943 return false;
944}
945
Chris Lattner24943d22010-06-08 16:52:24 +0000946ModuleSP
947Target::GetExecutableModule ()
948{
Greg Clayton5beb99d2011-08-11 02:48:45 +0000949 return m_images.GetModuleAtIndex(0);
950}
951
952Module*
953Target::GetExecutableModulePointer ()
954{
955 return m_images.GetModulePointerAtIndex(0);
Chris Lattner24943d22010-06-08 16:52:24 +0000956}
957
958void
959Target::SetExecutableModule (ModuleSP& executable_sp, bool get_dependent_files)
960{
961 m_images.Clear();
962 m_scratch_ast_context_ap.reset();
Sean Callanandcf03f82011-11-15 22:27:19 +0000963 m_scratch_ast_source_ap.reset();
Sean Callanan4938bd62011-11-16 18:20:47 +0000964 m_ast_importer_ap.reset();
Chris Lattner24943d22010-06-08 16:52:24 +0000965
966 if (executable_sp.get())
967 {
968 Timer scoped_timer (__PRETTY_FUNCTION__,
969 "Target::SetExecutableModule (executable = '%s/%s')",
970 executable_sp->GetFileSpec().GetDirectory().AsCString(),
971 executable_sp->GetFileSpec().GetFilename().AsCString());
972
973 m_images.Append(executable_sp); // The first image is our exectuable file
974
Jim Ingham7508e732010-08-09 23:31:02 +0000975 // If we haven't set an architecture yet, reset our architecture based on what we found in the executable module.
Greg Clayton24bc5d92011-03-30 18:16:51 +0000976 if (!m_arch.IsValid())
977 m_arch = executable_sp->GetArchitecture();
Jim Ingham7508e732010-08-09 23:31:02 +0000978
Chris Lattner24943d22010-06-08 16:52:24 +0000979 FileSpecList dependent_files;
Greg Claytone4b9c1f2011-03-08 22:40:15 +0000980 ObjectFile *executable_objfile = executable_sp->GetObjectFile();
Chris Lattner24943d22010-06-08 16:52:24 +0000981
Greg Clayton3e8c25f2011-09-24 00:52:29 +0000982 if (executable_objfile && get_dependent_files)
Chris Lattner24943d22010-06-08 16:52:24 +0000983 {
984 executable_objfile->GetDependentModules(dependent_files);
985 for (uint32_t i=0; i<dependent_files.GetSize(); i++)
986 {
Greg Claytonb1888f22011-03-19 01:12:21 +0000987 FileSpec dependent_file_spec (dependent_files.GetFileSpecPointerAtIndex(i));
988 FileSpec platform_dependent_file_spec;
989 if (m_platform_sp)
Greg Claytoncb8977d2011-03-23 00:09:55 +0000990 m_platform_sp->GetFile (dependent_file_spec, NULL, platform_dependent_file_spec);
Greg Claytonb1888f22011-03-19 01:12:21 +0000991 else
992 platform_dependent_file_spec = dependent_file_spec;
993
Greg Clayton444fe992012-02-26 05:51:37 +0000994 ModuleSpec module_spec (platform_dependent_file_spec, m_arch);
995 ModuleSP image_module_sp(GetSharedModule (module_spec));
Chris Lattner24943d22010-06-08 16:52:24 +0000996 if (image_module_sp.get())
997 {
Chris Lattner24943d22010-06-08 16:52:24 +0000998 ObjectFile *objfile = image_module_sp->GetObjectFile();
999 if (objfile)
1000 objfile->GetDependentModules(dependent_files);
1001 }
1002 }
1003 }
Chris Lattner24943d22010-06-08 16:52:24 +00001004 }
1005}
1006
1007
Jim Ingham7508e732010-08-09 23:31:02 +00001008bool
1009Target::SetArchitecture (const ArchSpec &arch_spec)
1010{
Greg Claytonb170aee2012-05-08 01:45:38 +00001011 if (m_arch == arch_spec || !m_arch.IsValid())
Jim Ingham7508e732010-08-09 23:31:02 +00001012 {
Greg Claytonb170aee2012-05-08 01:45:38 +00001013 // If we haven't got a valid arch spec, or the architectures are
1014 // compatible, so just update the architecture. Architectures can be
1015 // equal, yet the triple OS and vendor might change, so we need to do
1016 // the assignment here just in case.
Greg Clayton24bc5d92011-03-30 18:16:51 +00001017 m_arch = arch_spec;
Jim Ingham7508e732010-08-09 23:31:02 +00001018 return true;
1019 }
1020 else
1021 {
1022 // If we have an executable file, try to reset the executable to the desired architecture
Greg Clayton24bc5d92011-03-30 18:16:51 +00001023 m_arch = arch_spec;
Jim Ingham7508e732010-08-09 23:31:02 +00001024 ModuleSP executable_sp = GetExecutableModule ();
1025 m_images.Clear();
1026 m_scratch_ast_context_ap.reset();
Sean Callanan4938bd62011-11-16 18:20:47 +00001027 m_scratch_ast_source_ap.reset();
1028 m_ast_importer_ap.reset();
Jim Ingham7508e732010-08-09 23:31:02 +00001029 // Need to do something about unsetting breakpoints.
1030
1031 if (executable_sp)
1032 {
Greg Clayton444fe992012-02-26 05:51:37 +00001033 ModuleSpec module_spec (executable_sp->GetFileSpec(), arch_spec);
1034 Error error = ModuleList::GetSharedModule (module_spec,
1035 executable_sp,
Greg Claytonc6e82e42012-08-22 18:39:03 +00001036 &GetExecutableSearchPaths(),
Greg Clayton444fe992012-02-26 05:51:37 +00001037 NULL,
1038 NULL);
Jim Ingham7508e732010-08-09 23:31:02 +00001039
1040 if (!error.Fail() && executable_sp)
1041 {
1042 SetExecutableModule (executable_sp, true);
1043 return true;
1044 }
Jim Ingham7508e732010-08-09 23:31:02 +00001045 }
1046 }
Greg Claytonb170aee2012-05-08 01:45:38 +00001047 return false;
Jim Ingham7508e732010-08-09 23:31:02 +00001048}
Chris Lattner24943d22010-06-08 16:52:24 +00001049
Chris Lattner24943d22010-06-08 16:52:24 +00001050void
1051Target::ModuleAdded (ModuleSP &module_sp)
1052{
1053 // A module is being added to this target for the first time
1054 ModuleList module_list;
1055 module_list.Append(module_sp);
1056 ModulesDidLoad (module_list);
1057}
1058
1059void
1060Target::ModuleUpdated (ModuleSP &old_module_sp, ModuleSP &new_module_sp)
1061{
Jim Ingham3b8a6052011-08-03 01:00:06 +00001062 // A module is replacing an already added module
Jim Ingham03e5e512012-05-17 18:38:42 +00001063 m_breakpoint_list.UpdateBreakpointsWhenModuleIsReplaced(old_module_sp, new_module_sp);
Chris Lattner24943d22010-06-08 16:52:24 +00001064}
1065
1066void
1067Target::ModulesDidLoad (ModuleList &module_list)
1068{
1069 m_breakpoint_list.UpdateBreakpoints (module_list, true);
1070 // TODO: make event data that packages up the module_list
1071 BroadcastEvent (eBroadcastBitModulesLoaded, NULL);
1072}
1073
1074void
1075Target::ModulesDidUnload (ModuleList &module_list)
1076{
1077 m_breakpoint_list.UpdateBreakpoints (module_list, false);
Greg Clayton7b9fcc02010-12-06 23:51:26 +00001078
1079 // Remove the images from the target image list
1080 m_images.Remove(module_list);
1081
Chris Lattner24943d22010-06-08 16:52:24 +00001082 // TODO: make event data that packages up the module_list
1083 BroadcastEvent (eBroadcastBitModulesUnloaded, NULL);
1084}
1085
Jim Ingham7089d8a2011-10-28 23:14:11 +00001086
Daniel Dunbar705a0982011-10-31 22:50:37 +00001087bool
Greg Clayton444fe992012-02-26 05:51:37 +00001088Target::ModuleIsExcludedForNonModuleSpecificSearches (const FileSpec &module_file_spec)
Jim Ingham7089d8a2011-10-28 23:14:11 +00001089{
1090
Greg Clayton73844aa2012-08-22 17:17:09 +00001091 if (GetBreakpointsConsultPlatformAvoidList())
Jim Ingham7089d8a2011-10-28 23:14:11 +00001092 {
1093 ModuleList matchingModules;
Greg Clayton444fe992012-02-26 05:51:37 +00001094 ModuleSpec module_spec (module_file_spec);
1095 size_t num_modules = GetImages().FindModules(module_spec, matchingModules);
Jim Ingham7089d8a2011-10-28 23:14:11 +00001096
1097 // If there is more than one module for this file spec, only return true if ALL the modules are on the
1098 // black list.
1099 if (num_modules > 0)
1100 {
1101 for (int i = 0; i < num_modules; i++)
1102 {
1103 if (!ModuleIsExcludedForNonModuleSpecificSearches (matchingModules.GetModuleAtIndex(i)))
1104 return false;
1105 }
1106 return true;
1107 }
Jim Ingham7089d8a2011-10-28 23:14:11 +00001108 }
Greg Clayton73844aa2012-08-22 17:17:09 +00001109 return false;
Jim Ingham7089d8a2011-10-28 23:14:11 +00001110}
1111
Daniel Dunbar705a0982011-10-31 22:50:37 +00001112bool
Jim Ingham7089d8a2011-10-28 23:14:11 +00001113Target::ModuleIsExcludedForNonModuleSpecificSearches (const lldb::ModuleSP &module_sp)
1114{
Greg Clayton73844aa2012-08-22 17:17:09 +00001115 if (GetBreakpointsConsultPlatformAvoidList())
Jim Ingham7089d8a2011-10-28 23:14:11 +00001116 {
Greg Clayton73844aa2012-08-22 17:17:09 +00001117 if (m_platform_sp)
1118 return m_platform_sp->ModuleIsExcludedForNonModuleSpecificSearches (*this, module_sp);
Jim Ingham7089d8a2011-10-28 23:14:11 +00001119 }
Greg Clayton73844aa2012-08-22 17:17:09 +00001120 return false;
Jim Ingham7089d8a2011-10-28 23:14:11 +00001121}
1122
Chris Lattner24943d22010-06-08 16:52:24 +00001123size_t
Greg Clayton26100dc2011-01-07 01:57:07 +00001124Target::ReadMemoryFromFileCache (const Address& addr, void *dst, size_t dst_len, Error &error)
1125{
Greg Clayton3508c382012-02-24 01:59:29 +00001126 SectionSP section_sp (addr.GetSection());
1127 if (section_sp)
Greg Clayton26100dc2011-01-07 01:57:07 +00001128 {
Jason Molenda6b028d62012-04-25 00:06:56 +00001129 // If the contents of this section are encrypted, the on-disk file is unusuable. Read only from live memory.
1130 if (section_sp->IsEncrypted())
1131 {
Greg Clayton04e6ada2012-05-25 17:05:55 +00001132 error.SetErrorString("section is encrypted");
Jason Molenda6b028d62012-04-25 00:06:56 +00001133 return 0;
1134 }
Greg Clayton3508c382012-02-24 01:59:29 +00001135 ModuleSP module_sp (section_sp->GetModule());
1136 if (module_sp)
Greg Clayton26100dc2011-01-07 01:57:07 +00001137 {
Greg Clayton3508c382012-02-24 01:59:29 +00001138 ObjectFile *objfile = section_sp->GetModule()->GetObjectFile();
1139 if (objfile)
1140 {
1141 size_t bytes_read = objfile->ReadSectionData (section_sp.get(),
1142 addr.GetOffset(),
1143 dst,
1144 dst_len);
1145 if (bytes_read > 0)
1146 return bytes_read;
1147 else
1148 error.SetErrorStringWithFormat("error reading data from section %s", section_sp->GetName().GetCString());
1149 }
Greg Clayton26100dc2011-01-07 01:57:07 +00001150 else
Greg Clayton3508c382012-02-24 01:59:29 +00001151 error.SetErrorString("address isn't from a object file");
Greg Clayton26100dc2011-01-07 01:57:07 +00001152 }
1153 else
Greg Clayton3508c382012-02-24 01:59:29 +00001154 error.SetErrorString("address isn't in a module");
Greg Clayton26100dc2011-01-07 01:57:07 +00001155 }
1156 else
Greg Clayton26100dc2011-01-07 01:57:07 +00001157 error.SetErrorString("address doesn't contain a section that points to a section in a object file");
Greg Clayton3508c382012-02-24 01:59:29 +00001158
Greg Clayton26100dc2011-01-07 01:57:07 +00001159 return 0;
1160}
1161
1162size_t
Enrico Granata91544802011-09-06 19:20:51 +00001163Target::ReadMemory (const Address& addr,
1164 bool prefer_file_cache,
1165 void *dst,
1166 size_t dst_len,
1167 Error &error,
1168 lldb::addr_t *load_addr_ptr)
Chris Lattner24943d22010-06-08 16:52:24 +00001169{
Chris Lattner24943d22010-06-08 16:52:24 +00001170 error.Clear();
Greg Clayton26100dc2011-01-07 01:57:07 +00001171
Enrico Granata91544802011-09-06 19:20:51 +00001172 // if we end up reading this from process memory, we will fill this
1173 // with the actual load address
1174 if (load_addr_ptr)
1175 *load_addr_ptr = LLDB_INVALID_ADDRESS;
1176
Greg Clayton26100dc2011-01-07 01:57:07 +00001177 size_t bytes_read = 0;
Greg Clayton9b82f862011-07-11 05:12:02 +00001178
1179 addr_t load_addr = LLDB_INVALID_ADDRESS;
1180 addr_t file_addr = LLDB_INVALID_ADDRESS;
Greg Clayton889fbd02011-03-26 19:14:58 +00001181 Address resolved_addr;
1182 if (!addr.IsSectionOffset())
Greg Clayton70436352010-06-30 23:03:03 +00001183 {
Greg Clayton7dd98df2011-07-12 17:06:17 +00001184 if (m_section_load_list.IsEmpty())
Greg Clayton9b82f862011-07-11 05:12:02 +00001185 {
Greg Clayton7dd98df2011-07-12 17:06:17 +00001186 // No sections are loaded, so we must assume we are not running
1187 // yet and anything we are given is a file address.
1188 file_addr = addr.GetOffset(); // "addr" doesn't have a section, so its offset is the file address
1189 m_images.ResolveFileAddress (file_addr, resolved_addr);
Greg Clayton9b82f862011-07-11 05:12:02 +00001190 }
Greg Clayton70436352010-06-30 23:03:03 +00001191 else
Greg Clayton9b82f862011-07-11 05:12:02 +00001192 {
Greg Clayton7dd98df2011-07-12 17:06:17 +00001193 // We have at least one section loaded. This can be becuase
1194 // we have manually loaded some sections with "target modules load ..."
1195 // or because we have have a live process that has sections loaded
1196 // through the dynamic loader
1197 load_addr = addr.GetOffset(); // "addr" doesn't have a section, so its offset is the load address
1198 m_section_load_list.ResolveLoadAddress (load_addr, resolved_addr);
Greg Clayton9b82f862011-07-11 05:12:02 +00001199 }
Greg Clayton70436352010-06-30 23:03:03 +00001200 }
Greg Clayton889fbd02011-03-26 19:14:58 +00001201 if (!resolved_addr.IsValid())
1202 resolved_addr = addr;
Greg Clayton70436352010-06-30 23:03:03 +00001203
Greg Clayton9b82f862011-07-11 05:12:02 +00001204
Greg Clayton26100dc2011-01-07 01:57:07 +00001205 if (prefer_file_cache)
1206 {
1207 bytes_read = ReadMemoryFromFileCache (resolved_addr, dst, dst_len, error);
1208 if (bytes_read > 0)
1209 return bytes_read;
1210 }
Greg Clayton70436352010-06-30 23:03:03 +00001211
Johnny Chenda5a8022011-09-20 23:28:55 +00001212 if (ProcessIsValid())
Greg Clayton70436352010-06-30 23:03:03 +00001213 {
Greg Clayton9b82f862011-07-11 05:12:02 +00001214 if (load_addr == LLDB_INVALID_ADDRESS)
1215 load_addr = resolved_addr.GetLoadAddress (this);
1216
Greg Clayton70436352010-06-30 23:03:03 +00001217 if (load_addr == LLDB_INVALID_ADDRESS)
1218 {
Greg Clayton3508c382012-02-24 01:59:29 +00001219 ModuleSP addr_module_sp (resolved_addr.GetModule());
1220 if (addr_module_sp && addr_module_sp->GetFileSpec())
Greg Clayton9c236732011-10-26 00:56:27 +00001221 error.SetErrorStringWithFormat("%s[0x%llx] can't be resolved, %s in not currently loaded",
Greg Clayton3508c382012-02-24 01:59:29 +00001222 addr_module_sp->GetFileSpec().GetFilename().AsCString(),
Jason Molenda95b7b432011-09-20 00:26:08 +00001223 resolved_addr.GetFileAddress(),
Greg Clayton3508c382012-02-24 01:59:29 +00001224 addr_module_sp->GetFileSpec().GetFilename().AsCString());
Greg Clayton70436352010-06-30 23:03:03 +00001225 else
Greg Clayton9c236732011-10-26 00:56:27 +00001226 error.SetErrorStringWithFormat("0x%llx can't be resolved", resolved_addr.GetFileAddress());
Greg Clayton70436352010-06-30 23:03:03 +00001227 }
1228 else
1229 {
Greg Clayton26100dc2011-01-07 01:57:07 +00001230 bytes_read = m_process_sp->ReadMemory(load_addr, dst, dst_len, error);
Chris Lattner24943d22010-06-08 16:52:24 +00001231 if (bytes_read != dst_len)
1232 {
1233 if (error.Success())
1234 {
1235 if (bytes_read == 0)
Greg Clayton9c236732011-10-26 00:56:27 +00001236 error.SetErrorStringWithFormat("read memory from 0x%llx failed", load_addr);
Chris Lattner24943d22010-06-08 16:52:24 +00001237 else
Greg Clayton9c236732011-10-26 00:56:27 +00001238 error.SetErrorStringWithFormat("only %zu of %zu bytes were read from memory at 0x%llx", bytes_read, dst_len, load_addr);
Chris Lattner24943d22010-06-08 16:52:24 +00001239 }
1240 }
Greg Clayton70436352010-06-30 23:03:03 +00001241 if (bytes_read)
Enrico Granata91544802011-09-06 19:20:51 +00001242 {
1243 if (load_addr_ptr)
1244 *load_addr_ptr = load_addr;
Greg Clayton70436352010-06-30 23:03:03 +00001245 return bytes_read;
Enrico Granata91544802011-09-06 19:20:51 +00001246 }
Greg Clayton70436352010-06-30 23:03:03 +00001247 // If the address is not section offset we have an address that
1248 // doesn't resolve to any address in any currently loaded shared
1249 // libaries and we failed to read memory so there isn't anything
1250 // more we can do. If it is section offset, we might be able to
1251 // read cached memory from the object file.
1252 if (!resolved_addr.IsSectionOffset())
1253 return 0;
Chris Lattner24943d22010-06-08 16:52:24 +00001254 }
Chris Lattner24943d22010-06-08 16:52:24 +00001255 }
Greg Clayton70436352010-06-30 23:03:03 +00001256
Greg Clayton9b82f862011-07-11 05:12:02 +00001257 if (!prefer_file_cache && resolved_addr.IsSectionOffset())
Greg Clayton70436352010-06-30 23:03:03 +00001258 {
Greg Clayton26100dc2011-01-07 01:57:07 +00001259 // If we didn't already try and read from the object file cache, then
1260 // try it after failing to read from the process.
1261 return ReadMemoryFromFileCache (resolved_addr, dst, dst_len, error);
Greg Clayton70436352010-06-30 23:03:03 +00001262 }
1263 return 0;
Chris Lattner24943d22010-06-08 16:52:24 +00001264}
1265
Greg Clayton7dd98df2011-07-12 17:06:17 +00001266size_t
1267Target::ReadScalarIntegerFromMemory (const Address& addr,
1268 bool prefer_file_cache,
1269 uint32_t byte_size,
1270 bool is_signed,
1271 Scalar &scalar,
1272 Error &error)
1273{
1274 uint64_t uval;
1275
1276 if (byte_size <= sizeof(uval))
1277 {
1278 size_t bytes_read = ReadMemory (addr, prefer_file_cache, &uval, byte_size, error);
1279 if (bytes_read == byte_size)
1280 {
1281 DataExtractor data (&uval, sizeof(uval), m_arch.GetByteOrder(), m_arch.GetAddressByteSize());
1282 uint32_t offset = 0;
1283 if (byte_size <= 4)
1284 scalar = data.GetMaxU32 (&offset, byte_size);
1285 else
1286 scalar = data.GetMaxU64 (&offset, byte_size);
1287
1288 if (is_signed)
1289 scalar.SignExtend(byte_size * 8);
1290 return bytes_read;
1291 }
1292 }
1293 else
1294 {
1295 error.SetErrorStringWithFormat ("byte size of %u is too large for integer scalar type", byte_size);
1296 }
1297 return 0;
1298}
1299
1300uint64_t
1301Target::ReadUnsignedIntegerFromMemory (const Address& addr,
1302 bool prefer_file_cache,
1303 size_t integer_byte_size,
1304 uint64_t fail_value,
1305 Error &error)
1306{
1307 Scalar scalar;
1308 if (ReadScalarIntegerFromMemory (addr,
1309 prefer_file_cache,
1310 integer_byte_size,
1311 false,
1312 scalar,
1313 error))
1314 return scalar.ULongLong(fail_value);
1315 return fail_value;
1316}
1317
1318bool
1319Target::ReadPointerFromMemory (const Address& addr,
1320 bool prefer_file_cache,
1321 Error &error,
1322 Address &pointer_addr)
1323{
1324 Scalar scalar;
1325 if (ReadScalarIntegerFromMemory (addr,
1326 prefer_file_cache,
1327 m_arch.GetAddressByteSize(),
1328 false,
1329 scalar,
1330 error))
1331 {
1332 addr_t pointer_vm_addr = scalar.ULongLong(LLDB_INVALID_ADDRESS);
1333 if (pointer_vm_addr != LLDB_INVALID_ADDRESS)
1334 {
1335 if (m_section_load_list.IsEmpty())
1336 {
1337 // No sections are loaded, so we must assume we are not running
1338 // yet and anything we are given is a file address.
1339 m_images.ResolveFileAddress (pointer_vm_addr, pointer_addr);
1340 }
1341 else
1342 {
1343 // We have at least one section loaded. This can be becuase
1344 // we have manually loaded some sections with "target modules load ..."
1345 // or because we have have a live process that has sections loaded
1346 // through the dynamic loader
1347 m_section_load_list.ResolveLoadAddress (pointer_vm_addr, pointer_addr);
1348 }
1349 // We weren't able to resolve the pointer value, so just return
1350 // an address with no section
1351 if (!pointer_addr.IsValid())
1352 pointer_addr.SetOffset (pointer_vm_addr);
1353 return true;
1354
1355 }
1356 }
1357 return false;
1358}
Chris Lattner24943d22010-06-08 16:52:24 +00001359
1360ModuleSP
Greg Clayton444fe992012-02-26 05:51:37 +00001361Target::GetSharedModule (const ModuleSpec &module_spec, Error *error_ptr)
Chris Lattner24943d22010-06-08 16:52:24 +00001362{
Chris Lattner24943d22010-06-08 16:52:24 +00001363 ModuleSP module_sp;
1364
Chris Lattner24943d22010-06-08 16:52:24 +00001365 Error error;
1366
Jim Ingham03e5e512012-05-17 18:38:42 +00001367 // First see if we already have this module in our module list. If we do, then we're done, we don't need
1368 // to consult the shared modules list. But only do this if we are passed a UUID.
Greg Claytone1ef1e32012-04-27 00:58:27 +00001369
Jim Ingham03e5e512012-05-17 18:38:42 +00001370 if (module_spec.GetUUID().IsValid())
1371 module_sp = m_images.FindFirstModule(module_spec);
1372
Greg Claytone1ef1e32012-04-27 00:58:27 +00001373 if (!module_sp)
1374 {
Jim Ingham03e5e512012-05-17 18:38:42 +00001375 ModuleSP old_module_sp; // This will get filled in if we have a new version of the library
1376 bool did_create_module = false;
1377
1378 // If there are image search path entries, try to use them first to acquire a suitable image.
1379 if (m_image_search_paths.GetSize())
Greg Claytone1ef1e32012-04-27 00:58:27 +00001380 {
Jim Ingham03e5e512012-05-17 18:38:42 +00001381 ModuleSpec transformed_spec (module_spec);
1382 if (m_image_search_paths.RemapPath (module_spec.GetFileSpec().GetDirectory(), transformed_spec.GetFileSpec().GetDirectory()))
1383 {
1384 transformed_spec.GetFileSpec().GetFilename() = module_spec.GetFileSpec().GetFilename();
1385 error = ModuleList::GetSharedModule (transformed_spec,
1386 module_sp,
Greg Claytonc6e82e42012-08-22 18:39:03 +00001387 &GetExecutableSearchPaths(),
Jim Ingham03e5e512012-05-17 18:38:42 +00001388 &old_module_sp,
1389 &did_create_module);
1390 }
Greg Claytone1ef1e32012-04-27 00:58:27 +00001391 }
Jim Ingham03e5e512012-05-17 18:38:42 +00001392
Greg Claytone1ef1e32012-04-27 00:58:27 +00001393 if (!module_sp)
1394 {
Jim Ingham03e5e512012-05-17 18:38:42 +00001395 // If we have a UUID, we can check our global shared module list in case
1396 // we already have it. If we don't have a valid UUID, then we can't since
1397 // the path in "module_spec" will be a platform path, and we will need to
1398 // let the platform find that file. For example, we could be asking for
1399 // "/usr/lib/dyld" and if we do not have a UUID, we don't want to pick
1400 // the local copy of "/usr/lib/dyld" since our platform could be a remote
1401 // platform that has its own "/usr/lib/dyld" in an SDK or in a local file
1402 // cache.
1403 if (module_spec.GetUUID().IsValid())
Greg Claytone1ef1e32012-04-27 00:58:27 +00001404 {
Jim Ingham03e5e512012-05-17 18:38:42 +00001405 // We have a UUID, it is OK to check the global module list...
1406 error = ModuleList::GetSharedModule (module_spec,
1407 module_sp,
Greg Claytonc6e82e42012-08-22 18:39:03 +00001408 &GetExecutableSearchPaths(),
Greg Clayton73844aa2012-08-22 17:17:09 +00001409 &old_module_sp,
Jim Ingham03e5e512012-05-17 18:38:42 +00001410 &did_create_module);
Greg Claytone1ef1e32012-04-27 00:58:27 +00001411 }
Jim Ingham03e5e512012-05-17 18:38:42 +00001412
1413 if (!module_sp)
Greg Claytone1ef1e32012-04-27 00:58:27 +00001414 {
Jim Ingham03e5e512012-05-17 18:38:42 +00001415 // The platform is responsible for finding and caching an appropriate
1416 // module in the shared module cache.
1417 if (m_platform_sp)
1418 {
1419 FileSpec platform_file_spec;
1420 error = m_platform_sp->GetSharedModule (module_spec,
1421 module_sp,
Greg Claytonc6e82e42012-08-22 18:39:03 +00001422 &GetExecutableSearchPaths(),
Greg Clayton73844aa2012-08-22 17:17:09 +00001423 &old_module_sp,
Jim Ingham03e5e512012-05-17 18:38:42 +00001424 &did_create_module);
1425 }
1426 else
1427 {
1428 error.SetErrorString("no platform is currently set");
1429 }
Greg Claytone1ef1e32012-04-27 00:58:27 +00001430 }
1431 }
Chris Lattner24943d22010-06-08 16:52:24 +00001432
Jim Ingham03e5e512012-05-17 18:38:42 +00001433 // We found a module that wasn't in our target list. Let's make sure that there wasn't an equivalent
1434 // module in the list already, and if there was, let's remove it.
1435 if (module_sp)
Chris Lattner24943d22010-06-08 16:52:24 +00001436 {
Jim Ingham03e5e512012-05-17 18:38:42 +00001437 // GetSharedModule is not guaranteed to find the old shared module, for instance
1438 // in the common case where you pass in the UUID, it is only going to find the one
1439 // module matching the UUID. In fact, it has no good way to know what the "old module"
1440 // relevant to this target is, since there might be many copies of a module with this file spec
1441 // in various running debug sessions, but only one of them will belong to this target.
1442 // So let's remove the UUID from the module list, and look in the target's module list.
1443 // Only do this if there is SOMETHING else in the module spec...
1444 if (!old_module_sp)
1445 {
1446 if (module_spec.GetUUID().IsValid() && !module_spec.GetFileSpec().GetFilename().IsEmpty() && !module_spec.GetFileSpec().GetDirectory().IsEmpty())
1447 {
1448 ModuleSpec module_spec_copy(module_spec.GetFileSpec());
1449 module_spec_copy.GetUUID().Clear();
1450
1451 ModuleList found_modules;
1452 size_t num_found = m_images.FindModules (module_spec_copy, found_modules);
1453 if (num_found == 1)
1454 {
1455 old_module_sp = found_modules.GetModuleAtIndex(0);
1456 }
1457 }
1458 }
1459
1460 m_images.Append (module_sp);
Chris Lattner24943d22010-06-08 16:52:24 +00001461 if (old_module_sp && m_images.GetIndexForModule (old_module_sp.get()) != LLDB_INVALID_INDEX32)
Jim Ingham03e5e512012-05-17 18:38:42 +00001462 {
Chris Lattner24943d22010-06-08 16:52:24 +00001463 ModuleUpdated(old_module_sp, module_sp);
Jim Ingham03e5e512012-05-17 18:38:42 +00001464 m_images.Remove (old_module_sp);
1465 Module *old_module_ptr = old_module_sp.get();
1466 old_module_sp.reset();
1467 ModuleList::RemoveSharedModuleIfOrphaned (old_module_ptr);
1468 }
Chris Lattner24943d22010-06-08 16:52:24 +00001469 else
1470 ModuleAdded(module_sp);
1471 }
1472 }
1473 if (error_ptr)
1474 *error_ptr = error;
1475 return module_sp;
1476}
1477
1478
Greg Clayton289afcb2012-02-18 05:35:26 +00001479TargetSP
Chris Lattner24943d22010-06-08 16:52:24 +00001480Target::CalculateTarget ()
1481{
Greg Clayton289afcb2012-02-18 05:35:26 +00001482 return shared_from_this();
Chris Lattner24943d22010-06-08 16:52:24 +00001483}
1484
Greg Clayton289afcb2012-02-18 05:35:26 +00001485ProcessSP
Chris Lattner24943d22010-06-08 16:52:24 +00001486Target::CalculateProcess ()
1487{
Greg Clayton289afcb2012-02-18 05:35:26 +00001488 return ProcessSP();
Chris Lattner24943d22010-06-08 16:52:24 +00001489}
1490
Greg Clayton289afcb2012-02-18 05:35:26 +00001491ThreadSP
Chris Lattner24943d22010-06-08 16:52:24 +00001492Target::CalculateThread ()
1493{
Greg Clayton289afcb2012-02-18 05:35:26 +00001494 return ThreadSP();
Chris Lattner24943d22010-06-08 16:52:24 +00001495}
1496
Greg Clayton289afcb2012-02-18 05:35:26 +00001497StackFrameSP
Chris Lattner24943d22010-06-08 16:52:24 +00001498Target::CalculateStackFrame ()
1499{
Greg Clayton289afcb2012-02-18 05:35:26 +00001500 return StackFrameSP();
Chris Lattner24943d22010-06-08 16:52:24 +00001501}
1502
1503void
Greg Claytona830adb2010-10-04 01:05:56 +00001504Target::CalculateExecutionContext (ExecutionContext &exe_ctx)
Chris Lattner24943d22010-06-08 16:52:24 +00001505{
Greg Clayton567e7f32011-09-22 04:58:26 +00001506 exe_ctx.Clear();
1507 exe_ctx.SetTargetPtr(this);
Chris Lattner24943d22010-06-08 16:52:24 +00001508}
1509
1510PathMappingList &
1511Target::GetImageSearchPathList ()
1512{
1513 return m_image_search_paths;
1514}
1515
1516void
1517Target::ImageSearchPathsChanged
1518(
1519 const PathMappingList &path_list,
1520 void *baton
1521)
1522{
1523 Target *target = (Target *)baton;
Greg Clayton5beb99d2011-08-11 02:48:45 +00001524 ModuleSP exe_module_sp (target->GetExecutableModule());
1525 if (exe_module_sp)
Chris Lattner24943d22010-06-08 16:52:24 +00001526 {
Greg Clayton5beb99d2011-08-11 02:48:45 +00001527 target->m_images.Clear();
1528 target->SetExecutableModule (exe_module_sp, true);
Chris Lattner24943d22010-06-08 16:52:24 +00001529 }
1530}
1531
1532ClangASTContext *
Johnny Chenfa21ffd2011-11-30 23:18:53 +00001533Target::GetScratchClangASTContext(bool create_on_demand)
Chris Lattner24943d22010-06-08 16:52:24 +00001534{
Greg Clayton34ce4ea2011-08-03 01:23:55 +00001535 // Now see if we know the target triple, and if so, create our scratch AST context:
Johnny Chenfa21ffd2011-11-30 23:18:53 +00001536 if (m_scratch_ast_context_ap.get() == NULL && m_arch.IsValid() && create_on_demand)
Sean Callanandcf03f82011-11-15 22:27:19 +00001537 {
Greg Clayton34ce4ea2011-08-03 01:23:55 +00001538 m_scratch_ast_context_ap.reset (new ClangASTContext(m_arch.GetTriple().str().c_str()));
Greg Clayton13d24fb2012-01-29 20:56:30 +00001539 m_scratch_ast_source_ap.reset (new ClangASTSource(shared_from_this()));
Sean Callanandcf03f82011-11-15 22:27:19 +00001540 m_scratch_ast_source_ap->InstallASTContext(m_scratch_ast_context_ap->getASTContext());
1541 llvm::OwningPtr<clang::ExternalASTSource> proxy_ast_source(m_scratch_ast_source_ap->CreateProxy());
1542 m_scratch_ast_context_ap->SetExternalSource(proxy_ast_source);
1543 }
Chris Lattner24943d22010-06-08 16:52:24 +00001544 return m_scratch_ast_context_ap.get();
1545}
Caroline Tice5bc8c972010-09-20 20:44:43 +00001546
Sean Callanan4938bd62011-11-16 18:20:47 +00001547ClangASTImporter *
1548Target::GetClangASTImporter()
1549{
1550 ClangASTImporter *ast_importer = m_ast_importer_ap.get();
1551
1552 if (!ast_importer)
1553 {
1554 ast_importer = new ClangASTImporter();
1555 m_ast_importer_ap.reset(ast_importer);
1556 }
1557
1558 return ast_importer;
1559}
1560
Greg Clayton990de7b2010-11-18 23:32:35 +00001561void
Caroline Tice2a456812011-03-10 22:14:10 +00001562Target::SettingsInitialize ()
Caroline Tice5bc8c972010-09-20 20:44:43 +00001563{
Greg Claytonc6e82e42012-08-22 18:39:03 +00001564 Process::SettingsInitialize ();
Greg Clayton990de7b2010-11-18 23:32:35 +00001565}
Caroline Tice5bc8c972010-09-20 20:44:43 +00001566
Greg Clayton990de7b2010-11-18 23:32:35 +00001567void
Caroline Tice2a456812011-03-10 22:14:10 +00001568Target::SettingsTerminate ()
Greg Clayton990de7b2010-11-18 23:32:35 +00001569{
Greg Claytonc6e82e42012-08-22 18:39:03 +00001570 Process::SettingsTerminate ();
Greg Clayton990de7b2010-11-18 23:32:35 +00001571}
Caroline Tice5bc8c972010-09-20 20:44:43 +00001572
Greg Clayton9ce95382012-02-13 23:10:39 +00001573FileSpecList
1574Target::GetDefaultExecutableSearchPaths ()
1575{
Greg Clayton73844aa2012-08-22 17:17:09 +00001576 TargetPropertiesSP properties_sp(Target::GetGlobalProperties());
1577 if (properties_sp)
1578 return properties_sp->GetExecutableSearchPaths();
Greg Clayton9ce95382012-02-13 23:10:39 +00001579 return FileSpecList();
1580}
1581
Caroline Tice5bc8c972010-09-20 20:44:43 +00001582ArchSpec
1583Target::GetDefaultArchitecture ()
1584{
Greg Clayton73844aa2012-08-22 17:17:09 +00001585 TargetPropertiesSP properties_sp(Target::GetGlobalProperties());
1586 if (properties_sp)
1587 return properties_sp->GetDefaultArchitecture();
Greg Clayton469e08d2012-05-15 02:44:13 +00001588 return ArchSpec();
Caroline Tice5bc8c972010-09-20 20:44:43 +00001589}
1590
1591void
Greg Clayton73844aa2012-08-22 17:17:09 +00001592Target::SetDefaultArchitecture (const ArchSpec &arch)
Caroline Tice5bc8c972010-09-20 20:44:43 +00001593{
Greg Clayton73844aa2012-08-22 17:17:09 +00001594 TargetPropertiesSP properties_sp(Target::GetGlobalProperties());
1595 if (properties_sp)
1596 return properties_sp->SetDefaultArchitecture(arch);
Caroline Tice5bc8c972010-09-20 20:44:43 +00001597}
1598
Greg Claytona830adb2010-10-04 01:05:56 +00001599Target *
1600Target::GetTargetFromContexts (const ExecutionContext *exe_ctx_ptr, const SymbolContext *sc_ptr)
1601{
1602 // The target can either exist in the "process" of ExecutionContext, or in
1603 // the "target_sp" member of SymbolContext. This accessor helper function
1604 // will get the target from one of these locations.
1605
1606 Target *target = NULL;
1607 if (sc_ptr != NULL)
1608 target = sc_ptr->target_sp.get();
Greg Clayton567e7f32011-09-22 04:58:26 +00001609 if (target == NULL && exe_ctx_ptr)
1610 target = exe_ctx_ptr->GetTargetPtr();
Greg Claytona830adb2010-10-04 01:05:56 +00001611 return target;
1612}
1613
Greg Clayton427f2902010-12-14 02:59:59 +00001614ExecutionResults
1615Target::EvaluateExpression
1616(
1617 const char *expr_cstr,
1618 StackFrame *frame,
Enrico Granata6cca9692012-07-16 23:10:35 +00001619 lldb::ValueObjectSP &result_valobj_sp,
Enrico Granatad27026e2012-09-05 20:41:26 +00001620 const EvaluateExpressionOptions& options
Greg Clayton427f2902010-12-14 02:59:59 +00001621)
1622{
1623 ExecutionResults execution_results = eExecutionSetupError;
1624
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001625 if (expr_cstr == NULL || expr_cstr[0] == '\0')
1626 return execution_results;
1627
Jim Ingham3613ae12011-05-12 02:06:14 +00001628 // We shouldn't run stop hooks in expressions.
1629 // Be sure to reset this if you return anywhere within this function.
1630 bool old_suppress_value = m_suppress_stop_hooks;
1631 m_suppress_stop_hooks = true;
Greg Clayton427f2902010-12-14 02:59:59 +00001632
1633 ExecutionContext exe_ctx;
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001634
1635 const size_t expr_cstr_len = ::strlen (expr_cstr);
1636
Greg Clayton427f2902010-12-14 02:59:59 +00001637 if (frame)
1638 {
1639 frame->CalculateExecutionContext(exe_ctx);
Greg Claytonc3b61d22010-12-15 05:08:08 +00001640 Error error;
Greg Claytonc67efa42011-01-20 19:27:18 +00001641 const uint32_t expr_path_options = StackFrame::eExpressionPathOptionCheckPtrVsMember |
Enrico Granataf6698502011-08-09 01:04:56 +00001642 StackFrame::eExpressionPathOptionsNoFragileObjcIvar |
1643 StackFrame::eExpressionPathOptionsNoSyntheticChildren;
Jim Ingham10de7d12011-05-04 03:43:18 +00001644 lldb::VariableSP var_sp;
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001645
1646 // Make sure we don't have any things that we know a variable expression
1647 // won't be able to deal with before calling into it
1648 if (::strcspn (expr_cstr, "()+*&|!~<=/^%,?") == expr_cstr_len)
1649 {
1650 result_valobj_sp = frame->GetValueForVariableExpressionPath (expr_cstr,
Enrico Granatad27026e2012-09-05 20:41:26 +00001651 options.GetUseDynamic(),
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001652 expr_path_options,
1653 var_sp,
1654 error);
Enrico Granata4d609c92012-04-24 22:15:37 +00001655 // if this expression results in a bitfield, we give up and let the IR handle it
1656 if (result_valobj_sp && result_valobj_sp->IsBitfield())
1657 result_valobj_sp.reset();
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001658 }
Greg Clayton427f2902010-12-14 02:59:59 +00001659 }
1660 else if (m_process_sp)
1661 {
1662 m_process_sp->CalculateExecutionContext(exe_ctx);
1663 }
1664 else
1665 {
1666 CalculateExecutionContext(exe_ctx);
1667 }
1668
1669 if (result_valobj_sp)
1670 {
1671 execution_results = eExecutionCompleted;
1672 // We got a result from the frame variable expression path above...
1673 ConstString persistent_variable_name (m_persistent_variables.GetNextPersistentVariableName());
1674
1675 lldb::ValueObjectSP const_valobj_sp;
1676
1677 // Check in case our value is already a constant value
1678 if (result_valobj_sp->GetIsConstant())
1679 {
1680 const_valobj_sp = result_valobj_sp;
1681 const_valobj_sp->SetName (persistent_variable_name);
1682 }
1683 else
Jim Inghame41494a2011-04-16 00:01:13 +00001684 {
Enrico Granatad27026e2012-09-05 20:41:26 +00001685 if (options.GetUseDynamic() != lldb::eNoDynamicValues)
Jim Inghame41494a2011-04-16 00:01:13 +00001686 {
Enrico Granatad27026e2012-09-05 20:41:26 +00001687 ValueObjectSP dynamic_sp = result_valobj_sp->GetDynamicValue(options.GetUseDynamic());
Jim Inghame41494a2011-04-16 00:01:13 +00001688 if (dynamic_sp)
1689 result_valobj_sp = dynamic_sp;
1690 }
1691
Jim Inghamfa3a16a2011-03-31 00:19:25 +00001692 const_valobj_sp = result_valobj_sp->CreateConstantValue (persistent_variable_name);
Jim Inghame41494a2011-04-16 00:01:13 +00001693 }
Greg Clayton427f2902010-12-14 02:59:59 +00001694
Sean Callanan6a925532011-01-13 08:53:35 +00001695 lldb::ValueObjectSP live_valobj_sp = result_valobj_sp;
1696
Greg Clayton427f2902010-12-14 02:59:59 +00001697 result_valobj_sp = const_valobj_sp;
1698
Sean Callanan6a925532011-01-13 08:53:35 +00001699 ClangExpressionVariableSP clang_expr_variable_sp(m_persistent_variables.CreatePersistentVariable(result_valobj_sp));
1700 assert (clang_expr_variable_sp.get());
1701
1702 // Set flags and live data as appropriate
1703
1704 const Value &result_value = live_valobj_sp->GetValue();
1705
1706 switch (result_value.GetValueType())
1707 {
1708 case Value::eValueTypeHostAddress:
1709 case Value::eValueTypeFileAddress:
1710 // we don't do anything with these for now
1711 break;
1712 case Value::eValueTypeScalar:
1713 clang_expr_variable_sp->m_flags |= ClangExpressionVariable::EVIsLLDBAllocated;
1714 clang_expr_variable_sp->m_flags |= ClangExpressionVariable::EVNeedsAllocation;
1715 break;
1716 case Value::eValueTypeLoadAddress:
1717 clang_expr_variable_sp->m_live_sp = live_valobj_sp;
1718 clang_expr_variable_sp->m_flags |= ClangExpressionVariable::EVIsProgramReference;
1719 break;
1720 }
Greg Clayton427f2902010-12-14 02:59:59 +00001721 }
1722 else
1723 {
1724 // Make sure we aren't just trying to see the value of a persistent
1725 // variable (something like "$0")
Greg Claytona875b642011-01-09 21:07:35 +00001726 lldb::ClangExpressionVariableSP persistent_var_sp;
1727 // Only check for persistent variables the expression starts with a '$'
1728 if (expr_cstr[0] == '$')
1729 persistent_var_sp = m_persistent_variables.GetVariable (expr_cstr);
1730
Greg Clayton427f2902010-12-14 02:59:59 +00001731 if (persistent_var_sp)
1732 {
1733 result_valobj_sp = persistent_var_sp->GetValueObject ();
1734 execution_results = eExecutionCompleted;
1735 }
1736 else
1737 {
1738 const char *prefix = GetExpressionPrefixContentsAsCString();
Sean Callanan47dc4572011-09-15 02:13:07 +00001739
Greg Clayton427f2902010-12-14 02:59:59 +00001740 execution_results = ClangUserExpression::Evaluate (exe_ctx,
Enrico Granatad27026e2012-09-05 20:41:26 +00001741 options.GetExecutionPolicy(),
Sean Callanan5b658cc2011-11-07 23:35:40 +00001742 lldb::eLanguageTypeUnknown,
Enrico Granatad27026e2012-09-05 20:41:26 +00001743 options.DoesCoerceToId() ? ClangUserExpression::eResultTypeId : ClangUserExpression::eResultTypeAny,
1744 options.DoesUnwindOnError(),
Greg Clayton427f2902010-12-14 02:59:59 +00001745 expr_cstr,
1746 prefix,
Enrico Granata6cca9692012-07-16 23:10:35 +00001747 result_valobj_sp,
Enrico Granatad27026e2012-09-05 20:41:26 +00001748 options.GetSingleThreadTimeoutUsec());
Greg Clayton427f2902010-12-14 02:59:59 +00001749 }
1750 }
Jim Ingham3613ae12011-05-12 02:06:14 +00001751
1752 m_suppress_stop_hooks = old_suppress_value;
1753
Greg Clayton427f2902010-12-14 02:59:59 +00001754 return execution_results;
1755}
1756
Greg Claytonc0fa5332011-05-22 22:46:53 +00001757lldb::addr_t
1758Target::GetCallableLoadAddress (lldb::addr_t load_addr, AddressClass addr_class) const
1759{
1760 addr_t code_addr = load_addr;
1761 switch (m_arch.GetMachine())
1762 {
1763 case llvm::Triple::arm:
1764 case llvm::Triple::thumb:
1765 switch (addr_class)
1766 {
1767 case eAddressClassData:
1768 case eAddressClassDebug:
1769 return LLDB_INVALID_ADDRESS;
1770
1771 case eAddressClassUnknown:
1772 case eAddressClassInvalid:
1773 case eAddressClassCode:
1774 case eAddressClassCodeAlternateISA:
1775 case eAddressClassRuntime:
1776 // Check if bit zero it no set?
1777 if ((code_addr & 1ull) == 0)
1778 {
1779 // Bit zero isn't set, check if the address is a multiple of 2?
1780 if (code_addr & 2ull)
1781 {
1782 // The address is a multiple of 2 so it must be thumb, set bit zero
1783 code_addr |= 1ull;
1784 }
1785 else if (addr_class == eAddressClassCodeAlternateISA)
1786 {
1787 // We checked the address and the address claims to be the alternate ISA
1788 // which means thumb, so set bit zero.
1789 code_addr |= 1ull;
1790 }
1791 }
1792 break;
1793 }
1794 break;
1795
1796 default:
1797 break;
1798 }
1799 return code_addr;
1800}
1801
1802lldb::addr_t
1803Target::GetOpcodeLoadAddress (lldb::addr_t load_addr, AddressClass addr_class) const
1804{
1805 addr_t opcode_addr = load_addr;
1806 switch (m_arch.GetMachine())
1807 {
1808 case llvm::Triple::arm:
1809 case llvm::Triple::thumb:
1810 switch (addr_class)
1811 {
1812 case eAddressClassData:
1813 case eAddressClassDebug:
1814 return LLDB_INVALID_ADDRESS;
1815
1816 case eAddressClassInvalid:
1817 case eAddressClassUnknown:
1818 case eAddressClassCode:
1819 case eAddressClassCodeAlternateISA:
1820 case eAddressClassRuntime:
1821 opcode_addr &= ~(1ull);
1822 break;
1823 }
1824 break;
1825
1826 default:
1827 break;
1828 }
1829 return opcode_addr;
1830}
1831
Jim Inghamd60d94a2011-03-11 03:53:59 +00001832lldb::user_id_t
1833Target::AddStopHook (Target::StopHookSP &new_hook_sp)
1834{
1835 lldb::user_id_t new_uid = ++m_stop_hook_next_id;
Greg Clayton13d24fb2012-01-29 20:56:30 +00001836 new_hook_sp.reset (new StopHook(shared_from_this(), new_uid));
Jim Inghamd60d94a2011-03-11 03:53:59 +00001837 m_stop_hooks[new_uid] = new_hook_sp;
1838 return new_uid;
1839}
1840
1841bool
1842Target::RemoveStopHookByID (lldb::user_id_t user_id)
1843{
1844 size_t num_removed;
1845 num_removed = m_stop_hooks.erase (user_id);
1846 if (num_removed == 0)
1847 return false;
1848 else
1849 return true;
1850}
1851
1852void
1853Target::RemoveAllStopHooks ()
1854{
1855 m_stop_hooks.clear();
1856}
1857
1858Target::StopHookSP
1859Target::GetStopHookByID (lldb::user_id_t user_id)
1860{
1861 StopHookSP found_hook;
1862
1863 StopHookCollection::iterator specified_hook_iter;
1864 specified_hook_iter = m_stop_hooks.find (user_id);
1865 if (specified_hook_iter != m_stop_hooks.end())
1866 found_hook = (*specified_hook_iter).second;
1867 return found_hook;
1868}
1869
1870bool
1871Target::SetStopHookActiveStateByID (lldb::user_id_t user_id, bool active_state)
1872{
1873 StopHookCollection::iterator specified_hook_iter;
1874 specified_hook_iter = m_stop_hooks.find (user_id);
1875 if (specified_hook_iter == m_stop_hooks.end())
1876 return false;
1877
1878 (*specified_hook_iter).second->SetIsActive (active_state);
1879 return true;
1880}
1881
1882void
1883Target::SetAllStopHooksActiveState (bool active_state)
1884{
1885 StopHookCollection::iterator pos, end = m_stop_hooks.end();
1886 for (pos = m_stop_hooks.begin(); pos != end; pos++)
1887 {
1888 (*pos).second->SetIsActive (active_state);
1889 }
1890}
1891
1892void
1893Target::RunStopHooks ()
1894{
Jim Ingham3613ae12011-05-12 02:06:14 +00001895 if (m_suppress_stop_hooks)
1896 return;
1897
Jim Inghamd60d94a2011-03-11 03:53:59 +00001898 if (!m_process_sp)
1899 return;
Enrico Granata5a60f5e2012-08-03 22:24:48 +00001900
1901 // <rdar://problem/12027563> make sure we check that we are not stopped because of us running a user expression
1902 // since in that case we do not want to run the stop-hooks
1903 if (m_process_sp->GetModIDRef().IsLastResumeForUserExpression())
1904 return;
1905
Jim Inghamd60d94a2011-03-11 03:53:59 +00001906 if (m_stop_hooks.empty())
1907 return;
1908
1909 StopHookCollection::iterator pos, end = m_stop_hooks.end();
1910
1911 // If there aren't any active stop hooks, don't bother either:
1912 bool any_active_hooks = false;
1913 for (pos = m_stop_hooks.begin(); pos != end; pos++)
1914 {
1915 if ((*pos).second->IsActive())
1916 {
1917 any_active_hooks = true;
1918 break;
1919 }
1920 }
1921 if (!any_active_hooks)
1922 return;
1923
1924 CommandReturnObject result;
1925
1926 std::vector<ExecutionContext> exc_ctx_with_reasons;
1927 std::vector<SymbolContext> sym_ctx_with_reasons;
1928
1929 ThreadList &cur_threadlist = m_process_sp->GetThreadList();
1930 size_t num_threads = cur_threadlist.GetSize();
1931 for (size_t i = 0; i < num_threads; i++)
1932 {
1933 lldb::ThreadSP cur_thread_sp = cur_threadlist.GetThreadAtIndex (i);
1934 if (cur_thread_sp->ThreadStoppedForAReason())
1935 {
1936 lldb::StackFrameSP cur_frame_sp = cur_thread_sp->GetStackFrameAtIndex(0);
1937 exc_ctx_with_reasons.push_back(ExecutionContext(m_process_sp.get(), cur_thread_sp.get(), cur_frame_sp.get()));
1938 sym_ctx_with_reasons.push_back(cur_frame_sp->GetSymbolContext(eSymbolContextEverything));
1939 }
1940 }
1941
1942 // If no threads stopped for a reason, don't run the stop-hooks.
1943 size_t num_exe_ctx = exc_ctx_with_reasons.size();
1944 if (num_exe_ctx == 0)
1945 return;
1946
Jim Inghame5ed8e92011-06-02 23:58:26 +00001947 result.SetImmediateOutputStream (m_debugger.GetAsyncOutputStream());
1948 result.SetImmediateErrorStream (m_debugger.GetAsyncErrorStream());
Jim Inghamd60d94a2011-03-11 03:53:59 +00001949
1950 bool keep_going = true;
1951 bool hooks_ran = false;
Jim Inghamc54840c2011-03-22 01:47:27 +00001952 bool print_hook_header;
1953 bool print_thread_header;
1954
1955 if (num_exe_ctx == 1)
1956 print_thread_header = false;
1957 else
1958 print_thread_header = true;
1959
1960 if (m_stop_hooks.size() == 1)
1961 print_hook_header = false;
1962 else
1963 print_hook_header = true;
1964
Jim Inghamd60d94a2011-03-11 03:53:59 +00001965 for (pos = m_stop_hooks.begin(); keep_going && pos != end; pos++)
1966 {
1967 // result.Clear();
1968 StopHookSP cur_hook_sp = (*pos).second;
1969 if (!cur_hook_sp->IsActive())
1970 continue;
1971
1972 bool any_thread_matched = false;
1973 for (size_t i = 0; keep_going && i < num_exe_ctx; i++)
1974 {
1975 if ((cur_hook_sp->GetSpecifier () == NULL
1976 || cur_hook_sp->GetSpecifier()->SymbolContextMatches(sym_ctx_with_reasons[i]))
1977 && (cur_hook_sp->GetThreadSpecifier() == NULL
Jim Inghama2664912012-03-07 22:03:04 +00001978 || cur_hook_sp->GetThreadSpecifier()->ThreadPassesBasicTests(exc_ctx_with_reasons[i].GetThreadRef())))
Jim Inghamd60d94a2011-03-11 03:53:59 +00001979 {
1980 if (!hooks_ran)
1981 {
Jim Inghamd60d94a2011-03-11 03:53:59 +00001982 hooks_ran = true;
1983 }
Jim Inghamc54840c2011-03-22 01:47:27 +00001984 if (print_hook_header && !any_thread_matched)
Jim Inghamd60d94a2011-03-11 03:53:59 +00001985 {
Johnny Chen4d96a742011-10-24 23:01:06 +00001986 const char *cmd = (cur_hook_sp->GetCommands().GetSize() == 1 ?
1987 cur_hook_sp->GetCommands().GetStringAtIndex(0) :
1988 NULL);
1989 if (cmd)
1990 result.AppendMessageWithFormat("\n- Hook %llu (%s)\n", cur_hook_sp->GetID(), cmd);
1991 else
1992 result.AppendMessageWithFormat("\n- Hook %llu\n", cur_hook_sp->GetID());
Jim Inghamd60d94a2011-03-11 03:53:59 +00001993 any_thread_matched = true;
1994 }
1995
Jim Inghamc54840c2011-03-22 01:47:27 +00001996 if (print_thread_header)
Greg Clayton567e7f32011-09-22 04:58:26 +00001997 result.AppendMessageWithFormat("-- Thread %d\n", exc_ctx_with_reasons[i].GetThreadPtr()->GetIndexID());
Jim Inghamd60d94a2011-03-11 03:53:59 +00001998
1999 bool stop_on_continue = true;
2000 bool stop_on_error = true;
2001 bool echo_commands = false;
2002 bool print_results = true;
2003 GetDebugger().GetCommandInterpreter().HandleCommands (cur_hook_sp->GetCommands(),
Greg Clayton24bc5d92011-03-30 18:16:51 +00002004 &exc_ctx_with_reasons[i],
2005 stop_on_continue,
2006 stop_on_error,
2007 echo_commands,
Enrico Granata01bc2d42012-05-31 01:09:06 +00002008 print_results,
2009 eLazyBoolNo,
Greg Clayton24bc5d92011-03-30 18:16:51 +00002010 result);
Jim Inghamd60d94a2011-03-11 03:53:59 +00002011
2012 // If the command started the target going again, we should bag out of
2013 // running the stop hooks.
Greg Clayton24bc5d92011-03-30 18:16:51 +00002014 if ((result.GetStatus() == eReturnStatusSuccessContinuingNoResult) ||
2015 (result.GetStatus() == eReturnStatusSuccessContinuingResult))
Jim Inghamd60d94a2011-03-11 03:53:59 +00002016 {
Greg Clayton444e35b2011-10-19 18:09:39 +00002017 result.AppendMessageWithFormat ("Aborting stop hooks, hook %llu set the program running.", cur_hook_sp->GetID());
Jim Inghamd60d94a2011-03-11 03:53:59 +00002018 keep_going = false;
2019 }
2020 }
2021 }
2022 }
Jason Molenda850ac6e2011-09-23 00:42:55 +00002023
Caroline Tice4a348082011-05-02 20:41:46 +00002024 result.GetImmediateOutputStream()->Flush();
2025 result.GetImmediateErrorStream()->Flush();
Jim Inghamd60d94a2011-03-11 03:53:59 +00002026}
2027
Greg Claytonbbea1332011-07-08 00:48:09 +00002028
Jim Inghamd60d94a2011-03-11 03:53:59 +00002029//--------------------------------------------------------------
2030// class Target::StopHook
2031//--------------------------------------------------------------
2032
2033
2034Target::StopHook::StopHook (lldb::TargetSP target_sp, lldb::user_id_t uid) :
2035 UserID (uid),
2036 m_target_sp (target_sp),
Jim Inghamd60d94a2011-03-11 03:53:59 +00002037 m_commands (),
2038 m_specifier_sp (),
Stephen Wilsondbeb3e12011-04-11 19:41:40 +00002039 m_thread_spec_ap(NULL),
2040 m_active (true)
Jim Inghamd60d94a2011-03-11 03:53:59 +00002041{
2042}
2043
2044Target::StopHook::StopHook (const StopHook &rhs) :
2045 UserID (rhs.GetID()),
2046 m_target_sp (rhs.m_target_sp),
2047 m_commands (rhs.m_commands),
2048 m_specifier_sp (rhs.m_specifier_sp),
Stephen Wilsondbeb3e12011-04-11 19:41:40 +00002049 m_thread_spec_ap (NULL),
2050 m_active (rhs.m_active)
Jim Inghamd60d94a2011-03-11 03:53:59 +00002051{
2052 if (rhs.m_thread_spec_ap.get() != NULL)
2053 m_thread_spec_ap.reset (new ThreadSpec(*rhs.m_thread_spec_ap.get()));
2054}
2055
2056
2057Target::StopHook::~StopHook ()
2058{
2059}
2060
2061void
2062Target::StopHook::SetThreadSpecifier (ThreadSpec *specifier)
2063{
2064 m_thread_spec_ap.reset (specifier);
2065}
2066
2067
2068void
2069Target::StopHook::GetDescription (Stream *s, lldb::DescriptionLevel level) const
2070{
2071 int indent_level = s->GetIndentLevel();
2072
2073 s->SetIndentLevel(indent_level + 2);
2074
Greg Clayton444e35b2011-10-19 18:09:39 +00002075 s->Printf ("Hook: %llu\n", GetID());
Jim Inghamd60d94a2011-03-11 03:53:59 +00002076 if (m_active)
2077 s->Indent ("State: enabled\n");
2078 else
2079 s->Indent ("State: disabled\n");
2080
2081 if (m_specifier_sp)
2082 {
2083 s->Indent();
2084 s->PutCString ("Specifier:\n");
2085 s->SetIndentLevel (indent_level + 4);
2086 m_specifier_sp->GetDescription (s, level);
2087 s->SetIndentLevel (indent_level + 2);
2088 }
2089
2090 if (m_thread_spec_ap.get() != NULL)
2091 {
2092 StreamString tmp;
2093 s->Indent("Thread:\n");
2094 m_thread_spec_ap->GetDescription (&tmp, level);
2095 s->SetIndentLevel (indent_level + 4);
2096 s->Indent (tmp.GetData());
2097 s->PutCString ("\n");
2098 s->SetIndentLevel (indent_level + 2);
2099 }
2100
2101 s->Indent ("Commands: \n");
2102 s->SetIndentLevel (indent_level + 4);
2103 uint32_t num_commands = m_commands.GetSize();
2104 for (uint32_t i = 0; i < num_commands; i++)
2105 {
2106 s->Indent(m_commands.GetStringAtIndex(i));
2107 s->PutCString ("\n");
2108 }
2109 s->SetIndentLevel (indent_level);
2110}
2111
Greg Clayton73844aa2012-08-22 17:17:09 +00002112//--------------------------------------------------------------
2113// class TargetProperties
2114//--------------------------------------------------------------
2115
2116OptionEnumValueElement
2117lldb_private::g_dynamic_value_types[] =
Caroline Tice5bc8c972010-09-20 20:44:43 +00002118{
Greg Clayton73844aa2012-08-22 17:17:09 +00002119 { eNoDynamicValues, "no-dynamic-values", "Don't calculate the dynamic type of values"},
2120 { eDynamicCanRunTarget, "run-target", "Calculate the dynamic type of values even if you have to run the target."},
2121 { eDynamicDontRunTarget, "no-run-target", "Calculate the dynamic type of values, but don't run the target."},
2122 { 0, NULL, NULL }
2123};
Caroline Tice5bc8c972010-09-20 20:44:43 +00002124
Greg Clayton49ce8962012-08-29 21:13:06 +00002125static OptionEnumValueElement
2126g_inline_breakpoint_enums[] =
2127{
2128 { eInlineBreakpointsNever, "never", "Never look for inline breakpoint locations (fastest). This setting should only be used if you know that no inlining occurs in your programs."},
2129 { eInlineBreakpointsHeaders, "headers", "Only check for inline breakpoint locations when setting breakpoints in header files, but not when setting breakpoint in implementation source files (default)."},
2130 { eInlineBreakpointsAlways, "always", "Always look for inline breakpoint locations when setting file and line breakpoints (slower but most accurate)."},
2131 { 0, NULL, NULL }
2132};
2133
Greg Clayton73844aa2012-08-22 17:17:09 +00002134static PropertyDefinition
2135g_properties[] =
Caroline Tice5bc8c972010-09-20 20:44:43 +00002136{
Greg Clayton73844aa2012-08-22 17:17:09 +00002137 { "default-arch" , OptionValue::eTypeArch , true , 0 , NULL, NULL, "Default architecture to choose, when there's a choice." },
2138 { "expr-prefix" , OptionValue::eTypeFileSpec , false, 0 , NULL, NULL, "Path to a file containing expressions to be prepended to all expressions." },
2139 { "prefer-dynamic-value" , OptionValue::eTypeEnum , false, eNoDynamicValues , NULL, g_dynamic_value_types, "Should printed values be shown as their dynamic value." },
2140 { "enable-synthetic-value" , OptionValue::eTypeBoolean , false, true , NULL, NULL, "Should synthetic values be used by default whenever available." },
2141 { "skip-prologue" , OptionValue::eTypeBoolean , false, true , NULL, NULL, "Skip function prologues when setting breakpoints by name." },
2142 { "source-map" , OptionValue::eTypePathMap , false, 0 , NULL, NULL, "Source path remappings used to track the change of location between a source file when built, and "
2143 "where it exists on the current system. It consists of an array of duples, the first element of each duple is "
2144 "some part (starting at the root) of the path to the file when it was built, "
2145 "and the second is where the remainder of the original build hierarchy is rooted on the local system. "
2146 "Each element of the array is checked in order and the first one that results in a match wins." },
2147 { "exec-search-paths" , OptionValue::eTypeFileSpecList, false, 0 , NULL, NULL, "Executable search paths to use when locating executable files whose paths don't match the local file system." },
2148 { "max-children-count" , OptionValue::eTypeSInt64 , false, 256 , NULL, NULL, "Maximum number of children to expand in any level of depth." },
2149 { "max-string-summary-length" , OptionValue::eTypeSInt64 , false, 1024 , NULL, NULL, "Maximum number of characters to show when using %s in summary strings." },
2150 { "breakpoints-use-platform-avoid-list", OptionValue::eTypeBoolean , false, true , NULL, NULL, "Consult the platform module avoid list when setting non-module specific breakpoints." },
2151 { "run-args" , OptionValue::eTypeArgs , false, 0 , NULL, NULL, "A list containing all the arguments to be passed to the executable when it is run." },
2152 { "env-vars" , OptionValue::eTypeDictionary, false, OptionValue::eTypeString , NULL, NULL, "A list of all the environment variables to be passed to the executable's environment, and their values." },
2153 { "inherit-env" , OptionValue::eTypeBoolean , false, true , NULL, NULL, "Inherit the environment from the process that is running LLDB." },
2154 { "input-path" , OptionValue::eTypeFileSpec , false, 0 , NULL, NULL, "The file/path to be used by the executable program for reading its standard input." },
2155 { "output-path" , OptionValue::eTypeFileSpec , false, 0 , NULL, NULL, "The file/path to be used by the executable program for writing its standard output." },
2156 { "error-path" , OptionValue::eTypeFileSpec , false, 0 , NULL, NULL, "The file/path to be used by the executable program for writing its standard error." },
2157 { "disable-aslr" , OptionValue::eTypeBoolean , false, true , NULL, NULL, "Disable Address Space Layout Randomization (ASLR)" },
2158 { "disable-stdio" , OptionValue::eTypeBoolean , false, false , NULL, NULL, "Disable stdin/stdout for process (e.g. for a GUI application)" },
Greg Clayton49ce8962012-08-29 21:13:06 +00002159 { "inline-breakpoint-strategy" , OptionValue::eTypeEnum , false, eInlineBreakpointsHeaders , NULL, g_inline_breakpoint_enums, "The strategy to use when settings breakpoints by file and line. "
2160 "Breakpoint locations can end up being inlined by the compiler, so that a compile unit 'a.c' might contain an inlined function from another source file. "
2161 "Usually this is limitted to breakpoint locations from inlined functions from header or other include files, or more accurately non-implementation source files. "
2162 "Sometimes code might #include implementation files and cause inlined breakpoint locations in inlined implementation files. "
2163 "Always checking for inlined breakpoint locations can be expensive (memory and time), so we try to minimize the "
2164 "times we look for inlined locations. This setting allows you to control exactly which strategy is used when settings "
2165 "file and line breakpoints." },
Greg Clayton73844aa2012-08-22 17:17:09 +00002166 { NULL , OptionValue::eTypeInvalid , false, 0 , NULL, NULL, NULL }
2167};
2168enum
Caroline Tice5bc8c972010-09-20 20:44:43 +00002169{
Greg Clayton73844aa2012-08-22 17:17:09 +00002170 ePropertyDefaultArch,
2171 ePropertyExprPrefix,
2172 ePropertyPreferDynamic,
2173 ePropertyEnableSynthetic,
2174 ePropertySkipPrologue,
2175 ePropertySourceMap,
2176 ePropertyExecutableSearchPaths,
2177 ePropertyMaxChildrenCount,
2178 ePropertyMaxSummaryLength,
2179 ePropertyBreakpointUseAvoidList,
2180 ePropertyRunArgs,
2181 ePropertyEnvVars,
2182 ePropertyInheritEnv,
2183 ePropertyInputPath,
2184 ePropertyOutputPath,
2185 ePropertyErrorPath,
2186 ePropertyDisableASLR,
Greg Clayton49ce8962012-08-29 21:13:06 +00002187 ePropertyDisableSTDIO,
2188 ePropertyInlineStrategy
Greg Clayton73844aa2012-08-22 17:17:09 +00002189};
Caroline Tice5bc8c972010-09-20 20:44:43 +00002190
Caroline Tice5bc8c972010-09-20 20:44:43 +00002191
Greg Clayton73844aa2012-08-22 17:17:09 +00002192class TargetOptionValueProperties : public OptionValueProperties
Greg Claytond284b662011-02-18 01:44:25 +00002193{
Greg Clayton73844aa2012-08-22 17:17:09 +00002194public:
2195 TargetOptionValueProperties (const ConstString &name) :
2196 OptionValueProperties (name),
2197 m_target (NULL),
2198 m_got_host_env (false)
Caroline Tice5bc8c972010-09-20 20:44:43 +00002199 {
Caroline Tice5bc8c972010-09-20 20:44:43 +00002200 }
Caroline Tice5bc8c972010-09-20 20:44:43 +00002201
Greg Clayton73844aa2012-08-22 17:17:09 +00002202 // This constructor is used when creating TargetOptionValueProperties when it
2203 // is part of a new lldb_private::Target instance. It will copy all current
2204 // global property values as needed
2205 TargetOptionValueProperties (Target *target, const TargetPropertiesSP &target_properties_sp) :
2206 OptionValueProperties(*target_properties_sp->GetValueProperties()),
2207 m_target (target),
2208 m_got_host_env (false)
Caroline Tice5bc8c972010-09-20 20:44:43 +00002209 {
Greg Clayton73844aa2012-08-22 17:17:09 +00002210 }
2211
2212 virtual const Property *
2213 GetPropertyAtIndex (const ExecutionContext *exe_ctx, bool will_modify, uint32_t idx) const
2214 {
2215 // When gettings the value for a key from the target options, we will always
2216 // try and grab the setting from the current target if there is one. Else we just
2217 // use the one from this instance.
2218 if (idx == ePropertyEnvVars)
2219 GetHostEnvironmentIfNeeded ();
2220
2221 if (exe_ctx)
2222 {
2223 Target *target = exe_ctx->GetTargetPtr();
2224 if (target)
2225 {
2226 TargetOptionValueProperties *target_properties = static_cast<TargetOptionValueProperties *>(target->GetValueProperties().get());
2227 if (this != target_properties)
2228 return target_properties->ProtectedGetPropertyAtIndex (idx);
2229 }
2230 }
2231 return ProtectedGetPropertyAtIndex (idx);
2232 }
2233protected:
2234
2235 void
2236 GetHostEnvironmentIfNeeded () const
2237 {
2238 if (!m_got_host_env)
2239 {
2240 if (m_target)
2241 {
2242 m_got_host_env = true;
2243 const uint32_t idx = ePropertyInheritEnv;
2244 if (GetPropertyAtIndexAsBoolean (NULL, idx, g_properties[idx].default_uint_value != 0))
2245 {
2246 PlatformSP platform_sp (m_target->GetPlatform());
2247 if (platform_sp)
2248 {
2249 StringList env;
2250 if (platform_sp->GetEnvironment(env))
2251 {
2252 OptionValueDictionary *env_dict = GetPropertyAtIndexAsOptionValueDictionary (NULL, ePropertyEnvVars);
2253 if (env_dict)
2254 {
2255 const bool can_replace = false;
2256 const size_t envc = env.GetSize();
2257 for (size_t idx=0; idx<envc; idx++)
2258 {
2259 const char *env_entry = env.GetStringAtIndex (idx);
2260 if (env_entry)
2261 {
2262 const char *equal_pos = ::strchr(env_entry, '=');
2263 ConstString key;
2264 // It is ok to have environment variables with no values
2265 const char *value = NULL;
2266 if (equal_pos)
2267 {
2268 key.SetCStringWithLength(env_entry, equal_pos - env_entry);
2269 if (equal_pos[1])
2270 value = equal_pos + 1;
2271 }
2272 else
2273 {
2274 key.SetCString(env_entry);
2275 }
2276 // Don't allow existing keys to be replaced with ones we get from the platform environment
2277 env_dict->SetValueForKey(key, OptionValueSP(new OptionValueString(value)), can_replace);
2278 }
2279 }
2280 }
2281 }
2282 }
2283 }
2284 }
2285 }
2286 }
2287 Target *m_target;
2288 mutable bool m_got_host_env;
2289};
2290
2291TargetProperties::TargetProperties (Target *target) :
2292 Properties ()
2293{
2294 if (target)
2295 {
2296 m_collection_sp.reset (new TargetOptionValueProperties(target, Target::GetGlobalProperties()));
Caroline Tice5bc8c972010-09-20 20:44:43 +00002297 }
2298 else
Greg Clayton73844aa2012-08-22 17:17:09 +00002299 {
2300 m_collection_sp.reset (new TargetOptionValueProperties(ConstString("target")));
2301 m_collection_sp->Initialize(g_properties);
2302 m_collection_sp->AppendProperty(ConstString("process"),
2303 ConstString("Settings specify to processes."),
2304 true,
2305 Process::GetGlobalProperties()->GetValueProperties());
2306 }
Caroline Tice5bc8c972010-09-20 20:44:43 +00002307}
2308
Greg Clayton73844aa2012-08-22 17:17:09 +00002309TargetProperties::~TargetProperties ()
2310{
2311}
2312ArchSpec
2313TargetProperties::GetDefaultArchitecture () const
2314{
2315 OptionValueArch *value = m_collection_sp->GetPropertyAtIndexAsOptionValueArch (NULL, ePropertyDefaultArch);
2316 if (value)
2317 return value->GetCurrentValue();
2318 return ArchSpec();
2319}
2320
2321void
2322TargetProperties::SetDefaultArchitecture (const ArchSpec& arch)
2323{
2324 OptionValueArch *value = m_collection_sp->GetPropertyAtIndexAsOptionValueArch (NULL, ePropertyDefaultArch);
2325 if (value)
2326 return value->SetCurrentValue(arch, true);
2327}
2328
2329lldb::DynamicValueType
2330TargetProperties::GetPreferDynamicValue() const
2331{
2332 const uint32_t idx = ePropertyPreferDynamic;
2333 return (lldb::DynamicValueType)m_collection_sp->GetPropertyAtIndexAsEnumeration (NULL, idx, g_properties[idx].default_uint_value);
2334}
2335
2336bool
2337TargetProperties::GetDisableASLR () const
2338{
2339 const uint32_t idx = ePropertyDisableASLR;
2340 return m_collection_sp->GetPropertyAtIndexAsBoolean (NULL, idx, g_properties[idx].default_uint_value != 0);
2341}
2342
2343void
2344TargetProperties::SetDisableASLR (bool b)
2345{
2346 const uint32_t idx = ePropertyDisableASLR;
2347 m_collection_sp->SetPropertyAtIndexAsBoolean (NULL, idx, b);
2348}
2349
2350bool
2351TargetProperties::GetDisableSTDIO () const
2352{
2353 const uint32_t idx = ePropertyDisableSTDIO;
2354 return m_collection_sp->GetPropertyAtIndexAsBoolean (NULL, idx, g_properties[idx].default_uint_value != 0);
2355}
2356
2357void
2358TargetProperties::SetDisableSTDIO (bool b)
2359{
2360 const uint32_t idx = ePropertyDisableSTDIO;
2361 m_collection_sp->SetPropertyAtIndexAsBoolean (NULL, idx, b);
2362}
2363
Greg Clayton49ce8962012-08-29 21:13:06 +00002364InlineStrategy
2365TargetProperties::GetInlineStrategy () const
2366{
2367 const uint32_t idx = ePropertyInlineStrategy;
2368 return (InlineStrategy)m_collection_sp->GetPropertyAtIndexAsEnumeration (NULL, idx, g_properties[idx].default_uint_value);
2369}
2370
Greg Clayton73844aa2012-08-22 17:17:09 +00002371bool
2372TargetProperties::GetRunArguments (Args &args) const
2373{
2374 const uint32_t idx = ePropertyRunArgs;
2375 return m_collection_sp->GetPropertyAtIndexAsArgs (NULL, idx, args);
2376}
2377
2378void
2379TargetProperties::SetRunArguments (const Args &args)
2380{
2381 const uint32_t idx = ePropertyRunArgs;
2382 m_collection_sp->SetPropertyAtIndexFromArgs (NULL, idx, args);
2383}
2384
2385size_t
2386TargetProperties::GetEnvironmentAsArgs (Args &env) const
2387{
2388 const uint32_t idx = ePropertyEnvVars;
2389 return m_collection_sp->GetPropertyAtIndexAsArgs (NULL, idx, env);
2390}
2391
2392bool
2393TargetProperties::GetSkipPrologue() const
2394{
2395 const uint32_t idx = ePropertySkipPrologue;
2396 return m_collection_sp->GetPropertyAtIndexAsBoolean (NULL, idx, g_properties[idx].default_uint_value != 0);
2397}
2398
2399PathMappingList &
2400TargetProperties::GetSourcePathMap () const
2401{
2402 const uint32_t idx = ePropertySourceMap;
2403 OptionValuePathMappings *option_value = m_collection_sp->GetPropertyAtIndexAsOptionValuePathMappings (NULL, false, idx);
2404 assert(option_value);
2405 return option_value->GetCurrentValue();
2406}
2407
2408FileSpecList &
Greg Claytonc6e82e42012-08-22 18:39:03 +00002409TargetProperties::GetExecutableSearchPaths ()
Greg Clayton73844aa2012-08-22 17:17:09 +00002410{
2411 const uint32_t idx = ePropertyExecutableSearchPaths;
2412 OptionValueFileSpecList *option_value = m_collection_sp->GetPropertyAtIndexAsOptionValueFileSpecList (NULL, false, idx);
2413 assert(option_value);
2414 return option_value->GetCurrentValue();
2415}
2416
2417bool
2418TargetProperties::GetEnableSyntheticValue () const
2419{
2420 const uint32_t idx = ePropertyEnableSynthetic;
2421 return m_collection_sp->GetPropertyAtIndexAsBoolean (NULL, idx, g_properties[idx].default_uint_value != 0);
2422}
2423
2424uint32_t
2425TargetProperties::GetMaximumNumberOfChildrenToDisplay() const
2426{
2427 const uint32_t idx = ePropertyMaxChildrenCount;
2428 return m_collection_sp->GetPropertyAtIndexAsSInt64 (NULL, idx, g_properties[idx].default_uint_value);
2429}
2430
2431uint32_t
2432TargetProperties::GetMaximumSizeOfStringSummary() const
2433{
2434 const uint32_t idx = ePropertyMaxSummaryLength;
2435 return m_collection_sp->GetPropertyAtIndexAsSInt64 (NULL, idx, g_properties[idx].default_uint_value);
2436}
2437
2438FileSpec
2439TargetProperties::GetStandardInputPath () const
2440{
2441 const uint32_t idx = ePropertyInputPath;
2442 return m_collection_sp->GetPropertyAtIndexAsFileSpec (NULL, idx);
2443}
2444
2445void
2446TargetProperties::SetStandardInputPath (const char *p)
2447{
2448 const uint32_t idx = ePropertyInputPath;
2449 m_collection_sp->SetPropertyAtIndexAsString (NULL, idx, p);
2450}
2451
2452FileSpec
2453TargetProperties::GetStandardOutputPath () const
2454{
2455 const uint32_t idx = ePropertyOutputPath;
2456 return m_collection_sp->GetPropertyAtIndexAsFileSpec (NULL, idx);
2457}
2458
2459void
2460TargetProperties::SetStandardOutputPath (const char *p)
2461{
2462 const uint32_t idx = ePropertyOutputPath;
2463 m_collection_sp->SetPropertyAtIndexAsString (NULL, idx, p);
2464}
2465
2466FileSpec
2467TargetProperties::GetStandardErrorPath () const
2468{
2469 const uint32_t idx = ePropertyErrorPath;
2470 return m_collection_sp->GetPropertyAtIndexAsFileSpec(NULL, idx);
2471}
2472
Greg Claytonc6e82e42012-08-22 18:39:03 +00002473const char *
2474TargetProperties::GetExpressionPrefixContentsAsCString ()
2475{
2476 const uint32_t idx = ePropertyExprPrefix;
2477 OptionValueFileSpec *file = m_collection_sp->GetPropertyAtIndexAsOptionValueFileSpec (NULL, false, idx);
2478 if (file)
Jim Ingham7021cda2012-08-22 21:21:16 +00002479 {
Greg Claytonfc04d242012-08-30 18:15:10 +00002480 const bool null_terminate = true;
2481 DataBufferSP data_sp(file->GetFileContents(null_terminate));
Jim Ingham7021cda2012-08-22 21:21:16 +00002482 if (data_sp)
2483 return (const char *) data_sp->GetBytes();
2484 }
Greg Claytonc6e82e42012-08-22 18:39:03 +00002485 return NULL;
2486}
2487
Greg Clayton73844aa2012-08-22 17:17:09 +00002488void
2489TargetProperties::SetStandardErrorPath (const char *p)
2490{
2491 const uint32_t idx = ePropertyErrorPath;
2492 m_collection_sp->SetPropertyAtIndexAsString (NULL, idx, p);
2493}
2494
2495bool
2496TargetProperties::GetBreakpointsConsultPlatformAvoidList ()
2497{
2498 const uint32_t idx = ePropertyBreakpointUseAvoidList;
2499 return m_collection_sp->GetPropertyAtIndexAsBoolean (NULL, idx, g_properties[idx].default_uint_value != 0);
2500}
2501
2502const TargetPropertiesSP &
2503Target::GetGlobalProperties()
2504{
2505 static TargetPropertiesSP g_settings_sp;
2506 if (!g_settings_sp)
2507 {
2508 g_settings_sp.reset (new TargetProperties (NULL));
2509 }
2510 return g_settings_sp;
2511}
2512
Jim Ingham5a15e692012-02-16 06:50:00 +00002513const ConstString &
2514Target::TargetEventData::GetFlavorString ()
2515{
2516 static ConstString g_flavor ("Target::TargetEventData");
2517 return g_flavor;
2518}
2519
2520const ConstString &
2521Target::TargetEventData::GetFlavor () const
2522{
2523 return TargetEventData::GetFlavorString ();
2524}
2525
2526Target::TargetEventData::TargetEventData (const lldb::TargetSP &new_target_sp) :
2527 EventData(),
2528 m_target_sp (new_target_sp)
2529{
2530}
2531
2532Target::TargetEventData::~TargetEventData()
2533{
2534
2535}
2536
2537void
2538Target::TargetEventData::Dump (Stream *s) const
2539{
2540
2541}
2542
2543const TargetSP
2544Target::TargetEventData::GetTargetFromEvent (const lldb::EventSP &event_sp)
2545{
2546 TargetSP target_sp;
2547
2548 const TargetEventData *data = GetEventDataFromEvent (event_sp.get());
2549 if (data)
2550 target_sp = data->m_target_sp;
2551
2552 return target_sp;
2553}
2554
2555const Target::TargetEventData *
2556Target::TargetEventData::GetEventDataFromEvent (const Event *event_ptr)
2557{
2558 if (event_ptr)
2559 {
2560 const EventData *event_data = event_ptr->GetData();
2561 if (event_data && event_data->GetFlavor() == TargetEventData::GetFlavorString())
2562 return static_cast <const TargetEventData *> (event_ptr->GetData());
2563 }
2564 return NULL;
2565}
2566