755524c9cff6b46bcc6ab327199f4e03f6d0acd9
[openssl.git] / crypto / perlasm / ppc-xlate.pl
1 #!/usr/bin/env perl
2
3 # PowerPC assembler distiller by <appro>.
4
5 my $flavour = shift;
6 my $output = shift;
7 open STDOUT,">$output" || die "can't open $output: $!";
8
9 my %GLOBALS;
10 my $dotinlocallabels=($flavour=~/linux/)?1:0;
11
12 ################################################################
13 # directives which need special treatment on different platforms
14 ################################################################
15 my $globl = sub {
16     my $junk = shift;
17     my $name = shift;
18     my $global = \$GLOBALS{$name};
19     my $ret;
20
21     $name =~ s|^[\.\_]||;
22  
23     SWITCH: for ($flavour) {
24         /aix/           && do { $name = ".$name";
25                                 last;
26                               };
27         /osx/           && do { $name = "_$name";
28                                 last;
29                               };
30         /linux.*32/     && do { $ret .= ".globl $name\n";
31                                 $ret .= ".type  $name,\@function";
32                                 last;
33                               };
34         /linux.*64/     && do { $ret .= ".globl .$name\n";
35                                 $ret .= ".type  .$name,\@function\n";
36                                 $ret .= ".section       \".opd\",\"aw\"\n";
37                                 $ret .= ".globl $name\n";
38                                 $ret .= ".align 3\n";
39                                 $ret .= "$name:\n";
40                                 $ret .= ".quad  .$name,.TOC.\@tocbase,0\n";
41                                 $ret .= ".size  $name,24\n";
42                                 $ret .= ".previous\n";
43
44                                 $name = ".$name";
45                                 last;
46                               };
47     }
48
49     $ret = ".globl      $name" if (!$ret);
50     $$global = $name;
51     $ret;
52 };
53 my $text = sub {
54     ($flavour =~ /aix/) ? ".csect" : ".text";
55 };
56 my $machine = sub {
57     my $junk = shift;
58     my $arch = shift;
59     if ($flavour =~ /osx/)
60     {   $arch =~ s/\"//g;
61         $arch = ($flavour=~/64/) ? "ppc970-64" : "ppc970" if ($arch eq "any");
62     }
63     ".machine   $arch";
64 };
65 my $asciz = sub {
66     shift;
67     my $line = join(",",@_);
68     if ($line =~ /^"(.*)"$/)
69     {   ".byte  " . join(",",unpack("C*",$1),0) . "\n.align     2";     }
70     else
71     {   "";     }
72 };
73
74 ################################################################
75 # simplified mnemonics not handled by at least one assembler
76 ################################################################
77 my $cmplw = sub {
78     my $f = shift;
79     my $cr = 0; $cr = shift if ($#_>1);
80     # Some out-of-date 32-bit GNU assembler just can't handle cmplw...
81     ($flavour =~ /linux.*32/) ?
82         "       .long   ".sprintf "0x%x",31<<26|$cr<<23|$_[0]<<16|$_[1]<<11|64 :
83         "       cmplw   ".join(',',$cr,@_);
84 };
85 my $bdnz = sub {
86     my $f = shift;
87     my $bo = $f=~/[\+\-]/ ? 16+9 : 16;  # optional "to be taken" hint
88     "   bc      $bo,0,".shift;
89 } if ($flavour!~/linux/);
90 my $bltlr = sub {
91     my $f = shift;
92     my $bo = $f=~/\-/ ? 12+2 : 12;      # optional "not to be taken" hint
93     ($flavour =~ /linux/) ?             # GNU as doesn't allow most recent hints
94         "       .long   ".sprintf "0x%x",19<<26|$bo<<21|16<<1 :
95         "       bclr    $bo,0";
96 };
97 my $bnelr = sub {
98     my $f = shift;
99     my $bo = $f=~/\-/ ? 4+2 : 4;        # optional "not to be taken" hint
100     ($flavour =~ /linux/) ?             # GNU as doesn't allow most recent hints
101         "       .long   ".sprintf "0x%x",19<<26|$bo<<21|2<<16|16<<1 :
102         "       bclr    $bo,2";
103 };
104 # GNU assembler can't handle extrdi rA,rS,16,48, or when sum of last two
105 # arguments is 64, with "operand out of range" error.
106 my $extrdi = sub {
107     my ($f,$ra,$rs,$n,$b) = @_;
108     $b = ($b+$n)&63; $n = 64-$n;
109     "   rldicl  $ra,$rs,$b,$n";
110 };
111
112 while($line=<>) {
113
114     $line =~ s|[#!;].*$||;      # get rid of asm-style comments...
115     $line =~ s|/\*.*\*/||;      # ... and C-style comments...
116     $line =~ s|^\s+||;          # ... and skip white spaces in beginning...
117     $line =~ s|\s+$||;          # ... and at the end
118
119     {
120         $line =~ s|\b\.L(\w+)|L$1|g;    # common denominator for Locallabel
121         $line =~ s|\bL(\w+)|\.L$1|g     if ($dotinlocallabels);
122     }
123
124     {
125         $line =~ s|(^[\.\w]+)\:\s*||;
126         my $label = $1;
127         printf "%s:",($GLOBALS{$label} or $label) if ($label);
128     }
129
130     {
131         $line =~ s|^\s*(\.?)(\w+)([\.\+\-]?)\s*||;
132         my $c = $1; $c = "\t" if ($c eq "");
133         my $mnemonic = $2;
134         my $f = $3;
135         my $opcode = eval("\$$mnemonic");
136         $line =~ s|\bc?[rf]([0-9]+)\b|$1|g if ($c ne "." and $flavour !~ /osx/);
137         if (ref($opcode) eq 'CODE') { $line = &$opcode($f,split(',',$line)); }
138         elsif ($mnemonic)           { $line = $c.$mnemonic.$f."\t".$line; }
139     }
140
141     print $line if ($line);
142     print "\n";
143 }
144
145 close STDOUT;