1. 8ed9c1a describe isStore and simplify the implementation of hasUnmodelledSideEffects. by Chris Lattner · 17 years ago
  2. e67bde5 set the 'isstore' flag for instructions whose pattern is an by Chris Lattner · 17 years ago
  3. e81cd88 Accept both %y, %x and %x, %y as valid answers. by Nick Lewycky · 17 years ago
  4. 2d51a4c remove some old hacky code that tried to infer whether a store by Chris Lattner · 17 years ago
  5. a529a37 rearrange some code to allow inferring instr info from the pattern of the instr, but don't do so yet. by Chris Lattner · 17 years ago
  6. f1ab4f1 improve const correctness. by Chris Lattner · 17 years ago
  7. 6cc654b Split the impl of CodeGenInstruction out to its own .cpp file, add a getName() accessor. by Chris Lattner · 17 years ago
  8. 5fbe275 final cleanups. by Chris Lattner · 17 years ago
  9. ef8339b further simplifications and cleanup by Chris Lattner · 17 years ago
  10. 951740a simplify some code by Chris Lattner · 17 years ago
  11. fe71893 rename CodegenDAGPatterns -> CodeGenDAGPatterns by Chris Lattner · 17 years ago
  12. 7b11712 split enum emission out from InstrInfoEmitter into it's own tblgen backend. by Chris Lattner · 17 years ago
  13. 93c7e41 fix build on case sensitive file systems. by Chris Lattner · 17 years ago
  14. f995830 Fix comment. by Bill Wendling · 17 years ago
  15. 19033bf make this build with newer gcc's by Chris Lattner · 17 years ago
  16. 200c57e now that computing CodegenDAGPatterns doesn't implicitly print stuff by Chris Lattner · 17 years ago
  17. 443e3f9 move Node Transformation printing from CodeGenDAGPatterns -> DAGISelEmitter. by Chris Lattner · 17 years ago
  18. dc32f98 move predicate printing code from CodeGenDAGPatterns -> DAGISelEmitter. by Chris Lattner · 17 years ago
  19. 60d8139 fix a fixme by improving const correctness. by Chris Lattner · 17 years ago
  20. 6cefb77 change getQualifiedName to be a global function. by Chris Lattner · 17 years ago
  21. 219f67f Remove an incorrect optimization that is performed correctly by by Nate Begeman · 17 years ago
  22. 2281a99 If custom lowering of insert element fails, the result Val will be 0. by Nate Begeman · 17 years ago
  23. 54b62f3 Fix build issue on certain compilers. by Chris Lattner · 17 years ago
  24. 8673766 Refactoring the x86 and x86-64 calling convention implementations, by Gordon Henriksen · 17 years ago
  25. df303bd Chris and Evan noticed that this check was compleatly fubared. I was by Bill Wendling · 17 years ago
  26. e430e1c The current impl is really trivial, add some comments about how it can be made better. by Chris Lattner · 17 years ago
  27. 3c42f12 allow sinking to be enabled for the jit by Chris Lattner · 17 years ago
  28. f29495a enable sinking and licm of loads from the argument area. I'd like to enable this by Chris Lattner · 17 years ago
  29. 3b5a221 simplify some code by using shorter accessors. by Chris Lattner · 17 years ago
  30. a83b34b revert my previous patch. by Chris Lattner · 17 years ago
  31. 505d4ab factor some code better to avoid redundancy between by Chris Lattner · 17 years ago
  32. e9648f8 getting the pic base has no side effects. by Chris Lattner · 17 years ago
  33. ba84ed7 don't sink anything with side effects, this makes lots of stuff work, but sinks almost nothing. by Chris Lattner · 17 years ago
  34. 2a3e08b X86 JIT PIC jumptable support. by Evan Cheng · 17 years ago
  35. 9bb459b fix a common crash. by Chris Lattner · 17 years ago
  36. 5a62d0a remove a couple more unsafe xforms in the face of overflow. by Chris Lattner · 17 years ago
  37. b656601 remove the (x-y) < 0 comparison xform, it miscompiles by Chris Lattner · 17 years ago
  38. a393cd3 I should not be allowed to commit when sleepy. by Owen Anderson · 17 years ago
  39. a997c49 Didn't mean to commit this. by Owen Anderson · 17 years ago
  40. 699f5fa Didn't mean to commit this. by Owen Anderson · 17 years ago
  41. 0475ab5 Combine MovePCtoStack + POP32r into one instruction MOVPC32r so it can be moved if needed. by Evan Cheng · 17 years ago
  42. d94b6a1 Move some more functionality from MRegisterInfo to TargetInstrInfo. by Owen Anderson · 17 years ago
  43. 67d65bb Don't recalculate the loop info and loop dominators analyses if they're by Bill Wendling · 17 years ago
  44. b670a17 fix typo by Wojciech Matyjewicz · 17 years ago
  45. 21a715a fix typo by Wojciech Matyjewicz · 17 years ago
  46. ad04cb2 Testcase with non-integer "bitfields" (in quotes, by Duncan Sands · 17 years ago
  47. 6321460 Fix a typo in llvm.mli noticed by Alain Frisch. by Gordon Henriksen · 17 years ago
  48. e2940c3 Testcase for PR1386. by Duncan Sands · 17 years ago
  49. 3275908 doc_code-ify some code in this doc. by Bill Wendling · 17 years ago
  50. 96a6931 Quote a path in the Ocaml makefile which is likely to include spaces on Windows. by Gordon Henriksen · 17 years ago
  51. 991500e Unbreak tailcall opt in JIT. by Evan Cheng · 17 years ago
  52. be8c03f X86 PIC JIT support fixes: encoding bugs, add lazy pointer stubs support. by Evan Cheng · 17 years ago
  53. 2674d71 80-column violations. by Bill Wendling · 17 years ago
  54. d5da704 Add that this preserves some analyses. by Bill Wendling · 17 years ago
  55. cc8f603 Move option to enable machine LICM into LLVMTargetMachine.cpp. by Bill Wendling · 17 years ago
  56. b082c6f Call the parent's getAnalysisUsage. by Bill Wendling · 17 years ago
  57. c4ce73f Add a really quick hack at a machine code sinking pass, enabled with --enable-sinking. by Chris Lattner · 17 years ago
  58. ac69582 remove dead #includes and reorder the rest. by Chris Lattner · 17 years ago
  59. 9027b3c Fix PR1896 by Chris Lattner · 17 years ago
  60. 331bf92 Change the builtin matcher to emit a decision tree, which should help out by Chris Lattner · 17 years ago
  61. 8f8c7b7 fix nesting issues. by Chris Lattner · 17 years ago
  62. c7d3ab3 fix validation issues. by Chris Lattner · 17 years ago
  63. 4f69f46 improve the description of types, patch by Alain Frisch by Chris Lattner · 17 years ago
  64. 81442c0 Don't let IntrinsicID be uninitialized if it doesn't match. by Chris Lattner · 17 years ago
  65. 165b60d Correct order of parameters. by Evan Cheng · 17 years ago
  66. f840f87 Remove the default else. This was ending in code that looked like this: by Bill Wendling · 17 years ago
  67. c45f5c7 Remove symbols that don't exist, remove tabs, fix comment typo by Chris Lattner · 17 years ago
  68. 0b58991 Adding new files to win32 build by Chuck Rose III · 17 years ago
  69. 069266b Ignoring output files. by Gordon Henriksen · 17 years ago
  70. 2e438ca add info on walking preds/succs of a block. by Chris Lattner · 17 years ago
  71. ae636f8 First steps in in X86 calling convention cleanup. by Gordon Henriksen · 17 years ago
  72. 7cc5fac Test for handling of large bit offset from a variable field offset. by Duncan Sands · 17 years ago
  73. 3d73bce don't hoist FP additions into unconditional adds + selects. This by Chris Lattner · 17 years ago
  74. 76327d9 Fix PR1873, a problem finding stat-related symbols on linux, due to by Chris Lattner · 17 years ago
  75. 23d9791 Trying that again. by Gordon Henriksen · 17 years ago
  76. 98232f5 Fix a compile error on Windows. by Gordon Henriksen · 17 years ago
  77. 02aabbf Change MachineRelocation::DoesntNeedFnStub to NeedStub. This fields will be used by Evan Cheng · 17 years ago
  78. 9848ced don't access element zero of an array of size zero. by Chris Lattner · 17 years ago
  79. 50cffa0 Remove the function attr cache for intrinsics. This does not maintain the by Chris Lattner · 17 years ago
  80. 89e94bd Don't create a new ParamAttrsList (which copies the vector) just to by Chris Lattner · 17 years ago
  81. 227ff79 An example for which the TYPE_SIZE was being set from by Duncan Sands · 17 years ago
  82. c51dacc Test handling of records for which the fields are not ordered by offset. by Duncan Sands · 17 years ago
  83. fabfde3 move some code out of line, rearrange a bit. by Chris Lattner · 17 years ago
  84. 49269d9 Disallow copying explicitly. by Chris Lattner · 17 years ago
  85. 50ee9dd Split param attr implementation out from Function.cpp into its by Chris Lattner · 17 years ago
  86. a114b14 add missing #include by Chris Lattner · 17 years ago
  87. 306cbdb X86 PIC JIT bug fix: relocations for constantpool and jumptable. by Evan Cheng · 17 years ago
  88. f897b7d remove blob of #if'd out code. by Chris Lattner · 17 years ago
  89. e9d666e fix this to use a valid triple. by Chris Lattner · 17 years ago
  90. 6f21976 Inverted argument order for ImmutableMap::Profile. by Ted Kremenek · 17 years ago
  91. 5dfdc1c Fix a build issue on cygwin by Chris Lattner · 17 years ago
  92. 3c6255c Added iterator and profiling (i.e. FoldingSetNodeID) support to ImmutableMap. by Ted Kremenek · 17 years ago
  93. b08b8e6 Fix PR1888, patch by Wilhansen Li. by Chris Lattner · 17 years ago
  94. fa0fba1 Fix a build problem with VC++ by not doing the target prefix by Chris Lattner · 17 years ago
  95. dde059a Use the correct MachineRegisterInfo object. by Bill Wendling · 17 years ago
  96. 3100afa Machine LICM will check that operands are defined outside of the loop. Also by Bill Wendling · 17 years ago
  97. a4b6622 Remove dead code. by Bill Wendling · 17 years ago
  98. e2620ad verify that aligned common support doesn't break. by Chris Lattner · 17 years ago
  99. 7ad92d8 darwin9 and above support aligned common symbols. by Chris Lattner · 17 years ago
  100. 564da5d leopard and above support alignment for common symbols. by Chris Lattner · 17 years ago