1. 2e6452c Implemented serialization of signed integers. by Ted Kremenek · 18 years ago
  2. 68dd3fb Serializer no longer automatically emits a root-level block in the bitstream. by Ted Kremenek · 18 years ago
  3. 730c273 Renamed "Flush()" to "FlushRecord()". by Ted Kremenek · 18 years ago
  4. 0a6d98e Added support in serializer and deserializer to create arbitrary blocks. by Ted Kremenek · 18 years ago
  5. bd76d66 Deleting -emitbitcode option which did nothing. by Gordon Henriksen · 18 years ago
  6. 8aac61c Added Serializer::EmitRef to deal with emitting arbitrary references. by Ted Kremenek · 18 years ago
  7. 1a43e5f Added serialization support for APInt. by Ted Kremenek · 18 years ago
  8. 2423e03 Added special treatment of serializing NULL pointers. by Ted Kremenek · 18 years ago
  9. fe2a012 Implemented prototype serialization of pointers, including support by Ted Kremenek · 18 years ago
  10. 6e9b496 Split Serialization.h into separate headers: Serialize.h and by Ted Kremenek · 18 years ago
  11. 0b2d7aa Added preliminary implementation of generic object serialization to bitcode. by Ted Kremenek · 18 years ago
  12. a471c2e Next PPC long double bits. First cut at constants. by Dale Johannesen · 18 years ago
  13. c0491ac Bindings for the verifier. by Gordon Henriksen · 18 years ago
  14. acd9619 Removing the silly CHelpers header by rolling wrap and unwrap into the C by Gordon Henriksen · 18 years ago
  15. d070d1e Demoting CHelpers.h to include/llvm/Support. by Gordon Henriksen · 18 years ago
  16. 693717f Make temporaries explicit to avoid premature by Dale Johannesen · 18 years ago
  17. 8b94a14 C bindings for libLLVMCore.a and libLLVMBitWriter.a. by Gordon Henriksen · 18 years ago
  18. 9d5f456 Revise previous patch per review comments. by Dale Johannesen · 18 years ago
  19. 3f6eb74 Add APInt interfaces to APFloat (allows directly by Dale Johannesen · 18 years ago
  20. 073d48d Revert previous change to IR. by Dale Johannesen · 18 years ago
  21. 43421b3 Next round of APFloat changes. by Dale Johannesen · 18 years ago
  22. ebbc95d Patch 10 for long double. Doing constants right needs expanding ConstantFP by Dale Johannesen · 18 years ago
  23. 320fc8a Long double, part 1 of N. Support in IR. by Dale Johannesen · 18 years ago
  24. 3a08abf remove a dead case by Chris Lattner · 18 years ago
  25. 384003d allow partially materialized modules to be written out, which just strips out by Chris Lattner · 18 years ago
  26. a9bb713 Make a preemptive bitcode format change to support PR1146. This lets us do by Chris Lattner · 18 years ago
  27. 4eab2e5 Flush the file after writing bitcode so that clients who don't close their by Chris Lattner · 18 years ago
  28. 33f1d5b Fix a nasty problem where we would miss enumeration of some types. This fixes by Chris Lattner · 18 years ago
  29. 332376b Unbreak VC++. by Jeff Cohen · 18 years ago
  30. f9f2e83 add abbrevs for binops and casts. This shrinks a testcase from 725132->682500 by Chris Lattner · 18 years ago
  31. e8e1e4b add a new CreateBitcodeWriterPass method, which creates a bitcode writer as by Chris Lattner · 18 years ago
  32. 2bce93a implement reading/writing of inlineasm objects by Chris Lattner · 18 years ago
  33. 94687ac add some abbrevs for ret and unreachable, shrinking kc++ from 2717360->2705388 by Chris Lattner · 18 years ago
  34. 7a303d1 enumerate the operands of a constant before we enumerate the constant itself by Chris Lattner · 18 years ago
  35. cb3d91b add a denser encoding for null terminated strings, add a 6-bit abbrev as by Chris Lattner · 18 years ago
  36. 817f08a add an abbreviation for the string constants opzn, shrinking the constnats by Chris Lattner · 18 years ago
  37. ff7fc5d implement the 'string constant' optimization. This shrinks kc.bit from by Chris Lattner · 18 years ago
  38. abfbf85 further reduce the redundancy of types in the instruction encoding. This by Chris Lattner · 18 years ago
  39. 7337ab9 stop encoding type/value pairs when the type is implied by the value. by Chris Lattner · 18 years ago
  40. 440168b add an abbrev for loads. This shrinks the function block about 50K, from: by Chris Lattner · 18 years ago
  41. a0f1ecc add abbrevs for the constants tables. This shrinks it from 4.49755e6 bits by Chris Lattner · 18 years ago
  42. d092e0e Add abbreviations to the TYPE_BLOCK for pointers, functions, structs and arrays. by Chris Lattner · 18 years ago
  43. ff294a4 add a char6 abbrev for bbnames and value names. This represents each character by Chris Lattner · 18 years ago
  44. 7a263ea add an abbreviation for the type symtab, this shrinks the TST from 175197 bits by Chris Lattner · 18 years ago
  45. e17b658 Implement support for globally associating abbrevs with block IDs, which by Chris Lattner · 18 years ago
  46. fd1ae95 allow the 8-bit abbrev to be used for either bb or other values by Chris Lattner · 18 years ago
  47. 2453f71 shave another 150K off of kc++, by using a 7-bit encoding for BB names by Chris Lattner · 18 years ago
  48. 5969830 where possible, encode symtab names with 7 bits per char instead of 8. This by Chris Lattner · 18 years ago
  49. 2e7899d Encode all value symtab strings as arrays of 8-bit fixed width integers, by Chris Lattner · 18 years ago
  50. 15e6d17 eliminate internal length fields from record. Records already know their by Chris Lattner · 18 years ago
  51. 07faafc stub out creation of BLOCKINFO_BLOCK by Chris Lattner · 18 years ago
  52. 6da91d3 optimize constant layout. This fixes encoding of 181.mcf (by ensuring by Chris Lattner · 18 years ago
  53. 12f535b simple optimization for the type table by Chris Lattner · 18 years ago
  54. 1d1f9ad fix encoding of invoke instructions. kc++ now round trips by Chris Lattner · 18 years ago
  55. 9113e73 encode and read param attrs along with function type. WE can now roundtrip Olden/voronoi loslessly by Chris Lattner · 18 years ago
  56. f6f9cd1 fix a bug encoding param attrs by Chris Lattner · 18 years ago
  57. f0a6531 add writer support for param attrs by Chris Lattner · 18 years ago
  58. 2020ca2 pass by reference, not by value by Chris Lattner · 18 years ago
  59. 62bbeea trivial scaffolding for param attrs by Chris Lattner · 18 years ago
  60. 50954f5 enumerate parameter attr lists. by Chris Lattner · 18 years ago
  61. 7652019 Encoding calling conv info in call/invoke instrs, tree add now round trips completely by Chris Lattner · 18 years ago
  62. 38b12ce don't bother encoding # varargs by Chris Lattner · 18 years ago
  63. e825ed5 fix encoding of BB names in the symtab by Chris Lattner · 18 years ago
  64. f4c8e52 add reader logic for terminator instrs. by Chris Lattner · 18 years ago
  65. f639875 use the correct code for binop instrs by Chris Lattner · 18 years ago
  66. 60ce9b5 fix build with non-buggy compilers by Chris Lattner · 18 years ago
  67. be1f993 write the symbol table for function bodies by Chris Lattner · 18 years ago
  68. d309c75 encode all of the instructions. by Chris Lattner · 18 years ago
  69. 9cd3ccf Implement visibility checking during linking. Also implement protected by Anton Korobeynikov · 18 years ago
  70. 01b2745 Fix this to use the right block ID by Chris Lattner · 18 years ago
  71. 1a9df8e moved Writer.cpp -> BitcodeWriter.cpp to make it more unique in the tree. by Chris Lattner · 18 years ago
  72. b9d0c2a start code for writing out instructions. Separate BB#s from normal value #'s. by Chris Lattner · 18 years ago
  73. c59c0af enumerate BB's separately from other function values. by Chris Lattner · 18 years ago
  74. 8d35c79 add support for incorporating and purging functions to the value enumerator by Chris Lattner · 18 years ago
  75. 51d5f29 improve a comment by Chris Lattner · 18 years ago
  76. 198f34a move some code around, fix a bug in the reader reading globalinits (which by Chris Lattner · 18 years ago
  77. 07d98b4 add bitcode alias support by Chris Lattner · 18 years ago
  78. f581c3b implement reading and writing of constant exprs. by Chris Lattner · 18 years ago
  79. 631a8ed fix off-by-one computing size for section abbrevs by Chris Lattner · 18 years ago
  80. 2edd22b Emit module-level constants. by Chris Lattner · 18 years ago
  81. 8c99a8e fix off-by one by Chris Lattner · 18 years ago
  82. b992be1 write out the symtab for globals. by Chris Lattner · 18 years ago
  83. d127c1b implement reading of abbrevs, and writing of abbreviated global varrs. by Chris Lattner · 18 years ago
  84. 36d5e7d first part of implementation of abbrevs. The writer isn't fully there yet and the by Chris Lattner · 18 years ago
  85. 47f96bf promote LLVMBitCodes to be a public header by Chris Lattner · 18 years ago
  86. fd57cec Initial support for writing bitcode files. This currently only writes types, by Chris Lattner · 18 years ago