New upstream version 17.08
[deb_dpdk.git] / examples / performance-thread / common / arch / arm64 / ctx.h
1 /*
2  *   BSD LICENSE
3  *
4  *   Copyright (C) Cavium, Inc. 2017.
5  *
6  *   Redistribution and use in source and binary forms, with or without
7  *   modification, are permitted provided that the following conditions
8  *   are met:
9  *
10  *     * Redistributions of source code must retain the above copyright
11  *       notice, this list of conditions and the following disclaimer.
12  *     * Redistributions in binary form must reproduce the above copyright
13  *       notice, this list of conditions and the following disclaimer in
14  *       the documentation and/or other materials provided with the
15  *       distribution.
16  *     * Neither the name of Cavium, Inc nor the names of its
17  *       contributors may be used to endorse or promote products derived
18  *       from this software without specific prior written permission.
19  *
20  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32
33 #ifndef CTX_H
34 #define CTX_H
35
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39
40 /*
41  * CPU context registers
42  */
43 struct ctx {
44         void    *sp;            /* 0  */
45         void    *fp;            /* 8 */
46         void    *lr;            /* 16  */
47
48         /* Callee Saved Generic Registers */
49         void    *r19;           /* 24 */
50         void    *r20;           /* 32 */
51         void    *r21;           /* 40 */
52         void    *r22;           /* 48 */
53         void    *r23;           /* 56 */
54         void    *r24;           /* 64 */
55         void    *r25;           /* 72 */
56         void    *r26;           /* 80 */
57         void    *r27;           /* 88 */
58         void    *r28;           /* 96 */
59
60         /*
61          * Callee Saved SIMD Registers. Only the bottom 64-bits
62          * of these registers needs to be saved.
63          */
64         void    *v8;            /* 104 */
65         void    *v9;            /* 112 */
66         void    *v10;           /* 120 */
67         void    *v11;           /* 128 */
68         void    *v12;           /* 136 */
69         void    *v13;           /* 144 */
70         void    *v14;           /* 152 */
71         void    *v15;           /* 160 */
72 };
73
74
75 void
76 ctx_switch(struct ctx *new_ctx, struct ctx *curr_ctx);
77
78
79 #ifdef __cplusplus
80 }
81 #endif
82
83 #endif /* RTE_CTX_H_ */