1. 0baa0af If these blocks are empty, there is no reason to even emit the bytecode blocks. by Chris Lattner · 22 years ago
  2. d5c59d5 Cleanups & efficiency improvements by Chris Lattner · 22 years ago
  3. 8c202cd The bcwriter does not want ConstantPointerRef's to be indexed, and the asmwriter never did! by Chris Lattner · 22 years ago
  4. 7be08bf ConstantPointerRef's are no longer emitted. This saves 20028 bytes in the by Chris Lattner · 22 years ago
  5. f4c0e7f Fix PR73: bytecode format inconsistent by Chris Lattner · 22 years ago
  6. c8434e3 Remove the optimization that depends on ENDIAN_LITTLE: it's not worth it. by Chris Lattner · 22 years ago
  7. 7851e1b Improve comments, add support for remembering the constants strings that by Chris Lattner · 22 years ago
  8. 83bb3d2 The new bytecode format supports emitting strings a special case. This is by Chris Lattner · 22 years ago
  9. dcea630 When emitting bytecode, handle strings specially. Do not add the characters by Chris Lattner · 22 years ago
  10. 0a3a27b It is obvious that this has never been used for outputing more than a single by Chris Lattner · 22 years ago
  11. 44e3803 Be const correct by Chris Lattner · 22 years ago
  12. d6942d7 Ok, I can't handle it. This is a temporary checkin of a ton of statistics that by Chris Lattner · 22 years ago
  13. 277bafb Toggle sense of flag by Chris Lattner · 22 years ago
  14. 8ce7501 The only clients of the slot calculator are now the asmwriter and bcwriter. by Chris Lattner · 22 years ago
  15. 92fa44c Urg, remove testing code. by Chris Lattner · 22 years ago
  16. 9380297 Fix a regression that I introduced yesterday. :( by Chris Lattner · 22 years ago
  17. a14b0d4 Check in two changes: by Chris Lattner · 22 years ago
  18. 737d3cd Do not bother to emit a BytecodeBlock for an empty symbol table. This commonly by Chris Lattner · 22 years ago
  19. 32abce6 Err, we don't need Config/*.h files for things that are standard C++ by Chris Lattner · 22 years ago
  20. 1499934 minor comment tweaks by Chris Lattner · 22 years ago
  21. 4443019 Refactor writer stuff out of include/llvm/Bytecode/Primitives.h. This is by Chris Lattner · 22 years ago
  22. 44f549b Finegrainify namespacification by Chris Lattner · 22 years ago
  23. 8d1dbd2 Emit & read more compressed bytecode by not emitting a bytecodeblock for by Chris Lattner · 22 years ago
  24. 31f8499 Finegrainify namespacification by Chris Lattner · 22 years ago
  25. 02071d0 Remove usage of ConstantPointer by Chris Lattner · 22 years ago
  26. d0fde30 Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 22 years ago
  27. 088eb45 Use already existing classes for post order iterator. by Alkis Evlogimenos · 22 years ago
  28. 74fa84f Output types in reverse postorder. This will allow the ByteCode/Reader by Alkis Evlogimenos · 22 years ago
  29. bc839b5 Explicitly cast type, so we aren't passing output_vbr a size_t. by Brian Gaeke · 22 years ago
  30. 5d1bdcd Add more debugging info to help tracing the SlotCalculator. by Alkis Evlogimenos · 22 years ago
  31. 2765c41 Make sure to add a type for va_next operands, which may not other wise by Chris Lattner · 22 years ago
  32. 389dbfb Fix problem which effected linking apache by Chris Lattner · 22 years ago
  33. 856ba76 Added LLVM copyright header. by John Criswell · 22 years ago
  34. e488e93 Added LLVM copyright notice to Makefiles. by John Criswell · 22 years ago
  35. 6fbcc26 Added LLVM copyright header (for lack of a better term). by John Criswell · 22 years ago
  36. b576c94 Added LLVM project notice to the top of every C++ source file. by John Criswell · 22 years ago
  37. ce439b5 "Function"[0] == 'F', not 'M' by Chris Lattner · 22 years ago
  38. 22482a1 add support for new linkage types by Chris Lattner · 22 years ago
  39. eff112c Updated to emit the final 1.0 bytecode format. This supports weak linkage, by Chris Lattner · 22 years ago
  40. 6059638 Eliminate some extraneous code in SlotCalculator::insertVal(). by Alkis Evlogimenos · 22 years ago
  41. 6b25242 Add support for 'weak' linkage. by Chris Lattner · 22 years ago
  42. cb18d18 Stop using "reverse depth first" order by Chris Lattner · 22 years ago
  43. cf3056d Regularize header file comments by Chris Lattner · 22 years ago
  44. 4848689 Standardize header file comments by Chris Lattner · 22 years ago
  45. abe83ae Fix a spello Misha made while fixing one of my appostrifications by Chris Lattner · 22 years ago
  46. 37f92e2 Fixed spelling and grammar. by Misha Brukman · 22 years ago
  47. 0fe56f4 Add support for writing volatile load/stores by Chris Lattner · 22 years ago
  48. d445c6b Allow modules to have 'any' pointer size and endianness. Luckily, we had by Chris Lattner · 22 years ago
  49. 949a362 Remove redundant const qualifiers from cast<> expressions by Chris Lattner · 22 years ago
  50. 987cb2c Remove explicit const qualifiers by Chris Lattner · 22 years ago
  51. 7a73b80 Merged in autoconf branch. This provides configuration via the autoconf system. by John Criswell · 22 years ago
  52. f69315b Fix bug: Assembler/2003-05-03-BytecodeReaderProblem.llx by Chris Lattner · 22 years ago
  53. 8f77dae Add support for the new va_arg instruction by Chris Lattner · 22 years ago
  54. 76e3896 Add support for reading and writing pointersize/endianness to and from bytecode by Chris Lattner · 22 years ago
  55. e3869c8 Add support to the bytecode reader/writer for the new linkage types by Chris Lattner · 22 years ago
  56. 3413d15 * Change the order that globals and constants are processed in by Chris Lattner · 22 years ago
  57. 186a1f7 Changes to the V2 bytecode format: by Chris Lattner · 22 years ago
  58. a407ba1 Don't keep track of # big vs #small instructions seperately by Chris Lattner · 23 years ago
  59. 6e6026b - Eliminated the deferred symbol table stuff in Module & Function, it really by Chris Lattner · 23 years ago
  60. 6463e0d Clean up code a bit, no functionality changes. by Chris Lattner · 23 years ago
  61. 479b54b Minor cleanups, no changes to functionality by Chris Lattner · 23 years ago
  62. a92f696 Updates to work with recent Statistic's changes: by Chris Lattner · 23 years ago
  63. a6d0975 by Misha Brukman · 23 years ago
  64. c188eeb by Chris Lattner · 23 years ago
  65. ce6ef11 *** empty log message *** by Chris Lattner · 23 years ago
  66. fe8041a *** empty log message *** by Chris Lattner · 23 years ago
  67. 635cd93 Register the WriteBytecodePass by Chris Lattner · 23 years ago
  68. 56d2701 *** empty log message *** by Chris Lattner · 23 years ago
  69. a24a0bb Add support for writing ConstantExpr nodes. by Vikram S. Adve · 23 years ago
  70. a7dac3d Write out the plane for types first, since values of primitive types by Vikram S. Adve · 23 years ago
  71. 054bd68 Use a helper function outputConstantsInPlane in outputConstants. by Vikram S. Adve · 23 years ago
  72. eea60fc changes to make it compatible with 64bit gcc by Anand Shukla · 23 years ago
  73. 7e70829 MEGAPATCH checkin. by Chris Lattner · 23 years ago
  74. 0b12b5f by Chris Lattner · 23 years ago
  75. 9fcccb0 Fix constness problem by Chris Lattner · 23 years ago
  76. 9b62503 Replace all usages of Type::isPointerType with isa<PointerType> by Chris Lattner · 23 years ago
  77. c6f3ae5 Eliminate duplicate or unneccesary #include's by Chris Lattner · 23 years ago
  78. 31bcdb8 Split ConstantVals.h into Constant.h and Constants.h by Chris Lattner · 23 years ago
  79. ccc2596 Make debugging code not use getStrValue by Chris Lattner · 23 years ago
  80. f759c4e Remove old frivolous uses of getStrValue in a debugging statement by Chris Lattner · 23 years ago
  81. 73e2142 Move FunctionArgument out of iOther.h into Argument.h and rename class to by Chris Lattner · 23 years ago
  82. 184b2fa Use opaque decl instead of #include by Chris Lattner · 23 years ago
  83. 4d669b5 s/method/function by Chris Lattner · 23 years ago
  84. b579400 * Move include/llvm/Analysis/SlotCalculator.h to include/llvm/SlotCalculator.h by Chris Lattner · 23 years ago
  85. 2fbfdcf Change references to the Method class to be references to the Function by Chris Lattner · 23 years ago
  86. 2aac6bf s/MethodType/FunctionType by Chris Lattner · 23 years ago
  87. c9aa7df s/Method/Function by Chris Lattner · 23 years ago
  88. 79df7c0 Change references from Method to Function by Chris Lattner · 23 years ago
  89. b277d1d by Chris Lattner · 23 years ago
  90. e7506a3 Rename Method to Function by Chris Lattner · 23 years ago
  91. 221d688 Method.h no longer includes BasicBlock.h by Chris Lattner · 24 years ago
  92. 697954c Changes to build successfully with GCC 3.02 by Chris Lattner · 24 years ago
  93. 9086515 Remove unsized array support by Chris Lattner · 24 years ago
  94. 7a17675 Renamed inst_const_iterator -> const_inst_iterator by Chris Lattner · 24 years ago
  95. e9bb2df Rename ConstPoolVal -> Constant by Chris Lattner · 24 years ago
  96. f60dc88 Move support directory by Chris Lattner · 24 years ago
  97. cee8f9a Create a new #include "Support/..." directory structure to move things by Chris Lattner · 24 years ago
  98. d23b1d3 Implement internal method support by Chris Lattner · 24 years ago
  99. 5cb1741 Fix obscure nasty bug with bytecode writing that could cause the last byte to be dropped. by Chris Lattner · 24 years ago
  100. 2b9f600 Fixed a LONG standing, SCARY problem with bytecode encoding. It turns out to be an endian problem that only shows up with type 0 instructions in LARGE programs. by Chris Lattner · 24 years ago