mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-26 06:48:51 -04:00

symbolication. Also improved the SBInstruction API to allow access to the instruction opcode name, mnemonics, comment and instruction data. Added the ability to edit SBLineEntry objects (change the file, line and column), and also allow SBSymbolContext objects to be modified (set module, comp unit, function, block, line entry or symbol). The SymbolContext and SBSymbolContext can now generate inlined call stack infomration for symbolication much easier using the SymbolContext::GetParentInlinedFrameInfo(...) and SBSymbolContext::GetParentInlinedFrameInfo(...) methods. llvm-svn: 140518
95 lines
2.3 KiB
C++
95 lines
2.3 KiB
C++
//===-- SWIG Interface for SBBlock ------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
namespace lldb {
|
|
|
|
%feature("docstring",
|
|
"Represents a lexical block. SBFunction contains SBBlock(s)."
|
|
) SBBlock;
|
|
class SBBlock
|
|
{
|
|
public:
|
|
|
|
SBBlock ();
|
|
|
|
SBBlock (const lldb::SBBlock &rhs);
|
|
|
|
~SBBlock ();
|
|
|
|
%feature("docstring",
|
|
"Does this block represent an inlined function?"
|
|
) IsInlined;
|
|
bool
|
|
IsInlined () const;
|
|
|
|
bool
|
|
IsValid () const;
|
|
|
|
%feature("docstring", "
|
|
Get the function name if this block represents an inlined function;
|
|
otherwise, return None.
|
|
") GetInlinedName;
|
|
const char *
|
|
GetInlinedName () const;
|
|
|
|
%feature("docstring", "
|
|
Get the call site file if this block represents an inlined function;
|
|
otherwise, return an invalid file spec.
|
|
") GetInlinedCallSiteFile;
|
|
lldb::SBFileSpec
|
|
GetInlinedCallSiteFile () const;
|
|
|
|
%feature("docstring", "
|
|
Get the call site line if this block represents an inlined function;
|
|
otherwise, return 0.
|
|
") GetInlinedCallSiteLine;
|
|
uint32_t
|
|
GetInlinedCallSiteLine () const;
|
|
|
|
%feature("docstring", "
|
|
Get the call site column if this block represents an inlined function;
|
|
otherwise, return 0.
|
|
") GetInlinedCallSiteColumn;
|
|
uint32_t
|
|
GetInlinedCallSiteColumn () const;
|
|
|
|
%feature("docstring", "Get the parent block.") GetParent;
|
|
lldb::SBBlock
|
|
GetParent ();
|
|
|
|
%feature("docstring", "Get the inlined block that is or contains this block.") GetContainingInlinedBlock;
|
|
lldb::SBBlock
|
|
GetContainingInlinedBlock ();
|
|
|
|
%feature("docstring", "Get the sibling block for this block.") GetSibling;
|
|
lldb::SBBlock
|
|
GetSibling ();
|
|
|
|
%feature("docstring", "Get the first child block.") GetFirstChild;
|
|
lldb::SBBlock
|
|
GetFirstChild ();
|
|
|
|
uint32_t
|
|
GetNumRanges ();
|
|
|
|
lldb::SBAddress
|
|
GetRangeStartAddress (uint32_t idx);
|
|
|
|
lldb::SBAddress
|
|
GetRangeEndAddress (uint32_t idx);
|
|
|
|
uint32_t
|
|
GetRangeIndexForBlockAddress (lldb::SBAddress block_addr);
|
|
|
|
bool
|
|
GetDescription (lldb::SBStream &description);
|
|
};
|
|
|
|
} // namespace lldb
|