| OLD | NEW |
| 1 ; Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 ; Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 ; Use of this source code is governed by a BSD-style license that can be | 2 ; Use of this source code is governed by a BSD-style license that can be |
| 3 ; found in the LICENSE file. | 3 ; found in the LICENSE file. |
| 4 | 4 |
| 5 global mangle(SYMBOL) PRIVATE | 5 %include "media/base/simd/media_export.inc" |
| 6 |
| 7 EXPORT SYMBOL |
| 6 align function_align | 8 align function_align |
| 7 | 9 |
| 8 ; Non-PIC code is the fastest so use this if possible. | 10 ; Non-PIC code is the fastest so use this if possible. |
| 9 %ifndef PIC | 11 %ifndef PIC |
| 10 mangle(SYMBOL): | 12 mangle(SYMBOL): |
| 11 %assign stack_offset 0 | 13 %assign stack_offset 0 |
| 12 PROLOGUE 6, 7, 3, Y, U, V, A, ARGB, WIDTH, TEMP | 14 PROLOGUE 6, 7, 3, Y, U, V, A, ARGB, WIDTH, TEMP |
| 13 extern mangle(kCoefficientsRgbY) | 15 extern mangle(kCoefficientsRgbY) |
| 14 jmp .convertend | 16 jmp .convertend |
| 15 | 17 |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 pmullw mm1, mm0 | 167 pmullw mm1, mm0 |
| 166 psrlw mm1, 8 | 168 psrlw mm1, 8 |
| 167 packuswb mm1, mm1 | 169 packuswb mm1, mm1 |
| 168 | 170 |
| 169 movd [ARGBq], mm1 | 171 movd [ARGBq], mm1 |
| 170 | 172 |
| 171 .convertdone: | 173 .convertdone: |
| 172 POP TABLEq | 174 POP TABLEq |
| 173 RET | 175 RET |
| 174 %endif | 176 %endif |
| OLD | NEW |