1. e4d5c44 This mega patch converts us from using Function::a{iterator|begin|end} to by Chris Lattner · 19 years ago
  2. 841957e Don't crash if computing a mapping to a node with zero size by Chris Lattner · 19 years ago
  3. b0f92e3 rename method, add counterpart by Chris Lattner · 19 years ago
  4. b2b17bb add a method to compute a commonly used mapping. by Chris Lattner · 19 years ago
  5. e2bc7b2 regardless of whether or not the client things we should mark globals incomplete, by Chris Lattner · 19 years ago
  6. b5ecd2e The incoming arguments to main (the argv list) are not complete! by Chris Lattner · 19 years ago
  7. 2787e03 Replace linear search with logrithmic one. by Chris Lattner · 19 years ago
  8. a4319e5 make sure to mark nodes returned from functions as incomplete by Chris Lattner · 19 years ago
  9. f8db8a0 Fix spelling, patch contributed by Gabor Greif by Chris Lattner · 19 years ago
  10. d7642c4 Fix a bug introduced by revision 1.187 of this file. by Chris Lattner · 19 years ago
  11. 7a0c775 Add a sanity check. by Chris Lattner · 19 years ago
  12. d672ab9 Add a new method to make it easy to update graphs. by Chris Lattner · 19 years ago
  13. 6be0794 Use new edge iterators to simplify some code. by Chris Lattner · 20 years ago
  14. e859444 Split mergeInGraph into two methods. by Chris Lattner · 20 years ago
  15. bb753c4 Refactor getFunctionArgumentsForCall out of mergeInGraph. by Chris Lattner · 20 years ago
  16. f9aace2 Rename variables to work with VC++'s hokey scoping rules. by Chris Lattner · 20 years ago
  17. a9548d9 * Make some methods more const correct. by Chris Lattner · 20 years ago
  18. 507bdf9 Silence VC++ warnings. by Chris Lattner · 20 years ago
  19. b29dd0f Move method out of line for better ICC support by Chris Lattner · 20 years ago
  20. e84c23e Improve comment by Chris Lattner · 20 years ago
  21. 7d8d471 Add more paranoid assertions :) by Chris Lattner · 20 years ago
  22. 857eb06 Fix three bugs: by Chris Lattner · 20 years ago
  23. 6f96774 * Add a method by Chris Lattner · 20 years ago
  24. 551ccae Changes For Bug 352 by Reid Spencer · 20 years ago
  25. 47b14a4 Fix #includes of i*.h => Instructions.h as per PR403. by Misha Brukman · 20 years ago
  26. 5ace1e4 Disable some code that isn't helping matters by Chris Lattner · 20 years ago
  27. 4dabb2c Move all of the DSA headers into the Analysis/DataStructure subdir. by Chris Lattner · 20 years ago
  28. efffdc9 As much as I hate to say it, the whole setNode interface for DSNodeHandles by Chris Lattner · 20 years ago
  29. 37ec591 Fix merging of nodes whose incoming offset is not zero. This unbreaks DSA on by Chris Lattner · 20 years ago
  30. f70c22b Rename Type::PrimitiveID to TypeId and ::getPrimitiveID() to ::getTypeID() by Chris Lattner · 20 years ago
  31. 96a8bd7 Wrapped code and comments at 80 cols; doxygenified some comments. by Misha Brukman · 20 years ago
  32. cc7c4ac Fix a tiny bug that caused an incorrect assertion failure poolallocating by Chris Lattner · 20 years ago
  33. 85fb1be implement new method by Chris Lattner · 20 years ago
  34. d84d350 Fix a bug handling globals that are constants, but are still external by Chris Lattner · 20 years ago
  35. e6e93cc Implement a FIXME, improving the efficiency of DSA on povray. by Chris Lattner · 20 years ago
  36. f590ced Fix BU datastructures with povray! by Chris Lattner · 20 years ago
  37. 2f34690 Only clone nodes that are needed in the caller, don't clone ALL aux calls. This improves by Chris Lattner · 20 years ago
  38. c4ebdce Fix a DSA bug that caused DSA to generate incredibly huge graphs and take forever to by Chris Lattner · 20 years ago
  39. 2c7725a Deinline methods, add fast exit by Chris Lattner · 20 years ago
  40. b1aaeee Fix a node mapping problem that was causing the pool allocator to locally allocate by Chris Lattner · 20 years ago
  41. 0321b68 Only clone global nodes between graphs if both graphs have the global. by Chris Lattner · 20 years ago
  42. af6926a Fix typo by Chris Lattner · 20 years ago
  43. abcdf80 The node doesn't have to be _no_ node flags, it just has to be complete and by Chris Lattner · 20 years ago
  44. cf14e71 Two changes: by Chris Lattner · 20 years ago
  45. 51c06ab Simplify the dead node elimination stuff by Chris Lattner · 20 years ago
  46. 0ad9170 Use isNull instead of getNode() to test for existence of a node, this is cheaper. by Chris Lattner · 20 years ago
  47. d85645f Fix an iterator invalidation problem which was causing some nodes to not be by Chris Lattner · 20 years ago
  48. d21cd80 Adjust to the changed StructType interface. In particular, getElementTypes() is gone. by Chris Lattner · 21 years ago
  49. c3f5f77 Instead of callign removeTriviallyDeadNodes on the global graph every time by Chris Lattner · 21 years ago
  50. 4ff0b96 Substantially improve the DSA code by removing 'forwarding' nodes from by Chris Lattner · 21 years ago
  51. 9857c1a Bugfix for ilist conversion. The ilist wants to make an 'end' node which has by Chris Lattner · 21 years ago
  52. 28897e1 Switch the Nodes list from being an std::vector<DSNode*> to an ilist<DSNode> by Chris Lattner · 21 years ago
  53. 9fd37ba Change to use node_iterators instead of direct access to Nodes by Chris Lattner · 21 years ago
  54. e92e764 getNodes() is gone, use node_begin/end instead by Chris Lattner · 21 years ago
  55. a5ca28c There is no need to clone over nodes that are going to be dead anyway by Chris Lattner · 21 years ago
  56. ead9eb7 Fix a bug aflicting 265.gap by Chris Lattner · 21 years ago
  57. 17a93e2 Minor bugfixes by Chris Lattner · 21 years ago
  58. 62482e5 Rename DSGraph::ScalarMapTy -> DSScalarMap by Chris Lattner · 21 years ago
  59. 28da03b Fix a bug by Chris Lattner · 21 years ago
  60. a3fd88d Eliminate the call to removeTriviallyDeadNodes from updateFromGlobals graph, by Chris Lattner · 21 years ago
  61. bdce7b7 In updateFromGlobalsGraph, instead of iterating over all of the scalars in the by Chris Lattner · 21 years ago
  62. a88a55c Minor tweaks, eliminate useless integer pruning optimziation, turn on by Chris Lattner · 21 years ago
  63. 239644d Further reduce the number of nodes cloned with getClonedNH, using merge instead. by Chris Lattner · 21 years ago
  64. 00948c0 Add a timer, fix a minor bug. by Chris Lattner · 21 years ago
  65. 64507e3 Another bugfix, disable "spurious" output. by Chris Lattner · 21 years ago
  66. 352e31f fix bug in previous checkin by Chris Lattner · 21 years ago
  67. 0b14487 * Add a new commandline argument to control the "global roots hack". Default by Chris Lattner · 21 years ago
  68. 091f776 Initial support for implementing clonePartiallyInto in terms of cloneReachableSubgraph, though this support is currently disabled. by Chris Lattner · 21 years ago
  69. 2f56138 Eliminated the CompletedNodes argument to the cloneReachable* methods. This by Chris Lattner · 21 years ago
  70. 93ddd7e Ok, I'm tired of pulling out all my timers to check stuff in, just do it. by Chris Lattner · 21 years ago
  71. 5254a8d Bug fix: X.mergeWith(Y) was not updating Y if Y was a null node handle! by Chris Lattner · 21 years ago
  72. 4c6cb7a Start implementing DSGraph::clonePartiallyInto and implement mergeInGraph by Chris Lattner · 21 years ago
  73. 9a92729 Fine-grainify namespaces for this library by Chris Lattner · 21 years ago
  74. afc1dba Add new argument to disable checking by Chris Lattner · 21 years ago
  75. 9dc4185 Don't crash if no gg by Chris Lattner · 21 years ago
  76. d0fde30 Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 21 years ago
  77. 413406c Compute node offsets correctly by Chris Lattner · 21 years ago
  78. 400433d Add new method for computing node mappings. This is used by the pool allocator by Chris Lattner · 21 years ago
  79. 15869aa All DSGraphs keep a reference to the targetdata they are created with. This is by Chris Lattner · 21 years ago
  80. dbfe36e Fix bug: test/Regression/Analysis/DSGraph/2003-11-02-NodeCollapsing.ll by Chris Lattner · 21 years ago
  81. b576c94 Added LLVM project notice to the top of every C++ source file. by John Criswell · 21 years ago
  82. bab8c28 Remove trivially dead nodes was not removing nodes that were dead due to forwarding! by Chris Lattner · 21 years ago
  83. 808a7ae Switch from using CallInst's to represent call sites to using the LLVM by Chris Lattner · 21 years ago
  84. 2f2d065 Fixed spelling and grammar. by Misha Brukman · 21 years ago
  85. 7ddb013 Add more verbose comment by Chris Lattner · 21 years ago
  86. 108421a Added function mergeInGlobalsGraph which merges in the entire globals graph with the graph of a function by Sumant Kowshik · 21 years ago
  87. 6806f56 DEBUG got moved to Support/Debug.h by Chris Lattner · 21 years ago
  88. 40c600e Fix comment. by Vikram S. Adve · 21 years ago
  89. 78bbec7 Implement 2 important changes: (1) rematerialization from the globals graph, by Vikram S. Adve · 21 years ago
  90. 85cfe01 Remove globals more aggressively from graphs. by Chris Lattner · 21 years ago
  91. 7079386 INCLUDE_PARENT_GRAPH is required! by Chris Lattner · 21 years ago
  92. 58f98d0 Add support for ParentGraph only when building in debug mode by Chris Lattner · 21 years ago
  93. 18f07a1 Rework TD pass to work with the precise call graph constructed by the BU phase by Chris Lattner · 21 years ago
  94. a9d6566 Add new method by Chris Lattner · 21 years ago
  95. 9f93055 Be more const-correct by Chris Lattner · 21 years ago
  96. 7b1ceaa Fix bug in last checkin by Chris Lattner · 21 years ago
  97. 2cb9acd Handle the case where OldNodeMap == &ScalarMap correctly by Chris Lattner · 21 years ago
  98. 8d32767 Move usages of explicit hash_* datastructures to use typedefs by Chris Lattner · 21 years ago
  99. 5a54063 Revamp DSGraphs so that they can support multiple functions in the same by Chris Lattner · 21 years ago
  100. 06e24c8 Fix minor bug in previous checkin by Chris Lattner · 21 years ago