- Apr 20, 2014
-
-
Ed Maste authored
Patch by Robert Matusewicz llvm-svn: 206711
-
- Apr 19, 2014
-
-
Saleem Abdulrasool authored
When compiling on Linux with GCC 4.8, compilation would fail due to the use of the offsetof macro. This is a standard macro, defined in stddef.h. Include this header to ensure that offsetof is declared. llvm-svn: 206702
-
Sean Callanan authored
using preprocessor constants for printf() format specifications. llvm-svn: 206679
-
- Apr 18, 2014
-
-
Todd Fiala authored
llvm-svn: 206620
-
Todd Fiala authored
llvm-svn: 206619
-
Todd Fiala authored
Follow-up patch coming to address test failures exposed by this change. llvm-svn: 206618
-
Jason Molenda authored
llvm-svn: 206524
-
- Apr 17, 2014
-
-
Greg Clayton authored
After updating to Xcode.5.1.1 LLDB framework stopped to support partial (only for STDIN) pseudo terminal usage in the debugging process. Here is the fix resolving this issue. Patch from Alexey Ushakov. llvm-svn: 206476
-
Ed Maste authored
Sponsored by: DARPA, AFRL Differential Revision: http://reviews.llvm.org/D3401 llvm-svn: 206469
-
Ed Maste authored
llvm-svn: 206468
-
Ed Maste authored
It will shortly be need by FreeBSD elf core support on all hosts. llvm-svn: 206466
-
- Apr 16, 2014
-
-
Jim Ingham authored
llvm-svn: 206351
-
Jim Ingham authored
interrupt. Do both of those. llvm-svn: 206350
-
- Apr 15, 2014
-
-
Ed Maste authored
llvm-svn: 206319
-
Sylvestre Ledru authored
llvm-svn: 206278
-
Sylvestre Ledru authored
Make LLDB builds against the current LLVM sources (modification on createMCDisassembler introduced by r206241) llvm-svn: 206277
-
Hafiz Abid Qadeer authored
I saw a complain about this code on the LLVM channel. It looks wrong to me as has_tag is a boolean. I am committing it as obvious. llvm-svn: 206270
-
Jason Molenda authored
when it is reading the kext table, in case we're reading out of a core file with corrupt contents in this region. <rdar://problem/16601915> llvm-svn: 206233
-
- Apr 14, 2014
-
-
Greg Clayton authored
Patch from Michael Tao. llvm-svn: 206213
-
Greg Clayton authored
llvm-svn: 206212
-
- Apr 11, 2014
-
-
Greg Clayton authored
Patch from Vyacheslav Karpukhin. llvm-svn: 206040
-
- Apr 10, 2014
-
-
rdar://problem/16540961Enrico Granata authored
The "unexpected value" message only matters to me, but is bound to make the experience more confusing for people when some uninitialized memory looks like an NSNumber and then can't be formatted properly, and that error comes out in the UI Just drop the error message entirely - nobody but me cares llvm-svn: 205978
-
rdar://problem/12055586Enrico Granata authored
Enable data formatters to see-through pointers/references to typedefs For instance, if Foo is a typedef to Bar, and there is a formatter for any/all of Bar*, Bar&, Bar&&, then Foo*, Foo&, and Foo&& should pick these up if Foo-specific formatters don't exist llvm-svn: 205939
-
- Apr 09, 2014
-
-
Enrico Granata authored
When trying to extract the type info for an r-value reference type, dont' cast to an l-value reference type llvm-svn: 205932
-
rdar://problem/16477472Enrico Granata authored
Set the correct FormatManager revision before starting to figure out the new formatters This can avoid entering some corner cases where as part of figuring out formatters we try to figure out dynamic types, and in turn that causes us to go back in trying to fetch new formatters - it is not only a futile exercise, it's also prone to endless recursion This would only cause a behavior change if getting this chain started would eventually cause something to run and alter the formatters, a very unlikely if at all possible sequence of events llvm-svn: 205928
-
Ed Maste authored
TIDs are conventionally shown as decimal values on FreeBSD and Linux. Thus, use the ${thread.id%tid} format string to display the thread ID, instead of a fixed hex format. llvm.org/pr19380 llvm-svn: 205912
-
Ed Maste authored
Calling mutex_lock from one thread and then mutex_unlock from another is not permitted. Replace the awkward mutex usage with a mutex and condition variable. llvm.org/pr18061 llvm-svn: 205900
-
Sean Callanan authored
dbg_value intrinsics appropriately. <rdar://problem/16504649> llvm-svn: 205825
-
Greg Clayton authored
Fixed module spec matching to not try to compare the platform path if there isn't one in the ModuleSpec that is asked if it matches. <rdar://problem/16558568> llvm-svn: 205816
-
- Apr 08, 2014
-
-
Jim Ingham authored
but by the time we go to halt, it has already stopped by hitting the function end breakpoint. That wasn't being shown to the threads so the Function call thread plan didn't know its job was done. <rdar://problem/16515785> llvm-svn: 205803
-
Jim Ingham authored
llvm-svn: 205790
-
Enrico Granata authored
Also, the stride is now a pointer so one can avoid passing it if it's not required llvm-svn: 205782
-
Ed Maste authored
error: declaration of constexpr static data member 'spec' requires an initializer llvm-svn: 205776
-
Ed Maste authored
Issue reported by Matthew Gardiner. Further work is necessary to synchronize LLDB's DWARF classes with the derivatives now in LLVM. llvm-svn: 205771
-
Virgile Bello authored
llvm-svn: 205770
-
Virgile Bello authored
llvm-svn: 205769
-
Greg Clayton authored
SBTarget::AddModule(const char *path, const char *triple, const char *uuid_cstr, const char *symfile); If "symfile" was filled in, it would cause us to not correctly add the module. Same goes for: SBTarget::AddModule(SBModuleSpec ...) Where you filled in the symfile. <rdar://problem/16529799> llvm-svn: 205750
-
- Apr 07, 2014
-
-
Greg Clayton authored
<rdar://problem/16535437> llvm-svn: 205740
-
Greg Clayton authored
llvm-svn: 205739
-
Greg Clayton authored
Disable JITLoaderGDB on "vendor == apple" for now due to performance slowdowns for every first run process as a global name lookup in all shared libraries if performed. <rdar://problem/16542894> llvm-svn: 205734
-