- Jul 18, 2014
-
-
Zachary Turner authored
another, attempting to fix it. llvm-svn: 213413
-
Zachary Turner authored
llvm-svn: 213411
-
Zachary Turner authored
lldb -P, which outputs its python path, works by using Host-layer facilities to get information about the loaded python module. This Host functionality was unimplemented on Windows, so this patch implements it. Additionally, it removes a pexpect dependency from the test runner and uses an equivalent invocation of subprocess. Reviewed by: Todd Fiala Differential Revision: http://reviews.llvm.org/D4548 llvm-svn: 213410
-
Greg Clayton authored
Fix the warning the correct way without making things crash when ENABLE_MUTEX_ERROR_CHECKING is non enabled. <rdar://problem/17703039> llvm-svn: 213394
-
Joerg Sonnenberger authored
llvm-svn: 213366
-
Zachary Turner authored
We were hardcoding "python" as the command to run the swig wrapper scripts. We should be using PYTHON_EXECUTABLE instead. llvm-svn: 213354
-
Zachary Turner authored
99% of this CL is simply moving calls to "import pexpect" to a more narrow scope - i.e. the function that actually runs a particular test. This way the test suite can run on Windows, which doesn't have pexpect, and the individual tests that use pexpect can be disabled on a platform-specific basis. Additionally, this CL fixes a few other cases of non-portability. Notably, using "ps" to get the command line, and os.uname() to determine the architecture don't work on Windows. Finally, this also adds a stubbed out builder_win32 module. The full test suite runs correctly on Windows after this CL, although there is still some work remaining on the C++ side to fix one-shot script commands from LLDB (e.g. script print "foo"), which currently deadlock. Reviewed by: Todd Fiala Differential Revision: http://reviews.llvm.org/D4573 llvm-svn: 213343
-
Greg Clayton authored
This fixes all of the hidden ivar test cases and any case where we try to find the full definition of an objective C class. This also means hidden ivars show up again. <rdar://problem/15458957> llvm.org/pr20270 llvm.org/pr20269 llvm.org/pr20272 llvm-svn: 213328
-
- Jul 17, 2014
-
-
Jim Ingham authored
llvm-svn: 213314
-
Zachary Turner authored
_lldb is built as an extension module on Windows. Normally to load an extension module named 'foo', Python would look for the file 'foo.pyd'. However, when a debug interpreter is used, Python will look for the file 'foo_d.pyd'. This change checks the build configuration and creates the correct symlink name based on the build configuration. llvm-svn: 213306
-
Jim Ingham authored
that in the returned Error. llvm-svn: 213294
-
Sean Callanan authored
numbers correctly. <rdar://problem/17708687> llvm-svn: 213284
-
Sean Callanan authored
- First, when logging, be helpful by printing the real name of the class; - Second, up the limit for number of classes from 16k to 128k, and put in an assertion (and better error handling when not in a debug configuration) when we cross that limit the next time. <rdar://problem/17052976> llvm-svn: 213218
-
- Jul 16, 2014
-
-
Greg Clayton authored
Modify the EFI KDP debugging to not use any dynamic loader since it does manual dynamic loading itself via python modules. Also track down the required binary by trying to locate the main executable module through LLDB's symbol and executable file locating code. <rdar://problem/16570258> llvm-svn: 213199
-
Greg Clayton authored
The problem was that we have an IOHandler thread that services the IOHandler stack. The command interepter is on the top of the stack and it receives a "expression ..." command, and it calls the IOHandlerIsComplete() callback in the command interpereter delegate which runs an expression. This causes the IOHandlerProcessSTDIO to be pushed, but since we are running the code from the IOHandler thread, it won't get run. When CTRL+C is pressed, we do deliver the interrupt to the IOHandlerProcessSTDIO::Interrupt() function, but it was always writing 'i' to the interrupt pipe, even if we weren't actively reading from the debugger input and the pipes. This fix works around the issue by directly issuing the async interrupt to the process if the process is running. A longer term more correct fix would to be run the IOHandler thread and have it just do the determination of the input and when complete input is received, run the code that handles that input on another thread and syncronize with that other thread to detect when more input is desired. That change is too big to make right now, so this fix will tide us over until we can get there. <rdar://problem/16556228> llvm-svn: 213196
-
Zachary Turner authored
llvm-svn: 213194
-
Todd Fiala authored
This value gets set to a max uint32_t value when there is no known limit; otherwise, it is set to a value appropriate for the platform. For the moment, only Linux, FreeBSD and NetBSD set it to 16. All other platforms set it to the max uint32_t value. Modifies the Process private state thread names to fit within a 16-character limit when the max thread name length is <= 16. These guarantee that the thread names can be distinguished within the first 16 characters. Prior to this change, those threads had names in the final dotted name segment that were not distinguishable within the first 16 characters. llvm-svn: 213183
-
Zachary Turner authored
r213171 renames the 'clangRewriteCore' library to 'clangRewrite'. This change simply updates the makefiles to reference the correct library name. llvm-svn: 213181
-
Todd Fiala authored
This change adds a member to the base test case for gdb-remote that indicates whether a stub makes two X stop notification reports on kill commands. This is set to true for debugserver tests. The test for killing an attached process after it's first stop notification has been modified to look at that flag and add an extra X packet matcher so the "unmatched packet warning" doesn't get emitted for the second X on MacOSX with debugserver. I also broke those tests out of the monolithic TestLldbGdbServer mega test case and put it in its own, new TestGdbRemoteKill.py file and test case. Tested: Ubuntu 14.04 x86_64, clang-3.5 built lldb, no test failures. MacOSX 10.9.4, Xcode 6.0 Beta 3 built lldb, no test failures. llvm-svn: 213166
-
Todd Fiala authored
This change comprises of additions and some minor changes in order that "kalimba" is listed as a supported platform and that debugging any kalimbas results in PlatformKalimba being associated with the target. The changes are as follows: * The PlatformKalimba implementation itself * A tweak to ArchSpec * .note parsing for Kalimba in ObjectFileELF.cpp * Plugin registration * Makefile additions Change by Matthew Gardiner Minor tweak for cmake and Xcode by Todd Fiala Tested: Ubuntu 14.04 x86_64, clang 3.5-built lldb, all tests pass. MacOSX 10.9.4, Xcode 6.0 Beta 1-built lldb, all tests pass. llvm-svn: 213158
-
Greg Clayton authored
Fixed the test case to use a runtime function prototype that will be correct ([NSString stringWithCString: "new"]) instead of one that won't (expression str = [NSString stringWithFormat: @"%cew", 'N']). The runtime doesn't track vararg functions correctly so we can't reconstitute the function correctly. Also fixed some expressions that used "str_id" whose type was "id" and do the necessary casting since "id" doesn't have any methods. llvm-svn: 213113
-
Greg Clayton authored
<rdar://problem/16322133> llvm.org/pr20267 llvm-svn: 213111
-
Greg Clayton authored
llvm-svn: 213106
-
- Jul 15, 2014
-
-
Jim Ingham authored
LinuxThread.cpp LinuxThread.h NativeRegisterContext.h ProcessLinux.cpp ProcessLinux.h ProcessMonitor.cpp ProcessMonitor.h Were inserted in the CopyFiles phase of the "desktop" aggregate target. That caused them to get copied to /usr/shared/man/man1 on install, which isn't right. Not sure why they were there... I removed them. If this was supposed to achieve some other purpose, we should discuss how to do that correctly on the mailing list. <rdar://problem/17642262> llvm-svn: 213094
-
Greg Clayton authored
Any commands that are executed through the public interface using SBCommandInterpreter::HandleCommand() are assumed to be in non-interactive mode. Any commands that want interactivity (stdin) will need to be executed through the normal command interpreter using the debugger's in/out/err file handles, or by using "command source". Individual commands through the API will have their STDIN disabled. The STDOUT and STDERR will be redirected into the SBCommandReturnObject argument to SBCommandInterpreter::HandleCommand() as usual. This helps with a deadlock situation in an IDE (Xcode) where the IDE was managing the breakpoint actions by setting a breakpoint callback and doing things manually. <rdar://problem/17386271> llvm-svn: 213023
-
Greg Clayton authored
<rdar://problem/17540766> llvm-svn: 213007
-
Greg Clayton authored
<rdar://problem/17604133> llvm-svn: 213004
-
- Jul 14, 2014
-
-
Todd Fiala authored
Now that llgs supports communicating the 0-port choose-a-port mechanism and can communicate that back to a caller via the --named-pipe option (at parity with debugserver), we use this mechanism to always start llgs and debugserver gdb-remote protocol tests without needing to use some port arbitration mechanism. This eliminates some potential intermittent failures vs. the previous random port and collision-avoidance strategy used. llvm-svn: 212923
-
- Jul 12, 2014
-
-
Ed Maste authored
s_listen_thread had the wrong type. llvm-svn: 212884
-
Todd Fiala authored
This is the last flag sent by lldb-platform that was not accepted by llgs and is accepted by debugserver. Conditionalized out a bit more code in prep for Windows support one day based on _WIN32 define. Updated the lldb-gdbserver usage string to represent recent updates to command line arguments (and some older ones like --attach pid). Implements https://github.com/tfiala/lldb/issues/37 llvm-svn: 212879
-
Ed Maste authored
The testrun now completes successfully on my FreeBSD 11.0-CURRENT laptop. There are some intermittent failures on the FreeBSD buildbot still, which should be addressed in later commits. llvm.org/pr20274 llvm-svn: 212878
-
Ed Maste authored
llvm.org/pr20282 llvm-svn: 212877
-
Todd Fiala authored
The --setsid (-S) option changes the session id for the lldb-gdbserver process. This is used by tools such as lldb-platform and allows the user to prevent llgs from being in the same session as a calling terminal session. This will prevents terminal group control signals from affecting lldb-gdbserver. See also: https://github.com/tfiala/lldb/issues/38 llvm-svn: 212873
-
Greg Clayton authored
lldb needs to support DW_op_piece masks for values in subregister and also to be able to piece together a value that is spread across multiple registers. Patch from Adrian Prantl. <rdar://problem/16040521> llvm-svn: 212867
-
Greg Clayton authored
<rdar://problem/15932248> llvm-svn: 212863
-
Greg Clayton authored
Remove assert now that we have a 'i' character that might come through as well as the 'q' character on the interrupt pipe. <rdar://problem/15840749> llvm-svn: 212856
-
Todd Fiala authored
Added a unit test to test debugserver and llgs compliance on --named-pipe support. Modified llgs to implement --named-pipe support. (Note: need to revisit with new generic pipe support). llvm-svn: 212854
-
Greg Clayton authored
Don't crash when a SBType is handed out through the API and later used after the module that owns the type is deleted. The fix adds a std::weak_ptr<Module> into the TypeImpl and fills in the weak pointer when possible. It also checks to make sure the module is still alive prior to using it which should make our API safer to use. <rdar://problem/15455145> llvm-svn: 212853
-
Greg Clayton authored
llvm-svn: 212852
-
- Jul 11, 2014
-
-
Todd Fiala authored
Modify ObjectFileELF::GetArchitecture() to avoid calling ParseSectionHeaders() when we have headers. Change by Matthew Gardiner. llvm-svn: 212825
-