| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Include Config/config.h for SHLIBEXT. | Alkis Evlogimenos | 2004-02-23 | 1 | -0/+1 |
* | If bugpoint can't match the reference output, at LEAST provide the output | Chris Lattner | 2004-02-20 | 1 | -3/+7 |
* | Wild and passionate uncontrolled goose chases are amusing to watch, but not | Chris Lattner | 2004-02-20 | 1 | -1/+8 |
* | Format a bit more nicely | Chris Lattner | 2004-02-20 | 1 | -0/+1 |
* | Make sure to print a stack trace whenever an error signal is delivered | Chris Lattner | 2004-02-19 | 2 | -0/+4 |
* | Make sure to print a stack trace whenever an error signal is delivered to | Chris Lattner | 2004-02-19 | 6 | -1/+10 |
* | Make sure to print a stack trace whenever an error signal is delivered to the | Chris Lattner | 2004-02-19 | 8 | -2/+15 |
* | Be a bit more robust. Explicitly check for a code generator crash. | Chris Lattner | 2004-02-19 | 1 | -1/+16 |
* | Make ToolExecutionError inherit std::exception and implement its | Alkis Evlogimenos | 2004-02-19 | 4 | -6/+10 |
* | Fix the "horribly N^2'd" problem when deleting individual instructions. | Chris Lattner | 2004-02-18 | 1 | -18/+29 |
* | * Predicate the optimizer crash debugger on a function. | Chris Lattner | 2004-02-18 | 1 | -64/+90 |
* | Add a new method for use by the code generator crash debugger. | Chris Lattner | 2004-02-18 | 2 | -0/+26 |
* | Don't crash if there are no passes in the PassesToRun list | Chris Lattner | 2004-02-18 | 1 | -1/+1 |
* | Add support for just running the code generator | Chris Lattner | 2004-02-18 | 1 | -0/+12 |
* | Add support for just compiling a program | Chris Lattner | 2004-02-18 | 1 | -0/+19 |
* | Make the executeProgram method exception safe, not leaving around bytecode | Chris Lattner | 2004-02-18 | 1 | -3/+3 |
* | Make more stuff public. Make the instruction argument to | Chris Lattner | 2004-02-18 | 2 | -30/+31 |
* | make a bunch of methods public | Chris Lattner | 2004-02-18 | 1 | -26/+25 |
* | A couple of minor cleanups: don't forward declare private classes, put private | Chris Lattner | 2004-02-18 | 3 | -6/+4 |
* | Cleanup and simplify manipulation of the program, eliminate the need for so | Chris Lattner | 2004-02-18 | 3 | -40/+57 |
* | Add a stub for debugging code generator crashes | Chris Lattner | 2004-02-18 | 4 | -18/+49 |
* | indent correctly | Chris Lattner | 2004-02-18 | 1 | -1/+1 |
* | Don't yell. BUGPOINT should yell, not the tool runner :) | Chris Lattner | 2004-02-18 | 1 | -1/+1 |
* | Update comments, if we are running with the CBE, make sure the Interpreter | Chris Lattner | 2004-02-18 | 2 | -7/+13 |
* | Byebye method | Chris Lattner | 2004-02-18 | 1 | -3/+0 |
* | If there is an error running a tool, include the error message (e.g. assertio... | Chris Lattner | 2004-02-18 | 1 | -30/+32 |
* | ctor arguments changed order | Chris Lattner | 2004-02-18 | 1 | -1/+1 |
* | Catch exception and print message as appropriate | Chris Lattner | 2004-02-18 | 1 | -0/+4 |
* | When an error occurs executing a tool, we now throw an exception instead | Chris Lattner | 2004-02-18 | 2 | -48/+42 |
* | Bugpoint will be throwing exceptions soon, perpare for the worst. | Chris Lattner | 2004-02-18 | 1 | -2/+7 |
* | This class got moved to FileUtilities.h | Chris Lattner | 2004-02-18 | 1 | -8/+1 |
* | Give extract -o and -f options, just like every other tool! | Chris Lattner | 2004-02-18 | 2 | -8/+56 |
* | The CBE is now in llc, not llvm-dis | Chris Lattner | 2004-02-17 | 1 | -1/+1 |
* | The C backend is no longer in llvm-dis, it's in llc | Chris Lattner | 2004-02-17 | 1 | -11/+11 |
* | The CBE is no longer in llvm-dis | Chris Lattner | 2004-02-17 | 1 | -2/+2 |
* | When the user runs 'llc foo.bc -march=c', write the output to "foo.cbe.c", not | Chris Lattner | 2004-02-15 | 1 | -1/+5 |
* | Break a line that's over 80cols into two. | Misha Brukman | 2004-02-13 | 1 | -1/+2 |
* | Do not advertise our -c option anymore | Chris Lattner | 2004-02-13 | 1 | -1/+2 |
* | Mercilessly rip the cbackend out of llvm-dis. Leave a helpful error message | Chris Lattner | 2004-02-13 | 2 | -18/+9 |
* | Add support for -march=c | Chris Lattner | 2004-02-13 | 2 | -7/+14 |
* | Change how we create the cwriter, and add a buttload of libraries that it now | Chris Lattner | 2004-02-13 | 2 | -2/+2 |
* | Add check-exit-code option, defaulting to true. | Brian Gaeke | 2004-02-11 | 2 | -9/+36 |
* | Factor profile information loading OUT of llvm-prof into libanalysis | Chris Lattner | 2004-02-11 | 4 | -246/+3 |
* | Fix indentation of selectiondag. | Brian Gaeke | 2004-02-08 | 1 | -1/+1 |
* | Minor change to breakpoint (lack of) support | Chris Lattner | 2004-02-08 | 1 | -1/+5 |
* | Add a -march=powerpc option. Automatically select it if this looks like a | Brian Gaeke | 2004-02-02 | 1 | -1/+10 |
* | Link in the PowerPC back-end. | Brian Gaeke | 2004-02-02 | 1 | -0/+1 |
* | Now that tailduplication does not bork SSA form, run mem2reg earlier in gccas. | Chris Lattner | 2004-02-01 | 1 | -2/+4 |
* | Fixed PR#197. The libcrtend library is removed from the library linking list | John Criswell | 2004-01-26 | 1 | -2/+4 |
* | Fixes for PR214. Use the SHLIBEXT variable instead of hardcoding .so into | John Criswell | 2004-01-26 | 3 | -4/+4 |