diff --git a/include/avian/codegen/compiler.h b/include/avian/codegen/compiler.h index acd1e3adc3..574015d1ff 100644 --- a/include/avian/codegen/compiler.h +++ b/include/avian/codegen/compiler.h @@ -83,7 +83,7 @@ class Compiler { virtual Operand* register_(int number) = 0; virtual void push(ir::Type type, Operand* value) = 0; - virtual void save(unsigned footprint, Operand* value) = 0; + virtual void save(ir::Type type, Operand* value) = 0; virtual Operand* pop(unsigned footprint) = 0; virtual void pushed() = 0; virtual void popped(unsigned footprint) = 0; diff --git a/src/codegen/compiler.cpp b/src/codegen/compiler.cpp index ba55b830ea..2f694a3554 100644 --- a/src/codegen/compiler.cpp +++ b/src/codegen/compiler.cpp @@ -2347,13 +2347,19 @@ class MyCompiler: public Compiler { compiler::push(&c, typeFootprint(&c, type), static_cast(value)); } - virtual void save(unsigned footprint, Operand* value) { + virtual void save(ir::Type type, Operand* value) + { + // TODO: once type information is flowed properly, enable this assert. + // Some time later, we can remove the parameter. + // assert(&c, static_cast(value)->type == type); + unsigned footprint = typeFootprint(&c, type); c.saved = cons(&c, static_cast(value), c.saved); if (TargetBytesPerWord == 4 and footprint > 1) { assert(&c, footprint == 2); assert(&c, static_cast(value)->nextWord); - save(1, static_cast(value)->nextWord); + save(ir::Type(ir::Type::Integer, 4), + static_cast(value)->nextWord); } } diff --git a/src/compile.cpp b/src/compile.cpp index 500543ed5a..c2657a555c 100644 --- a/src/compile.cpp +++ b/src/compile.cpp @@ -5950,7 +5950,7 @@ compile(MyThread* t, Frame* initialFrame, unsigned initialIp, c->condJump(lir::JumpIfLess, 4, c->constant(bottom, Compiler::IntegerType), key, frame->machineIp(defaultIp)); - c->save(1, key); + c->save(types.i4, key); new (stack.push(sizeof(SwitchState))) SwitchState (c->saveState(), count, defaultIp, key, start, bottom, top); @@ -6036,8 +6036,8 @@ compile(MyThread* t, Frame* initialFrame, unsigned initialIp, c->condJump(lir::JumpIfGreater, 4, c->constant(s->top, Compiler::IntegerType), s->key, frame->machineIp(s->defaultIp)); - - c->save(1, s->key); + + c->save(types.i4, s->key); ip = s->defaultIp; stack.pushValue(Untable1); } goto start;