diff options
| author | Alexey Samsonov <samsonov@google.com> | 2012-07-02 05:54:45 +0000 |
|---|---|---|
| committer | Alexey Samsonov <samsonov@google.com> | 2012-07-02 05:54:45 +0000 |
| commit | f4462fa3ca8c709b46604bcbcdc2641c23c078b7 (patch) | |
| tree | bc51d87c935ba7216a6ef85fa84b62d06ae3d43b /llvm/lib/DebugInfo/DWARFCompileUnit.h | |
| parent | 03afad8f1e750dad3d1241f511429f4337cf8282 (diff) | |
| download | bcm5719-llvm-f4462fa3ca8c709b46604bcbcdc2641c23c078b7.tar.gz bcm5719-llvm-f4462fa3ca8c709b46604bcbcdc2641c23c078b7.zip | |
This patch extends the libLLVMDebugInfo which contains a minimalistic DWARF parser:
1) DIContext is now able to return function name for a given instruction address (besides file/line info).
2) llvm-dwarfdump accepts flag --functions that prints the function name (if address is specified by --address flag).
3) test case that checks the basic functionality of llvm-dwarfdump added
llvm-svn: 159512
Diffstat (limited to 'llvm/lib/DebugInfo/DWARFCompileUnit.h')
| -rw-r--r-- | llvm/lib/DebugInfo/DWARFCompileUnit.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/DebugInfo/DWARFCompileUnit.h b/llvm/lib/DebugInfo/DWARFCompileUnit.h index d9167292a9d..dc558da7141 100644 --- a/llvm/lib/DebugInfo/DWARFCompileUnit.h +++ b/llvm/lib/DebugInfo/DWARFCompileUnit.h @@ -104,6 +104,11 @@ public: void buildAddressRangeTable(DWARFDebugAranges *debug_aranges, bool clear_dies_if_already_not_parsed); + /// getFunctionDIEForAddress - Returns pointer to parsed subprogram DIE, + /// address ranges of which contain the provided address, + /// or NULL if there is no such subprogram. The pointer + /// is valid until DWARFCompileUnit::clear() or clearDIEs() is called. + const DWARFDebugInfoEntryMinimal *getFunctionDIEForAddress(int64_t address); }; } |

