examples/performance-thread: convert license to SPDX tag
[dpdk.git] / examples / performance-thread / common / arch / x86 / stack.h
1 /*   SPDX-License-Identifier: BSD-3-Clause
2  *   Copyright(c) 2015 Intel Corporation.
3  *   Copyright(c) Cavium, Inc. 2017.
4  *   All rights reserved.
5  */
6
7 /*
8  * Some portions of this software is derived from the
9  * https://github.com/halayli/lthread which carrys the following license.
10  *
11  * Copyright (C) 2012, Hasan Alayli <halayli@gmail.com>
12  *
13  * Redistribution and use in source and binary forms, with or without
14  * modification, are permitted provided that the following conditions
15  * are met:
16  * 1. Redistributions of source code must retain the above copyright
17  *    notice, this list of conditions and the following disclaimer.
18  * 2. Redistributions in binary form must reproduce the above copyright
19  *    notice, this list of conditions and the following disclaimer in the
20  *    documentation and/or other materials provided with the distribution.
21  *
22  * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  */
34
35
36 #ifndef STACK_H
37 #define STACK_H
38
39 #ifdef __cplusplus
40 extern "C" {
41 #endif
42
43 #include "lthread_int.h"
44
45 /*
46  * Sets up the initial stack for the lthread.
47  */
48 static inline void
49 arch_set_stack(struct lthread *lt, void *func)
50 {
51         char *stack_top = (char *)(lt->stack) + lt->stack_size;
52         void **s = (void **)stack_top;
53
54         /* set initial context */
55         s[-3] = NULL;
56         s[-2] = (void *)lt;
57         lt->ctx.rsp = (void *)(stack_top - (4 * sizeof(void *)));
58         lt->ctx.rbp = (void *)(stack_top - (3 * sizeof(void *)));
59         lt->ctx.rip = func;
60 }
61
62 #ifdef __cplusplus
63 }
64 #endif
65
66 #endif /* STACK_H_ */