LLDB mainline
Target.h
Go to the documentation of this file.
1//===-- Target.h ------------------------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLDB_TARGET_TARGET_H
10#define LLDB_TARGET_TARGET_H
11
12#include <list>
13#include <map>
14#include <memory>
15#include <optional>
16#include <string>
17#include <vector>
18
22#include "lldb/Core/Address.h"
44#include "lldb/Utility/Stream.h"
47#include "lldb/lldb-public.h"
48#include "llvm/ADT/MapVector.h"
49#include "llvm/ADT/StringRef.h"
50
51namespace lldb_private {
52
54
60
67
73
79
86
88
93
95public:
96 TargetProperties(Target *target);
97
99
101
102 void SetDefaultArchitecture(const ArchSpec &arch);
103
104 bool GetMoveToNearestCode() const;
105
107
109
110 bool GetPreloadSymbols() const;
111
112 void SetPreloadSymbols(bool b);
113
114 bool GetDisableASLR() const;
115
116 void SetDisableASLR(bool b);
117
118 bool GetInheritTCC() const;
119
120 void SetInheritTCC(bool b);
121
122 bool GetDetachOnError() const;
123
124 void SetDetachOnError(bool b);
125
126 bool GetDisableSTDIO() const;
127
128 void SetDisableSTDIO(bool b);
129
130 llvm::StringRef GetLaunchWorkingDirectory() const;
131
132 bool GetParallelModuleLoad() const;
133
134 const char *GetDisassemblyFlavor() const;
135
136 const char *GetDisassemblyCPU() const;
137
138 const char *GetDisassemblyFeatures() const;
139
141
143
144 llvm::StringRef GetArg0() const;
145
146 void SetArg0(llvm::StringRef arg);
147
148 bool GetRunArguments(Args &args) const;
149
150 void SetRunArguments(const Args &args);
151
152 // Get the whole environment including the platform inherited environment and
153 // the target specific environment, excluding the unset environment variables.
155 // Get the platform inherited environment, excluding the unset environment
156 // variables.
158 // Get the target specific environment only, without the platform inherited
159 // environment.
161 // Set the target specific environment.
162 void SetEnvironment(Environment env);
163
164 bool GetSkipPrologue() const;
165
167
169
170 bool GetAutoSourceMapRelative() const;
171
173
175
177
179
181
183
185
186 bool GetEnableAutoApplyFixIts() const;
187
188 uint64_t GetNumberOfRetriesWithFixits() const;
189
190 bool GetEnableNotifyAboutFixIts() const;
191
193
194 JITEngine GetJITEngine() const;
195
196 bool GetEnableSyntheticValue() const;
197
199
200 uint32_t GetMaxZeroPaddingInFloatFormat() const;
201
203
204 /// Get the max depth value, augmented with a bool to indicate whether the
205 /// depth is the default.
206 ///
207 /// When the user has customized the max depth, the bool will be false.
208 ///
209 /// \returns the max depth, and true if the max depth is the system default,
210 /// otherwise false.
211 std::pair<uint32_t, bool> GetMaximumDepthOfChildrenToDisplay() const;
212
213 uint32_t GetMaximumSizeOfStringSummary() const;
214
215 uint32_t GetMaximumMemReadSize() const;
216
220
221 void SetStandardInputPath(llvm::StringRef path);
222 void SetStandardOutputPath(llvm::StringRef path);
223 void SetStandardErrorPath(llvm::StringRef path);
224
225 void SetStandardInputPath(const char *path) = delete;
226 void SetStandardOutputPath(const char *path) = delete;
227 void SetStandardErrorPath(const char *path) = delete;
228
230
232
233 llvm::StringRef GetExpressionPrefixContents();
234
235 uint64_t GetExprErrorLimit() const;
236
237 uint64_t GetExprAllocAddress() const;
238
239 uint64_t GetExprAllocSize() const;
240
241 uint64_t GetExprAllocAlign() const;
242
243 bool GetUseHexImmediates() const;
244
245 bool GetUseFastStepping() const;
246
248
250
251 /// Set the target-wide target.load-script-from-symbol-file setting.
252 /// See \c SetAutoLoadScriptsForModule for overriding this setting
253 /// per-module.
255
257
259
261
262 bool GetUserSpecifiedTrapHandlerNames(Args &args) const;
263
264 void SetUserSpecifiedTrapHandlerNames(const Args &args);
265
267
269
271
273
275
276 void SetProcessLaunchInfo(const ProcessLaunchInfo &launch_info);
277
278 bool GetInjectLocalVariables(ExecutionContext *exe_ctx) const;
279
280 bool GetUseDIL(ExecutionContext *exe_ctx) const;
281
282 void SetUseDIL(ExecutionContext *exe_ctx, bool b);
283
284 bool GetUseDILForCreatingValues() const;
285
286 void SetUseDILForCreatingValues(bool b);
287
289
291
292 bool GetAutoInstallMainExecutable() const;
293
295
296 void SetDebugUtilityExpression(bool debug);
297
298 bool GetDebugUtilityExpression() const;
299
300 void SetCheckValueObjectOwnership(bool check);
301
302 bool GetCheckValueObjectOwnership() const;
303
304 std::optional<LoadScriptFromSymFile>
305 GetAutoLoadScriptsForModule(llvm::StringRef module_name) const;
306
307 /// Set the \c LoadScriptFromSymFile for a module called \c module_name
308 /// (excluding file extension). LLDB will prefer this over the target-wide
309 /// target.load-script-from-symbol-file setting
310 /// (see \c SetLoadScriptFromSymbolFile).
311 void SetAutoLoadScriptsForModule(llvm::StringRef module_name,
312 LoadScriptFromSymFile load_style);
313
314private:
315 std::optional<bool>
316 GetExperimentalPropertyValue(size_t prop_idx,
317 ExecutionContext *exe_ctx = nullptr) const;
318
319 // Callbacks for m_launch_info.
330
331 // Settings checker for target.jit-save-objects-dir:
332 void CheckJITObjectsDir();
333
335
336 // Member variables.
338 std::unique_ptr<TargetExperimentalProperties> m_experimental_properties_up;
340};
341
343public:
345
346// MSVC has a bug here that reports C4268: 'const' static/global data
347// initialized with compiler generated default constructor fills the object
348// with zeros. Confirmed that MSVC is *not* zero-initializing, it's just a
349// bogus warning.
350#if defined(_MSC_VER)
351#pragma warning(push)
352#pragma warning(disable : 4268)
353#endif
354 static constexpr std::chrono::milliseconds default_timeout{500};
355#if defined(_MSC_VER)
356#pragma warning(pop)
357#endif
358
361
363
367
369
370 void SetLanguage(lldb::LanguageType language_type) {
371 m_language = SourceLanguage(language_type);
372 }
373
375 m_preferred_lookup_contexts = std::move(contexts);
376 }
377
381
382 /// Set the language using a pair of language code and version as
383 /// defined by the DWARF 6 specification.
384 /// WARNING: These codes may change until DWARF 6 is finalized.
385 void SetLanguage(uint16_t name, uint32_t version) {
386 m_language = SourceLanguage(name, version);
387 }
388
389 bool DoesCoerceToId() const { return m_coerce_to_id; }
390
391 const char *GetPrefix() const {
392 return (m_prefix.empty() ? nullptr : m_prefix.c_str());
393 }
394
395 void SetPrefix(const char *prefix) {
396 if (prefix && prefix[0])
397 m_prefix = prefix;
398 else
399 m_prefix.clear();
400 }
401
402 void SetCoerceToId(bool coerce = true) { m_coerce_to_id = coerce; }
403
404 bool DoesUnwindOnError() const { return m_unwind_on_error; }
405
406 void SetUnwindOnError(bool unwind = false) { m_unwind_on_error = unwind; }
407
409
410 void SetIgnoreBreakpoints(bool ignore = false) {
411 m_ignore_breakpoints = ignore;
412 }
413
414 bool DoesKeepInMemory() const { return m_keep_in_memory; }
415
416 void SetKeepInMemory(bool keep = true) { m_keep_in_memory = keep; }
417
419
420 void
424
425 const Timeout<std::micro> &GetTimeout() const { return m_timeout; }
426
427 void SetTimeout(const Timeout<std::micro> &timeout) { m_timeout = timeout; }
428
432
434 m_one_thread_timeout = timeout;
435 }
436
437 bool GetTryAllThreads() const { return m_try_others; }
438
439 void SetTryAllThreads(bool try_others = true) { m_try_others = try_others; }
440
441 bool GetStopOthers() const { return m_stop_others; }
442
443 void SetStopOthers(bool stop_others = true) { m_stop_others = stop_others; }
444
445 bool GetDebug() const { return m_debug; }
446
447 void SetDebug(bool b) {
448 m_debug = b;
449 if (m_debug)
451 }
452
454
456
457 bool GetColorizeErrors() const { return m_ansi_color_errors; }
458
460
461 bool GetTrapExceptions() const { return m_trap_exceptions; }
462
464
465 bool GetStopOnFork() const { return m_stop_on_fork; }
466
467 void SetStopOnFork(bool b) { m_stop_on_fork = b; }
468
469 bool GetREPLEnabled() const { return m_repl; }
470
471 void SetREPLEnabled(bool b) { m_repl = b; }
472
475 m_cancel_callback = callback;
476 }
477
479 return ((m_cancel_callback != nullptr)
481 : false);
482 }
483
484 // Allows the expression contents to be remapped to point to the specified
485 // file and line using #line directives.
486 void SetPoundLine(const char *path, uint32_t line) const {
487 if (path && path[0]) {
488 m_pound_line_file = path;
489 m_pound_line_line = line;
490 } else {
491 m_pound_line_file.clear();
493 }
494 }
495
496 const char *GetPoundLineFilePath() const {
497 return (m_pound_line_file.empty() ? nullptr : m_pound_line_file.c_str());
498 }
499
500 uint32_t GetPoundLineLine() const { return m_pound_line_line; }
501
503
507
509
511
512 void SetRetriesWithFixIts(uint64_t number_of_retries) {
513 m_retries_with_fixits = number_of_retries;
514 }
515
516 uint64_t GetRetriesWithFixIts() const { return m_retries_with_fixits; }
517
519
521
522 /// Set language-plugin specific option called \c option_name to
523 /// the specified boolean \c value.
524 llvm::Error SetBooleanLanguageOption(llvm::StringRef option_name, bool value);
525
526 /// Get the language-plugin specific boolean option called \c option_name.
527 ///
528 /// If the option doesn't exist or is not a boolean option, returns false.
529 /// Otherwise returns the boolean value of the option.
530 llvm::Expected<bool>
531 GetBooleanLanguageOption(llvm::StringRef option_name) const;
532
533 void SetCppIgnoreContextQualifiers(bool value);
534
536
537 void SetTryDILFirst(bool b) { m_try_DIL_first = b; }
538
539 bool GetTryDILFirst() const { return m_try_DIL_first; }
540
541private:
543
545
548 std::string m_prefix;
549 bool m_coerce_to_id = false;
550 bool m_unwind_on_error = true;
552 bool m_keep_in_memory = false;
553 bool m_try_others = true;
554 bool m_stop_others = true;
555 bool m_debug = false;
556 bool m_trap_exceptions = true;
557 bool m_stop_on_fork = false;
558 bool m_repl = false;
564 /// True if the executed code should be treated as utility code that is only
565 /// used by LLDB internally.
567 /// If enabled, Data Inspection Language (DIL) should attempt to evaluate the
568 /// expression first. If DIL is not called or fails, the evaluation falls
569 /// back to UserExpression.
570 bool m_try_DIL_first = false;
571
576 void *m_cancel_callback_baton = nullptr;
577 // If m_pound_line_file is not empty and m_pound_line_line is non-zero, use
578 // #line %u "%s" before the expression content to remap where the source
579 // originates
580 mutable std::string m_pound_line_file;
581 mutable uint32_t m_pound_line_line = 0;
582
583 /// Dictionary mapping names of language-plugin specific options
584 /// to values.
586
587 /// During expression evaluation, any SymbolContext in this list will be
588 /// used for symbol/function lookup before any other context (except for
589 /// the module corresponding to the current frame).
591};
592
593// Target
594class Target : public std::enable_shared_from_this<Target>,
595 public TargetProperties,
596 public Broadcaster,
598 public ModuleList::Notifier {
599public:
600 friend class TargetList;
601 friend class Debugger;
602 friend class TargetAPIMutex;
603
604 /// Broadcaster event bits definitions.
605 enum {
613 };
614
615 // These two functions fill out the Broadcaster interface:
616
617 static llvm::StringRef GetStaticBroadcasterClass();
618
619 llvm::StringRef GetBroadcasterClass() const override {
621 }
622
623 // This event data class is for use by the TargetList to broadcast new target
624 // notifications.
625 class TargetEventData : public EventData {
626 public:
627 TargetEventData(const lldb::TargetSP &target_sp);
628
629 TargetEventData(const lldb::TargetSP &target_sp,
630 const ModuleList &module_list);
631
632 // Constructor for eBroadcastBitNewTargetCreated events. For this event
633 // type:
634 // - target_sp is the parent target (the subject/broadcaster of the event)
635 // - created_target_sp is the newly created target
636 TargetEventData(const lldb::TargetSP &target_sp,
637 const lldb::TargetSP &created_target_sp);
638
640
641 static llvm::StringRef GetFlavorString();
642
643 llvm::StringRef GetFlavor() const override {
645 }
646
647 void Dump(Stream *s) const override;
648
649 static const TargetEventData *GetEventDataFromEvent(const Event *event_ptr);
650
651 static lldb::TargetSP GetTargetFromEvent(const Event *event_ptr);
652
653 // For eBroadcastBitNewTargetCreated events, returns the newly created
654 // target. For other event types, returns an invalid target.
655 static lldb::TargetSP GetCreatedTargetFromEvent(const Event *event_ptr);
656
657 static ModuleList GetModuleListFromEvent(const Event *event_ptr);
658
659 const lldb::TargetSP &GetTarget() const { return m_target_sp; }
660
662 return m_created_target_sp;
663 }
664
665 const ModuleList &GetModuleList() const { return m_module_list; }
666
667 private:
671
673 const TargetEventData &operator=(const TargetEventData &) = delete;
674 };
675
676 ~Target() override;
677
678 static void SettingsInitialize();
679
680 static void SettingsTerminate();
681
683
685
687
688 static void SetDefaultArchitecture(const ArchSpec &arch);
689
690 bool IsDummyTarget() const { return m_is_dummy_target; }
691
692 /// Get the globally unique ID for this target.
693 ///
694 /// This ID is unique across all debugger instances and all targets,
695 /// within the same lldb process. The ID is assigned
696 /// during target construction and remains constant for the target's lifetime.
697 /// The first target created (typically the dummy target) gets ID 1.
698 ///
699 /// \return
700 /// The globally unique ID for this target.
702
703 const std::string &GetLabel() const { return m_label; }
704
705 /// Set a label for a target.
706 ///
707 /// The label cannot be used by another target or be only integral.
708 ///
709 /// \return
710 /// The label for this target or an error if the label didn't match the
711 /// requirements.
712 llvm::Error SetLabel(llvm::StringRef label);
713
714 /// Get the target session name for this target.
715 ///
716 /// Provides a meaningful name for IDEs or tools to display for dynamically
717 /// created targets. Defaults to "Session {ID}" based on the globally unique
718 /// ID.
719 ///
720 /// \return
721 /// The target session name for this target.
722 llvm::StringRef GetTargetSessionName() { return m_target_session_name; }
723
724 /// Set the target session name for this target.
725 ///
726 /// This should typically be set along with the event
727 /// eBroadcastBitNewTargetCreated. Useful for scripts or triggers that
728 /// automatically create targets and want to provide meaningful names that
729 /// IDEs or other tools can display to help users identify the origin and
730 /// purpose of each target.
731 ///
732 /// \param[in] target_session_name
733 /// The target session name to set for this target.
734 void SetTargetSessionName(llvm::StringRef target_session_name) {
735 m_target_session_name = target_session_name.str();
736 }
737
738 /// Find a binary on the system and return its Module,
739 /// or return an existing Module that is already in the Target.
740 ///
741 /// Given a ModuleSpec, find a binary satisifying that specification,
742 /// or identify a matching Module already present in the Target,
743 /// and return a shared pointer to it.
744 ///
745 /// Note that this function previously also preloaded the module's symbols
746 /// depending on a setting. This function no longer does any module
747 /// preloading because that can potentially cause deadlocks when called in
748 /// parallel with this function.
749 ///
750 /// \param[in] module_spec
751 /// The criteria that must be matched for the binary being loaded.
752 /// e.g. UUID, architecture, file path.
753 ///
754 /// \param[in] notify
755 /// If notify is true, and the Module is new to this Target,
756 /// Target::ModulesDidLoad will be called. See note in
757 /// Target::ModulesDidLoad about thread-safety with
758 /// Target::GetOrCreateModule.
759 /// If notify is false, it is assumed that the caller is adding
760 /// multiple Modules and will call ModulesDidLoad with the
761 /// full list at the end.
762 /// ModulesDidLoad must be called when a Module/Modules have
763 /// been added to the target, one way or the other.
764 ///
765 /// \param[out] error_ptr
766 /// Optional argument, pointing to a Status object to fill in
767 /// with any results / messages while attempting to find/load
768 /// this binary. Many callers will be internal functions that
769 /// will handle / summarize the failures in a custom way and
770 /// don't use these messages.
771 ///
772 /// \return
773 /// An empty ModuleSP will be returned if no matching file
774 /// was found. If error_ptr was non-nullptr, an error message
775 /// will likely be provided.
776 lldb::ModuleSP GetOrCreateModule(const ModuleSpec &module_spec, bool notify,
777 Status *error_ptr = nullptr);
778
779 // Settings accessors
780
782
783 /// Returns a handle resolved to the mutex to serialize on before
784 /// touching the target through the SB API. The handle isn't locked yet;
785 /// lock()/try_lock() it (typically via std::lock_guard<TargetAPIMutex>/
786 /// std::unique_lock<TargetAPIMutex>) to actually acquire it.
788
790
791 void CleanupProcess();
792
793 /// Dump a description of this object to a Stream.
794 ///
795 /// Dump a description of the contents of this object to the
796 /// supplied stream \a s. The dumped content will be only what has
797 /// been loaded or parsed up to this point at which this function
798 /// is called, so this is a good way to see what has been parsed
799 /// in a target.
800 ///
801 /// \param[in] s
802 /// The stream to which to dump the object description.
803 void Dump(Stream *s, lldb::DescriptionLevel description_level);
804
805 // If listener_sp is null, the listener of the owning Debugger object will be
806 // used.
808 llvm::StringRef plugin_name,
809 const FileSpec *crash_file,
810 bool can_connect);
811
812 const lldb::ProcessSP &GetProcessSP() const;
813
814 bool IsValid() { return m_valid; }
815
816 void Destroy();
817
818 Status Launch(ProcessLaunchInfo &launch_info,
819 Stream *stream); // Optional stream to receive first stop info
820
821 Status Attach(ProcessAttachInfo &attach_info,
822 Stream *stream); // Optional stream to receive first stop info
823
824 /// Add or update a scripted frame provider descriptor for this target.
825 /// All new threads in this target will check if they match any descriptors
826 /// to create their frame providers.
827 ///
828 /// \param[in] descriptor
829 /// The descriptor to add or update.
830 ///
831 /// \return
832 /// The descriptor identifier if the registration succeeded, otherwise an
833 /// llvm::Error.
834 llvm::Expected<uint32_t> AddScriptedFrameProviderDescriptor(
835 const ScriptedFrameProviderDescriptor &descriptor);
836
837 /// Remove a scripted frame provider descriptor by id.
838 ///
839 /// \param[in] id
840 /// The id of the descriptor to remove.
841 ///
842 /// \return
843 /// True if a descriptor was removed, false if no descriptor with that
844 /// id existed.
846
847 /// Clear all scripted frame provider descriptors for this target.
849
850 /// Get all scripted frame provider descriptors for this target.
851 const llvm::MapVector<uint32_t, ScriptedFrameProviderDescriptor> &
853
854protected:
855 /// Invalidate all potentially cached frame providers for all threads
856 /// and trigger a stack changed event for all threads.
858
859public:
860 // This part handles the breakpoints.
861
862 BreakpointList &GetBreakpointList(bool internal = false);
863
864 const BreakpointList &GetBreakpointList(bool internal = false) const;
865
869
871
873
874 // Use this to create a file and line breakpoint to a given module or all
875 // module it is nullptr
876 lldb::BreakpointSP CreateBreakpoint(const FileSpecList *containingModules,
877 const FileSpec &file, uint32_t line_no,
878 uint32_t column, lldb::addr_t offset,
879 LazyBool check_inlines,
880 LazyBool skip_prologue, bool internal,
881 bool request_hardware,
882 LazyBool move_to_nearest_code);
883
884 // Use this to create breakpoint that matches regex against the source lines
885 // in files given in source_file_list: If function_names is non-empty, also
886 // filter by function after the matches are made.
888 const FileSpecList *containingModules,
889 const FileSpecList *source_file_list,
890 const std::unordered_set<std::string> &function_names,
891 RegularExpression source_regex, bool internal, bool request_hardware,
892 LazyBool move_to_nearest_code);
893
894 // Use this to create a breakpoint from a load address
895 lldb::BreakpointSP CreateBreakpoint(lldb::addr_t load_addr, bool internal,
896 bool request_hardware);
897
898 // Use this to create a breakpoint from a file address and a module file spec
900 bool internal,
901 const FileSpec &file_spec,
902 bool request_hardware);
903
904 // Use this to create Address breakpoints:
905 lldb::BreakpointSP CreateBreakpoint(const Address &addr, bool internal,
906 bool request_hardware);
907
908 // Use this to create a function breakpoint by regexp in
909 // containingModule/containingSourceFiles, or all modules if it is nullptr
910 // When "skip_prologue is set to eLazyBoolCalculate, we use the current
911 // target setting, else we use the values passed in
913 const FileSpecList *containingModules,
914 const FileSpecList *containingSourceFiles, RegularExpression func_regexp,
915 lldb::LanguageType requested_language, LazyBool skip_prologue,
916 bool internal, bool request_hardware);
917
918 // Use this to create a function breakpoint by name in containingModule, or
919 // all modules if it is nullptr When "skip_prologue is set to
920 // eLazyBoolCalculate, we use the current target setting, else we use the
921 // values passed in. func_name_type_mask is or'ed values from the
922 // FunctionNameType enum.
924 const FileSpecList *containingModules,
925 const FileSpecList *containingSourceFiles, const char *func_name,
926 lldb::FunctionNameType func_name_type_mask, lldb::LanguageType language,
927 lldb::addr_t offset, bool offset_is_insn_count, LazyBool skip_prologue,
928 bool internal, bool request_hardware);
929
931 CreateExceptionBreakpoint(enum lldb::LanguageType language, bool catch_bp,
932 bool throw_bp, bool internal,
933 Args *additional_args = nullptr,
934 Status *additional_args_error = nullptr);
935
937 const llvm::StringRef class_name, const FileSpecList *containingModules,
938 const FileSpecList *containingSourceFiles, bool internal,
939 bool request_hardware, StructuredData::ObjectSP extra_args_sp,
940 Status *creation_error = nullptr);
941
942 // This is the same as the func_name breakpoint except that you can specify a
943 // vector of names. This is cheaper than a regular expression breakpoint in
944 // the case where you just want to set a breakpoint on a set of names you
945 // already know. func_name_type_mask is or'ed values from the
946 // FunctionNameType enum.
948 const FileSpecList *containingModules,
949 const FileSpecList *containingSourceFiles, const char *func_names[],
950 size_t num_names, lldb::FunctionNameType func_name_type_mask,
951 lldb::LanguageType language, lldb::addr_t offset, LazyBool skip_prologue,
952 bool internal, bool request_hardware);
953
955 CreateBreakpoint(const FileSpecList *containingModules,
956 const FileSpecList *containingSourceFiles,
957 const std::vector<std::string> &func_names,
958 lldb::FunctionNameType func_name_type_mask,
959 lldb::LanguageType language, lldb::addr_t m_offset,
960 LazyBool skip_prologue, bool internal,
961 bool request_hardware);
962
963 // Use this to create a general breakpoint:
965 lldb::BreakpointResolverSP &resolver_sp,
966 bool internal, bool request_hardware,
967 bool resolve_indirect_symbols);
968
969 // Use this to create a watchpoint:
971 const CompilerType *type, uint32_t kind,
972 Status &error);
973
977
979
980 // Manages breakpoint names:
981 void AddNameToBreakpoint(BreakpointID &id, llvm::StringRef name,
982 Status &error);
983
984 void AddNameToBreakpoint(lldb::BreakpointSP &bp_sp, llvm::StringRef name,
985 Status &error);
986
988 llvm::StringRef name);
989
990 BreakpointName *FindBreakpointName(llvm::StringRef name, bool can_create,
991 Status &error);
992
993 void DeleteBreakpointName(llvm::StringRef name);
994
996 const BreakpointOptions &options,
997 const BreakpointName::Permissions &permissions);
999
1000 void AddBreakpointName(std::unique_ptr<BreakpointName> bp_name);
1001
1002 void GetBreakpointNames(std::vector<std::string> &names);
1003
1004 // This call removes ALL breakpoints regardless of permission.
1005 void RemoveAllBreakpoints(bool internal_also = false);
1006
1007 // This removes all the breakpoints, but obeys the ePermDelete on them.
1009
1010 void DisableAllBreakpoints(bool internal_also = false);
1011
1013
1014 void EnableAllBreakpoints(bool internal_also = false);
1015
1017
1019
1021
1023
1024 /// Resets the hit count of all breakpoints.
1026
1027 // This callout implements the "Resolver Override". When we have determined
1028 // the Resolver for a given breakpoint, we pass each of the registered
1029 // overrides the "natural" resolver, and then we will use whatever resolver
1030 // we get back from it if it is non-null.
1031 // We keep a list of overrides ordered by ID - and we search through the list
1032 // by ID order, and the first override that returns a non-null Resolver will
1033 // be the one we use. If no overrides return an override resolver, we'll use
1034 // the original one.
1035
1036 /// This is the abstract version of the override. Particular implementations,
1037 /// e.g. the scripted override resolver, instantiate actual versions of the
1038 /// class. The constructor takes the target this resolver is registered in, a
1039 /// description for the override and a mask of the resolver types this
1040 /// overrides, made of elements of the BreakpointResolverType enum.
1041 class BreakpointResolverOverride;
1043 std::unique_ptr<BreakpointResolverOverride>;
1044
1046 public:
1047 BreakpointResolverOverride(Target &target, const std::string &description,
1048 uint64_t type_mask)
1049 : m_target(target), m_desc(description), m_type_mask(type_mask) {}
1050
1052
1056 // Return whether constructing this resolver was successful.
1057 virtual llvm::Error Validate() = 0;
1058 const std::string &GetDescription() { return m_desc; }
1059 uint64_t GetTypeMask() { return m_type_mask; }
1060 std::string DescribeTypeMask();
1061
1062 protected:
1064 std::string m_desc;
1065 uint64_t m_type_mask = 0;
1066 };
1067
1068 /// Add a breakpoint override resolver. This version can't fail.
1072 m_breakpoint_overrides.emplace(m_override_id, std::move(override_up));
1073 m_override_id++;
1074 return id_used;
1075 }
1076
1077 /// Add a breakpoint override resolver. Return the ID or an error:
1078 llvm::Expected<lldb::user_id_t>
1079 AddBreakpointResolverOverride(llvm::StringRef class_name, uint64_t type_mask,
1080 StructuredData::DictionarySP args_data_sp,
1081 llvm::StringRef description);
1082
1084 size_t removed = m_breakpoint_overrides.erase(override_id);
1085 return removed == 1;
1086 }
1087
1089
1092
1093 /// Describe the breakpoint overrides. If ixds is empty, list all. Otherwise
1094 /// list the overrides whose ids match the ones given in idxs. The matched
1095 /// elements are removed from the list, so any elements remaining in idxs are
1096 /// indexes that are not breakpoint override indexes.
1098 std::vector<lldb::user_id_t> &idxs,
1099 uint32_t terminal_width, bool use_color);
1100
1101 // The flag 'end_to_end', default to true, signifies that the operation is
1102 // performed end to end, for both the debugger and the debuggee.
1103
1104 bool RemoveAllWatchpoints(bool end_to_end = true);
1105
1106 bool DisableAllWatchpoints(bool end_to_end = true);
1107
1108 bool EnableAllWatchpoints(bool end_to_end = true);
1109
1111
1113
1114 bool IgnoreAllWatchpoints(uint32_t ignore_count);
1115
1117
1119
1121
1122 bool IgnoreWatchpointByID(lldb::watch_id_t watch_id, uint32_t ignore_count);
1123
1125 const BreakpointIDList &bp_ids,
1126 bool append);
1127
1129 BreakpointIDList &new_bps);
1130
1132 std::vector<std::string> &names,
1133 BreakpointIDList &new_bps);
1134
1135 /// Get \a load_addr as a callable code load address for this target
1136 ///
1137 /// Take \a load_addr and potentially add any address bits that are
1138 /// needed to make the address callable. For ARM this can set bit
1139 /// zero (if it already isn't) if \a load_addr is a thumb function.
1140 /// If \a addr_class is set to AddressClass::eInvalid, then the address
1141 /// adjustment will always happen. If it is set to an address class
1142 /// that doesn't have code in it, LLDB_INVALID_ADDRESS will be
1143 /// returned.
1145 lldb::addr_t load_addr,
1146 AddressClass addr_class = AddressClass::eInvalid) const;
1147
1148 /// Get \a load_addr as an opcode for this target.
1149 ///
1150 /// Take \a load_addr and potentially strip any address bits that are
1151 /// needed to make the address point to an opcode. For ARM this can
1152 /// clear bit zero (if it already isn't) if \a load_addr is a
1153 /// thumb function and load_addr is in code.
1154 /// If \a addr_class is set to AddressClass::eInvalid, then the address
1155 /// adjustment will always happen. If it is set to an address class
1156 /// that doesn't have code in it, LLDB_INVALID_ADDRESS will be
1157 /// returned.
1160 AddressClass addr_class = AddressClass::eInvalid) const;
1161
1162 // Get load_addr as breakable load address for this target. Take a addr and
1163 // check if for any reason there is a better address than this to put a
1164 // breakpoint on. If there is then return that address. For MIPS, if
1165 // instruction at addr is a delay slot instruction then this method will find
1166 // the address of its previous instruction and return that address.
1168
1169 /// This call may preload module symbols, and may do so in parallel depending
1170 /// on the following target settings:
1171 /// - TargetProperties::GetPreloadSymbols()
1172 /// - TargetProperties::GetParallelModuleLoad()
1173 ///
1174 /// Warning: if preloading is active and this is called in parallel with
1175 /// Target::GetOrCreateModule, this may result in a ABBA deadlock situation.
1176 void ModulesDidLoad(ModuleList &module_list);
1177
1178 void ModulesDidUnload(ModuleList &module_list, bool delete_locations);
1179
1180 void SymbolsDidLoad(ModuleList &module_list);
1181
1182 void ClearModules(bool delete_locations);
1183
1184 /// Called as the last function in Process::DidExec().
1185 ///
1186 /// Process::DidExec() will clear a lot of state in the process,
1187 /// then try to reload a dynamic loader plugin to discover what
1188 /// binaries are currently available and then this function should
1189 /// be called to allow the target to do any cleanup after everything
1190 /// has been figured out. It can remove breakpoints that no longer
1191 /// make sense as the exec might have changed the target
1192 /// architecture, and unloaded some modules that might get deleted.
1193 void DidExec();
1194
1195 /// Gets the module for the main executable.
1196 ///
1197 /// Each process has a notion of a main executable that is the file
1198 /// that will be executed or attached to. Executable files can have
1199 /// dependent modules that are discovered from the object files, or
1200 /// discovered at runtime as things are dynamically loaded.
1201 ///
1202 /// \return
1203 /// The shared pointer to the executable module which can
1204 /// contains a nullptr Module object if no executable has been
1205 /// set.
1206 ///
1207 /// \see DynamicLoader
1208 /// \see ObjectFile::GetDependentModules (FileSpecList&)
1209 /// \see Process::SetExecutableModule(lldb::ModuleSP&)
1211
1213
1214 /// Set the main executable module.
1215 ///
1216 /// Each process has a notion of a main executable that is the file
1217 /// that will be executed or attached to. Executable files can have
1218 /// dependent modules that are discovered from the object files, or
1219 /// discovered at runtime as things are dynamically loaded.
1220 ///
1221 /// Setting the executable causes any of the current dependent
1222 /// image information to be cleared and replaced with the static
1223 /// dependent image information found by calling
1224 /// ObjectFile::GetDependentModules (FileSpecList&) on the main
1225 /// executable and any modules on which it depends. Calling
1226 /// Process::GetImages() will return the newly found images that
1227 /// were obtained from all of the object files.
1228 ///
1229 /// \param[in] module_sp
1230 /// A shared pointer reference to the module that will become
1231 /// the main executable for this process.
1232 ///
1233 /// \param[in] load_dependent_files
1234 /// If \b true then ask the object files to track down any
1235 /// known dependent files.
1236 ///
1237 /// \see ObjectFile::GetDependentModules (FileSpecList&)
1238 /// \see Process::GetImages()
1240 lldb::ModuleSP &module_sp,
1241 LoadDependentFiles load_dependent_files = eLoadDependentsDefault);
1242
1243 bool LoadScriptingResources(std::list<Status> &errors,
1244 bool continue_on_error = true) {
1245 return m_images.LoadScriptingResourcesInTarget(this, errors,
1246 continue_on_error);
1247 }
1248
1249 /// Get accessor for the images for this process.
1250 ///
1251 /// Each process has a notion of a main executable that is the file
1252 /// that will be executed or attached to. Executable files can have
1253 /// dependent modules that are discovered from the object files, or
1254 /// discovered at runtime as things are dynamically loaded. After
1255 /// a main executable has been set, the images will contain a list
1256 /// of all the files that the executable depends upon as far as the
1257 /// object files know. These images will usually contain valid file
1258 /// virtual addresses only. When the process is launched or attached
1259 /// to, the DynamicLoader plug-in will discover where these images
1260 /// were loaded in memory and will resolve the load virtual
1261 /// addresses is each image, and also in images that are loaded by
1262 /// code.
1263 ///
1264 /// \return
1265 /// A list of Module objects in a module list.
1266 const ModuleList &GetImages() const { return m_images; }
1267
1269
1270 /// Return whether this FileSpec corresponds to a module that should be
1271 /// considered for general searches.
1272 ///
1273 /// This API will be consulted by the SearchFilterForUnconstrainedSearches
1274 /// and any module that returns \b true will not be searched. Note the
1275 /// SearchFilterForUnconstrainedSearches is the search filter that
1276 /// gets used in the CreateBreakpoint calls when no modules is provided.
1277 ///
1278 /// The target call at present just consults the Platform's call of the
1279 /// same name.
1280 ///
1281 /// \param[in] module_spec
1282 /// Path to the module.
1283 ///
1284 /// \return \b true if the module should be excluded, \b false otherwise.
1285 bool ModuleIsExcludedForUnconstrainedSearches(const FileSpec &module_spec);
1286
1287 /// Return whether this module should be considered for general searches.
1288 ///
1289 /// This API will be consulted by the SearchFilterForUnconstrainedSearches
1290 /// and any module that returns \b true will not be searched. Note the
1291 /// SearchFilterForUnconstrainedSearches is the search filter that
1292 /// gets used in the CreateBreakpoint calls when no modules is provided.
1293 ///
1294 /// The target call at present just consults the Platform's call of the
1295 /// same name.
1296 ///
1297 /// FIXME: When we get time we should add a way for the user to set modules
1298 /// that they
1299 /// don't want searched, in addition to or instead of the platform ones.
1300 ///
1301 /// \param[in] module_sp
1302 /// A shared pointer reference to the module that checked.
1303 ///
1304 /// \return \b true if the module should be excluded, \b false otherwise.
1305 bool
1307
1308 const ArchSpec &GetArchitecture() const { return m_arch.GetSpec(); }
1309
1310 /// Returns the name of the target's ABI plugin.
1311 llvm::StringRef GetABIName() const;
1312
1313 /// Set the architecture for this target.
1314 ///
1315 /// If the current target has no Images read in, then this just sets the
1316 /// architecture, which will be used to select the architecture of the
1317 /// ExecutableModule when that is set. If the current target has an
1318 /// ExecutableModule, then calling SetArchitecture with a different
1319 /// architecture from the currently selected one will reset the
1320 /// ExecutableModule to that slice of the file backing the ExecutableModule.
1321 /// If the file backing the ExecutableModule does not contain a fork of this
1322 /// architecture, then this code will return false, and the architecture
1323 /// won't be changed. If the input arch_spec is the same as the already set
1324 /// architecture, this is a no-op.
1325 ///
1326 /// \param[in] arch_spec
1327 /// The new architecture.
1328 ///
1329 /// \param[in] set_platform
1330 /// If \b true, then the platform will be adjusted if the currently
1331 /// selected platform is not compatible with the architecture being set.
1332 /// If \b false, then just the architecture will be set even if the
1333 /// currently selected platform isn't compatible (in case it might be
1334 /// manually set following this function call).
1335 ///
1336 /// \param[in] merged
1337 /// If true, arch_spec is merged with the current
1338 /// architecture. Otherwise it's replaced.
1339 ///
1340 /// \return
1341 /// \b true if the architecture was successfully set, \b false otherwise.
1342 bool SetArchitecture(const ArchSpec &arch_spec, bool set_platform = false,
1343 bool merge = true);
1344
1345 bool MergeArchitecture(const ArchSpec &arch_spec);
1346
1347 Architecture *GetArchitecturePlugin() const { return m_arch.GetPlugin(); }
1348
1349 Debugger &GetDebugger() const { return m_debugger; }
1350
1351 size_t ReadMemoryFromFileCache(const Address &addr, void *dst, size_t dst_len,
1352 Status &error);
1353
1354 // Reading memory through the target allows us to skip going to the process
1355 // for reading memory if possible and it allows us to try and read from any
1356 // constant sections in our object files on disk. If you always want live
1357 // program memory, read straight from the process. If you possibly want to
1358 // read from const sections in object files, read from the target. This
1359 // version of ReadMemory will try and read memory from the process if the
1360 // process is alive. The order is:
1361 // 1 - if (force_live_memory == false) and the address falls in a read-only
1362 // section, then read from the file cache
1363 // 2 - if there is a process, then read from memory
1364 // 3 - if there is no process, then read from the file cache
1365 //
1366 // If did_read_live_memory is provided, will indicate if the read was from
1367 // live memory, or from file contents. A caller which needs to treat these two
1368 // sources differently should use this argument to disambiguate where the data
1369 // was read from.
1370 //
1371 // The method is virtual for mocking in the unit tests.
1372 virtual size_t ReadMemory(const Address &addr, void *dst, size_t dst_len,
1373 Status &error, bool force_live_memory = false,
1374 lldb::addr_t *load_addr_ptr = nullptr,
1375 bool *did_read_live_memory = nullptr);
1376
1377 size_t ReadCStringFromMemory(const Address &addr, std::string &out_str,
1378 Status &error, bool force_live_memory = false);
1379
1380 size_t ReadCStringFromMemory(const Address &addr, char *dst,
1381 size_t dst_max_len, Status &result_error,
1382 bool force_live_memory = false);
1383
1384 /// Read a null-terminated string from memory
1385 ///
1386 /// This function will read a cache page at a time until a null terminator
1387 /// is found. It will stop reading if an aligned null terminator of \a
1388 /// type_width bytes is not found before reading \a cstr_max_len bytes. The
1389 /// results are always guaranteed to be null-terminated, and that no more
1390 /// than (max_bytes - type_width) bytes will be read.
1391 ///
1392 /// \param[in] addr
1393 /// The address to start the memory read.
1394 ///
1395 /// \param[in] dst
1396 /// A character buffer containing at least max_bytes.
1397 ///
1398 /// \param[in] max_bytes
1399 /// The maximum number of bytes to read.
1400 ///
1401 /// \param[in] error
1402 /// The error status of the read operation.
1403 ///
1404 /// \param[in] type_width
1405 /// The size of the null terminator (1 to 4 bytes per
1406 /// character). Defaults to 1.
1407 ///
1408 /// \return
1409 /// The error status or the number of bytes prior to the null terminator.
1410 size_t ReadStringFromMemory(const Address &addr, char *dst, size_t max_bytes,
1411 Status &error, size_t type_width,
1412 bool force_live_memory = true);
1413
1414 size_t ReadScalarIntegerFromMemory(const Address &addr, uint32_t byte_size,
1415 bool is_signed, Scalar &scalar,
1416 Status &error,
1417 bool force_live_memory = false);
1418
1419 int64_t ReadSignedIntegerFromMemory(const Address &addr,
1420 size_t integer_byte_size,
1421 int64_t fail_value, Status &error,
1422 bool force_live_memory = false);
1423
1424 uint64_t ReadUnsignedIntegerFromMemory(const Address &addr,
1425 size_t integer_byte_size,
1426 uint64_t fail_value, Status &error,
1427 bool force_live_memory = false);
1428
1429 bool ReadPointerFromMemory(const Address &addr, Status &error,
1430 Address &pointer_addr,
1431 bool force_live_memory = false);
1432
1433 bool HasLoadedSections();
1434
1436
1437 void ClearSectionLoadList();
1438
1439 void DumpSectionLoadList(Stream &s);
1440
1441 static Target *GetTargetFromContexts(const ExecutionContext *exe_ctx_ptr,
1442 const SymbolContext *sc_ptr);
1443
1444 // lldb::ExecutionContextScope pure virtual functions
1446
1448
1450
1452
1453 void CalculateExecutionContext(ExecutionContext &exe_ctx) override;
1454
1456
1457 llvm::Expected<lldb::TypeSystemSP>
1459 bool create_on_demand = true);
1460
1461 std::vector<lldb::TypeSystemSP>
1462 GetScratchTypeSystems(bool create_on_demand = true);
1463
1466
1467 // Creates a UserExpression for the given language, the rest of the
1468 // parameters have the same meaning as for the UserExpression constructor.
1469 // Returns a new-ed object which the caller owns.
1470
1472 GetUserExpressionForLanguage(llvm::StringRef expr, llvm::StringRef prefix,
1473 SourceLanguage language,
1474 Expression::ResultType desired_type,
1475 const EvaluateExpressionOptions &options,
1476 ValueObject *ctx_obj, Status &error);
1477
1478 // Creates a FunctionCaller for the given language, the rest of the
1479 // parameters have the same meaning as for the FunctionCaller constructor.
1480 // Since a FunctionCaller can't be
1481 // IR Interpreted, it makes no sense to call this with an
1482 // ExecutionContextScope that lacks
1483 // a Process.
1484 // Returns a new-ed object which the caller owns.
1485
1487 const CompilerType &return_type,
1488 const Address &function_address,
1489 const ValueList &arg_value_list,
1490 const char *name, Status &error);
1491
1492 /// Creates and installs a UtilityFunction for the given language.
1493 llvm::Expected<std::unique_ptr<UtilityFunction>>
1494 CreateUtilityFunction(std::string expression, std::string name,
1495 lldb::LanguageType language, ExecutionContext &exe_ctx);
1496
1497 // Install any files through the platform that need be to installed prior to
1498 // launching or attaching.
1499 Status Install(ProcessLaunchInfo *launch_info);
1500
1501 bool ResolveFileAddress(lldb::addr_t load_addr, Address &so_addr);
1502
1503 bool ResolveLoadAddress(lldb::addr_t load_addr, Address &so_addr,
1504 uint32_t stop_id = SectionLoadHistory::eStopIDNow,
1505 bool allow_section_end = false);
1506
1507 bool SetSectionLoadAddress(const lldb::SectionSP &section,
1508 lldb::addr_t load_addr,
1509 bool warn_multiple = false);
1510
1511 size_t UnloadModuleSections(const lldb::ModuleSP &module_sp);
1512
1513 size_t UnloadModuleSections(const ModuleList &module_list);
1514
1515 bool SetSectionUnloaded(const lldb::SectionSP &section_sp);
1516
1517 bool SetSectionUnloaded(const lldb::SectionSP &section_sp,
1518 lldb::addr_t load_addr);
1519
1521
1523 lldb_private::TypeSummaryImpl &summary_provider);
1525
1526 /// Set the \a Trace object containing processor trace information of this
1527 /// target.
1528 ///
1529 /// \param[in] trace_sp
1530 /// The trace object.
1531 void SetTrace(const lldb::TraceSP &trace_sp);
1532
1533 /// Get the \a Trace object containing processor trace information of this
1534 /// target.
1535 ///
1536 /// \return
1537 /// The trace object. It might be undefined.
1539
1540 /// Create a \a Trace object for the current target using the using the
1541 /// default supported tracing technology for this process.
1542 ///
1543 /// \return
1544 /// The new \a Trace or an \a llvm::Error if a \a Trace already exists or
1545 /// the trace couldn't be created.
1546 llvm::Expected<lldb::TraceSP> CreateTrace();
1547
1548 /// If a \a Trace object is present, this returns it, otherwise a new Trace is
1549 /// created with \a Trace::CreateTrace.
1550 llvm::Expected<lldb::TraceSP> GetTraceOrCreate();
1551
1552 // Since expressions results can persist beyond the lifetime of a process,
1553 // and the const expression results are available after a process is gone, we
1554 // provide a way for expressions to be evaluated from the Target itself. If
1555 // an expression is going to be run, then it should have a frame filled in in
1556 // the execution context.
1558 llvm::StringRef expression, ExecutionContextScope *exe_scope,
1559 lldb::ValueObjectSP &result_valobj_sp,
1561 std::string *fixed_expression = nullptr, ValueObject *ctx_obj = nullptr);
1562
1564
1566
1567 /// This method will return the address of the starting function for
1568 /// this binary, e.g. main() or its equivalent. This can be used as
1569 /// an address of a function that is not called once a binary has
1570 /// started running - e.g. as a return address for inferior function
1571 /// calls that are unambiguous completion of the function call, not
1572 /// called during the course of the inferior function code running.
1573 ///
1574 /// If no entry point can be found, an invalid address is returned.
1575 ///
1576 /// \param [out] err
1577 /// This object will be set to failure if no entry address could
1578 /// be found, and may contain a helpful error message.
1579 //
1580 /// \return
1581 /// Returns the entry address for this program, or an error
1582 /// if none can be found.
1583 llvm::Expected<lldb_private::Address> GetEntryPointAddress();
1584
1585 CompilerType GetRegisterType(const RegisterInfo &reg_info);
1586
1587 /// Sends a breakpoint notification event.
1589 lldb::BreakpointEventType event_kind);
1590 /// Sends a breakpoint notification event.
1592 const lldb::EventDataSP &breakpoint_data_sp);
1593
1594 llvm::Expected<lldb::DisassemblerSP>
1595 ReadInstructions(const Address &start_addr, uint32_t count,
1596 const char *flavor_string = nullptr);
1597
1598 // Target Stop Hooks
1599 class StopHook : public UserID {
1600 public:
1601 StopHook(const StopHook &rhs);
1602 virtual ~StopHook() = default;
1603
1604 enum class StopHookKind : uint32_t {
1608 };
1615
1617
1618 // Set the specifier. The stop hook will own the specifier, and is
1619 // responsible for deleting it when we're done.
1620 void SetSpecifier(SymbolContextSpecifier *specifier);
1621
1623
1624 bool ExecutionContextPasses(const ExecutionContext &exe_ctx);
1625
1626 // Called on stop, this gets passed the ExecutionContext for each "stop
1627 // with a reason" thread. It should add to the stream whatever text it
1628 // wants to show the user, and return False to indicate it wants the target
1629 // not to stop.
1631 lldb::StreamSP output) = 0;
1632
1633 // Set the Thread Specifier. The stop hook will own the thread specifier,
1634 // and is responsible for deleting it when we're done.
1635 void SetThreadSpecifier(ThreadSpec *specifier);
1636
1638
1639 bool IsActive() { return m_active; }
1640
1641 void SetIsActive(bool is_active) { m_active = is_active; }
1642
1643 void SetAutoContinue(bool auto_continue) {
1644 m_auto_continue = auto_continue;
1645 }
1646
1647 bool GetAutoContinue() const { return m_auto_continue; }
1648
1649 void SetRunAtInitialStop(bool at_initial_stop) {
1650 m_at_initial_stop = at_initial_stop;
1651 }
1652
1654
1655 void SetSuppressOutput(bool suppress_output) {
1656 m_suppress_output = suppress_output;
1657 }
1658
1659 bool GetSuppressOutput() const { return m_suppress_output; }
1660
1661 void GetDescription(Stream &s, lldb::DescriptionLevel level) const;
1663 lldb::DescriptionLevel level) const = 0;
1664
1665 protected:
1668 std::unique_ptr<ThreadSpec> m_thread_spec_up;
1669 bool m_active = true;
1670 bool m_auto_continue = false;
1672 bool m_suppress_output = false;
1673
1674 StopHook(lldb::TargetSP target_sp, lldb::user_id_t uid);
1675 };
1676
1678 public:
1679 ~StopHookCommandLine() override = default;
1680
1682 void SetActionFromString(const std::string &strings);
1683 void SetActionFromStrings(const std::vector<std::string> &strings);
1684
1686 lldb::StreamSP output_sp) override;
1688 lldb::DescriptionLevel level) const override;
1689
1690 private:
1692 // Use CreateStopHook to make a new empty stop hook. Use SetActionFromString
1693 // to fill it with commands, and SetSpecifier to set the specifier shared
1694 // pointer (can be null, that will match anything.)
1696 : StopHook(target_sp, uid) {}
1697 friend class Target;
1698 };
1699
1701 public:
1702 ~StopHookScripted() override = default;
1704 lldb::StreamSP output) override;
1705
1706 Status SetScriptCallback(const ScriptedMetadata &scripted_metadata);
1707
1709 lldb::DescriptionLevel level) const override;
1710
1711 private:
1712 llvm::StringRef GetScriptClassName() const;
1713
1715
1716 /// Use CreateStopHook to make a new empty stop hook. Use SetScriptCallback
1717 /// to set the script to execute, and SetSpecifier to set the specifier
1718 /// shared pointer (can be null, that will match anything.)
1720 : StopHook(target_sp, uid) {}
1721 friend class Target;
1722 };
1723
1724 class StopHookCoded : public StopHook {
1725 public:
1726 ~StopHookCoded() override = default;
1727
1729 lldb::StreamSP output);
1730
1731 void SetCallback(llvm::StringRef name, HandleStopCallback *callback) {
1732 m_name = name;
1733 m_callback = callback;
1734 }
1735
1737 lldb::StreamSP output) override {
1738 return m_callback(exc_ctx, output);
1739 }
1740
1742 lldb::DescriptionLevel level) const override {
1743 s.Indent();
1744 s.Printf("%s (built-in)\n", m_name.c_str());
1745 }
1746
1747 private:
1748 std::string m_name;
1750
1751 /// Use CreateStopHook to make a new empty stop hook. Use SetCallback to set
1752 /// the callback to execute, and SetSpecifier to set the specifier shared
1753 /// pointer (can be null, that will match anything.)
1755 : StopHook(target_sp, uid) {}
1756 friend class Target;
1757 };
1758
1760
1761 typedef std::shared_ptr<StopHook> StopHookSP;
1762
1763 // Target Hooks
1764 //
1765 // Hooks fire on target lifecycle events. There are two flows:
1766 //
1767 // Command-based hooks: the user specifies which triggers the hook responds
1768 // to (--on-load, --on-unload, --on-stop) and provides a list of commands.
1769 // All commands run for every trigger the hook is signed up for.
1770 //
1771 // Python class hooks: the user provides a Python class name and optional
1772 // extra_args that will be passed to the hook init method (-k key -v value).
1773 // The class controls which events it handles by implementing the
1774 // corresponding callback methods (handle_module_loaded,
1775 // handle_module_unloaded, handle_stop). Triggers are set automatically
1776 // based on which methods exist.
1777 class Hook : public UserID {
1778 public:
1779 Hook(const Hook &rhs);
1780 virtual ~Hook() = default;
1781
1782 enum class HookKind : uint32_t { CommandBased = 0, ScriptBased };
1783
1784 HookKind GetHookKind() const { return m_kind; }
1785
1786 /// Individual trigger bits. Combine with bitwise OR to form a trigger mask.
1787 // FIXME: Add kProcessExit, kProcessDetach, etc. as needed.
1788 enum TriggerBit : uint32_t {
1789 kModulesLoaded = (1u << 0),
1790 kModulesUnloaded = (1u << 1),
1791 kProcessStop = (1u << 2),
1792 };
1793
1795
1796 bool IsEnabled() { return m_enabled; }
1797 void SetIsEnabled(bool enabled) { m_enabled = enabled; }
1798
1799 /// Return the bitmask of triggers this hook responds to.
1800 /// Each bit corresponds to a TriggerBit value.
1801 uint32_t GetTriggerMask() const { return m_trigger_mask; }
1802
1803 /// Return true if this hook fires on the given trigger.
1804 bool FiresOn(uint32_t trigger) const { return m_trigger_mask & trigger; }
1805
1806 // Filter fields
1807
1808 /// Set the symbol context specifier. The hook takes ownership.
1809 void SetSCSpecifier(SymbolContextSpecifier *specifier);
1811
1812 /// Check if the execution context passes the specifier and thread spec
1813 /// filters. Always returns true if no filters are set.
1814 bool ExecutionContextPasses(const ExecutionContext &exe_ctx);
1815
1816 /// Set the thread specifier. The hook takes ownership.
1817 void SetThreadSpecifier(ThreadSpec *specifier);
1819
1820 void SetRunAtInitialStop(bool at_initial_stop) {
1821 m_at_initial_stop = at_initial_stop;
1822 }
1824
1825 // Reaction settings
1826
1827 void SetAutoContinue(bool auto_continue) {
1828 m_auto_continue = auto_continue;
1829 }
1830 bool GetAutoContinue() const { return m_auto_continue; }
1831
1832 void SetSuppressOutput(bool suppress_output) {
1833 m_suppress_output = suppress_output;
1834 }
1835 bool GetSuppressOutput() const { return m_suppress_output; }
1836
1837 // Event handler methods (default no-ops)
1838
1839 virtual void HandleModuleLoaded(lldb::StreamSP output) {}
1840 virtual void HandleModuleUnloaded(lldb::StreamSP output) {}
1841
1842 /// Called when the process stops. Returns a StopHookResult indicating
1843 /// whether the process should remain stopped or continue.
1848
1849 virtual void GetDescription(Stream &s, lldb::DescriptionLevel level) const;
1850
1851 protected:
1852 /// Print the filter portion of the description (AutoContinue, Specifier,
1853 /// ThreadSpec). Called by subclass GetDescription after printing the
1854 /// hook-specific content (commands or class).
1858 bool m_enabled = true;
1859 uint32_t m_trigger_mask = 0; // No default, triggers must be explicit.
1860
1861 // Filters
1863 std::unique_ptr<ThreadSpec> m_thread_spec_up;
1865
1866 // Reaction settings
1867 bool m_auto_continue = false;
1868 bool m_suppress_output = false;
1869
1870 Hook(lldb::TargetSP target_sp, lldb::user_id_t uid, HookKind kind);
1871 };
1872
1873 class HookCommandLine : public Hook {
1874 public:
1875 ~HookCommandLine() override = default;
1876
1877 /// Replace the trigger mask. \a mask is a bitwise OR of TriggerBit values.
1878 void SetTriggerMask(uint32_t mask) { m_trigger_mask = mask; }
1879
1880 /// Add a trigger to the mask. \a trigger is a single TriggerBit value.
1881 void AddTrigger(uint32_t trigger) { m_trigger_mask |= trigger; }
1882
1883 /// Remove a trigger from the mask. \a trigger is a single TriggerBit value.
1884 void RemoveTrigger(uint32_t trigger) { m_trigger_mask &= ~trigger; }
1885
1886 /// Return the list of commands that this hook runs.
1888
1889 /// Populate the command list by splitting a single string on newlines.
1890 void SetActionFromString(const std::string &string);
1891
1892 /// Populate the command list from a vector of individual command strings.
1893 void SetActionFromStrings(const std::vector<std::string> &strings);
1894
1895 void GetDescription(Stream &s, lldb::DescriptionLevel level) const override;
1896 void HandleModuleLoaded(lldb::StreamSP output) override;
1897 void HandleModuleUnloaded(lldb::StreamSP output) override;
1899 lldb::StreamSP output) override;
1900
1901 private:
1903
1905 : Hook(target_sp, uid, HookKind::CommandBased) {}
1906 friend class Target;
1907 };
1908
1909 class HookScripted : public Hook {
1910 public:
1911 ~HookScripted() override = default;
1912
1913 void GetDescription(Stream &s, lldb::DescriptionLevel level) const override;
1914
1915 void HandleModuleLoaded(lldb::StreamSP output) override;
1916 void HandleModuleUnloaded(lldb::StreamSP output) override;
1918 lldb::StreamSP output) override;
1919
1920 Status SetScriptCallback(const ScriptedMetadata &scripted_metadata);
1921
1922 private:
1923 llvm::StringRef GetScriptClassName() const;
1924
1926
1928 : Hook(target_sp, uid, HookKind::ScriptBased) {}
1929 friend class Target;
1930 };
1931
1932 typedef std::shared_ptr<Hook> HookSP;
1933
1935
1936 /// Removes the most recently created hook. Used to roll back a
1937 /// hook creation when an error occurs (e.g., invalid script class name
1938 /// or empty interactive input).
1940
1942
1943 void RemoveAllHooks();
1944
1946
1947 bool SetHookEnabledStateByID(lldb::user_id_t uid, bool enabled);
1948
1949 void SetAllHooksEnabledState(bool enabled);
1950
1951 size_t GetNumHooks() const { return m_hooks.size(); }
1952
1953 HookSP GetHookAtIndex(size_t index);
1954
1955 void RunModuleHooks(bool is_load);
1956
1957 /// Add an empty stop hook to the Target's stop hook list, and returns a
1958 /// shared pointer to the new hook.
1959 StopHookSP CreateStopHook(StopHook::StopHookKind kind, bool internal = false);
1960
1961 /// If you tried to create a stop hook, and that failed, call this to
1962 /// remove the stop hook, as it will also reset the stop hook counter.
1964
1965 // Runs the stop hooks that have been registered for this target.
1966 // Returns true if the stop hooks cause the target to resume.
1967 // Pass at_initial_stop if this is the stop where lldb gains
1968 // control over the process for the first time.
1969 bool RunStopHooks(bool at_initial_stop = false);
1970
1971 bool SetSuppresStopHooks(bool suppress) {
1972 bool old_value = m_suppress_stop_hooks;
1973 m_suppress_stop_hooks = suppress;
1974 return old_value;
1975 }
1976
1978
1980
1981 void RemoveAllStopHooks();
1982
1983 StopHookSP GetStopHookByID(lldb::user_id_t uid);
1984
1985 bool SetStopHookActiveStateByID(lldb::user_id_t uid, bool active_state);
1986
1987 void SetAllStopHooksActiveState(bool active_state);
1988
1989 const std::vector<StopHookSP> GetStopHooks(bool internal = false) const;
1990
1992
1993 void SetPlatform(const lldb::PlatformSP &platform_sp) {
1994 m_platform_sp = platform_sp;
1995 }
1996
1998
1999 // Methods.
2001 GetSearchFilterForModule(const FileSpec *containingModule);
2002
2004 GetSearchFilterForModuleList(const FileSpecList *containingModuleList);
2005
2007 GetSearchFilterForModuleAndCUList(const FileSpecList *containingModules,
2008 const FileSpecList *containingSourceFiles);
2009
2011 const char *repl_options, bool can_create);
2012
2013 void SetREPL(lldb::LanguageType language, lldb::REPLSP repl_sp);
2014
2018
2020
2021 /// Get the list of paths that LLDB will consider automatically loading
2022 /// scripting resources from. Currently whether to load scripts
2023 /// unconditionally is controlled via the
2024 /// `target.load-script-from-symbol-file` setting.
2026
2027 /// Add a signal for the target. This will get copied over to the process
2028 /// if the signal exists on that target. Only the values with Yes and No are
2029 /// set, Calculate values will be ignored.
2030protected:
2039 using DummySignalElement = llvm::StringMapEntry<DummySignalValues>;
2040 static bool UpdateSignalFromDummy(lldb::UnixSignalsSP signals_sp,
2041 const DummySignalElement &element);
2042 static bool ResetSignalFromDummy(lldb::UnixSignalsSP signals_sp,
2043 const DummySignalElement &element);
2044
2045public:
2046 /// Add a signal to the Target's list of stored signals/actions. These
2047 /// values will get copied into any processes launched from
2048 /// this target.
2049 void AddDummySignal(llvm::StringRef name, LazyBool pass, LazyBool print,
2050 LazyBool stop);
2051 /// Updates the signals in signals_sp using the stored dummy signals.
2052 /// If warning_stream_sp is not null, if any stored signals are not found in
2053 /// the current process, a warning will be emitted here.
2055 lldb::StreamSP warning_stream_sp);
2056 /// Clear the dummy signals in signal_names from the target, or all signals
2057 /// if signal_names is empty. Also remove the behaviors they set from the
2058 /// process's signals if it exists.
2059 void ClearDummySignals(Args &signal_names);
2060 /// Print all the signals set in this target.
2061 void PrintDummySignals(Stream &strm, Args &signals);
2062
2063protected:
2064 /// The mutex the calling thread must serialize on for its current policy, or
2065 /// nullptr when that policy bypasses the API mutex entirely.
2066 std::recursive_mutex *GetAPIMutexForCurrentPolicy();
2067
2068 /// Implementing of ModuleList::Notifier.
2069
2070 void NotifyModuleAdded(const ModuleList &module_list,
2071 const lldb::ModuleSP &module_sp) override;
2072
2073 void NotifyModuleRemoved(const ModuleList &module_list,
2074 const lldb::ModuleSP &module_sp) override;
2075
2076 void NotifyModuleUpdated(const ModuleList &module_list,
2077 const lldb::ModuleSP &old_module_sp,
2078 const lldb::ModuleSP &new_module_sp) override;
2079
2080 void NotifyWillClearList(const ModuleList &module_list) override;
2081
2082 void NotifyModulesRemoved(lldb_private::ModuleList &module_list) override;
2083
2084 class Arch {
2085 public:
2086 explicit Arch(const ArchSpec &spec);
2087 const Arch &operator=(const ArchSpec &spec);
2088
2089 const ArchSpec &GetSpec() const { return m_spec; }
2090 Architecture *GetPlugin() const { return m_plugin_up.get(); }
2091
2092 private:
2094 std::unique_ptr<Architecture> m_plugin_up;
2095 };
2096
2097 // Member variables.
2099 lldb::PlatformSP m_platform_sp; ///< The platform for this target.
2100 std::recursive_mutex m_mutex; ///< An API mutex that is used by the lldb::SB*
2101 /// classes make the SB interface thread safe
2102 /// When the private state thread calls SB API's - usually because it is
2103 /// running OS plugin or Python ThreadPlan code - it should not block on the
2104 /// API mutex that is held by the code that kicked off the sequence of events
2105 /// that led us to run the code. We hand out this mutex instead when we
2106 /// detect that code is running on the private state thread.
2107 std::recursive_mutex m_private_mutex;
2109 std::string m_label;
2110 ModuleList m_images; ///< The list of images for this process (shared
2111 /// libraries and anything dynamically loaded).
2116 using BreakpointNameMap = llvm::StringMap<std::unique_ptr<BreakpointName>>;
2118
2119 std::map<lldb::user_id_t, BreakpointResolverOverrideUP>
2121 /// This is the ID that will be handed out for the next added breakpoint
2122 /// override resolver for this target.
2124
2128 // We want to tightly control the process destruction process so we can
2129 // correctly tear down everything that we need to, so the only class that
2130 // knows about the process lifespan is this target class.
2135
2136 /// Map of scripted frame provider descriptors for this target.
2137 /// Keys are the provider descriptor IDs, values are the descriptors.
2138 /// Insertion order is preserved so that equal-priority providers chain
2139 /// in registration order.
2140 llvm::MapVector<uint32_t, ScriptedFrameProviderDescriptor>
2142 mutable std::recursive_mutex m_frame_provider_descriptors_mutex;
2144
2145 typedef std::map<lldb::LanguageType, lldb::REPLSP> REPLMap;
2147
2149
2150 typedef std::map<lldb::user_id_t, StopHookSP> StopHookCollection;
2153 std::vector<StopHookSP> m_internal_stop_hooks;
2154 uint32_t m_latest_stop_hook_id; /// This records the last natural stop at
2155 /// which we ran a stop-hook.
2157 bool m_suppress_stop_hooks; /// Used to not run stop hooks for expressions
2159
2160 typedef std::map<lldb::user_id_t, HookSP> HookCollection;
2165 LLDB_INVALID_GLOBALLY_UNIQUE_TARGET_ID; ///< The globally unique ID
2166 /// assigned to this target
2167 std::string m_target_session_name; ///< The target session name for this
2168 /// target, used to name debugging
2169 /// sessions in DAP.
2170 /// An optional \a lldb_private::Trace object containing processor trace
2171 /// information of this target.
2173 /// Stores the frame recognizers of this target.
2175 /// These are used to set the signal state when you don't have a process and
2176 /// more usefully in the Dummy target where you can't know exactly what
2177 /// signals you will have.
2178 llvm::StringMap<DummySignalValues> m_dummy_signals;
2179
2181
2182 static void ImageSearchPathsChanged(const PathMappingList &path_list,
2183 void *baton);
2184
2185 // Utilities for `statistics` command.
2186private:
2187 // Target metrics storage.
2189
2190public:
2191 /// Get metrics associated with this target in JSON format.
2192 ///
2193 /// Target metrics help measure timings and information that is contained in
2194 /// a target. These are designed to help measure performance of a debug
2195 /// session as well as represent the current state of the target, like
2196 /// information on the currently modules, currently set breakpoints and more.
2197 ///
2198 /// \return
2199 /// Returns a JSON value that contains all target metrics.
2200 llvm::json::Value
2202
2203 void ResetStatistics();
2204
2206
2207protected:
2208 /// Construct with optional file and arch.
2209 ///
2210 /// This member is private. Clients must use
2211 /// TargetList::CreateTarget(const FileSpec*, const ArchSpec*)
2212 /// so all targets can be tracked from the central target list.
2213 ///
2214 /// \see TargetList::CreateTarget(const FileSpec*, const ArchSpec*)
2215 Target(Debugger &debugger, const ArchSpec &target_arch,
2216 const lldb::PlatformSP &platform_sp, bool is_dummy_target);
2217
2218 // Helper function.
2219 bool ProcessIsValid();
2220
2221 // Copy breakpoints, stop hooks and so forth from the dummy target:
2222 void PrimeFromDummyTarget(Target &target);
2223
2224 void AddBreakpoint(lldb::BreakpointSP breakpoint_sp, bool internal);
2225
2227
2228 /// Return a recommended size for memory reads at \a addr, optimizing for
2229 /// cache usage.
2231
2232 Target(const Target &) = delete;
2233 const Target &operator=(const Target &) = delete;
2234
2236 return m_section_load_history.GetCurrentSectionLoadList();
2237 }
2238};
2239
2240} // namespace lldb_private
2241
2242#endif // LLDB_TARGET_TARGET_H
static llvm::raw_ostream & error(Stream &strm)
A section + offset based address class.
Definition Address.h:62
An architecture specification class.
Definition ArchSpec.h:32
A command line argument class.
Definition Args.h:33
General Outline: Allows adding and removing breakpoints and find by ID and index.
"lldb/Breakpoint/BreakpointOptions.h" Class that manages the options on a breakpoint or breakpoint lo...
General Outline: A breakpoint has four main parts, a filter, a resolver, the list of breakpoint locat...
Definition Breakpoint.h:83
Broadcaster(lldb::BroadcasterManagerSP manager_sp, std::string name)
Construct with a broadcaster with a name.
Generic representation of a type in a programming language.
A uniqued constant string class.
Definition ConstString.h:40
A class to manage flag bits.
Definition Debugger.h:100
void SetPreferredSymbolContexts(SymbolContextList contexts)
Definition Target.h:374
void SetOneThreadTimeout(const Timeout< std::micro > &timeout)
Definition Target.h:433
void SetUnwindOnError(bool unwind=false)
Definition Target.h:406
SourceLanguage GetLanguage() const
Definition Target.h:368
const char * GetPoundLineFilePath() const
Definition Target.h:496
lldb::DynamicValueType m_use_dynamic
Definition Target.h:572
void SetExecutionPolicy(ExecutionPolicy policy=eExecutionPolicyAlways)
Definition Target.h:364
Timeout< std::micro > m_one_thread_timeout
Definition Target.h:574
bool InvokeCancelCallback(lldb::ExpressionEvaluationPhase phase) const
Definition Target.h:478
lldb::DynamicValueType GetUseDynamic() const
Definition Target.h:418
void SetKeepInMemory(bool keep=true)
Definition Target.h:416
bool m_try_DIL_first
If enabled, Data Inspection Language (DIL) should attempt to evaluate the expression first.
Definition Target.h:570
void SetCoerceToId(bool coerce=true)
Definition Target.h:402
void SetLanguage(lldb::LanguageType language_type)
Definition Target.h:370
ExecutionPolicy GetExecutionPolicy() const
Definition Target.h:362
Timeout< std::micro > m_timeout
Definition Target.h:573
void SetCppIgnoreContextQualifiers(bool value)
Definition Target.cpp:6218
const StructuredData::Dictionary & GetLanguageOptions() const
Definition Target.cpp:6196
llvm::Expected< bool > GetBooleanLanguageOption(llvm::StringRef option_name) const
Get the language-plugin specific boolean option called option_name.
Definition Target.cpp:6180
void SetPrefix(const char *prefix)
Definition Target.h:395
void SetTryAllThreads(bool try_others=true)
Definition Target.h:439
static constexpr std::chrono::milliseconds default_timeout
Definition Target.h:354
void SetPoundLine(const char *path, uint32_t line) const
Definition Target.h:486
void SetRetriesWithFixIts(uint64_t number_of_retries)
Definition Target.h:512
SymbolContextList m_preferred_lookup_contexts
During expression evaluation, any SymbolContext in this list will be used for symbol/function lookup ...
Definition Target.h:590
void SetTimeout(const Timeout< std::micro > &timeout)
Definition Target.h:427
static constexpr ExecutionPolicy default_execution_policy
Definition Target.h:359
void SetStopOthers(bool stop_others=true)
Definition Target.h:443
bool m_running_utility_expression
True if the executed code should be treated as utility code that is only used by LLDB internally.
Definition Target.h:566
llvm::Error SetBooleanLanguageOption(llvm::StringRef option_name, bool value)
Set language-plugin specific option called option_name to the specified boolean value.
Definition Target.cpp:6163
StructuredData::DictionarySP m_language_options_sp
Dictionary mapping names of language-plugin specific options to values.
Definition Target.h:585
void SetCancelCallback(lldb::ExpressionCancelCallback callback, void *baton)
Definition Target.h:473
const Timeout< std::micro > & GetTimeout() const
Definition Target.h:425
const SymbolContextList & GetPreferredSymbolContexts() const
Definition Target.h:378
void SetIgnoreBreakpoints(bool ignore=false)
Definition Target.h:410
void SetLanguage(uint16_t name, uint32_t version)
Set the language using a pair of language code and version as defined by the DWARF 6 specification.
Definition Target.h:385
void SetUseDynamic(lldb::DynamicValueType dynamic=lldb::eDynamicCanRunTarget)
Definition Target.h:421
lldb::ExpressionCancelCallback m_cancel_callback
Definition Target.h:575
const Timeout< std::micro > & GetOneThreadTimeout() const
Definition Target.h:429
"lldb/Target/ExecutionContextScope.h" Inherit from this if your object can reconstruct its execution ...
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
A file collection class.
A file utility class.
Definition FileSpec.h:56
Encapsulates a function that can be called.
A collection class for Module objects.
Definition ModuleList.h:125
A class that describes an executable image and its associated object and symbol files.
Definition Module.h:91
Class that provides a registry of known stack frame recognizers.
An error handling class.
Definition Status.h:118
A stream class that can stream formatted output to a file.
Definition Stream.h:28
size_t Indent(llvm::StringRef s="")
Indent the current line in the stream.
Definition Stream.cpp:157
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
Definition Stream.cpp:134
std::shared_ptr< Dictionary > DictionarySP
std::shared_ptr< Object > ObjectSP
A class that wraps a std::map of SummaryStatistics objects behind a mutex.
Definition Statistics.h:281
Defines a list of symbol context objects.
Defines a symbol context baton that can be handed other debug core functions.
A Lockable handle over a Target's API mutex, returned by Target::GetAPIMutex() and backing the public...
bool GetUseDILForCreatingValues() const
Definition Target.cpp:5264
uint32_t GetMaximumSizeOfStringSummary() const
Definition Target.cpp:5691
FileSpecList GetDebugFileSearchPaths()
Definition Target.cpp:5566
llvm::StringRef GetLaunchWorkingDirectory() const
Definition Target.cpp:5372
bool GetDisplayRecognizedArguments() const
Definition Target.cpp:5855
ImportStdModule GetImportStdModule() const
Definition Target.cpp:5582
void AppendExecutableSearchPaths(const FileSpec &)
Definition Target.cpp:5553
bool GetEnableSyntheticValue() const
Definition Target.cpp:5658
void SetStandardInputPath(const char *path)=delete
ProcessLaunchInfo m_launch_info
Definition Target.h:337
bool GetCheckValueObjectOwnership() const
Definition Target.cpp:5983
uint64_t GetExprAllocAlign() const
Definition Target.cpp:5770
MemoryModuleLoadLevel GetMemoryModuleLoadLevel() const
Definition Target.cpp:5827
llvm::StringRef GetArg0() const
Definition Target.cpp:5425
uint32_t GetMaximumMemReadSize() const
Definition Target.cpp:5697
void SetRunArguments(const Args &args)
Definition Target.cpp:5442
FileSpec GetStandardErrorPath() const
Definition Target.cpp:5723
void SetLoadScriptFromSymbolFile(LoadScriptFromSymFile load_style)
Set the target-wide target.load-script-from-symbol-file setting.
Definition Target.cpp:5807
bool GetEnableNotifyAboutFixIts() const
Definition Target.cpp:5608
bool SetPreferDynamicValue(lldb::DynamicValueType d)
Definition Target.cpp:5309
void SetDisplayRecognizedArguments(bool b)
Definition Target.cpp:5861
void SetUseDILForCreatingValues(bool b)
Definition Target.cpp:5277
std::optional< bool > GetExperimentalPropertyValue(size_t prop_idx, ExecutionContext *exe_ctx=nullptr) const
Definition Target.cpp:5226
const ProcessLaunchInfo & GetProcessLaunchInfo() const
Definition Target.cpp:5866
Environment ComputeEnvironment() const
Definition Target.cpp:5448
void SetStandardOutputPath(const char *path)=delete
bool GetUserSpecifiedTrapHandlerNames(Args &args) const
Definition Target.cpp:5834
uint64_t GetExprErrorLimit() const
Definition Target.cpp:5752
bool GetEnableAutoImportClangModules() const
Definition Target.cpp:5576
bool GetDebugUtilityExpression() const
Definition Target.cpp:5972
JITEngine GetJITEngine() const
Definition Target.cpp:5619
DynamicClassInfoHelper GetDynamicClassInfoHelper() const
Definition Target.cpp:5589
FileSpec GetStandardOutputPath() const
Definition Target.cpp:5713
void SetDisplayRuntimeSupportValues(bool b)
Definition Target.cpp:5850
uint32_t GetMaximumNumberOfChildrenToDisplay() const
Definition Target.cpp:5676
void SetRequireHardwareBreakpoints(bool b)
Definition Target.cpp:5904
bool GetAutoInstallMainExecutable() const
Definition Target.cpp:5909
const char * GetDisassemblyFeatures() const
Definition Target.cpp:5404
void SetAutoLoadScriptsForModule(llvm::StringRef module_name, LoadScriptFromSymFile load_style)
Set the LoadScriptFromSymFile for a module called module_name (excluding file extension).
Definition Target.cpp:6009
RealpathPrefixes GetSourceRealpathPrefixes() const
Definition Target.cpp:5420
void SetCheckValueObjectOwnership(bool check)
Definition Target.cpp:5989
uint64_t GetNumberOfRetriesWithFixits() const
Definition Target.cpp:5602
uint64_t GetExprAllocSize() const
Definition Target.cpp:5764
std::optional< LoadScriptFromSymFile > GetAutoLoadScriptsForModule(llvm::StringRef module_name) const
Definition Target.cpp:5995
llvm::StringRef GetExpressionPrefixContents()
Definition Target.cpp:5738
PathMappingList & GetObjectPathMap() const
Definition Target.cpp:5539
const char * GetDisassemblyFlavor() const
Definition Target.cpp:5384
FileSpec GetStandardInputPath() const
Definition Target.cpp:5703
lldb::DynamicValueType GetPreferDynamicValue() const
Definition Target.cpp:5302
InlineStrategy GetInlineStrategy() const
Definition Target.cpp:5411
Environment GetTargetEnvironment() const
Definition Target.cpp:5508
bool GetDisplayRuntimeSupportValues() const
Definition Target.cpp:5844
void SetUserSpecifiedTrapHandlerNames(const Args &args)
Definition Target.cpp:5839
uint32_t GetMaxZeroPaddingInFloatFormat() const
Definition Target.cpp:5670
uint64_t GetExprAllocAddress() const
Definition Target.cpp:5758
LoadCWDlldbinitFile GetLoadCWDlldbinitFile() const
Definition Target.cpp:5813
Environment GetInheritedEnvironment() const
Definition Target.cpp:5480
void SetArg0(llvm::StringRef arg)
Definition Target.cpp:5431
bool GetInjectLocalVariables(ExecutionContext *exe_ctx) const
Definition Target.cpp:5237
void SetStandardErrorPath(const char *path)=delete
bool ShowHexVariableValuesWithLeadingZeroes() const
Definition Target.cpp:5664
SourceLanguage GetLanguage() const
Definition Target.cpp:5733
Environment GetEnvironment() const
Definition Target.cpp:5476
void SetProcessLaunchInfo(const ProcessLaunchInfo &launch_info)
Definition Target.cpp:5870
FileSpec GetSaveJITObjectsDir() const
Definition Target.cpp:5614
void SetEnvironment(Environment env)
Definition Target.cpp:5519
LoadScriptFromSymFile GetLoadScriptFromSymbolFile() const
Definition Target.cpp:5800
const char * GetDisassemblyCPU() const
Definition Target.cpp:5397
void SetStandardErrorPath(llvm::StringRef path)
Definition Target.cpp:5728
bool GetRunArguments(Args &args) const
Definition Target.cpp:5437
FileSpecList GetExecutableSearchPaths()
Definition Target.cpp:5561
ArchSpec GetDefaultArchitecture() const
Definition Target.cpp:5286
Disassembler::HexImmediateStyle GetHexImmediateStyle() const
Definition Target.cpp:5820
void SetUseDIL(ExecutionContext *exe_ctx, bool b)
Definition Target.cpp:5255
std::unique_ptr< TargetExperimentalProperties > m_experimental_properties_up
Definition Target.h:338
FileSpecList GetClangModuleSearchPaths()
Definition Target.cpp:5571
void SetStandardOutputPath(llvm::StringRef path)
Definition Target.cpp:5718
bool GetRequireHardwareBreakpoints() const
Definition Target.cpp:5898
PathMappingList & GetSourcePathMap() const
Definition Target.cpp:5531
bool GetAutoSourceMapRelative() const
Definition Target.cpp:5547
bool GetUseDIL(ExecutionContext *exe_ctx) const
Definition Target.cpp:5243
void SetDefaultArchitecture(const ArchSpec &arch)
Definition Target.cpp:5291
void SetStandardInputPath(llvm::StringRef path)
Definition Target.cpp:5708
TargetProperties(Target *target)
Definition Target.cpp:5150
bool GetDisplayExpressionsInCrashlogs() const
Definition Target.cpp:5794
bool GetEnableAutoApplyFixIts() const
Definition Target.cpp:5596
void SetDebugUtilityExpression(bool debug)
Definition Target.cpp:5978
std::pair< uint32_t, bool > GetMaximumDepthOfChildrenToDisplay() const
Get the max depth value, augmented with a bool to indicate whether the depth is the default.
Definition Target.cpp:5683
A class that represents statistics for a since lldb_private::Target.
Definition Statistics.h:309
std::unique_ptr< Architecture > m_plugin_up
Definition Target.h:2094
const ArchSpec & GetSpec() const
Definition Target.h:2089
const Arch & operator=(const ArchSpec &spec)
Definition Target.cpp:170
Arch(const ArchSpec &spec)
Definition Target.cpp:166
Architecture * GetPlugin() const
Definition Target.h:2090
virtual BreakpointResolverOverrideUP CopyIntoNewTarget(Target &target)=0
BreakpointResolverOverride(Target &target, const std::string &description, uint64_t type_mask)
Definition Target.h:1047
virtual lldb::BreakpointResolverSP CheckForOverride(Target &target, lldb::BreakpointResolverSP initial_sp)=0
void AddTrigger(uint32_t trigger)
Add a trigger to the mask. trigger is a single TriggerBit value.
Definition Target.h:1881
void RemoveTrigger(uint32_t trigger)
Remove a trigger from the mask. trigger is a single TriggerBit value.
Definition Target.h:1884
void GetDescription(Stream &s, lldb::DescriptionLevel level) const override
Definition Target.cpp:4554
HookCommandLine(lldb::TargetSP target_sp, lldb::user_id_t uid)
Definition Target.h:1904
void SetTriggerMask(uint32_t mask)
Replace the trigger mask. mask is a bitwise OR of TriggerBit values.
Definition Target.h:1878
void SetActionFromString(const std::string &string)
Populate the command list by splitting a single string on newlines.
Definition Target.cpp:4581
void SetActionFromStrings(const std::vector< std::string > &strings)
Populate the command list from a vector of individual command strings.
Definition Target.cpp:4585
void HandleModuleLoaded(lldb::StreamSP output) override
Definition Target.cpp:4591
StringList & GetCommands()
Return the list of commands that this hook runs.
Definition Target.h:1887
StopHook::StopHookResult HandleStop(ExecutionContext &exe_ctx, lldb::StreamSP output) override
Called when the process stops.
Definition Target.cpp:4631
void HandleModuleUnloaded(lldb::StreamSP output) override
Definition Target.cpp:4625
llvm::StringRef GetScriptClassName() const
Definition Target.cpp:4763
Status SetScriptCallback(const ScriptedMetadata &scripted_metadata)
Definition Target.cpp:4666
void HandleModuleLoaded(lldb::StreamSP output) override
Definition Target.cpp:4708
StopHook::StopHookResult HandleStop(ExecutionContext &exe_ctx, lldb::StreamSP output) override
Called when the process stops.
Definition Target.cpp:4741
HookScripted(lldb::TargetSP target_sp, lldb::user_id_t uid)
Definition Target.h:1927
void GetDescription(Stream &s, lldb::DescriptionLevel level) const override
Definition Target.cpp:4769
lldb::ScriptedHookInterfaceSP m_interface_sp
Definition Target.h:1925
void HandleModuleUnloaded(lldb::StreamSP output) override
Definition Target.cpp:4724
virtual ~Hook()=default
void SetSuppressOutput(bool suppress_output)
Definition Target.h:1832
bool GetRunAtInitialStop() const
Definition Target.h:1823
ThreadSpec * GetThreadSpecifier()
Definition Target.h:1818
TriggerBit
Individual trigger bits. Combine with bitwise OR to form a trigger mask.
Definition Target.h:1788
bool GetSuppressOutput() const
Definition Target.h:1835
void SetRunAtInitialStop(bool at_initial_stop)
Definition Target.h:1820
lldb::SymbolContextSpecifierSP m_sc_specifier_sp
Definition Target.h:1862
void SetIsEnabled(bool enabled)
Definition Target.h:1797
bool ExecutionContextPasses(const ExecutionContext &exe_ctx)
Check if the execution context passes the specifier and thread spec filters.
Definition Target.cpp:4477
HookKind GetHookKind() const
Definition Target.h:1784
Hook(const Hook &rhs)
Definition Target.cpp:4458
virtual StopHook::StopHookResult HandleStop(ExecutionContext &exe_ctx, lldb::StreamSP output)
Called when the process stops.
Definition Target.h:1844
void GetFilterDescription(Stream &s, lldb::DescriptionLevel level) const
Print the filter portion of the description (AutoContinue, Specifier, ThreadSpec).
Definition Target.cpp:4526
void SetAutoContinue(bool auto_continue)
Definition Target.h:1827
bool GetAutoContinue() const
Definition Target.h:1830
virtual void HandleModuleUnloaded(lldb::StreamSP output)
Definition Target.h:1840
uint32_t GetTriggerMask() const
Return the bitmask of triggers this hook responds to.
Definition Target.h:1801
lldb::TargetSP & GetTarget()
Definition Target.h:1794
SymbolContextSpecifier * GetSCSpecifier()
Definition Target.h:1810
lldb::TargetSP m_target_sp
Definition Target.h:1856
virtual void GetDescription(Stream &s, lldb::DescriptionLevel level) const
Definition Target.cpp:4493
void SetSCSpecifier(SymbolContextSpecifier *specifier)
Set the symbol context specifier. The hook takes ownership.
Definition Target.cpp:4469
void SetThreadSpecifier(ThreadSpec *specifier)
Set the thread specifier. The hook takes ownership.
Definition Target.cpp:4473
virtual void HandleModuleLoaded(lldb::StreamSP output)
Definition Target.h:1839
bool FiresOn(uint32_t trigger) const
Return true if this hook fires on the given trigger.
Definition Target.h:1804
std::unique_ptr< ThreadSpec > m_thread_spec_up
Definition Target.h:1863
void GetSubclassDescription(Stream &s, lldb::DescriptionLevel level) const override
Definition Target.h:1741
HandleStopCallback * m_callback
Definition Target.h:1749
StopHookResult HandleStop(ExecutionContext &exc_ctx, lldb::StreamSP output) override
Definition Target.h:1736
StopHookCoded(lldb::TargetSP target_sp, lldb::user_id_t uid)
Use CreateStopHook to make a new empty stop hook.
Definition Target.h:1754
void SetCallback(llvm::StringRef name, HandleStopCallback *callback)
Definition Target.h:1731
StopHookResult(ExecutionContext &exc_ctx, lldb::StreamSP output) HandleStopCallback
Definition Target.h:1728
void SetActionFromString(const std::string &strings)
Definition Target.cpp:4285
StopHookCommandLine(lldb::TargetSP target_sp, lldb::user_id_t uid)
Definition Target.h:1695
void SetActionFromStrings(const std::vector< std::string > &strings)
Definition Target.cpp:4289
StopHookResult HandleStop(ExecutionContext &exc_ctx, lldb::StreamSP output_sp) override
Definition Target.cpp:4296
void GetSubclassDescription(Stream &s, lldb::DescriptionLevel level) const override
Definition Target.cpp:4267
lldb::ScriptedHookInterfaceSP m_interface_sp
Definition Target.h:1714
StopHookResult HandleStop(ExecutionContext &exc_ctx, lldb::StreamSP output) override
Definition Target.cpp:4387
Status SetScriptCallback(const ScriptedMetadata &scripted_metadata)
Definition Target.cpp:4331
StopHookScripted(lldb::TargetSP target_sp, lldb::user_id_t uid)
Use CreateStopHook to make a new empty stop hook.
Definition Target.h:1719
void GetSubclassDescription(Stream &s, lldb::DescriptionLevel level) const override
Definition Target.cpp:4416
llvm::StringRef GetScriptClassName() const
Definition Target.cpp:4410
bool GetRunAtInitialStop() const
Definition Target.h:1653
SymbolContextSpecifier * GetSpecifier()
Definition Target.h:1622
void SetSpecifier(SymbolContextSpecifier *specifier)
Definition Target.cpp:4205
virtual StopHookResult HandleStop(ExecutionContext &exe_ctx, lldb::StreamSP output)=0
std::unique_ptr< ThreadSpec > m_thread_spec_up
Definition Target.h:1668
void SetIsActive(bool is_active)
Definition Target.h:1641
void SetSuppressOutput(bool suppress_output)
Definition Target.h:1655
void SetThreadSpecifier(ThreadSpec *specifier)
Definition Target.cpp:4209
ThreadSpec * GetThreadSpecifier()
Definition Target.h:1637
StopHook(const StopHook &rhs)
Definition Target.cpp:4197
bool ExecutionContextPasses(const ExecutionContext &exe_ctx)
Definition Target.cpp:4213
lldb::TargetSP & GetTarget()
Definition Target.h:1616
void SetRunAtInitialStop(bool at_initial_stop)
Definition Target.h:1649
lldb::SymbolContextSpecifierSP m_specifier_sp
Definition Target.h:1667
virtual void GetSubclassDescription(Stream &s, lldb::DescriptionLevel level) const =0
void GetDescription(Stream &s, lldb::DescriptionLevel level) const
Definition Target.cpp:4229
void SetAutoContinue(bool auto_continue)
Definition Target.h:1643
const ModuleList & GetModuleList() const
Definition Target.h:665
void Dump(Stream *s) const override
Definition Target.cpp:6041
static llvm::StringRef GetFlavorString()
Definition Target.cpp:6037
static lldb::TargetSP GetCreatedTargetFromEvent(const Event *event_ptr)
Definition Target.cpp:6070
static ModuleList GetModuleListFromEvent(const Event *event_ptr)
Definition Target.cpp:6079
static const TargetEventData * GetEventDataFromEvent(const Event *event_ptr)
Definition Target.cpp:6051
llvm::StringRef GetFlavor() const override
Definition Target.h:643
const lldb::TargetSP & GetTarget() const
Definition Target.h:659
TargetEventData(const lldb::TargetSP &target_sp)
Definition Target.cpp:6023
TargetEventData(const TargetEventData &)=delete
const lldb::TargetSP & GetCreatedTarget() const
Definition Target.h:661
const TargetEventData & operator=(const TargetEventData &)=delete
static lldb::TargetSP GetTargetFromEvent(const Event *event_ptr)
Definition Target.cpp:6061
void ModulesDidLoad(ModuleList &module_list)
This call may preload module symbols, and may do so in parallel depending on the following target set...
Definition Target.cpp:1941
lldb::ThreadSP CalculateThread() override
Definition Target.cpp:2693
llvm::Expected< uint32_t > AddScriptedFrameProviderDescriptor(const ScriptedFrameProviderDescriptor &descriptor)
Add or update a scripted frame provider descriptor for this target.
Definition Target.cpp:3895
StopHookCollection m_stop_hooks
Definition Target.h:2151
Module * GetExecutableModulePointer()
Definition Target.cpp:1641
void Dump(Stream *s, lldb::DescriptionLevel description_level)
Dump a description of this object to a Stream.
Definition Target.cpp:259
void DisableAllBreakpoints(bool internal_also=false)
Definition Target.cpp:1173
bool RemoveHookByID(lldb::user_id_t uid)
Definition Target.cpp:4831
lldb::WatchpointSP CreateWatchpoint(lldb::addr_t addr, size_t size, const CompilerType *type, uint32_t kind, Status &error)
Definition Target.cpp:1055
void ApplyNameToBreakpoints(BreakpointName &bp_name)
Definition Target.cpp:932
lldb::user_id_t m_hook_next_id
Definition Target.h:2162
std::recursive_mutex * GetAPIMutexForCurrentPolicy()
The mutex the calling thread must serialize on for its current policy, or nullptr when that policy by...
Definition Target.cpp:6091
lldb::TraceSP GetTrace()
Get the Trace object containing processor trace information of this target.
Definition Target.cpp:3770
PathMappingList & GetImageSearchPathList()
Definition Target.cpp:2702
void FinalizeFileActions(ProcessLaunchInfo &info)
Definition Target.cpp:3977
lldb::addr_t GetCallableLoadAddress(lldb::addr_t load_addr, AddressClass addr_class=AddressClass::eInvalid) const
Get load_addr as a callable code load address for this target.
Definition Target.cpp:3102
lldb::addr_t GetOpcodeLoadAddress(lldb::addr_t load_addr, AddressClass addr_class=AddressClass::eInvalid) const
Get load_addr as an opcode for this target.
Definition Target.cpp:3110
ModuleList & GetImages()
Definition Target.h:1268
lldb::BreakpointSP CreateScriptedBreakpoint(const llvm::StringRef class_name, const FileSpecList *containingModules, const FileSpecList *containingSourceFiles, bool internal, bool request_hardware, StructuredData::ObjectSP extra_args_sp, Status *creation_error=nullptr)
Definition Target.cpp:777
static Target * GetTargetFromContexts(const ExecutionContext *exe_ctx_ptr, const SymbolContext *sc_ptr)
Definition Target.cpp:2937
lldb::addr_t GetBreakableLoadAddress(lldb::addr_t addr)
Definition Target.cpp:3117
llvm::StringMap< std::unique_ptr< BreakpointName > > BreakpointNameMap
Definition Target.h:2116
void ClearDummySignals(Args &signal_names)
Clear the dummy signals in signal_names from the target, or all signals if signal_names is empty.
Definition Target.cpp:4137
bool SetSuppresStopHooks(bool suppress)
Definition Target.h:1971
static void ImageSearchPathsChanged(const PathMappingList &path_list, void *baton)
Definition Target.cpp:2706
llvm::Expected< lldb_private::Address > GetEntryPointAddress()
This method will return the address of the starting function for this binary, e.g.
Definition Target.cpp:3068
bool IgnoreWatchpointByID(lldb::watch_id_t watch_id, uint32_t ignore_count)
Definition Target.cpp:1609
lldb::BreakpointSP CreateFuncRegexBreakpoint(const FileSpecList *containingModules, const FileSpecList *containingSourceFiles, RegularExpression func_regexp, lldb::LanguageType requested_language, LazyBool skip_prologue, bool internal, bool request_hardware)
Definition Target.cpp:743
size_t GetNumHooks() const
Definition Target.h:1951
lldb::BreakpointSP GetBreakpointByID(lldb::break_id_t break_id)
Definition Target.cpp:438
std::shared_ptr< StopHook > StopHookSP
Definition Target.h:1761
llvm::StringRef GetBroadcasterClass() const override
This needs to be filled in if you are going to register the broadcaster with the broadcaster manager ...
Definition Target.h:619
void SymbolsDidLoad(ModuleList &module_list)
Definition Target.cpp:1969
bool ClearAllWatchpointHistoricValues()
Definition Target.cpp:1523
const std::vector< StopHookSP > GetStopHooks(bool internal=false) const
Definition Target.cpp:3233
void SetTrace(const lldb::TraceSP &trace_sp)
Set the Trace object containing processor trace information of this target.
Definition Target.cpp:3768
BreakpointList & GetBreakpointList(bool internal=false)
Definition Target.cpp:424
uint32_t m_next_frame_provider_id
Definition Target.h:2143
lldb_private::SummaryStatisticsCache & GetSummaryStatisticsCache()
Definition Target.cpp:3585
const llvm::MapVector< uint32_t, ScriptedFrameProviderDescriptor > & GetScriptedFrameProviderDescriptors() const
Get all scripted frame provider descriptors for this target.
Definition Target.cpp:3956
lldb::addr_t GetSectionLoadAddress(const lldb::SectionSP &section_sp)
Definition Target.cpp:6108
llvm::StringRef GetABIName() const
Returns the name of the target's ABI plugin.
Definition Target.cpp:413
SourceManager & GetSourceManager()
Definition Target.cpp:3157
lldb::SearchFilterSP GetSearchFilterForModuleList(const FileSpecList *containingModuleList)
Definition Target.cpp:706
StopHookSP GetStopHookByID(lldb::user_id_t uid)
Definition Target.cpp:3199
llvm::StringMap< DummySignalValues > m_dummy_signals
These are used to set the signal state when you don't have a process and more usefully in the Dummy t...
Definition Target.h:2178
lldb::user_id_t AddBreakpointResolverOverride(BreakpointResolverOverrideUP override_up)
Add a breakpoint override resolver. This version can't fail.
Definition Target.h:1070
lldb::ProcessSP m_process_sp
Definition Target.h:2131
Debugger & GetDebugger() const
Definition Target.h:1349
lldb::SearchFilterSP m_search_filter_sp
Definition Target.h:2132
PersistentExpressionState * GetPersistentExpressionStateForLanguage(lldb::LanguageType language)
Definition Target.cpp:2787
void UpdateSignalsFromDummy(lldb::UnixSignalsSP signals_sp, lldb::StreamSP warning_stream_sp)
Updates the signals in signals_sp using the stored dummy signals.
Definition Target.cpp:4125
bool m_is_dummy_target
Used to not run stop hooks for expressions.
Definition Target.h:2158
static bool UpdateSignalFromDummy(lldb::UnixSignalsSP signals_sp, const DummySignalElement &element)
Definition Target.cpp:4083
PathMappingList m_image_search_paths
Definition Target.h:2133
bool ModuleIsExcludedForUnconstrainedSearches(const FileSpec &module_spec)
Return whether this FileSpec corresponds to a module that should be considered for general searches.
Definition Target.cpp:2027
lldb::StackFrameSP CalculateStackFrame() override
Definition Target.cpp:2695
SectionLoadList & GetSectionLoadList()
Definition Target.h:2235
lldb::addr_t GetPersistentSymbol(ConstString name)
Definition Target.cpp:3048
TargetAPIMutex GetAPIMutex()
Returns a handle resolved to the mutex to serialize on before touching the target through the SB API.
Definition Target.cpp:6087
void PrimeFromDummyTarget(Target &target)
Definition Target.cpp:226
bool RemoveScriptedFrameProviderDescriptor(uint32_t id)
Remove a scripted frame provider descriptor by id.
Definition Target.cpp:3931
lldb::RegisterTypeBuilderSP m_register_type_builder_sp
Definition Target.h:2180
static void SettingsTerminate()
Definition Target.cpp:2899
bool EnableWatchpointByID(lldb::watch_id_t watch_id)
Definition Target.cpp:1574
void DeleteBreakpointName(llvm::StringRef name)
Definition Target.cpp:909
HookSP CreateHook(Hook::HookKind kind)
Definition Target.cpp:4809
bool ResolveFileAddress(lldb::addr_t load_addr, Address &so_addr)
Definition Target.cpp:3501
bool ClearAllWatchpointHitCounts()
Definition Target.cpp:1509
CompilerType GetRegisterType(const RegisterInfo &reg_info)
Definition Target.cpp:2742
size_t ReadMemoryFromFileCache(const Address &addr, void *dst, size_t dst_len, Status &error)
Definition Target.cpp:2059
void ClearAllLoadedSections()
Definition Target.cpp:3577
std::vector< lldb::TypeSystemSP > GetScratchTypeSystems(bool create_on_demand=true)
Definition Target.cpp:2750
size_t ReadScalarIntegerFromMemory(const Address &addr, uint32_t byte_size, bool is_signed, Scalar &scalar, Status &error, bool force_live_memory=false)
Definition Target.cpp:2367
void AddNameToBreakpoint(BreakpointID &id, llvm::StringRef name, Status &error)
Definition Target.cpp:854
void DumpSectionLoadList(Stream &s)
Definition Target.cpp:6114
void DeleteCurrentProcess()
Definition Target.cpp:295
BreakpointList m_internal_breakpoint_list
Definition Target.h:2115
int64_t ReadSignedIntegerFromMemory(const Address &addr, size_t integer_byte_size, int64_t fail_value, Status &error, bool force_live_memory=false)
Definition Target.cpp:2398
friend class TargetAPIMutex
Definition Target.h:602
void DisableAllowedBreakpoints()
Definition Target.cpp:1183
bool SetHookEnabledStateByID(lldb::user_id_t uid, bool enabled)
Definition Target.cpp:4853
bool LoadScriptingResources(std::list< Status > &errors, bool continue_on_error=true)
Definition Target.h:1243
bool SetSectionUnloaded(const lldb::SectionSP &section_sp)
Definition Target.cpp:3555
lldb::TargetSP CalculateTarget() override
Definition Target.cpp:2689
const lldb::ProcessSP & GetProcessSP() const
Definition Target.cpp:329
void ClearModules(bool delete_locations)
Definition Target.cpp:1645
void RemoveNameFromBreakpoint(lldb::BreakpointSP &bp_sp, llvm::StringRef name)
Definition Target.cpp:919
BreakpointNameMap m_breakpoint_names
Definition Target.h:2117
bool RemoveBreakpointByID(lldb::break_id_t break_id)
Definition Target.cpp:1207
llvm::MapVector< uint32_t, ScriptedFrameProviderDescriptor > m_frame_provider_descriptors
Map of scripted frame provider descriptors for this target.
Definition Target.h:2141
lldb::ModuleSP GetOrCreateModule(const ModuleSpec &module_spec, bool notify, Status *error_ptr=nullptr)
Find a binary on the system and return its Module, or return an existing Module that is already in th...
Definition Target.cpp:2450
static bool ResetSignalFromDummy(lldb::UnixSignalsSP signals_sp, const DummySignalElement &element)
Definition Target.cpp:4110
Architecture * GetArchitecturePlugin() const
Definition Target.h:1347
llvm::json::Value ReportStatistics(const lldb_private::StatisticsOptions &options)
Get metrics associated with this target in JSON format.
Definition Target.cpp:6100
friend class TargetList
Definition Target.h:600
FunctionCaller * GetFunctionCallerForLanguage(lldb::LanguageType language, const CompilerType &return_type, const Address &function_address, const ValueList &arg_value_list, const char *name, Status &error)
Definition Target.cpp:2840
TargetStats & GetStatistics()
Definition Target.h:2205
void EnableAllBreakpoints(bool internal_also=false)
Definition Target.cpp:1190
Status Launch(ProcessLaunchInfo &launch_info, Stream *stream)
Definition Target.cpp:3600
bool DisableBreakpointByID(lldb::break_id_t break_id)
Definition Target.cpp:1227
lldb::BreakpointSP CreateBreakpointAtUserEntry(Status &error)
Definition Target.cpp:450
std::map< lldb::user_id_t, StopHookSP > StopHookCollection
Definition Target.h:2150
llvm::Expected< lldb::TraceSP > CreateTrace()
Create a Trace object for the current target using the using the default supported tracing technology...
Definition Target.cpp:3772
lldb::TraceSP m_trace_sp
An optional lldb_private::Trace object containing processor trace information of this target.
Definition Target.h:2172
lldb::user_id_t GetGloballyUniqueID() const
Get the globally unique ID for this target.
Definition Target.h:701
bool RemoveAllWatchpoints(bool end_to_end=true)
Definition Target.cpp:1427
bool ReadPointerFromMemory(const Address &addr, Status &error, Address &pointer_addr, bool force_live_memory=false)
Definition Target.cpp:2420
void UndoCreateStopHook(lldb::user_id_t uid)
If you tried to create a stop hook, and that failed, call this to remove the stop hook,...
Definition Target.cpp:3185
WatchpointList m_watchpoint_list
Definition Target.h:2126
BreakpointList m_breakpoint_list
Definition Target.h:2114
void DescribeBreakpointOverrides(Stream &stream, std::vector< lldb::user_id_t > &idxs, uint32_t terminal_width, bool use_color)
Describe the breakpoint overrides.
Definition Target.cpp:986
lldb::SourceManagerUP m_source_manager_up
Definition Target.h:2148
lldb::user_id_t m_override_id
This is the ID that will be handed out for the next added breakpoint override resolver for this targe...
Definition Target.h:2123
bool RemoveWatchpointByID(lldb::watch_id_t watch_id)
Definition Target.cpp:1593
bool ResolveLoadAddress(lldb::addr_t load_addr, Address &so_addr, uint32_t stop_id=SectionLoadHistory::eStopIDNow, bool allow_section_end=false)
Definition Target.cpp:3495
size_t ReadStringFromMemory(const Address &addr, char *dst, size_t max_bytes, Status &error, size_t type_width, bool force_live_memory=true)
Read a null-terminated string from memory.
Definition Target.cpp:2318
HookSP GetHookByID(lldb::user_id_t uid)
Definition Target.cpp:4838
void NotifyWillClearList(const ModuleList &module_list) override
Definition Target.cpp:1903
bool SetArchitecture(const ArchSpec &arch_spec, bool set_platform=false, bool merge=true)
Set the architecture for this target.
Definition Target.cpp:1787
void ClearBreakpointResolverOverrides()
Definition Target.h:1088
bool RemoveBreakpointResolverOverride(lldb::user_id_t override_id)
Definition Target.h:1083
void NotifyModuleAdded(const ModuleList &module_list, const lldb::ModuleSP &module_sp) override
Implementing of ModuleList::Notifier.
Definition Target.cpp:1905
llvm::Expected< lldb::TypeSystemSP > GetScratchTypeSystemForLanguage(lldb::LanguageType language, bool create_on_demand=true)
Definition Target.cpp:2715
void ConfigureBreakpointName(BreakpointName &bp_name, const BreakpointOptions &options, const BreakpointName::Permissions &permissions)
Definition Target.cpp:924
lldb_private::SummaryStatisticsSP GetSummaryStatisticsSPForProviderName(lldb_private::TypeSummaryImpl &summary_provider)
Definition Target.cpp:3579
lldb::SearchFilterSP GetSearchFilterForModuleAndCUList(const FileSpecList *containingModules, const FileSpecList *containingSourceFiles)
Definition Target.cpp:723
lldb::ModuleSP GetExecutableModule()
Gets the module for the main executable.
Definition Target.cpp:1625
bool SetStopHookActiveStateByID(lldb::user_id_t uid, bool active_state)
Definition Target.cpp:3209
const lldb::ProcessSP & CreateProcess(lldb::ListenerSP listener_sp, llvm::StringRef plugin_name, const FileSpec *crash_file, bool can_connect)
Definition Target.cpp:317
void SetAllStopHooksActiveState(bool active_state)
Definition Target.cpp:3220
std::vector< StopHookSP > m_internal_stop_hooks
Definition Target.h:2153
lldb::ExpressionVariableSP GetPersistentVariable(ConstString name)
Definition Target.cpp:3029
void NotifyModulesRemoved(lldb_private::ModuleList &module_list) override
Definition Target.cpp:1937
StopHookSP CreateStopHook(StopHook::StopHookKind kind, bool internal=false)
Add an empty stop hook to the Target's stop hook list, and returns a shared pointer to the new hook.
Definition Target.cpp:3163
size_t ReadCStringFromMemory(const Address &addr, std::string &out_str, Status &error, bool force_live_memory=false)
Definition Target.cpp:2228
void SetAllHooksEnabledState(bool enabled)
Definition Target.cpp:4861
std::recursive_mutex m_mutex
An API mutex that is used by the lldb::SB* classes make the SB interface thread safe.
Definition Target.h:2100
std::recursive_mutex m_frame_provider_descriptors_mutex
Definition Target.h:2142
lldb::user_id_t m_target_unique_id
The globally unique ID assigned to this target.
Definition Target.h:2164
void ModulesDidUnload(ModuleList &module_list, bool delete_locations)
Definition Target.cpp:1985
void CalculateExecutionContext(ExecutionContext &exe_ctx) override
Reconstruct the object's execution context into sc.
Definition Target.cpp:2697
llvm::Expected< lldb::DisassemblerSP > ReadInstructions(const Address &start_addr, uint32_t count, const char *flavor_string=nullptr)
Definition Target.cpp:3123
llvm::Expected< lldb::TraceSP > GetTraceOrCreate()
If a Trace object is present, this returns it, otherwise a new Trace is created with Trace::CreateTra...
Definition Target.cpp:3797
void NotifyModuleUpdated(const ModuleList &module_list, const lldb::ModuleSP &old_module_sp, const lldb::ModuleSP &new_module_sp) override
Definition Target.cpp:1925
SummaryStatisticsCache m_summary_statistics_cache
Definition Target.h:2112
Target(const Target &)=delete
void RegisterInternalStopHooks()
Status SerializeBreakpointsToFile(const FileSpec &file, const BreakpointIDList &bp_ids, bool append)
Definition Target.cpp:1268
void DidExec()
Called as the last function in Process::DidExec().
Definition Target.cpp:1652
void SaveScriptedLaunchInfo(lldb_private::ProcessInfo &process_info)
Definition Target.cpp:3589
bool GetSuppressStopHooks()
Definition Target.h:1977
std::string m_label
Definition Target.h:2109
lldb::user_id_t m_stop_hook_next_id
Definition Target.h:2152
static FileSpecList GetDefaultExecutableSearchPaths()
Definition Target.cpp:2901
lldb::BreakpointSP CreateExceptionBreakpoint(enum lldb::LanguageType language, bool catch_bp, bool throw_bp, bool internal, Args *additional_args=nullptr, Status *additional_args_error=nullptr)
Definition Target.cpp:760
void NotifyBreakpointChanged(Breakpoint &bp, lldb::BreakpointEventType event_kind)
Sends a breakpoint notification event.
Definition Target.cpp:6118
lldb::SearchFilterSP GetSearchFilterForModule(const FileSpec *containingModule)
Definition Target.cpp:688
llvm::StringMapEntry< DummySignalValues > DummySignalElement
Definition Target.h:2039
static llvm::StringRef GetStaticBroadcasterClass()
Definition Target.cpp:176
static FileSpecList GetDefaultDebugFileSearchPaths()
Definition Target.cpp:2905
void EnableAllowedBreakpoints()
Definition Target.cpp:1200
virtual size_t ReadMemory(const Address &addr, void *dst, size_t dst_len, Status &error, bool force_live_memory=false, lldb::addr_t *load_addr_ptr=nullptr, bool *did_read_live_memory=nullptr)
Definition Target.cpp:2092
llvm::Error SetLabel(llvm::StringRef label)
Set a label for a target.
Definition Target.cpp:2920
uint32_t m_latest_stop_hook_id
Definition Target.h:2154
void RunModuleHooks(bool is_load)
Definition Target.cpp:4866
std::map< lldb::user_id_t, BreakpointResolverOverrideUP > m_breakpoint_overrides
Definition Target.h:2120
StackFrameRecognizerManager & GetFrameRecognizerManager()
Definition Target.h:2015
void RemoveAllowedBreakpoints()
Definition Target.cpp:1152
bool DisableAllWatchpoints(bool end_to_end=true)
Definition Target.cpp:1456
bool RunStopHooks(bool at_initial_stop=false)
Definition Target.cpp:3244
void ClearSectionLoadList()
Definition Target.cpp:6112
const Target & operator=(const Target &)=delete
lldb::addr_t GetReasonableReadSize(const Address &addr)
Return a recommended size for memory reads at addr, optimizing for cache usage.
Definition Target.cpp:2305
lldb::PlatformSP m_platform_sp
The platform for this target.
Definition Target.h:2099
void UndoCreateHook(lldb::user_id_t uid)
Removes the most recently created hook.
Definition Target.cpp:4824
llvm::Expected< std::unique_ptr< UtilityFunction > > CreateUtilityFunction(std::string expression, std::string name, lldb::LanguageType language, ExecutionContext &exe_ctx)
Creates and installs a UtilityFunction for the given language.
Definition Target.cpp:2870
FileSpecList GetSafeAutoLoadPaths() const
Get the list of paths that LLDB will consider automatically loading scripting resources from.
Definition Target.cpp:6134
static TargetProperties & GetGlobalProperties()
Definition Target.cpp:3459
Status Install(ProcessLaunchInfo *launch_info)
Definition Target.cpp:3467
HookSP GetHookAtIndex(size_t index)
Definition Target.cpp:4845
lldb::PlatformSP GetPlatform()
Definition Target.h:1991
void NotifyModuleRemoved(const ModuleList &module_list, const lldb::ModuleSP &module_sp) override
Definition Target.cpp:1915
lldb::BreakpointSP CreateAddressInModuleBreakpoint(lldb::addr_t file_addr, bool internal, const FileSpec &file_spec, bool request_hardware)
Definition Target.cpp:594
lldb::BreakpointSP CreateBreakpoint(const FileSpecList *containingModules, const FileSpec &file, uint32_t line_no, uint32_t column, lldb::addr_t offset, LazyBool check_inlines, LazyBool skip_prologue, bool internal, bool request_hardware, LazyBool move_to_nearest_code)
Definition Target.cpp:505
void RemoveAllBreakpoints(bool internal_also=false)
Definition Target.cpp:1161
lldb::BreakpointSP CreateSourceRegexBreakpoint(const FileSpecList *containingModules, const FileSpecList *source_file_list, const std::unordered_set< std::string > &function_names, RegularExpression source_regex, bool internal, bool request_hardware, LazyBool move_to_nearest_code)
Definition Target.cpp:488
lldb::BreakpointSP CreateBreakpoint(const FileSpecList *containingModules, const FileSpecList *containingSourceFiles, const char *func_name, lldb::FunctionNameType func_name_type_mask, lldb::LanguageType language, lldb::addr_t offset, bool offset_is_insn_count, LazyBool skip_prologue, bool internal, bool request_hardware)
static ArchSpec GetDefaultArchitecture()
Definition Target.cpp:2909
void ResetBreakpointHitCounts()
Resets the hit count of all breakpoints.
Definition Target.cpp:1264
std::unique_ptr< BreakpointResolverOverride > BreakpointResolverOverrideUP
Definition Target.h:1042
const ModuleList & GetImages() const
Get accessor for the images for this process.
Definition Target.h:1266
const ArchSpec & GetArchitecture() const
Definition Target.h:1308
WatchpointList & GetWatchpointList()
Definition Target.h:978
@ eBroadcastBitWatchpointChanged
Definition Target.h:609
@ eBroadcastBitBreakpointChanged
Definition Target.h:606
@ eBroadcastBitNewTargetCreated
Definition Target.h:612
unsigned m_next_persistent_variable_index
Definition Target.h:2163
bool EnableBreakpointByID(lldb::break_id_t break_id)
Definition Target.cpp:1245
uint64_t ReadUnsignedIntegerFromMemory(const Address &addr, size_t integer_byte_size, uint64_t fail_value, Status &error, bool force_live_memory=false)
Definition Target.cpp:2409
void InvalidateThreadFrameProviders()
Invalidate all potentially cached frame providers for all threads and trigger a stack changed event f...
Definition Target.cpp:3962
TargetStats m_stats
Definition Target.h:2188
bool IgnoreAllWatchpoints(uint32_t ignore_count)
Definition Target.cpp:1538
void AddBreakpoint(lldb::BreakpointSP breakpoint_sp, bool internal)
Definition Target.cpp:831
std::string m_target_session_name
The target session name for this target, used to name debugging sessions in DAP.
Definition Target.h:2167
TypeSystemMap m_scratch_type_system_map
Definition Target.h:2134
void AddBreakpointName(std::unique_ptr< BreakpointName > bp_name)
Definition Target.cpp:881
void SetTargetSessionName(llvm::StringRef target_session_name)
Set the target session name for this target.
Definition Target.h:734
SectionLoadHistory m_section_load_history
Definition Target.h:2113
lldb::BreakpointSP CreateBreakpoint(const FileSpecList *containingModules, const FileSpecList *containingSourceFiles, const std::vector< std::string > &func_names, lldb::FunctionNameType func_name_type_mask, lldb::LanguageType language, lldb::addr_t m_offset, LazyBool skip_prologue, bool internal, bool request_hardware)
lldb::BreakpointResolverSP CheckBreakpointOverrides(lldb::BreakpointResolverSP original_sp)
Definition Target.cpp:1024
void GetBreakpointNames(std::vector< std::string > &names)
Definition Target.cpp:946
bool IsDummyTarget() const
Definition Target.h:690
Target(Debugger &debugger, const ArchSpec &target_arch, const lldb::PlatformSP &platform_sp, bool is_dummy_target)
Construct with optional file and arch.
Definition Target.cpp:181
size_t UnloadModuleSections(const lldb::ModuleSP &module_sp)
Definition Target.cpp:3536
llvm::StringRef GetTargetSessionName()
Get the target session name for this target.
Definition Target.h:722
const std::string & GetLabel() const
Definition Target.h:703
std::map< lldb::user_id_t, HookSP > HookCollection
Definition Target.h:2160
bool m_valid
This records the last natural stop at which we ran a stop-hook.
Definition Target.h:2156
bool DisableWatchpointByID(lldb::watch_id_t watch_id)
Definition Target.cpp:1555
void AddDummySignal(llvm::StringRef name, LazyBool pass, LazyBool print, LazyBool stop)
Add a signal to the Target's list of stored signals/actions.
Definition Target.cpp:4068
void ClearScriptedFrameProviderDescriptors()
Clear all scripted frame provider descriptors for this target.
Definition Target.cpp:3944
lldb::WatchpointSP m_last_created_watchpoint
Definition Target.h:2127
Status CreateBreakpointsFromFile(const FileSpec &file, BreakpointIDList &new_bps)
Definition Target.cpp:1360
Debugger & m_debugger
Definition Target.h:2098
void SetREPL(lldb::LanguageType language, lldb::REPLSP repl_sp)
Definition Target.cpp:382
lldb::BreakpointSP CreateBreakpoint(const FileSpecList *containingModules, const FileSpecList *containingSourceFiles, const char *func_names[], size_t num_names, lldb::FunctionNameType func_name_type_mask, lldb::LanguageType language, lldb::addr_t offset, LazyBool skip_prologue, bool internal, bool request_hardware)
void SetExecutableModule(lldb::ModuleSP &module_sp, LoadDependentFiles load_dependent_files=eLoadDependentsDefault)
Set the main executable module.
Definition Target.cpp:1658
lldb::StackFrameRecognizerManagerUP m_frame_recognizer_manager_up
Stores the frame recognizers of this target.
Definition Target.h:2174
HookCollection m_hooks
Definition Target.h:2161
lldb::REPLSP GetREPL(Status &err, lldb::LanguageType language, const char *repl_options, bool can_create)
Definition Target.cpp:331
std::shared_ptr< Hook > HookSP
Definition Target.h:1932
UserExpression * GetUserExpressionForLanguage(llvm::StringRef expr, llvm::StringRef prefix, SourceLanguage language, Expression::ResultType desired_type, const EvaluateExpressionOptions &options, ValueObject *ctx_obj, Status &error)
Definition Target.cpp:2807
ModuleList m_images
The list of images for this process (shared libraries and anything dynamically loaded).
Definition Target.h:2110
lldb::ProcessSP CalculateProcess() override
Definition Target.cpp:2691
void PrintDummySignals(Stream &strm, Args &signals)
Print all the signals set in this target.
Definition Target.cpp:4162
void SetPlatform(const lldb::PlatformSP &platform_sp)
Definition Target.h:1993
bool SetSectionLoadAddress(const lldb::SectionSP &section, lldb::addr_t load_addr, bool warn_multiple=false)
Definition Target.cpp:3506
BreakpointName * FindBreakpointName(llvm::StringRef name, bool can_create, Status &error)
Definition Target.cpp:886
Status Attach(ProcessAttachInfo &attach_info, Stream *stream)
Definition Target.cpp:3803
std::map< lldb::LanguageType, lldb::REPLSP > REPLMap
Definition Target.h:2145
static void SetDefaultArchitecture(const ArchSpec &arch)
Definition Target.cpp:2913
lldb::BreakpointSP m_last_created_breakpoint
Definition Target.h:2125
lldb::WatchpointSP GetLastCreatedWatchpoint()
Definition Target.h:974
bool RemoveStopHookByID(lldb::user_id_t uid)
Definition Target.cpp:3192
friend class Debugger
Definition Target.h:601
lldb::BreakpointSP GetLastCreatedBreakpoint()
Definition Target.h:866
static void SettingsInitialize()
Definition Target.cpp:2897
~Target() override
Definition Target.cpp:220
bool EnableAllWatchpoints(bool end_to_end=true)
Definition Target.cpp:1483
std::recursive_mutex m_private_mutex
When the private state thread calls SB API's - usually because it is running OS plugin or Python Thre...
Definition Target.h:2107
lldb::ExpressionResults EvaluateExpression(llvm::StringRef expression, ExecutionContextScope *exe_scope, lldb::ValueObjectSP &result_valobj_sp, const EvaluateExpressionOptions &options=EvaluateExpressionOptions(), std::string *fixed_expression=nullptr, ValueObject *ctx_obj=nullptr)
Definition Target.cpp:2951
bool MergeArchitecture(const ArchSpec &arch_spec)
Definition Target.cpp:1878
Encapsulates a one-time expression for use in lldb.
This class is used by Watchpoint to manage a list of watchpoints,.
#define LLDB_INVALID_GLOBALLY_UNIQUE_TARGET_ID
A class that represents a running process on the host machine.
std::shared_ptr< SummaryStatistics > SummaryStatisticsSP
Definition Statistics.h:33
LoadScriptFromSymFile
Definition Target.h:61
@ eLoadScriptFromSymFileTrue
Definition Target.h:62
@ eLoadScriptFromSymFileTrusted
Definition Target.h:65
@ eLoadScriptFromSymFileFalse
Definition Target.h:63
@ eLoadScriptFromSymFileWarn
Definition Target.h:64
@ eJITEngineMCJIT
Definition Target.h:87
@ eJITEngineORC
Definition Target.h:87
ExecutionPolicy
Expression execution policies.
DynamicClassInfoHelper
Definition Target.h:80
@ eDynamicClassInfoHelperCopyRealizedClassList
Definition Target.h:83
@ eDynamicClassInfoHelperGetRealizedClassList
Definition Target.h:84
@ eDynamicClassInfoHelperAuto
Definition Target.h:81
@ eDynamicClassInfoHelperRealizedClassesStruct
Definition Target.h:82
OptionEnumValues GetDynamicValueTypes()
Definition Target.cpp:4914
@ eImportStdModuleFalse
Definition Target.h:75
@ eImportStdModuleFallback
Definition Target.h:76
@ eImportStdModuleTrue
Definition Target.h:77
LoadCWDlldbinitFile
Definition Target.h:68
@ eLoadCWDlldbinitTrue
Definition Target.h:69
@ eLoadCWDlldbinitFalse
Definition Target.h:70
@ eLoadCWDlldbinitWarn
Definition Target.h:71
llvm::ArrayRef< OptionEnumValueElement > OptionEnumValues
@ eInlineBreakpointsNever
Definition Target.h:56
@ eInlineBreakpointsAlways
Definition Target.h:58
@ eInlineBreakpointsHeaders
Definition Target.h:57
ExpressionEvaluationPhase
Expression Evaluation Stages.
std::shared_ptr< lldb_private::Trace > TraceSP
std::shared_ptr< lldb_private::ScriptedHookInterface > ScriptedHookInterfaceSP
std::shared_ptr< lldb_private::StackFrame > StackFrameSP
std::shared_ptr< lldb_private::SearchFilter > SearchFilterSP
std::shared_ptr< lldb_private::BreakpointResolver > BreakpointResolverSP
DescriptionLevel
Description levels for "void GetDescription(Stream *, DescriptionLevel)" calls.
std::unique_ptr< lldb_private::StackFrameRecognizerManager > StackFrameRecognizerManagerUP
std::shared_ptr< lldb_private::Thread > ThreadSP
std::shared_ptr< lldb_private::ValueObject > ValueObjectSP
std::shared_ptr< lldb_private::ExpressionVariable > ExpressionVariableSP
std::shared_ptr< lldb_private::UnixSignals > UnixSignalsSP
std::shared_ptr< lldb_private::Platform > PlatformSP
std::shared_ptr< lldb_private::RegisterTypeBuilder > RegisterTypeBuilderSP
LanguageType
Programming language type.
std::shared_ptr< lldb_private::Stream > StreamSP
std::shared_ptr< lldb_private::Breakpoint > BreakpointSP
ExpressionResults
The results of expression evaluation.
int32_t break_id_t
Definition lldb-types.h:88
std::unique_ptr< lldb_private::SourceManager > SourceManagerUP
std::shared_ptr< lldb_private::Process > ProcessSP
std::shared_ptr< lldb_private::SymbolContextSpecifier > SymbolContextSpecifierSP
std::shared_ptr< lldb_private::Watchpoint > WatchpointSP
std::shared_ptr< lldb_private::Listener > ListenerSP
int32_t watch_id_t
Definition lldb-types.h:89
uint64_t user_id_t
Definition lldb-types.h:83
std::shared_ptr< lldb_private::Section > SectionSP
uint64_t addr_t
Definition lldb-types.h:80
std::shared_ptr< lldb_private::Target > TargetSP
@ eDynamicCanRunTarget
bool(* ExpressionCancelCallback)(lldb::ExpressionEvaluationPhase phase, void *baton)
Definition lldb-types.h:75
std::shared_ptr< lldb_private::Module > ModuleSP
std::shared_ptr< lldb_private::EventData > EventDataSP
std::shared_ptr< lldb_private::REPL > REPLSP
Every register is described in detail including its name, alternate name (optional),...
This struct contains the metadata needed to instantiate a frame provider and optional filters to cont...
A type-erased pair of llvm::dwarf::SourceLanguageName and version.
DummySignalValues(LazyBool pass, LazyBool notify, LazyBool stop)
Definition Target.h:2035
UserID(lldb::user_id_t uid=LLDB_INVALID_UID)
Construct with optional user ID.
Definition UserID.h:33