Implement -mmemcpy-strategy= and -mmemset-strategy= options
[official-gcc.git] / gcc / ada / i-cstrea-vms.adb
blob85e6f56b31afe5aaa5c148662b5626f90ab962b1
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- I N T E R F A C E S . C _ S T R E A M S --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1996-2009, 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 is the Alpha/VMS version
34 with Ada.Unchecked_Conversion;
35 package body Interfaces.C_Streams is
37 use type System.CRTL.size_t;
39 -- As the functions fread, fwrite and setvbuf are too big to be inlined,
40 -- they are just wrappers to the following implementation functions.
42 function fread_impl
43 (buffer : voids;
44 size : size_t;
45 count : size_t;
46 stream : FILEs) return size_t;
48 function fread_impl
49 (buffer : voids;
50 index : size_t;
51 size : size_t;
52 count : size_t;
53 stream : FILEs) return size_t;
55 function fwrite_impl
56 (buffer : voids;
57 size : size_t;
58 count : size_t;
59 stream : FILEs) return size_t;
61 function setvbuf_impl
62 (stream : FILEs;
63 buffer : chars;
64 mode : int;
65 size : size_t) return int;
67 ------------
68 -- fread --
69 ------------
71 function fread_impl
72 (buffer : voids;
73 size : size_t;
74 count : size_t;
75 stream : FILEs) return size_t
77 Get_Count : size_t := 0;
79 type Buffer_Type is array (size_t range 1 .. count,
80 size_t range 1 .. size) of Character;
81 type Buffer_Access is access Buffer_Type;
82 function To_BA is new Ada.Unchecked_Conversion (voids, Buffer_Access);
84 BA : constant Buffer_Access := To_BA (buffer);
85 Ch : int;
87 begin
88 -- This Fread goes with the Fwrite below. The C library fread sometimes
89 -- can't read fputc generated files.
91 for C in 1 .. count loop
92 for S in 1 .. size loop
93 Ch := fgetc (stream);
95 if Ch = EOF then
96 return Get_Count;
97 end if;
99 BA.all (C, S) := Character'Val (Ch);
100 end loop;
102 Get_Count := Get_Count + 1;
103 end loop;
105 return Get_Count;
106 end fread_impl;
108 function fread_impl
109 (buffer : voids;
110 index : size_t;
111 size : size_t;
112 count : size_t;
113 stream : FILEs) return size_t
115 Get_Count : size_t := 0;
117 type Buffer_Type is array (size_t range 1 .. count,
118 size_t range 1 .. size) of Character;
119 type Buffer_Access is access Buffer_Type;
120 function To_BA is new Ada.Unchecked_Conversion (voids, Buffer_Access);
122 BA : constant Buffer_Access := To_BA (buffer);
123 Ch : int;
125 begin
126 -- This Fread goes with the Fwrite below. The C library fread sometimes
127 -- can't read fputc generated files.
129 for C in 1 + index .. count + index loop
130 for S in 1 .. size loop
131 Ch := fgetc (stream);
133 if Ch = EOF then
134 return Get_Count;
135 end if;
137 BA.all (C, S) := Character'Val (Ch);
138 end loop;
140 Get_Count := Get_Count + 1;
141 end loop;
143 return Get_Count;
144 end fread_impl;
146 function fread
147 (buffer : voids;
148 size : size_t;
149 count : size_t;
150 stream : FILEs) return size_t
152 begin
153 return fread_impl (buffer, size, count, stream);
154 end fread;
156 function fread
157 (buffer : voids;
158 index : size_t;
159 size : size_t;
160 count : size_t;
161 stream : FILEs) return size_t
163 begin
164 return fread_impl (buffer, index, size, count, stream);
165 end fread;
167 ------------
168 -- fwrite --
169 ------------
171 function fwrite_impl
172 (buffer : voids;
173 size : size_t;
174 count : size_t;
175 stream : FILEs) return size_t
177 Put_Count : size_t := 0;
179 type Buffer_Type is array (size_t range 1 .. count,
180 size_t range 1 .. size) of Character;
181 type Buffer_Access is access Buffer_Type;
182 function To_BA is new Ada.Unchecked_Conversion (voids, Buffer_Access);
184 BA : constant Buffer_Access := To_BA (buffer);
186 begin
187 -- Fwrite on VMS has the undesirable effect of always generating at
188 -- least one record of output per call, regardless of buffering. To
189 -- get around this, we do multiple fputc calls instead.
191 for C in 1 .. count loop
192 for S in 1 .. size loop
193 if fputc (Character'Pos (BA.all (C, S)), stream) = EOF then
194 return Put_Count;
195 end if;
196 end loop;
198 Put_Count := Put_Count + 1;
199 end loop;
201 return Put_Count;
202 end fwrite_impl;
204 function fwrite
205 (buffer : voids;
206 size : size_t;
207 count : size_t;
208 stream : FILEs) return size_t
210 begin
211 return fwrite_impl (buffer, size, count, stream);
212 end fwrite;
214 -------------
215 -- setvbuf --
216 -------------
218 function setvbuf_impl
219 (stream : FILEs;
220 buffer : chars;
221 mode : int;
222 size : size_t) return int
224 use type System.Address;
226 begin
227 -- In order for the above fwrite hack to work, we must always buffer
228 -- stdout and stderr. Is_regular_file on VMS cannot detect when
229 -- these are redirected to a file, so checking for that condition
230 -- doesn't help.
232 if mode = IONBF
233 and then (stream = stdout or else stream = stderr)
234 then
235 return System.CRTL.setvbuf
236 (stream, buffer, IOLBF, System.CRTL.size_t (size));
237 else
238 return System.CRTL.setvbuf
239 (stream, buffer, mode, System.CRTL.size_t (size));
240 end if;
241 end setvbuf_impl;
243 function setvbuf
244 (stream : FILEs;
245 buffer : chars;
246 mode : int;
247 size : size_t) return int
249 begin
250 return setvbuf_impl (stream, buffer, mode, size);
251 end setvbuf;
253 end Interfaces.C_Streams;