mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-19 18:24:00 +00:00
* Emit bytecode using a deque instead of a vector to be faster
* Internal rep no longer has a constant pool * Support emission of recursive types * Don't output a constant pool for an external method * The bytecode writer is no longer a module analyzer git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@449 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -81,10 +81,10 @@ void BytecodeWriter::outputType(const Type *T) {
|
||||
}
|
||||
|
||||
case Type::ModuleTyID:
|
||||
case Type::PackedTyID:
|
||||
//case Type::PackedTyID:
|
||||
default:
|
||||
cerr << __FILE__ << ":" << __LINE__ << ": Don't know how to serialize"
|
||||
<< " Type '" << T->getName() << "'\n";
|
||||
<< " Type '" << T->getDescription() << "'\n";
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -113,7 +113,7 @@ bool BytecodeWriter::outputConstant(const ConstPoolVal *CPV) {
|
||||
break;
|
||||
|
||||
case Type::TypeTyID: // Serialize type type
|
||||
outputType(((const ConstPoolType*)CPV)->getValue());
|
||||
assert(0 && "Types should not be in the ConstPool!");
|
||||
break;
|
||||
|
||||
case Type::ArrayTyID: {
|
||||
@ -123,7 +123,7 @@ bool BytecodeWriter::outputConstant(const ConstPoolVal *CPV) {
|
||||
output_vbr(size, Out); // Not for sized arrays!!!
|
||||
|
||||
for (unsigned i = 0; i < size; i++) {
|
||||
int Slot = Table.getValSlot(CPA->getValues()[i]);
|
||||
int Slot = Table.getValSlot(CPA->getOperand(i));
|
||||
assert(Slot != -1 && "Constant used but not available!!");
|
||||
output_vbr((unsigned)Slot, Out);
|
||||
}
|
||||
|
Reference in New Issue
Block a user