2022-04-15 06:31:58 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2022-08-13 05:26:42 +00:00
|
|
|
from textwrap import indent
|
|
|
|
|
|
|
|
from ichor import isa
|
2022-08-09 15:39:33 +00:00
|
|
|
from ichor.bootstrap import BOOTSTRAP
|
2022-08-13 05:26:42 +00:00
|
|
|
from ichor.interpreter import (
|
2022-08-13 05:46:34 +00:00
|
|
|
BaseInterpreter,
|
2022-08-13 05:26:42 +00:00
|
|
|
Interpreter,
|
|
|
|
InterpreterState,
|
|
|
|
)
|
2022-06-01 05:17:32 +00:00
|
|
|
import pytest
|
2022-04-15 06:31:58 +00:00
|
|
|
|
|
|
|
|
2022-08-13 05:26:42 +00:00
|
|
|
class LoggingInterpreter(Interpreter):
|
|
|
|
def pre_instr(self, state: InterpreterState, opcode: isa.Opcode) -> InterpreterState:
|
|
|
|
b = []
|
|
|
|
b.append(f"clock {state.clock}:")
|
|
|
|
b.append(" stack:")
|
|
|
|
for offset, it in zip(range(0, len(state.stackframe), 1), state.stackframe):
|
|
|
|
b.append(f" {offset: <3} {it}")
|
2022-08-17 06:07:09 +00:00
|
|
|
|
|
|
|
b.append(f" op: {opcode}")
|
|
|
|
print(indent("\n".join(b), " " * state.stackframe.depth))
|
2022-08-13 05:26:42 +00:00
|
|
|
|
|
|
|
return state
|
|
|
|
|
|
|
|
|
2022-04-15 06:31:58 +00:00
|
|
|
@pytest.fixture
|
2022-08-13 05:46:34 +00:00
|
|
|
def vm() -> BaseInterpreter:
|
2022-08-13 05:26:42 +00:00
|
|
|
return LoggingInterpreter(BOOTSTRAP)
|