- 0e660f5 For the language check in GetObjectDescription, if we can't find a language runtime for the value we're looking at, BUT it IS at least a pointer, try the ObjCRuntime language. That's currently the only language runtime that has an object description method anyway... by Jim Ingham · 14 years ago
- a7a9c89 "frame variable" requires that the process be running and paused or there aren't any frames... So mark the command properly as such. by Jim Ingham · 14 years ago
- 0ace30f Add a test case for the SBFrame APIs. In particular, it uses the frame API to by Johnny Chen · 14 years ago
- ba1c82d No need to pass an empty string as an arg or as an env string to the SBTarget.LaunchProcess() API. by Johnny Chen · 14 years ago
- 17ac79b Simplify the breakpoint command function. Instead of fetching the command interpreter by Johnny Chen · 14 years ago
- e5001f5 Broadcaster::AddListener(): Bail out early if the passed in Listener pointer is by Johnny Chen · 14 years ago
- be9f0b9 Modify one assertion message. by Johnny Chen · 14 years ago
- d4c5cd5 RegisterContextLLDB.cpp (InitializeNonZerothFrame): If we get a by Jason Molenda · 14 years ago
- ec8ebe9 Fix some typos in the docstrings and also update the test method names. by Johnny Chen · 14 years ago
- 69450cd Add test cases for registering a listener object with the broadcaster of a process by Johnny Chen · 14 years ago
- 0137f91 Rename the test methods to be more meaningful. by Johnny Chen · 14 years ago
- c132a18 Set the debugger to asynchronous mode before using the Python API call to kill by Johnny Chen · 14 years ago
- a2cec4f Updated Xcode build version to lldb-37 and debugserver-123. by Greg Clayton · 14 years ago
- add437a Fix typo. by Johnny Chen · 14 years ago
- ca4c724 Added python_api/event/TestEvents.py to get the listener object associated with the by Johnny Chen · 14 years ago
- f5c9ffb Remove an assertion that is causing crashes. We do need to find a way to reproduce when this assertion asserts, but we should crash our debug session because of it. For now we log to stderr in hope of tracking it down. by Greg Clayton · 14 years ago
- 7de5fde The recent change in argument parsing is messing up the emacs lldb mode's capability to properly by Johnny Chen · 14 years ago
- 9e3f746 Patch from Stephen: by Johnny Chen · 14 years ago
- ff7c3e9 Patch from Stephen Wilson: by Johnny Chen · 14 years ago
- 7add599 Change the test case test_set_prompt() to no longer require quotes around lldb2 in: by Johnny Chen · 14 years ago
- 0d6e36a Patch from Stephen Wilson: by Johnny Chen · 14 years ago
- bdcda46 The LLDB API (lldb::SB*) is now thread safe! by Greg Clayton · 14 years ago
- f5e4326 Patch from Stephen Wilson: by Johnny Chen · 14 years ago
- c044686 by Caroline Tice · 14 years ago
- 15bc1f5 Line tables were trying to be too clever and only use 24 bits for a line by Greg Clayton · 14 years ago
- 80733ea Removed logging code that I accidentally left in after recent changes. by Greg Clayton · 14 years ago
- 928d130 Improved our argument parsing abilities to be able to handle stuff more like by Greg Clayton · 14 years ago
- b73620c Linux patches from Stephen Wilson. by Greg Clayton · 14 years ago
- 576b965 Linux patches from Stephen Wilson. by Greg Clayton · 14 years ago
- ca66a5f Linux patches from Stephen Wilson. by Greg Clayton · 14 years ago
- f6d8b67 Linux patches from Stephen Wilson. by Greg Clayton · 14 years ago
- d6dfe04 Linux patches from Stephen Wilson. by Greg Clayton · 14 years ago
- 14243ea Fixed the handling of the _cmd parameter in the i386 ABI. by Sean Callanan · 14 years ago
- 2a99b2a Fix wrong test logic -- should pass "-s address" option to "image dump symtab" by Johnny Chen · 14 years ago
- 3b2cfc2 Bumped Xcode project versions to for lldb-36 and debugserver-122. by Greg Clayton · 14 years ago
- dad0b76 Removed darwin specific CPU type defines to make UnwindAssemblyProfiler_x86 able to compile on linux (patch from Stephen Wilson). by Greg Clayton · 14 years ago
- 6e889b1 Removed libunwind sources as we aren't using them anymore. by Greg Clayton · 14 years ago
- c5157ec Added access to set the current stack frame within a thread so any command by Greg Clayton · 14 years ago
- eb04783 Modify the regexp to match the debugger output of the 'Up Stack' and 'Down Stack' by Johnny Chen · 14 years ago
- e01879a Fixes for linux building from Stephen Wilson. by Greg Clayton · 14 years ago
- adb909b Fixes for linux building from Stephen Wilson. by Greg Clayton · 14 years ago
- 6d29aeb Added header doc for the recently added Process::ReadUnsignedInteger (addr_t addr, size_t int_byte_size, Error &error) function. by Greg Clayton · 14 years ago
- f72fdee Added the ability to read unsigned integers from the Process: by Greg Clayton · 14 years ago
- e404746 Use SBModule.GetDescription(SBStream) API to get the module description to match by Johnny Chen · 14 years ago
- 6c884d2 Update the comment section of blacklist.py with the command line to reproduce the crash. by Johnny Chen · 14 years ago
- 01cd93d Remove #include of non-existant lldb/Expression/ASTSplitConsumer.h by Jason Molenda · 14 years ago
- 05a5a1b Implemented a feature where the expression parser by Sean Callanan · 14 years ago
- dc3e063 Patch from Stephen Wilson: by Johnny Chen · 14 years ago
- 002e869 Add python_api/symbol-context to test getting the symbol context while stopped by Johnny Chen · 14 years ago
- c1955f2 Patch by Stephen Wilson to make Swig happy building on linux. by Johnny Chen · 14 years ago
- cf660db Fix one of the golden output of "frame variable -t *self" to be: by Johnny Chen · 14 years ago
- b3e7181 Fix typos in SBBreakpoint::GetThreadIndex()/GetThreadName(), and test sequences by Johnny Chen · 14 years ago
- 1f3dd64 Fix invalid conversion from "const char *" to "char *" for linux systems. strchr() on darwin returns "char *" so we weren't seeing this issue on MacOSX. by Greg Clayton · 14 years ago
- a625387 Fixed an error where the thread index was being returned as zero in "uint32_t SBBreakpoint::GetThreadIndex() const" even when it isn't specified. It should be UINT32_MAX to indicate there is no thread index set for the breakpoint (the breakpoint isn't thread specific). Also fixed the ThreadSpec.cpp to use UINT32_MAX instead of -1. Fixed the logging Printf statement in "uint32_t SBBreakpoint::GetThreadIndex() const" to not print the address of the "index" function from <string.h>! by Greg Clayton · 14 years ago
- fd570ba Added a test for finding the correct values for ivars when a property causes the ivar offsets by Jim Ingham · 14 years ago
- ba23f58 Add an entry for test case BasicExprCommandsTestCase.test_evaluate_expression_python, by Johnny Chen · 14 years ago
- 67637d8 Add termination instructions when entering the interactive script interpreter. by Caroline Tice · 14 years ago
- d36f590 by Caroline Tice · 14 years ago
- c3b61d2 Fixed the "expression" command object to use the StackFrame::GetValueForExpressionPath() by Greg Clayton · 14 years ago
- 5d1ff14 Move the demangle-failed indication out a bit so other failing cases by Jason Molenda · 14 years ago
- 6983cda Fix a crash on some platforms where a dSYM for a system library lists a DW_AT_mips_linkage_name for by Jason Molenda · 14 years ago
- 3cdf729 Modify the test case to run under ['gcc', 'llvm-gcc', 'clang'] x ['x86_64', 'i386'] by Johnny Chen · 14 years ago
- 387fe61 Add test cases to make sure the Command Interpreter is handling by Caroline Tice · 14 years ago
- 1decbac Rearrange some statements so that the adding of teardown hook follows immediately by Johnny Chen · 14 years ago
- a50971f Make the TestSettings.py test cases use different output filenames: by Johnny Chen · 14 years ago
- 4370585 Fixed a crasher in the DWARF log channel code. by Greg Clayton · 14 years ago
- 26923fe Updated the code signing instructions to be more complete. by Greg Clayton · 14 years ago
- 539b3ef Removed unused files that were out of date and causing issues with the by Greg Clayton · 14 years ago
- ec88274 Execute the test case teardown hooks in a LIFO (last in, first out) order. by Johnny Chen · 14 years ago
- b201736 Added a test case LoadUnloadTestCase.test_dyld_library_path to test launching a process by Johnny Chen · 14 years ago
- cf03765 Fix the completion of "fr " and the like. by Jim Ingham · 14 years ago
- a8e2ea7 Modify test cases to accomodate Python API change: by Johnny Chen · 14 years ago
- 56d2fc4 by Caroline Tice · 14 years ago
- 4e9267d Changed: by Greg Clayton · 14 years ago
- d1a4796 Change the golden output so that merely evaluating an existing persistent variable by Johnny Chen · 14 years ago
- 0c8a190 Fixed rdar://problem/8767055 test suite failure TestStaticVariables.py (ToT r121745). by Johnny Chen · 14 years ago
- dd62d72 Fixed SBFrame to properly check to make sure it has a valid m_opaque_sp object by Greg Clayton · 14 years ago
- 427f290 Modified LLDB expressions to not have to JIT and run code just to see variable by Greg Clayton · 14 years ago
- 047923c Bugfixes for the new "self" pointer handling. Specifically, by Sean Callanan · 14 years ago
- 3aa7da5 Added support for generating expressions that have by Sean Callanan · 14 years ago
- 7a4512b Add TestBreakpointIgnoreCount.py to exercise the breakpoint ignore count features, by Johnny Chen · 14 years ago
- 4877965 Revert a small but important part of the EOF handling code that Greg by Caroline Tice · 14 years ago
- 5aa1ebc Make the test case SourceManagerTestCase.display_source_python stronger by also by Johnny Chen · 14 years ago
- ff5cac2 Fixed a crasher where when a ProcessGDBRemote class was being destroyed, it would eventually destroy the dynamic loader (when the lldb_private::Process::m_dynamic_loader_ap destroys itself in the object member destructor chain). The dynamic loader was calling a pure virtual method in Process which was causing a crash. The quick fix is to reset the auto pointer in the ProcessGDBRemote destructor when ProcessGDBRemote is still a valid object with all its pure virtual functions intact. by Greg Clayton · 14 years ago
- 9e7958e Updated to latest Clang revision. This involved by Sean Callanan · 14 years ago
- b89274f Fixed a multi-threaded race condition that could happen when communication classes are shutting down. We currently don't protect communication connection classes against multi-threaded access. The connection is stored in the lldb_private::Communication.m_connection_ap auto_ptr member. We either need to add protections when accessing this class or not let anything racy occur. With this fix, we are doing the latter. by Greg Clayton · 14 years ago
- ab42902 Fixed an issue where the macosx dynamic loader, on the first shared library loaded notification, wasn't properly removing shared libraries from the target that didn't get loaded. This usually happens when a different shared library is loaded in place of another due to DYLD_LIBRARY_PATH or DYLD_FRAMEWORK_PATH environment variables. We now properly remove any images that didn't make it into the executable. by Greg Clayton · 14 years ago
- ea49cc7 Added the ability for SBTarget to resolve load addresses (convert lldb::addr_t values into resolved SBAddress objects). These SBAddress objects can then be used to resolve a symbol context using "lldb::SBSymbolContext ResolveSymbolContextForAddress (const lldb::SBAddress& addr, uint32_t resolve_scope);". by Greg Clayton · 14 years ago
- ea6e3df Fix bug where using incomplete strings for command names causes by Caroline Tice · 14 years ago
- e5791dd Add test_display_source_python() test case to TestSourceManager.py which uses by Johnny Chen · 14 years ago
- 887d251 Made all LLDB-generated ASTContexts have valid by Sean Callanan · 14 years ago
- 3f1696c Make sure that @python_api_test is only used to decorate a test method, not the by Johnny Chen · 14 years ago
- 494735d Simplified the code that handles overloaded operator names. by Sean Callanan · 14 years ago
- cc659ad Do not specify both '-a' and '+a' at the same time. by Johnny Chen · 14 years ago
- 3ebdacc Add a '+a' command line option to the test driver to run only the Python API tests. by Johnny Chen · 14 years ago
- ec953b5 Add the @python_api_test decorator for two test cases. by Johnny Chen · 14 years ago
- ad5518d Fix some typo in method names and docstrings. by Johnny Chen · 14 years ago
- 9ac4be9 Added some tests for ObjC stepping, step into ordinary and stret methods, and stepping by Jim Ingham · 14 years ago
- c2c9a14 Fixed detection of overloaded operators in type by Sean Callanan · 14 years ago
- 0678f8e Add @python_api_test decorator to the remaining Test*.py files. by Johnny Chen · 14 years ago