forked from OSchip/llvm-project
Make BinaryStreamReader::readCString a bit faster.
Previously it would do a character by character search for a null terminator, to account for the fact that an arbitrary stream need not store its data contiguously so you couldn't just do a memchr. However, the stream API has a function which will return the longest contiguous chunk without doing a copy, and by using this function we can do a memchr on the individual chunks. For certain types of streams like data from object files etc, this is guaranteed to find the null terminator with only a single memchr, but even with discontiguous streams such as MappedBlockStream, it's rare that any given string will cross a block boundary, so even those will almost always be satisfied with a single memchr. This optimization is worth a 10-12% reduction in link time (4.2 seconds -> 3.75 seconds) Differential Revision: https://reviews.llvm.org/D33503 llvm-svn: 303918
This commit is contained in:
parent
55256ada25
commit
95c625ecc9
|
@ -42,29 +42,30 @@ Error BinaryStreamReader::readBytes(ArrayRef<uint8_t> &Buffer, uint32_t Size) {
|
||||||
}
|
}
|
||||||
|
|
||||||
Error BinaryStreamReader::readCString(StringRef &Dest) {
|
Error BinaryStreamReader::readCString(StringRef &Dest) {
|
||||||
// TODO: This could be made more efficient by using readLongestContiguousChunk
|
|
||||||
// and searching for null terminators in the resulting buffer.
|
|
||||||
|
|
||||||
uint32_t Length = 0;
|
|
||||||
// First compute the length of the string by reading 1 byte at a time.
|
|
||||||
uint32_t OriginalOffset = getOffset();
|
uint32_t OriginalOffset = getOffset();
|
||||||
const char *C;
|
uint32_t FoundOffset = 0;
|
||||||
while (true) {
|
while (true) {
|
||||||
if (auto EC = readObject(C))
|
uint32_t ThisOffset = getOffset();
|
||||||
|
ArrayRef<uint8_t> Buffer;
|
||||||
|
if (auto EC = readLongestContiguousChunk(Buffer))
|
||||||
return EC;
|
return EC;
|
||||||
if (*C == '\0')
|
StringRef S(reinterpret_cast<const char *>(Buffer.begin()), Buffer.size());
|
||||||
|
size_t Pos = S.find_first_of('\0');
|
||||||
|
if (LLVM_LIKELY(Pos != StringRef::npos)) {
|
||||||
|
FoundOffset = Pos + ThisOffset;
|
||||||
break;
|
break;
|
||||||
++Length;
|
}
|
||||||
}
|
}
|
||||||
// Now go back and request a reference for that many bytes.
|
assert(FoundOffset >= OriginalOffset);
|
||||||
uint32_t NewOffset = getOffset();
|
|
||||||
setOffset(OriginalOffset);
|
setOffset(OriginalOffset);
|
||||||
|
size_t Length = FoundOffset - OriginalOffset;
|
||||||
|
|
||||||
if (auto EC = readFixedString(Dest, Length))
|
if (auto EC = readFixedString(Dest, Length))
|
||||||
return EC;
|
return EC;
|
||||||
|
|
||||||
// Now set the offset back to where it was after we calculated the length.
|
// Now set the offset back to after the null terminator.
|
||||||
setOffset(NewOffset);
|
setOffset(FoundOffset + 1);
|
||||||
return Error::success();
|
return Error::success();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue