1@ This file was created from a .asm file 2@ using the ads2gas.pl script. 3 .equ DO1STROUNDING, 0 4 .syntax unified 5@ 6@ Copyright (c) 2010 The WebM project authors. All Rights Reserved. 7@ 8@ Use of this source code is governed by a BSD-style license 9@ that can be found in the LICENSE file in the root of the source 10@ tree. An additional intellectual property rights grant can be found 11@ in the file PATENTS. All contributing project authors may 12@ be found in the AUTHORS file in the root of the source tree. 13@ 14 15 16 .global vpx_push_neon 17 .type vpx_push_neon, function 18 .global vpx_pop_neon 19 .type vpx_pop_neon, function 20 21 .arm 22 .eabi_attribute 24, 1 @Tag_ABI_align_needed 23 .eabi_attribute 25, 1 @Tag_ABI_align_preserved 24 25.text 26.p2align 2 27 28_vpx_push_neon: 29 vpx_push_neon: @ PROC 30 vstm r0!, {d8-d15} 31 bx lr 32 33 .size vpx_push_neon, .-vpx_push_neon @ ENDP 34 35_vpx_pop_neon: 36 vpx_pop_neon: @ PROC 37 vldm r0!, {d8-d15} 38 bx lr 39 40 .size vpx_pop_neon, .-vpx_pop_neon @ ENDP 41 42 43 .section .note.GNU-stack,"",%progbits 44