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

Unified Diff: dl/sp/src/arm/arm64/armSP_FFTInv_CCSToR_F32_preTwiddleRadix2_s.S

Issue 1420973006: arm64: clang assembler compatability (Closed) Base URL: https://chromium.googlesource.com/external/webrtc/deps/third_party/openmax@master
Patch Set: arm64: clang assembler compatibility Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dl/sp/src/arm/arm64/ComplexToRealFixup.S ('k') | dl/sp/src/arm/arm64/armSP_FFT_CToC_FC32_Radix2_s.S » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dl/sp/src/arm/arm64/armSP_FFTInv_CCSToR_F32_preTwiddleRadix2_s.S
diff --git a/dl/sp/src/arm/arm64/armSP_FFTInv_CCSToR_F32_preTwiddleRadix2_s.S b/dl/sp/src/arm/arm64/armSP_FFTInv_CCSToR_F32_preTwiddleRadix2_s.S
index 02ff1c2a02b630fcfc05ca5086d9b892abf553e7..f93aa97d5d18f4e2e8c1959f00b2948e4ebfab0d 100644
--- a/dl/sp/src/arm/arm64/armSP_FFTInv_CCSToR_F32_preTwiddleRadix2_s.S
+++ b/dl/sp/src/arm/arm64/armSP_FFTInv_CCSToR_F32_preTwiddleRadix2_s.S
@@ -112,6 +112,7 @@
#define dZip v19.2s
#define dZip8b v19.8b
#define half v13.2s
+#define halfs v13.s
.macro FFTSTAGE scaled, inverse, name
@@ -140,8 +141,8 @@
fadd dY0,dX0,dX1 // [b+d | a+c]
fsub dY1,dX0,dX1 // [b-d | a-c]
- fmul dY0, dY0, half[0]
- fmul dY1, dY1, half[0]
+ fmul dY0, dY0, halfs[0]
+ fmul dY1, dY1, halfs[0]
// dY0= [a-c | a+c] ;dY1= [b-d | b+d]
// VZIP dY0,dY1
@@ -201,11 +202,11 @@ evenOddButterflyLoop\name :
fsub dT1,dX0i,dX1i // b-d
SUB step1,step1,#8
- fmul dT2, dT2, half[0]
- fmul dT3, dT3, half[0]
+ fmul dT2, dT2, halfs[0]
+ fmul dT3, dT3, halfs[0]
- fmul dT0, dT0, half[0]
- fmul dT1, dT1, half[0]
+ fmul dT0, dT0, halfs[0]
+ fmul dT1, dT1, halfs[0]
// VZIP dW1r,dW1i
// VZIP dW0r,dW0i
« no previous file with comments | « dl/sp/src/arm/arm64/ComplexToRealFixup.S ('k') | dl/sp/src/arm/arm64/armSP_FFT_CToC_FC32_Radix2_s.S » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698