1. dec628e Switch ValueSymbolTable to use StringMap<Value*> instead of std::map<std::string, Value*> by Chris Lattner · 18 years ago
  2. 8adde28 regenerate by Chris Lattner · 18 years ago
  3. c02659f add #include by Chris Lattner · 18 years ago
  4. 44dcd01 Add support for removing elements out of StringMap. by Chris Lattner · 18 years ago
  5. b5bb9f5 Replace the ugly FindValue method with STL-like find methods. by Chris Lattner · 18 years ago
  6. ea7acb8 fix uninitialized variable by Chris Lattner · 18 years ago
  7. 360cac8 remove support for stringmap visitors now that iterators exist. by Chris Lattner · 18 years ago
  8. a86559e add support for iterators. by Chris Lattner · 18 years ago
  9. 86cc423 simplify code by using Value::takeName by Chris Lattner · 18 years ago
  10. 6934a04 Simplify code by using value::takename by Chris Lattner · 18 years ago
  11. 046800a simplify name juggling through the use of Value::takeName. by Chris Lattner · 18 years ago
  12. f41916e add an optimization for the case where the src has no name by Chris Lattner · 18 years ago
  13. 3e05164 Fix comments to match names of functions. by Nick Lewycky · 18 years ago
  14. 33f2949 simplify this code by using value::takename by Chris Lattner · 18 years ago
  15. 7216811 add a helper method: Value::takeName by Chris Lattner · 18 years ago
  16. b508987 Undo the last patch. It slowed down bcwriter by 1.8% but only sped up by Reid Spencer · 18 years ago
  17. a77600e Switch some std::vector's to SmallVectors. This speeds up -load-vn -gcse by Chris Lattner · 18 years ago
  18. fd1ad3b modify CheckGEPInstructions to take a pointer and size instead of a vector. by Chris Lattner · 18 years ago
  19. cc5dc2e Assert that elements of packed are pointer/float/opaque. by Reid Spencer · 18 years ago
  20. 829621c eliminate use of TargetData::getIndexedOffset that takes a vector by Chris Lattner · 18 years ago
  21. 309f87e completely eliminate a temporary vector by Chris Lattner · 18 years ago
  22. 7f6b9d2 eliminate temporary vectors. by Chris Lattner · 18 years ago
  23. f6ca09a Switch LayoutInfo to be a DenseMap instead of an std::map. This speeds up by Chris Lattner · 18 years ago
  24. a12bd03 add a typedef by Chris Lattner · 18 years ago
  25. 9182e3f eliminate the std::vector from StructLayout, allocating the elements immediately by Chris Lattner · 18 years ago
  26. b0c39a3 encapsulate the rest of the StructLayout members. by Chris Lattner · 18 years ago
  27. b1919e2 Privatize StructLayout::MemberOffsets, adding an accessor by Chris Lattner · 18 years ago
  28. ec6478b Use ManagedStatic to manage LayoutInfo, instead of rolling our own. by Chris Lattner · 18 years ago
  29. ddce8d2 Change TargetData::getIndexedOffset interface to not require indices by Chris Lattner · 18 years ago
  30. e463fc8 Allow PackedType to be constructed with an abstract type. by Reid Spencer · 18 years ago
  31. 91c4af2 Compaction tables don't exist any more. by Reid Spencer · 18 years ago
  32. fe3cccf For PR1194: by Reid Spencer · 18 years ago
  33. c834553 Fix a comment. by Reid Spencer · 18 years ago
  34. f8edb62 convert some vectors to smallvector. by Chris Lattner · 18 years ago
  35. 8552fae speed up the verifier 8.5% by using a smallvector instead of vector. by Chris Lattner · 18 years ago
  36. 78287b4 Change an std::set to a SmallPtrSet. This speeds up the verifier on by Chris Lattner · 18 years ago
  37. 863da4c Change the table datastructure to be a vector<smallvector>, instead of by Chris Lattner · 18 years ago
  38. ae052aa Make BytecodeWriter::outputValueSymbolTable *significantly* less abusive by Chris Lattner · 18 years ago
  39. b8cb5fe make the datastructure used in BytecodeWriter::outputValueSymbolTable by Chris Lattner · 18 years ago
  40. f98aad6 Switch typemap over to DenseMap. No significant speedup. by Chris Lattner · 18 years ago
  41. 362df0d Switch NodeMap from an std::map to a DenseMap. This speeds up bcwriting by Chris Lattner · 18 years ago
  42. dc45f0f use typedefs where appropriate by Chris Lattner · 18 years ago
  43. 13dc07c The ModuleLevel vector is often quite sparse. Switch it to a DenseMap. This by Chris Lattner · 18 years ago
  44. 7cad3cf Make the ModuleLevel datastructure more sane. When a function-local value by Chris Lattner · 18 years ago
  45. 06f94d5 Only compute the module levels info once per module, instead of once by Chris Lattner · 18 years ago
  46. 77aae26 Clone and specialize CreateSlotIfNeeded into CreateFunctionValueSlot to handle by Chris Lattner · 18 years ago
  47. 2b8269f make getSlot/getTypeSlot inline by Chris Lattner · 18 years ago
  48. 972b4dc getTypeSlot can never fail by Chris Lattner · 18 years ago
  49. a2bdad4 getSlot can never fail. Make it assert internally, eliminate checks in by Chris Lattner · 18 years ago
  50. 8183cf6 simplify getOrCreateTypeSlot, eliminat doInsertType. Eliminate post-order iteration stuff. by Chris Lattner · 18 years ago
  51. 25c0293 simplify and speed up recursive type processing. by Chris Lattner · 18 years ago
  52. 94bec4f rename getOrCreateSlot -> CreateSlotIfNeeded. Noone cares about the retval by Chris Lattner · 18 years ago
  53. 17d60ce refactor callers of insertType. inline insertType into its one remaining caller. by Chris Lattner · 18 years ago
  54. 25c3fa3 simplify code. by Chris Lattner · 18 years ago
  55. 36e1173 simplify some logic, reduce nesting by Chris Lattner · 18 years ago
  56. 4ef92d8 Remove dead ctor by Chris Lattner · 18 years ago
  57. 7f481e5 ModuleContainsAllFunctionConstants is always true by Chris Lattner · 18 years ago
  58. 1ef9ca4 only one client of getOrCreateSlot can pass a void typed value. Check type by Chris Lattner · 18 years ago
  59. 44bd331 inline hasNullValue, rename some variables, simplify some code. by Chris Lattner · 18 years ago
  60. 87dddc5 merge insertValue into its single caller, eliminate some redundant checks. by Chris Lattner · 18 years ago
  61. 75e2cf5 merge doInsertValue into insertValue by Chris Lattner · 18 years ago
  62. 618181e insertvalue's second operand is always false by Chris Lattner · 18 years ago
  63. 330fce7 remove dead 'dontIgnore' flag for insertType by Chris Lattner · 18 years ago
  64. cb43fdc rename getSlot -> getSlotType and getOrCreateSlot ->getOrCreateTypeSlot by Chris Lattner · 18 years ago
  65. ad2070c Add function live-ins to entry block live-in set. by Evan Cheng · 18 years ago
  66. 13d8285 Add live-ins to MachineBasicBlock. by Evan Cheng · 18 years ago
  67. 15699fc Rename some variables to avoid confusion with SelectionDAGISel::BB. by Evan Cheng · 18 years ago
  68. e03cff6 These vectors are frequently large. Use std::vector instead. by Evan Cheng · 18 years ago
  69. d1f711f Fix clients like this: by Chris Lattner · 18 years ago
  70. c99ef08 Add reference counting to constantpool entries. Delete the unused ones. by Evan Cheng · 18 years ago
  71. 7d00341 Use int32_t and uint32_t to hopefully help weak compilers (cygwin) not by Reid Spencer · 18 years ago
  72. 8abcfe1 add a note by Chris Lattner · 18 years ago
  73. 394355e Make SlotCalculator::getPlane an inline function. It is used inside loops. by Reid Spencer · 18 years ago
  74. 191d731 remove unneeded #includes by Chris Lattner · 18 years ago
  75. 8dcd81c remove dead code, the outputConstants function is now only called at module scope. by Chris Lattner · 18 years ago
  76. ba6de4b 1. constants can never occur in the symbol table. by Chris Lattner · 18 years ago
  77. ff4304f Eliminates friend function declaration inside APInt, instead, adds public by Zhou Sheng · 18 years ago
  78. 8c541bc Remove fixed item by Nate Begeman · 18 years ago
  79. 6a9a765 This is done. by Evan Cheng · 18 years ago
  80. 2e67781 Make use of TLI.SimplifySetCC() in LegalizeSetCCOperands(). by Evan Cheng · 18 years ago
  81. fa1eb27 Move SimplifySetCC to TargetLowering and allow it to be shared with legalizer. by Evan Cheng · 18 years ago
  82. bb28a81 Rename CStringMap -> StringMap, since it now supports nul characters in the by Chris Lattner · 18 years ago
  83. ee18242 Allow cstringmap to contain strings with nul characters in them. by Chris Lattner · 18 years ago
  84. ac5a545 return addresses, those I already have by Andrew Lenharth · 18 years ago
  85. a05eaa6 Switched this file on accidently. by Zhou Sheng · 18 years ago
  86. 0b706b1 As Chris and Reid suggested, remove "isSigned" field from APInt, instead, by Zhou Sheng · 18 years ago
  87. 2f5bcb5 Fixed comments. by Bill Wendling · 18 years ago
  88. f50d09a Fixed a long standing spiller bug that's exposed by Thumb: by Evan Cheng · 18 years ago
  89. eb1ac33 Moved the MachOWriter and ELFWriter out of the Target/* files. Placed the by Bill Wendling · 18 years ago
  90. 50e4e88 Added new method to add a "simple" code emitter. That is, to only add by Bill Wendling · 18 years ago
  91. 04523ea Split the addPassesToEmitFile method up into two. This is so that we can by Bill Wendling · 18 years ago
  92. 8f84f1f Add function to create a file writer. by Bill Wendling · 18 years ago
  93. 449c57a Dead files. Functionality has been taken over by the Add*Writer functions. by Bill Wendling · 18 years ago
  94. 4b2ca1a Moved from include/llvm/CodeGen to lib/CodeGen. by Bill Wendling · 18 years ago
  95. 23cbb1c For PR1188: Compute BitMask correctly. by Reid Spencer · 18 years ago
  96. f36c7b8 move archive-specific stuff out of bcreader into archive library. by Chris Lattner · 18 years ago
  97. 7cf7c2b move an llvmc-specific function out of the bcreader into llvmc. by Chris Lattner · 18 years ago
  98. c6d0b16 move AnalyzeBytecodeFile out of ReaderWrappers.cpp into Analyzer.cpp. Now by Chris Lattner · 18 years ago
  99. bd8251a isLowRegister() expects input is a physical register. by Evan Cheng · 18 years ago
  100. f2e292c push bytecode decompressor out through APIs. Now the bytecode reader by Chris Lattner · 18 years ago