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

/openbsd-current/gnu/llvm/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,
/openbsd-current/gnu/llvm/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) {
64 bool skip_prologue)
67 m_skip_prologue(skip_prologue) {
77 bool skip_prologue)
81 m_skip_prologue(skip_prologue) {}
115 bool skip_prologue; local
117 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, std::vector<std::string> names, FunctionNameType name_type_mask, LanguageType language, lldb::addr_t offset, bool skip_prologue) argument
73 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),
40 bool skip_prologue; local
75 GetKey(OptionNames::SkipPrologue), skip_prologue);
93 return new BreakpointResolverFileLine(bkpt, offset, skip_prologue,
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.cpp204 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) {
203 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.cpp140 const bool skip_prologue = true; local
142 BreakpointResolver::SetSCMatchesByLine(filter, sc_list, skip_prologue,
/openbsd-current/gnu/llvm/lldb/source/API/
H A DSBTarget.cpp715 const LazyBool skip_prologue = eLazyBoolCalculate; local
725 skip_prologue, internal, hardware, move_to_nearest_code);
744 const LazyBool skip_prologue = eLazyBoolCalculate; local
753 skip_prologue, internal, hardware,
771 const LazyBool skip_prologue = eLazyBoolCalculate; local
778 eLanguageTypeUnknown, offset, skip_prologue, internal, hardware);
782 eLanguageTypeUnknown, offset, skip_prologue, internal, hardware);
824 const LazyBool skip_prologue = eLazyBoolCalculate; local
829 skip_prologue, internal, hardware);
872 const LazyBool skip_prologue local
917 const LazyBool skip_prologue = eLazyBoolCalculate; local
[all...]
/openbsd-current/gnu/llvm/lldb/include/lldb/Target/
H A DTarget.h642 LazyBool skip_prologue, bool internal,
672 // When "skip_prologue is set to eLazyBoolCalculate, we use the current
677 lldb::LanguageType requested_language, LazyBool skip_prologue,
681 // all modules if it is nullptr When "skip_prologue is set to
689 lldb::addr_t offset, LazyBool skip_prologue, bool internal,
713 lldb::LanguageType language, lldb::addr_t offset, LazyBool skip_prologue,
722 LazyBool skip_prologue, bool internal,
/openbsd-current/gnu/llvm/lldb/source/Target/
H A DTarget.cpp356 LazyBool skip_prologue, bool internal,
394 if (skip_prologue == eLazyBoolCalculate)
395 skip_prologue = GetSkipPrologue() ? eLazyBoolYes : eLazyBoolNo;
406 nullptr, offset, skip_prologue, location_spec, removed_prefix_opt));
455 lldb::addr_t offset, LazyBool skip_prologue, bool internal, bool hardware) {
461 if (skip_prologue == eLazyBoolCalculate)
462 skip_prologue = GetSkipPrologue() ? eLazyBoolYes : eLazyBoolNo;
468 offset, skip_prologue));
480 LazyBool skip_prologue, bool internal, bool hardware) {
487 if (skip_prologue
352 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
451 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
475 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
501 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
586 CreateFuncRegexBreakpoint( const FileSpecList *containingModules, const FileSpecList *containingSourceFiles, RegularExpression func_regex, lldb::LanguageType requested_language, LazyBool skip_prologue, bool internal, bool hardware) argument
[all...]
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dmcore-tdep.c37 int skip_prologue);
290 mcore_analyze_prologue (struct frame_info *fi, CORE_ADDR pc, int skip_prologue)
438 if (skip_prologue)
289 mcore_analyze_prologue(struct frame_info *fi, CORE_ADDR pc, int skip_prologue) argument
H A Dgdbarch.c191 gdbarch_skip_prologue_ftype *skip_prologue; member in struct:gdbarch
317 0, /* skip_prologue */
569 if (current_gdbarch->skip_prologue == 0)
1526 "gdbarch_dump: skip_prologue = <0x%lx>\n",
1527 (long) current_gdbarch->skip_prologue);
2899 gdb_assert (gdbarch->skip_prologue != NULL);
2902 return gdbarch->skip_prologue (ip);
2907 gdbarch_skip_prologue_ftype skip_prologue)
2909 gdbarch->skip_prologue = skip_prologue;
2906 set_gdbarch_skip_prologue(struct gdbarch *gdbarch, gdbarch_skip_prologue_ftype skip_prologue) argument
[all...]
H A Drs6000-tdep.c73 /* To be used by skip_prologue. */
136 static CORE_ADDR skip_prologue (CORE_ADDR, CORE_ADDR,
501 pc = skip_prologue (pc, 0, &frame);
829 skip_prologue (CORE_ADDR pc, CORE_ADDR lim_pc, struct rs6000_framedata *fdata)
2798 skip_prologue (frame_func_unwind (next_frame), frame_pc_unwind (next_frame),
2837 /* If skip_prologue says floating-point registers were saved,
827 skip_prologue (CORE_ADDR pc, CORE_ADDR lim_pc, struct rs6000_framedata *fdata) function
H A Dgdbarch.h915 extern void set_gdbarch_skip_prologue (struct gdbarch *gdbarch, gdbarch_skip_prologue_ftype *skip_prologue);
H A Dgdbarch.sh551 f:=:CORE_ADDR:skip_prologue:CORE_ADDR ip:ip:0:0
/openbsd-current/gnu/llvm/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderMacOS.cpp426 LazyBool skip_prologue = eLazyBoolNo; local
436 skip_prologue, internal, hardware)
/openbsd-current/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwin.cpp663 LazyBool skip_prologue = eLazyBoolNo; local
666 eLanguageTypeUnknown, 0, skip_prologue,
/openbsd-current/gnu/llvm/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
H A DDynamicLoaderDarwinKernel.cpp1445 const LazyBool skip_prologue = eLazyBoolNo; local
1453 skip_prologue, internal_bp, hardware)
/openbsd-current/gnu/llvm/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1608 const LazyBool skip_prologue = eLazyBoolCalculate; local
1615 eLanguageTypeC, offset, skip_prologue, internal, hardware);

Completed in 172 milliseconds