Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Side by Side Diff: transform_asm.sh

Issue 159803003: Convert ARM optimizations to GNU syntax (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/opus
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« celt/arm/arm2gnu.pl ('K') | « celt/arm/celt_pitch_xcorr_arm_gnu.S ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/sh
2
3 # Copyright 2014 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
7 # This is to transfer the assembly codes used for Opus optimization on ARM
8 # platforms, into the GNU format.
9
10 SRC_DIR='celt/arm/'
11 DST_DIR='celt/arm/'
12 sed 's/@[A-Z,_]*@/1/g' ${SRC_DIR}armopts.s.in | perl ${SRC_DIR}arm2gnu.pl > ${DS T_DIR}armopts_gnu.S
13 perl ${SRC_DIR}arm2gnu.pl ${SRC_DIR}celt_pitch_xcorr_arm.s | sed 's/celt\/arm\/a rmopts.s/armopts_gnu.S/g' > ${DST_DIR}celt_pitch_xcorr_arm_gnu.S
OLDNEW
« celt/arm/arm2gnu.pl ('K') | « celt/arm/celt_pitch_xcorr_arm_gnu.S ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698