Skip to content
Snippets Groups Projects
Commit ca5677f5 authored by Nguyen Anh Quynh's avatar Nguyen Anh Quynh
Browse files

regress: make x86_bigint.py to test all aliases of Mov64ri

parent 9ec2aafc
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/python
# Nguyen Anh Quynh, 2016
# This tests alias instructions of MOV RDI, <big-int-numbers>
# Fill in the information in the form below when you create a new regression
# Github issue: #12
......@@ -15,10 +17,17 @@ class TestX86(regress.RegressTest):
# Initialize Keystone engine
ks = Ks(KS_ARCH_X86, KS_MODE_64)
# Assemble to get back insn encoding & statement count
# encoding, count = ks.asm("mov rdi, 0x1122334455")
encoding, count = ks.asm("mov rdi, 0x1122334455")
# Assert the result
self.assertEqual(encoding, [ 0x48, 0xBF, 0x55, 0x44, 0x33, 0x22, 0x11, 0x00, 0x00, 0x00 ])
encoding, count = ks.asm("movabs rdi, 0x1122334455")
# Assert the result
self.assertEqual(encoding, [ 0x48, 0xBF, 0x55, 0x44, 0x33, 0x22, 0x11, 0x00, 0x00, 0x00 ])
encoding, count = ks.asm("movq rdi, 0x1122334455")
# Assert the result
self.assertEqual(encoding, [ 0x48, 0xBF, 0x55, 0x44, 0x33, 0x22, 0x11, 0x00, 0x00, 0x00 ])
if __name__ == '__main__':
regress.main()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment