Tizen 2.1 base
[sdk/emulator/qemu.git] / tizen / distrib / libav / libavcodec / arm / dsputil_vfp.S
1 /*
2  * Copyright (c) 2008 Siarhei Siamashka <ssvb@users.sourceforge.net>
3  *
4  * This file is part of Libav.
5  *
6  * Libav is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * Libav is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with Libav; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #include "config.h"
22 #include "asm.S"
23
24 /*
25  * VFP is a floating point coprocessor used in some ARM cores. VFP11 has 1 cycle
26  * throughput for almost all the instructions (except for double precision
27  * arithmetics), but rather high latency. Latency is 4 cycles for loads and 8 cycles
28  * for arithmetic operations. Scheduling code to avoid pipeline stalls is very
29  * important for performance. One more interesting feature is that VFP has
30  * independent load/store and arithmetics pipelines, so it is possible to make
31  * them work simultaneously and get more than 1 operation per cycle. Load/store
32  * pipeline can process 2 single precision floating point values per cycle and
33  * supports bulk loads and stores for large sets of registers. Arithmetic operations
34  * can be done on vectors, which allows to keep the arithmetics pipeline busy,
35  * while the processor may issue and execute other instructions. Detailed
36  * optimization manuals can be found at http://www.arm.com
37  */
38
39 /**
40  * ARM VFP optimized implementation of 'vector_fmul_c' function.
41  * Assume that len is a positive number and is multiple of 8
42  */
43 @ void ff_vector_fmul_vfp(float *dst, const float *src0, const float *src1, int len)
44 function ff_vector_fmul_vfp, export=1
45         vpush           {d8-d15}
46         fmrx            r12, fpscr
47         orr             r12, r12, #(3 << 16) /* set vector size to 4 */
48         fmxr            fpscr, r12
49
50         vldmia          r1!, {s0-s3}
51         vldmia          r2!, {s8-s11}
52         vldmia          r1!, {s4-s7}
53         vldmia          r2!, {s12-s15}
54         vmul.f32        s8,  s0,  s8
55 1:
56         subs            r3,  r3,  #16
57         vmul.f32        s12, s4,  s12
58         vldmiage        r1!, {s16-s19}
59         vldmiage        r2!, {s24-s27}
60         vldmiage        r1!, {s20-s23}
61         vldmiage        r2!, {s28-s31}
62         vmulge.f32      s24, s16, s24
63         vstmia          r0!, {s8-s11}
64         vstmia          r0!, {s12-s15}
65         vmulge.f32      s28, s20, s28
66         vldmiagt        r1!, {s0-s3}
67         vldmiagt        r2!, {s8-s11}
68         vldmiagt        r1!, {s4-s7}
69         vldmiagt        r2!, {s12-s15}
70         vmulge.f32      s8,  s0,  s8
71         vstmiage        r0!, {s24-s27}
72         vstmiage        r0!, {s28-s31}
73         bgt             1b
74
75         bic             r12, r12, #(7 << 16) /* set vector size back to 1 */
76         fmxr            fpscr, r12
77         vpop            {d8-d15}
78         bx              lr
79 endfunc
80
81 /**
82  * ARM VFP optimized implementation of 'vector_fmul_reverse_c' function.
83  * Assume that len is a positive number and is multiple of 8
84  */
85 @ void ff_vector_fmul_reverse_vfp(float *dst, const float *src0,
86 @                                 const float *src1, int len)
87 function ff_vector_fmul_reverse_vfp, export=1
88         vpush           {d8-d15}
89         add             r2,  r2,  r3, lsl #2
90         vldmdb          r2!, {s0-s3}
91         vldmia          r1!, {s8-s11}
92         vldmdb          r2!, {s4-s7}
93         vldmia          r1!, {s12-s15}
94         vmul.f32        s8,  s3,  s8
95         vmul.f32        s9,  s2,  s9
96         vmul.f32        s10, s1,  s10
97         vmul.f32        s11, s0,  s11
98 1:
99         subs            r3,  r3,  #16
100         vldmdbge        r2!, {s16-s19}
101         vmul.f32        s12, s7,  s12
102         vldmiage        r1!, {s24-s27}
103         vmul.f32        s13, s6,  s13
104         vldmdbge        r2!, {s20-s23}
105         vmul.f32        s14, s5,  s14
106         vldmiage        r1!, {s28-s31}
107         vmul.f32        s15, s4,  s15
108         vmulge.f32      s24, s19, s24
109         vldmdbgt        r2!, {s0-s3}
110         vmulge.f32      s25, s18, s25
111         vstmia          r0!, {s8-s13}
112         vmulge.f32      s26, s17, s26
113         vldmiagt        r1!, {s8-s11}
114         vmulge.f32      s27, s16, s27
115         vmulge.f32      s28, s23, s28
116         vldmdbgt        r2!, {s4-s7}
117         vmulge.f32      s29, s22, s29
118         vstmia          r0!, {s14-s15}
119         vmulge.f32      s30, s21, s30
120         vmulge.f32      s31, s20, s31
121         vmulge.f32      s8,  s3,  s8
122         vldmiagt        r1!, {s12-s15}
123         vmulge.f32      s9,  s2,  s9
124         vmulge.f32      s10, s1,  s10
125         vstmiage        r0!, {s24-s27}
126         vmulge.f32      s11, s0,  s11
127         vstmiage        r0!, {s28-s31}
128         bgt             1b
129
130         vpop            {d8-d15}
131         bx              lr
132 endfunc