Support for .asciz directive in perlasm modules.
[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     if ($flavour =~ /osx/)
62     {   $arch =~ s/\"//g;
63         $arch = ($flavour=~/64/) ? "ppc970-64" : "ppc970" if ($arch eq "any");
64     }
65     ".machine   $arch";
66 };
67 my $asciz = sub {
68     shift;
69     my $line = join(",",@_);
70     if ($line =~ /^"(.*)"$/)
71     {   ".byte  " . join(",",unpack("C*",$1),0);        }
72     else
73     {   "";     }
74 };
75
76 ################################################################
77 # simplified mnemonics not handled by at least one assembler
78 ################################################################
79 my $cmplw = sub {
80     my $f = shift;
81     my $cr = 0; $cr = shift if ($#_>1);
82     # Some out-of-date 32-bit GNU assembler just can't handle cmplw...
83     ($flavour =~ /linux.*32/) ?
84         "       .long   ".sprintf "0x%x",31<<26|$cr<<23|$_[0]<<16|$_[1]<<11|64 :
85         "       cmplw   ".join(',',$cr,@_);
86 };
87 my $bdnz = sub {
88     my $f = shift;
89     my $bo = $f=~/[\+\-]/ ? 17 : 16;
90     "   bc      $bo,0,".shift;
91 };
92
93 while($line=<>) {
94
95     $line =~ s|[#!;].*$||;      # get rid of asm-style comments...
96     $line =~ s|/\*.*\*/||;      # ... and C-style comments...
97     $line =~ s|^\s+||;          # ... and skip white spaces in beginning...
98     $line =~ s|\s+$||;          # ... and at the end
99
100     {
101         $line =~ s|\b\.L(\w+)|L$1|g;    # common denominator for Locallabel
102         $line =~ s|\bL(\w+)|\.L$1|g     if ($dotinlocallabels);
103     }
104
105     {
106         $line =~ s|(^[\.\w]+)\:\s*||;
107         my $label = $1;
108         printf "%s:",($GLOBALS{$label} or $label) if ($label);
109     }
110
111     {
112         $line =~ s|^\s*(\.?)(\w+)([\.\+\-]?)\s*||;
113         my $c = $1; $c = "\t" if ($c eq "");
114         my $mnemonic = $2;
115         my $f = $3;
116         my $opcode = eval("\$$mnemonic");
117         $line =~ s|\bc?r([0-9]+)\b|$1|g if ($c ne "." and $flavour !~ /osx/);
118         if (ref($opcode) eq 'CODE') { $line = &$opcode($f,split(',',$line)); }
119         elsif ($mnemonic)           { $line = $c.$mnemonic.$f."\t".$line; }
120     }
121
122     print $line if ($line);
123     print "\n";
124 }
125
126 close STDOUT;