Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

300 righe
8.1 KiB

  1. #! /usr/bin/env perl
  2. # Copyright 2006-2016 The OpenSSL Project Authors. All Rights Reserved.
  3. #
  4. # Licensed under the OpenSSL license (the "License"). You may not use
  5. # this file except in compliance with the License. You can obtain a copy
  6. # in the file LICENSE in the source distribution or at
  7. # https://www.openssl.org/source/license.html
  8. my $flavour = shift;
  9. my $output = shift;
  10. open STDOUT,">$output" || die "can't open $output: $!";
  11. my %GLOBALS;
  12. my %TYPES;
  13. my $dotinlocallabels=($flavour=~/linux/)?1:0;
  14. ################################################################
  15. # directives which need special treatment on different platforms
  16. ################################################################
  17. my $type = sub {
  18. my ($dir,$name,$type) = @_;
  19. $TYPES{$name} = $type;
  20. if ($flavour =~ /linux/) {
  21. $name =~ s|^\.||;
  22. ".type $name,$type";
  23. } else {
  24. "";
  25. }
  26. };
  27. my $globl = sub {
  28. my $junk = shift;
  29. my $name = shift;
  30. my $global = \$GLOBALS{$name};
  31. my $type = \$TYPES{$name};
  32. my $ret;
  33. $name =~ s|^\.||;
  34. SWITCH: for ($flavour) {
  35. /aix/ && do { if (!$$type) {
  36. $$type = "\@function";
  37. }
  38. if ($$type =~ /function/) {
  39. $name = ".$name";
  40. }
  41. last;
  42. };
  43. /osx/ && do { $name = "_$name";
  44. last;
  45. };
  46. /linux.*(32|64le)/
  47. && do { $ret .= ".globl $name";
  48. if (!$$type) {
  49. $ret .= "\n.type $name,\@function";
  50. $$type = "\@function";
  51. }
  52. last;
  53. };
  54. /linux.*64/ && do { $ret .= ".globl $name";
  55. if (!$$type) {
  56. $ret .= "\n.type $name,\@function";
  57. $$type = "\@function";
  58. }
  59. if ($$type =~ /function/) {
  60. $ret .= "\n.section \".opd\",\"aw\"";
  61. $ret .= "\n.align 3";
  62. $ret .= "\n$name:";
  63. $ret .= "\n.quad .$name,.TOC.\@tocbase,0";
  64. $ret .= "\n.previous";
  65. $name = ".$name";
  66. }
  67. last;
  68. };
  69. }
  70. $ret = ".globl $name" if (!$ret);
  71. $$global = $name;
  72. $ret;
  73. };
  74. my $text = sub {
  75. my $ret = ($flavour =~ /aix/) ? ".csect\t.text[PR],7" : ".text";
  76. $ret = ".abiversion 2\n".$ret if ($flavour =~ /linux.*64le/);
  77. $ret;
  78. };
  79. my $machine = sub {
  80. my $junk = shift;
  81. my $arch = shift;
  82. if ($flavour =~ /osx/)
  83. { $arch =~ s/\"//g;
  84. $arch = ($flavour=~/64/) ? "ppc970-64" : "ppc970" if ($arch eq "any");
  85. }
  86. ".machine $arch";
  87. };
  88. my $size = sub {
  89. if ($flavour =~ /linux/)
  90. { shift;
  91. my $name = shift;
  92. my $real = $GLOBALS{$name} ? \$GLOBALS{$name} : \$name;
  93. my $ret = ".size $$real,.-$$real";
  94. $name =~ s|^\.||;
  95. if ($$real ne $name) {
  96. $ret .= "\n.size $name,.-$$real";
  97. }
  98. $ret;
  99. }
  100. else
  101. { ""; }
  102. };
  103. my $asciz = sub {
  104. shift;
  105. my $line = join(",",@_);
  106. if ($line =~ /^"(.*)"$/)
  107. { ".byte " . join(",",unpack("C*",$1),0) . "\n.align 2"; }
  108. else
  109. { ""; }
  110. };
  111. my $quad = sub {
  112. shift;
  113. my @ret;
  114. my ($hi,$lo);
  115. for (@_) {
  116. if (/^0x([0-9a-f]*?)([0-9a-f]{1,8})$/io)
  117. { $hi=$1?"0x$1":"0"; $lo="0x$2"; }
  118. elsif (/^([0-9]+)$/o)
  119. { $hi=$1>>32; $lo=$1&0xffffffff; } # error-prone with 32-bit perl
  120. else
  121. { $hi=undef; $lo=$_; }
  122. if (defined($hi))
  123. { push(@ret,$flavour=~/le$/o?".long\t$lo,$hi":".long\t$hi,$lo"); }
  124. else
  125. { push(@ret,".quad $lo"); }
  126. }
  127. join("\n",@ret);
  128. };
  129. ################################################################
  130. # simplified mnemonics not handled by at least one assembler
  131. ################################################################
  132. my $cmplw = sub {
  133. my $f = shift;
  134. my $cr = 0; $cr = shift if ($#_>1);
  135. # Some out-of-date 32-bit GNU assembler just can't handle cmplw...
  136. ($flavour =~ /linux.*32/) ?
  137. " .long ".sprintf "0x%x",31<<26|$cr<<23|$_[0]<<16|$_[1]<<11|64 :
  138. " cmplw ".join(',',$cr,@_);
  139. };
  140. my $bdnz = sub {
  141. my $f = shift;
  142. my $bo = $f=~/[\+\-]/ ? 16+9 : 16; # optional "to be taken" hint
  143. " bc $bo,0,".shift;
  144. } if ($flavour!~/linux/);
  145. my $bltlr = sub {
  146. my $f = shift;
  147. my $bo = $f=~/\-/ ? 12+2 : 12; # optional "not to be taken" hint
  148. ($flavour =~ /linux/) ? # GNU as doesn't allow most recent hints
  149. " .long ".sprintf "0x%x",19<<26|$bo<<21|16<<1 :
  150. " bclr $bo,0";
  151. };
  152. my $bnelr = sub {
  153. my $f = shift;
  154. my $bo = $f=~/\-/ ? 4+2 : 4; # optional "not to be taken" hint
  155. ($flavour =~ /linux/) ? # GNU as doesn't allow most recent hints
  156. " .long ".sprintf "0x%x",19<<26|$bo<<21|2<<16|16<<1 :
  157. " bclr $bo,2";
  158. };
  159. my $beqlr = sub {
  160. my $f = shift;
  161. my $bo = $f=~/-/ ? 12+2 : 12; # optional "not to be taken" hint
  162. ($flavour =~ /linux/) ? # GNU as doesn't allow most recent hints
  163. " .long ".sprintf "0x%X",19<<26|$bo<<21|2<<16|16<<1 :
  164. " bclr $bo,2";
  165. };
  166. # GNU assembler can't handle extrdi rA,rS,16,48, or when sum of last two
  167. # arguments is 64, with "operand out of range" error.
  168. my $extrdi = sub {
  169. my ($f,$ra,$rs,$n,$b) = @_;
  170. $b = ($b+$n)&63; $n = 64-$n;
  171. " rldicl $ra,$rs,$b,$n";
  172. };
  173. my $vmr = sub {
  174. my ($f,$vx,$vy) = @_;
  175. " vor $vx,$vy,$vy";
  176. };
  177. # Some ABIs specify vrsave, special-purpose register #256, as reserved
  178. # for system use.
  179. my $no_vrsave = ($flavour =~ /aix|linux64le/);
  180. my $mtspr = sub {
  181. my ($f,$idx,$ra) = @_;
  182. if ($idx == 256 && $no_vrsave) {
  183. " or $ra,$ra,$ra";
  184. } else {
  185. " mtspr $idx,$ra";
  186. }
  187. };
  188. my $mfspr = sub {
  189. my ($f,$rd,$idx) = @_;
  190. if ($idx == 256 && $no_vrsave) {
  191. " li $rd,-1";
  192. } else {
  193. " mfspr $rd,$idx";
  194. }
  195. };
  196. # PowerISA 2.06 stuff
  197. sub vsxmem_op {
  198. my ($f, $vrt, $ra, $rb, $op) = @_;
  199. " .long ".sprintf "0x%X",(31<<26)|($vrt<<21)|($ra<<16)|($rb<<11)|($op*2+1);
  200. }
  201. # made-up unaligned memory reference AltiVec/VMX instructions
  202. my $lvx_u = sub { vsxmem_op(@_, 844); }; # lxvd2x
  203. my $stvx_u = sub { vsxmem_op(@_, 972); }; # stxvd2x
  204. my $lvdx_u = sub { vsxmem_op(@_, 588); }; # lxsdx
  205. my $stvdx_u = sub { vsxmem_op(@_, 716); }; # stxsdx
  206. my $lvx_4w = sub { vsxmem_op(@_, 780); }; # lxvw4x
  207. my $stvx_4w = sub { vsxmem_op(@_, 908); }; # stxvw4x
  208. # PowerISA 2.07 stuff
  209. sub vcrypto_op {
  210. my ($f, $vrt, $vra, $vrb, $op) = @_;
  211. " .long ".sprintf "0x%X",(4<<26)|($vrt<<21)|($vra<<16)|($vrb<<11)|$op;
  212. }
  213. my $vcipher = sub { vcrypto_op(@_, 1288); };
  214. my $vcipherlast = sub { vcrypto_op(@_, 1289); };
  215. my $vncipher = sub { vcrypto_op(@_, 1352); };
  216. my $vncipherlast= sub { vcrypto_op(@_, 1353); };
  217. my $vsbox = sub { vcrypto_op(@_, 0, 1480); };
  218. my $vshasigmad = sub { my ($st,$six)=splice(@_,-2); vcrypto_op(@_, $st<<4|$six, 1730); };
  219. my $vshasigmaw = sub { my ($st,$six)=splice(@_,-2); vcrypto_op(@_, $st<<4|$six, 1666); };
  220. my $vpmsumb = sub { vcrypto_op(@_, 1032); };
  221. my $vpmsumd = sub { vcrypto_op(@_, 1224); };
  222. my $vpmsubh = sub { vcrypto_op(@_, 1096); };
  223. my $vpmsumw = sub { vcrypto_op(@_, 1160); };
  224. my $vaddudm = sub { vcrypto_op(@_, 192); };
  225. my $mtsle = sub {
  226. my ($f, $arg) = @_;
  227. " .long ".sprintf "0x%X",(31<<26)|($arg<<21)|(147*2);
  228. };
  229. # PowerISA 3.0 stuff
  230. my $maddhdu = sub {
  231. my ($f, $rt, $ra, $rb, $rc) = @_;
  232. " .long ".sprintf "0x%X",(4<<26)|($rt<<21)|($ra<<16)|($rb<<11)|($rc<<6)|49;
  233. };
  234. my $maddld = sub {
  235. my ($f, $rt, $ra, $rb, $rc) = @_;
  236. " .long ".sprintf "0x%X",(4<<26)|($rt<<21)|($ra<<16)|($rb<<11)|($rc<<6)|51;
  237. };
  238. my $darn = sub {
  239. my ($f, $rt, $l) = @_;
  240. " .long ".sprintf "0x%X",(31<<26)|($rt<<21)|($l<<16)|(755<<1);
  241. };
  242. while($line=<>) {
  243. $line =~ s|[#!;].*$||; # get rid of asm-style comments...
  244. $line =~ s|/\*.*\*/||; # ... and C-style comments...
  245. $line =~ s|^\s+||; # ... and skip white spaces in beginning...
  246. $line =~ s|\s+$||; # ... and at the end
  247. {
  248. $line =~ s|\.L(\w+)|L$1|g; # common denominator for Locallabel
  249. $line =~ s|\bL(\w+)|\.L$1|g if ($dotinlocallabels);
  250. }
  251. {
  252. $line =~ s|(^[\.\w]+)\:\s*||;
  253. my $label = $1;
  254. if ($label) {
  255. my $xlated = ($GLOBALS{$label} or $label);
  256. print "$xlated:";
  257. if ($flavour =~ /linux.*64le/) {
  258. if ($TYPES{$label} =~ /function/) {
  259. printf "\n.localentry %s,0\n",$xlated;
  260. }
  261. }
  262. }
  263. }
  264. {
  265. $line =~ s|^\s*(\.?)(\w+)([\.\+\-]?)\s*||;
  266. my $c = $1; $c = "\t" if ($c eq "");
  267. my $mnemonic = $2;
  268. my $f = $3;
  269. my $opcode = eval("\$$mnemonic");
  270. $line =~ s/\b(c?[rf]|v|vs)([0-9]+)\b/$2/g if ($c ne "." and $flavour !~ /osx/);
  271. if (ref($opcode) eq 'CODE') { $line = &$opcode($f,split(',',$line)); }
  272. elsif ($mnemonic) { $line = $c.$mnemonic.$f."\t".$line; }
  273. }
  274. print $line if ($line);
  275. print "\n";
  276. }
  277. close STDOUT;