summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/SymbolFile/DWARF/DWARFLocationDescription.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Add support for the DWARFLocationList used by split-dwarfTamas Berghammer2015-09-161-175/+0
| | | | | | | | | Split-dwarf uses a different header format to specify the address range for the elements of the location lists. Differential revision: http://reviews.llvm.org/D12880 llvm-svn: 247789
* Add support for DW_OP_GNU_const_index to dwarf expressionTamas Berghammer2015-09-151-0/+1
| | | | | | | | DW_OP_GNU_const_index is a new opcode used when split dwarf is enabled Differential revision: http://reviews.llvm.org/D12849 llvm-svn: 247672
* Handle DW_OP_GNU_addr_index in DWARF expressionsTamas Berghammer2015-08-251-0/+2
| | | | | | Differential revision: http://reviews.llvm.org/D12290 llvm-svn: 245932
* Introduce DWARFDataExtractor for 64-Bit DWARF parsingEd Maste2013-10-241-3/+3
| | | | | Review: http://llvm-reviews.chandlerc.com/D2007 llvm-svn: 193368
* <rdar://problem/13069948>Greg Clayton2013-01-251-3/+3
| | | | | | | | | | | | Major fixed to allow reading files that are over 4GB. The main problems were that the DataExtractor was using 32 bit offsets as a data cursor, and since we mmap all of our object files we could run into cases where if we had a very large core file that was over 4GB, we were running into the 4GB boundary. So I defined a new "lldb::offset_t" which should be used for all file offsets. After making this change, I enabled warnings for data loss and for enexpected implicit conversions temporarily and found a ton of things that I fixed. Any functions that take an index internally, should use "size_t" for any indexes and also should return "size_t" for any sizes of collections. llvm-svn: 173463
* Resolve printf formatting warnings on Linux:Daniel Malea2012-11-291-11/+11
| | | | | | | | - use macros from inttypes.h for format strings instead of OS-specific types Patch from Matt Kopec! llvm-svn: 168945
* Fix a bunch of places where we were passing Stream *'s but wereJim Ingham2011-08-271-18/+18
| | | | | | never checking them for NULL. Pass a reference instead. llvm-svn: 138694
* Did a lot of code cleanup.Greg Clayton2010-11-091-1/+1
| | | | | | | | Fixed the DWARF plug-in such that when it gets all attributes for a DIE, that it omits the DW_AT_sibling and DW_AT_declaration when getting attributes from a DW_AT_abstract_origin or DW_AT_specification DIE. llvm-svn: 118654
* Initial checkin of lldb code from internal Apple repo.Chris Lattner2010-06-081-0/+172
llvm-svn: 105619
OpenPOWER on IntegriCloud