- Nov 15, 2012
-
-
rdar://problem/12125010Greg Clayton authored
Handle universal BSD archives correctly when parsing DWARF in .o files with debug map. llvm-svn: 168075
-
Jim Ingham authored
llvm-svn: 168071
-
rdar://problem/11782181Greg Clayton authored
Fixed an issue where lldb was setting breakpoints on too many methods when a partial function name with namespaces or class qualifiers was used. For example setting a breakpoint of "Foo::dealloc" was accidentally settings breakpoints on all objective C functions whose selector was "dealloc"... llvm-svn: 168053
-
Sean Callanan authored
expressions that refer to ivars will not work because Clang emits IR that refers to them to get the ivar offsets. However, it is possible to search the runtime for these values. I have added support for reading the relevant tables to the Objective-C runtime, and extended ClangExpressionDeclMap to query that information if and only if it doesn't find the symbols in the binary. Also added a testcase. <rdar://problem/12628122> llvm-svn: 168018
-
rdar://problem/12408181Enrico Granata authored
<rdar://problem/12408181> Test case to make sure this area of ObjC support does not regress in the future llvm-svn: 168000
-
- Nov 14, 2012
-
-
Jason Molenda authored
Thread::ResetFrameZeroRegisters() clear the UnwindLLDB object when resetting the thread's register state. llvm-svn: 167910
-
-
- Nov 13, 2012
-
-
Jim Ingham authored
Revision of the patch from Andrew Kaylor <andrew.kaylor@intel.com> to prevent missing an event added in WaitForEventsInternal, narrowing the time in which we are not accepting new events. Also, made everything that was protected private, since there really isn't any good reason why subclasses would have to muck with the listener internals. llvm-svn: 167857
-
Enrico Granata authored
llvm-svn: 167810
-
rdar://problem/11814875Enrico Granata authored
If a ValueObjectDynamic has no formatter, try using its static type to figure one out llvm-svn: 167803
-
Greg Clayton authored
llvm-svn: 167778
-
- Nov 12, 2012
-
-
Greg Clayton authored
New compiler warnings caught issues with the m_encoding_uid field that should have been a lldb::user_id_t type, but was a uint32_t a long time ago and never got updated. llvm-svn: 167774
-
Greg Clayton authored
Fixed an error in the ELF parser that was comparing a bool to 4 causing 32 bit ELF relocations to get parsed incorrectly. llvm-svn: 167773
-
Daniel Malea authored
llvm-svn: 167771
-
Daniel Malea authored
llvm-svn: 167770
-
Daniel Malea authored
Update platform section to mention Linux/FreeBSD local debugging support, and also mention that LLDB builds on Linux with clang and libstdc++/libc++. llvm-svn: 167768
-
Daniel Malea authored
- libstdc++ defines vector::erase(iterator) but not vector::erase(const_iterator) llvm-svn: 167764
-
rdar://problem/12153915Greg Clayton authored
When uniquing classes against one another we can't depend on any or all of the artificial functions (default ctor, dtor, copy ctor, move ctor, etc) being in each definition. Now we treat those separately and handle those to the best of our ability. llvm-svn: 167752
-
Filipe Cabecinhas authored
llvm-svn: 167751
-
Daniel Malea authored
- Add missing operator= definition for DelayedAddObjCClassProperty - needed to be compatible with libstdc++ vector implementation llvm-svn: 167747
-
Sean Callanan authored
llvm-svn: 167732
-
- Nov 10, 2012
-
-
Daniel Malea authored
llvm-svn: 167677
-
Jason Molenda authored
GCD queue names of threads to ProcessGDBRemote::GetDispatchQueueNameForThread() May need tweaking once this version is rolled out but visual inspection looks fine. <rdar://problem/12333100> llvm-svn: 167667
-
Jason Molenda authored
things like our favorite "cl_kernels" and so module_directory here can be NULL. llvm-svn: 167666
-
Jim Ingham authored
llvm-svn: 167656
-
- Nov 09, 2012
-
-
Greg Clayton authored
llvm-svn: 167637
-
Filipe Cabecinhas authored
llvm-svn: 167636
-
Jason Molenda authored
The objc 2 runtime doesn't run on Linux. llvm-svn: 167606
-
Jason Molenda authored
patch from Dan Malea, daniel.malea@intel.com. llvm-svn: 167605
-
Jason Molenda authored
<rdar://problem/12090979> llvm-svn: 167601
-
Jason Molenda authored
flags to the Linux makefiles to get the tests to run. llvm-svn: 167600
-
- Nov 08, 2012
-
-
Enrico Granata authored
Minor cleanups to the new ModuleList notification APIs: passing in the ModuleList as part of the callbacks, and not copying the notifier as part of copy constructing and assigning llvm-svn: 167592
-
Enrico Granata authored
Adding support for loading the scripting resource as part of a framework, lacking the dSYM bundle, or if the bundle has no Pythonic resources whatsoever Solving an issue where "command script import" would fail to pick the file indicated by the user as a result of something with the same name being in an earlier position in sys.path llvm-svn: 167570
-
rdar://problem/12586350Enrico Granata authored
This commit does three things: (a) introduces a new notification model for adding/removing/changing modules to a ModuleList, and applies it to the Target's ModuleList, so that we make sure to always trigger the right set of actions whenever modules come and go in a target. Certain spots in the code still need to "manually" notify the Target for several reasons, so this is a work in progress (b) adds a new capability to the Platforms: locating a scripting resources associated to a module. A scripting resource is a Python file that can load commands, formatters, ... and any other action of interest corresponding to the loading of a module. At the moment, this is only implemented on Mac OS X and only for files inside .dSYM bundles - the next step is going to be letting the frameworks themselves hold their scripting resources. Implementors of platforms for other systems are free to implement "the right thing" for their own worlds (c) hooking up items (a) and (b) so that targets auto-load the scripting resources as the corresponding modules get loaded in a target. This has a few caveats at the moment: - the user needs to manually add the .py file to the dSYM (soon, it will also work in the framework itself) - if two modules with the same name show up during the lifetime of an LLDB session, the second one won't be able to load its scripting resource, but will otherwise work just fine llvm-svn: 167569
-
Jason Molenda authored
DynamicLoaderDarwinKernel::OSKextLoadedKextSummary::LoadImageUsingMemoryModule where it assumed that a kernel had been found in memory, when that may not be the case when we're attaching to a device early in the boot process. <rdar://problem/12638140> llvm-svn: 167564
-
Greg Clayton authored
llvm-svn: 167563
-
rdar://problem/12645617Greg Clayton authored
<rdar://problem/12153915> (partial fix) Remove an assert and place an error message instead so we don't crash when we run into a type tag that we don't recognize. We will now emit a warning so that hopefully we can get a bug report that has example code that shows what we are missing. Also fixed a case when trying to unique one type to another where we would confuse concrete instances of methods with their definitions and end up not correctly registering the types. llvm-svn: 167557
-
- Nov 07, 2012
-
-
Jim Ingham authored
x/9i we actually calculated the size of 9 instructions. Then we multiplied it by the count again to get the total amount we should fetch, so we thought 9 x86_64 instructions took over 1K to fetch... <rdar://problem/12649027> llvm-svn: 167520
-
Sean Callanan authored
Also fixed a bug where the Objective-C runtime would not properly report that it found a class if (a) it had to build the ObjCInterfaceDecl for the class and (b) logging was enabled. <rdar://problem/12641180> llvm-svn: 167516
-
rdar://problem/12647273Greg Clayton authored
Added the ability to get the full process list when using the --applist option in debugserver. llvm-svn: 167502
-