nasm/test/perf/macro.pl

19 lines
323 B
Perl
Raw Normal View History

#!/usr/bin/perl
#
# Generate a test case for macro lookup performance
#
($len) = @ARGV;
$len = 100000 unless ($len);
print "\tbits 32\n";
print "\tsection .data\n";
print "\n";
for ($i = 0; $i < $len; $i++) {
print "%define m$i $i\n";
for ($j = 0; $j < 8; $j++) {
print "\tdd m", int(rand($i+1)), "\n";
}
}