3 ## Copyright (c) 2010 The WebM project authors. All Rights Reserved.
5 ## Use of this source code is governed by a BSD-style license
6 ## that can be found in the LICENSE file in the root of the source
7 ## tree. An additional intellectual property rights grant can be found
8 ## in the file PATENTS. All contributing project authors may
9 ## be found in the AUTHORS file in the root of the source tree.
14 # Author: Eric Fung (efung (at) acm.org)
16 # Convert ARM Developer Suite 1.0.1 syntax assembly source to GNU as format
18 # Usage: cat inputfile | perl ads2gas.pl > outputfile
20 print "@ This file was created from a .asm file\n";
21 print "@ using the ads2gas_apple.pl script.\n\n";
22 print "\t.set WIDE_REFERENCE, 0\n";
23 print "\t.set ARCHITECTURE, 5\n";
24 print "\t.set DO1STROUNDING, 0\n";
29 my @mapping_list = ("\$0", "\$1", "\$2", "\$3", "\$4", "\$5", "\$6", "\$7", "\$8", "\$9");
33 # Perl trim function to remove whitespace from the start and end of the string
47 # Hexadecimal constants prefaced by 0x
65 # Convert ELSE to .else
68 # Convert ENDIF to .endif
71 # Convert ELSEIF to .elseif
74 # Convert LTORG to .ltorg
77 # Convert IF :DEF:to .if
78 # gcc doesn't have the ability to do a conditional
79 # if defined variable that is set by IF :DEF: on
80 # armasm, so convert it to a normal .if and then
81 # make sure to define a value elesewhere
82 if (s/\bIF :DEF:\b/.if /g)
93 # Convert INCLUDE to .INCLUDE "file"
94 s/INCLUDE(\s*)(.*)$/.include $1\"$2\"/;
96 # Code directive (ARM vs Thumb)
97 s/CODE([0-9][0-9])/.code $1/;
100 s/^\s*AREA.*$/.text/;
103 # This one is for incoming symbols
104 s/DCD\s+\|(\w*)\|/.long $1/;
107 s/DCW\s+\|(\w*)\|/.short $1/;
108 s/DCW(.*)/.short $1/;
110 # Constants defined in scope
114 # Build a hash of all the register - alias pairs.
115 if (s/(.*)RN(.*)/$1 .req $2/g)
117 $register_aliases{trim
($1)} = trim
($2);
121 while (($key, $value) = each(%register_aliases))
126 # Make function visible to linker, and make additional symbol with
127 # prepended underscore
128 s/EXPORT\s+\|([\$\w]*)\|/.globl _$1\n\t.globl $1/;
129 s/IMPORT\s+\|([\$\w]*)\|/.globl $1/;
131 # No vertical bars required; make additional symbol with prepended
133 s/^\|(\$?\w+)\|/_$1\n\t$1:/g;
135 # Labels need trailing colon
136 # s/^(\w+)/$1:/ if !/EQU/;
137 # put the colon at the end of the line in the macro
138 s/^([a-zA-Z_0-9\$]+)/$1:/ if !/EQU/;
147 #s/\sREQUIRE8/@ REQUIRE8/g;
151 s/\sPRESERVE8/@ PRESERVE8/g;
153 # Strip PROC and ENDPROC
158 s/(.*)EQU(.*)/.set $1, $2/;
160 # Begin macro definition
163 # Process next line down, which will be the macro definition
168 # remove commas that are separating list
172 @incoming_array = split(/ /, $trimmed);
174 print ".macro @incoming_array[0]\n";
176 # remove the first element, as that is the name of the macro
177 shift (@incoming_array);
179 @macro_aliases{@incoming_array} = @mapping_list;
184 while (($key, $value) = each(%macro_aliases))
190 # For macros, use \ to reference formal params
191 # s/\$/\\/g; # End macro definition
192 s/MEND/.endm/; # No need to tell it where to stop assembling
193 next if /^\s*END\s*$/;