blob: ab50e346e88f13fc101ae6ec25e42e4f60894ead [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{
Enrico Granata3a08fd12012-09-18 17:43:16 +00001623 result_valobj_sp.reset();
1624
Greg Clayton427f2902010-12-14 02:59:59 +00001625 ExecutionResults execution_results = eExecutionSetupError;
1626
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001627 if (expr_cstr == NULL || expr_cstr[0] == '\0')
1628 return execution_results;
1629
Jim Ingham3613ae12011-05-12 02:06:14 +00001630 // We shouldn't run stop hooks in expressions.
1631 // Be sure to reset this if you return anywhere within this function.
1632 bool old_suppress_value = m_suppress_stop_hooks;
1633 m_suppress_stop_hooks = true;
Greg Clayton427f2902010-12-14 02:59:59 +00001634
1635 ExecutionContext exe_ctx;
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001636
1637 const size_t expr_cstr_len = ::strlen (expr_cstr);
1638
Greg Clayton427f2902010-12-14 02:59:59 +00001639 if (frame)
1640 {
1641 frame->CalculateExecutionContext(exe_ctx);
Greg Claytonc3b61d22010-12-15 05:08:08 +00001642 Error error;
Greg Claytonc67efa42011-01-20 19:27:18 +00001643 const uint32_t expr_path_options = StackFrame::eExpressionPathOptionCheckPtrVsMember |
Enrico Granataf6698502011-08-09 01:04:56 +00001644 StackFrame::eExpressionPathOptionsNoFragileObjcIvar |
1645 StackFrame::eExpressionPathOptionsNoSyntheticChildren;
Jim Ingham10de7d12011-05-04 03:43:18 +00001646 lldb::VariableSP var_sp;
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001647
1648 // Make sure we don't have any things that we know a variable expression
1649 // won't be able to deal with before calling into it
1650 if (::strcspn (expr_cstr, "()+*&|!~<=/^%,?") == expr_cstr_len)
1651 {
1652 result_valobj_sp = frame->GetValueForVariableExpressionPath (expr_cstr,
Enrico Granatad27026e2012-09-05 20:41:26 +00001653 options.GetUseDynamic(),
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001654 expr_path_options,
1655 var_sp,
1656 error);
Enrico Granata4d609c92012-04-24 22:15:37 +00001657 // if this expression results in a bitfield, we give up and let the IR handle it
1658 if (result_valobj_sp && result_valobj_sp->IsBitfield())
1659 result_valobj_sp.reset();
Greg Clayton37bb8dd2011-12-08 02:13:16 +00001660 }
Greg Clayton427f2902010-12-14 02:59:59 +00001661 }
1662 else if (m_process_sp)
1663 {
1664 m_process_sp->CalculateExecutionContext(exe_ctx);
1665 }
1666 else
1667 {
1668 CalculateExecutionContext(exe_ctx);
1669 }
1670
1671 if (result_valobj_sp)
1672 {
1673 execution_results = eExecutionCompleted;
1674 // We got a result from the frame variable expression path above...
1675 ConstString persistent_variable_name (m_persistent_variables.GetNextPersistentVariableName());
1676
1677 lldb::ValueObjectSP const_valobj_sp;
1678
1679 // Check in case our value is already a constant value
1680 if (result_valobj_sp->GetIsConstant())
1681 {
1682 const_valobj_sp = result_valobj_sp;
1683 const_valobj_sp->SetName (persistent_variable_name);
1684 }
1685 else
Jim Inghame41494a2011-04-16 00:01:13 +00001686 {
Enrico Granatad27026e2012-09-05 20:41:26 +00001687 if (options.GetUseDynamic() != lldb::eNoDynamicValues)
Jim Inghame41494a2011-04-16 00:01:13 +00001688 {
Enrico Granatad27026e2012-09-05 20:41:26 +00001689 ValueObjectSP dynamic_sp = result_valobj_sp->GetDynamicValue(options.GetUseDynamic());
Jim Inghame41494a2011-04-16 00:01:13 +00001690 if (dynamic_sp)
1691 result_valobj_sp = dynamic_sp;
1692 }
1693
Jim Inghamfa3a16a2011-03-31 00:19:25 +00001694 const_valobj_sp = result_valobj_sp->CreateConstantValue (persistent_variable_name);
Jim Inghame41494a2011-04-16 00:01:13 +00001695 }
Greg Clayton427f2902010-12-14 02:59:59 +00001696
Sean Callanan6a925532011-01-13 08:53:35 +00001697 lldb::ValueObjectSP live_valobj_sp = result_valobj_sp;
1698
Greg Clayton427f2902010-12-14 02:59:59 +00001699 result_valobj_sp = const_valobj_sp;
1700
Sean Callanan6a925532011-01-13 08:53:35 +00001701 ClangExpressionVariableSP clang_expr_variable_sp(m_persistent_variables.CreatePersistentVariable(result_valobj_sp));
1702 assert (clang_expr_variable_sp.get());
1703
1704 // Set flags and live data as appropriate
1705
1706 const Value &result_value = live_valobj_sp->GetValue();
1707
1708 switch (result_value.GetValueType())
1709 {
1710 case Value::eValueTypeHostAddress:
1711 case Value::eValueTypeFileAddress:
1712 // we don't do anything with these for now
1713 break;
1714 case Value::eValueTypeScalar:
1715 clang_expr_variable_sp->m_flags |= ClangExpressionVariable::EVIsLLDBAllocated;
1716 clang_expr_variable_sp->m_flags |= ClangExpressionVariable::EVNeedsAllocation;
1717 break;
1718 case Value::eValueTypeLoadAddress:
1719 clang_expr_variable_sp->m_live_sp = live_valobj_sp;
1720 clang_expr_variable_sp->m_flags |= ClangExpressionVariable::EVIsProgramReference;
1721 break;
1722 }
Greg Clayton427f2902010-12-14 02:59:59 +00001723 }
1724 else
1725 {
1726 // Make sure we aren't just trying to see the value of a persistent
1727 // variable (something like "$0")
Greg Claytona875b642011-01-09 21:07:35 +00001728 lldb::ClangExpressionVariableSP persistent_var_sp;
1729 // Only check for persistent variables the expression starts with a '$'
1730 if (expr_cstr[0] == '$')
1731 persistent_var_sp = m_persistent_variables.GetVariable (expr_cstr);
1732
Greg Clayton427f2902010-12-14 02:59:59 +00001733 if (persistent_var_sp)
1734 {
1735 result_valobj_sp = persistent_var_sp->GetValueObject ();
1736 execution_results = eExecutionCompleted;
1737 }
1738 else
1739 {
1740 const char *prefix = GetExpressionPrefixContentsAsCString();
Sean Callanan47dc4572011-09-15 02:13:07 +00001741
Greg Clayton427f2902010-12-14 02:59:59 +00001742 execution_results = ClangUserExpression::Evaluate (exe_ctx,
Enrico Granatad27026e2012-09-05 20:41:26 +00001743 options.GetExecutionPolicy(),
Sean Callanan5b658cc2011-11-07 23:35:40 +00001744 lldb::eLanguageTypeUnknown,
Enrico Granatad27026e2012-09-05 20:41:26 +00001745 options.DoesCoerceToId() ? ClangUserExpression::eResultTypeId : ClangUserExpression::eResultTypeAny,
1746 options.DoesUnwindOnError(),
Greg Clayton427f2902010-12-14 02:59:59 +00001747 expr_cstr,
1748 prefix,
Enrico Granata6cca9692012-07-16 23:10:35 +00001749 result_valobj_sp,
Enrico Granatad27026e2012-09-05 20:41:26 +00001750 options.GetSingleThreadTimeoutUsec());
Greg Clayton427f2902010-12-14 02:59:59 +00001751 }
1752 }
Jim Ingham3613ae12011-05-12 02:06:14 +00001753
1754 m_suppress_stop_hooks = old_suppress_value;
1755
Greg Clayton427f2902010-12-14 02:59:59 +00001756 return execution_results;
1757}
1758
Greg Claytonc0fa5332011-05-22 22:46:53 +00001759lldb::addr_t
1760Target::GetCallableLoadAddress (lldb::addr_t load_addr, AddressClass addr_class) const
1761{
1762 addr_t code_addr = load_addr;
1763 switch (m_arch.GetMachine())
1764 {
1765 case llvm::Triple::arm:
1766 case llvm::Triple::thumb:
1767 switch (addr_class)
1768 {
1769 case eAddressClassData:
1770 case eAddressClassDebug:
1771 return LLDB_INVALID_ADDRESS;
1772
1773 case eAddressClassUnknown:
1774 case eAddressClassInvalid:
1775 case eAddressClassCode:
1776 case eAddressClassCodeAlternateISA:
1777 case eAddressClassRuntime:
1778 // Check if bit zero it no set?
1779 if ((code_addr & 1ull) == 0)
1780 {
1781 // Bit zero isn't set, check if the address is a multiple of 2?
1782 if (code_addr & 2ull)
1783 {
1784 // The address is a multiple of 2 so it must be thumb, set bit zero
1785 code_addr |= 1ull;
1786 }
1787 else if (addr_class == eAddressClassCodeAlternateISA)
1788 {
1789 // We checked the address and the address claims to be the alternate ISA
1790 // which means thumb, so set bit zero.
1791 code_addr |= 1ull;
1792 }
1793 }
1794 break;
1795 }
1796 break;
1797
1798 default:
1799 break;
1800 }
1801 return code_addr;
1802}
1803
1804lldb::addr_t
1805Target::GetOpcodeLoadAddress (lldb::addr_t load_addr, AddressClass addr_class) const
1806{
1807 addr_t opcode_addr = load_addr;
1808 switch (m_arch.GetMachine())
1809 {
1810 case llvm::Triple::arm:
1811 case llvm::Triple::thumb:
1812 switch (addr_class)
1813 {
1814 case eAddressClassData:
1815 case eAddressClassDebug:
1816 return LLDB_INVALID_ADDRESS;
1817
1818 case eAddressClassInvalid:
1819 case eAddressClassUnknown:
1820 case eAddressClassCode:
1821 case eAddressClassCodeAlternateISA:
1822 case eAddressClassRuntime:
1823 opcode_addr &= ~(1ull);
1824 break;
1825 }
1826 break;
1827
1828 default:
1829 break;
1830 }
1831 return opcode_addr;
1832}
1833
Jim Inghamd60d94a2011-03-11 03:53:59 +00001834lldb::user_id_t
1835Target::AddStopHook (Target::StopHookSP &new_hook_sp)
1836{
1837 lldb::user_id_t new_uid = ++m_stop_hook_next_id;
Greg Clayton13d24fb2012-01-29 20:56:30 +00001838 new_hook_sp.reset (new StopHook(shared_from_this(), new_uid));
Jim Inghamd60d94a2011-03-11 03:53:59 +00001839 m_stop_hooks[new_uid] = new_hook_sp;
1840 return new_uid;
1841}
1842
1843bool
1844Target::RemoveStopHookByID (lldb::user_id_t user_id)
1845{
1846 size_t num_removed;
1847 num_removed = m_stop_hooks.erase (user_id);
1848 if (num_removed == 0)
1849 return false;
1850 else
1851 return true;
1852}
1853
1854void
1855Target::RemoveAllStopHooks ()
1856{
1857 m_stop_hooks.clear();
1858}
1859
1860Target::StopHookSP
1861Target::GetStopHookByID (lldb::user_id_t user_id)
1862{
1863 StopHookSP found_hook;
1864
1865 StopHookCollection::iterator specified_hook_iter;
1866 specified_hook_iter = m_stop_hooks.find (user_id);
1867 if (specified_hook_iter != m_stop_hooks.end())
1868 found_hook = (*specified_hook_iter).second;
1869 return found_hook;
1870}
1871
1872bool
1873Target::SetStopHookActiveStateByID (lldb::user_id_t user_id, bool active_state)
1874{
1875 StopHookCollection::iterator specified_hook_iter;
1876 specified_hook_iter = m_stop_hooks.find (user_id);
1877 if (specified_hook_iter == m_stop_hooks.end())
1878 return false;
1879
1880 (*specified_hook_iter).second->SetIsActive (active_state);
1881 return true;
1882}
1883
1884void
1885Target::SetAllStopHooksActiveState (bool active_state)
1886{
1887 StopHookCollection::iterator pos, end = m_stop_hooks.end();
1888 for (pos = m_stop_hooks.begin(); pos != end; pos++)
1889 {
1890 (*pos).second->SetIsActive (active_state);
1891 }
1892}
1893
1894void
1895Target::RunStopHooks ()
1896{
Jim Ingham3613ae12011-05-12 02:06:14 +00001897 if (m_suppress_stop_hooks)
1898 return;
1899
Jim Inghamd60d94a2011-03-11 03:53:59 +00001900 if (!m_process_sp)
1901 return;
Enrico Granata5a60f5e2012-08-03 22:24:48 +00001902
1903 // <rdar://problem/12027563> make sure we check that we are not stopped because of us running a user expression
1904 // since in that case we do not want to run the stop-hooks
1905 if (m_process_sp->GetModIDRef().IsLastResumeForUserExpression())
1906 return;
1907
Jim Inghamd60d94a2011-03-11 03:53:59 +00001908 if (m_stop_hooks.empty())
1909 return;
1910
1911 StopHookCollection::iterator pos, end = m_stop_hooks.end();
1912
1913 // If there aren't any active stop hooks, don't bother either:
1914 bool any_active_hooks = false;
1915 for (pos = m_stop_hooks.begin(); pos != end; pos++)
1916 {
1917 if ((*pos).second->IsActive())
1918 {
1919 any_active_hooks = true;
1920 break;
1921 }
1922 }
1923 if (!any_active_hooks)
1924 return;
1925
1926 CommandReturnObject result;
1927
1928 std::vector<ExecutionContext> exc_ctx_with_reasons;
1929 std::vector<SymbolContext> sym_ctx_with_reasons;
1930
1931 ThreadList &cur_threadlist = m_process_sp->GetThreadList();
1932 size_t num_threads = cur_threadlist.GetSize();
1933 for (size_t i = 0; i < num_threads; i++)
1934 {
1935 lldb::ThreadSP cur_thread_sp = cur_threadlist.GetThreadAtIndex (i);
1936 if (cur_thread_sp->ThreadStoppedForAReason())
1937 {
1938 lldb::StackFrameSP cur_frame_sp = cur_thread_sp->GetStackFrameAtIndex(0);
1939 exc_ctx_with_reasons.push_back(ExecutionContext(m_process_sp.get(), cur_thread_sp.get(), cur_frame_sp.get()));
1940 sym_ctx_with_reasons.push_back(cur_frame_sp->GetSymbolContext(eSymbolContextEverything));
1941 }
1942 }
1943
1944 // If no threads stopped for a reason, don't run the stop-hooks.
1945 size_t num_exe_ctx = exc_ctx_with_reasons.size();
1946 if (num_exe_ctx == 0)
1947 return;
1948
Jim Inghame5ed8e92011-06-02 23:58:26 +00001949 result.SetImmediateOutputStream (m_debugger.GetAsyncOutputStream());
1950 result.SetImmediateErrorStream (m_debugger.GetAsyncErrorStream());
Jim Inghamd60d94a2011-03-11 03:53:59 +00001951
1952 bool keep_going = true;
1953 bool hooks_ran = false;
Jim Inghamc54840c2011-03-22 01:47:27 +00001954 bool print_hook_header;
1955 bool print_thread_header;
1956
1957 if (num_exe_ctx == 1)
1958 print_thread_header = false;
1959 else
1960 print_thread_header = true;
1961
1962 if (m_stop_hooks.size() == 1)
1963 print_hook_header = false;
1964 else
1965 print_hook_header = true;
1966
Jim Inghamd60d94a2011-03-11 03:53:59 +00001967 for (pos = m_stop_hooks.begin(); keep_going && pos != end; pos++)
1968 {
1969 // result.Clear();
1970 StopHookSP cur_hook_sp = (*pos).second;
1971 if (!cur_hook_sp->IsActive())
1972 continue;
1973
1974 bool any_thread_matched = false;
1975 for (size_t i = 0; keep_going && i < num_exe_ctx; i++)
1976 {
1977 if ((cur_hook_sp->GetSpecifier () == NULL
1978 || cur_hook_sp->GetSpecifier()->SymbolContextMatches(sym_ctx_with_reasons[i]))
1979 && (cur_hook_sp->GetThreadSpecifier() == NULL
Jim Inghama2664912012-03-07 22:03:04 +00001980 || cur_hook_sp->GetThreadSpecifier()->ThreadPassesBasicTests(exc_ctx_with_reasons[i].GetThreadRef())))
Jim Inghamd60d94a2011-03-11 03:53:59 +00001981 {
1982 if (!hooks_ran)
1983 {
Jim Inghamd60d94a2011-03-11 03:53:59 +00001984 hooks_ran = true;
1985 }
Jim Inghamc54840c2011-03-22 01:47:27 +00001986 if (print_hook_header && !any_thread_matched)
Jim Inghamd60d94a2011-03-11 03:53:59 +00001987 {
Johnny Chen4d96a742011-10-24 23:01:06 +00001988 const char *cmd = (cur_hook_sp->GetCommands().GetSize() == 1 ?
1989 cur_hook_sp->GetCommands().GetStringAtIndex(0) :
1990 NULL);
1991 if (cmd)
1992 result.AppendMessageWithFormat("\n- Hook %llu (%s)\n", cur_hook_sp->GetID(), cmd);
1993 else
1994 result.AppendMessageWithFormat("\n- Hook %llu\n", cur_hook_sp->GetID());
Jim Inghamd60d94a2011-03-11 03:53:59 +00001995 any_thread_matched = true;
1996 }
1997
Jim Inghamc54840c2011-03-22 01:47:27 +00001998 if (print_thread_header)
Greg Clayton567e7f32011-09-22 04:58:26 +00001999 result.AppendMessageWithFormat("-- Thread %d\n", exc_ctx_with_reasons[i].GetThreadPtr()->GetIndexID());
Jim Inghamd60d94a2011-03-11 03:53:59 +00002000
2001 bool stop_on_continue = true;
2002 bool stop_on_error = true;
2003 bool echo_commands = false;
2004 bool print_results = true;
2005 GetDebugger().GetCommandInterpreter().HandleCommands (cur_hook_sp->GetCommands(),
Greg Clayton24bc5d92011-03-30 18:16:51 +00002006 &exc_ctx_with_reasons[i],
2007 stop_on_continue,
2008 stop_on_error,
2009 echo_commands,
Enrico Granata01bc2d42012-05-31 01:09:06 +00002010 print_results,
2011 eLazyBoolNo,
Greg Clayton24bc5d92011-03-30 18:16:51 +00002012 result);
Jim Inghamd60d94a2011-03-11 03:53:59 +00002013
2014 // If the command started the target going again, we should bag out of
2015 // running the stop hooks.
Greg Clayton24bc5d92011-03-30 18:16:51 +00002016 if ((result.GetStatus() == eReturnStatusSuccessContinuingNoResult) ||
2017 (result.GetStatus() == eReturnStatusSuccessContinuingResult))
Jim Inghamd60d94a2011-03-11 03:53:59 +00002018 {
Greg Clayton444e35b2011-10-19 18:09:39 +00002019 result.AppendMessageWithFormat ("Aborting stop hooks, hook %llu set the program running.", cur_hook_sp->GetID());
Jim Inghamd60d94a2011-03-11 03:53:59 +00002020 keep_going = false;
2021 }
2022 }
2023 }
2024 }
Jason Molenda850ac6e2011-09-23 00:42:55 +00002025
Caroline Tice4a348082011-05-02 20:41:46 +00002026 result.GetImmediateOutputStream()->Flush();
2027 result.GetImmediateErrorStream()->Flush();
Jim Inghamd60d94a2011-03-11 03:53:59 +00002028}
2029
Greg Claytonbbea1332011-07-08 00:48:09 +00002030
Jim Inghamd60d94a2011-03-11 03:53:59 +00002031//--------------------------------------------------------------
2032// class Target::StopHook
2033//--------------------------------------------------------------
2034
2035
2036Target::StopHook::StopHook (lldb::TargetSP target_sp, lldb::user_id_t uid) :
2037 UserID (uid),
2038 m_target_sp (target_sp),
Jim Inghamd60d94a2011-03-11 03:53:59 +00002039 m_commands (),
2040 m_specifier_sp (),
Stephen Wilsondbeb3e12011-04-11 19:41:40 +00002041 m_thread_spec_ap(NULL),
2042 m_active (true)
Jim Inghamd60d94a2011-03-11 03:53:59 +00002043{
2044}
2045
2046Target::StopHook::StopHook (const StopHook &rhs) :
2047 UserID (rhs.GetID()),
2048 m_target_sp (rhs.m_target_sp),
2049 m_commands (rhs.m_commands),
2050 m_specifier_sp (rhs.m_specifier_sp),
Stephen Wilsondbeb3e12011-04-11 19:41:40 +00002051 m_thread_spec_ap (NULL),
2052 m_active (rhs.m_active)
Jim Inghamd60d94a2011-03-11 03:53:59 +00002053{
2054 if (rhs.m_thread_spec_ap.get() != NULL)
2055 m_thread_spec_ap.reset (new ThreadSpec(*rhs.m_thread_spec_ap.get()));
2056}
2057
2058
2059Target::StopHook::~StopHook ()
2060{
2061}
2062
2063void
2064Target::StopHook::SetThreadSpecifier (ThreadSpec *specifier)
2065{
2066 m_thread_spec_ap.reset (specifier);
2067}
2068
2069
2070void
2071Target::StopHook::GetDescription (Stream *s, lldb::DescriptionLevel level) const
2072{
2073 int indent_level = s->GetIndentLevel();
2074
2075 s->SetIndentLevel(indent_level + 2);
2076
Greg Clayton444e35b2011-10-19 18:09:39 +00002077 s->Printf ("Hook: %llu\n", GetID());
Jim Inghamd60d94a2011-03-11 03:53:59 +00002078 if (m_active)
2079 s->Indent ("State: enabled\n");
2080 else
2081 s->Indent ("State: disabled\n");
2082
2083 if (m_specifier_sp)
2084 {
2085 s->Indent();
2086 s->PutCString ("Specifier:\n");
2087 s->SetIndentLevel (indent_level + 4);
2088 m_specifier_sp->GetDescription (s, level);
2089 s->SetIndentLevel (indent_level + 2);
2090 }
2091
2092 if (m_thread_spec_ap.get() != NULL)
2093 {
2094 StreamString tmp;
2095 s->Indent("Thread:\n");
2096 m_thread_spec_ap->GetDescription (&tmp, level);
2097 s->SetIndentLevel (indent_level + 4);
2098 s->Indent (tmp.GetData());
2099 s->PutCString ("\n");
2100 s->SetIndentLevel (indent_level + 2);
2101 }
2102
2103 s->Indent ("Commands: \n");
2104 s->SetIndentLevel (indent_level + 4);
2105 uint32_t num_commands = m_commands.GetSize();
2106 for (uint32_t i = 0; i < num_commands; i++)
2107 {
2108 s->Indent(m_commands.GetStringAtIndex(i));
2109 s->PutCString ("\n");
2110 }
2111 s->SetIndentLevel (indent_level);
2112}
2113
Greg Clayton73844aa2012-08-22 17:17:09 +00002114//--------------------------------------------------------------
2115// class TargetProperties
2116//--------------------------------------------------------------
2117
2118OptionEnumValueElement
2119lldb_private::g_dynamic_value_types[] =
Caroline Tice5bc8c972010-09-20 20:44:43 +00002120{
Greg Clayton73844aa2012-08-22 17:17:09 +00002121 { eNoDynamicValues, "no-dynamic-values", "Don't calculate the dynamic type of values"},
2122 { eDynamicCanRunTarget, "run-target", "Calculate the dynamic type of values even if you have to run the target."},
2123 { eDynamicDontRunTarget, "no-run-target", "Calculate the dynamic type of values, but don't run the target."},
2124 { 0, NULL, NULL }
2125};
Caroline Tice5bc8c972010-09-20 20:44:43 +00002126
Greg Clayton49ce8962012-08-29 21:13:06 +00002127static OptionEnumValueElement
2128g_inline_breakpoint_enums[] =
2129{
2130 { 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."},
2131 { eInlineBreakpointsHeaders, "headers", "Only check for inline breakpoint locations when setting breakpoints in header files, but not when setting breakpoint in implementation source files (default)."},
2132 { eInlineBreakpointsAlways, "always", "Always look for inline breakpoint locations when setting file and line breakpoints (slower but most accurate)."},
2133 { 0, NULL, NULL }
2134};
2135
Greg Clayton73844aa2012-08-22 17:17:09 +00002136static PropertyDefinition
2137g_properties[] =
Caroline Tice5bc8c972010-09-20 20:44:43 +00002138{
Greg Clayton73844aa2012-08-22 17:17:09 +00002139 { "default-arch" , OptionValue::eTypeArch , true , 0 , NULL, NULL, "Default architecture to choose, when there's a choice." },
2140 { "expr-prefix" , OptionValue::eTypeFileSpec , false, 0 , NULL, NULL, "Path to a file containing expressions to be prepended to all expressions." },
2141 { "prefer-dynamic-value" , OptionValue::eTypeEnum , false, eNoDynamicValues , NULL, g_dynamic_value_types, "Should printed values be shown as their dynamic value." },
2142 { "enable-synthetic-value" , OptionValue::eTypeBoolean , false, true , NULL, NULL, "Should synthetic values be used by default whenever available." },
2143 { "skip-prologue" , OptionValue::eTypeBoolean , false, true , NULL, NULL, "Skip function prologues when setting breakpoints by name." },
2144 { "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 "
2145 "where it exists on the current system. It consists of an array of duples, the first element of each duple is "
2146 "some part (starting at the root) of the path to the file when it was built, "
2147 "and the second is where the remainder of the original build hierarchy is rooted on the local system. "
2148 "Each element of the array is checked in order and the first one that results in a match wins." },
2149 { "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." },
2150 { "max-children-count" , OptionValue::eTypeSInt64 , false, 256 , NULL, NULL, "Maximum number of children to expand in any level of depth." },
2151 { "max-string-summary-length" , OptionValue::eTypeSInt64 , false, 1024 , NULL, NULL, "Maximum number of characters to show when using %s in summary strings." },
2152 { "breakpoints-use-platform-avoid-list", OptionValue::eTypeBoolean , false, true , NULL, NULL, "Consult the platform module avoid list when setting non-module specific breakpoints." },
2153 { "run-args" , OptionValue::eTypeArgs , false, 0 , NULL, NULL, "A list containing all the arguments to be passed to the executable when it is run." },
2154 { "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." },
2155 { "inherit-env" , OptionValue::eTypeBoolean , false, true , NULL, NULL, "Inherit the environment from the process that is running LLDB." },
2156 { "input-path" , OptionValue::eTypeFileSpec , false, 0 , NULL, NULL, "The file/path to be used by the executable program for reading its standard input." },
2157 { "output-path" , OptionValue::eTypeFileSpec , false, 0 , NULL, NULL, "The file/path to be used by the executable program for writing its standard output." },
2158 { "error-path" , OptionValue::eTypeFileSpec , false, 0 , NULL, NULL, "The file/path to be used by the executable program for writing its standard error." },
2159 { "disable-aslr" , OptionValue::eTypeBoolean , false, true , NULL, NULL, "Disable Address Space Layout Randomization (ASLR)" },
2160 { "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 +00002161 { "inline-breakpoint-strategy" , OptionValue::eTypeEnum , false, eInlineBreakpointsHeaders , NULL, g_inline_breakpoint_enums, "The strategy to use when settings breakpoints by file and line. "
2162 "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. "
2163 "Usually this is limitted to breakpoint locations from inlined functions from header or other include files, or more accurately non-implementation source files. "
2164 "Sometimes code might #include implementation files and cause inlined breakpoint locations in inlined implementation files. "
2165 "Always checking for inlined breakpoint locations can be expensive (memory and time), so we try to minimize the "
2166 "times we look for inlined locations. This setting allows you to control exactly which strategy is used when settings "
2167 "file and line breakpoints." },
Greg Clayton73844aa2012-08-22 17:17:09 +00002168 { NULL , OptionValue::eTypeInvalid , false, 0 , NULL, NULL, NULL }
2169};
2170enum
Caroline Tice5bc8c972010-09-20 20:44:43 +00002171{
Greg Clayton73844aa2012-08-22 17:17:09 +00002172 ePropertyDefaultArch,
2173 ePropertyExprPrefix,
2174 ePropertyPreferDynamic,
2175 ePropertyEnableSynthetic,
2176 ePropertySkipPrologue,
2177 ePropertySourceMap,
2178 ePropertyExecutableSearchPaths,
2179 ePropertyMaxChildrenCount,
2180 ePropertyMaxSummaryLength,
2181 ePropertyBreakpointUseAvoidList,
2182 ePropertyRunArgs,
2183 ePropertyEnvVars,
2184 ePropertyInheritEnv,
2185 ePropertyInputPath,
2186 ePropertyOutputPath,
2187 ePropertyErrorPath,
2188 ePropertyDisableASLR,
Greg Clayton49ce8962012-08-29 21:13:06 +00002189 ePropertyDisableSTDIO,
2190 ePropertyInlineStrategy
Greg Clayton73844aa2012-08-22 17:17:09 +00002191};
Caroline Tice5bc8c972010-09-20 20:44:43 +00002192
Caroline Tice5bc8c972010-09-20 20:44:43 +00002193
Greg Clayton73844aa2012-08-22 17:17:09 +00002194class TargetOptionValueProperties : public OptionValueProperties
Greg Claytond284b662011-02-18 01:44:25 +00002195{
Greg Clayton73844aa2012-08-22 17:17:09 +00002196public:
2197 TargetOptionValueProperties (const ConstString &name) :
2198 OptionValueProperties (name),
2199 m_target (NULL),
2200 m_got_host_env (false)
Caroline Tice5bc8c972010-09-20 20:44:43 +00002201 {
Caroline Tice5bc8c972010-09-20 20:44:43 +00002202 }
Caroline Tice5bc8c972010-09-20 20:44:43 +00002203
Greg Clayton73844aa2012-08-22 17:17:09 +00002204 // This constructor is used when creating TargetOptionValueProperties when it
2205 // is part of a new lldb_private::Target instance. It will copy all current
2206 // global property values as needed
2207 TargetOptionValueProperties (Target *target, const TargetPropertiesSP &target_properties_sp) :
2208 OptionValueProperties(*target_properties_sp->GetValueProperties()),
2209 m_target (target),
2210 m_got_host_env (false)
Caroline Tice5bc8c972010-09-20 20:44:43 +00002211 {
Greg Clayton73844aa2012-08-22 17:17:09 +00002212 }
2213
2214 virtual const Property *
2215 GetPropertyAtIndex (const ExecutionContext *exe_ctx, bool will_modify, uint32_t idx) const
2216 {
2217 // When gettings the value for a key from the target options, we will always
2218 // try and grab the setting from the current target if there is one. Else we just
2219 // use the one from this instance.
2220 if (idx == ePropertyEnvVars)
2221 GetHostEnvironmentIfNeeded ();
2222
2223 if (exe_ctx)
2224 {
2225 Target *target = exe_ctx->GetTargetPtr();
2226 if (target)
2227 {
2228 TargetOptionValueProperties *target_properties = static_cast<TargetOptionValueProperties *>(target->GetValueProperties().get());
2229 if (this != target_properties)
2230 return target_properties->ProtectedGetPropertyAtIndex (idx);
2231 }
2232 }
2233 return ProtectedGetPropertyAtIndex (idx);
2234 }
2235protected:
2236
2237 void
2238 GetHostEnvironmentIfNeeded () const
2239 {
2240 if (!m_got_host_env)
2241 {
2242 if (m_target)
2243 {
2244 m_got_host_env = true;
2245 const uint32_t idx = ePropertyInheritEnv;
2246 if (GetPropertyAtIndexAsBoolean (NULL, idx, g_properties[idx].default_uint_value != 0))
2247 {
2248 PlatformSP platform_sp (m_target->GetPlatform());
2249 if (platform_sp)
2250 {
2251 StringList env;
2252 if (platform_sp->GetEnvironment(env))
2253 {
2254 OptionValueDictionary *env_dict = GetPropertyAtIndexAsOptionValueDictionary (NULL, ePropertyEnvVars);
2255 if (env_dict)
2256 {
2257 const bool can_replace = false;
2258 const size_t envc = env.GetSize();
2259 for (size_t idx=0; idx<envc; idx++)
2260 {
2261 const char *env_entry = env.GetStringAtIndex (idx);
2262 if (env_entry)
2263 {
2264 const char *equal_pos = ::strchr(env_entry, '=');
2265 ConstString key;
2266 // It is ok to have environment variables with no values
2267 const char *value = NULL;
2268 if (equal_pos)
2269 {
2270 key.SetCStringWithLength(env_entry, equal_pos - env_entry);
2271 if (equal_pos[1])
2272 value = equal_pos + 1;
2273 }
2274 else
2275 {
2276 key.SetCString(env_entry);
2277 }
2278 // Don't allow existing keys to be replaced with ones we get from the platform environment
2279 env_dict->SetValueForKey(key, OptionValueSP(new OptionValueString(value)), can_replace);
2280 }
2281 }
2282 }
2283 }
2284 }
2285 }
2286 }
2287 }
2288 }
2289 Target *m_target;
2290 mutable bool m_got_host_env;
2291};
2292
2293TargetProperties::TargetProperties (Target *target) :
2294 Properties ()
2295{
2296 if (target)
2297 {
2298 m_collection_sp.reset (new TargetOptionValueProperties(target, Target::GetGlobalProperties()));
Caroline Tice5bc8c972010-09-20 20:44:43 +00002299 }
2300 else
Greg Clayton73844aa2012-08-22 17:17:09 +00002301 {
2302 m_collection_sp.reset (new TargetOptionValueProperties(ConstString("target")));
2303 m_collection_sp->Initialize(g_properties);
2304 m_collection_sp->AppendProperty(ConstString("process"),
2305 ConstString("Settings specify to processes."),
2306 true,
2307 Process::GetGlobalProperties()->GetValueProperties());
2308 }
Caroline Tice5bc8c972010-09-20 20:44:43 +00002309}
2310
Greg Clayton73844aa2012-08-22 17:17:09 +00002311TargetProperties::~TargetProperties ()
2312{
2313}
2314ArchSpec
2315TargetProperties::GetDefaultArchitecture () const
2316{
2317 OptionValueArch *value = m_collection_sp->GetPropertyAtIndexAsOptionValueArch (NULL, ePropertyDefaultArch);
2318 if (value)
2319 return value->GetCurrentValue();
2320 return ArchSpec();
2321}
2322
2323void
2324TargetProperties::SetDefaultArchitecture (const ArchSpec& arch)
2325{
2326 OptionValueArch *value = m_collection_sp->GetPropertyAtIndexAsOptionValueArch (NULL, ePropertyDefaultArch);
2327 if (value)
2328 return value->SetCurrentValue(arch, true);
2329}
2330
2331lldb::DynamicValueType
2332TargetProperties::GetPreferDynamicValue() const
2333{
2334 const uint32_t idx = ePropertyPreferDynamic;
2335 return (lldb::DynamicValueType)m_collection_sp->GetPropertyAtIndexAsEnumeration (NULL, idx, g_properties[idx].default_uint_value);
2336}
2337
2338bool
2339TargetProperties::GetDisableASLR () const
2340{
2341 const uint32_t idx = ePropertyDisableASLR;
2342 return m_collection_sp->GetPropertyAtIndexAsBoolean (NULL, idx, g_properties[idx].default_uint_value != 0);
2343}
2344
2345void
2346TargetProperties::SetDisableASLR (bool b)
2347{
2348 const uint32_t idx = ePropertyDisableASLR;
2349 m_collection_sp->SetPropertyAtIndexAsBoolean (NULL, idx, b);
2350}
2351
2352bool
2353TargetProperties::GetDisableSTDIO () const
2354{
2355 const uint32_t idx = ePropertyDisableSTDIO;
2356 return m_collection_sp->GetPropertyAtIndexAsBoolean (NULL, idx, g_properties[idx].default_uint_value != 0);
2357}
2358
2359void
2360TargetProperties::SetDisableSTDIO (bool b)
2361{
2362 const uint32_t idx = ePropertyDisableSTDIO;
2363 m_collection_sp->SetPropertyAtIndexAsBoolean (NULL, idx, b);
2364}
2365
Greg Clayton49ce8962012-08-29 21:13:06 +00002366InlineStrategy
2367TargetProperties::GetInlineStrategy () const
2368{
2369 const uint32_t idx = ePropertyInlineStrategy;
2370 return (InlineStrategy)m_collection_sp->GetPropertyAtIndexAsEnumeration (NULL, idx, g_properties[idx].default_uint_value);
2371}
2372
Greg Clayton73844aa2012-08-22 17:17:09 +00002373bool
2374TargetProperties::GetRunArguments (Args &args) const
2375{
2376 const uint32_t idx = ePropertyRunArgs;
2377 return m_collection_sp->GetPropertyAtIndexAsArgs (NULL, idx, args);
2378}
2379
2380void
2381TargetProperties::SetRunArguments (const Args &args)
2382{
2383 const uint32_t idx = ePropertyRunArgs;
2384 m_collection_sp->SetPropertyAtIndexFromArgs (NULL, idx, args);
2385}
2386
2387size_t
2388TargetProperties::GetEnvironmentAsArgs (Args &env) const
2389{
2390 const uint32_t idx = ePropertyEnvVars;
2391 return m_collection_sp->GetPropertyAtIndexAsArgs (NULL, idx, env);
2392}
2393
2394bool
2395TargetProperties::GetSkipPrologue() const
2396{
2397 const uint32_t idx = ePropertySkipPrologue;
2398 return m_collection_sp->GetPropertyAtIndexAsBoolean (NULL, idx, g_properties[idx].default_uint_value != 0);
2399}
2400
2401PathMappingList &
2402TargetProperties::GetSourcePathMap () const
2403{
2404 const uint32_t idx = ePropertySourceMap;
2405 OptionValuePathMappings *option_value = m_collection_sp->GetPropertyAtIndexAsOptionValuePathMappings (NULL, false, idx);
2406 assert(option_value);
2407 return option_value->GetCurrentValue();
2408}
2409
2410FileSpecList &
Greg Claytonc6e82e42012-08-22 18:39:03 +00002411TargetProperties::GetExecutableSearchPaths ()
Greg Clayton73844aa2012-08-22 17:17:09 +00002412{
2413 const uint32_t idx = ePropertyExecutableSearchPaths;
2414 OptionValueFileSpecList *option_value = m_collection_sp->GetPropertyAtIndexAsOptionValueFileSpecList (NULL, false, idx);
2415 assert(option_value);
2416 return option_value->GetCurrentValue();
2417}
2418
2419bool
2420TargetProperties::GetEnableSyntheticValue () const
2421{
2422 const uint32_t idx = ePropertyEnableSynthetic;
2423 return m_collection_sp->GetPropertyAtIndexAsBoolean (NULL, idx, g_properties[idx].default_uint_value != 0);
2424}
2425
2426uint32_t
2427TargetProperties::GetMaximumNumberOfChildrenToDisplay() const
2428{
2429 const uint32_t idx = ePropertyMaxChildrenCount;
2430 return m_collection_sp->GetPropertyAtIndexAsSInt64 (NULL, idx, g_properties[idx].default_uint_value);
2431}
2432
2433uint32_t
2434TargetProperties::GetMaximumSizeOfStringSummary() const
2435{
2436 const uint32_t idx = ePropertyMaxSummaryLength;
2437 return m_collection_sp->GetPropertyAtIndexAsSInt64 (NULL, idx, g_properties[idx].default_uint_value);
2438}
2439
2440FileSpec
2441TargetProperties::GetStandardInputPath () const
2442{
2443 const uint32_t idx = ePropertyInputPath;
2444 return m_collection_sp->GetPropertyAtIndexAsFileSpec (NULL, idx);
2445}
2446
2447void
2448TargetProperties::SetStandardInputPath (const char *p)
2449{
2450 const uint32_t idx = ePropertyInputPath;
2451 m_collection_sp->SetPropertyAtIndexAsString (NULL, idx, p);
2452}
2453
2454FileSpec
2455TargetProperties::GetStandardOutputPath () const
2456{
2457 const uint32_t idx = ePropertyOutputPath;
2458 return m_collection_sp->GetPropertyAtIndexAsFileSpec (NULL, idx);
2459}
2460
2461void
2462TargetProperties::SetStandardOutputPath (const char *p)
2463{
2464 const uint32_t idx = ePropertyOutputPath;
2465 m_collection_sp->SetPropertyAtIndexAsString (NULL, idx, p);
2466}
2467
2468FileSpec
2469TargetProperties::GetStandardErrorPath () const
2470{
2471 const uint32_t idx = ePropertyErrorPath;
2472 return m_collection_sp->GetPropertyAtIndexAsFileSpec(NULL, idx);
2473}
2474
Greg Claytonc6e82e42012-08-22 18:39:03 +00002475const char *
2476TargetProperties::GetExpressionPrefixContentsAsCString ()
2477{
2478 const uint32_t idx = ePropertyExprPrefix;
2479 OptionValueFileSpec *file = m_collection_sp->GetPropertyAtIndexAsOptionValueFileSpec (NULL, false, idx);
2480 if (file)
Jim Ingham7021cda2012-08-22 21:21:16 +00002481 {
Greg Claytonfc04d242012-08-30 18:15:10 +00002482 const bool null_terminate = true;
2483 DataBufferSP data_sp(file->GetFileContents(null_terminate));
Jim Ingham7021cda2012-08-22 21:21:16 +00002484 if (data_sp)
2485 return (const char *) data_sp->GetBytes();
2486 }
Greg Claytonc6e82e42012-08-22 18:39:03 +00002487 return NULL;
2488}
2489
Greg Clayton73844aa2012-08-22 17:17:09 +00002490void
2491TargetProperties::SetStandardErrorPath (const char *p)
2492{
2493 const uint32_t idx = ePropertyErrorPath;
2494 m_collection_sp->SetPropertyAtIndexAsString (NULL, idx, p);
2495}
2496
2497bool
2498TargetProperties::GetBreakpointsConsultPlatformAvoidList ()
2499{
2500 const uint32_t idx = ePropertyBreakpointUseAvoidList;
2501 return m_collection_sp->GetPropertyAtIndexAsBoolean (NULL, idx, g_properties[idx].default_uint_value != 0);
2502}
2503
2504const TargetPropertiesSP &
2505Target::GetGlobalProperties()
2506{
2507 static TargetPropertiesSP g_settings_sp;
2508 if (!g_settings_sp)
2509 {
2510 g_settings_sp.reset (new TargetProperties (NULL));
2511 }
2512 return g_settings_sp;
2513}
2514
Jim Ingham5a15e692012-02-16 06:50:00 +00002515const ConstString &
2516Target::TargetEventData::GetFlavorString ()
2517{
2518 static ConstString g_flavor ("Target::TargetEventData");
2519 return g_flavor;
2520}
2521
2522const ConstString &
2523Target::TargetEventData::GetFlavor () const
2524{
2525 return TargetEventData::GetFlavorString ();
2526}
2527
2528Target::TargetEventData::TargetEventData (const lldb::TargetSP &new_target_sp) :
2529 EventData(),
2530 m_target_sp (new_target_sp)
2531{
2532}
2533
2534Target::TargetEventData::~TargetEventData()
2535{
2536
2537}
2538
2539void
2540Target::TargetEventData::Dump (Stream *s) const
2541{
2542
2543}
2544
2545const TargetSP
2546Target::TargetEventData::GetTargetFromEvent (const lldb::EventSP &event_sp)
2547{
2548 TargetSP target_sp;
2549
2550 const TargetEventData *data = GetEventDataFromEvent (event_sp.get());
2551 if (data)
2552 target_sp = data->m_target_sp;
2553
2554 return target_sp;
2555}
2556
2557const Target::TargetEventData *
2558Target::TargetEventData::GetEventDataFromEvent (const Event *event_ptr)
2559{
2560 if (event_ptr)
2561 {
2562 const EventData *event_data = event_ptr->GetData();
2563 if (event_data && event_data->GetFlavor() == TargetEventData::GetFlavorString())
2564 return static_cast <const TargetEventData *> (event_ptr->GetData());
2565 }
2566 return NULL;
2567}
2568