Searched refs:skip_prologue (Results 1 - 11 of 11) sorted by relevance

/freebsd-current/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointResolverName.h30 bool skip_prologue);
37 bool skip_prologue);
44 bool skip_prologue);
51 bool skip_prologue);
H A DBreakpointResolver.h207 bool skip_prologue, llvm::StringRef log_ident,
219 bool skip_prologue, llvm::StringRef log_ident);
H A DBreakpointResolverFileLine.h26 const lldb::BreakpointSP &bkpt, lldb::addr_t offset, bool skip_prologue,
/freebsd-current/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverName.cpp30 bool skip_prologue)
32 m_match_type(type), m_language(language), m_skip_prologue(skip_prologue) {
50 bool skip_prologue)
53 m_skip_prologue(skip_prologue) {
62 bool skip_prologue)
65 m_skip_prologue(skip_prologue) {
75 bool skip_prologue)
79 m_skip_prologue(skip_prologue) {}
112 bool skip_prologue; local
114 GetKey(OptionNames::SkipPrologue), skip_prologue);
27 BreakpointResolverName(const BreakpointSP &bkpt, const char *name_cstr, FunctionNameType name_type_mask, LanguageType language, Breakpoint::MatchType type, lldb::addr_t offset, bool skip_prologue) argument
47 BreakpointResolverName( const BreakpointSP &bkpt, const char *names[], size_t num_names, FunctionNameType name_type_mask, LanguageType language, lldb::addr_t offset, bool skip_prologue) argument
59 BreakpointResolverName( const BreakpointSP &bkpt, const std::vector<std::string> &names, FunctionNameType name_type_mask, LanguageType language, lldb::addr_t offset, bool skip_prologue) argument
71 BreakpointResolverName(const BreakpointSP &bkpt, RegularExpression func_regex, lldb::LanguageType language, lldb::addr_t offset, bool skip_prologue) argument
[all...]
H A DBreakpointResolverFileLine.cpp26 const BreakpointSP &bkpt, lldb::addr_t offset, bool skip_prologue,
30 m_location_spec(location_spec), m_skip_prologue(skip_prologue),
39 bool skip_prologue; local
74 GetKey(OptionNames::SkipPrologue), skip_prologue);
93 nullptr, offset, skip_prologue, location_spec);
25 BreakpointResolverFileLine( const BreakpointSP &bkpt, lldb::addr_t offset, bool skip_prologue, const SourceLocationSpec &location_spec, std::optional<llvm::StringRef> removed_prefix_opt) argument
H A DBreakpointResolver.cpp203 SearchFilter &filter, SymbolContextList &sc_list, bool skip_prologue,
284 AddLocation(filter, sc, skip_prologue, log_ident);
293 bool skip_prologue,
314 if (skip_prologue && sc.function) {
202 SetSCMatchesByLine( SearchFilter &filter, SymbolContextList &sc_list, bool skip_prologue, llvm::StringRef log_ident, uint32_t line, std::optional<uint16_t> column) argument
291 AddLocation(SearchFilter &filter, const SymbolContext &sc, bool skip_prologue, llvm::StringRef log_ident) argument
H A DBreakpointResolverFileRegex.cpp139 const bool skip_prologue = true; local
141 BreakpointResolver::SetSCMatchesByLine(filter, sc_list, skip_prologue,
/freebsd-current/contrib/llvm-project/lldb/source/API/
H A DSBTarget.cpp717 const LazyBool skip_prologue = eLazyBoolCalculate; local
727 skip_prologue, internal, hardware, move_to_nearest_code);
746 const LazyBool skip_prologue = eLazyBoolCalculate; local
755 skip_prologue, internal, hardware,
773 const LazyBool skip_prologue = eLazyBoolCalculate; local
780 eLanguageTypeUnknown, offset, skip_prologue, internal, hardware);
784 eLanguageTypeUnknown, offset, skip_prologue, internal, hardware);
826 const LazyBool skip_prologue = eLazyBoolCalculate; local
831 skip_prologue, internal, hardware);
874 const LazyBool skip_prologue local
919 const LazyBool skip_prologue = eLazyBoolCalculate; local
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp366 /*skip_prologue=*/eLazyBoolNo,
398 LazyBool skip_prologue, bool internal,
436 if (skip_prologue == eLazyBoolCalculate)
437 skip_prologue = GetSkipPrologue() ? eLazyBoolYes : eLazyBoolNo;
448 nullptr, offset, skip_prologue, location_spec, removed_prefix_opt));
497 lldb::addr_t offset, LazyBool skip_prologue, bool internal, bool hardware) {
503 if (skip_prologue == eLazyBoolCalculate)
504 skip_prologue = GetSkipPrologue() ? eLazyBoolYes : eLazyBoolNo;
510 offset, skip_prologue));
522 LazyBool skip_prologue, boo
394 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 hardware, LazyBool move_to_nearest_code) argument
493 CreateBreakpoint( const FileSpecList *containingModules, const FileSpecList *containingSourceFiles, const char *func_name, FunctionNameType func_name_type_mask, LanguageType language, lldb::addr_t offset, LazyBool skip_prologue, bool internal, bool hardware) argument
517 CreateBreakpoint(const FileSpecList *containingModules, const FileSpecList *containingSourceFiles, const std::vector<std::string> &func_names, FunctionNameType func_name_type_mask, LanguageType language, lldb::addr_t offset, LazyBool skip_prologue, bool internal, bool hardware) argument
543 CreateBreakpoint(const FileSpecList *containingModules, const FileSpecList *containingSourceFiles, const char *func_names[], size_t num_names, FunctionNameType func_name_type_mask, LanguageType language, lldb::addr_t offset, LazyBool skip_prologue, bool internal, bool hardware) argument
628 CreateFuncRegexBreakpoint( const FileSpecList *containingModules, const FileSpecList *containingSourceFiles, RegularExpression func_regex, lldb::LanguageType requested_language, LazyBool skip_prologue, bool internal, bool hardware) argument
[all...]
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Target/
H A DTarget.h665 LazyBool skip_prologue, bool internal,
695 // When "skip_prologue is set to eLazyBoolCalculate, we use the current
700 lldb::LanguageType requested_language, LazyBool skip_prologue,
704 // all modules if it is nullptr When "skip_prologue is set to
712 lldb::addr_t offset, LazyBool skip_prologue, bool internal,
736 lldb::LanguageType language, lldb::addr_t offset, LazyBool skip_prologue,
745 LazyBool skip_prologue, bool internal,
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1598 const LazyBool skip_prologue = eLazyBoolCalculate; local
1605 eLanguageTypeC, offset, skip_prologue, internal, hardware);

Completed in 143 milliseconds