1. d10b5fd There is no need to merge the globals graph into the function graphs at the by Chris Lattner · 21 years ago
  2. 4e46e32 Add two missing returns, which caused us to be very pessimistic about the by Chris Lattner · 21 years ago
  3. 8ecc27e Add support for some string functions, the scanf family, and sprintf by Chris Lattner · 21 years ago
  4. 28a631d When we complete the bottom-up pass, make sure to merge the globals in 'main' into by Chris Lattner · 21 years ago
  5. 304e143 Only spit out warning for functions that take pointers, not for sin and the like by Chris Lattner · 21 years ago
  6. eee33b2 memset and bcopy and now unified by the llvm.memset intrinsic by Chris Lattner · 21 years ago
  7. 896481e No need to scan zero initializers. This should make DSA a bit faster. by Chris Lattner · 22 years ago
  8. 339d8df Add support for a bunch more functions by Chris Lattner · 22 years ago
  9. 68300db Add support for fopen/fclose. Specifically with fopen, we were marking all of the by Chris Lattner · 22 years ago
  10. a07b72f Restructure code to handle memcpy/memmove by Chris Lattner · 22 years ago
  11. d6a556b Cosmetic improvements to this option. by Chris Lattner · 22 years ago
  12. 945871d Actually load profiling information now! Block layout can use real, live, by Chris Lattner · 22 years ago
  13. c6fca42 Fix a typeo by Chris Lattner · 22 years ago
  14. ecefc96 Fix copy-and-pastos by Chris Lattner · 22 years ago
  15. 927fec3 Add skeleton profileinfoloader pass. This will be enhanced to actually LOAD by Chris Lattner · 22 years ago
  16. bc44aa6 Factor this code out of llvm-prof by Chris Lattner · 22 years ago
  17. b060194 Make sure to register the 'no profile' implementation as the default for ProfileInfo by Chris Lattner · 22 years ago
  18. 40c5767 Simplify implementation, and probably speed things up too. by Chris Lattner · 22 years ago
  19. 171de65 An initial implementation of an LLVM ProfileInfo class which is designed to by Chris Lattner · 22 years ago
  20. d21cd80 Adjust to the changed StructType interface. In particular, getElementTypes() is gone. by Chris Lattner · 22 years ago
  21. 2dea8d6 Add one that I missed by Chris Lattner · 22 years ago
  22. c3f5f77 Instead of callign removeTriviallyDeadNodes on the global graph every time by Chris Lattner · 22 years ago
  23. cd90f21 Remove another unneeded call. by Chris Lattner · 22 years ago
  24. cadfac6 This call is no longer needed now that merging does not produce garbage by Chris Lattner · 22 years ago
  25. 4ff0b96 Substantially improve the DSA code by removing 'forwarding' nodes from by Chris Lattner · 22 years ago
  26. 9857c1a Bugfix for ilist conversion. The ilist wants to make an 'end' node which has by Chris Lattner · 22 years ago
  27. 28897e1 Switch the Nodes list from being an std::vector<DSNode*> to an ilist<DSNode> by Chris Lattner · 22 years ago
  28. 9fd37ba Change to use node_iterators instead of direct access to Nodes by Chris Lattner · 22 years ago
  29. e92e764 getNodes() is gone, use node_begin/end instead by Chris Lattner · 22 years ago
  30. a84c681 getNodes() is gone by Chris Lattner · 22 years ago
  31. a5ca28c There is no need to clone over nodes that are going to be dead anyway by Chris Lattner · 22 years ago
  32. 3b303d9 In a "seeing the forest through the trees" kinda situation, I realized that a by Chris Lattner · 22 years ago
  33. 57ef9a2 This is a big diff with no functionality change. We just reorder some code, by Chris Lattner · 22 years ago
  34. 270db36 finegrainify namespacification by Chris Lattner · 22 years ago
  35. 1ad5bc5 Fixed Chris' typo. by Tanya Lattner · 22 years ago
  36. adf9b90 Implement optimizations for handling large basic blocks. by Chris Lattner · 22 years ago
  37. a67138d Avoid referencing deleted DSgraphs when merging an SCC into a larger SCC. This by Chris Lattner · 22 years ago
  38. a4dd674 Fix thinko by Chris Lattner · 22 years ago
  39. 92e41d5 Forward method request to chained aa implementation by Chris Lattner · 22 years ago
  40. bc1daaa Implement the pointsToConstantMemory() method. by Chris Lattner · 22 years ago
  41. f4d904d Improve mod/ref information based on the pointsToConstantMemory method. by Chris Lattner · 22 years ago
  42. 10d208d Order #includes alphabetically, per style guide. by Misha Brukman · 22 years ago
  43. ead9eb7 Fix a bug aflicting 265.gap by Chris Lattner · 22 years ago
  44. 17a93e2 Minor bugfixes by Chris Lattner · 22 years ago
  45. 62482e5 Rename DSGraph::ScalarMapTy -> DSScalarMap by Chris Lattner · 22 years ago
  46. 28da03b Fix a bug by Chris Lattner · 22 years ago
  47. a3fd88d Eliminate the call to removeTriviallyDeadNodes from updateFromGlobals graph, by Chris Lattner · 22 years ago
  48. 6d8f3dc In the TD pass, iterate over globals directly instead of through the whole scalar by Chris Lattner · 22 years ago
  49. 34741cf In the TD pass, don't iterate over the scalar map to find the globals, iterate over by Chris Lattner · 22 years ago
  50. bdce7b7 In updateFromGlobalsGraph, instead of iterating over all of the scalars in the by Chris Lattner · 22 years ago
  51. a88a55c Minor tweaks, eliminate useless integer pruning optimziation, turn on by Chris Lattner · 22 years ago
  52. 239644d Further reduce the number of nodes cloned with getClonedNH, using merge instead. by Chris Lattner · 22 years ago
  53. 00948c0 Add a timer, fix a minor bug. by Chris Lattner · 22 years ago
  54. 64507e3 Another bugfix, disable "spurious" output. by Chris Lattner · 22 years ago
  55. 352e31f fix bug in previous checkin by Chris Lattner · 22 years ago
  56. 0b14487 * Add a new commandline argument to control the "global roots hack". Default by Chris Lattner · 22 years ago
  57. f325e39 Rewrite to use the reachability cloner interface. Also, make this much more by Chris Lattner · 22 years ago
  58. 02da032 minor cleanups by Chris Lattner · 22 years ago
  59. 825a02a Get clone flags right, so we don't build InlinedGlobals only to clear them by Chris Lattner · 22 years ago
  60. 091f776 Initial support for implementing clonePartiallyInto in terms of cloneReachableSubgraph, though this support is currently disabled. by Chris Lattner · 22 years ago
  61. 2f56138 Eliminated the CompletedNodes argument to the cloneReachable* methods. This by Chris Lattner · 22 years ago
  62. 93ddd7e Ok, I'm tired of pulling out all my timers to check stuff in, just do it. by Chris Lattner · 22 years ago
  63. 5254a8d Bug fix: X.mergeWith(Y) was not updating Y if Y was a null node handle! by Chris Lattner · 22 years ago
  64. 4c6cb7a Start implementing DSGraph::clonePartiallyInto and implement mergeInGraph by Chris Lattner · 22 years ago
  65. 4a85776 Allow disabling of ALL printing overhead when performing timings by Chris Lattner · 22 years ago
  66. 67bb760 Remove use of ConstantHandling itf by Chris Lattner · 22 years ago
  67. e902863 Remove use of ConstantHandling itf by Chris Lattner · 22 years ago
  68. 6eb88d4 Eliminate use of ConstantHandling itf by Chris Lattner · 22 years ago
  69. b3da2fd Live var is now in lib/Target/Sparc by Chris Lattner · 22 years ago
  70. 12023d6 Move sparc-specific code into lib/Target/Sparc by Chris Lattner · 22 years ago
  71. 329c1c6 Improve encapsulation in the Loop and LoopInfo classes by eliminating the by Chris Lattner · 22 years ago
  72. 6cdc42b Add a note by Chris Lattner · 22 years ago
  73. 9a0a41f rename ClassifyExpression -> ClassifyExpr by Chris Lattner · 22 years ago
  74. 790462c Finegrainify namespacification by Chris Lattner · 22 years ago
  75. 4c307d4 finegrainify namespacification by Chris Lattner · 22 years ago
  76. 2cffeec Add a new AliassetTracker::remove method. Because we need to be able to remove by Chris Lattner · 22 years ago
  77. 2cdd21c Finegrainify namespacification by Chris Lattner · 22 years ago
  78. 4d7af65 Change interface of MachineOperand as follows: by Alkis Evlogimenos · 22 years ago
  79. e260924 Finegrainify namespacification by Chris Lattner · 22 years ago
  80. 4a83088 Factor out some duplicated code, implement the rest of the cases in by Chris Lattner · 22 years ago
  81. b307c88 Fix PR86. This makes basicaa _SIGNIFICANLY_ more aggressive with getelementptr's by Chris Lattner · 22 years ago
  82. 1ca2a58 Finegrainify namespacification Add new -print-cfg-only pass by Chris Lattner · 22 years ago
  83. c54735e Fix a glaring bug by Chris Lattner · 22 years ago
  84. 88d3e03 Realize the gep P, <zeros> must aliases P. This is a partial fix for PR 86 by Chris Lattner · 22 years ago
  85. 8639145 With Brian's change to AA.h we can now clean out this uglyness by Chris Lattner · 22 years ago
  86. 8e32f5e IncludeFile hack to pull in BasicValueNumbering whenever ValueNumbering.h by Brian Gaeke · 22 years ago
  87. 381bf79 Finegrainify namespacification by Chris Lattner · 22 years ago
  88. 9a4f8ef Finegrainify namespacification Provide a context module to WriteAsOperand by Chris Lattner · 22 years ago
  89. cd7c287 Finegrainify namespacification by Chris Lattner · 22 years ago
  90. fa3711a Do not depend on index type to determine whether it is a structure or sequential index by Chris Lattner · 22 years ago
  91. 9d7c9ea Fix file header by Chris Lattner · 22 years ago
  92. b66214c Remove dead variable by Chris Lattner · 22 years ago
  93. 1af55e1 Use gep_type_begin/end instead of looking for ubytes by Chris Lattner · 22 years ago
  94. ec4e808 Finegrainify namespacification by Chris Lattner · 22 years ago
  95. 1e2385b Finegrainify namespacification by Chris Lattner · 22 years ago
  96. 179bc7d Implement a small optimization to handling of GEP's that are equivalent to casts. by Chris Lattner · 22 years ago
  97. a366c98 Trying to get the dsgraph for an external function is bad for DSA's health by Chris Lattner · 22 years ago
  98. 79390d4 Implement the CompleteBU pass by Chris Lattner · 22 years ago
  99. 6acfe92 Minor code cleanup by Chris Lattner · 22 years ago
  100. a190766 Disable integer tracking by default by Chris Lattner · 22 years ago