Implement -mmemcpy-strategy= and -mmemset-strategy= options
[official-gcc.git] / gcc / ada / s-crtl.ads
blob390f47e02dfb519cd12eb21a00b4a9a09976702c
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT RUN-TIME COMPONENTS --
4 -- --
5 -- S Y S T E M . C R T L --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 2003-2013, 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 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
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 ------------------------------------------------------------------------------
32 -- This package provides the low level interface to the C runtime library
34 pragma Compiler_Unit;
36 with System.Parameters;
38 package System.CRTL is
39 pragma Preelaborate;
41 subtype chars is System.Address;
42 -- Pointer to null-terminated array of characters
43 -- Should use Interfaces.C.Strings types instead, but this causes bootstrap
44 -- issues as i-c contains Ada 2005 specific features, not compatible with
45 -- older, Ada 95-only base compilers???
47 subtype DIRs is System.Address;
48 -- Corresponds to the C type DIR*
50 subtype FILEs is System.Address;
51 -- Corresponds to the C type FILE*
53 subtype int is Integer;
55 type long is range -(2 ** (System.Parameters.long_bits - 1))
56 .. +(2 ** (System.Parameters.long_bits - 1)) - 1;
58 subtype off_t is Long_Integer;
60 type size_t is mod 2 ** Standard'Address_Size;
62 type ssize_t is range -(2 ** (Standard'Address_Size - 1))
63 .. +(2 ** (Standard'Address_Size - 1)) - 1;
65 type Filename_Encoding is (UTF8, ASCII_8bits, Unspecified);
66 for Filename_Encoding use (UTF8 => 0, ASCII_8bits => 1, Unspecified => 2);
67 pragma Convention (C, Filename_Encoding);
68 -- Describes the filename's encoding
70 function atoi (A : System.Address) return Integer;
71 pragma Import (C, atoi, "atoi");
73 procedure clearerr (stream : FILEs);
74 pragma Import (C, clearerr, "clearerr");
76 function dup (handle : int) return int;
77 pragma Import (C, dup, "dup");
79 function dup2 (from, to : int) return int;
80 pragma Import (C, dup2, "dup2");
82 function fclose (stream : FILEs) return int;
83 pragma Import (C, fclose, "fclose");
85 function fdopen (handle : int; mode : chars) return FILEs;
86 pragma Import (C, fdopen, "fdopen");
88 function fflush (stream : FILEs) return int;
89 pragma Import (C, fflush, "fflush");
91 function fgetc (stream : FILEs) return int;
92 pragma Import (C, fgetc, "fgetc");
94 function fgets (strng : chars; n : int; stream : FILEs) return chars;
95 pragma Import (C, fgets, "fgets");
97 function fopen
98 (filename : chars;
99 mode : chars;
100 encoding : Filename_Encoding := Unspecified;
101 vms_form : chars := System.Null_Address) return FILEs;
102 pragma Import (C, fopen, "__gnat_fopen");
104 function fputc (C : int; stream : FILEs) return int;
105 pragma Import (C, fputc, "fputc");
107 function fputs (Strng : chars; Stream : FILEs) return int;
108 pragma Import (C, fputs, "fputs");
110 procedure free (Ptr : System.Address);
111 pragma Import (C, free, "free");
113 function freopen
114 (filename : chars;
115 mode : chars;
116 stream : FILEs;
117 encoding : Filename_Encoding := Unspecified;
118 vms_form : chars := System.Null_Address) return FILEs;
119 pragma Import (C, freopen, "__gnat_freopen");
121 function fseek
122 (stream : FILEs;
123 offset : long;
124 origin : int) return int;
125 pragma Import (C, fseek, "fseek");
127 function fseek64
128 (stream : FILEs;
129 offset : ssize_t;
130 origin : int) return int;
131 pragma Import (C, fseek64, "__gnat_fseek64");
133 function ftell (stream : FILEs) return long;
134 pragma Import (C, ftell, "ftell");
136 function ftell64 (stream : FILEs) return ssize_t;
137 pragma Import (C, ftell64, "__gnat_ftell64");
139 function getenv (S : String) return System.Address;
140 pragma Import (C, getenv, "getenv");
142 function isatty (handle : int) return int;
143 pragma Import (C, isatty, "isatty");
145 function lseek (fd : int; offset : off_t; direction : int) return off_t;
146 pragma Import (C, lseek, "lseek");
148 function malloc (Size : size_t) return System.Address;
149 pragma Import (C, malloc, "malloc");
151 procedure memcpy (S1 : System.Address; S2 : System.Address; N : size_t);
152 pragma Import (C, memcpy, "memcpy");
154 procedure memmove (S1 : System.Address; S2 : System.Address; N : size_t);
155 pragma Import (C, memmove, "memmove");
157 procedure mktemp (template : chars);
158 pragma Import (C, mktemp, "mktemp");
160 function pclose (stream : System.Address) return int;
161 pragma Import (C, pclose, "pclose");
163 function popen (command, mode : System.Address) return System.Address;
164 pragma Import (C, popen, "popen");
166 function realloc
167 (Ptr : System.Address; Size : size_t) return System.Address;
168 pragma Import (C, realloc, "realloc");
170 procedure rewind (stream : FILEs);
171 pragma Import (C, rewind, "rewind");
173 function rmdir (dir_name : String) return int;
174 pragma Import (C, rmdir, "__gnat_rmdir");
176 function chdir (dir_name : String) return int;
177 pragma Import (C, chdir, "__gnat_chdir");
179 function mkdir
180 (dir_name : String;
181 encoding : Filename_Encoding := Unspecified) return int;
182 pragma Import (C, mkdir, "__gnat_mkdir");
184 function setvbuf
185 (stream : FILEs;
186 buffer : chars;
187 mode : int;
188 size : size_t) return int;
189 pragma Import (C, setvbuf, "setvbuf");
191 procedure tmpnam (str : chars);
192 pragma Import (C, tmpnam, "tmpnam");
194 function tmpfile return FILEs;
195 pragma Import (C, tmpfile, "tmpfile");
197 function ungetc (c : int; stream : FILEs) return int;
198 pragma Import (C, ungetc, "ungetc");
200 function unlink (filename : chars) return int;
201 pragma Import (C, unlink, "__gnat_unlink");
203 function open (filename : chars; oflag : int) return int;
204 pragma Import (C, open, "open");
206 function close (fd : int) return int;
207 pragma Import (C, close, "close");
209 function read (fd : int; buffer : chars; count : size_t) return ssize_t;
210 pragma Import (C, read, "read");
212 function write (fd : int; buffer : chars; count : size_t) return ssize_t;
213 pragma Import (C, write, "write");
215 end System.CRTL;