2023-02-07 12:46:44 -05:00
|
|
|
from creole import *
|
2023-02-07 12:25:52 -05:00
|
|
|
import unittest
|
2023-02-07 23:15:54 -05:00
|
|
|
import ffi
|
2023-02-07 12:25:52 -05:00
|
|
|
|
2023-02-08 08:56:39 -05:00
|
|
|
class PushTest(unittest.TestCase):
|
|
|
|
def test_parse_push_reg(self):
|
2023-02-07 12:25:52 -05:00
|
|
|
p = Program()
|
2023-02-08 08:56:39 -05:00
|
|
|
p.parse_asm_line("push r5")
|
2023-02-07 12:25:52 -05:00
|
|
|
b = p()
|
2023-02-09 11:16:41 -05:00
|
|
|
self.assertEqual(b, b'\x01\xC2\x85\x00')
|
2023-02-08 08:56:39 -05:00
|
|
|
ins = ffi.parse_line(b)
|
2023-02-09 11:32:32 -05:00
|
|
|
self.assertEqual(ins[0], Instruction.PUSH.opcode)
|
2023-02-08 08:56:39 -05:00
|
|
|
self.assertEqual(ins[1][0], (1,5))
|
|
|
|
|
2023-02-09 11:16:41 -05:00
|
|
|
def test_parse_push_imm(self):
|
2023-02-08 08:56:39 -05:00
|
|
|
p = Program()
|
2023-02-09 11:16:41 -05:00
|
|
|
p.parse_asm_line("push 5")
|
|
|
|
b = p()
|
|
|
|
self.assertEqual(b, b'\x01\xC0\x85\x00')
|
|
|
|
ins = ffi.parse_line(b)
|
2023-02-09 11:32:32 -05:00
|
|
|
self.assertEqual(ins[0], Instruction.PUSH.opcode)
|
2023-02-09 11:16:41 -05:00
|
|
|
self.assertEqual(ins[1][0], (0,5))
|
2023-02-08 08:56:39 -05:00
|
|
|
|
|
|
|
def test_parse_push_catch_typecheck_push_lab(self):
|
|
|
|
p = Program()
|
|
|
|
with self.assertRaises(TypecheckException) as cm:
|
|
|
|
p.parse_asm_line("push l0")
|
2023-02-09 11:16:41 -05:00
|
|
|
self.assertEqual(cm.exception.argtype, ArgType.VAL)
|
2023-02-08 08:56:39 -05:00
|
|
|
self.assertEqual(cm.exception.sarg, 'l0')
|
|
|
|
self.assertEqual(cm.exception.i, 0)
|
|
|
|
self.assertEqual(cm.exception.opcode, 1)
|
|
|
|
|
|
|
|
def test_parse_push_catch_typecheck_argument_overflow(self):
|
|
|
|
p = Program()
|
|
|
|
with self.assertRaises(TypecheckLenException) as cm:
|
|
|
|
p.parse_asm_line("push r1 r2")
|
|
|
|
self.assertEqual(cm.exception.opcode, 1)
|
|
|
|
self.assertEqual(cm.exception.insargs, ["r1", "r2"])
|
|
|
|
self.assertEqual(cm.exception.argtypelen, 1)
|
|
|
|
|
|
|
|
def test_parse_push_catch_typecheck_argument_underflow(self):
|
|
|
|
p = Program()
|
|
|
|
with self.assertRaises(TypecheckLenException) as cm:
|
|
|
|
p.parse_asm_line("push")
|
|
|
|
self.assertEqual(cm.exception.opcode, 1)
|
|
|
|
self.assertEqual(cm.exception.insargs, [])
|
|
|
|
self.assertEqual(cm.exception.argtypelen, 1)
|
|
|
|
|
2023-02-07 12:25:52 -05:00
|
|
|
def test_large_reg(self):
|
|
|
|
p = Program(regnum=0x8000000)
|
|
|
|
p.parse_asm_line("PUSH r134217727")
|
|
|
|
b = p()
|
|
|
|
self.assertEqual(b, b'\x01\xFC\x87\xbf\xbf\xbf\xbf\x00')
|
2023-02-08 08:56:39 -05:00
|
|
|
|
2023-02-09 11:16:41 -05:00
|
|
|
def test_compile_push(self):
|
|
|
|
p = Program()
|
|
|
|
p.parse_asm_line("PUSH r0")
|
2023-02-09 11:32:32 -05:00
|
|
|
p.parse_asm_line("PUSH 6")
|
2023-02-09 11:16:41 -05:00
|
|
|
b = p()
|
|
|
|
|
2023-02-09 15:42:36 -05:00
|
|
|
ex = ffi.Environment()
|
2023-02-09 11:16:41 -05:00
|
|
|
self.assertEqual(ex.load(b), ffi.CompileRet.OK)
|
|
|
|
self.assertEqual(ex.cenv.prgend, 2)
|
|
|
|
|
|
|
|
self.assertEqual(ex.cenv.prg[0].opcode, 1)
|
|
|
|
self.assertEqual(ex.cenv.prg[0].w_flags[0], 1)
|
|
|
|
self.assertEqual(ex.cenv.prg[0].w_flags[1], 0)
|
|
|
|
self.assertEqual(ex.cenv.prg[0].w_flags[2], 0)
|
|
|
|
self.assertEqual(ex.cenv.prg[0].w[0], 0)
|
|
|
|
self.assertEqual(ex.cenv.prg[0].w[1], 0)
|
|
|
|
self.assertEqual(ex.cenv.prg[0].w[2], 0)
|
|
|
|
|
|
|
|
self.assertEqual(ex.cenv.prg[1].opcode, 1)
|
2023-02-09 11:32:32 -05:00
|
|
|
self.assertEqual(ex.cenv.prg[1].w_flags[0], 0)
|
2023-02-09 11:16:41 -05:00
|
|
|
self.assertEqual(ex.cenv.prg[1].w_flags[1], 0)
|
|
|
|
self.assertEqual(ex.cenv.prg[1].w_flags[2], 0)
|
|
|
|
self.assertEqual(ex.cenv.prg[1].w[0], 6)
|
|
|
|
self.assertEqual(ex.cenv.prg[1].w[1], 0)
|
|
|
|
self.assertEqual(ex.cenv.prg[1].w[2], 0)
|
|
|
|
|
2023-02-09 15:42:36 -05:00
|
|
|
class PopTest(unittest.TestCase):
|
|
|
|
def test_compile_pop_reg(self):
|
|
|
|
p = Program()
|
|
|
|
p.parse_asm_line("pop r9")
|
|
|
|
b = p()
|
|
|
|
self.assertEqual(b, b'\x02\xC2\x89\x00')
|
|
|
|
ex = ffi.Environment()
|
|
|
|
self.assertEqual(ex.load(b), ffi.CompileRet.OK)
|
|
|
|
self.assertEqual(ex.cenv.prgend, 1)
|
|
|
|
|
|
|
|
self.assertEqual(ex.cenv.prg[0].opcode, 2)
|
|
|
|
self.assertEqual(ex.cenv.prg[0].w_flags[0], 1)
|
|
|
|
self.assertEqual(ex.cenv.prg[0].w_flags[1], 0)
|
|
|
|
self.assertEqual(ex.cenv.prg[0].w_flags[2], 0)
|
|
|
|
self.assertEqual(ex.cenv.prg[0].w[0], 9)
|
|
|
|
self.assertEqual(ex.cenv.prg[0].w[1], 0)
|
|
|
|
self.assertEqual(ex.cenv.prg[0].w[2], 0)
|
|
|
|
|
|
|
|
def test_compile_throw_pop_literal(self):
|
|
|
|
p = Program()
|
|
|
|
ex = ffi.Environment()
|
|
|
|
with self.assertRaises(TypecheckException) as cm:
|
|
|
|
p.parse_asm_line("pop 6")
|
|
|
|
self.assertEqual(cm.exception.argtype, ArgType.REG)
|
|
|
|
self.assertEqual(cm.exception.sarg, '6')
|
|
|
|
self.assertEqual(cm.exception.i, 0)
|
|
|
|
self.assertEqual(cm.exception.opcode, 2)
|
|
|
|
|
|
|
|
def test_compile_throw_pop_label(self):
|
|
|
|
p = Program()
|
|
|
|
ex = ffi.Environment()
|
|
|
|
with self.assertRaises(TypecheckException) as cm:
|
|
|
|
p.parse_asm_line("pop l9")
|
|
|
|
self.assertEqual(cm.exception.argtype, ArgType.REG)
|
|
|
|
self.assertEqual(cm.exception.sarg, 'l9')
|
|
|
|
self.assertEqual(cm.exception.i, 0)
|
|
|
|
self.assertEqual(cm.exception.opcode, 2)
|
|
|
|
|
|
|
|
def test_compile_throw_argument_overflow(self):
|
|
|
|
p = Program()
|
|
|
|
with self.assertRaises(TypecheckLenException) as cm:
|
|
|
|
p.parse_asm_line("push r1 r2")
|
|
|
|
self.assertEqual(cm.exception.opcode, 1)
|
|
|
|
self.assertEqual(cm.exception.insargs, ["r1", "r2"])
|
|
|
|
self.assertEqual(cm.exception.argtypelen, 1)
|
|
|
|
|
|
|
|
def test_catch_typecheck_argument_underflow(self):
|
|
|
|
p = Program()
|
|
|
|
with self.assertRaises(TypecheckLenException) as cm:
|
|
|
|
p.parse_asm_line("push")
|
|
|
|
self.assertEqual(cm.exception.opcode, 2)
|
|
|
|
self.assertEqual(cm.exception.insargs, [])
|
|
|
|
self.assertEqual(cm.exception.argtypelen, 1)
|
|
|
|
|
2023-02-08 08:56:39 -05:00
|
|
|
class ProgramTest(unittest.TestCase):
|
2023-02-07 12:30:29 -05:00
|
|
|
def test_two(self):
|
|
|
|
p = Program()
|
|
|
|
p.parse_asm_line("PUSH r1")
|
|
|
|
p.parse_asm_line("ADD r1 5 6")
|
|
|
|
b = p()
|
|
|
|
self.assertEqual(b, b'\x01\xC2\x81\x00\x03\xC2\x81\xC0\x85\xC0\x86\x00')
|
2023-02-07 12:44:44 -05:00
|
|
|
def test_label(self):
|
|
|
|
p = Program()
|
|
|
|
b_ex = bytes()
|
|
|
|
p.parse_asm_line("CLB l0")
|
|
|
|
b_ex = b_ex + b'\x07\xC0\x80\x00'
|
|
|
|
p.parse_asm_line("pop r0")
|
|
|
|
b_ex = b_ex + b'\x02\xC2\x80\x00'
|
|
|
|
p.parse_asm_line("pop r1")
|
|
|
|
b_ex = b_ex + b'\x02\xC2\x81\x00'
|
|
|
|
p.parse_asm_line("mul r2 r0 r1")
|
|
|
|
b_ex = b_ex + b'\x04\xC2\x82\xC2\x80\xC2\x81\x00'
|
|
|
|
p.parse_asm_line("push r2")
|
|
|
|
b_ex = b_ex + b'\x01\xC2\x82\x00'
|
|
|
|
p.parse_asm_line("push r2")
|
|
|
|
b_ex = b_ex + b'\x01\xC2\x82\x00'
|
|
|
|
p.parse_asm_line("jl l0 r2 10")
|
|
|
|
b_ex = b_ex + b'\x06\xC0\x80\xC2\x82\xC0\x8A\x00'
|
|
|
|
b = p()
|
|
|
|
self.assertEqual(b, b_ex)
|
2023-02-07 12:25:52 -05:00
|
|
|
|
2023-02-08 08:56:39 -05:00
|
|
|
def test_parse_imm(self):
|
2023-02-07 23:15:54 -05:00
|
|
|
p = Program()
|
2023-02-08 08:56:39 -05:00
|
|
|
p.parse_asm_line("add r1 23 3648")
|
2023-02-07 23:15:54 -05:00
|
|
|
ins = ffi.parse_line(p())
|
2023-02-09 11:32:32 -05:00
|
|
|
self.assertEqual(ins[0], Instruction.ADD.opcode)
|
2023-02-08 08:56:39 -05:00
|
|
|
self.assertEqual(ins[1][0], (1,1))
|
|
|
|
self.assertEqual(ins[1][1], (0,23))
|
|
|
|
self.assertEqual(ins[1][2], (0,3648))
|
2023-02-07 23:15:54 -05:00
|
|
|
|
2023-02-07 12:25:52 -05:00
|
|
|
if __name__ == "__main__":
|
|
|
|
unittest.main()
|