forked from OSchip/llvm-project
parent
b7a773626f
commit
491c3d72ac
|
@ -37,30 +37,68 @@ public:
|
||||||
operator = (const lldb::SBBlock &rhs);
|
operator = (const lldb::SBBlock &rhs);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef SWIG
|
||||||
|
%feature("docstring",
|
||||||
|
"Does this block represent an inlined function?"
|
||||||
|
) IsInlined;
|
||||||
|
#endif
|
||||||
bool
|
bool
|
||||||
IsInlined () const;
|
IsInlined () const;
|
||||||
|
|
||||||
bool
|
bool
|
||||||
IsValid () const;
|
IsValid () const;
|
||||||
|
|
||||||
|
#ifdef SWIG
|
||||||
|
%feature("autodoc",
|
||||||
|
"Get the function name if this block represents an inlined function;\n"
|
||||||
|
"otherwise, return None."
|
||||||
|
) GetInlinedName;
|
||||||
|
#endif
|
||||||
const char *
|
const char *
|
||||||
GetInlinedName () const;
|
GetInlinedName () const;
|
||||||
|
|
||||||
|
#ifdef SWIG
|
||||||
|
%feature("docstring",
|
||||||
|
"Get the call site file if this block represents an inlined function;\n"
|
||||||
|
"otherwise, return an invalid file spec."
|
||||||
|
) GetInlinedCallSiteFile;
|
||||||
|
#endif
|
||||||
lldb::SBFileSpec
|
lldb::SBFileSpec
|
||||||
GetInlinedCallSiteFile () const;
|
GetInlinedCallSiteFile () const;
|
||||||
|
|
||||||
|
#ifdef SWIG
|
||||||
|
%feature("docstring",
|
||||||
|
"Get the call site line if this block represents an inlined function;\n"
|
||||||
|
"otherwise, return 0."
|
||||||
|
) GetInlinedCallSiteLine;
|
||||||
|
#endif
|
||||||
uint32_t
|
uint32_t
|
||||||
GetInlinedCallSiteLine () const;
|
GetInlinedCallSiteLine () const;
|
||||||
|
|
||||||
|
#ifdef SWIG
|
||||||
|
%feature("docstring",
|
||||||
|
"Get the call site column if this block represents an inlined function;\n"
|
||||||
|
"otherwise, return 0."
|
||||||
|
) GetInlinedCallSiteColumn;
|
||||||
|
#endif
|
||||||
uint32_t
|
uint32_t
|
||||||
GetInlinedCallSiteColumn () const;
|
GetInlinedCallSiteColumn () const;
|
||||||
|
|
||||||
|
#ifdef SWIG
|
||||||
|
%feature("docstring", "Get the parent block.") GetParent;
|
||||||
|
#endif
|
||||||
lldb::SBBlock
|
lldb::SBBlock
|
||||||
GetParent ();
|
GetParent ();
|
||||||
|
|
||||||
|
#ifdef SWIG
|
||||||
|
%feature("docstring", "Get the sibling block for this block.") GetSibling;
|
||||||
|
#endif
|
||||||
lldb::SBBlock
|
lldb::SBBlock
|
||||||
GetSibling ();
|
GetSibling ();
|
||||||
|
|
||||||
|
#ifdef SWIG
|
||||||
|
%feature("docstring", "Get the first child block.") GetFirstChild;
|
||||||
|
#endif
|
||||||
lldb::SBBlock
|
lldb::SBBlock
|
||||||
GetFirstChild ();
|
GetFirstChild ();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue