diff options
author | Ted Kremenek <kremenek@apple.com> | 2007-10-23 21:29:33 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2007-10-23 21:29:33 +0000 |
commit | 0b2d7aaf5cb376fb05c312f9c7db591cba32ad33 (patch) | |
tree | d0e33a53d4003e7301e40f581ce83f6eb6d6b9b0 /lib | |
parent | 78daec973e81b1e85c2c3f5882845317da432f21 (diff) | |
download | external_llvm-0b2d7aaf5cb376fb05c312f9c7db591cba32ad33.zip external_llvm-0b2d7aaf5cb376fb05c312f9c7db591cba32ad33.tar.gz external_llvm-0b2d7aaf5cb376fb05c312f9c7db591cba32ad33.tar.bz2 |
Added preliminary implementation of generic object serialization to bitcode.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43261 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Bitcode/Reader/Deserialize.cpp | 83 | ||||
-rw-r--r-- | lib/Bitcode/Writer/Serialize.cpp | 52 |
2 files changed, 135 insertions, 0 deletions
diff --git a/lib/Bitcode/Reader/Deserialize.cpp b/lib/Bitcode/Reader/Deserialize.cpp new file mode 100644 index 0000000..ccd929a --- /dev/null +++ b/lib/Bitcode/Reader/Deserialize.cpp @@ -0,0 +1,83 @@ +//==- Deserialize.cpp - Generic Object Serialization to Bitcode --*- C++ -*-==// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by Ted Kremenek and is distributed under the +// University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This file defines the internal methods used for object serialization. +// +//===----------------------------------------------------------------------===// + +#include "llvm/Bitcode/Serialization.h" + +using namespace llvm; + +Deserializer::Deserializer(BitstreamReader& stream) + : Stream(stream), RecIdx(0) { +} + +Deserializer::~Deserializer() { + assert (RecIdx >= Record.size() && + "Still scanning bitcode record when deserialization completed."); +} + +void Deserializer::ReadRecord() { + // FIXME: Check if we haven't run off the edge of the stream. + // FIXME: Handle abbreviations. + unsigned Code = Stream.ReadCode(); + // FIXME: Check for the correct code. + assert (Record.size() == 0); + + Stream.ReadRecord(Code,Record); + + assert (Record.size() > 0); +} + +uint64_t Deserializer::ReadInt(unsigned Bits) { + // FIXME: Any error recovery/handling with incomplete or bad files? + if (!inRecord()) + ReadRecord(); + + // FIXME: check for loss of precision in read (compare to Bits) + return Record[RecIdx++]; +} + +char* Deserializer::ReadCString(char* cstr, unsigned MaxLen, bool isNullTerm) { + if (cstr == NULL) + MaxLen = 0; // Zero this just in case someone does something funny. + + unsigned len = ReadInt(32); + + // FIXME: perform dynamic checking of lengths? + assert (MaxLen == 0 || (len + (isNullTerm ? 1 : 0)) <= MaxLen); + + if (!cstr) + cstr = new char[len + (isNullTerm ? 1 : 0)]; + + assert (cstr != NULL); + + for (unsigned i = 0; i < len; ++i) + cstr[i] = ReadInt(8); + + if (isNullTerm) + cstr[len+1] = '\0'; + + return cstr; +} + +void Deserializer::ReadCString(std::vector<char>& buff, bool isNullTerm) { + buff.clear(); + + unsigned len = ReadInt(32); + + buff.reserve(len); + + for (unsigned i = 0; i < len; ++i) + buff.push_back(ReadInt(8)); + + if (isNullTerm) + buff.push_back('\0'); +} diff --git a/lib/Bitcode/Writer/Serialize.cpp b/lib/Bitcode/Writer/Serialize.cpp new file mode 100644 index 0000000..9fbb97d --- /dev/null +++ b/lib/Bitcode/Writer/Serialize.cpp @@ -0,0 +1,52 @@ +//==- Serialize.cpp - Generic Object Serialization to Bitcode ----*- C++ -*-==// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by Ted Kremenek and is distributed under the +// University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This file defines the internal methods used for object serialization. +// +//===----------------------------------------------------------------------===// + +#include "llvm/Bitcode/Serialization.h" + +using namespace llvm; + +Serializer::Serializer(BitstreamWriter& stream, unsigned BlockID) + : Stream(stream), inBlock(BlockID >= 8) { + + if (inBlock) Stream.EnterSubblock(8,3); +} + +Serializer::~Serializer() { + if (inRecord()) + EmitRecord(); + + if (inBlock) + Stream.ExitBlock(); + + Stream.FlushToWord(); +} + +void Serializer::EmitRecord() { + assert(Record.size() > 0 && "Cannot emit empty record."); + Stream.EmitRecord(8,Record); + Record.clear(); +} + +void Serializer::EmitInt(unsigned X, unsigned bits) { + Record.push_back(X); +} + +void Serializer::EmitCString(const char* cstr) { + unsigned l = strlen(cstr); + Record.push_back(l); + + for (unsigned i = 0; i < l; i++) + Record.push_back(cstr[i]); + + EmitRecord(); +} |