llvm-project/lldb
Greg Clayton daf515fc8a Fixed the global and static variables to always be in scope.
Made it so that you can create synthetic children of array
value objects. This is for creating array members when the
array index is out of range. This comes in handy when you have
a structure definition like:

struct Collection
{
    uint32_t count;
    Item array[0];
};
"array" has 1 item, but many times in practice there are more
items in "item_array".

This allows you to do:

(lldb) target variable g_collection.array[3]

To implement this, the get child at index has been modified
to have a "ignore_array_bounds" boolean that can be set to true.

llvm-svn: 134846
2011-07-09 20:12:33 +00:00
..
docs just a test for commit access - ignore this 2011-06-29 04:18:11 +00:00
examples Remove unnecessary 'import' statement. 2011-07-06 19:09:25 +00:00
include Fixed the global and static variables to always be in scope. 2011-07-09 20:12:33 +00:00
lib Link in the MCJIT. Fixes makefile build. 2011-05-24 01:54:03 +00:00
lldb.xcodeproj final fix for the global constructors issue 2011-07-08 02:51:01 +00:00
lldb.xcworkspace Adding a Xcode workspace for lldb. 2011-01-27 20:15:39 +00:00
resources Bumped Xcode project version for lldb-68. 2011-07-06 21:01:19 +00:00
scripts Missed the char_to_str_xform on the docstrings for the module level function definitions. 2011-07-08 23:57:20 +00:00
source Fixed the global and static variables to always be in scope. 2011-07-09 20:12:33 +00:00
test Add rdar://problem/9747668 info for "target variable g_marked_spot.y" command. 2011-07-08 23:38:39 +00:00
tools Rewrite get_kinfo_proc_for_pid() to get the kinfo_proc for 2011-07-08 05:04:01 +00:00
utils Update usage comment. 2011-06-14 22:23:54 +00:00
www final fix for the global constructors issue 2011-07-08 02:51:01 +00:00
INSTALL.txt You'll need to be running Mac OS X to get lldb to build right now. 2010-06-09 07:29:26 +00:00
LICENSE.TXT test commit 2010-06-09 03:55:24 +00:00
Makefile Enable the "make test" rule in the root Makefile 2011-06-20 19:06:57 +00:00