summaryrefslogtreecommitdiff
path: root/source/libvpx/vp9/decoder/arm/neon/vp9_add_constant_residual_neon.asm
blob: 174e7473e1bae28e56788aa18ad80c74fd167c97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
;
;   Copyright (c) 2013 The WebM project authors. All Rights Reserved.
;
;   Use of this source code is governed by a BSD-style license
;   that can be found in the LICENSE file in the root of the source
;   tree. An additional intellectual property rights grant can be found
;   in the file PATENTS.  All contributing project authors may
;   be found in the AUTHORS file in the root of the source tree.
;

    EXPORT |vp9_add_constant_residual_8x8_neon|
    EXPORT |vp9_add_constant_residual_16x16_neon|
    EXPORT |vp9_add_constant_residual_32x32_neon|
    ARM

    AREA ||.text||, CODE, READONLY, ALIGN=2

    MACRO
    LD_16x8 $src, $stride
    vld1.8              {q8},       [$src],     $stride
    vld1.8              {q9},       [$src],     $stride
    vld1.8              {q10},      [$src],     $stride
    vld1.8              {q11},      [$src],     $stride
    vld1.8              {q12},      [$src],     $stride
    vld1.8              {q13},      [$src],     $stride
    vld1.8              {q14},      [$src],     $stride
    vld1.8              {q15},      [$src],     $stride
    MEND

    MACRO
    ADD_DIFF_16x8 $diff
    vqadd.u8            q8,         q8,         $diff
    vqadd.u8            q9,         q9,         $diff
    vqadd.u8            q10,        q10,        $diff
    vqadd.u8            q11,        q11,        $diff
    vqadd.u8            q12,        q12,        $diff
    vqadd.u8            q13,        q13,        $diff
    vqadd.u8            q14,        q14,        $diff
    vqadd.u8            q15,        q15,        $diff
    MEND

    MACRO
    SUB_DIFF_16x8 $diff
    vqsub.u8            q8,         q8,         $diff
    vqsub.u8            q9,         q9,         $diff
    vqsub.u8            q10,        q10,        $diff
    vqsub.u8            q11,        q11,        $diff
    vqsub.u8            q12,        q12,        $diff
    vqsub.u8            q13,        q13,        $diff
    vqsub.u8            q14,        q14,        $diff
    vqsub.u8            q15,        q15,        $diff
    MEND

    MACRO
    ST_16x8 $dst, $stride
    vst1.8              {q8},       [$dst],     $stride
    vst1.8              {q9},       [$dst],     $stride
    vst1.8              {q10},      [$dst],     $stride
    vst1.8              {q11},      [$dst],     $stride
    vst1.8              {q12},      [$dst],     $stride
    vst1.8              {q13},      [$dst],     $stride
    vst1.8              {q14},      [$dst],     $stride
    vst1.8              {q15},      [$dst],     $stride
    MEND

; void add_constant_residual(const int16_t diff, uint8_t *dest, int stride,
;                             int width, int height) {
;  int r, c;
;
;  for (r = 0; r < height; r++) {
;    for (c = 0; c < width; c++)
;      dest[c] = clip_pixel(diff + dest[c]);
;
;    dest += stride;
;  }
;}
;void vp9_add_constant_residual_8x8_c(const int16_t diff, uint8_t *dest,
;                                     int stride) {
;  add_constant_residual(diff, dest, stride, 8, 8);
;}
;       r0      : const int16_t diff
;       r1      : const uint8_t *dest
;       r2      : int stride
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|vp9_add_constant_residual_8x8_neon| PROC
    mov                 r3,         r1                      ; r3: save dest to r3
    vld1.8              {d0},       [r1],       r2
    vld1.8              {d1},       [r1],       r2
    vld1.8              {d2},       [r1],       r2
    vld1.8              {d3},       [r1],       r2
    vld1.8              {d4},       [r1],       r2
    vld1.8              {d5},       [r1],       r2
    vld1.8              {d6},       [r1],       r2
    vld1.8              {d7},       [r1],       r2
    cmp                 r0,         #0
    bge                 DIFF_POSITIVE_8x8

DIFF_NEGATIVE_8x8                                           ; diff < 0
    neg                 r0,         r0
    usat                r0,         #8,         r0
    vdup.u8             q8,         r0

    vqsub.u8            q0,         q0,         q8
    vqsub.u8            q1,         q1,         q8
    vqsub.u8            q2,         q2,         q8
    vqsub.u8            q3,         q3,         q8
    b                   DIFF_SAVE_8x8

