1 /****************************************************************************
2  *                                                                          *
3  *                         GNAT COMPILER COMPONENTS                         *
4  *                                                                          *
5  *                             S I G T R A M P                              *
6  *                                                                          *
7  *                         Asm Implementation File                          *
8  *                                                                          *
9  *         Copyright (C) 2011-2015, Free Software Foundation, Inc.          *
10  *                                                                          *
11  * GNAT is free software;  you can  redistribute it  and/or modify it under *
12  * terms of the  GNU General Public License as published  by the Free Soft- *
13  * ware  Foundation;  either version 3,  or (at your option) any later ver- *
14  * sion.  GNAT is distributed in the hope that it will be useful, but WITH- *
15  * OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY *
16  * or FITNESS FOR A PARTICULAR PURPOSE.                                     *
17  *                                                                          *
18  * As a special exception under Section 7 of GPL version 3, you are granted *
19  * additional permissions described in the GCC Runtime Library Exception,   *
20  * version 3.1, as published by the Free Software Foundation.               *
21  *                                                                          *
22  * In particular,  you can freely  distribute your programs  built with the *
23  * GNAT Pro compiler, including any required library run-time units,  using *
24  * any licensing terms  of your choosing.  See the AdaCore Software License *
25  * for full details.                                                        *
26  *                                                                          *
27  * GNAT was originally developed  by the GNAT team at  New York University. *
28  * Extensive contributions were provided by Ada Core Technologies Inc.      *
29  *                                                                          *
30  ****************************************************************************/
31 
32 /********************************************************
33  * VxWorks VXSIM version of the __gnat_sigtramp service *
34  ********************************************************/
35 
36 #undef CPU
37 #define CPU __VXSIM_CPU__
38 
39 #include "sigtramp.h"
40 /* See sigtramp.h for a general explanation of functionality.  */
41 
42 #include <vxWorks.h>
43 #include <arch/../regs.h>
44 #ifndef __RTP__
45 #include <sigLib.h>
46 #else
47 #include <signal.h>
48 #include <regs.h>
49 
50 typedef struct mcontext
51   {
52     REG_SET     regs;
53   } mcontext_t;
54 
55 typedef struct ucontext
56   {
57     mcontext_t          uc_mcontext;    /* register set */
58     struct ucontext *   uc_link;        /* not used */
59     sigset_t            uc_sigmask;     /* set of signals blocked */
60     stack_t             uc_stack;       /* stack of context signaled */
61   } ucontext_t;
62 #endif
63 
64 /* ----------------------
65    -- General comments --
66    ----------------------
67 
68    Stubs are generated from toplevel asms and .cfi directives, much simpler
69    to use and check for correctness than manual encodings of CFI byte
70    sequences.  The general idea is to establish CFA as sigcontext->sc_pregs
71    (for DKM) and mcontext (for RTP) and state where to find the registers as
72    offsets from there.
73 
74    As of today, we support a stub providing CFI info for common
75    registers (GPRs, LR, ...). We might need variants with support for floating
76    point or altivec registers as well at some point.
77 
78    Checking which variant should apply and getting at sc_pregs / mcontext
79    is simpler to express in C (we can't use offsetof in toplevel asms and
80    hardcoding constants is not workable with the flurry of VxWorks variants),
81    so this is the choice for our toplevel interface.
82 
83    Note that the registers we "restore" here are those to which we have
84    direct access through the system sigcontext structure, which includes
85    only a partial set of the non-volatiles ABI-wise.  */
86 
87 /* -------------------------------------------
88    -- Prototypes for our internal asm stubs --
89    -------------------------------------------
90 
91    Eventhough our symbols will remain local, the prototype claims "extern"
92    and not "static" to prevent compiler complaints about a symbol used but
93    never defined.  */
94 
95 /* sigtramp stub providing CFI info for common registers.  */
96 
97 extern void __gnat_sigtramp_vxsim_common
98 (int signo, void *siginfo, void *sigcontext,
99  __sigtramphandler_t * handler, void * sc_pregs);
100 
101 
102 /* -------------------------------------
103    -- Common interface implementation --
104    -------------------------------------
105 
106    We enforce optimization to minimize the overhead of the extra layer.  */
107 
108 void __gnat_sigtramp_vxsim (int signo, void *si, void *sc,
109 		      __sigtramphandler_t * handler)
110      __attribute__((optimize(2)));
111 
__gnat_sigtramp_vxsim(int signo,void * si,void * sc,__sigtramphandler_t * handler)112 void __gnat_sigtramp_vxsim (int signo, void *si, void *sc,
113 		      __sigtramphandler_t * handler)
114 {
115 #ifdef __RTP__
116   mcontext_t *mcontext = &((ucontext_t *) sc)->uc_mcontext;
117 
118   /* Pass MCONTEXT in the fifth position so that the assembly code can find
119      it at the same stack location or in the same register as SC_PREGS.  */
120   __gnat_sigtramp_vxsim_common (signo, si, mcontext, handler, mcontext);
121 #else
122   struct sigcontext * sctx = (struct sigcontext *) sc;
123 
124   __gnat_sigtramp_vxsim_common (signo, si, sctx, handler, sctx->sc_pregs);
125 #endif
126 }
127 
128 /* Include the target specific bits.  */
129 #include "sigtramp-vxworks-target.inc"
130 
131 /* sigtramp stub for common registers.  */
132 
133 #define TRAMP_COMMON __gnat_sigtramp_vxsim_common
134 
135 asm (SIGTRAMP_START(TRAMP_COMMON));
136 asm (CFI_DEF_CFA);
137 asm (CFI_COMMON_REGS);
138 asm (SIGTRAMP_BODY);
139 asm (SIGTRAMP_END(TRAMP_COMMON));
140 
141 
142