2024-07-09 23:09:46 +00:00
|
|
|
import os
|
|
|
|
import sys
|
2015-12-19 15:55:14 +00:00
|
|
|
import traceback
|
2024-07-09 23:15:47 +00:00
|
|
|
|
2015-12-16 23:06:26 +00:00
|
|
|
sys.path.insert(1, os.path.join(sys.path[0], '..'))
|
2015-12-19 15:55:14 +00:00
|
|
|
|
2015-12-16 23:06:26 +00:00
|
|
|
import infernal
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
tests = []
|
|
|
|
|
2024-07-09 23:15:47 +00:00
|
|
|
|
2015-12-16 23:06:26 +00:00
|
|
|
def add_test(name, result, register, code):
|
2018-02-06 19:56:33 +00:00
|
|
|
tests.append((name, result, register, code))
|
2015-12-16 23:06:26 +00:00
|
|
|
|
2024-07-09 23:15:47 +00:00
|
|
|
|
|
|
|
def printf(str, *args):
|
2018-02-06 19:56:33 +00:00
|
|
|
print(str.format(*args))
|
2015-12-16 23:06:26 +00:00
|
|
|
|
2024-07-09 23:15:47 +00:00
|
|
|
|
2015-12-16 23:06:26 +00:00
|
|
|
def execute_tests():
|
2024-07-09 23:15:47 +00:00
|
|
|
print('Executing tests!')
|
2018-02-06 19:56:33 +00:00
|
|
|
total_tests = 0
|
|
|
|
failed_tests = 0
|
|
|
|
error_tests = 0
|
|
|
|
for name, result, register, code in tests:
|
|
|
|
total_tests += 1
|
|
|
|
line_nr = None
|
|
|
|
try:
|
|
|
|
emu = infernal.Emulator(code)
|
2024-07-09 23:15:47 +00:00
|
|
|
emu.setStack('junk...', 'calling eip')
|
|
|
|
emu.setRegs(rip=0, rbp='old bp')
|
2018-02-06 19:56:33 +00:00
|
|
|
except infernal.CodeParseException as e:
|
|
|
|
error_tests += 1
|
2024-07-09 23:15:47 +00:00
|
|
|
printf(
|
|
|
|
'Encountered error when parsing {}, at line {}: {}',
|
|
|
|
name,
|
|
|
|
e.line_nr,
|
|
|
|
e.str,
|
|
|
|
)
|
2018-02-06 19:56:33 +00:00
|
|
|
try:
|
|
|
|
for line_nr in emu:
|
|
|
|
pass
|
|
|
|
if isinstance(result, BaseException):
|
2024-07-09 23:15:47 +00:00
|
|
|
printf('Error should have happened in {}, but did not', name)
|
2018-02-06 19:56:33 +00:00
|
|
|
failed_tests += 1
|
|
|
|
output = emu.getVal(register)
|
|
|
|
if output != result:
|
|
|
|
failed_tests += 1
|
2024-07-09 23:15:47 +00:00
|
|
|
printf(
|
|
|
|
'Failed in {}. {} was {}, should be {}',
|
|
|
|
name,
|
|
|
|
register,
|
|
|
|
output,
|
|
|
|
result,
|
|
|
|
)
|
2018-02-06 19:56:33 +00:00
|
|
|
except BaseException as e:
|
|
|
|
print(e)
|
|
|
|
if not isinstance(result, BaseException) or not isinstance(e, result):
|
|
|
|
error_tests += 1
|
2024-07-09 23:15:47 +00:00
|
|
|
printf(
|
|
|
|
'Encountered error in {}, at operation {}: {}',
|
|
|
|
name,
|
|
|
|
emu.getVal('%rip'),
|
|
|
|
e,
|
|
|
|
)
|
2018-02-06 19:56:33 +00:00
|
|
|
traceback.print_exc()
|
2024-07-09 23:15:47 +00:00
|
|
|
printf('Tests done! {}/{}.', total_tests - failed_tests - error_tests, total_tests)
|
|
|
|
printf('{} failed, and {} encountered a python error', failed_tests, error_tests)
|
|
|
|
|
2015-12-16 23:06:26 +00:00
|
|
|
|
|
|
|
################################################################################
|
2016-03-13 14:44:59 +00:00
|
|
|
# Arithmetic Operations
|
2015-12-16 23:06:26 +00:00
|
|
|
|
2024-07-09 23:15:47 +00:00
|
|
|
add_test(
|
|
|
|
'constant $255',
|
|
|
|
255,
|
|
|
|
'%rsi',
|
|
|
|
"""
|
2015-12-16 23:06:26 +00:00
|
|
|
movq $255, %rsi
|
2024-07-09 23:15:47 +00:00
|
|
|
""",
|
|
|
|
)
|
|
|
|
|
|
|
|
add_test(
|
|
|
|
'static addition 10+$20',
|
|
|
|
30,
|
|
|
|
'%rsi',
|
|
|
|
"""
|
2015-12-16 23:06:26 +00:00
|
|
|
movq $10, %rsi
|
|
|
|
addq $20, %rsi
|
2024-07-09 23:15:47 +00:00
|
|
|
""",
|
|
|
|
)
|
|
|
|
|
|
|
|
add_test(
|
|
|
|
'register addition 10+20',
|
|
|
|
30,
|
|
|
|
'%rsi',
|
|
|
|
"""
|
2015-12-16 23:06:26 +00:00
|
|
|
movq $10, %rsi
|
|
|
|
movq $20, %rax
|
|
|
|
addq %rax, %rsi
|
2024-07-09 23:15:47 +00:00
|
|
|
""",
|
|
|
|
)
|
|
|
|
|
|
|
|
add_test(
|
|
|
|
'register subtraction 10-20',
|
|
|
|
-10,
|
|
|
|
'%rsi',
|
|
|
|
"""
|
2016-03-13 14:44:59 +00:00
|
|
|
movq $10, %rsi
|
|
|
|
movq $20, %rax
|
|
|
|
subq %rax, %rsi
|
2024-07-09 23:15:47 +00:00
|
|
|
""",
|
|
|
|
)
|
2016-03-13 14:44:59 +00:00
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Branching
|
|
|
|
|
|
|
|
branch_tests = [
|
2024-07-09 23:15:47 +00:00
|
|
|
('jg', 10, '>', 5, 0),
|
|
|
|
('jg', 5, '>', 5, 1),
|
|
|
|
('jg', 5, '>', 10, 1),
|
|
|
|
('jl', 10, '<', 5, 1),
|
|
|
|
('jl', 5, '<', 5, 1),
|
|
|
|
('jl', 5, '<', 10, 0),
|
|
|
|
('je', 10, '==', 5, 1),
|
|
|
|
('je', 5, '==', 5, 0),
|
|
|
|
('je', 5, '==', 10, 1),
|
|
|
|
('jge', 10, '>=', 5, 0),
|
|
|
|
('jge', 5, '>=', 5, 0),
|
|
|
|
('jge', 5, '>=', 10, 1),
|
|
|
|
('jle', 10, '<=', 5, 1),
|
|
|
|
('jle', 5, '<=', 5, 0),
|
|
|
|
('jle', 5, '<=', 10, 0),
|
|
|
|
('jne', 10, '!=', 5, 0),
|
|
|
|
('jne', 5, '!=', 5, 1),
|
|
|
|
('jne', 5, '!=', 10, 0),
|
2016-03-13 14:44:59 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
for jump_instruct, a, comp, b, result in branch_tests:
|
2024-07-09 23:15:47 +00:00
|
|
|
add_test(
|
|
|
|
f'branch {a} {comp} {b}={not result}',
|
|
|
|
result,
|
|
|
|
'%rsi',
|
|
|
|
f"""
|
2018-02-06 19:56:33 +00:00
|
|
|
start: cmpq ${b}, ${a}
|
|
|
|
{jump_instruct} true
|
|
|
|
movq $1, %rsi
|
|
|
|
jmp return
|
|
|
|
true: movq $0, %rsi
|
|
|
|
return: ret
|
2024-07-09 23:15:47 +00:00
|
|
|
""",
|
|
|
|
)
|
2016-03-13 14:44:59 +00:00
|
|
|
|
2015-12-19 15:55:14 +00:00
|
|
|
################################################################################
|
2016-03-13 14:44:59 +00:00
|
|
|
# Junk Comparisons
|
2015-12-19 15:55:14 +00:00
|
|
|
|
2024-07-09 23:15:47 +00:00
|
|
|
add_test(
|
|
|
|
'invalid comparison 1',
|
|
|
|
infernal.JunkComparisonException,
|
|
|
|
'None',
|
|
|
|
"""
|
2015-12-19 15:55:14 +00:00
|
|
|
start: movq $100, %rsp # Set stack pointer to a random position.
|
2018-02-06 19:56:33 +00:00
|
|
|
popq %rsi # Move a Junk value into %rsi
|
|
|
|
cmpq $10, %rsi # Do a Junk comparison, which triggers the `i` comp
|
|
|
|
# virtual register.
|
|
|
|
jg start # Attempt to do a jump to the start, if (Junk-10)>0,
|
|
|
|
# which makes no sense, and thus throws an error.
|
2024-07-09 23:15:47 +00:00
|
|
|
""",
|
|
|
|
)
|
|
|
|
|
|
|
|
add_test(
|
|
|
|
'invalid addition 1',
|
|
|
|
infernal.JunkComparisonException,
|
|
|
|
'None',
|
|
|
|
"""
|
2015-12-19 15:55:14 +00:00
|
|
|
start: movq $100, %rsp # Set stack pointer to a random position.
|
2018-02-06 19:56:33 +00:00
|
|
|
popq %rsi # Move a Junk value into %rsi
|
|
|
|
addq %rsi, %rsp # Adds Junk to 101, which produces Junk.
|
|
|
|
cmpq $10, %rsp # Do a Junk comparison, which triggers the `i` comp
|
|
|
|
# virtual register.
|
|
|
|
jg start # Attempt to do a jump to the start, if (Junk-10)>0,
|
|
|
|
# which makes no sense, and thus throws an error.
|
2024-07-09 23:15:47 +00:00
|
|
|
""",
|
|
|
|
)
|
|
|
|
|
|
|
|
add_test(
|
|
|
|
'invalid addition 2',
|
|
|
|
infernal.JunkComparisonException,
|
|
|
|
'None',
|
|
|
|
"""
|
2015-12-19 15:55:14 +00:00
|
|
|
start: movq $100, %rsp # Set stack pointer to a random position.
|
2018-02-06 19:56:33 +00:00
|
|
|
popq %rsi # Move a Junk value into %rsi
|
|
|
|
addq %rsp, %rsi # Adds 101 to Junk, which produces Junk.
|
|
|
|
cmpq $10, %rsi # Do a Junk comparison, which triggers the `i` comp
|
|
|
|
# virtual register.
|
|
|
|
jg start # Attempt to do a jump to the start, if (Junk-10)>0,
|
|
|
|
# which makes no sense, and thus throws an error.
|
2024-07-09 23:15:47 +00:00
|
|
|
""",
|
|
|
|
)
|
|
|
|
|
|
|
|
add_test(
|
|
|
|
'invalid subtraction 1',
|
|
|
|
infernal.JunkComparisonException,
|
|
|
|
'None',
|
|
|
|
"""
|
2015-12-19 15:55:14 +00:00
|
|
|
start: movq $100, %rsp # Set stack pointer to a random position.
|
2018-02-06 19:56:33 +00:00
|
|
|
popq %rsi # Move a Junk value into %rsi
|
|
|
|
subq %rsi, %rsp # Adds Junk to 101, which produces Junk.
|
|
|
|
cmpq $10, %rsp # Do a Junk comparison, which triggers the `i` comp
|
|
|
|
# virtual register.
|
|
|
|
jg start # Attempt to do a jump to the start, if (Junk-10)>0,
|
|
|
|
# which makes no sense, and thus throws an error.
|
2024-07-09 23:15:47 +00:00
|
|
|
""",
|
|
|
|
)
|
|
|
|
|
|
|
|
add_test(
|
|
|
|
'invalid subtraction 2',
|
|
|
|
infernal.JunkComparisonException,
|
|
|
|
'None',
|
|
|
|
"""
|
2015-12-19 15:55:14 +00:00
|
|
|
start: movq $100, %rsp # Set stack pointer to a random position.
|
2018-02-06 19:56:33 +00:00
|
|
|
popq %rsi # Move a Junk value into %rsi
|
|
|
|
subq %rsp, %rsi # Adds 101 to Junk, which produces Junk.
|
|
|
|
cmpq $10, %rsi # Do a Junk comparison, which triggers the `i` comp
|
|
|
|
# virtual register.
|
|
|
|
jg start # Attempt to do a jump to the start, if (Junk-10)>0,
|
|
|
|
# which makes no sense, and thus throws an error.
|
2024-07-09 23:15:47 +00:00
|
|
|
""",
|
|
|
|
)
|
2015-12-16 23:06:26 +00:00
|
|
|
|
|
|
|
################################################################################
|
|
|
|
|
2024-07-09 23:15:47 +00:00
|
|
|
if __name__ == '__main__':
|
2018-02-06 19:56:33 +00:00
|
|
|
execute_tests()
|