summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugPubnamesSet.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove dead code for handling DWARF pubnamesAdrian McCarthy2018-02-121-95/+0
| | | | | | | | | | | | Summary: LLDB doesn't use this code, the code has no tests, and the code does suspicious things like hashing pointers to strings instead of the strings themselves. Subscribers: sanjoy, mgorny, JDevlieghere Differential Revision: https://reviews.llvm.org/D43202 llvm-svn: 324925
* Remove some dead code in FileSpec.Zachary Turner2017-03-031-0/+3
| | | | | | | | This in turn triggered some fallout where other files had been transitively picking up includes that they needed from FileSpec.h, so I've fixed those up as well. llvm-svn: 296855
* *** This commit represents a complete reformatting of the LLDB source codeKate Stone2016-09-061-65/+58
| | | | | | | | | | | | | | | | | | | | | | | *** to conform to clang-format’s LLVM style. This kind of mass change has *** two obvious implications: Firstly, merging this particular commit into a downstream fork may be a huge effort. Alternatively, it may be worth merging all changes up to this commit, performing the same reformatting operation locally, and then discarding the merge for this particular commit. The commands used to accomplish this reformatting were as follows (with current working directory as the root of the repository): find . \( -iname "*.c" -or -iname "*.cpp" -or -iname "*.h" -or -iname "*.mm" \) -exec clang-format -i {} + find . -iname "*.py" -exec autopep8 --in-place --aggressive --aggressive {} + ; The version of clang-format used was 3.9.0, and autopep8 was 1.2.4. Secondly, “blame” style tools will generally point to this commit instead of a meaningful prior commit. There are alternatives available that will attempt to look through this change and find the appropriate prior commit. YMMV. llvm-svn: 280751
* Introduce DWARFDataExtractor for 64-Bit DWARF parsingEd Maste2013-10-241-1/+1
| | | | | Review: http://llvm-reviews.chandlerc.com/D2007 llvm-svn: 193368
* Visual Studio 2013 compilation support: added some #ifdef _MSC_VER for ↵Virgile Bello2013-09-181-2/+2
| | | | | | unsupported code in MSVC. llvm-svn: 190924
* <rdar://problem/13069948>Greg Clayton2013-01-251-1/+1
| | | | | | | | | | | | 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
* When compiling with C++11, switch fromSean Callanan2012-08-091-0/+8
| | | | | | | | hash_multimap to unordered_multimap. <rdar://problem/11930775> llvm-svn: 161558
* Fixed the header guards.Greg Clayton2011-09-121-1/+1
| | | | llvm-svn: 139490
* Initial checkin of lldb code from internal Apple repo.Chris Lattner2010-06-081-0/+91
llvm-svn: 105619
OpenPOWER on IntegriCloud