DIFF_POSITIVE_8x8                                           ; diff >= 0
    usat                r0,         #8,         r0
    vdup.u8             q8,         r0

    vqadd.u8            q0,         q0,         q8
    vqadd.u8            q1,         q1,         q8
    vqadd.u8            q2,         q2,         q8
    vqadd.u8            q3,         q3,         q8

DIFF_SAVE_8x8
    vst1.8              {d0},       [r3],       r2
    vst1.8              {d1},       [r3],       r2
    vst1.8              {d2},       [r3],       r2
    vst1.8              {d3},       [r3],       r2
    vst1.8              {d4},       [r3],       r2
    vst1.8              {d5},       [r3],       r2
    vst1.8              {d6},       [r3],       r2
    vst1.8              {d7},       [r3],       r2

    bx                  lr
    ENDP

;void vp9_add_constant_residual_16x16_c(const int16_t diff, uint8_t *dest,
;                                       int stride) {
;  add_constant_residual(diff, dest, stride, 16, 16);
;}
;       r0      : const int16_t diff
;       r1      : const uint8_t *dest
;       r2      : int stride
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|vp9_add_constant_residual_16x16_neon| PROC
    mov                 r3,         r1
    LD_16x8             r1,         r2
    cmp                 r0,         #0
    bge                 DIFF_POSITIVE_16x16

|DIFF_NEGATIVE_16x16|
    neg                 r0,         r0
    usat                r0,         #8,         r0
    vdup.u8             q0,         r0

    SUB_DIFF_16x8       q0
    ST_16x8             r3,         r2
    LD_16x8             r1,         r2
    SUB_DIFF_16x8       q0
    b                   DIFF_SAVE_16x16

|DIFF_POSITIVE_16x16|
    usat                r0,         #8,         r0
    vdup.u8             q0,         r0

    ADD_DIFF_16x8       q0
    ST_16x8             r3,         r2
    LD_16x8             r1,         r2
    ADD_DIFF_16x8       q0

|DIFF_SAVE_16x16|
    ST_16x8             r3,         r2
    bx                  lr
    ENDP

;void vp9_add_constant_residual_32x32_c(const int16_t diff, uint8_t *dest,
;                                       int stride) {
;  add_constant_residual(diff, dest, stride, 32, 32);
;}
;       r0      : const int16_t diff
;       r1      : const uint8_t *dest
;       r2      : int stride
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|vp9_add_constant_residual_32x32_neon| PROC
    push                {r4,lr}
    pld                 [r1]
    mov                 r3,         r1
    add                 r4,         r1,         #16         ; r4 dest + 16 for second loop
    cmp                 r0,         #0
    bge                 DIFF_POSITIVE_32x32

|DIFF_NEGATIVE_32x32|
    neg                 r0,         r0
    usat                r0,         #8,         r0
    vdup.u8             q0,         r0
    mov                 r0,         #4

|DIFF_NEGATIVE_32x32_LOOP|
    sub                 r0,         #1
    LD_16x8             r1,         r2
    SUB_DIFF_16x8       q0
    ST_16x8             r3,         r2

    LD_16x8             r1,         r2
    SUB_DIFF_16x8       q0
    ST_16x8             r3,         r2
    cmp                 r0,         #2
    moveq               r1,         r4
    moveq               r3,         r4
    cmp                 r0,         #0
    bne                 DIFF_NEGATIVE_32x32_LOOP
    pop                 {r4,pc}

|DIFF_POSITIVE_32x32|
    usat                r0,         #8,         r0
    vdup.u8             q0,         r0
    mov                 r0,         #4

|DIFF_POSITIVE_32x32_LOOP|
    sub                 r0,         #1
    LD_16x8             r1,         r2
    ADD_DIFF_16x8       q0
    ST_16x8             r3,         r2

    LD_16x8             r1,         r2
    ADD_DIFF_16x8       q0
    ST_16x8             r3,         r2
    cmp                 r0,         #2
    moveq               r1,         r4
    moveq               r3,         r4
    cmp                 r0,         #0
    bne                 DIFF_POSITIVE_32x32_LOOP
    pop                 {r4,pc}
    ENDP

    END