[llvm-commits] CVS: llvm/tools/bugpoint/BugDriver.cpp

2007-05-06 Thread Chris Lattner
Changes in directory llvm/tools/bugpoint: BugDriver.cpp updated: 1.53 -> 1.54 --- Log message: use the new MemoryBuffer interfaces to simplify error reporting in clients. --- Diffs of the changes: (+5 -4) BugDriver.cpp |9 + 1 files changed, 5 insertions(+), 4 deletions(-) In

[llvm-commits] CVS: llvm/tools/bugpoint/BugDriver.cpp Makefile OptimizerDriver.cpp

2007-05-06 Thread Chris Lattner
Changes in directory llvm/tools/bugpoint: BugDriver.cpp updated: 1.52 -> 1.53 Makefile updated: 1.22 -> 1.23 OptimizerDriver.cpp updated: 1.51 -> 1.52 --- Log message: switch tools to bitcode from bytecode --- Diffs of the changes: (+11 -28) BugDriver.cpp | 17 ++--- Ma

[llvm-commits] CVS: llvm/tools/bugpoint/BugDriver.cpp CrashDebugger.cpp Makefile OptimizerDriver.cpp

2007-05-05 Thread Chris Lattner
Changes in directory llvm/tools/bugpoint: BugDriver.cpp updated: 1.51 -> 1.52 CrashDebugger.cpp updated: 1.57 -> 1.58 Makefile updated: 1.21 -> 1.22 OptimizerDriver.cpp updated: 1.50 -> 1.51 --- Log message: add bitcode support --- Diffs of the changes: (+18 -4) BugDriver.cpp | 10

[llvm-commits] CVS: llvm/tools/bugpoint/BugDriver.cpp BugDriver.h ExecutionDriver.cpp OptimizerDriver.cpp ToolRunner.cpp ToolRunner.h bugpoint.cpp

2007-02-16 Thread Anton Korobeynikov
Changes in directory llvm/tools/bugpoint: BugDriver.cpp updated: 1.50 -> 1.51 BugDriver.h updated: 1.47 -> 1.48 ExecutionDriver.cpp updated: 1.68 -> 1.69 OptimizerDriver.cpp updated: 1.49 -> 1.50 ToolRunner.cpp updated: 1.60 -> 1.61 ToolRunner.h updated: 1.23 -> 1.24 bugpoint.cpp updated: 1.35 -

[llvm-commits] CVS: llvm/tools/bugpoint/BugDriver.cpp

2007-02-07 Thread Chris Lattner
Changes in directory llvm/tools/bugpoint: BugDriver.cpp updated: 1.49 -> 1.50 --- Log message: push bytecode decompressor out through APIs. Now the bytecode reader api's look like this: ModuleProvider *getBytecodeModuleProvider( const std::string &Filename, ///< Name of file to be read B

[llvm-commits] CVS: llvm/tools/bugpoint/BugDriver.cpp BugDriver.h CrashDebugger.cpp

2006-10-25 Thread Bill Wendling
Changes in directory llvm/tools/bugpoint: BugDriver.cpp updated: 1.48 -> 1.49 BugDriver.h updated: 1.46 -> 1.47 CrashDebugger.cpp updated: 1.49 -> 1.50 --- Log message: Fix for PR960: http://llvm.org/PR960 . Improves bugpoint so that it removes global variable initializers as well. This is onl

[llvm-commits] CVS: llvm/tools/bugpoint/BugDriver.cpp

2006-08-18 Thread Reid Spencer
Changes in directory llvm/tools/bugpoint: BugDriver.cpp updated: 1.47 -> 1.48 --- Log message: For PR797: http://llvm.org/PR797 : Rid the Assembly Parser of exceptions. This is a really gross hack but it will do until the Assembly Parser is re-written as a recursive descent. The basic premise i

Re: [llvm-commits] CVS: llvm/tools/bugpoint/BugDriver.cpp BugDriver.h CrashDebugger.cpp ExecutionDriver.cpp bugpoint.cpp

