annotate gcc/ada/libgnat/s-stchop__rtems.adb @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children 1830386684a0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 ------------------------------------------------------------------------------
kono
parents:
diff changeset
2 -- --
kono
parents:
diff changeset
3 -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
kono
parents:
diff changeset
4 -- --
kono
parents:
diff changeset
5 -- S Y S T E M . S T A C K _ C H E C K I N G . O P E R A T I O N S --
kono
parents:
diff changeset
6 -- --
kono
parents:
diff changeset
7 -- B o d y --
kono
parents:
diff changeset
8 -- --
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
9 -- Copyright (C) 1999-2018, Free Software Foundation, Inc. --
111
kono
parents:
diff changeset
10 -- --
kono
parents:
diff changeset
11 -- GNARL is free software; you can redistribute it and/or modify it under --
kono
parents:
diff changeset
12 -- terms of the GNU General Public License as published by the Free Soft- --
kono
parents:
diff changeset
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
kono
parents:
diff changeset
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
kono
parents:
diff changeset
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
kono
parents:
diff changeset
16 -- or FITNESS FOR A PARTICULAR PURPOSE. --
kono
parents:
diff changeset
17 -- --
kono
parents:
diff changeset
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
kono
parents:
diff changeset
19 -- additional permissions described in the GCC Runtime Library Exception, --
kono
parents:
diff changeset
20 -- version 3.1, as published by the Free Software Foundation. --
kono
parents:
diff changeset
21 -- --
kono
parents:
diff changeset
22 -- You should have received a copy of the GNU General Public License and --
kono
parents:
diff changeset
23 -- a copy of the GCC Runtime Library Exception along with this program; --
kono
parents:
diff changeset
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
kono
parents:
diff changeset
25 -- <http://www.gnu.org/licenses/>. --
kono
parents:
diff changeset
26 -- --
kono
parents:
diff changeset
27 -- GNARL was developed by the GNARL team at Florida State University. --
kono
parents:
diff changeset
28 -- Extensive contributions were provided by Ada Core Technologies, Inc. --
kono
parents:
diff changeset
29 -- --
kono
parents:
diff changeset
30 ------------------------------------------------------------------------------
kono
parents:
diff changeset
31
kono
parents:
diff changeset
32 -- This is the RTEMS version of this package.
kono
parents:
diff changeset
33 -- This file should be kept synchronized with the general implementation
kono
parents:
diff changeset
34 -- provided by s-stchop.adb.
kono
parents:
diff changeset
35
kono
parents:
diff changeset
36 pragma Restrictions (No_Elaboration_Code);
kono
parents:
diff changeset
37 -- We want to guarantee the absence of elaboration code because the
kono
parents:
diff changeset
38 -- binder does not handle references to this package.
kono
parents:
diff changeset
39
kono
parents:
diff changeset
40 with Ada.Exceptions;
kono
parents:
diff changeset
41
kono
parents:
diff changeset
42 with Interfaces.C; use Interfaces.C;
kono
parents:
diff changeset
43
kono
parents:
diff changeset
44 package body System.Stack_Checking.Operations is
kono
parents:
diff changeset
45
kono
parents:
diff changeset
46 ----------------------------
kono
parents:
diff changeset
47 -- Invalidate_Stack_Cache --
kono
parents:
diff changeset
48 ----------------------------
kono
parents:
diff changeset
49
kono
parents:
diff changeset
50 procedure Invalidate_Stack_Cache (Any_Stack : Stack_Access) is
kono
parents:
diff changeset
51 pragma Warnings (Off, Any_Stack);
kono
parents:
diff changeset
52 begin
kono
parents:
diff changeset
53 Cache := Null_Stack;
kono
parents:
diff changeset
54 end Invalidate_Stack_Cache;
kono
parents:
diff changeset
55
kono
parents:
diff changeset
56 -----------------------------
kono
parents:
diff changeset
57 -- Notify_Stack_Attributes --
kono
parents:
diff changeset
58 -----------------------------
kono
parents:
diff changeset
59
kono
parents:
diff changeset
60 procedure Notify_Stack_Attributes
kono
parents:
diff changeset
61 (Initial_SP : System.Address;
kono
parents:
diff changeset
62 Size : System.Storage_Elements.Storage_Offset)
kono
parents:
diff changeset
63 is
kono
parents:
diff changeset
64
kono
parents:
diff changeset
65 -- RTEMS keeps all the information we need.
kono
parents:
diff changeset
66
kono
parents:
diff changeset
67 pragma Unreferenced (Size);
kono
parents:
diff changeset
68 pragma Unreferenced (Initial_SP);
kono
parents:
diff changeset
69
kono
parents:
diff changeset
70 begin
kono
parents:
diff changeset
71 null;
kono
parents:
diff changeset
72 end Notify_Stack_Attributes;
kono
parents:
diff changeset
73
kono
parents:
diff changeset
74 -----------------
kono
parents:
diff changeset
75 -- Stack_Check --
kono
parents:
diff changeset
76 -----------------
kono
parents:
diff changeset
77
kono
parents:
diff changeset
78 function Stack_Check
kono
parents:
diff changeset
79 (Stack_Address : System.Address) return Stack_Access
kono
parents:
diff changeset
80 is
kono
parents:
diff changeset
81 pragma Unreferenced (Stack_Address);
kono
parents:
diff changeset
82
kono
parents:
diff changeset
83 -- RTEMS has a routine to check if the stack is blown.
kono
parents:
diff changeset
84 -- It returns a C99 bool.
kono
parents:
diff changeset
85 function rtems_stack_checker_is_blown return Interfaces.C.unsigned_char;
kono
parents:
diff changeset
86 pragma Import (C,
kono
parents:
diff changeset
87 rtems_stack_checker_is_blown, "rtems_stack_checker_is_blown");
kono
parents:
diff changeset
88
kono
parents:
diff changeset
89 begin
kono
parents:
diff changeset
90 -- RTEMS has a routine to check this. So use it.
kono
parents:
diff changeset
91
kono
parents:
diff changeset
92 if rtems_stack_checker_is_blown /= 0 then
kono
parents:
diff changeset
93 Ada.Exceptions.Raise_Exception
kono
parents:
diff changeset
94 (E => Storage_Error'Identity,
kono
parents:
diff changeset
95 Message => "stack overflow detected");
kono
parents:
diff changeset
96 end if;
kono
parents:
diff changeset
97
kono
parents:
diff changeset
98 return null;
kono
parents:
diff changeset
99
kono
parents:
diff changeset
100 end Stack_Check;
kono
parents:
diff changeset
101
kono
parents:
diff changeset
102 ------------------------
kono
parents:
diff changeset
103 -- Update_Stack_Cache --
kono
parents:
diff changeset
104 ------------------------
kono
parents:
diff changeset
105
kono
parents:
diff changeset
106 procedure Update_Stack_Cache (Stack : Stack_Access) is
kono
parents:
diff changeset
107 begin
kono
parents:
diff changeset
108 if not Multi_Processor then
kono
parents:
diff changeset
109 Cache := Stack;
kono
parents:
diff changeset
110 end if;
kono
parents:
diff changeset
111 end Update_Stack_Cache;
kono
parents:
diff changeset
112
kono
parents:
diff changeset
113 end System.Stack_Checking.Operations;