diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2016-04-18 11:57:49 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2016-04-18 11:57:49 +0200 |
commit | 0d66b5969fec023f9aa6c297ba8550f5621cb2ea (patch) | |
tree | 6020598037499e70045bcc3796b5a74b15769ff3 /gcc/ada/sigtramp.h | |
parent | a86c18d9fa6e2444917934fc4b7d5f22f957d51b (diff) | |
download | gcc-0d66b5969fec023f9aa6c297ba8550f5621cb2ea.zip gcc-0d66b5969fec023f9aa6c297ba8550f5621cb2ea.tar.gz gcc-0d66b5969fec023f9aa6c297ba8550f5621cb2ea.tar.bz2 |
[multiple changes]
2016-04-18 Ed Schonberg <schonberg@adacore.com>
* sem_disp.adb (Check_Dispatching_Call): Major rewriting to
handle some complex cases of tag indeterminate calls that are
actuals in other dispatching calls that are themselves tag
indeterminate.
(Check_Dispatching_Context): Add parameter to support recursive
check for an enclosing construct that may provide a tag for a
tag-indeterminate call.
2016-04-18 Hristian Kirtchev <kirtchev@adacore.com>
* sem_prag.adb (Analyze_Depends_In_Decl_Part):
Add global variables Task_Input_Seen and Task_Output_Seen.
(Analyze_Global_Item): Detect an illegal use of the current
instance of a single protected/task type in a global annotation.
(Analyze_Input_Output): Inputs and output related to the current
instance of a task unit are now tracked.
(Check_Usage): Require
the presence of the current instance of a task unit only when
one input/output is available. (Current_Task_Instance_Seen):
New routine.
(Is_CCT_Instance): New parameter profile. Update
the comment on usage. The routine now properly recognizes several
cases related to single protected/task types.
2016-04-18 Hristian Kirtchev <kirtchev@adacore.com>
* freeze.adb (Freeze_Entity): Use New_Freeze_Node
to create a brand new freeze node. This handles a case where an
ignored Ghost context is freezing something which is not ignored
Ghost and whose freeze node should not be removed from the tree.
(New_Freeze_Node): New routine.
2016-04-18 Jerome Lambourg <lambourg@adacore.com>
* sigtramp.h (__gnat_set_is_vxsim) New function to
tell sigtramp-vxworks to handle vxsim signal contexts. *
sigtramp-vxworks.c (__gnat_sigtramp) Take into account the
differences in the sigcontext structure between the expected
regular x86 or x86_64 ones and the ones received in case of
exexution on the vxworks simulator.
* init.c: also compute is_vxsim in case of x86_64-vx7 target. Provide
this information to sigtramp-vxworks.c. Remove the old mechanism for
vxsim.
* init-vxsim.c, sigtramp-vxworks-vxsim.c: remove, now obsolete.
2016-04-18 Eric Botcazou <ebotcazou@adacore.com>
* exp_ch3.adb (Inline_Init_Proc): New function returning
whether the initialization procedure of a type should be
inlined. Return again True for controlled type themselves.
(Build_Array_Init_Proc): Call it to set Set_Is_Inlined on Init_Proc.
(Build_Record_Init_Proc): Likewise.
From-SVN: r235110
Diffstat (limited to 'gcc/ada/sigtramp.h')
-rw-r--r-- | gcc/ada/sigtramp.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gcc/ada/sigtramp.h b/gcc/ada/sigtramp.h index 930365f..7314d6f 100644 --- a/gcc/ada/sigtramp.h +++ b/gcc/ada/sigtramp.h @@ -43,14 +43,15 @@ extern "C" { system headers so call it something unique. */ typedef void __sigtramphandler_t (int signo, void *siginfo, void *sigcontext); -#if defined(__vxworks) && (CPU == SIMNT || CPU == SIMPENTIUM || CPU == SIMLINUX) -/* Vxsim requires a specially compiled handler. */ -extern void __gnat_sigtramp_vxsim (int signo, void *siginfo, void *sigcontext, - __sigtramphandler_t * handler); -#else +/* The vxsim target has a different sigcontext structure than the one we're + compiling the run-time with. We thus need to adjust it in this case */ +#if defined(__vxworks) && (defined (__i386__) || defined (__x86_64__)) && !defined (VTHREADS) +#define __HANDLE_VXSIM_SC +extern void __gnat_set_is_vxsim(int val); +#endif + extern void __gnat_sigtramp (int signo, void *siginfo, void *sigcontext, __sigtramphandler_t * handler); -#endif /* The signal trampoline is to be called from an established signal handler. It sets up the DWARF CFI and calls HANDLER (SIGNO, SIGINFO, SIGCONTEXT). |