reldef.asm: more comprehensive test

More testing of various relative operations.

Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
This commit is contained in:
H. Peter Anvin 2017-06-22 18:20:44 -07:00
parent 2987e5d90e
commit 37b9be3402

View File

@ -1,9 +1,46 @@
bits 64
default rel
extern bar
section .bss
bar: resd 0
section .rodata
rod1: dd 0x01234567
rod2: dd 0x89abcdef
section .text
start:
lea rax, [rod1]
lea rcx, [rod2]
lea rdx, [bar]
lea rbx, [foo]
lea rax, [rax+rod1-$$]
lea rcx, [rax+rod2-$$]
lea rdx, [rax+bar-$$]
lea rbx, [rax+foo-$$]
mov rax, [rax+rod1-$$]
mov rcx, [rax+rod2-$$]
mov rdx, [rax+bar-$$]
mov rbx, [rax+foo-$$]
mov rax, dword rod1-$$
mov rcx, dword rod2-$$
mov rdx, dword bar-$$
mov rbx, dword foo-$$
section .data
foo: dd bar
dd foo - $
; dd foo*2
dq rod1
dq rod2
dq bar
dq foo
foo:
dd rod1 - $
dd rod1 - $$
dd rod2 - $
dd rod2 - $$
dd bar - $
dd bar - $$
dd foo - $
dd foo - $$