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
44 # Load and store alignment
50 # Hexadecimal constants prefaced by 0x
68 # Convert ELSE to .else
71 # Convert ENDIF to .endif
74 # Convert ELSEIF to .elseif
77 # Convert LTORG to .ltorg
80 # Convert IF :DEF:to .if
81 # gcc doesn't have the ability to do a conditional
82 # if defined variable that is set by IF :DEF: on
83 # armasm, so convert it to a normal .if and then
84 # make sure to define a value elesewhere
85 if (s/\bIF :DEF:\b/.if /g)
96 # Convert INCLUDE to .INCLUDE "file"
97 s/INCLUDE(\s*)(.*)$/.include $1\"$2\"/;
99 # Code directive (ARM vs Thumb)
100 s/CODE([0-9][0-9])/.code $1/;
103 # But ALIGNs in AREA must be obeyed
104 s/^\s*AREA.*ALIGN=([0-9])$/.text\n.p2align $1/;
105 # If no ALIGN, strip the AREA and align to 4 bytes
106 s/^\s*AREA.*$/.text\n.p2align 2/;
109 # This one is for incoming symbols
110 s/DCD\s+\|(\w*)\|/.long $1/;
113 s/DCW\s+\|(\w*)\|/.short $1/;
114 s/DCW(.*)/.short $1/;
116 # Constants defined in scope
120 # Build a hash of all the register - alias pairs.
121 if (s/(.*)RN(.*)/$1 .req $2/g)
123 $register_aliases{trim
($1)} = trim
($2);
127 while (($key, $value) = each(%register_aliases))
132 # Make function visible to linker, and make additional symbol with
133 # prepended underscore
134 s/EXPORT\s+\|([\$\w]*)\|/.globl _$1\n\t.globl $1/;
135 s/IMPORT\s+\|([\$\w]*)\|/.globl $1/;
137 # No vertical bars required; make additional symbol with prepended
139 s/^\|(\$?\w+)\|/_$1\n\t$1:/g;
141 # Labels need trailing colon
142 # s/^(\w+)/$1:/ if !/EQU/;
143 # put the colon at the end of the line in the macro
144 s/^([a-zA-Z_0-9\$]+)/$1:/ if !/EQU/;
153 #s/\sREQUIRE8/@ REQUIRE8/g;
157 s/\sPRESERVE8/@ PRESERVE8/g;
159 # Strip PROC and ENDPROC
164 s/(.*)EQU(.*)/.set $1, $2/;
166 # Begin macro definition
169 # Process next line down, which will be the macro definition
174 # remove commas that are separating list
178 @incoming_array = split(/ /, $trimmed);
180 print ".macro @incoming_array[0]\n";
182 # remove the first element, as that is the name of the macro
183 shift (@incoming_array);
185 @macro_aliases{@incoming_array} = @mapping_list;
190 while (($key, $value) = each(%macro_aliases))
196 # For macros, use \ to reference formal params
197 # s/\$/\\/g; # End macro definition
198 s/MEND/.endm/; # No need to tell it where to stop assembling
199 next if /^\s*END\s*$/;