| Commit message (Expand) | Author | Age | Files | Lines |
* | Rename include/llvm/Transforms/Instrumentation/TraceFunctions.h to Instrument... | Chris Lattner | 2003-01-14 | 1 | -1/+1 |
* | Make sure to handle %'s in strings correctly so that the names of BB's and fu... | Chris Lattner | 2003-01-13 | 1 | -10/+9 |
* | - Rename AnalysisUsage::preservesAll to getPreservesAll & preservesCFG to | Chris Lattner | 2002-10-21 | 1 | -1/+1 |
* | * Apparently string::find doesn't work right on our sun boxes. Work around t... | Chris Lattner | 2002-10-17 | 1 | -4/+9 |
* | - Rename Instruction::First*Op to *OpsBegin, and Num*Ops to *OpsEnd to | Chris Lattner | 2002-10-13 | 1 | -1/+1 |
* | - Change getelementptr instruction to use long indexes instead of uint | Chris Lattner | 2002-09-11 | 1 | -1/+1 |
* | Simplify code (somtimes dramatically), by using the new "auto-insert" feature | Chris Lattner | 2002-09-10 | 1 | -83/+44 |
* | - Renamed Type::isIntegral() to Type::isInteger() | Chris Lattner | 2002-09-03 | 1 | -1/+1 |
* | *** empty log message *** | Chris Lattner | 2002-08-22 | 1 | -2/+2 |
* | Remove extraneous #includes | Chris Lattner | 2002-08-21 | 1 | -1/+0 |
* | * Add support for different "PassType's" | Chris Lattner | 2002-07-26 | 1 | -2/+2 |
* | * Cleanup the pass a bit more, making it more object oriented. | Chris Lattner | 2002-07-23 | 1 | -65/+48 |
* | Hide extra argument | Chris Lattner | 2002-07-22 | 1 | -1/+1 |
* | *** empty log message *** | Chris Lattner | 2002-07-22 | 1 | -7/+7 |
* | Fix iteration and InsertPos bugs introduced when Chris changed over to ilist. | Vikram S. Adve | 2002-07-08 | 1 | -21/+35 |
* | MEGAPATCH checkin. | Chris Lattner | 2002-06-25 | 1 | -58/+48 |
* | * Change commandline options a bit to be nicer | Chris Lattner | 2002-05-20 | 1 | -42/+47 |
* | Hash pointer values to a sequence number to get identical results from | Vikram S. Adve | 2002-05-19 | 1 | -39/+197 |
* | Add new optional getPassName() virtual function that a Pass can override | Chris Lattner | 2002-04-29 | 1 | -0/+2 |
* | Tighten up the AnalysisUsage of lots of passes, primarily to correctly indica... | Chris Lattner | 2002-04-28 | 1 | -0/+4 |
* | Split ConstantVals.h into Constant.h and Constants.h | Chris Lattner | 2002-04-28 | 1 | -1/+1 |
* | * Rename MethodPass class to FunctionPass | Chris Lattner | 2002-04-27 | 1 | -3/+3 |
* | * s/Method/Function | Chris Lattner | 2002-04-14 | 1 | -27/+18 |
* | Move FunctionArgument out of iOther.h into Argument.h and rename class to | Chris Lattner | 2002-04-09 | 1 | -1/+1 |
* | Add #includes to make up for #includes pruned out of header files. | Chris Lattner | 2002-04-09 | 1 | -0/+1 |
* | s/MethodType/FunctionType | Chris Lattner | 2002-04-04 | 1 | -2/+2 |
* | Simplify code a bit by using Module::getOrInsertFunction | Chris Lattner | 2002-03-29 | 1 | -11/+2 |
* | Change references from Method to Function | Chris Lattner | 2002-03-26 | 1 | -38/+39 |
* | Just a comment. | Vikram S. Adve | 2002-03-18 | 1 | -0/+3 |
* | Change over to use new style pass mechanism, now passes only expose small | Chris Lattner | 2002-02-26 | 1 | -0/+43 |
* | MethodPass's are now guaranteed to not be run on external methods! | Chris Lattner | 2002-01-31 | 1 | -1/+1 |
* | Implement a more powerful, simpler, pass system. This pass system can figure | Chris Lattner | 2002-01-21 | 1 | -1/+1 |
* | Changes to build successfully with GCC 3.02 | Chris Lattner | 2002-01-20 | 1 | -9/+6 |
* | * Refactor trace values to work as a proper pass. Before it used to add | Chris Lattner | 2001-12-14 | 1 | -420/+177 |
* | Renamed inst_const_iterator -> const_inst_iterator | Chris Lattner | 2001-12-04 | 1 | -2/+2 |
* | Rename ConstPoolVal -> Constant | Chris Lattner | 2001-12-03 | 1 | -2/+2 |
* | Create a new #include "Support/..." directory structure to move things | Chris Lattner | 2001-11-27 | 1 | -2/+2 |
* | Make strings be internal | Chris Lattner | 2001-11-26 | 1 | -1/+2 |
* | Support array indexing | Chris Lattner | 2001-11-26 | 1 | -3/+2 |
* | Print incoming arguments and return values. | Vikram S. Adve | 2001-11-15 | 1 | -14/+46 |
* | Remove much cruft from the MemAccessInst instruction | Chris Lattner | 2001-11-14 | 1 | -1/+1 |
* | Minor method rename | Chris Lattner | 2001-11-04 | 1 | -1/+1 |
* | Fix broken assertion. Didn't allow for pointer case | Chris Lattner | 2001-10-29 | 1 | -6/+3 |
* | Make newlines be newlines! This should now work in both lli and native code. | Vikram S. Adve | 2001-10-28 | 1 | -7/+5 |
* | Use separate functions for printing values of each type. | Vikram S. Adve | 2001-10-28 | 1 | -20/+87 |
* | Refix bugs, stop using deprecated strstream header | Chris Lattner | 2001-10-18 | 1 | -82/+31 |
* | Only print values live at BB or method exit, and insert loads at each | Vikram S. Adve | 2001-10-18 | 1 | -41/+126 |
* | Handle multiple exit blocks correctly. | Vikram S. Adve | 2001-10-18 | 1 | -37/+221 |
* | Convert to be compatible with lli. | Chris Lattner | 2001-10-18 | 1 | -70/+48 |
* | Massive hacks to try to fix subtle logic bugs. I think it's all working now, | Chris Lattner | 2001-10-18 | 1 | -275/+130 |