diff options
author | Jim Ingham <jingham@apple.com> | 2012-03-06 00:37:27 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2012-03-06 00:37:27 +0000 |
commit | fab10e89cea94df0c8aa75cc6a7a0ced7330b587 (patch) | |
tree | 0441509077e99a23b00899700c6f599093e2cbcc /lldb/source/Commands/CommandObjectBreakpoint.h | |
parent | 330de22fe0f6f23af82825909bfe9dd54237ea62 (diff) | |
download | bcm5719-llvm-fab10e89cea94df0c8aa75cc6a7a0ced7330b587.tar.gz bcm5719-llvm-fab10e89cea94df0c8aa75cc6a7a0ced7330b587.zip |
Add a command and an SB API to create exception breakpoints. Make the break output prettier for Exception breakpoints.
llvm-svn: 152081
Diffstat (limited to 'lldb/source/Commands/CommandObjectBreakpoint.h')
-rw-r--r-- | lldb/source/Commands/CommandObjectBreakpoint.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectBreakpoint.h b/lldb/source/Commands/CommandObjectBreakpoint.h index b032319d167..df96b04c66a 100644 --- a/lldb/source/Commands/CommandObjectBreakpoint.h +++ b/lldb/source/Commands/CommandObjectBreakpoint.h @@ -58,7 +58,8 @@ public: eSetTypeAddress, eSetTypeFunctionName, eSetTypeFunctionRegexp, - eSetTypeSourceRegexp + eSetTypeSourceRegexp, + eSetTypeException } BreakpointSetType; CommandObjectBreakpointSet (CommandInterpreter &interpreter); @@ -101,7 +102,7 @@ public: uint32_t m_line_num; uint32_t m_column; bool m_check_inlines; - std::string m_func_name; + std::vector<std::string> m_func_names; uint32_t m_func_name_type_mask; std::string m_func_regexp; std::string m_source_text_regexp; @@ -112,6 +113,9 @@ public: uint32_t m_thread_index; std::string m_thread_name; std::string m_queue_name; + bool m_catch_bp; + bool m_throw_bp; + lldb::LanguageType m_language; }; |