2006-08-17 Thread Chris Lattner
On Aug 17, 2006, at 7:43 AM, Andrew Lenharth wrote: Is the external program part of this generalized? I and others have cases where we need to run a complex series of programs to test the correctness of a transform. Namely, we want to take a compiled kernel start it up in a simulator, check so

Re: [llvm-commits] CVS: llvm/tools/bugpoint/BugDriver.cpp BugDriver.h CrashDebugger.cpp ExecutionDriver.cpp bugpoint.cpp

2006-08-17 Thread Andrew Lenharth
Is the external program part of this generalized? I and others have cases where we need to run a complex series of programs to test the correctness of a transform. Namely, we want to take a compiled kernel start it up in a simulator, check something then return and tell bugpoint if the output was

[llvm-commits] CVS: llvm/tools/bugpoint/BugDriver.cpp BugDriver.h CrashDebugger.cpp ExecutionDriver.cpp bugpoint.cpp

2006-08-15 Thread Patrick Jenkins
Changes in directory llvm/tools/bugpoint: BugDriver.cpp updated: 1.46 -> 1.47 BugDriver.h updated: 1.43 -> 1.44 CrashDebugger.cpp updated: 1.48 -> 1.49 ExecutionDriver.cpp updated: 1.62 -> 1.63 bugpoint.cpp updated: 1.31 -> 1.32 --- Log message: This commit adds a new feature called find-bugs.

[llvm-commits] CVS: llvm/tools/bugpoint/BugDriver.cpp BugDriver.h ExecutionDriver.cpp OptimizerDriver.cpp bugpoint.cpp

2006-06-12 Thread Chris Lattner
Changes in directory llvm/tools/bugpoint: BugDriver.cpp updated: 1.45 -> 1.46 BugDriver.h updated: 1.42 -> 1.43 ExecutionDriver.cpp updated: 1.60 -> 1.61 OptimizerDriver.cpp updated: 1.38 -> 1.39 bugpoint.cpp updated: 1.30 -> 1.31 --- Log message: Teach bugpoint to kill optimization passes that

[llvm-commits] CVS: llvm/tools/bugpoint/BugDriver.cpp CrashDebugger.cpp ExecutionDriver.cpp ToolRunner.cpp ToolRunner.h bugpoint.cpp

2006-06-06 Thread Chris Lattner
Changes in directory llvm/tools/bugpoint: BugDriver.cpp updated: 1.44 -> 1.45 CrashDebugger.cpp updated: 1.47 -> 1.48 ExecutionDriver.cpp updated: 1.59 -> 1.60 ToolRunner.cpp updated: 1.51 -> 1.52 ToolRunner.h updated: 1.20 -> 1.21 bugpoint.cpp updated: 1.28 -> 1.29 --- Log message: Move ToolRu

[llvm-commits] CVS: llvm/tools/bugpoint/BugDriver.cpp

2006-05-14 Thread Chris Lattner
Changes in directory llvm/tools/bugpoint: BugDriver.cpp updated: 1.43 -> 1.44 --- Log message: print a nice error if bugpoint gets an error reading inputs. Bug identified by coverity. --- Diffs of the changes: (+21 -16) BugDriver.cpp | 37 + 1 files c

[llvm-commits] CVS: llvm/tools/bugpoint/BugDriver.cpp BugDriver.h OptimizerDriver.cpp bugpoint.cpp

2005-12-22 Thread Reid Spencer
Changes in directory llvm/tools/bugpoint: BugDriver.cpp updated: 1.42 -> 1.43 BugDriver.h updated: 1.41 -> 1.42 OptimizerDriver.cpp updated: 1.33 -> 1.34 bugpoint.cpp updated: 1.26 -> 1.27 --- Log message: For PR351: http://llvm.cs.uiuc.edu/PR351 : Generally, remove use of fork/exec from bugpoi