Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Unified Diff: include/llvm/Bitcode/NaCl/NaClBitstreamReader.h

Issue 1122423005: Add (unsupported experimental) feature allowing byte aligned bitcode. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-llvm.git@master
Patch Set: Fix nits. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: include/llvm/Bitcode/NaCl/NaClBitstreamReader.h
diff --git a/include/llvm/Bitcode/NaCl/NaClBitstreamReader.h b/include/llvm/Bitcode/NaCl/NaClBitstreamReader.h
index db6eb6080b730e283e70a16615ff0fa1497d0f81..94f1715faec070c16b7a410a6cad8d6fa55b8bdb 100644
--- a/include/llvm/Bitcode/NaCl/NaClBitstreamReader.h
+++ b/include/llvm/Bitcode/NaCl/NaClBitstreamReader.h
@@ -17,6 +17,7 @@
#define LLVM_BITCODE_NACL_NACLBITSTREAMREADER_H
#include "llvm/ADT/SmallVector.h"
+#include "llvm/Bitcode/NaCl/NaClBitcodeHeader.h"
#include "llvm/Bitcode/NaCl/NaClLLVMBitCodes.h"
#include "llvm/Support/Endian.h"
#include "llvm/Support/StreamingMemoryObject.h"
@@ -61,6 +62,8 @@ public:
std::vector<NaClBitCodeAbbrev*> Abbrevs;
};
private:
+ friend class NaClBitstreamCursor;
+
std::unique_ptr<MemoryObject> BitcodeBytes;
std::vector<BlockInfo> BlockInfoRecords;
@@ -68,15 +71,28 @@ private:
/// \brief Holds the offset of the first byte after the header.
size_t InitialAddress;
+ // True if filler should be added to byte align records.
+ bool AlignBitcodeRecords = false;
+
NaClBitstreamReader(const NaClBitstreamReader&) LLVM_DELETED_FUNCTION;
void operator=(const NaClBitstreamReader&) LLVM_DELETED_FUNCTION;
+
+ void initFromHeader(const NaClBitcodeHeader &Header) {
+ AlignBitcodeRecords = Header.getAlignBitcodeRecords();
+ }
+
public:
NaClBitstreamReader() : InitialAddress(0) {}
NaClBitstreamReader(const unsigned char *Start, const unsigned char *End,
size_t MyInitialAddress=0) {
InitialAddress = MyInitialAddress;
jvoung (off chromium) 2015/05/07 18:11:17 This variant no longer calls init(Start, End) so B
Karl 2015/05/07 22:18:54 Bad refactoring on my part. Fixing to have both fo
- init(Start, End);
+ }
+
+ NaClBitstreamReader(const unsigned char *Start, const unsigned char *End,
+ NaClBitcodeHeader &Header) {
jvoung (off chromium) 2015/05/07 18:11:17 Not a huge fan of having some many variants of the
Karl 2015/05/07 22:18:54 There are two reasons for multiple headers. The fi
jvoung (off chromium) 2015/05/08 17:55:01 Yeah it is definitely annoying to have to either s
Karl 2015/05/08 21:08:59 Looks reasonable, changing.
+ InitialAddress = Header.getHeaderSize();
+ init(Start, End, Header);
}
NaClBitstreamReader(MemoryObject *Bytes, size_t MyInitialAddress=0)
@@ -84,9 +100,17 @@ public:
BitcodeBytes.reset(Bytes);
}
- void init(const unsigned char *Start, const unsigned char *End) {
+ NaClBitstreamReader(MemoryObject *Bytes, NaClBitcodeHeader &Header)
+ : InitialAddress(Header.getHeaderSize()) {
+ BitcodeBytes.reset(Bytes);
+ initFromHeader(Header);
+ }
+
+ void init(const unsigned char *Start, const unsigned char *End,
+ NaClBitcodeHeader &Header) {
assert(((End-Start) & 3) == 0 &&"Bitcode stream not a multiple of 4 bytes");
BitcodeBytes.reset(getNonStreamedMemoryObject(Start, End));
+ initFromHeader(Header);
}
MemoryObject &getBitcodeBytes() { return *BitcodeBytes; }
@@ -516,6 +540,19 @@ public:
}
private:
+ void SkipToByteBoundary() {
+ unsigned BitsToSkip = BitsInCurWord % CHAR_BIT;
+ if (BitsToSkip) {
+ CurWord >>= BitsToSkip;
+ BitsInCurWord -= BitsToSkip;
+ }
+ }
+
+ void SkipToByteBoundaryIfAligned() {
+ if (BitStream->AlignBitcodeRecords)
+ SkipToByteBoundary();
+ }
+
void SkipToFourByteBoundary() {
// If word_t is 64-bits and if we've read less than 32 bits, just dump
// the bits we have up to the next 32-bit boundary.

Powered by Google App Engine
This is Rietveld 408576698