summaryrefslogtreecommitdiffstats
path: root/lldb/tools/debugserver/source/DNBDataRef.cpp
Commit message (Collapse)AuthorAgeFilesLines
* <rdar://problem/13069948>Greg Clayton2013-01-251-99/+0
| | | | | | | | | | | | 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
* To silence the static analyzer.Johnny Chen2011-08-111-1/+1
| | | | llvm-svn: 137319
* Get rid of LONG_LONG_MAX and ULONG_LONG_MAX, and use LLONG_MAX and ULLONG_MAXGreg Clayton2011-04-011-1/+1
| | | | | | respectively. llvm-svn: 128720
* Initial checkin of lldb code from internal Apple repo.Chris Lattner2010-06-081-0/+485
llvm-svn: 105619
OpenPOWER on IntegriCloud