aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Bitcode
Commit message (Expand)AuthorAgeFilesLines
* Don't attribute in file headers anymore. See llvmdev for theChris Lattner2007-12-2910-20/+20
* Added some sectioning comments to Serialize.h.Ted Kremenek2007-12-181-14/+71
* Modified Deserializer::ReadCStr to allow C-strings to be read into aTed Kremenek2007-12-171-1/+1
* Implement part of review feedback for address spaces.Christopher Lamb2007-12-121-0/+1
* Implement address space attribute for LLVM pointer types. Address spaces are Christopher Lamb2007-12-111-3/+7
* Adding a collector name attribute to Function in the IR. These Gordon Henriksen2007-12-101-1/+3
* Added "Emitter" functor to allow easy emitting of elements of a containerTed Kremenek2007-12-051-0/+11
* Fixed subtle bug in Deserializer::JumpTo when jumping when the block-nestingTed Kremenek2007-11-301-2/+2
* Fixed potential bug where CurWord is not zeroed out in JumpToBit.Ted Kremenek2007-11-301-0/+1
* Add explicit keywords.Dan Gohman2007-11-191-1/+1
* Reverted patch 44199:Ted Kremenek2007-11-172-111/+45
* Changed implementation of Serialize::EmitDiffPtrID andTed Kremenek2007-11-172-4/+5
* Implemented optimization for BatchEmitOwnedPtrs that we only emit one completeTed Kremenek2007-11-172-46/+111
* Fixed serious bug in BatchReadOwnedPtrs where in a chain of calls toTed Kremenek2007-11-151-5/+4
* Added two new overloaded versions of BatchEmitOwnedPtrs andTed Kremenek2007-11-142-0/+40
* Renamed serialization method "Materialize" to "Create". This is an API change.Ted Kremenek2007-11-132-14/+15
* Fixed bug with inconsistent serialization/deserialization in matchingTed Kremenek2007-11-132-0/+48
* Added versions of ReadPtr that takes an explicit SerializedPtrID. This allowsTed Kremenek2007-11-121-3/+21
* Fixed a bug introduced by my last patch. Now we properly clear out the Batch...Ted Kremenek2007-11-101-0/+2
* Fixed hack in BatchReadOwnedPtrs to no longer use the array of pointers passe...Ted Kremenek2007-11-101-2/+4
* Added "random access" to the Deserializer to allow a client to jump to anyTed Kremenek2007-11-101-2/+37
* Made Deserializer a friend class of BitstreamReader.Ted Kremenek2007-11-101-5/+14
* Updated Deserializer class to provide more information about the currentTed Kremenek2007-11-091-4/+14
* Added typedef "SerializedPtrID" to represent the pointer handle written to diskTed Kremenek2007-11-083-19/+46
* Revised BatchEmitOwnedPtrs to work better with constant pointers.Ted Kremenek2007-11-081-1/+1
* Revised implementation of BatchReadOwnedPtrs() that deserializes anTed Kremenek2007-11-081-10/+13
* Fixed bug where we did not properly serialize owned objects due to a missingTed Kremenek2007-11-071-1/+1
* Added version of BatchEmitOwnedPtrs and BatchReadOwnedPtrs that emits/readsTed Kremenek2007-11-072-0/+21
* Added methods to batch emit and deserialize owned pointers. This allowsTed Kremenek2007-11-072-4/+67
* Implemented serialization of signed integers.Ted Kremenek2007-11-073-1/+10
* Added special version of ReadPtr() that returns a deserialized pointerTed Kremenek2007-11-071-1/+4
* Serializer no longer automatically emits a root-level block in the bitstream.Ted Kremenek2007-11-061-2/+1
* Augmented ReadPtr and ReadOwnedPtr to control whether or not a pointer is all...Ted Kremenek2007-11-061-9/+12
* Renamed "Flush()" to "FlushRecord()".Ted Kremenek2007-11-061-1/+1
* Added support for processing abbreviations in the Deserializer.Ted Kremenek2007-11-061-1/+1
* Added support in serializer and deserializer to create arbitrary blocks.Ted Kremenek2007-11-052-1/+6
* Added default creation of root-level block by bitstream serializer.Ted Kremenek2007-11-051-1/+1
* Fixed bug where tombstone key and empty key for DenseMap used forTed Kremenek2007-11-052-2/+4
* Added overloaded version of Deserializer::ReadOwnedPtr which allowsTed Kremenek2007-11-021-0/+5
* Removed ReadVal from SerializeTrait<T>, and also removed it fromTed Kremenek2007-11-012-8/+1
* Rewrote backpatcher. Backpatcher now stores the "has final pointer"Ted Kremenek2007-11-011-32/+48
* constified several pointer arguments for methods in the Deserializer.Ted Kremenek2007-10-311-2/+5
* Implemented deserialization of references. References are handledTed Kremenek2007-10-311-5/+21
* Added Serializer::EmitRef to deal with emitting arbitrary references.Ted Kremenek2007-10-311-3/+6
* Updated backpatching logic during object deserialization to performTed Kremenek2007-10-281-19/+53
* Fixed bug where default SerializeTrait<>::Materialize would not return the ma...Ted Kremenek2007-10-261-1/+1
* Added default implementation of SerializeTrait<> that dispatches toTed Kremenek2007-10-262-1/+25
* Updated backpatching during object deserialization to support "smart"Ted Kremenek2007-10-251-2/+6
* Added special treatment of serializing NULL pointers.Ted Kremenek2007-10-252-1/+5
* Created header file to include minimal forward references needed forTed Kremenek2007-10-252-6/+29