mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +00:00
Fix a heinous inefficiency introduced in r149918, wherein reading each byte of a
BLOB (i.e., large, performance intensive data) in a bitcode file was switched to invoking one virtual method call per byte read. Now we do one virtual call per BLOB. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173065 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -237,12 +237,6 @@ public:
|
||||
static_cast<uint64_t>(pos - 1));
|
||||
}
|
||||
|
||||
unsigned char getByte(size_t pos) {
|
||||
uint8_t byte = -1;
|
||||
BitStream->getBitcodeBytes().readByte(pos, &byte);
|
||||
return byte;
|
||||
}
|
||||
|
||||
uint32_t getWord(size_t pos) {
|
||||
uint8_t buf[4] = { 0xFF, 0xFF, 0xFF, 0xFF };
|
||||
BitStream->getBitcodeBytes().readBytes(pos, sizeof(buf), buf, NULL);
|
||||
|
Reference in New Issue
Block a user