mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
Add support for reading unaligned bytecode buffers
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5819 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
14e8e29105
commit
f6099df194
@ -639,8 +639,19 @@ Module *BytecodeParser::ParseBytecode(const uchar *Buf, const uchar *EndBuf) {
|
||||
Module *ParseBytecodeBuffer(const unsigned char *Buffer, unsigned Length,
|
||||
std::string *ErrorStr) {
|
||||
BytecodeParser Parser;
|
||||
unsigned char *PtrToDelete = 0;
|
||||
if ((intptr_t)Buffer & 3) { // If the buffer is not 4 byte aligned...
|
||||
// Allocate a new buffer to hold the bytecode...
|
||||
PtrToDelete = new unsigned char[Length+4];
|
||||
unsigned Offset = 4-((intptr_t)PtrToDelete & 3); // Make sure it's aligned
|
||||
memcpy(PtrToDelete+Offset, Buffer, Length); // Copy it over
|
||||
Buffer = PtrToDelete+Offset;
|
||||
}
|
||||
|
||||
Module *R = Parser.ParseBytecode(Buffer, Buffer+Length);
|
||||
if (ErrorStr) *ErrorStr = Parser.getError();
|
||||
|
||||
delete [] PtrToDelete; // Delete alignment buffer if neccesary
|
||||
return R;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user