- Oct 26, 2011
-
-
Eric Christopher authored
Patch by Dimitry Andric! llvm-svn: 142995
-
Eli Friedman authored
llvm-svn: 142994
-
Johnny Chen authored
the run command till the first breakpoint hit. Example: $ ./dotest.py -v +b -n -x '-F Driver::MainLoop()' -p TestStartupDelays.py 1: test_startup_delay (TestStartupDelays.StartupDelaysBench) Test start up delays creating a target and setting a breakpoint. ... lldb startup delay (create fresh target) benchmark: Avg: 0.124496 (Laps: 30, Total Elapsed Time: 3.734883) lldb startup delay (set first breakpoint) benchmark: Avg: 0.220828 (Laps: 30, Total Elapsed Time: 6.624847) lldb startup delay (run to breakpoint) benchmark: Avg: 0.478159 (Laps: 30, Total Elapsed Time: 14.344774) ok llvm-svn: 142993
-
Mon P Wang authored
fix up later. For this special case, allow such a mask to be considered valid. <rdar://problem/8622574> llvm-svn: 142992
-
Bill Wendling authored
llvm-svn: 142991
-
Bill Wendling authored
llvm-svn: 142990
-
Bill Wendling authored
llvm-svn: 142989
-
Bill Wendling authored
llvm-svn: 142988
-
Bill Wendling authored
llvm-svn: 142987
-
Michael J. Spencer authored
llvm-svn: 142984
-
Michael J. Spencer authored
llvm-svn: 142983
-
Michael J. Spencer authored
llvm-svn: 142982
-
Michael J. Spencer authored
llvm-svn: 142981
-
- Oct 25, 2011
-
-
Owen Anderson authored
llvm-svn: 142970
-
Bill Wendling authored
llvm-svn: 142966
-
Bill Wendling authored
llvm-svn: 142965
-
Bill Wendling authored
llvm-svn: 142963
-
Sean Callanan authored
types of the same name. If a local variable with the given name is found (and we are not searching a specific namespace) we stop right then and there and report it. llvm-svn: 142962
-
Owen Anderson authored
Add support for the notion of "hidden" relocations. On MachO, these are relocation entries that are used as additional information for other, real relocations, rather than being relocations themselves. I'm not familiar enough with ELF or COFF to know if they should have any relocations marked hidden. llvm-svn: 142961
-
Bill Wendling authored
llvm-svn: 142960
-
Eli Friedman authored
llvm-svn: 142959
-
Chad Rosier authored
LLVM 2.9. My understanding is that we plan to maintain compatibility with 2.9 until the 3.1 release. At that time we can generate new test cases using LLVM 3.0. llvm-svn: 142958
-
Jim Grosbach authored
PR11217. llvm-svn: 142956
-
Bill Wendling authored
llvm-svn: 142955
-
Bill Wendling authored
llvm-svn: 142954
-
Owen Anderson authored
llvm-svn: 142952
-
Douglas Gregor authored
llvm-svn: 142951
-
Bruno Cardoso Lopes authored
compile and use a bunch of stuff using o32 abi). Also the rt-rk.com team claims that the JIT support they contributed, is complete for the mips "static" relocation model. llvm-svn: 142950
-
Johnny Chen authored
An example (with /Developer/usr/bin/lldb vs. /usr/bin/gdb): [13:05:04] johnny:/Volumes/data/lldb/svn/trunk/test $ ./dotest.py -v +b -n -p TestCompileRunToBreakpointTurnaround.py 1: test_run_lldb_then_gdb (TestCompileRunToBreakpointTurnaround.CompileRunToBreakpointBench) Benchmark turnaround time with lldb vs. gdb. ... lldb turnaround benchmark: Avg: 4.574600 (Laps: 3, Total Elapsed Time: 13.723799) gdb turnaround benchmark: Avg: 7.966713 (Laps: 3, Total Elapsed Time: 23.900139) lldb_avg/gdb_avg: 0.574214 ok ---------------------------------------------------------------------- Ran 1 test in 55.462s OK llvm-svn: 142949
-
Chad Rosier authored
llvm-svn: 142948
-
Anna Zaks authored
A step toward making sure that diagnostics report should only be generated though the CheckerContext and not though BugReporter or ExprEngine directly. llvm-svn: 142947
-
Anna Zaks authored
Remove dead members/parameters: ProgramState, respondsToCallback, autoTransition. Remove addTransition method since it's the same as generateNode. Maybe we should rename generateNode to genTransition (since a transition is always automatically generated)? llvm-svn: 142946
-
Anna Zaks authored
llvm-svn: 142945
-
Anna Zaks authored
Now, all the path sensitive checkers use CheckerContext! llvm-svn: 142944
-
Anna Zaks authored
Get rid of the EndOfPathBuilder completely. Use the generic NodeBuilder to generate nodes. Enqueue the end of path frontier explicitly. llvm-svn: 142943
-
Owen Anderson authored
llvm-svn: 142938
-
David Blaikie authored
llvm-svn: 142937
-
Sean Callanan authored
parser. Now expression like the following work as expected: - (lldb) expr struct { int a; int b; } $blah = { 10, 20 } <no result> (lldb) expr $blah (<anonymous struct at Parse:6:5>) $blah = { (int) a = 10 (int) b = 20 } - Now the IRForTarget subsystem knows how to handle static initializers of various composite types. Also removed an unnecessary parameter from ClangExpressionDeclMap::GetFunctionInfo. llvm-svn: 142936
-
David Blaikie authored
llvm-svn: 142935
-
Bruno Cardoso Lopes authored
This first patch is for expression variable kinds. Patch by Jack Carter! llvm-svn: 142934
-