aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Bitcode/Reader/Deserialize.cpp
Commit message (Expand)AuthorAgeFilesLines
* fix warning when assertion disabled.Chris Lattner2008-06-211-1/+1
* Fixed buffer overflow reported by Argiris Kirtzidis.Ted Kremenek2008-02-231-1/+1
* Use empty() instead of comparing size() with zero.Dan Gohman2008-01-291-1/+1
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-291-2/+2
* Modified Deserializer::ReadCStr to allow C-strings to be read into aTed Kremenek2007-12-171-3/+10
* Fixed subtle bug in Deserializer::JumpTo when jumping when the block-nestingTed Kremenek2007-11-301-9/+27
* Removed debug #define that was accidentally checked in while debuggingTed Kremenek2007-11-141-3/+1
* Added two new overloaded versions of BatchEmitOwnedPtrs andTed Kremenek2007-11-141-5/+13
* Added versions of ReadPtr that takes an explicit SerializedPtrID. This allowsTed Kremenek2007-11-121-4/+6
* Updated method signature to conform with the typedef in the method prototype.Ted Kremenek2007-11-101-1/+1
* Added "random access" to the Deserializer to allow a client to jump to anyTed Kremenek2007-11-101-8/+116
* Updated Deserializer class to provide more information about the currentTed Kremenek2007-11-091-48/+97
* Added typedef "SerializedPtrID" to represent the pointer handle written to diskTed Kremenek2007-11-081-4/+25
* Implemented serialization of signed integers.Ted Kremenek2007-11-071-0/+15
* Augmented ReadPtr and ReadOwnedPtr to control whether or not a pointer is all...Ted Kremenek2007-11-061-1/+4
* Added support for processing abbreviations in the Deserializer.Ted Kremenek2007-11-061-2/+19
* Added support in serializer and deserializer to create arbitrary blocks.Ted Kremenek2007-11-051-1/+15
* Added default creation of root-level block by bitstream serializer.Ted Kremenek2007-11-051-3/+22
* Removed ReadVal from SerializeTrait<T>, and also removed it fromTed Kremenek2007-11-011-3/+1
* Rewrote backpatcher. Backpatcher now stores the "has final pointer"Ted Kremenek2007-11-011-21/+19
* constified several pointer arguments for methods in the Deserializer.Ted Kremenek2007-10-311-3/+3
* Implemented deserialization of references. References are handledTed Kremenek2007-10-311-1/+13
* Fixed warning concerning implicit conversion from a NULL pointerTed Kremenek2007-10-291-1/+1
* Fixed assertion in Deserializer::~Deserializer that checks forTed Kremenek2007-10-281-2/+6
* Updated backpatching logic during object deserialization to performTed Kremenek2007-10-281-24/+38
* Updated backpatching during object deserialization to support "smart"Ted Kremenek2007-10-251-1/+3
* Disambiguated variable name to comply with VC++'s archaic variable scoping ru...Hartmut Kaiser2007-10-251-5/+5
* Added special treatment of serializing NULL pointers.Ted Kremenek2007-10-251-0/+5
* Implemented prototype serialization of pointers, including supportTed Kremenek2007-10-251-2/+52
* Split Serialization.h into separate headers: Serialize.h andTed Kremenek2007-10-241-17/+26
* Added preliminary implementation of generic object serialization to bitcode.Ted Kremenek2007-10-231-0/+83