setjmp.S revision 1.1.1.1.6.2 1 1.1.1.1.6.2 christos /* $NetBSD: setjmp.S,v 1.1.1.1.6.2 2019/06/10 22:08:36 christos Exp $ */
2 1.1.1.1.6.2 christos
3 1.1.1.1.6.2 christos /*
4 1.1.1.1.6.2 christos * Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.
5 1.1.1.1.6.2 christos * This program and the accompanying materials are licensed and made
6 1.1.1.1.6.2 christos * available under the terms and conditions of the BSD License which
7 1.1.1.1.6.2 christos * accompanies this distribution. The full text of the license may
8 1.1.1.1.6.2 christos * be found at http://opensource.org/licenses/bsd-license.php.
9 1.1.1.1.6.2 christos *
10 1.1.1.1.6.2 christos * THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS"
11 1.1.1.1.6.2 christos * BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER
12 1.1.1.1.6.2 christos * EXPRESS OR IMPLIED.
13 1.1.1.1.6.2 christos */
14 1.1.1.1.6.2 christos .text
15 1.1.1.1.6.2 christos .arm
16 1.1.1.1.6.2 christos .globl setjmp
17 1.1.1.1.6.2 christos .type setjmp, %function
18 1.1.1.1.6.2 christos setjmp:
19 1.1.1.1.6.2 christos mov r3, r13
20 1.1.1.1.6.2 christos stmia r0, {r3-r12,r14}
21 1.1.1.1.6.2 christos eor r0, r0, r0
22 1.1.1.1.6.2 christos bx lr
23 1.1.1.1.6.2 christos
24 1.1.1.1.6.2 christos .globl longjmp
25 1.1.1.1.6.2 christos .type longjmp, %function
26 1.1.1.1.6.2 christos longjmp:
27 1.1.1.1.6.2 christos ldmia r0, {r3-r12,r14}
28