mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
ed2dcb8dc0
Add tests for EA optimizations
75 lines
1.1 KiB
NASM
75 lines
1.1 KiB
NASM
;Testname=O0; Arguments=-O0 -fbin -ooptimization.bin; Files=stdout stderr optimization.bin
|
|
;Testname=O1; Arguments=-O1 -fbin -ooptimization.bin; Files=stdout stderr optimization.bin
|
|
;Testname=Ox; Arguments=-Ox -fbin -ooptimization.bin; Files=stdout stderr optimization.bin
|
|
|
|
BITS 32
|
|
|
|
; Simple
|
|
jmp foo
|
|
times 124 nop
|
|
foo:
|
|
|
|
; Must start short to converge optimally
|
|
jmp car
|
|
times 127 nop
|
|
car:
|
|
|
|
; Always near
|
|
jmp cdr
|
|
times 128 nop
|
|
cdr:
|
|
|
|
|
|
; Simple
|
|
add eax, quux2 - quux1
|
|
quux1:
|
|
times 127 nop
|
|
quux2:
|
|
|
|
; Must start short
|
|
corge1:
|
|
add eax, corge2 - corge1
|
|
times 127 - 3 nop
|
|
corge2:
|
|
|
|
|
|
; Simple
|
|
lea eax, [bolug2-bolug1]
|
|
bolug1:
|
|
times 127 nop
|
|
bolug2:
|
|
|
|
; Must start short
|
|
calog1:
|
|
lea eax, [calog2-calog1]
|
|
times 127 - 3 nop
|
|
calog2:
|
|
|
|
|
|
; Simple
|
|
lea eax, [eax+dolug2-dolug1]
|
|
dolug1:
|
|
times 127 nop
|
|
dolug2:
|
|
|
|
; Must start short
|
|
ealog1:
|
|
lea eax, [eax+ealog2-ealog1]
|
|
times 127 - 3 nop
|
|
ealog2:
|
|
|
|
; Must stay long!
|
|
lea eax, [eax+folug2-folug1]
|
|
folug1:
|
|
times 128 nop
|
|
folug2:
|
|
|
|
; Must stay long!
|
|
galog1:
|
|
lea eax, [eax+galog2-galog1]
|
|
times 128 - 3 nop
|
|
galog2:
|
|
|
|
; Do not confuse forward references and segmentless addresses!
|
|
jmp 12345
|