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