- Mar 03, 2014
-
-
Deepak Panickal authored
llvm-svn: 202723
-
- Feb 28, 2014
-
-
Sean Callanan authored
read during materialization. First of all, report if we can't read the data for some reason. Second, consult the ValueObject's error and report that if there's some problem. <rdar://problem/16074201> llvm-svn: 202552
-
Greg Clayton authored
llvm-svn: 202535
-
Greg Clayton authored
I carefully reviewed exactly how the IOHandlers interact and found places where we weren't properly controlling things. There should be no overlapping prompts and all output should now come out in a controlled fashion. <rdar://problem/16111293> llvm-svn: 202525
-
- Feb 27, 2014
-
-
Sylvestre Ledru authored
llvm-svn: 202440
-
- Feb 24, 2014
-
-
Greg Clayton authored
llvm-svn: 202086
-
- Feb 19, 2014
-
-
Deepak Panickal authored
llvm-svn: 201665
-
- Feb 15, 2014
-
-
rdar://problem/16006373Enrico Granata authored
Revert the spirit of r199857 - a convincing case can be made that overriding a summary's format markers behind its back is not the right thing to do This commit reverts the behavior of the code to the previous model, and changes the test case to validate the opposite of what it was validating before llvm-svn: 201455
-
- Feb 14, 2014
-
-
Greg Clayton authored
Fixed deadlocks that could occur when using python for breakpoints, operating system plugins, and other async python usage. <rdar://problem/16054348> <rdar://problem/16040833> llvm-svn: 201372
-
- Feb 07, 2014
-
-
Greg Clayton authored
ObjectFile::SetLoadAddress (Target &target, lldb::addr_t value, bool value_is_offset); Now "value" is a slide if "value_is_offset" is true, and "value" is an image base address otherwise. All previous usage of this API was using slides. Updated the ObjectFileELF and ObjectFileMachO SetLoadAddress methods to do the right thing. Also updated the ObjectFileMachO::SetLoadAddress() function to not load __LINKEDIT when it isn't needed and to only load sections that belong to the executable object file. llvm-svn: 201003
-
Sean Callanan authored
values whose size differs from the register's size. llvm-svn: 200991
-
- Feb 06, 2014
-
-
Greg Clayton authored
llvm-svn: 200943
-
Steve Pucci authored
Move some code that was in DynamicLoaderPOSIXDLYD into the base class DynamicLoader. In the case of UpdateLoadedSections(), the test to see whether a file is loadable (its address is zero) is not generally applicable so that test is changed to a more universally applicable check for the SHF_ALLOC flag on the section. Also make it explicit that the reading of the module_id in DynamicLoaderPOSIXDYLD::GetThreadLocalData() is using a hardcoded size (of module_id) of 4, which might not be appropriate on big-endian 64-bit systems, leaving a FIXME comment in place. llvm-svn: 200939
-
- Feb 05, 2014
-
-
Greg Clayton authored
- empty lines in init files would repeat previous command and cause errors to be displayed - all options to control showing the command, its output, if it should stop on error or continue, weren't being obeyed. llvm-svn: 200860
-
- Feb 04, 2014
-
-
Greg Clayton authored
LLDB exits the command interpreter and thus LLDB when using a pty or file as the input handle and a blank line is entered (like when running under emacs). This is now fixed. <rdar://problem/15976187> llvm-svn: 200790
-
Ed Maste authored
llvm-svn: 200784
-
- Jan 31, 2014
-
-
Deepak Panickal authored
llvm-svn: 200565
-
Jim Ingham authored
<rdar://problem/15953271> llvm-svn: 200504
-
- Jan 30, 2014
-
-
Greg Clayton authored
Missing files for previous checkin that fixed: "script help (lldb.SBThread)" output stops after 2048 bytes are printed. <rdar://problem/15942977> llvm-svn: 200478
-
- Jan 28, 2014
-
-
Greg Clayton authored
llvm-svn: 200326
-
Greg Clayton authored
Fixed a crasher when handling process events that is due to a translation from the public API to the private API. llvm-svn: 200267
-
Greg Clayton authored
The many many benefits include: 1 - Input/Output/Error streams are now handled as real streams not a push style input 2 - auto completion in python embedded interpreter 3 - multi-line input for "script" and "expression" commands now allow you to edit previous/next lines using up and down arrow keys and this makes multi-line input actually a viable thing to use 4 - it is now possible to use curses to drive LLDB (please try the "gui" command) We will need to deal with and fix any buildbot failures and tests and arise now that input/output and error are correctly hooked up in all cases. llvm-svn: 200263
-
- Jan 25, 2014
-
-
Jason Molenda authored
GetU32 and GetU64, to use memcpy to copy bytes into a local buffer instead of having a (uint64_t *) etc local variable, pointing to the address, and dereferencing it. If compiled on a CPU where data alignment is required (e.g. the LDM instruction on armv7) and we try to GetU64 out of a mmap'ed DWARF file, that 8 byte quantity may not be world aligned and the program can get an unaligned memory access fault. <rdar://problem/15849231> llvm-svn: 200069
-
- Jan 23, 2014
-
-
Greg Clayton authored
Don't copy entire value into m_data unless we need to. If we did this and the entire variable failed to be read, we wouldn't be able to display any actual values that were in good memory. This will also make things more efficient by not have every struct/union/class/array copy its entire value into a ValueObject.m_data even though no one was using it. llvm-svn: 199953
-
Greg Clayton authored
<rdar://problem/15736085> llvm-svn: 199946
-
Enrico Granata authored
If a user specifies a format option to frame variable or expression, that format should prevail over whatever format(s) a summary specifies (see test case for an example) llvm-svn: 199857
-
Greg Clayton authored
<rdar://problem/15312873> llvm-svn: 199854
-
- Jan 18, 2014
-
-
Todd Fiala authored
ArchSpec now contains an optional distribution_id, with getters and setters. Host::GetArchitecture () sets it on non-Apple platforms using Host::GetDistributionId (). The distribution_id is ignored during ArchSpec comparisons. The gdb remote qHostInfo message transmits it, if set, via the distribution_id={id-value} key/value pair. Updated gdb remote docs to reflect this change. As before, GetDistributionId () returns nothing on non-Linux platforms at this time. On Linux, it is returned only if the lsb_platform command is installed (in /bin or /usr/bin), and only if the distributor id key is returned by 'lsb_platform -i'. This id is lowercased, and whitespace is replaced with underscores. llvm-svn: 199539
-
Sean Callanan authored
updates itself before it tries to set its own data. Otherwise it has no idea where to put the data value. <rdar://problem/15846476> llvm-svn: 199533
-
- Jan 13, 2014
-
-
Deepak Panickal authored
llvm-svn: 199111
-
- Jan 11, 2014
-
-
Jim Ingham authored
Get the breakpoint setting, and the Mac OS X DYLD trampolines and expression evaluator to handle Indirect symbols correctly. There were a couple of pieces to this. 1) When a breakpoint location finds itself pointing to an Indirect symbol, when the site for it is created it needs to resolve the symbol and actually set the site at its target. 2) Not all breakpoints want to do this (i.e. a straight address breakpoint should always set itself on the specified address, so somem machinery was needed to specify that. 3) I added some info to the break list output for indirect symbols so you could see what was happening. Also I made it clear when we re-route through re-exported symbols. 4) I moved ResolveIndirectFunction from ProcessPosix to Process since it works the exact same way on Mac OS X and the other posix systems. If we find a platform that doesn't do it this way, they can override the call in Process. 5) Fixed one bug in RunThreadPlan, if you were trying to run a thread plan after a "running" event had been broadcast, the event coalescing would cause you to miss the ThreadPlan running event. So I added a way to override the coalescing. 6) Made DynamicLoaderMacOSXDYLD::GetStepThroughTrampolinePlan handle Indirect & Re-exported symbols. <rdar://problem/15280639> llvm-svn: 198976
-
- Jan 08, 2014
-
-
Enrico Granata authored
llvm-svn: 198724
-
- Dec 28, 2013
-
-
Enrico Granata authored
The "type format add" command gets a new flag --type (-t). If you pass -t <sometype>, upon fetching the value for an object of your type, LLDB will display it as-if it was of enumeration type <sometype> This is useful in cases of non-contiguous enums where there are empty gaps of unspecified values, and as such one cannot type their variables as the enum type, but users would still like to see them as-if they were of the enum type (e.g. DWARF field types with their user-reserved ranges) The SB API has also been improved to handle both types of formats, and a test case is added llvm-svn: 198105
-
- Dec 22, 2013
-
-
Enrico Granata authored
Centralize the code for GetValueAsCString() in TypeFormatImpl (the implementing class of "type format ...") TypeFormatImpl used to just wrap a Format (and Flags for matching), and then ValueObject itself would do the printing deed With this checkin, the responsibility of generating a value string is centralized in the data formatter (as it should, and already is for summaries) This change is good practice per se, and should also enable us to extend the type format mechanism in a cleaner way llvm-svn: 197874
-
- Dec 12, 2013
-
-
Greg Clayton authored
<rdar://problem/15600471> llvm-svn: 197171
-
Sylvestre Ledru authored
sin_len is not available in the structure sockaddr_in under GNU/Linux. Fix the build failure. Patch by Todd Fiala (and many other who proposed similar patches) llvm-svn: 197155
-
- Dec 11, 2013
-
-
Greg Clayton authored
We must make sure that all ValueObject objects always contain a valid target. llvm-svn: 196983
-
- Dec 09, 2013
-
-
Ed Maste authored
Previously, an opcode set via SetOpcode32 (for example) was later extracted via GetData() as a byte sequence in host order rather than target order. Review: http://llvm-reviews.chandlerc.com/D1838 llvm-svn: 196808
-
- Dec 06, 2013
-
-
Greg Clayton authored
llvm-svn: 196586
-
Greg Clayton authored
For logical backtrace work, lldb needs to track Module unloads etc & symoblicate an address based on a point in time <rdar://problem/15314403> This patch adds a new lldb_private::SectionLoadHistory class that tracks what shared libraries were loaded given a process stop ID. This allows us to keep a history of the sections that were loaded for a time T. Many items in history objects will rely upon the process stop ID in the future. llvm-svn: 196557
-