| Commit message (Expand) | Author | Age | Files | Lines |
* | Do not DESTROY programs by default. No wonder bugpoint was not being useful ... | Chris Lattner | 2003-11-23 | 1 | -11/+7 |
* | Revert the previous patch since it causes lots of miscompilations. :( :( | Chris Lattner | 2003-11-22 | 1 | -4/+2 |
* | Do not crash when dealing with invoke and unwind instructions! | Chris Lattner | 2003-11-22 | 1 | -4/+7 |
* | Use new interfaces | Chris Lattner | 2003-11-22 | 1 | -6/+2 |
* | Reorder passes a bit. In particular, it makes sense to run globaldce IMMEDIA... | Chris Lattner | 2003-11-21 | 1 | -2/+4 |
* | When writing out the runner script, add -load=<lib> lines to pull in all the | Misha Brukman | 2003-11-20 | 1 | -1/+18 |
* | Add ability to search only for native shared object, and expose the | Misha Brukman | 2003-11-20 | 2 | -7/+9 |
* | For consistency, removed space between function name and left paren in function | Misha Brukman | 2003-11-20 | 1 | -15/+15 |
* | * Doxygenified comments, simplifying them and shortening in the process | Misha Brukman | 2003-11-20 | 1 | -67/+43 |
* | Unbreak the "-" as filename hack. | Brian Gaeke | 2003-11-19 | 1 | -2/+3 |
* | Also print an error msg. for files we cannot currently deal with. | Brian Gaeke | 2003-11-19 | 1 | -0/+4 |
* | Fix PR134, by checking FileOpenable() on each input file before analyzing its | Brian Gaeke | 2003-11-19 | 1 | -1/+10 |
* | Only use -Wl,-R. if HAVE_LINK_R. | Brian Gaeke | 2003-11-18 | 1 | -0/+3 |
* | Include Support/FileUtilities.h. | Brian Gaeke | 2003-11-16 | 1 | -13/+24 |
* | Add a -verify option to verify the results of gccld passes. | Brian Gaeke | 2003-11-16 | 1 | -43/+63 |
* | When we find a module we want, in an archive, in verbose mode, | Brian Gaeke | 2003-11-16 | 1 | -6/+13 |
* | As the comments indicate, this is a temporary, repulsive, hack | Chris Lattner | 2003-11-13 | 1 | -0/+6 |
* | Restore the -llvm option | Chris Lattner | 2003-11-12 | 1 | -1/+1 |
* | Put all LLVM code into the llvm namespace, as per bug 109. | Brian Gaeke | 2003-11-11 | 38 | -6/+133 |
* | Move IsArchive, IsBytecode to FileUtilities. Fix up some method comments. | Brian Gaeke | 2003-11-11 | 1 | -60/+17 |
* | 'Tis quite silly to check for a cached version of the entire executable. That | Misha Brukman | 2003-11-11 | 1 | -16/+0 |
* | This version of Linker.cpp works a lot better, but it's a little messy. Sorry. | Brian Gaeke | 2003-11-11 | 1 | -20/+28 |
* | The caching will not live in LLEE's execve() handler; that's suboptimal. | Misha Brukman | 2003-11-11 | 1 | -8/+2 |
* | Give gccld more guts | Chris Lattner | 2003-11-09 | 2 | -2/+11 |
* | Add new command line option | Chris Lattner | 2003-11-06 | 1 | -2/+5 |
* | Give this header file an Emacs mode-line. | Brian Gaeke | 2003-11-05 | 1 | -1/+1 |
* | Do not assume the first file is a bytecode file. Instead, construct a dummy | Brian Gaeke | 2003-11-05 | 1 | -5/+3 |
* | Shorten and correct some function-header comments. | Brian Gaeke | 2003-11-05 | 1 | -53/+28 |
* | I hate it when bugpoint is all ready to give me a bytecode file, then crashes | Chris Lattner | 2003-11-05 | 4 | -25/+35 |
* | Simplify the performFinalCleanups interface | Chris Lattner | 2003-11-05 | 4 | -13/+11 |
* | Make -r work, fixing PR 91 | Chris Lattner | 2003-11-05 | 1 | -3/+4 |
* | If linking a library, do not link other libraries, like libc, into it! | Chris Lattner | 2003-11-03 | 1 | -1/+4 |
* | never print zero executions blocks | Chris Lattner | 2003-10-31 | 1 | -0/+1 |
* | Simplify code | Chris Lattner | 2003-10-31 | 1 | -7/+7 |
* | Add percentage info | Chris Lattner | 2003-10-31 | 1 | -2/+3 |
* | Hrm, some of my counters are wrapping around 32 bits | Chris Lattner | 2003-10-31 | 1 | -4/+5 |
* | If only have function profile, don't print out "not executed" for all of the ... | Chris Lattner | 2003-10-30 | 1 | -0/+1 |
* | Add the ability to print out llvm code when the -annotated-llvm option is given | Chris Lattner | 2003-10-30 | 1 | -5/+56 |
* | Add the ability to synthesize function counts from block count information | Chris Lattner | 2003-10-29 | 2 | -3/+10 |
* | Print the top 20 most frequently executed blocks. Fix sort predicate problem | Chris Lattner | 2003-10-29 | 1 | -6/+27 |
* | Cleanup output a bit | Chris Lattner | 2003-10-28 | 1 | -1/+3 |
* | Add the ability for users to specify a specific argv[0] to pass into the | Chris Lattner | 2003-10-28 | 1 | -7/+16 |
* | Print out command lines used to run the programs | Chris Lattner | 2003-10-28 | 2 | -1/+23 |
* | Fix extract to use the right TargetData, like Bugpoint does. | Brian Gaeke | 2003-10-28 | 2 | -0/+4 |
* | Add support for reading block frequencies. Fix bug in attribution of counts | Chris Lattner | 2003-10-28 | 3 | -2/+48 |
* | Provide an accessor for getting function count information. Print a simple | Chris Lattner | 2003-10-28 | 3 | -11/+78 |
* | Read in the bytecode and profile information, but don't do anything with | Chris Lattner | 2003-10-28 | 3 | -1/+175 |
* | Build the llvm-prof directory | Chris Lattner | 2003-10-28 | 1 | -1/+1 |
* | Initial checkin of llvmprof stub | Chris Lattner | 2003-10-28 | 2 | -0/+49 |
* | Reorder #includes, drop unneeded one | Chris Lattner | 2003-10-28 | 1 | -3/+2 |