mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
733cbb3197
Using hidden files are rather antisocial, and rather pointless in this particular context. Change .stdout and .stderr to simply stdout and stderr. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
30 lines
735 B
Perl
Executable File
30 lines
735 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
print ";Testname=unoptimized; Arguments=-fbin -oriprel.bin -O0; Files=stdout stderr riprel.bin\n";
|
|
print ";Testname=optimized; Arguments=-fbin -oriprel.bin -Ox; Files=stdout stderr riprel.bin\n";
|
|
|
|
|
|
print "\tbits 64\n";
|
|
|
|
foreach $mode ('abs', 'rel') {
|
|
print "\n\tdefault $mode\n\n";
|
|
|
|
foreach $so ('', 'fs:', 'es:') {
|
|
foreach $rq ('', 'abs ', 'rel ') {
|
|
foreach $ao ('', 'a64 ', 'a32 ') {
|
|
foreach $sq ('', 'dword ', 'qword ') {
|
|
foreach $v ('foo', '0xaaaaaaaaaaaaaaaa', '0xbbbbbbbb',
|
|
'0xffffffffcccccccc') {
|
|
foreach $r ( 'al', 'bl', 'ax', 'bx', 'eax', 'ebx', 'rax', 'rbx') {
|
|
print "\tmov $r,[$ao$rq$sq$so$v]\n";
|
|
}
|
|
}
|
|
print "\n";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
print "\nfoo:\n";
|