comparison gcc/ada/libgnat/s-excmac__arm.ads @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children 1830386684a0
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
4 -- -- 4 -- --
5 -- S Y S T E M . E X C E P T I O N S . M A C H I N E -- 5 -- S Y S T E M . E X C E P T I O N S . M A C H I N E --
6 -- -- 6 -- --
7 -- S p e c -- 7 -- S p e c --
8 -- -- 8 -- --
9 -- Copyright (C) 2013-2017, Free Software Foundation, Inc. -- 9 -- Copyright (C) 2013-2018, Free Software Foundation, Inc. --
10 -- -- 10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under -- 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- -- 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- -- 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- -- 14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
56 URC_Unused5, 56 URC_Unused5,
57 URC_HANDLER_FOUND, 57 URC_HANDLER_FOUND,
58 URC_INSTALL_CONTEXT, 58 URC_INSTALL_CONTEXT,
59 URC_CONTINUE_UNWIND, 59 URC_CONTINUE_UNWIND,
60 URC_FAILURE); 60 URC_FAILURE);
61 pragma Convention (C, Unwind_Reason_Code);
61 62
62 pragma Unreferenced 63 pragma Unreferenced
63 (URC_OK, 64 (URC_OK,
64 URC_FOREIGN_EXCEPTION_CAUGHT, 65 URC_FOREIGN_EXCEPTION_CAUGHT,
65 URC_Unused2, 66 URC_Unused2,
69 URC_HANDLER_FOUND, 70 URC_HANDLER_FOUND,
70 URC_INSTALL_CONTEXT, 71 URC_INSTALL_CONTEXT,
71 URC_CONTINUE_UNWIND, 72 URC_CONTINUE_UNWIND,
72 URC_FAILURE); 73 URC_FAILURE);
73 74
74 pragma Convention (C, Unwind_Reason_Code); 75 -- ARM Unwinding State
75 subtype Unwind_Action is Unwind_Reason_Code;
76 -- Phase identifiers
77 76
78 type uint32_t is mod 2**32; 77 type uint32_t is mod 2**32;
79 pragma Convention (C, uint32_t); 78 pragma Convention (C, uint32_t);
80 79
81 type uint32_t_array is array (Natural range <>) of uint32_t; 80 type uint32_t_array is array (Natural range <>) of uint32_t;