3 # PowerPC assembler distiller by <appro>.
7 open STDOUT
,">$output" || die "can't open $output: $!";
10 my $dotinlocallabels=($flavour=~/linux/)?
1:0;
12 ################################################################
13 # directives which need special treatment on different platforms
14 ################################################################
18 my $global = \
$GLOBALS{$name};
23 SWITCH
: for ($flavour) {
24 /aix/ && do { $name = ".$name";
27 /osx/ && do { $name = "_$name";
30 /linux.*32/ && do { $ret .= ".globl $name\n";
31 $ret .= ".type $name,\@function";
34 /linux.*64/ && do { $ret .= ".globl $name\n";
35 $ret .= ".type $name,\@function\n";
36 $ret .= ".section \".opd\",\"aw\"\n";
39 $ret .= ".quad .$name,.TOC.\@tocbase,0\n";
40 $ret .= ".size $name,24\n";
41 $ret .= ".previous\n";
48 $ret = ".globl $name" if (!$ret);
53 ($flavour =~ /aix/) ?
".csect" : ".text";
58 if ($flavour =~ /osx/)
60 $arch = ($flavour=~/64/) ?
"ppc970-64" : "ppc970" if ($arch eq "any");
65 if ($flavour =~ /linux.*32/)
67 ".size " . join(",",@_);
74 my $line = join(",",@_);
75 if ($line =~ /^"(.*)"$/)
76 { ".byte " . join(",",unpack("C*",$1),0) . "\n.align 2"; }
81 ################################################################
82 # simplified mnemonics not handled by at least one assembler
83 ################################################################
86 my $cr = 0; $cr = shift if ($#_>1);
87 # Some out-of-date 32-bit GNU assembler just can't handle cmplw...
88 ($flavour =~ /linux.*32/) ?
89 " .long ".sprintf "0x%x",31<<26|$cr<<23|$_[0]<<16|$_[1]<<11|64 :
90 " cmplw ".join(',',$cr,@_);
94 my $bo = $f=~/[\+\-]/ ?
16+9 : 16; # optional "to be taken" hint
96 } if ($flavour!~/linux/);
99 my $bo = $f=~/\-/ ?
12+2 : 12; # 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|16<<1 :
106 my $bo = $f=~/\-/ ?
4+2 : 4; # optional "not to be taken" hint
107 ($flavour =~ /linux/) ?
# GNU as doesn't allow most recent hints
108 " .long ".sprintf "0x%x",19<<26|$bo<<21|2<<16|16<<1 :
113 my $bo = $f=~/-/ ?
12+2 : 12; # optional "not to be taken" hint
114 ($flavour =~ /linux/) ?
# GNU as doesn't allow most recent hints
115 " .long ".sprintf "0x%X",19<<26|$bo<<21|2<<16|16<<1 :
118 # GNU assembler can't handle extrdi rA,rS,16,48, or when sum of last two
119 # arguments is 64, with "operand out of range" error.
121 my ($f,$ra,$rs,$n,$b) = @_;
122 $b = ($b+$n)&63; $n = 64-$n;
123 " rldicl $ra,$rs,$b,$n";
128 $line =~ s
|[#!;].*$||; # get rid of asm-style comments...
129 $line =~ s
|/\*.*\*/||; # ... and C-style comments...
130 $line =~ s
|^\s
+||; # ... and skip white spaces in beginning...
131 $line =~ s
|\s
+$||; # ... and at the end
134 $line =~ s
|\b\
.L
(\w
+)|L
$1|g
; # common denominator for Locallabel
135 $line =~ s
|\bL
(\w
+)|\
.L
$1|g
if ($dotinlocallabels);
139 $line =~ s
|(^[\
.\w
]+)\
:\s
*||;
141 printf "%s:",($GLOBALS{$label} or $label) if ($label);
145 $line =~ s
|^\s
*(\
.?
)(\w
+)([\
.\
+\
-]?
)\s
*||;
146 my $c = $1; $c = "\t" if ($c eq "");
149 my $opcode = eval("\$$mnemonic");
150 $line =~ s
|\bc?
[rf
]([0-9]+)\b|$1|g
if ($c ne "." and $flavour !~ /osx/);
151 if (ref($opcode) eq 'CODE') { $line = &$opcode($f,split(',',$line)); }
152 elsif ($mnemonic) { $line = $c.$mnemonic.$f."\t".$line; }
155 print $line if ($line);