diff options
author | Jason Molenda <jmolenda@apple.com> | 2014-02-14 05:06:49 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2014-02-14 05:06:49 +0000 |
commit | a4bea72ee72a8e477e9f6fd139ad24754efeac02 (patch) | |
tree | a561e13249c1d23f9504d6106199ad824a88ce20 /lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h | |
parent | 293349e4d786d5f1561bd057f94d54cd90c00aed (diff) | |
download | bcm5719-llvm-a4bea72ee72a8e477e9f6fd139ad24754efeac02.tar.gz bcm5719-llvm-a4bea72ee72a8e477e9f6fd139ad24754efeac02.zip |
Add a new target setting, trap-handler-names, where a user can
specify a list of functions which should be treated as trap handlers.
This will be primarily useful to people working in non-user-level
process debugging - kernels and other standalone environments.
For most people, the trap handler functions provided by the Platform
plugin will be sufficient.
<rdar://problem/15835846>, <rdar://problem/15982682>
llvm-svn: 201386
Diffstat (limited to 'lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h')
-rw-r--r-- | lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h b/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h index 505457260da..bf9dd9a2931 100644 --- a/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h +++ b/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h @@ -123,6 +123,19 @@ private: bool IsSkipFrame () const; + + //------------------------------------------------------------------ + /// Determines if a SymbolContext is a trap handler or not + /// + /// Given a SymbolContext, determines if this is a trap handler function + /// aka asynchronous signal handler. + /// + /// @return + /// Returns true if the SymbolContext is a trap handler. + //------------------------------------------------------------------ + bool + IsTrapHandlerSymbol (lldb_private::Process *process, const lldb_private::SymbolContext &m_sym_ctx) const; + // Provide a location for where THIS function saved the CALLER's register value // Or a frame "below" this one saved it, i.e. a function called by this one, preserved a register that this // function didn't modify/use. |