You've already forked linux-packaging-mono
acceptance-tests
data
debian
docs
external
Newtonsoft.Json
api-doc-tools
api-snapshot
aspnetwebstack
bdwgc
binary-reference-assemblies
bockbuild
boringssl
cecil
cecil-legacy
corefx
corert
helix-binaries
ikdasm
ikvm
illinker-test-assets
linker
llvm-project
clang
clang-tools-extra
compiler-rt
eng
libcxx
libcxxabi
libunwind
lld
lldb
cmake
docs
examples
include
lit
lldb.xcodeproj
lldb.xcworkspace
packages
resources
scripts
Python
Xcode
interface
SBAddress.i
SBAttachInfo.i
SBBlock.i
SBBreakpoint.i
SBBreakpointLocation.i
SBBreakpointName.i
SBBroadcaster.i
SBCommandInterpreter.i
SBCommandReturnObject.i
SBCommunication.i
SBCompileUnit.i
SBData.i
SBDebugger.i
SBDeclaration.i
SBError.i
SBEvent.i
SBExecutionContext.i
SBExpressionOptions.i
SBFileSpec.i
SBFileSpecList.i
SBFrame.i
SBFunction.i
SBHostOS.i
SBInstruction.i
SBInstructionList.i
SBLanguageRuntime.i
SBLaunchInfo.i
SBLineEntry.i
SBListener.i
SBMemoryRegionInfo.i
SBMemoryRegionInfoList.i
SBModule.i
SBModuleSpec.i
SBPlatform.i
SBProcess.i
SBProcessInfo.i
SBQueue.i
SBQueueItem.i
SBSection.i
SBSourceManager.i
SBStream.i
SBStringList.i
SBStructuredData.i
SBSymbol.i
SBSymbolContext.i
SBSymbolContextList.i
SBTarget.i
SBThread.i
SBThreadCollection.i
SBThreadPlan.i
SBTrace.i
SBTraceOptions.i
SBType.i
SBTypeCategory.i
SBTypeEnumMember.i
SBTypeFilter.i
SBTypeFormat.i
SBTypeNameSpecifier.i
SBTypeSummary.i
SBTypeSynthetic.i
SBUnixSignals.i
SBValue.i
SBValueList.i
SBVariablesOptions.i
SBWatchpoint.i
swig_bot_lib
CMakeLists.txt
analyze-project-deps.py
build-lldb-llvm-clang
buildbot.py
checkpoint-llvm.pl
disasm-gdb-remote.pl
finish-swig-wrapper-classes.sh
finishSwigWrapperClasses.py
framework-header-fix.sh
generate-vers.pl
get_relative_lib_dir.py
install-lldb.sh
install_custom_python.py
lldb.swig
prepare_bindings.py
sed-sources
shush
swig_bot.py
use_lldb_suite.py
utilsArgsParse.py
utilsDebug.py
utilsOsType.py
verify_api.py
source
third_party
tools
unittests
utils
www
.arcconfig
.clang-format
.gitignore
CMakeLists.txt
CODE_OWNERS.txt
INSTALL.txt
LICENSE.TXT
use_lldb_suite_root.py
llvm
nuget
openmp
polly
Directory.Build.props
Directory.Build.targets
NuGet.config
azure-pipelines.yml
build.cmd
build.sh
dir.common.props
global.json
llvm.proj
mxe-Win64.cmake.in
nuget-buildtasks
nunit-lite
roslyn-binaries
rx
xunit-binaries
how-to-bump-roslyn-binaries.md
ikvm-native
llvm
m4
man
mcs
mono
msvc
netcore
po
runtime
samples
scripts
support
tools
COPYING.LIB
LICENSE
Makefile.am
Makefile.in
NEWS
README.md
acinclude.m4
aclocal.m4
autogen.sh
code_of_conduct.md
compile
config.guess
config.h.in
config.rpath
config.sub
configure
configure.ac
depcomp
install-sh
ltmain.sh
missing
mkinstalldirs
mono-uninstalled.pc.in
test-driver
winconfig.h
146 lines
5.3 KiB
OpenEdge ABL
146 lines
5.3 KiB
OpenEdge ABL
![]() |
//===-- SWIG Interface for SBFunction ---------------------------*- 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 generic function, which can be inlined or not.
|
||
|
|
||
|
For example (from test/lldbutil.py, but slightly modified for doc purpose),
|
||
|
|
||
|
...
|
||
|
|
||
|
frame = thread.GetFrameAtIndex(i)
|
||
|
addr = frame.GetPCAddress()
|
||
|
load_addr = addr.GetLoadAddress(target)
|
||
|
function = frame.GetFunction()
|
||
|
mod_name = frame.GetModule().GetFileSpec().GetFilename()
|
||
|
|
||
|
if not function:
|
||
|
# No debug info for 'function'.
|
||
|
symbol = frame.GetSymbol()
|
||
|
file_addr = addr.GetFileAddress()
|
||
|
start_addr = symbol.GetStartAddress().GetFileAddress()
|
||
|
symbol_name = symbol.GetName()
|
||
|
symbol_offset = file_addr - start_addr
|
||
|
print >> output, ' frame #{num}: {addr:#016x} {mod}`{symbol} + {offset}'.format(
|
||
|
num=i, addr=load_addr, mod=mod_name, symbol=symbol_name, offset=symbol_offset)
|
||
|
else:
|
||
|
# Debug info is available for 'function'.
|
||
|
func_name = frame.GetFunctionName()
|
||
|
file_name = frame.GetLineEntry().GetFileSpec().GetFilename()
|
||
|
line_num = frame.GetLineEntry().GetLine()
|
||
|
print >> output, ' frame #{num}: {addr:#016x} {mod}`{func} at {file}:{line} {args}'.format(
|
||
|
num=i, addr=load_addr, mod=mod_name,
|
||
|
func='%s [inlined]' % func_name] if frame.IsInlined() else func_name,
|
||
|
file=file_name, line=line_num, args=get_args_as_string(frame, showFuncName=False))
|
||
|
|
||
|
...
|
||
|
") SBFunction;
|
||
|
class SBFunction
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
SBFunction ();
|
||
|
|
||
|
SBFunction (const lldb::SBFunction &rhs);
|
||
|
|
||
|
~SBFunction ();
|
||
|
|
||
|
bool
|
||
|
IsValid () const;
|
||
|
|
||
|
const char *
|
||
|
GetName() const;
|
||
|
|
||
|
const char *
|
||
|
GetDisplayName() const;
|
||
|
|
||
|
const char *
|
||
|
GetMangledName () const;
|
||
|
|
||
|
lldb::SBInstructionList
|
||
|
GetInstructions (lldb::SBTarget target);
|
||
|
|
||
|
lldb::SBInstructionList
|
||
|
GetInstructions (lldb::SBTarget target, const char *flavor);
|
||
|
|
||
|
lldb::SBAddress
|
||
|
GetStartAddress ();
|
||
|
|
||
|
lldb::SBAddress
|
||
|
GetEndAddress ();
|
||
|
|
||
|
const char *
|
||
|
GetArgumentName (uint32_t arg_idx);
|
||
|
|
||
|
uint32_t
|
||
|
GetPrologueByteSize ();
|
||
|
|
||
|
lldb::SBType
|
||
|
GetType ();
|
||
|
|
||
|
lldb::SBBlock
|
||
|
GetBlock ();
|
||
|
|
||
|
lldb::LanguageType
|
||
|
GetLanguage ();
|
||
|
|
||
|
%feature("docstring", "
|
||
|
Returns true if the function was compiled with optimization.
|
||
|
Optimization, in this case, is meant to indicate that the debugger
|
||
|
experience may be confusing for the user -- variables optimized away,
|
||
|
stepping jumping between source lines -- and the driver may want to
|
||
|
provide some guidance to the user about this.
|
||
|
Returns false if unoptimized, or unknown.") GetIsOptimized;
|
||
|
bool
|
||
|
GetIsOptimized();
|
||
|
|
||
|
bool
|
||
|
GetDescription (lldb::SBStream &description);
|
||
|
|
||
|
bool
|
||
|
operator == (const lldb::SBFunction &rhs) const;
|
||
|
|
||
|
bool
|
||
|
operator != (const lldb::SBFunction &rhs) const;
|
||
|
|
||
|
%pythoncode %{
|
||
|
def get_instructions_from_current_target (self):
|
||
|
return self.GetInstructions (target)
|
||
|
|
||
|
__swig_getmethods__["addr"] = GetStartAddress
|
||
|
if _newclass: addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this function.''')
|
||
|
|
||
|
__swig_getmethods__["end_addr"] = GetEndAddress
|
||
|
if _newclass: end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object that represents the end address (lldb.SBAddress) for this function.''')
|
||
|
|
||
|
__swig_getmethods__["block"] = GetBlock
|
||
|
if _newclass: block = property(GetBlock, None, doc='''A read only property that returns an lldb object that represents the top level lexical block (lldb.SBBlock) for this function.''')
|
||
|
|
||
|
__swig_getmethods__["instructions"] = get_instructions_from_current_target
|
||
|
if _newclass: instructions = property(get_instructions_from_current_target, None, doc='''A read only property that returns an lldb object that represents the instructions (lldb.SBInstructionList) for this function.''')
|
||
|
|
||
|
__swig_getmethods__["mangled"] = GetMangledName
|
||
|
if _newclass: mangled = property(GetMangledName, None, doc='''A read only property that returns the mangled (linkage) name for this function as a string.''')
|
||
|
|
||
|
__swig_getmethods__["name"] = GetName
|
||
|
if _newclass: name = property(GetName, None, doc='''A read only property that returns the name for this function as a string.''')
|
||
|
|
||
|
__swig_getmethods__["prologue_size"] = GetPrologueByteSize
|
||
|
if _newclass: prologue_size = property(GetPrologueByteSize, None, doc='''A read only property that returns the size in bytes of the prologue instructions as an unsigned integer.''')
|
||
|
|
||
|
__swig_getmethods__["type"] = GetType
|
||
|
if _newclass: type = property(GetType, None, doc='''A read only property that returns an lldb object that represents the return type (lldb.SBType) for this function.''')
|
||
|
%}
|
||
|
|
||
|
};
|
||
|
|
||
|
} // namespace lldb
|