PR fortran/42131 Sign test using ternary operator
[official-gcc.git] / libgfortran / libgfortran.h
blobbba95f7c7813263093cb294abb440728d487f7bd
1 /* Common declarations for all of libgfortran.
2 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
3 Free Software Foundation, Inc.
4 Contributed by Paul Brook <paul@nowt.org>, and
5 Andy Vaught <andy@xena.eas.asu.edu>
7 This file is part of the GNU Fortran 95 runtime library (libgfortran).
9 Libgfortran is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
12 any later version.
14 Libgfortran is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 Under Section 7 of GPL version 3, you are granted additional
20 permissions described in the GCC Runtime Library Exception, version
21 3.1, as published by the Free Software Foundation.
23 You should have received a copy of the GNU General Public License and
24 a copy of the GCC Runtime Library Exception along with this program;
25 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
26 <http://www.gnu.org/licenses/>. */
28 #ifndef LIBGFOR_H
29 #define LIBGFOR_H
31 /* config.h MUST be first because it can affect system headers. */
32 #include "config.h"
34 #include <stdio.h>
35 #include <math.h>
36 #include <stddef.h>
37 #include <float.h>
38 #include <stdarg.h>
40 #if HAVE_COMPLEX_H
41 # include <complex.h>
42 #else
43 #define complex __complex__
44 #endif
46 #include "../gcc/fortran/libgfortran.h"
48 #include "c99_protos.h"
50 #if HAVE_IEEEFP_H
51 #include <ieeefp.h>
52 #endif
54 #include "gstdint.h"
56 #if HAVE_SYS_TYPES_H
57 #include <sys/types.h>
58 #endif
59 typedef off_t gfc_offset;
61 #ifndef NULL
62 #define NULL (void *) 0
63 #endif
65 #ifndef __GNUC__
66 #define __attribute__(x)
67 #define likely(x) (x)
68 #define unlikely(x) (x)
69 #else
70 #define likely(x) __builtin_expect(!!(x), 1)
71 #define unlikely(x) __builtin_expect(!!(x), 0)
72 #endif
75 /* We use intptr_t and uintptr_t, which may not be always defined in
76 system headers. */
78 #ifndef HAVE_INTPTR_T
79 #if __SIZEOF_POINTER__ == __SIZEOF_LONG__
80 #define intptr_t long
81 #elif __SIZEOF_POINTER__ == __SIZEOF_LONG_LONG__
82 #define intptr_t long long
83 #elif __SIZEOF_POINTER__ == __SIZEOF_INT__
84 #define intptr_t int
85 #elif __SIZEOF_POINTER__ == __SIZEOF_SHORT__
86 #define intptr_t short
87 #else
88 #error "Pointer type with unexpected size"
89 #endif
90 #endif
92 #ifndef HAVE_UINTPTR_T
93 #if __SIZEOF_POINTER__ == __SIZEOF_LONG__
94 #define uintptr_t unsigned long
95 #elif __SIZEOF_POINTER__ == __SIZEOF_LONG_LONG__
96 #define uintptr_t unsigned long long
97 #elif __SIZEOF_POINTER__ == __SIZEOF_INT__
98 #define uintptr_t unsigned int
99 #elif __SIZEOF_POINTER__ == __SIZEOF_SHORT__
100 #define uintptr_t unsigned short
101 #else
102 #error "Pointer type with unexpected size"
103 #endif
104 #endif
107 /* On mingw, work around the buggy Windows snprintf() by using the one
108 mingw provides, __mingw_snprintf(). We also provide a prototype for
109 __mingw_snprintf(), because the mingw headers currently don't have one. */
110 #if HAVE_MINGW_SNPRINTF
111 extern int __mingw_snprintf (char *, size_t, const char *, ...)
112 __attribute__ ((format (gnu_printf, 3, 4)));
113 #undef snprintf
114 #define snprintf __mingw_snprintf
115 #endif
118 /* For a library, a standard prefix is a requirement in order to partition
119 the namespace. IPREFIX is for symbols intended to be internal to the
120 library. */
121 #define PREFIX(x) _gfortran_ ## x
122 #define IPREFIX(x) _gfortrani_ ## x
124 /* Magic to rename a symbol at the compiler level. You continue to refer
125 to the symbol as OLD in the source, but it'll be named NEW in the asm. */
126 #define sym_rename(old, new) sym_rename1(old, __USER_LABEL_PREFIX__, new)
127 #define sym_rename1(old, ulp, new) sym_rename2(old, ulp, new)
128 #define sym_rename2(old, ulp, new) extern __typeof(old) old __asm__(#ulp #new)
130 /* There are several classifications of routines:
132 (1) Symbols used only within the library,
133 (2) Symbols to be exported from the library,
134 (3) Symbols to be exported from the library, but
135 also used inside the library.
137 By telling the compiler about these different classifications we can
138 tightly control the interface seen by the user, and get better code
139 from the compiler at the same time.
141 One of the following should be used immediately after the declaration
142 of each symbol:
144 internal_proto Marks a symbol used only within the library,
145 and adds IPREFIX to the assembly-level symbol
146 name. The later is important for maintaining
147 the namespace partition for the static library.
149 export_proto Marks a symbol to be exported, and adds PREFIX
150 to the assembly-level symbol name.
152 export_proto_np Marks a symbol to be exported without adding PREFIX.
154 iexport_proto Marks a function to be exported, but with the
155 understanding that it can be used inside as well.
157 iexport_data_proto Similarly, marks a data symbol to be exported.
158 Unfortunately, some systems can't play the hidden
159 symbol renaming trick on data symbols, thanks to
160 the horribleness of COPY relocations.
162 If iexport_proto or iexport_data_proto is used, you must also use
163 iexport or iexport_data after the *definition* of the symbol. */
165 #if defined(HAVE_ATTRIBUTE_VISIBILITY)
166 # define internal_proto(x) \
167 sym_rename(x, IPREFIX (x)) __attribute__((__visibility__("hidden")))
168 #else
169 # define internal_proto(x) sym_rename(x, IPREFIX(x))
170 #endif
172 #if defined(HAVE_ATTRIBUTE_VISIBILITY) && defined(HAVE_ATTRIBUTE_ALIAS)
173 # define export_proto(x) sym_rename(x, PREFIX(x))
174 # define export_proto_np(x) extern char swallow_semicolon
175 # define iexport_proto(x) internal_proto(x)
176 # define iexport(x) iexport1(x, IPREFIX(x))
177 # define iexport1(x,y) iexport2(x,y)
178 # define iexport2(x,y) \
179 extern __typeof(x) PREFIX(x) __attribute__((__alias__(#y)))
180 #else
181 # define export_proto(x) sym_rename(x, PREFIX(x))
182 # define export_proto_np(x) extern char swallow_semicolon
183 # define iexport_proto(x) export_proto(x)
184 # define iexport(x) extern char swallow_semicolon
185 #endif
187 /* TODO: detect the case when we *can* hide the symbol. */
188 #define iexport_data_proto(x) export_proto(x)
189 #define iexport_data(x) extern char swallow_semicolon
191 /* The only reliable way to get the offset of a field in a struct
192 in a system independent way is via this macro. */
193 #ifndef offsetof
194 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *) 0)->MEMBER)
195 #endif
197 /* The isfinite macro is only available with C99, but some non-C99
198 systems still provide fpclassify, and there is a `finite' function
199 in BSD.
201 Also, isfinite is broken on Cygwin.
203 When isfinite is not available, try to use one of the
204 alternatives, or bail out. */
206 #if defined(HAVE_BROKEN_ISFINITE) || defined(__CYGWIN__)
207 #undef isfinite
208 #endif
210 #if defined(HAVE_BROKEN_ISNAN)
211 #undef isnan
212 #endif
214 #if defined(HAVE_BROKEN_FPCLASSIFY)
215 #undef fpclassify
216 #endif
218 #if !defined(isfinite)
219 #if !defined(fpclassify)
220 #define isfinite(x) ((x) - (x) == 0)
221 #else
222 #define isfinite(x) (fpclassify(x) != FP_NAN && fpclassify(x) != FP_INFINITE)
223 #endif /* !defined(fpclassify) */
224 #endif /* !defined(isfinite) */
226 #if !defined(isnan)
227 #if !defined(fpclassify)
228 #define isnan(x) ((x) != (x))
229 #else
230 #define isnan(x) (fpclassify(x) == FP_NAN)
231 #endif /* !defined(fpclassify) */
232 #endif /* !defined(isfinite) */
234 /* TODO: find the C99 version of these an move into above ifdef. */
235 #define REALPART(z) (__real__(z))
236 #define IMAGPART(z) (__imag__(z))
237 #define COMPLEX_ASSIGN(z_, r_, i_) {__real__(z_) = (r_); __imag__(z_) = (i_);}
239 #include "kinds.h"
241 /* Define the type used for the current record number for large file I/O.
242 The size must be consistent with the size defined on the compiler side. */
243 #ifdef HAVE_GFC_INTEGER_8
244 typedef GFC_INTEGER_8 GFC_IO_INT;
245 #else
246 #ifdef HAVE_GFC_INTEGER_4
247 typedef GFC_INTEGER_4 GFC_IO_INT;
248 #else
249 #error "GFC_INTEGER_4 should be available for the library to compile".
250 #endif
251 #endif
253 /* The following two definitions must be consistent with the types used
254 by the compiler. */
255 /* The type used of array indices, amongst other things. */
256 typedef ssize_t index_type;
258 /* The type used for the lengths of character variables. */
259 typedef GFC_INTEGER_4 gfc_charlen_type;
261 /* Definitions of CHARACTER data types:
262 - CHARACTER(KIND=1) corresponds to the C char type,
263 - CHARACTER(KIND=4) corresponds to an unsigned 32-bit integer. */
264 typedef GFC_UINTEGER_4 gfc_char4_t;
266 /* Byte size of character kinds. For the kinds currently supported, it's
267 simply equal to the kind parameter itself. */
268 #define GFC_SIZE_OF_CHAR_KIND(kind) (kind)
270 /* This will be 0 on little-endian machines and one on big-endian machines. */
271 extern int big_endian;
272 internal_proto(big_endian);
274 #define GFOR_POINTER_TO_L1(p, kind) \
275 (big_endian * (kind - 1) + (GFC_LOGICAL_1 *)(p))
277 #define GFC_INTEGER_1_HUGE \
278 (GFC_INTEGER_1)((((GFC_UINTEGER_1)1) << 7) - 1)
279 #define GFC_INTEGER_2_HUGE \
280 (GFC_INTEGER_2)((((GFC_UINTEGER_2)1) << 15) - 1)
281 #define GFC_INTEGER_4_HUGE \
282 (GFC_INTEGER_4)((((GFC_UINTEGER_4)1) << 31) - 1)
283 #define GFC_INTEGER_8_HUGE \
284 (GFC_INTEGER_8)((((GFC_UINTEGER_8)1) << 63) - 1)
285 #ifdef HAVE_GFC_INTEGER_16
286 #define GFC_INTEGER_16_HUGE \
287 (GFC_INTEGER_16)((((GFC_UINTEGER_16)1) << 127) - 1)
288 #endif
290 /* M{IN,AX}{LOC,VAL} need also infinities and NaNs if supported. */
292 #ifdef __FLT_HAS_INFINITY__
293 # define GFC_REAL_4_INFINITY __builtin_inff ()
294 #endif
295 #ifdef __DBL_HAS_INFINITY__
296 # define GFC_REAL_8_INFINITY __builtin_inf ()
297 #endif
298 #ifdef __LDBL_HAS_INFINITY__
299 # ifdef HAVE_GFC_REAL_10
300 # define GFC_REAL_10_INFINITY __builtin_infl ()
301 # endif
302 # ifdef HAVE_GFC_REAL_16
303 # define GFC_REAL_16_INFINITY __builtin_infl ()
304 # endif
305 #endif
306 #ifdef __FLT_HAS_QUIET_NAN__
307 # define GFC_REAL_4_QUIET_NAN __builtin_nanf ("")
308 #endif
309 #ifdef __DBL_HAS_QUIET_NAN__
310 # define GFC_REAL_8_QUIET_NAN __builtin_nan ("")
311 #endif
312 #ifdef __LDBL_HAS_QUIET_NAN__
313 # ifdef HAVE_GFC_REAL_10
314 # define GFC_REAL_10_QUIET_NAN __builtin_nanl ("")
315 # endif
316 # ifdef HAVE_GFC_REAL_16
317 # define GFC_REAL_16_QUIET_NAN __builtin_nanl ("")
318 # endif
319 #endif
321 typedef struct descriptor_dimension
323 index_type _stride;
324 index_type _lbound;
325 index_type _ubound;
328 descriptor_dimension;
330 #define GFC_ARRAY_DESCRIPTOR(r, type) \
331 struct {\
332 type *data;\
333 size_t offset;\
334 index_type dtype;\
335 descriptor_dimension dim[r];\
338 /* Commonly used array descriptor types. */
339 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, void) gfc_array_void;
340 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, char) gfc_array_char;
341 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_INTEGER_1) gfc_array_i1;
342 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_INTEGER_2) gfc_array_i2;
343 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_INTEGER_4) gfc_array_i4;
344 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_INTEGER_8) gfc_array_i8;
345 #ifdef HAVE_GFC_INTEGER_16
346 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_INTEGER_16) gfc_array_i16;
347 #endif
348 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_REAL_4) gfc_array_r4;
349 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_REAL_8) gfc_array_r8;
350 #ifdef HAVE_GFC_REAL_10
351 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_REAL_10) gfc_array_r10;
352 #endif
353 #ifdef HAVE_GFC_REAL_16
354 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_REAL_16) gfc_array_r16;
355 #endif
356 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_COMPLEX_4) gfc_array_c4;
357 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_COMPLEX_8) gfc_array_c8;
358 #ifdef HAVE_GFC_COMPLEX_10
359 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_COMPLEX_10) gfc_array_c10;
360 #endif
361 #ifdef HAVE_GFC_COMPLEX_16
362 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_COMPLEX_16) gfc_array_c16;
363 #endif
364 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_LOGICAL_1) gfc_array_l1;
365 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_LOGICAL_2) gfc_array_l2;
366 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_LOGICAL_4) gfc_array_l4;
367 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_LOGICAL_8) gfc_array_l8;
368 #ifdef HAVE_GFC_LOGICAL_16
369 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_LOGICAL_16) gfc_array_l16;
370 #endif
373 #define GFC_DESCRIPTOR_RANK(desc) ((desc)->dtype & GFC_DTYPE_RANK_MASK)
374 #define GFC_DESCRIPTOR_TYPE(desc) (((desc)->dtype & GFC_DTYPE_TYPE_MASK) \
375 >> GFC_DTYPE_TYPE_SHIFT)
376 #define GFC_DESCRIPTOR_SIZE(desc) ((desc)->dtype >> GFC_DTYPE_SIZE_SHIFT)
377 #define GFC_DESCRIPTOR_DATA(desc) ((desc)->data)
378 #define GFC_DESCRIPTOR_DTYPE(desc) ((desc)->dtype)
380 #define GFC_DIMENSION_LBOUND(dim) ((dim)._lbound)
381 #define GFC_DIMENSION_UBOUND(dim) ((dim)._ubound)
382 #define GFC_DIMENSION_STRIDE(dim) ((dim)._stride)
383 #define GFC_DIMENSION_EXTENT(dim) ((dim)._ubound + 1 - (dim)._lbound)
384 #define GFC_DIMENSION_SET(dim,lb,ub,str) \
385 do \
387 (dim)._lbound = lb; \
388 (dim)._ubound = ub; \
389 (dim)._stride = str; \
390 } while (0)
393 #define GFC_DESCRIPTOR_LBOUND(desc,i) ((desc)->dim[i]._lbound)
394 #define GFC_DESCRIPTOR_UBOUND(desc,i) ((desc)->dim[i]._ubound)
395 #define GFC_DESCRIPTOR_EXTENT(desc,i) ((desc)->dim[i]._ubound + 1 \
396 - (desc)->dim[i]._lbound)
397 #define GFC_DESCRIPTOR_EXTENT_BYTES(desc,i) \
398 (GFC_DESCRIPTOR_EXTENT(desc,i) * GFC_DESCRIPTOR_SIZE(desc))
400 #define GFC_DESCRIPTOR_STRIDE(desc,i) ((desc)->dim[i]._stride)
401 #define GFC_DESCRIPTOR_STRIDE_BYTES(desc,i) \
402 (GFC_DESCRIPTOR_STRIDE(desc,i) * GFC_DESCRIPTOR_SIZE(desc))
404 /* Macros to get both the size and the type with a single masking operation */
406 #define GFC_DTYPE_SIZE_MASK \
407 ((~((index_type) 0) >> GFC_DTYPE_SIZE_SHIFT) << GFC_DTYPE_SIZE_SHIFT)
408 #define GFC_DTYPE_TYPE_SIZE_MASK (GFC_DTYPE_SIZE_MASK | GFC_DTYPE_TYPE_MASK)
410 #define GFC_DTYPE_TYPE_SIZE(desc) ((desc)->dtype & GFC_DTYPE_TYPE_SIZE_MASK)
412 #define GFC_DTYPE_INTEGER_1 ((GFC_DTYPE_INTEGER << GFC_DTYPE_TYPE_SHIFT) \
413 | (sizeof(GFC_INTEGER_1) << GFC_DTYPE_SIZE_SHIFT))
414 #define GFC_DTYPE_INTEGER_2 ((GFC_DTYPE_INTEGER << GFC_DTYPE_TYPE_SHIFT) \
415 | (sizeof(GFC_INTEGER_2) << GFC_DTYPE_SIZE_SHIFT))
416 #define GFC_DTYPE_INTEGER_4 ((GFC_DTYPE_INTEGER << GFC_DTYPE_TYPE_SHIFT) \
417 | (sizeof(GFC_INTEGER_4) << GFC_DTYPE_SIZE_SHIFT))
418 #define GFC_DTYPE_INTEGER_8 ((GFC_DTYPE_INTEGER << GFC_DTYPE_TYPE_SHIFT) \
419 | (sizeof(GFC_INTEGER_8) << GFC_DTYPE_SIZE_SHIFT))
420 #ifdef HAVE_GFC_INTEGER_16
421 #define GFC_DTYPE_INTEGER_16 ((GFC_DTYPE_INTEGER << GFC_DTYPE_TYPE_SHIFT) \
422 | (sizeof(GFC_INTEGER_16) << GFC_DTYPE_SIZE_SHIFT))
423 #endif
425 #define GFC_DTYPE_LOGICAL_1 ((GFC_DTYPE_LOGICAL << GFC_DTYPE_TYPE_SHIFT) \
426 | (sizeof(GFC_LOGICAL_1) << GFC_DTYPE_SIZE_SHIFT))
427 #define GFC_DTYPE_LOGICAL_2 ((GFC_DTYPE_LOGICAL << GFC_DTYPE_TYPE_SHIFT) \
428 | (sizeof(GFC_LOGICAL_2) << GFC_DTYPE_SIZE_SHIFT))
429 #define GFC_DTYPE_LOGICAL_4 ((GFC_DTYPE_LOGICAL << GFC_DTYPE_TYPE_SHIFT) \
430 | (sizeof(GFC_LOGICAL_4) << GFC_DTYPE_SIZE_SHIFT))
431 #define GFC_DTYPE_LOGICAL_8 ((GFC_DTYPE_LOGICAL << GFC_DTYPE_TYPE_SHIFT) \
432 | (sizeof(GFC_LOGICAL_8) << GFC_DTYPE_SIZE_SHIFT))
433 #ifdef HAVE_GFC_LOGICAL_16
434 #define GFC_DTYPE_LOGICAL_16 ((GFC_DTYPE_LOGICAL << GFC_DTYPE_TYPE_SHIFT) \
435 | (sizeof(GFC_LOGICAL_16) << GFC_DTYPE_SIZE_SHIFT))
436 #endif
438 #define GFC_DTYPE_REAL_4 ((GFC_DTYPE_REAL << GFC_DTYPE_TYPE_SHIFT) \
439 | (sizeof(GFC_REAL_4) << GFC_DTYPE_SIZE_SHIFT))
440 #define GFC_DTYPE_REAL_8 ((GFC_DTYPE_REAL << GFC_DTYPE_TYPE_SHIFT) \
441 | (sizeof(GFC_REAL_8) << GFC_DTYPE_SIZE_SHIFT))
442 #ifdef HAVE_GFC_REAL_10
443 #define GFC_DTYPE_REAL_10 ((GFC_DTYPE_REAL << GFC_DTYPE_TYPE_SHIFT) \
444 | (sizeof(GFC_REAL_10) << GFC_DTYPE_SIZE_SHIFT))
445 #endif
446 #ifdef HAVE_GFC_REAL_16
447 #define GFC_DTYPE_REAL_16 ((GFC_DTYPE_REAL << GFC_DTYPE_TYPE_SHIFT) \
448 | (sizeof(GFC_REAL_16) << GFC_DTYPE_SIZE_SHIFT))
449 #endif
451 #define GFC_DTYPE_COMPLEX_4 ((GFC_DTYPE_COMPLEX << GFC_DTYPE_TYPE_SHIFT) \
452 | (sizeof(GFC_COMPLEX_4) << GFC_DTYPE_SIZE_SHIFT))
453 #define GFC_DTYPE_COMPLEX_8 ((GFC_DTYPE_COMPLEX << GFC_DTYPE_TYPE_SHIFT) \
454 | (sizeof(GFC_COMPLEX_8) << GFC_DTYPE_SIZE_SHIFT))
455 #ifdef HAVE_GFC_COMPLEX_10
456 #define GFC_DTYPE_COMPLEX_10 ((GFC_DTYPE_COMPLEX << GFC_DTYPE_TYPE_SHIFT) \
457 | (sizeof(GFC_COMPLEX_10) << GFC_DTYPE_SIZE_SHIFT))
458 #endif
459 #ifdef HAVE_GFC_COMPLEX_16
460 #define GFC_DTYPE_COMPLEX_16 ((GFC_DTYPE_COMPLEX << GFC_DTYPE_TYPE_SHIFT) \
461 | (sizeof(GFC_COMPLEX_16) << GFC_DTYPE_SIZE_SHIFT))
462 #endif
464 #define GFC_DTYPE_DERIVED_1 ((GFC_DTYPE_DERIVED << GFC_DTYPE_TYPE_SHIFT) \
465 | (sizeof(GFC_INTEGER_1) << GFC_DTYPE_SIZE_SHIFT))
466 #define GFC_DTYPE_DERIVED_2 ((GFC_DTYPE_DERIVED << GFC_DTYPE_TYPE_SHIFT) \
467 | (sizeof(GFC_INTEGER_2) << GFC_DTYPE_SIZE_SHIFT))
468 #define GFC_DTYPE_DERIVED_4 ((GFC_DTYPE_DERIVED << GFC_DTYPE_TYPE_SHIFT) \
469 | (sizeof(GFC_INTEGER_4) << GFC_DTYPE_SIZE_SHIFT))
470 #define GFC_DTYPE_DERIVED_8 ((GFC_DTYPE_DERIVED << GFC_DTYPE_TYPE_SHIFT) \
471 | (sizeof(GFC_INTEGER_8) << GFC_DTYPE_SIZE_SHIFT))
472 #ifdef HAVE_GFC_INTEGER_16
473 #define GFC_DTYPE_DERIVED_16 ((GFC_DTYPE_DERIVED << GFC_DTYPE_TYPE_SHIFT) \
474 | (sizeof(GFC_INTEGER_16) << GFC_DTYPE_SIZE_SHIFT))
475 #endif
477 /* Macros to determine the alignment of pointers. */
479 #define GFC_UNALIGNED_2(x) (((uintptr_t)(x)) & \
480 (__alignof__(GFC_INTEGER_2) - 1))
481 #define GFC_UNALIGNED_4(x) (((uintptr_t)(x)) & \
482 (__alignof__(GFC_INTEGER_4) - 1))
483 #define GFC_UNALIGNED_8(x) (((uintptr_t)(x)) & \
484 (__alignof__(GFC_INTEGER_8) - 1))
485 #ifdef HAVE_GFC_INTEGER_16
486 #define GFC_UNALIGNED_16(x) (((uintptr_t)(x)) & \
487 (__alignof__(GFC_INTEGER_16) - 1))
488 #endif
490 #define GFC_UNALIGNED_C4(x) (((uintptr_t)(x)) & \
491 (__alignof__(GFC_COMPLEX_4) - 1))
493 #define GFC_UNALIGNED_C8(x) (((uintptr_t)(x)) & \
494 (__alignof__(GFC_COMPLEX_8) - 1))
496 /* Runtime library include. */
497 #define stringize(x) expand_macro(x)
498 #define expand_macro(x) # x
500 /* Runtime options structure. */
502 typedef struct
504 int stdin_unit, stdout_unit, stderr_unit, optional_plus;
505 int locus;
507 int separator_len;
508 const char *separator;
510 int use_stderr, all_unbuffered, unbuffered_preconnected, default_recl;
511 int fpe, dump_core, backtrace;
513 options_t;
515 extern options_t options;
516 internal_proto(options);
518 extern void handler (int);
519 internal_proto(handler);
522 /* Compile-time options that will influence the library. */
524 typedef struct
526 int warn_std;
527 int allow_std;
528 int pedantic;
529 int convert;
530 int dump_core;
531 int backtrace;
532 int sign_zero;
533 size_t record_marker;
534 int max_subrecord_length;
535 int bounds_check;
536 int range_check;
538 compile_options_t;
540 extern compile_options_t compile_options;
541 internal_proto(compile_options);
543 extern void init_compile_options (void);
544 internal_proto(init_compile_options);
546 #define GFC_MAX_SUBRECORD_LENGTH 2147483639 /* 2**31 - 9 */
548 /* Structure for statement options. */
550 typedef struct
552 const char *name;
553 int value;
555 st_option;
558 /* This is returned by notification_std to know if, given the flags
559 that were given (-std=, -pedantic) we should issue an error, a warning
560 or nothing. */
561 typedef enum
562 { SILENT, WARNING, ERROR }
563 notification;
565 /* This is returned by notify_std and several io functions. */
566 typedef enum
567 { SUCCESS = 1, FAILURE }
568 try;
570 /* The filename and line number don't go inside the globals structure.
571 They are set by the rest of the program and must be linked to. */
573 /* Location of the current library call (optional). */
574 extern unsigned line;
575 iexport_data_proto(line);
577 extern char *filename;
578 iexport_data_proto(filename);
580 /* Avoid conflicting prototypes of alloca() in system headers by using
581 GCC's builtin alloca(). */
582 #define gfc_alloca(x) __builtin_alloca(x)
585 /* Directory for creating temporary files. Only used when none of the
586 following environment variables exist: GFORTRAN_TMPDIR, TMP and TEMP. */
587 #define DEFAULT_TEMPDIR "/tmp"
589 /* The default value of record length for preconnected units is defined
590 here. This value can be overriden by an environment variable.
591 Default value is 1 Gb. */
592 #define DEFAULT_RECL 1073741824
595 #define CHARACTER2(name) \
596 gfc_charlen_type name ## _len; \
597 char * name
599 typedef struct st_parameter_common
601 GFC_INTEGER_4 flags;
602 GFC_INTEGER_4 unit;
603 const char *filename;
604 GFC_INTEGER_4 line;
605 CHARACTER2 (iomsg);
606 GFC_INTEGER_4 *iostat;
608 st_parameter_common;
610 #undef CHARACTER2
612 #define IOPARM_LIBRETURN_MASK (3 << 0)
613 #define IOPARM_LIBRETURN_OK (0 << 0)
614 #define IOPARM_LIBRETURN_ERROR (1 << 0)
615 #define IOPARM_LIBRETURN_END (2 << 0)
616 #define IOPARM_LIBRETURN_EOR (3 << 0)
617 #define IOPARM_ERR (1 << 2)
618 #define IOPARM_END (1 << 3)
619 #define IOPARM_EOR (1 << 4)
620 #define IOPARM_HAS_IOSTAT (1 << 5)
621 #define IOPARM_HAS_IOMSG (1 << 6)
623 #define IOPARM_COMMON_MASK ((1 << 7) - 1)
625 #define IOPARM_OPEN_HAS_RECL_IN (1 << 7)
626 #define IOPARM_OPEN_HAS_FILE (1 << 8)
627 #define IOPARM_OPEN_HAS_STATUS (1 << 9)
628 #define IOPARM_OPEN_HAS_ACCESS (1 << 10)
629 #define IOPARM_OPEN_HAS_FORM (1 << 11)
630 #define IOPARM_OPEN_HAS_BLANK (1 << 12)
631 #define IOPARM_OPEN_HAS_POSITION (1 << 13)
632 #define IOPARM_OPEN_HAS_ACTION (1 << 14)
633 #define IOPARM_OPEN_HAS_DELIM (1 << 15)
634 #define IOPARM_OPEN_HAS_PAD (1 << 16)
635 #define IOPARM_OPEN_HAS_CONVERT (1 << 17)
636 #define IOPARM_OPEN_HAS_DECIMAL (1 << 18)
637 #define IOPARM_OPEN_HAS_ENCODING (1 << 19)
638 #define IOPARM_OPEN_HAS_ROUND (1 << 20)
639 #define IOPARM_OPEN_HAS_SIGN (1 << 21)
640 #define IOPARM_OPEN_HAS_ASYNCHRONOUS (1 << 22)
641 #define IOPARM_OPEN_HAS_NEWUNIT (1 << 23)
643 /* library start function and end macro. These can be expanded if needed
644 in the future. cmp is st_parameter_common *cmp */
646 extern void library_start (st_parameter_common *);
647 internal_proto(library_start);
649 #define library_end()
651 /* main.c */
653 extern void stupid_function_name_for_static_linking (void);
654 internal_proto(stupid_function_name_for_static_linking);
656 extern void set_args (int, char **);
657 iexport_proto(set_args);
659 extern void get_args (int *, char ***);
660 internal_proto(get_args);
662 extern void store_exe_path (const char *);
663 export_proto(store_exe_path);
665 extern char * full_exe_path (void);
666 internal_proto(full_exe_path);
668 /* backtrace.c */
670 extern void show_backtrace (void);
671 internal_proto(show_backtrace);
673 /* error.c */
675 #if defined(HAVE_GFC_REAL_16)
676 #define GFC_LARGEST_BUF (sizeof (GFC_REAL_16))
677 #elif defined(HAVE_GFC_REAL_10)
678 #define GFC_LARGEST_BUF (sizeof (GFC_REAL_10))
679 #else
680 #define GFC_LARGEST_BUF (sizeof (GFC_INTEGER_LARGEST))
681 #endif
683 #define GFC_ITOA_BUF_SIZE (sizeof (GFC_INTEGER_LARGEST) * 3 + 2)
684 #define GFC_XTOA_BUF_SIZE (GFC_LARGEST_BUF * 2 + 1)
685 #define GFC_OTOA_BUF_SIZE (GFC_LARGEST_BUF * 3 + 1)
686 #define GFC_BTOA_BUF_SIZE (GFC_LARGEST_BUF * 8 + 1)
688 extern void sys_exit (int) __attribute__ ((noreturn));
689 internal_proto(sys_exit);
691 extern const char *gfc_xtoa (GFC_UINTEGER_LARGEST, char *, size_t);
692 internal_proto(gfc_xtoa);
694 extern void os_error (const char *) __attribute__ ((noreturn));
695 iexport_proto(os_error);
697 extern void show_locus (st_parameter_common *);
698 internal_proto(show_locus);
700 extern void runtime_error (const char *, ...)
701 __attribute__ ((noreturn, format (printf, 1, 2)));
702 iexport_proto(runtime_error);
704 extern void runtime_error_at (const char *, const char *, ...)
705 __attribute__ ((noreturn, format (printf, 2, 3)));
706 iexport_proto(runtime_error_at);
708 extern void runtime_warning_at (const char *, const char *, ...)
709 __attribute__ ((format (printf, 2, 3)));
710 iexport_proto(runtime_warning_at);
712 extern void internal_error (st_parameter_common *, const char *)
713 __attribute__ ((noreturn));
714 internal_proto(internal_error);
716 extern const char *get_oserror (void);
717 internal_proto(get_oserror);
719 extern const char *translate_error (int);
720 internal_proto(translate_error);
722 extern void generate_error (st_parameter_common *, int, const char *);
723 iexport_proto(generate_error);
725 extern try notify_std (st_parameter_common *, int, const char *);
726 internal_proto(notify_std);
728 extern notification notification_std(int);
729 internal_proto(notification_std);
731 /* fpu.c */
733 extern void set_fpu (void);
734 internal_proto(set_fpu);
736 /* memory.c */
738 extern void *get_mem (size_t) __attribute__ ((malloc));
739 internal_proto(get_mem);
741 extern void free_mem (void *);
742 internal_proto(free_mem);
744 extern void *internal_malloc_size (size_t) __attribute__ ((malloc));
745 internal_proto(internal_malloc_size);
747 /* environ.c */
749 extern int check_buffered (int);
750 internal_proto(check_buffered);
752 extern void init_variables (void);
753 internal_proto(init_variables);
755 extern void show_variables (void);
756 internal_proto(show_variables);
758 unit_convert get_unformatted_convert (int);
759 internal_proto(get_unformatted_convert);
761 /* string.c */
763 extern int find_option (st_parameter_common *, const char *, gfc_charlen_type,
764 const st_option *, const char *);
765 internal_proto(find_option);
767 extern gfc_charlen_type fstrlen (const char *, gfc_charlen_type);
768 internal_proto(fstrlen);
770 extern gfc_charlen_type fstrcpy (char *, gfc_charlen_type, const char *, gfc_charlen_type);
771 internal_proto(fstrcpy);
773 extern gfc_charlen_type cf_strcpy (char *, gfc_charlen_type, const char *);
774 internal_proto(cf_strcpy);
776 /* io/intrinsics.c */
778 extern void flush_all_units (void);
779 internal_proto(flush_all_units);
781 /* io.c */
783 extern void init_units (void);
784 internal_proto(init_units);
786 extern void close_units (void);
787 internal_proto(close_units);
789 extern int unit_to_fd (int);
790 internal_proto(unit_to_fd);
792 extern int st_printf (const char *, ...)
793 __attribute__ ((format (printf, 1, 2)));
794 internal_proto(st_printf);
796 extern int st_vprintf (const char *, va_list);
797 internal_proto(st_vprintf);
799 extern char * filename_from_unit (int);
800 internal_proto(filename_from_unit);
802 /* stop.c */
804 extern void stop_numeric (GFC_INTEGER_4) __attribute__ ((noreturn));
805 iexport_proto(stop_numeric);
807 /* reshape_packed.c */
809 extern void reshape_packed (char *, index_type, const char *, index_type,
810 const char *, index_type);
811 internal_proto(reshape_packed);
813 /* Repacking functions. These are called internally by internal_pack
814 and internal_unpack. */
816 GFC_INTEGER_1 *internal_pack_1 (gfc_array_i1 *);
817 internal_proto(internal_pack_1);
819 GFC_INTEGER_2 *internal_pack_2 (gfc_array_i2 *);
820 internal_proto(internal_pack_2);
822 GFC_INTEGER_4 *internal_pack_4 (gfc_array_i4 *);
823 internal_proto(internal_pack_4);
825 GFC_INTEGER_8 *internal_pack_8 (gfc_array_i8 *);
826 internal_proto(internal_pack_8);
828 #if defined HAVE_GFC_INTEGER_16
829 GFC_INTEGER_16 *internal_pack_16 (gfc_array_i16 *);
830 internal_proto(internal_pack_16);
831 #endif
833 GFC_REAL_4 *internal_pack_r4 (gfc_array_r4 *);
834 internal_proto(internal_pack_r4);
836 GFC_REAL_8 *internal_pack_r8 (gfc_array_r8 *);
837 internal_proto(internal_pack_r8);
839 #if defined HAVE_GFC_REAL_10
840 GFC_REAL_10 *internal_pack_r10 (gfc_array_r10 *);
841 internal_proto(internal_pack_r10);
842 #endif
844 #if defined HAVE_GFC_REAL_16
845 GFC_REAL_16 *internal_pack_r16 (gfc_array_r16 *);
846 internal_proto(internal_pack_r16);
847 #endif
849 GFC_COMPLEX_4 *internal_pack_c4 (gfc_array_c4 *);
850 internal_proto(internal_pack_c4);
852 GFC_COMPLEX_8 *internal_pack_c8 (gfc_array_c8 *);
853 internal_proto(internal_pack_c8);
855 #if defined HAVE_GFC_COMPLEX_10
856 GFC_COMPLEX_10 *internal_pack_c10 (gfc_array_c10 *);
857 internal_proto(internal_pack_c10);
858 #endif
860 #if defined HAVE_GFC_COMPLEX_16
861 GFC_COMPLEX_16 *internal_pack_c16 (gfc_array_c16 *);
862 internal_proto(internal_pack_c16);
863 #endif
865 extern void internal_unpack_1 (gfc_array_i1 *, const GFC_INTEGER_1 *);
866 internal_proto(internal_unpack_1);
868 extern void internal_unpack_2 (gfc_array_i2 *, const GFC_INTEGER_2 *);
869 internal_proto(internal_unpack_2);
871 extern void internal_unpack_4 (gfc_array_i4 *, const GFC_INTEGER_4 *);
872 internal_proto(internal_unpack_4);
874 extern void internal_unpack_8 (gfc_array_i8 *, const GFC_INTEGER_8 *);
875 internal_proto(internal_unpack_8);
877 #if defined HAVE_GFC_INTEGER_16
878 extern void internal_unpack_16 (gfc_array_i16 *, const GFC_INTEGER_16 *);
879 internal_proto(internal_unpack_16);
880 #endif
882 extern void internal_unpack_r4 (gfc_array_r4 *, const GFC_REAL_4 *);
883 internal_proto(internal_unpack_r4);
885 extern void internal_unpack_r8 (gfc_array_r8 *, const GFC_REAL_8 *);
886 internal_proto(internal_unpack_r8);
888 #if defined HAVE_GFC_REAL_10
889 extern void internal_unpack_r10 (gfc_array_r10 *, const GFC_REAL_10 *);
890 internal_proto(internal_unpack_r10);
891 #endif
893 #if defined HAVE_GFC_REAL_16
894 extern void internal_unpack_r16 (gfc_array_r16 *, const GFC_REAL_16 *);
895 internal_proto(internal_unpack_r16);
896 #endif
898 extern void internal_unpack_c4 (gfc_array_c4 *, const GFC_COMPLEX_4 *);
899 internal_proto(internal_unpack_c4);
901 extern void internal_unpack_c8 (gfc_array_c8 *, const GFC_COMPLEX_8 *);
902 internal_proto(internal_unpack_c8);
904 #if defined HAVE_GFC_COMPLEX_10
905 extern void internal_unpack_c10 (gfc_array_c10 *, const GFC_COMPLEX_10 *);
906 internal_proto(internal_unpack_c10);
907 #endif
909 #if defined HAVE_GFC_COMPLEX_16
910 extern void internal_unpack_c16 (gfc_array_c16 *, const GFC_COMPLEX_16 *);
911 internal_proto(internal_unpack_c16);
912 #endif
914 /* Internal auxiliary functions for the pack intrinsic. */
916 extern void pack_i1 (gfc_array_i1 *, const gfc_array_i1 *,
917 const gfc_array_l1 *, const gfc_array_i1 *);
918 internal_proto(pack_i1);
920 extern void pack_i2 (gfc_array_i2 *, const gfc_array_i2 *,
921 const gfc_array_l1 *, const gfc_array_i2 *);
922 internal_proto(pack_i2);
924 extern void pack_i4 (gfc_array_i4 *, const gfc_array_i4 *,
925 const gfc_array_l1 *, const gfc_array_i4 *);
926 internal_proto(pack_i4);
928 extern void pack_i8 (gfc_array_i8 *, const gfc_array_i8 *,
929 const gfc_array_l1 *, const gfc_array_i8 *);
930 internal_proto(pack_i8);
932 #ifdef HAVE_GFC_INTEGER_16
933 extern void pack_i16 (gfc_array_i16 *, const gfc_array_i16 *,
934 const gfc_array_l1 *, const gfc_array_i16 *);
935 internal_proto(pack_i16);
936 #endif
938 extern void pack_r4 (gfc_array_r4 *, const gfc_array_r4 *,
939 const gfc_array_l1 *, const gfc_array_r4 *);
940 internal_proto(pack_r4);
942 extern void pack_r8 (gfc_array_r8 *, const gfc_array_r8 *,
943 const gfc_array_l1 *, const gfc_array_r8 *);
944 internal_proto(pack_r8);
946 #ifdef HAVE_GFC_REAL_10
947 extern void pack_r10 (gfc_array_r10 *, const gfc_array_r10 *,
948 const gfc_array_l1 *, const gfc_array_r10 *);
949 internal_proto(pack_r10);
950 #endif
952 #ifdef HAVE_GFC_REAL_16
953 extern void pack_r16 (gfc_array_r16 *, const gfc_array_r16 *,
954 const gfc_array_l1 *, const gfc_array_r16 *);
955 internal_proto(pack_r16);
956 #endif
958 extern void pack_c4 (gfc_array_c4 *, const gfc_array_c4 *,
959 const gfc_array_l1 *, const gfc_array_c4 *);
960 internal_proto(pack_c4);
962 extern void pack_c8 (gfc_array_c8 *, const gfc_array_c8 *,
963 const gfc_array_l1 *, const gfc_array_c8 *);
964 internal_proto(pack_c8);
966 #ifdef HAVE_GFC_REAL_10
967 extern void pack_c10 (gfc_array_c10 *, const gfc_array_c10 *,
968 const gfc_array_l1 *, const gfc_array_c10 *);
969 internal_proto(pack_c10);
970 #endif
972 #ifdef HAVE_GFC_REAL_16
973 extern void pack_c16 (gfc_array_c16 *, const gfc_array_c16 *,
974 const gfc_array_l1 *, const gfc_array_c16 *);
975 internal_proto(pack_c16);
976 #endif
978 /* Internal auxiliary functions for the unpack intrinsic. */
980 extern void unpack0_i1 (gfc_array_i1 *, const gfc_array_i1 *,
981 const gfc_array_l1 *, const GFC_INTEGER_1 *);
982 internal_proto(unpack0_i1);
984 extern void unpack0_i2 (gfc_array_i2 *, const gfc_array_i2 *,
985 const gfc_array_l1 *, const GFC_INTEGER_2 *);
986 internal_proto(unpack0_i2);
988 extern void unpack0_i4 (gfc_array_i4 *, const gfc_array_i4 *,
989 const gfc_array_l1 *, const GFC_INTEGER_4 *);
990 internal_proto(unpack0_i4);
992 extern void unpack0_i8 (gfc_array_i8 *, const gfc_array_i8 *,
993 const gfc_array_l1 *, const GFC_INTEGER_8 *);
994 internal_proto(unpack0_i8);
996 #ifdef HAVE_GFC_INTEGER_16
998 extern void unpack0_i16 (gfc_array_i16 *, const gfc_array_i16 *,
999 const gfc_array_l1 *, const GFC_INTEGER_16 *);
1000 internal_proto(unpack0_i16);
1002 #endif
1004 extern void unpack0_r4 (gfc_array_r4 *, const gfc_array_r4 *,
1005 const gfc_array_l1 *, const GFC_REAL_4 *);
1006 internal_proto(unpack0_r4);
1008 extern void unpack0_r8 (gfc_array_r8 *, const gfc_array_r8 *,
1009 const gfc_array_l1 *, const GFC_REAL_8 *);
1010 internal_proto(unpack0_r8);
1012 #ifdef HAVE_GFC_REAL_10
1014 extern void unpack0_r10 (gfc_array_r10 *, const gfc_array_r10 *,
1015 const gfc_array_l1 *, const GFC_REAL_10 *);
1016 internal_proto(unpack0_r10);
1018 #endif
1020 #ifdef HAVE_GFC_REAL_16
1022 extern void unpack0_r16 (gfc_array_r16 *, const gfc_array_r16 *,
1023 const gfc_array_l1 *, const GFC_REAL_16 *);
1024 internal_proto(unpack0_r16);
1026 #endif
1028 extern void unpack0_c4 (gfc_array_c4 *, const gfc_array_c4 *,
1029 const gfc_array_l1 *, const GFC_COMPLEX_4 *);
1030 internal_proto(unpack0_c4);
1032 extern void unpack0_c8 (gfc_array_c8 *, const gfc_array_c8 *,
1033 const gfc_array_l1 *, const GFC_COMPLEX_8 *);
1034 internal_proto(unpack0_c8);
1036 #ifdef HAVE_GFC_COMPLEX_10
1038 extern void unpack0_c10 (gfc_array_c10 *, const gfc_array_c10 *,
1039 const gfc_array_l1 *mask, const GFC_COMPLEX_10 *);
1040 internal_proto(unpack0_c10);
1042 #endif
1044 #ifdef HAVE_GFC_COMPLEX_16
1046 extern void unpack0_c16 (gfc_array_c16 *, const gfc_array_c16 *,
1047 const gfc_array_l1 *, const GFC_COMPLEX_16 *);
1048 internal_proto(unpack0_c16);
1050 #endif
1052 extern void unpack1_i1 (gfc_array_i1 *, const gfc_array_i1 *,
1053 const gfc_array_l1 *, const gfc_array_i1 *);
1054 internal_proto(unpack1_i1);
1056 extern void unpack1_i2 (gfc_array_i2 *, const gfc_array_i2 *,
1057 const gfc_array_l1 *, const gfc_array_i2 *);
1058 internal_proto(unpack1_i2);
1060 extern void unpack1_i4 (gfc_array_i4 *, const gfc_array_i4 *,
1061 const gfc_array_l1 *, const gfc_array_i4 *);
1062 internal_proto(unpack1_i4);
1064 extern void unpack1_i8 (gfc_array_i8 *, const gfc_array_i8 *,
1065 const gfc_array_l1 *, const gfc_array_i8 *);
1066 internal_proto(unpack1_i8);
1068 #ifdef HAVE_GFC_INTEGER_16
1069 extern void unpack1_i16 (gfc_array_i16 *, const gfc_array_i16 *,
1070 const gfc_array_l1 *, const gfc_array_i16 *);
1071 internal_proto(unpack1_i16);
1072 #endif
1074 extern void unpack1_r4 (gfc_array_r4 *, const gfc_array_r4 *,
1075 const gfc_array_l1 *, const gfc_array_r4 *);
1076 internal_proto(unpack1_r4);
1078 extern void unpack1_r8 (gfc_array_r8 *, const gfc_array_r8 *,
1079 const gfc_array_l1 *, const gfc_array_r8 *);
1080 internal_proto(unpack1_r8);
1082 #ifdef HAVE_GFC_REAL_10
1083 extern void unpack1_r10 (gfc_array_r10 *, const gfc_array_r10 *,
1084 const gfc_array_l1 *, const gfc_array_r10 *);
1085 internal_proto(unpack1_r10);
1086 #endif
1088 #ifdef HAVE_GFC_REAL_16
1089 extern void unpack1_r16 (gfc_array_r16 *, const gfc_array_r16 *,
1090 const gfc_array_l1 *, const gfc_array_r16 *);
1091 internal_proto(unpack1_r16);
1092 #endif
1094 extern void unpack1_c4 (gfc_array_c4 *, const gfc_array_c4 *,
1095 const gfc_array_l1 *, const gfc_array_c4 *);
1096 internal_proto(unpack1_c4);
1098 extern void unpack1_c8 (gfc_array_c8 *, const gfc_array_c8 *,
1099 const gfc_array_l1 *, const gfc_array_c8 *);
1100 internal_proto(unpack1_c8);
1102 #ifdef HAVE_GFC_COMPLEX_10
1103 extern void unpack1_c10 (gfc_array_c10 *, const gfc_array_c10 *,
1104 const gfc_array_l1 *, const gfc_array_c10 *);
1105 internal_proto(unpack1_c10);
1106 #endif
1108 #ifdef HAVE_GFC_COMPLEX_16
1109 extern void unpack1_c16 (gfc_array_c16 *, const gfc_array_c16 *,
1110 const gfc_array_l1 *, const gfc_array_c16 *);
1111 internal_proto(unpack1_c16);
1112 #endif
1114 /* Helper functions for spread. */
1116 extern void spread_i1 (gfc_array_i1 *, const gfc_array_i1 *,
1117 const index_type, const index_type);
1118 internal_proto(spread_i1);
1120 extern void spread_i2 (gfc_array_i2 *, const gfc_array_i2 *,
1121 const index_type, const index_type);
1122 internal_proto(spread_i2);
1124 extern void spread_i4 (gfc_array_i4 *, const gfc_array_i4 *,
1125 const index_type, const index_type);
1126 internal_proto(spread_i4);
1128 extern void spread_i8 (gfc_array_i8 *, const gfc_array_i8 *,
1129 const index_type, const index_type);
1130 internal_proto(spread_i8);
1132 #ifdef HAVE_GFC_INTEGER_16
1133 extern void spread_i16 (gfc_array_i16 *, const gfc_array_i16 *,
1134 const index_type, const index_type);
1135 internal_proto(spread_i16);
1137 #endif
1139 extern void spread_r4 (gfc_array_r4 *, const gfc_array_r4 *,
1140 const index_type, const index_type);
1141 internal_proto(spread_r4);
1143 extern void spread_r8 (gfc_array_r8 *, const gfc_array_r8 *,
1144 const index_type, const index_type);
1145 internal_proto(spread_r8);
1147 #ifdef HAVE_GFC_REAL_10
1148 extern void spread_r10 (gfc_array_r10 *, const gfc_array_r10 *,
1149 const index_type, const index_type);
1150 internal_proto(spread_r10);
1152 #endif
1154 #ifdef HAVE_GFC_REAL_16
1155 extern void spread_r16 (gfc_array_r16 *, const gfc_array_r16 *,
1156 const index_type, const index_type);
1157 internal_proto(spread_r16);
1159 #endif
1161 extern void spread_c4 (gfc_array_c4 *, const gfc_array_c4 *,
1162 const index_type, const index_type);
1163 internal_proto(spread_c4);
1165 extern void spread_c8 (gfc_array_c8 *, const gfc_array_c8 *,
1166 const index_type, const index_type);
1167 internal_proto(spread_c8);
1169 #ifdef HAVE_GFC_COMPLEX_10
1170 extern void spread_c10 (gfc_array_c10 *, const gfc_array_c10 *,
1171 const index_type, const index_type);
1172 internal_proto(spread_c10);
1174 #endif
1176 #ifdef HAVE_GFC_COMPLEX_16
1177 extern void spread_c16 (gfc_array_c16 *, const gfc_array_c16 *,
1178 const index_type, const index_type);
1179 internal_proto(spread_c16);
1181 #endif
1183 extern void spread_scalar_i1 (gfc_array_i1 *, const GFC_INTEGER_1 *,
1184 const index_type, const index_type);
1185 internal_proto(spread_scalar_i1);
1187 extern void spread_scalar_i2 (gfc_array_i2 *, const GFC_INTEGER_2 *,
1188 const index_type, const index_type);
1189 internal_proto(spread_scalar_i2);
1191 extern void spread_scalar_i4 (gfc_array_i4 *, const GFC_INTEGER_4 *,
1192 const index_type, const index_type);
1193 internal_proto(spread_scalar_i4);
1195 extern void spread_scalar_i8 (gfc_array_i8 *, const GFC_INTEGER_8 *,
1196 const index_type, const index_type);
1197 internal_proto(spread_scalar_i8);
1199 #ifdef HAVE_GFC_INTEGER_16
1200 extern void spread_scalar_i16 (gfc_array_i16 *, const GFC_INTEGER_16 *,
1201 const index_type, const index_type);
1202 internal_proto(spread_scalar_i16);
1204 #endif
1206 extern void spread_scalar_r4 (gfc_array_r4 *, const GFC_REAL_4 *,
1207 const index_type, const index_type);
1208 internal_proto(spread_scalar_r4);
1210 extern void spread_scalar_r8 (gfc_array_r8 *, const GFC_REAL_8 *,
1211 const index_type, const index_type);
1212 internal_proto(spread_scalar_r8);
1214 #ifdef HAVE_GFC_REAL_10
1215 extern void spread_scalar_r10 (gfc_array_r10 *, const GFC_REAL_10 *,
1216 const index_type, const index_type);
1217 internal_proto(spread_scalar_r10);
1219 #endif
1221 #ifdef HAVE_GFC_REAL_16
1222 extern void spread_scalar_r16 (gfc_array_r16 *, const GFC_REAL_16 *,
1223 const index_type, const index_type);
1224 internal_proto(spread_scalar_r16);
1226 #endif
1228 extern void spread_scalar_c4 (gfc_array_c4 *, const GFC_COMPLEX_4 *,
1229 const index_type, const index_type);
1230 internal_proto(spread_scalar_c4);
1232 extern void spread_scalar_c8 (gfc_array_c8 *, const GFC_COMPLEX_8 *,
1233 const index_type, const index_type);
1234 internal_proto(spread_scalar_c8);
1236 #ifdef HAVE_GFC_COMPLEX_10
1237 extern void spread_scalar_c10 (gfc_array_c10 *, const GFC_COMPLEX_10 *,
1238 const index_type, const index_type);
1239 internal_proto(spread_scalar_c10);
1241 #endif
1243 #ifdef HAVE_GFC_COMPLEX_16
1244 extern void spread_scalar_c16 (gfc_array_c16 *, const GFC_COMPLEX_16 *,
1245 const index_type, const index_type);
1246 internal_proto(spread_scalar_c16);
1248 #endif
1250 /* string_intrinsics.c */
1252 extern int compare_string (gfc_charlen_type, const char *,
1253 gfc_charlen_type, const char *);
1254 iexport_proto(compare_string);
1256 extern int compare_string_char4 (gfc_charlen_type, const gfc_char4_t *,
1257 gfc_charlen_type, const gfc_char4_t *);
1258 iexport_proto(compare_string_char4);
1260 /* random.c */
1262 extern void random_seed_i4 (GFC_INTEGER_4 * size, gfc_array_i4 * put,
1263 gfc_array_i4 * get);
1264 iexport_proto(random_seed_i4);
1265 extern void random_seed_i8 (GFC_INTEGER_8 * size, gfc_array_i8 * put,
1266 gfc_array_i8 * get);
1267 iexport_proto(random_seed_i8);
1269 /* size.c */
1271 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, void) array_t;
1273 extern index_type size0 (const array_t * array);
1274 iexport_proto(size0);
1276 /* bounds.c */
1278 extern void bounds_equal_extents (array_t *, array_t *, const char *,
1279 const char *);
1280 internal_proto(bounds_equal_extents);
1282 extern void bounds_reduced_extents (array_t *, array_t *, int, const char *,
1283 const char *intrinsic);
1284 internal_proto(bounds_reduced_extents);
1286 extern void bounds_iforeach_return (array_t *, array_t *, const char *);
1287 internal_proto(bounds_iforeach_return);
1289 extern void bounds_ifunction_return (array_t *, const index_type *,
1290 const char *, const char *);
1291 internal_proto(bounds_ifunction_return);
1293 extern index_type count_0 (const gfc_array_l1 *);
1295 internal_proto(count_0);
1297 /* Internal auxiliary functions for cshift */
1299 void cshift0_i1 (gfc_array_i1 *, const gfc_array_i1 *, ssize_t, int);
1300 internal_proto(cshift0_i1);
1302 void cshift0_i2 (gfc_array_i2 *, const gfc_array_i2 *, ssize_t, int);
1303 internal_proto(cshift0_i2);
1305 void cshift0_i4 (gfc_array_i4 *, const gfc_array_i4 *, ssize_t, int);
1306 internal_proto(cshift0_i4);
1308 void cshift0_i8 (gfc_array_i8 *, const gfc_array_i8 *, ssize_t, int);
1309 internal_proto(cshift0_i8);
1311 #ifdef HAVE_GFC_INTEGER_16
1312 void cshift0_i16 (gfc_array_i16 *, const gfc_array_i16 *, ssize_t, int);
1313 internal_proto(cshift0_i16);
1314 #endif
1316 void cshift0_r4 (gfc_array_r4 *, const gfc_array_r4 *, ssize_t, int);
1317 internal_proto(cshift0_r4);
1319 void cshift0_r8 (gfc_array_r8 *, const gfc_array_r8 *, ssize_t, int);
1320 internal_proto(cshift0_r8);
1322 #ifdef HAVE_GFC_REAL_10
1323 void cshift0_r10 (gfc_array_r10 *, const gfc_array_r10 *, ssize_t, int);
1324 internal_proto(cshift0_r10);
1325 #endif
1327 #ifdef HAVE_GFC_REAL_16
1328 void cshift0_r16 (gfc_array_r16 *, const gfc_array_r16 *, ssize_t, int);
1329 internal_proto(cshift0_r16);
1330 #endif
1332 void cshift0_c4 (gfc_array_c4 *, const gfc_array_c4 *, ssize_t, int);
1333 internal_proto(cshift0_c4);
1335 void cshift0_c8 (gfc_array_c8 *, const gfc_array_c8 *, ssize_t, int);
1336 internal_proto(cshift0_c8);
1338 #ifdef HAVE_GFC_COMPLEX_10
1339 void cshift0_c10 (gfc_array_c10 *, const gfc_array_c10 *, ssize_t, int);
1340 internal_proto(cshift0_c10);
1341 #endif
1343 #ifdef HAVE_GFC_COMPLEX_16
1344 void cshift0_c16 (gfc_array_c16 *, const gfc_array_c16 *, ssize_t, int);
1345 internal_proto(cshift0_c16);
1346 #endif
1348 #endif /* LIBGFOR_H */