a51147a3a7aa2377fb4e497ef387ac173a2821b1
[openssl.git] / crypto / perlasm / ppc-xlate.pl
1 #!/usr/bin/env perl
2
3 # PowerPC assembler distiller by <appro>.
4
5 my $output = shift;
6 open STDOUT,">$output" || die "can't open $output: $!";
7
8 my $flavour = $output;
9 my %GLOBALS;
10 my $dotinlocallabels=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                                 $dotinlocallabels = 1;
33                                 last;
34                               };
35         /linux.*64/     && do { $ret .= ".globl .$name\n";
36                                 $ret .= ".type  .$name,\@function\n";
37                                 $ret .= ".section       \".opd\",\"aw\"\n";
38                                 $ret .= ".globl $name\n";
39                                 $ret .= ".align 3\n";
40                                 $ret .= "$name:\n";
41                                 $ret .= ".quad  .$name,.TOC.\@tocbase,0\n";
42                                 $ret .= ".size  $name,24\n";
43                                 $ret .= ".previous\n";
44
45                                 $name = ".$name";
46                                 $dotinlocallabels = 1;
47                                 last;
48                               };
49     }
50
51     $ret = ".globl      $name" if (!$ret);
52     $$global = $name;
53     $ret;
54 };
55 my $text = sub {
56     ($flavour =~ /aix/) ? ".csect" : ".text";
57 };
58 my $machine = sub {
59     my $junk = shift;
60     my $arch = shift;
61     $arch = "ppc970" if ($arch eq "any" and $flavour =~ /osx/);
62     ".machine   $arch";
63 };
64
65 ################################################################
66 # simplified mnemonics not handled by at least one assembler
67 ################################################################
68 my $cmplw = sub {
69     my $f = shift;
70     my $cr = 0; $cr = shift if ($#_>1);
71     "   cmpl$f  ".join(',',$cr,0,@_);
72 };
73 my $cmpld = sub {
74     my $f = shift;
75     my $cr = 0; $cr = shift if ($#_>1);
76     "   cmpl$f  ".join(',',$cr,1,@_);
77 };
78 my $bdnz = sub {
79     my $f = shift;
80     my $bo = $f=~/[\+\-]/ ? 17 : 16;
81     "   bc      $bo,0,".shift;
82 };
83
84 while($line=<>) {
85
86     $line =~ s|[#!;].*$||;      # get rid of asm-style comments...
87     $line =~ s|/\*.*\*/||;      # ... and C-style comments...
88     $line =~ s|^\s+||;          # ... and skip white spaces in beginning...
89     $line =~ s|\s+$||;          # ... and at the end
90
91     {
92         $line =~ s|\b\.L(\w+)|L$1|g;    # common denominator for Locallabel
93         $line =~ s|\bL(\w+)|\.L$1|g     if ($dotinlocallabels);
94     }
95
96     {
97         $line =~ s|(^[\.\w]+)\:\s*||;
98         my $label = $1;
99         printf "%s:",($GLOBALS{$label} or $label) if ($label);
100     }
101
102     {
103         $line =~ s|^\s*(\.?)(\w+)([\.\+\-]?)\s*||;
104         my $c = $1; $c = "\t" if ($c eq "");
105         my $mnemonic = $2;
106         my $f = $3;
107         my $opcode = eval("\$$mnemonic");
108         $line =~ s|\br([0-9]+)\b|$1|g if ($c ne "." and $flavour !~ /osx/);
109         if (ref($opcode) eq 'CODE') { $line = &$opcode($f,split(',',$line)); }
110         elsif ($mnemonic)           { $line = $c.$mnemonic.$f."\t".$line; }
111     }
112
113     print $line if ($line);
114     print "\n";
115 }
116
117 close STDOUT;