- Nov 01, 2010
-
-
Greg Clayton authored
mismatch: I was using the compile unit user ID (the compile unit offset in the DWARF) as the compile unit index. llvm-svn: 117948
-
Sean Callanan authored
and warnings. llvm-svn: 117947
-
Johnny Chen authored
'thread backtrace' => Control-C b (gud-bt) "Show stack for the current thread." 'thread backtrace all' => Control-C B (gud-bt-all) "Show stacks for all the threads." Change the function name of one existing shortcut: 'breakpoint list" => Control-C l (gud-listb) "List all breakpoints." llvm-svn: 117933
-
Johnny Chen authored
llvm-svn: 117926
-
Johnny Chen authored
SBFrame print representation: idx: 0 -> #0 llvm-svn: 117924
-
Sean Callanan authored
variables to the list of found variables if they have not yet been added. llvm-svn: 117896
-
- Oct 31, 2010
-
-
Greg Clayton authored
/usr/local/bin. llvm-svn: 117866
-
Greg Clayton authored
llvm-svn: 117865
-
Greg Clayton authored
llvm-svn: 117864
-
Greg Clayton authored
llvm-svn: 117852
-
Greg Clayton authored
keep the file size a bit smaller. Exposed SBValue::GetExpressionPath() so SBValue users can get an expression path for their values. llvm-svn: 117851
-
- Oct 30, 2010
-
-
Greg Clayton authored
llvm-svn: 117825
-
Benjamin Kramer authored
llvm-svn: 117778
-
Johnny Chen authored
llvm-svn: 117777
-
Greg Clayton authored
llvm-svn: 117772
-
Sean Callanan authored
Objective-C member accessibility restrictions. Ultimately Clang should have a flag that ignores accessibility for Objective-C like it has one for C++. llvm-svn: 117768
-
Sean Callanan authored
make the sky fall. llvm-svn: 117767
-
Johnny Chen authored
The gud.el is modified from 22.3.1 version to add lldb stuffs, the gud-diffs.txt is the diff file. lldb-gud-window.tiff is a screen capture of Aquamacs 2.1 (which has 23.2.50.1) after loading this modified gud.el, changing directory to test/conditional_break, and then 'M-x lldb' with the a.out file. The lldb-gud-window.tiff will be submitted in another check in. llvm-svn: 117752
-
Johnny Chen authored
llvm-svn: 117751
-
Johnny Chen authored
The gud.el is modified from 22.3.1 version to add lldb stuffs, the gud-diffs.txt is the diff file. lldb-gud-window.tiff is a screen capture of Aquamacs 2.1 (which has 23.2.50.1) after loading this modified gud.el, changing directory to test/conditional_break, and then 'M-x lldb' with the a.out file. llvm-svn: 117748
-
Johnny Chen authored
llvm-svn: 117730
-
Johnny Chen authored
tests should be near the test summary message, instead of way up in the beginning. llvm-svn: 117726
-
Johnny Chen authored
llvm-svn: 117725
-
- Oct 29, 2010
-
-
Caroline Tice authored
llvm-svn: 117717
-
Caroline Tice authored
llvm-svn: 117716
-
Caroline Tice authored
than just the entire log channel. Add checks, where appropriate, to make sure a log channel/category has not been disabled before attempting to write to it. llvm-svn: 117715
-
Sean Callanan authored
an #ifndef. llvm-svn: 117706
-
Johnny Chen authored
rdar://problem/8584431 Assert in clang while evaluating expression llvm-svn: 117705
-
Johnny Chen authored
llvm-svn: 117700
-
Johnny Chen authored
1. FoundationDisassembleTestCase.test_simple_disasm_with_dsym; and 2. FoundationDisassembleTestCase.test_simple_disasm_with_dwarf the reason being the test was issuing 'disassemble' command to disassemble the current frame function when stopped. The 'disassemble' command worked previously but it was a result of bad option specification. Fix the disassemble command so that it will require 'disassemble -f' for disassembly of the current frame function. llvm-svn: 117688
-
Sean Callanan authored
7pm, and made minor integration fixes. llvm-svn: 117680
-
Johnny Chen authored
Change the test case to not check it for an SBVariable's print description. llvm-svn: 117668
-
Greg Clayton authored
by type ID (the most common type of type lookup). Changed the API logging a bit to always show the objects in the OBJECT(POINTER) format so it will be easy to locate all instances of an object or references to it when looking at logs. llvm-svn: 117641
-
Sean Callanan authored
which holds the name of a file whose contents are prefixed to each expression. For example, if the file ~/lldb.prefix.header contains: typedef unsigned short my_type; then you can do this: (lldb) settings set target.expr-prefix '~/lldb.prefix.header' (lldb) expr sizeof(my_type) (unsigned long) $0 = 2 When the variable is changed, the corresponding file is loaded and its contents are fetched into a string that is stored along with the target. This string is then passed to each expression and inserted into it during parsing, like this: typedef unsigned short my_type; void $__lldb_expr(void *$__lldb_arg) { sizeof(my_type); } llvm-svn: 117627
-
Caroline Tice authored
arguments, to help text for alias commands. llvm-svn: 117617
-
Caroline Tice authored
command. llvm-svn: 117616
-
- Oct 28, 2010
-
-
Caroline Tice authored
version); change include statements to use Python.h in the Python framework on Mac OS X systems; leave it using regular Python.h on other systems. Note: I think this *ought* to work properly on Linux systems, but I don't have a system to test it on... llvm-svn: 117612
-
Johnny Chen authored
llvm-svn: 117604
-
Sean Callanan authored
familiar with the ownership relationships involving Diagnostic. llvm-svn: 117573
-
Johnny Chen authored
If TestBase.expect() is passed an assert message, pass it along when delegating to TestBase.runCmd() to execute the debugger command. This will result in a more semantic assert message than just the command failed message like before: AssertionError: False is not True : Command 'thread list' returns successfully And now, we will have: AssertionError: False is not True : Process state is stopped due to breakpoint llvm-svn: 117569
-