- Mar 08, 2014
-
-
Virgile Bello authored
llvm-svn: 203350
-
Virgile Bello authored
llvm-svn: 203349
-
Virgile Bello authored
llvm-svn: 203348
-
Jason Molenda authored
llvm-svn: 203330
-
Jason Molenda authored
llvm-svn: 203312
-
Jason Molenda authored
this is not installing itself for Mach-O binaries. llvm-svn: 203310
-
- Mar 07, 2014
-
-
Greg Clayton authored
llvm-svn: 203292
-
Greg Clayton authored
Verify we have a correct ELF or Mach core file before we return a valid instace of ProcessElfCore or ProcessMachCore respectively. llvm-svn: 203274
-
Jim Ingham authored
or the lower levels of the Process won't be able to restart. <rdar://problem/16244835> llvm-svn: 203233
-
Jim Ingham authored
<rdar://problem/16256532> llvm-svn: 203232
-
Jim Ingham authored
llvm-svn: 203231
-
Ben Langmuir authored
llvm-svn: 203217
-
Jason Molenda authored
not going to key off of the ELF object file like I'd intended. Revert my change in r203205; also revert Greg's change in r203107 which builds ProcessElfCore on non-Linux/FreeBSD systems for the moment until we can straighten this out. llvm-svn: 203207
-
Jason Molenda authored
ProcessMachCore because it doesn't check the format of the file up front. (this is only now happening because of Greg's change in r203178 to build ProcessElfCore for non-Linux/FreeBSD hosts). <rdar://problem/16257533> llvm-svn: 203205
-
Ahmed Charles authored
llvm-svn: 203200
-
Greg Clayton authored
llvm-svn: 203185
-
Greg Clayton authored
Author: ace2001ac Date: Thu Mar 6 05:30:34 2014 New Revision: 203107 URL: http://llvm.org/viewvc/llvm-project?rev=203107&view=rev Log: Fix Windows build break introduced in r203035. Add '#if defined(__linux__) || defined(__FreeBSD__)' around JITLoaderGDB and ProcessElfCore, which are only built on Linux and FreeBSD. Modified: lldb/trunk/source/lldb.cpp Windows will need to start building all files necessary so that JITLoaderGDB and ProcessElfCore can build since they should work on all platforms. llvm-svn: 203178
-
- Mar 06, 2014
-
-
Ahmed Charles authored
Add '#if defined(__linux__) || defined(__FreeBSD__)' around JITLoaderGDB and ProcessElfCore, which are only built on Linux and FreeBSD. llvm-svn: 203107
-
Jason Molenda authored
hold a strong pointer to that extended backtrace thread in the Process just like we do for asking a thread's extended backtrace. Also, give extended backtrace threads an invalid ThreadIndexID number. We'll still give them valid thread_id's. Clients who want to know the original thread's IndexID can call GetExtendedBacktraceOriginatingIndexID(). <rdar://problem/16126034> llvm-svn: 203088
-
Jim Ingham authored
Temporarily disable the JIT loading detector till we figure out why it crashes when lldb follows through exec's... llvm-svn: 203068
-
Greg Clayton authored
Moved JITLoader.cpp and JITLoaderList.cpp over into "source/Target" since the header files were in "include/lldb/Target". Also enabled the ELF Core file support in all builds since the header files have been properly separated from ProcessMonitor. llvm-svn: 203035
-
Jason Molenda authored
Add a cast for a size_t / PRIu64 printf formatter. llvm-svn: 203030
-
- Mar 05, 2014
-
-
Ed Maste authored
llvm-svn: 202980
-
Ed Maste authored
llvm-svn: 202976
-
Andrew MacPherson authored
Add support for JIT debugging on Linux using the GDB JIT interface. Patch written with Keno Fischer. llvm-svn: 202956
-
Jason Molenda authored
with Greg's change to how we load modules in r202890. llvm-svn: 202933
-
Steve Pucci authored
ProcessGDBRemote::GetAuxvData obtains the auxv from a remote gdbserver (via a binary-data packet), and returns the data as a DataBufferSP. The patch includes a small fix to GDBRemoteCommunicationClient::SendPacketsAndConcatenateResponses() to support binary file format packet returns (by not assuming each binary packet is a null-terminated string when concatenating them). llvm-svn: 202907
-
- Mar 04, 2014
-
-
Sean Callanan authored
exceed the bounds of the backing memory. <rdar://problem/16088322> llvm-svn: 202899
-
Greg Clayton authored
Fixed SBDebugger.CreateTarget("filename") and also make sure remote targets don't pickup bogus locally cached files. <rdar://problem/16217254> <rdar://problem/16078651> llvm-svn: 202890
-
Todd Fiala authored
This change uses a fixed known offset for the Linux i386 DR0 register. This change also undoes the 32-bit wordsize change from r169645 that revolved around being 32-bit/64-bit friendly in WriteRegOperation::Execute within the Linux ProcessMonitor.cpp. I ran all the tests on x86_64 Linux with no failures. I also ran some simple tests with 32-bit Linux exe on x86_64 host and 32-bit linux exe on i686 32-bit host and these worked fine. Note (from Todd): the UserData struct in the Linux i386 register context (only used by Linux i386 host running Linux 32-bit inferior) is out of sync with what shows up in the sys/user.h for an 32-bit Linux build (per an earlier change of mine to make it look more like x86_64 host running x86 exe). I think we should (1) make i386 Linux targets run using the same register context (and correct ones) on i386 and x86_64 linux hosts if that is possible, and (2) we could use some tests around the register handling, particularly to verify things like DR0 registers are in the right spots on host/target combos that we can verify vs. known correct values. Change by Matthew Gardiner. llvm-svn: 202887
-
Jim Ingham authored
llvm-svn: 202782
-
Jason Molenda authored
Temporarily revert part of Greg's changes in r202738 which are causing problems with the testsuite and SBDebugger::CreateTarget(). llvm-svn: 202776
-
- Mar 03, 2014
-
-
Greg Clayton authored
llvm-svn: 202756
-
Jim Ingham authored
llvm-svn: 202740
-
Greg Clayton authored
"size_t" isn't always 64 bit, it is 32 bit on 32 bit systems. All printf style statements that were assuming size_t were 64 bit were changed, and they were also changed to display them as unsigned values as "size_t" isn't signed. If you print anything with 'size_t', please cast it to "uint64_t" in the printf and use PRIu64 or PRIx64. llvm-svn: 202738
-
Deepak Panickal authored
llvm-svn: 202726
-
Deepak Panickal authored
llvm-svn: 202725
-
Deepak Panickal authored
llvm-svn: 202724
-
Deepak Panickal authored
llvm-svn: 202723
-
Ed Maste authored
This seems reasonable and the BackticksWithNoTargetTestCase suggests it should be this way. llvm-svn: 202722
-