Implement -mmemcpy-strategy= and -mmemset-strategy= options
[official-gcc.git] / gcc / ada / s-vaflop.adb
blobac50817c8d71354cf5329f9715da724a0dea1a22
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT RUN-TIME COMPONENTS --
4 -- --
5 -- S Y S T E M . V A X _ F L O A T _ O P E R A T I O N S --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1997-2012, 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 a dummy body for use on non-Alpha systems so that the library
33 -- can compile. This dummy version uses ordinary conversions and other
34 -- arithmetic operations. It is used only for testing purposes in the
35 -- case where the -gnatdm switch is used to force testing of VMS features
36 -- on non-VMS systems.
38 with System.IO;
40 package body System.Vax_Float_Operations is
41 pragma Warnings (Off);
42 -- Warnings about infinite recursion when the -gnatdm switch is used
44 -----------
45 -- Abs_F --
46 -----------
48 function Abs_F (X : F) return F is
49 begin
50 return abs X;
51 end Abs_F;
53 -----------
54 -- Abs_G --
55 -----------
57 function Abs_G (X : G) return G is
58 begin
59 return abs X;
60 end Abs_G;
62 -----------
63 -- Add_F --
64 -----------
66 function Add_F (X, Y : F) return F is
67 begin
68 return X + Y;
69 end Add_F;
71 -----------
72 -- Add_G --
73 -----------
75 function Add_G (X, Y : G) return G is
76 begin
77 return X + Y;
78 end Add_G;
80 ------------
81 -- D_To_G --
82 ------------
84 function D_To_G (X : D) return G is
85 begin
86 return G (X);
87 end D_To_G;
89 --------------------
90 -- Debug_Output_D --
91 --------------------
93 procedure Debug_Output_D (Arg : D) is
94 begin
95 System.IO.Put (D'Image (Arg));
96 end Debug_Output_D;
98 --------------------
99 -- Debug_Output_F --
100 --------------------
102 procedure Debug_Output_F (Arg : F) is
103 begin
104 System.IO.Put (F'Image (Arg));
105 end Debug_Output_F;
107 --------------------
108 -- Debug_Output_G --
109 --------------------
111 procedure Debug_Output_G (Arg : G) is
112 begin
113 System.IO.Put (G'Image (Arg));
114 end Debug_Output_G;
116 --------------------
117 -- Debug_String_D --
118 --------------------
120 Debug_String_Buffer : String (1 .. 32);
121 -- Buffer used by all Debug_String_x routines for returning result
123 function Debug_String_D (Arg : D) return System.Address is
124 Image_String : constant String := D'Image (Arg) & ASCII.NUL;
125 Image_Size : constant Integer := Image_String'Length;
127 begin
128 Debug_String_Buffer (1 .. Image_Size) := Image_String;
129 return Debug_String_Buffer (1)'Address;
130 end Debug_String_D;
132 --------------------
133 -- Debug_String_F --
134 --------------------
136 function Debug_String_F (Arg : F) return System.Address is
137 Image_String : constant String := F'Image (Arg) & ASCII.NUL;
138 Image_Size : constant Integer := Image_String'Length;
140 begin
141 Debug_String_Buffer (1 .. Image_Size) := Image_String;
142 return Debug_String_Buffer (1)'Address;
143 end Debug_String_F;
145 --------------------
146 -- Debug_String_G --
147 --------------------
149 function Debug_String_G (Arg : G) return System.Address is
150 Image_String : constant String := G'Image (Arg) & ASCII.NUL;
151 Image_Size : constant Integer := Image_String'Length;
153 begin
154 Debug_String_Buffer (1 .. Image_Size) := Image_String;
155 return Debug_String_Buffer (1)'Address;
156 end Debug_String_G;
158 -----------
159 -- Div_F --
160 -----------
162 function Div_F (X, Y : F) return F is
163 begin
164 return X / Y;
165 end Div_F;
167 -----------
168 -- Div_G --
169 -----------
171 function Div_G (X, Y : G) return G is
172 begin
173 return X / Y;
174 end Div_G;
176 ----------
177 -- Eq_F --
178 ----------
180 function Eq_F (X, Y : F) return Boolean is
181 begin
182 return X = Y;
183 end Eq_F;
185 ----------
186 -- Eq_G --
187 ----------
189 function Eq_G (X, Y : G) return Boolean is
190 begin
191 return X = Y;
192 end Eq_G;
194 ------------
195 -- F_To_G --
196 ------------
198 function F_To_G (X : F) return G is
199 begin
200 return G (X);
201 end F_To_G;
203 ------------
204 -- F_To_Q --
205 ------------
207 function F_To_Q (X : F) return Q is
208 begin
209 return Q (X);
210 end F_To_Q;
212 ------------
213 -- F_To_S --
214 ------------
216 function F_To_S (X : F) return S is
217 begin
218 return S (X);
219 end F_To_S;
221 ------------
222 -- G_To_D --
223 ------------
225 function G_To_D (X : G) return D is
226 begin
227 return D (X);
228 end G_To_D;
230 ------------
231 -- G_To_F --
232 ------------
234 function G_To_F (X : G) return F is
235 begin
236 return F (X);
237 end G_To_F;
239 ------------
240 -- G_To_Q --
241 ------------
243 function G_To_Q (X : G) return Q is
244 begin
245 return Q (X);
246 end G_To_Q;
248 ------------
249 -- G_To_T --
250 ------------
252 function G_To_T (X : G) return T is
253 begin
254 return T (X);
255 end G_To_T;
257 ----------
258 -- Le_F --
259 ----------
261 function Le_F (X, Y : F) return Boolean is
262 begin
263 return X <= Y;
264 end Le_F;
266 ----------
267 -- Le_G --
268 ----------
270 function Le_G (X, Y : G) return Boolean is
271 begin
272 return X <= Y;
273 end Le_G;
275 ----------
276 -- Lt_F --
277 ----------
279 function Lt_F (X, Y : F) return Boolean is
280 begin
281 return X < Y;
282 end Lt_F;
284 ----------
285 -- Lt_G --
286 ----------
288 function Lt_G (X, Y : G) return Boolean is
289 begin
290 return X < Y;
291 end Lt_G;
293 -----------
294 -- Mul_F --
295 -----------
297 function Mul_F (X, Y : F) return F is
298 begin
299 return X * Y;
300 end Mul_F;
302 -----------
303 -- Mul_G --
304 -----------
306 function Mul_G (X, Y : G) return G is
307 begin
308 return X * Y;
309 end Mul_G;
311 ----------
312 -- Ne_F --
313 ----------
315 function Ne_F (X, Y : F) return Boolean is
316 begin
317 return X /= Y;
318 end Ne_F;
320 ----------
321 -- Ne_G --
322 ----------
324 function Ne_G (X, Y : G) return Boolean is
325 begin
326 return X /= Y;
327 end Ne_G;
329 -----------
330 -- Neg_F --
331 -----------
333 function Neg_F (X : F) return F is
334 begin
335 return -X;
336 end Neg_F;
338 -----------
339 -- Neg_G --
340 -----------
342 function Neg_G (X : G) return G is
343 begin
344 return -X;
345 end Neg_G;
347 --------
348 -- pd --
349 --------
351 procedure pd (Arg : D) is
352 begin
353 System.IO.Put_Line (D'Image (Arg));
354 end pd;
356 --------
357 -- pf --
358 --------
360 procedure pf (Arg : F) is
361 begin
362 System.IO.Put_Line (F'Image (Arg));
363 end pf;
365 --------
366 -- pg --
367 --------
369 procedure pg (Arg : G) is
370 begin
371 System.IO.Put_Line (G'Image (Arg));
372 end pg;
374 ------------
375 -- Q_To_F --
376 ------------
378 function Q_To_F (X : Q) return F is
379 begin
380 return F (X);
381 end Q_To_F;
383 ------------
384 -- Q_To_G --
385 ------------
387 function Q_To_G (X : Q) return G is
388 begin
389 return G (X);
390 end Q_To_G;
392 ------------
393 -- S_To_F --
394 ------------
396 function S_To_F (X : S) return F is
397 begin
398 return F (X);
399 end S_To_F;
401 --------------
402 -- Return_D --
403 --------------
405 function Return_D (X : D) return D is
406 begin
407 return X;
408 end Return_D;
410 --------------
411 -- Return_F --
412 --------------
414 function Return_F (X : F) return F is
415 begin
416 return X;
417 end Return_F;
419 --------------
420 -- Return_G --
421 --------------
423 function Return_G (X : G) return G is
424 begin
425 return X;
426 end Return_G;
428 -----------
429 -- Sub_F --
430 -----------
432 function Sub_F (X, Y : F) return F is
433 begin
434 return X - Y;
435 end Sub_F;
437 -----------
438 -- Sub_G --
439 -----------
441 function Sub_G (X, Y : G) return G is
442 begin
443 return X - Y;
444 end Sub_G;
446 ------------
447 -- T_To_D --
448 ------------
450 function T_To_D (X : T) return D is
451 begin
452 return G_To_D (T_To_G (X));
453 end T_To_D;
455 ------------
456 -- T_To_G --
457 ------------
459 function T_To_G (X : T) return G is
460 begin
461 return G (X);
462 end T_To_G;
464 -------------
465 -- Valid_D --
466 -------------
468 -- For now, convert to IEEE and do Valid test on result. This is not quite
469 -- accurate, but is good enough in practice.
471 function Valid_D (Arg : D) return Boolean is
472 Val : constant T := G_To_T (D_To_G (Arg));
473 begin
474 return Val'Valid;
475 end Valid_D;
477 -------------
478 -- Valid_F --
479 -------------
481 -- For now, convert to IEEE and do Valid test on result. This is not quite
482 -- accurate, but is good enough in practice.
484 function Valid_F (Arg : F) return Boolean is
485 Val : constant S := F_To_S (Arg);
486 begin
487 return Val'Valid;
488 end Valid_F;
490 -------------
491 -- Valid_G --
492 -------------
494 -- For now, convert to IEEE and do Valid test on result. This is not quite
495 -- accurate, but is good enough in practice.
497 function Valid_G (Arg : G) return Boolean is
498 Val : constant T := G_To_T (Arg);
499 begin
500 return Val'Valid;
501 end Valid_G;
503 end System.Vax_Float_Operations;