1. 3497179 Fix doxygen comment by Misha Brukman · 21 years ago
  2. d7dc1ec The system ranlib on darwin occasionally adds two extra newlines to the by Chris Lattner · 21 years ago
  3. 6614946 Convert code to compile with vc7.1. by Reid Spencer · 21 years ago
  4. a5c04ee Fixes to make LLVM compile with vc7.1. by Alkis Evlogimenos · 21 years ago
  5. 7c16caa Changes For Bug 352 by Reid Spencer · 21 years ago
  6. 9874c63 Get rid of an extraneous local variable. by Reid Spencer · 21 years ago
  7. 191aa30 Bytecode Reader Cleanup: by Reid Spencer · 21 years ago
  8. 0220904 Packed types, brought to you by Brad Jones by Brian Gaeke · 21 years ago
  9. c3e4364 Bytecode File Format Changes: by Reid Spencer · 21 years ago
  10. 24fa5fd Turn a use of intptr_t into a reinterpret_cast<uint64_t> instead to get by Reid Spencer · 21 years ago
  11. bba09b3 Make getGlobalTableValue not use getTypeSlot, this speeds up the bc reader by Chris Lattner · 21 years ago
  12. cd84396 Do not do a linear std::find to reconstruct information we had, but later threw by Chris Lattner · 21 years ago
  13. 7ef55da Simplify code and silence warning by Chris Lattner · 21 years ago
  14. 74635dc Fix a serious bug in the double constant reader. In particular, because by Chris Lattner · 21 years ago
  15. 9a5f371 Always write FP values correctly. by Reid Spencer · 21 years ago
  16. b2bdb94 bug 263: by Reid Spencer · 21 years ago
  17. db1863d bug 122: by Reid Spencer · 21 years ago
  18. def1a51 Actually set the endian/pointersize flags on the module being read in! by Brian Gaeke · 21 years ago
  19. b88d2a4 Fix warning on SparcV9, where sizeof (int) != sizeof (void *). by Brian Gaeke · 21 years ago
  20. 194c576 Various cleanups: by Reid Spencer · 21 years ago
  21. f3905c8 Error Handling Cleanup: by Reid Spencer · 21 years ago
  22. 6a21813 Fix a backwards compatibility bug found by Tanya. In version 1.2, the by Reid Spencer · 21 years ago
  23. 02b6708 Finalize bytecode dumping. The "handleFinish" method was getting called by Reid Spencer · 21 years ago
  24. bc70f74 - Don't use macros to call the BytecodeHandler by Reid Spencer · 21 years ago
  25. 284b7c7 MAJOR REWRITE. by Reid Spencer · 21 years ago
  26. 6b72759 Rename Type::PrimitiveID to TypeId and ::getPrimitiveID() to ::getTypeID() by Chris Lattner · 21 years ago
  27. 15701e8 Implement support for a new LLVM 1.3 bytecode format, which uses uint's by Chris Lattner · 22 years ago
  28. bc8ba73 Remove a bunch of cruft that was used to be backwards compatible with the last by Chris Lattner · 22 years ago
  29. dd7ce6c Make error message a bit nicer. Contributed by Reid Spencer by Chris Lattner · 22 years ago
  30. fa829be Start using the new and improve interface to FunctionType arguments by Chris Lattner · 22 years ago
  31. 6cc66d9 Fix bogus warning and simplify code by Chris Lattner · 22 years ago
  32. a395324 Bugfixes for dealing with partially compactified functions by Chris Lattner · 22 years ago
  33. 5a66bb7 Save another 30K from 176.gcc by encoding the compaction table a bit more by Chris Lattner · 22 years ago
  34. e104d88 Add support for reading bytecode files with compactiontables for bytecode files. by Chris Lattner · 22 years ago
  35. 677af4a Bytecode format for LLVM 1.2 no longer explicitly encodes zeros in primitive by Chris Lattner · 22 years ago
  36. e2f6317 Allow bytecode files to refer directly to global values as constants, instead by Chris Lattner · 22 years ago
  37. 7c73b19 Fix PR73 by Chris Lattner · 22 years ago
  38. faaf32d Change all of the bytecode reader primitives to throw exceptions instead of by Chris Lattner · 22 years ago
  39. 394afe0 Version 1.2 now supports encoding strings as a special case, to avoid having by Chris Lattner · 22 years ago
  40. 893b184 Remove support for the pre-1.0 bytecode version #1. This will become by Chris Lattner · 22 years ago
  41. 328e067 remove some useless #includes by Chris Lattner · 22 years ago
  42. d9cf9b3 Emit & read more compressed bytecode by not emitting a bytecodeblock for by Chris Lattner · 22 years ago
  43. 9c68fa3 * Finegrainify namespacification by Chris Lattner · 22 years ago
  44. ffa9d51 Minor speedup to do less linear time searches of information we already have. by Chris Lattner · 22 years ago
  45. 960707c Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 22 years ago
  46. 482202a Added LLVM project notice to the top of every C++ source file. by John Criswell · 22 years ago
  47. eb6cfae Fix warning by Chris Lattner · 22 years ago
  48. dc83293 add support for new linkage types by Chris Lattner · 22 years ago
  49. 7c6c539 * New revised variable argument handling support by Chris Lattner · 22 years ago
  50. 2d05c60 Add support for 'weak' linkage. by Chris Lattner · 22 years ago
  51. aa78cc9 Minor cleanups by Chris Lattner · 22 years ago
  52. a785563 Avoid calling getTypeSlot more by Chris Lattner · 22 years ago
  53. fdf472a Ok, the "fix" for this is to do a real associative container. Symbol tables by Chris Lattner · 22 years ago
  54. 1434d68 Another 10% performance improvement by not using replaceAllUsesWith by Chris Lattner · 22 years ago
  55. 5255bed Use the version of getValue that takes the type plane instead of the type by Chris Lattner · 22 years ago
  56. 819ce2d Pass a vector around to reduce dynamic allocation by Chris Lattner · 22 years ago
  57. 1ae8a48 Change getConstantValue to throw an exception on error, not return null by Chris Lattner · 22 years ago
  58. a89c910 Remove potentially N^2 algorithm from symbol table reader. No speedup by Chris Lattner · 22 years ago
  59. e7691a4 Major refactoring of the bytecode reader. This includes the following by Chris Lattner · 22 years ago
  60. bd26abd Significantly clean up parsing of instructions. This exceptionizes and by Chris Lattner · 22 years ago
  61. 1e8addf Eliminate the instruction placeholder. Simplify a bunch of code. by Chris Lattner · 22 years ago
  62. 42dce1e Eliminate the old LateResolveValues data structure, replacing it with a by Chris Lattner · 22 years ago
  63. a9c297c Remove a dead method by Chris Lattner · 22 years ago
  64. abf6412 This patch substantially simplifies and cleans up handling of basic blocks by Chris Lattner · 22 years ago
  65. f29c7b1 Inline the postResolveValues method. It was poorly named anyway by Chris Lattner · 22 years ago
  66. 8555577 Various cleanups and simplifications. This speeds up reading a bytecode file by Chris Lattner · 22 years ago
  67. 069d649 Transform two methods to return pointers directly instead of returning them by Chris Lattner · 22 years ago
  68. 4318c4b Use V for values, not D. by Chris Lattner · 22 years ago
  69. 4437995 Just rethrow previous exception instead of making a new one by Chris Lattner · 22 years ago
  70. 0c0a882 Suggestions made by Chris: by Misha Brukman · 22 years ago
  71. 6e9a351 * Cleaned up code: by Misha Brukman · 22 years ago
  72. acda7df Fixed spelling and grammar. by Misha Brukman · 22 years ago
  73. 53bd0b2 Remove a gross hack that was there to support bytecode files that are over a year old. by Chris Lattner · 22 years ago
  74. 55a07ad Allow modules to have 'any' pointer size and endianness. Luckily, we had by Chris Lattner · 22 years ago
  75. 7eb05a1 Spell `necessary' correctly. by Misha Brukman · 22 years ago
  76. 3ef61af Merged in autoconf branch. This provides configuration via the autoconf system. by John Criswell · 22 years ago
  77. c56bdc5 Do not assert fail or crash when a bytecode parse fails! by Chris Lattner · 22 years ago
  78. e69a1b9 Eliminate the uchar typedef, use unsigned char explicitly by Chris Lattner · 22 years ago
  79. 35834a5 Add support for reading and writing pointersize/endianness to and from bytecode by Chris Lattner · 23 years ago
  80. b672b56 Preserve module source information in the ModuleID by Chris Lattner · 23 years ago
  81. 561e000 Add support for reading unaligned bytecode buffers by Chris Lattner · 23 years ago
  82. 56d9f7f Fix a big bad bug I checked in yesterday :( by Chris Lattner · 23 years ago
  83. 23bf637 Add support to the bytecode reader/writer for the new linkage types by Chris Lattner · 23 years ago
  84. 379a8d2 Add new linkage types to support a real frontend by Chris Lattner · 23 years ago
  85. 5db8194 * Bug fixes: by Chris Lattner · 23 years ago
  86. 1a17571 Infrastructure for more compact bytecode files and REAL support for versioning by Chris Lattner · 23 years ago
  87. c8f563b s/Method/Function in variable and method names by Chris Lattner · 23 years ago
  88. 3f57f18 Continue simplifying error handling, s/method/function by Chris Lattner · 23 years ago
  89. 21ae41b Cleanup error handling constructs by Chris Lattner · 23 years ago
  90. e373d5a Pull common code out by Chris Lattner · 23 years ago
  91. 17f8686 Use the std namespace explicitly by Chris Lattner · 23 years ago
  92. 98cf1f5 - Eliminated the deferred symbol table stuff in Module & Function, it really by Chris Lattner · 23 years ago
  93. 49f4242 - Fix a really nasty bug in the bytecode reader that caused it to fail by Chris Lattner · 23 years ago
  94. 95fcefc Wow, for some reason, when reading bytecode from stdin, we were only reading by Chris Lattner · 23 years ago
  95. 2862d2e There is no way to guarantee that constants are not forward referenced. by Chris Lattner · 23 years ago
  96. 149376d - Change Function's so that their argument list is populated when they are by Chris Lattner · 23 years ago
  97. 8137896 Changed uchar to unsigned char in function ParseBytecodeBuffer, because seemingly it affects opt in uncertain ways :) by Anand Shukla · 23 years ago
  98. dc23308 Emit an obnoxious warning message for bytecode that includes load/store by Chris Lattner · 23 years ago
  99. 6a33371 Turn off a debugging optimization that just slows bytecode reading down by Chris Lattner · 23 years ago
  100. 51fa0ef - Finally nailed: test/Regression/Assembler/2002-08-16-ConstExprInlined.llx by Chris Lattner · 23 years ago