1. 960707c Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 22 years ago
  2. 2339893 Eliminate using declarations by Chris Lattner · 22 years ago
  3. 482202a Added LLVM project notice to the top of every C++ source file. by John Criswell · 22 years ago
  4. b94550e Change the Opcode enum for PHI nodes from "Instruction::PHINode" to "Instruction::PHI" to be more consistent with the other instructions. by Chris Lattner · 22 years ago
  5. 44d2c35 Regularize header file comments by Chris Lattner · 22 years ago
  6. 5dac64f Rename Function::getEntryNode -> getEntryBlock by Chris Lattner · 22 years ago
  7. 8e6ac1b Use the new interface, simplifies code by Chris Lattner · 22 years ago
  8. ac83df7 Trace loads and stores as they happen (stores were being by Vikram S. Adve · 22 years ago
  9. 3cc3018 Use a constant expr GEP instead of an actual instruction by Chris Lattner · 23 years ago
  10. 889f620 Remove unnecesary &*'s by Chris Lattner · 23 years ago
  11. 379a8d2 Add new linkage types to support a real frontend by Chris Lattner · 23 years ago
  12. 01587d4 Make help message more clear by Chris Lattner · 23 years ago
  13. 57fd307 Rename include/llvm/Transforms/Instrumentation/TraceFunctions.h to Instrumentation.h by Chris Lattner · 23 years ago
  14. b9636a7 Make sure to handle %'s in strings correctly so that the names of BB's and functions are actually printed! by Chris Lattner · 23 years ago
  15. 820d971 - Rename AnalysisUsage::preservesAll to getPreservesAll & preservesCFG to by Chris Lattner · 23 years ago
  16. 26783a5 * Apparently string::find doesn't work right on our sun boxes. Work around this. by Chris Lattner · 23 years ago
  17. 69ce867 - Rename Instruction::First*Op to *OpsBegin, and Num*Ops to *OpsEnd to by Chris Lattner · 23 years ago
  18. b9d9e0f - Change getelementptr instruction to use long indexes instead of uint by Chris Lattner · 23 years ago
  19. 28a8d24 Simplify code (somtimes dramatically), by using the new "auto-insert" feature by Chris Lattner · 23 years ago
  20. bc6bdc2 by Chris Lattner · 23 years ago
  21. 62b42ce *** empty log message *** by Chris Lattner · 23 years ago
  22. 829ecb6 Remove extraneous #includes by Chris Lattner · 23 years ago
  23. c8b7092 by Chris Lattner · 23 years ago
  24. 6d216fd * Cleanup the pass a bit more, making it more object oriented. by Chris Lattner · 23 years ago
  25. df7633f Hide extra argument by Chris Lattner · 23 years ago
  26. f5cad15 *** empty log message *** by Chris Lattner · 23 years ago
  27. 4b581be Fix iteration and InsertPos bugs introduced when Chris changed over to ilist. by Vikram S. Adve · 23 years ago
  28. 113f4f4 MEGAPATCH checkin. by Chris Lattner · 23 years ago
  29. ace7b8d * Change commandline options a bit to be nicer by Chris Lattner · 24 years ago
  30. 47f37c3 Hash pointer values to a sequence number to get identical results from by Vikram S. Adve · 24 years ago
  31. 37104aa Add new optional getPassName() virtual function that a Pass can override by Chris Lattner · 24 years ago
  32. f12cc84 Tighten up the AnalysisUsage of lots of passes, primarily to correctly indicate whether or not they invalidate the CFGA by Chris Lattner · 24 years ago
  33. ca14237 Split ConstantVals.h into Constant.h and Constants.h by Chris Lattner · 24 years ago
  34. c8e6654 * Rename MethodPass class to FunctionPass by Chris Lattner · 24 years ago
  35. 7e35890 * s/Method/Function * Fix bug where the character after a % was being discarded by Chris Lattner · 24 years ago
  36. 2e9fa6d Move FunctionArgument out of iOther.h into Argument.h and rename class to by Chris Lattner · 24 years ago
  37. d92b01c Add #includes to make up for #includes pruned out of header files. by Chris Lattner · 24 years ago
  38. e2f2f54 s/MethodType/FunctionType by Chris Lattner · 24 years ago
  39. c46dcca Simplify code a bit by using Module::getOrInsertFunction by Chris Lattner · 24 years ago
  40. 57698e2 Change references from Method to Function by Chris Lattner · 24 years ago
  41. 9f129ff Just a comment. by Vikram S. Adve · 24 years ago
  42. 04805fa Change over to use new style pass mechanism, now passes only expose small by Chris Lattner · 24 years ago
  43. 352151e MethodPass's are now guaranteed to not be run on external methods! by Chris Lattner · 24 years ago
  44. 0686e43 Implement a more powerful, simpler, pass system. This pass system can figure by Chris Lattner · 24 years ago
  45. 7f74a56 Changes to build successfully with GCC 3.02 by Chris Lattner · 24 years ago
  46. f1197b0 * Refactor trace values to work as a proper pass. Before it used to add by Chris Lattner · 24 years ago
  47. 2413b16 Renamed inst_const_iterator -> const_inst_iterator by Chris Lattner · 24 years ago
  48. 3462ae3 Rename ConstPoolVal -> Constant by Chris Lattner · 24 years ago
  49. 5de2204 Create a new #include "Support/..." directory structure to move things by Chris Lattner · 24 years ago
  50. 302014f Make strings be internal by Chris Lattner · 24 years ago
  51. 330dc57 Support array indexing by Chris Lattner · 24 years ago
  52. b601fda Print incoming arguments and return values. by Vikram S. Adve · 24 years ago
  53. 1237e86 Remove much cruft from the MemAccessInst instruction by Chris Lattner · 24 years ago
  54. 33d9cb9 Minor method rename by Chris Lattner · 24 years ago
  55. cba9036 Fix broken assertion. Didn't allow for pointer case by Chris Lattner · 24 years ago
  56. 66aea7a Make newlines be newlines! This should now work in both lli and native code. by Vikram S. Adve · 24 years ago
  57. 96f6ac9 Use separate functions for printing values of each type. by Vikram S. Adve · 24 years ago
  58. e2c6126 Refix bugs, stop using deprecated strstream header by Chris Lattner · 24 years ago
  59. a0db1c9 Only print values live at BB or method exit, and insert loads at each by Vikram S. Adve · 24 years ago
  60. 7ac553a Handle multiple exit blocks correctly. by Vikram S. Adve · 24 years ago
  61. 5309e10 Convert to be compatible with lli. Need to eliminate duplicate \n entries by Chris Lattner · 24 years ago
  62. a0a8b5b Massive hacks to try to fix subtle logic bugs. I think it's all working now, by Chris Lattner · 24 years ago
  63. 162ed4d Rename ConstPoolPointerReference to ConstPoolPointerRef - My fingers get tired typing that much by Chris Lattner · 24 years ago
  64. 1afbdc0 * getExitNode() doesn't exist in method anymore * Make local functions static by Chris Lattner · 24 years ago
  65. a200a6c Insert code to trace values at basic block and method exits. by Vikram S. Adve · 24 years ago