2018-25-01 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / libgfortran / libgfortran.h
blob80580a91082878cb973deedec194f9afa02bd837
1 /* Common declarations for all of libgfortran.
2 Copyright (C) 2002-2018 Free Software Foundation, Inc.
3 Contributed by Paul Brook <paul@nowt.org>, and
4 Andy Vaught <andy@xena.eas.asu.edu>
6 This file is part of the GNU Fortran runtime library (libgfortran).
8 Libgfortran is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 Libgfortran is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 Under Section 7 of GPL version 3, you are granted additional
19 permissions described in the GCC Runtime Library Exception, version
20 3.1, as published by the Free Software Foundation.
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/>. */
27 #ifndef LIBGFOR_H
28 #define LIBGFOR_H
30 /* Ensure that ANSI conform stdio is used. This needs to be set before
31 any system header file is included. */
32 #if defined __MINGW32__
33 # define _POSIX 1
34 # define gfc_printf gnu_printf
35 #else
36 # define gfc_printf __printf__
37 #endif
39 /* config.h MUST be first because it can affect system headers. */
40 #include "config.h"
42 #include <stdio.h>
43 #include <stdlib.h>
44 #include <stddef.h>
45 #include <float.h>
46 #include <stdarg.h>
47 #include <stdbool.h>
49 #if HAVE_COMPLEX_H
50 /* Must appear before math.h on VMS systems. */
51 # include <complex.h>
52 #else
53 #define complex __complex__
54 #endif
56 #include <math.h>
58 /* If we're support quad-precision floating-point type, include the
59 header to our support library. */
60 #ifdef HAVE_FLOAT128
61 # include "quadmath_weak.h"
62 #endif
64 #ifdef __MINGW32__
65 extern float __strtof (const char *, char **);
66 #define gfc_strtof __strtof
67 extern double __strtod (const char *, char **);
68 #define gfc_strtod __strtod
69 extern long double __strtold (const char *, char **);
70 #define gfc_strtold __strtold
71 #else
72 #define gfc_strtof strtof
73 #define gfc_strtod strtod
74 #define gfc_strtold strtold
75 #endif
77 #include "../gcc/fortran/libgfortran.h"
79 #include "c99_protos.h"
81 #if HAVE_IEEEFP_H
82 #include <ieeefp.h>
83 #endif
85 #include "gstdint.h"
87 #if HAVE_SYS_TYPES_H
88 #include <sys/types.h>
89 #endif
91 #ifdef __MINGW32__
92 typedef off64_t gfc_offset;
93 #else
94 typedef off_t gfc_offset;
95 #endif
97 #ifndef NULL
98 #define NULL (void *) 0
99 #endif
102 /* The following macros can be used to annotate conditions which are likely or
103 unlikely to be true. Avoid using them when a condition is only slightly
104 more likely/less unlikely than average to avoid the performance penalties of
105 branch misprediction. In addition, as __builtin_expect overrides the compiler
106 heuristic, do not use in conditions where one of the branches ends with a
107 call to a function with __attribute__((noreturn)): the compiler internal
108 heuristic will mark this branch as much less likely as unlikely() would
109 do. */
111 #define likely(x) __builtin_expect(!!(x), 1)
112 #define unlikely(x) __builtin_expect(!!(x), 0)
114 /* This macro can be used to annotate conditions which we know to
115 be true, so that the compiler can optimize based on the condition. */
117 #define GFC_ASSERT(EXPR) \
118 ((void)(__builtin_expect (!(EXPR), 0) ? __builtin_unreachable (), 0 : 0))
120 /* Make sure we have ptrdiff_t. */
121 #ifndef HAVE_PTRDIFF_T
122 typedef intptr_t ptrdiff_t;
123 #endif
125 /* On mingw, work around the buggy Windows snprintf() by using the one
126 mingw provides, __mingw_snprintf(). We also provide a prototype for
127 __mingw_snprintf(), because the mingw headers currently don't have one. */
128 #if HAVE_MINGW_SNPRINTF
129 extern int __mingw_snprintf (char *, size_t, const char *, ...)
130 __attribute__ ((format (gnu_printf, 3, 4)));
131 #undef snprintf
132 #define snprintf __mingw_snprintf
133 /* Fallback to sprintf if target does not have snprintf. */
134 #elif !defined(HAVE_SNPRINTF)
135 #undef snprintf
136 #define snprintf(str, size, ...) sprintf (str, __VA_ARGS__)
137 #endif
140 /* For a library, a standard prefix is a requirement in order to partition
141 the namespace. IPREFIX is for symbols intended to be internal to the
142 library. */
143 #define PREFIX(x) _gfortran_ ## x
144 #define IPREFIX(x) _gfortrani_ ## x
146 /* Magic to rename a symbol at the compiler level. You continue to refer
147 to the symbol as OLD in the source, but it'll be named NEW in the asm. */
148 #define sym_rename(old, new) sym_rename1(old, __USER_LABEL_PREFIX__, new)
149 #define sym_rename1(old, ulp, new) sym_rename2(old, ulp, new)
150 #define sym_rename2(old, ulp, new) extern __typeof(old) old __asm__(#ulp #new)
152 /* There are several classifications of routines:
154 (1) Symbols used only within the library,
155 (2) Symbols to be exported from the library,
156 (3) Symbols to be exported from the library, but
157 also used inside the library.
159 By telling the compiler about these different classifications we can
160 tightly control the interface seen by the user, and get better code
161 from the compiler at the same time.
163 One of the following should be used immediately after the declaration
164 of each symbol:
166 internal_proto Marks a symbol used only within the library,
167 and adds IPREFIX to the assembly-level symbol
168 name. The later is important for maintaining
169 the namespace partition for the static library.
171 export_proto Marks a symbol to be exported, and adds PREFIX
172 to the assembly-level symbol name.
174 export_proto_np Marks a symbol to be exported without adding PREFIX.
176 iexport_proto Marks a function to be exported, but with the
177 understanding that it can be used inside as well.
179 iexport_data_proto Similarly, marks a data symbol to be exported.
180 Unfortunately, some systems can't play the hidden
181 symbol renaming trick on data symbols, thanks to
182 the horribleness of COPY relocations.
184 If iexport_proto or iexport_data_proto is used, you must also use
185 iexport or iexport_data after the *definition* of the symbol. */
187 #if defined(HAVE_ATTRIBUTE_VISIBILITY)
188 # define internal_proto(x) \
189 sym_rename(x, IPREFIX (x)) __attribute__((__visibility__("hidden")))
190 #else
191 # define internal_proto(x) sym_rename(x, IPREFIX(x))
192 #endif
194 #if defined(HAVE_ATTRIBUTE_VISIBILITY) && defined(HAVE_ATTRIBUTE_ALIAS)
195 # define export_proto(x) sym_rename(x, PREFIX(x))
196 # define export_proto_np(x) extern char swallow_semicolon
197 # define iexport_proto(x) internal_proto(x)
198 # define iexport(x) iexport1(x, IPREFIX(x))
199 # define iexport1(x,y) iexport2(x,y)
200 # define iexport2(x,y) \
201 extern __typeof(x) PREFIX(x) __attribute__((__alias__(#y)))
202 #else
203 # define export_proto(x) sym_rename(x, PREFIX(x))
204 # define export_proto_np(x) extern char swallow_semicolon
205 # define iexport_proto(x) export_proto(x)
206 # define iexport(x) extern char swallow_semicolon
207 #endif
209 /* TODO: detect the case when we *can* hide the symbol. */
210 #define iexport_data_proto(x) export_proto(x)
211 #define iexport_data(x) extern char swallow_semicolon
213 /* The only reliable way to get the offset of a field in a struct
214 in a system independent way is via this macro. */
215 #ifndef offsetof
216 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *) 0)->MEMBER)
217 #endif
219 /* The C99 classification macros isfinite, isinf, isnan, isnormal
220 and signbit are broken or inconsistent on quite a few targets.
221 So, we use GCC's builtins instead.
223 Another advantage for GCC's builtins for these type-generic macros
224 is that it handles floating-point types that the system headers
225 may not support (like __float128). */
227 #undef isnan
228 #define isnan(x) __builtin_isnan(x)
229 #undef isfinite
230 #define isfinite(x) __builtin_isfinite(x)
231 #undef isinf
232 #define isinf(x) __builtin_isinf(x)
233 #undef isnormal
234 #define isnormal(x) __builtin_isnormal(x)
235 #undef signbit
236 #define signbit(x) __builtin_signbit(x)
238 #include "kinds.h"
240 /* Define the type used for the current record number for large file I/O.
241 The size must be consistent with the size defined on the compiler side. */
242 #ifdef HAVE_GFC_INTEGER_8
243 typedef GFC_INTEGER_8 GFC_IO_INT;
244 #else
245 #ifdef HAVE_GFC_INTEGER_4
246 typedef GFC_INTEGER_4 GFC_IO_INT;
247 #else
248 #error "GFC_INTEGER_4 should be available for the library to compile".
249 #endif
250 #endif
252 /* The following two definitions must be consistent with the types used
253 by the compiler. */
254 /* The type used of array indices, amongst other things. */
255 typedef ptrdiff_t index_type;
257 /* The type used for the lengths of character variables. */
258 typedef size_t gfc_charlen_type;
260 /* Definitions of CHARACTER data types:
261 - CHARACTER(KIND=1) corresponds to the C char type,
262 - CHARACTER(KIND=4) corresponds to an unsigned 32-bit integer. */
263 typedef GFC_UINTEGER_4 gfc_char4_t;
265 /* Byte size of character kinds. For the kinds currently supported, it's
266 simply equal to the kind parameter itself. */
267 #define GFC_SIZE_OF_CHAR_KIND(kind) (kind)
269 #define GFOR_POINTER_TO_L1(p, kind) \
270 ((__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ ? 1: 0) * (kind - 1) + (GFC_LOGICAL_1 *)(p))
272 #define GFC_INTEGER_1_HUGE \
273 (GFC_INTEGER_1)((((GFC_UINTEGER_1)1) << 7) - 1)
274 #define GFC_INTEGER_2_HUGE \
275 (GFC_INTEGER_2)((((GFC_UINTEGER_2)1) << 15) - 1)
276 #define GFC_INTEGER_4_HUGE \
277 (GFC_INTEGER_4)((((GFC_UINTEGER_4)1) << 31) - 1)
278 #define GFC_INTEGER_8_HUGE \
279 (GFC_INTEGER_8)((((GFC_UINTEGER_8)1) << 63) - 1)
280 #ifdef HAVE_GFC_INTEGER_16
281 #define GFC_INTEGER_16_HUGE \
282 (GFC_INTEGER_16)((((GFC_UINTEGER_16)1) << 127) - 1)
283 #endif
285 /* M{IN,AX}{LOC,VAL} need also infinities and NaNs if supported. */
287 #ifdef __FLT_HAS_INFINITY__
288 # define GFC_REAL_4_INFINITY __builtin_inff ()
289 #endif
290 #ifdef __DBL_HAS_INFINITY__
291 # define GFC_REAL_8_INFINITY __builtin_inf ()
292 #endif
293 #ifdef __LDBL_HAS_INFINITY__
294 # ifdef HAVE_GFC_REAL_10
295 # define GFC_REAL_10_INFINITY __builtin_infl ()
296 # endif
297 # ifdef HAVE_GFC_REAL_16
298 # ifdef GFC_REAL_16_IS_LONG_DOUBLE
299 # define GFC_REAL_16_INFINITY __builtin_infl ()
300 # else
301 # define GFC_REAL_16_INFINITY __builtin_infq ()
302 # endif
303 # endif
304 #endif
305 #ifdef __FLT_HAS_QUIET_NAN__
306 # define GFC_REAL_4_QUIET_NAN __builtin_nanf ("")
307 #endif
308 #ifdef __DBL_HAS_QUIET_NAN__
309 # define GFC_REAL_8_QUIET_NAN __builtin_nan ("")
310 #endif
311 #ifdef __LDBL_HAS_QUIET_NAN__
312 # ifdef HAVE_GFC_REAL_10
313 # define GFC_REAL_10_QUIET_NAN __builtin_nanl ("")
314 # endif
315 # ifdef HAVE_GFC_REAL_16
316 # ifdef GFC_REAL_16_IS_LONG_DOUBLE
317 # define GFC_REAL_16_QUIET_NAN __builtin_nanl ("")
318 # else
319 # define GFC_REAL_16_QUIET_NAN nanq ("")
320 # endif
321 # endif
322 #endif
324 typedef struct descriptor_dimension
326 index_type _stride;
327 index_type lower_bound;
328 index_type _ubound;
330 descriptor_dimension;
332 typedef struct dtype_type
334 size_t elem_len;
335 int version;
336 signed char rank;
337 signed char type;
338 signed short attribute;
340 dtype_type;
342 #define GFC_ARRAY_DESCRIPTOR(r, type) \
343 struct {\
344 type *base_addr;\
345 size_t offset;\
346 dtype_type dtype;\
347 index_type span;\
348 descriptor_dimension dim[r];\
351 /* Commonly used array descriptor types. */
352 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, void) gfc_array_void;
353 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, char) gfc_array_char;
354 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_INTEGER_1) gfc_array_i1;
355 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_INTEGER_2) gfc_array_i2;
356 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_INTEGER_4) gfc_array_i4;
357 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_INTEGER_8) gfc_array_i8;
358 #ifdef HAVE_GFC_INTEGER_16
359 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_INTEGER_16) gfc_array_i16;
360 #endif
361 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_REAL_4) gfc_array_r4;
362 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_REAL_8) gfc_array_r8;
363 #ifdef HAVE_GFC_REAL_10
364 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_REAL_10) gfc_array_r10;
365 #endif
366 #ifdef HAVE_GFC_REAL_16
367 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_REAL_16) gfc_array_r16;
368 #endif
369 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_COMPLEX_4) gfc_array_c4;
370 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_COMPLEX_8) gfc_array_c8;
371 #ifdef HAVE_GFC_COMPLEX_10
372 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_COMPLEX_10) gfc_array_c10;
373 #endif
374 #ifdef HAVE_GFC_COMPLEX_16
375 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_COMPLEX_16) gfc_array_c16;
376 #endif
377 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_LOGICAL_1) gfc_array_l1;
378 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_LOGICAL_2) gfc_array_l2;
379 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_LOGICAL_4) gfc_array_l4;
380 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_LOGICAL_8) gfc_array_l8;
381 #ifdef HAVE_GFC_LOGICAL_16
382 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_LOGICAL_16) gfc_array_l16;
383 #endif
384 typedef gfc_array_i1 gfc_array_s1;
385 typedef gfc_array_i4 gfc_array_s4;
387 #define GFC_DESCRIPTOR_RANK(desc) ((desc)->dtype.rank)
388 #define GFC_DESCRIPTOR_TYPE(desc) ((desc)->dtype.type)
389 #define GFC_DESCRIPTOR_SIZE(desc) ((desc)->dtype.elem_len)
390 #define GFC_DESCRIPTOR_DATA(desc) ((desc)->base_addr)
391 #define GFC_DESCRIPTOR_DTYPE(desc) ((desc)->dtype)
393 #define GFC_DIMENSION_LBOUND(dim) ((dim).lower_bound)
394 #define GFC_DIMENSION_UBOUND(dim) ((dim)._ubound)
395 #define GFC_DIMENSION_STRIDE(dim) ((dim)._stride)
396 #define GFC_DIMENSION_EXTENT(dim) ((dim)._ubound + 1 - (dim).lower_bound)
397 #define GFC_DIMENSION_SET(dim,lb,ub,str) \
398 do \
400 (dim).lower_bound = lb; \
401 (dim)._ubound = ub; \
402 (dim)._stride = str; \
403 } while (0)
406 #define GFC_DESCRIPTOR_LBOUND(desc,i) ((desc)->dim[i].lower_bound)
407 #define GFC_DESCRIPTOR_UBOUND(desc,i) ((desc)->dim[i]._ubound)
408 #define GFC_DESCRIPTOR_EXTENT(desc,i) ((desc)->dim[i]._ubound + 1 \
409 - (desc)->dim[i].lower_bound)
410 #define GFC_DESCRIPTOR_EXTENT_BYTES(desc,i) \
411 (GFC_DESCRIPTOR_EXTENT(desc,i) * GFC_DESCRIPTOR_SIZE(desc))
413 #define GFC_DESCRIPTOR_STRIDE(desc,i) ((desc)->dim[i]._stride)
414 #define GFC_DESCRIPTOR_STRIDE_BYTES(desc,i) \
415 (GFC_DESCRIPTOR_STRIDE(desc,i) * GFC_DESCRIPTOR_SIZE(desc))
417 /* Macros to get both the size and the type with a single masking operation */
419 #define GFC_DTYPE_SIZE_MASK (-((index_type) 1 << GFC_DTYPE_SIZE_SHIFT))
420 #define GFC_DTYPE_TYPE_SIZE_MASK (GFC_DTYPE_SIZE_MASK | GFC_DTYPE_TYPE_MASK)
422 #define GFC_DTYPE_TYPE_SIZE(desc) (( ((desc)->dtype.type << GFC_DTYPE_TYPE_SHIFT) \
423 | ((desc)->dtype.elem_len << GFC_DTYPE_SIZE_SHIFT) ) & GFC_DTYPE_TYPE_SIZE_MASK)
425 /* Macros to set size and type information. */
427 #define GFC_DTYPE_COPY(a,b) do { (a)->dtype = (b)->dtype; } while(0)
428 #define GFC_DTYPE_COPY_SETRANK(a,b,n) \
429 do { \
430 (a)->dtype.rank = ((b)->dtype.rank | n ); \
431 } while (0)
433 #define GFC_DTYPE_IS_UNSET(a) (unlikely((a)->dtype.elem_len == 0))
434 #define GFC_DTYPE_CLEAR(a) do { (a)->dtype.elem_len = 0; \
435 (a)->dtype.version = 0; \
436 (a)->dtype.rank = 0; \
437 (a)->dtype.type = 0; \
438 (a)->dtype.attribute = 0; \
439 } while(0)
441 #define GFC_DTYPE_INTEGER_1 ((BT_INTEGER << GFC_DTYPE_TYPE_SHIFT) \
442 | (sizeof(GFC_INTEGER_1) << GFC_DTYPE_SIZE_SHIFT))
443 #define GFC_DTYPE_INTEGER_2 ((BT_INTEGER << GFC_DTYPE_TYPE_SHIFT) \
444 | (sizeof(GFC_INTEGER_2) << GFC_DTYPE_SIZE_SHIFT))
445 #define GFC_DTYPE_INTEGER_4 ((BT_INTEGER << GFC_DTYPE_TYPE_SHIFT) \
446 | (sizeof(GFC_INTEGER_4) << GFC_DTYPE_SIZE_SHIFT))
447 #define GFC_DTYPE_INTEGER_8 ((BT_INTEGER << GFC_DTYPE_TYPE_SHIFT) \
448 | (sizeof(GFC_INTEGER_8) << GFC_DTYPE_SIZE_SHIFT))
449 #ifdef HAVE_GFC_INTEGER_16
450 #define GFC_DTYPE_INTEGER_16 ((BT_INTEGER << GFC_DTYPE_TYPE_SHIFT) \
451 | (sizeof(GFC_INTEGER_16) << GFC_DTYPE_SIZE_SHIFT))
452 #endif
454 #define GFC_DTYPE_LOGICAL_1 ((BT_LOGICAL << GFC_DTYPE_TYPE_SHIFT) \
455 | (sizeof(GFC_LOGICAL_1) << GFC_DTYPE_SIZE_SHIFT))
456 #define GFC_DTYPE_LOGICAL_2 ((BT_LOGICAL << GFC_DTYPE_TYPE_SHIFT) \
457 | (sizeof(GFC_LOGICAL_2) << GFC_DTYPE_SIZE_SHIFT))
458 #define GFC_DTYPE_LOGICAL_4 ((BT_LOGICAL << GFC_DTYPE_TYPE_SHIFT) \
459 | (sizeof(GFC_LOGICAL_4) << GFC_DTYPE_SIZE_SHIFT))
460 #define GFC_DTYPE_LOGICAL_8 ((BT_LOGICAL << GFC_DTYPE_TYPE_SHIFT) \
461 | (sizeof(GFC_LOGICAL_8) << GFC_DTYPE_SIZE_SHIFT))
462 #ifdef HAVE_GFC_LOGICAL_16
463 #define GFC_DTYPE_LOGICAL_16 ((BT_LOGICAL << GFC_DTYPE_TYPE_SHIFT) \
464 | (sizeof(GFC_LOGICAL_16) << GFC_DTYPE_SIZE_SHIFT))
465 #endif
467 #define GFC_DTYPE_REAL_4 ((BT_REAL << GFC_DTYPE_TYPE_SHIFT) \
468 | (sizeof(GFC_REAL_4) << GFC_DTYPE_SIZE_SHIFT))
469 #define GFC_DTYPE_REAL_8 ((BT_REAL << GFC_DTYPE_TYPE_SHIFT) \
470 | (sizeof(GFC_REAL_8) << GFC_DTYPE_SIZE_SHIFT))
471 #ifdef HAVE_GFC_REAL_10
472 #define GFC_DTYPE_REAL_10 ((BT_REAL << GFC_DTYPE_TYPE_SHIFT) \
473 | (sizeof(GFC_REAL_10) << GFC_DTYPE_SIZE_SHIFT))
474 #endif
475 #ifdef HAVE_GFC_REAL_16
476 #define GFC_DTYPE_REAL_16 ((BT_REAL << GFC_DTYPE_TYPE_SHIFT) \
477 | (sizeof(GFC_REAL_16) << GFC_DTYPE_SIZE_SHIFT))
478 #endif
480 #define GFC_DTYPE_COMPLEX_4 ((BT_COMPLEX << GFC_DTYPE_TYPE_SHIFT) \
481 | (sizeof(GFC_COMPLEX_4) << GFC_DTYPE_SIZE_SHIFT))
482 #define GFC_DTYPE_COMPLEX_8 ((BT_COMPLEX << GFC_DTYPE_TYPE_SHIFT) \
483 | (sizeof(GFC_COMPLEX_8) << GFC_DTYPE_SIZE_SHIFT))
484 #ifdef HAVE_GFC_COMPLEX_10
485 #define GFC_DTYPE_COMPLEX_10 ((BT_COMPLEX << GFC_DTYPE_TYPE_SHIFT) \
486 | (sizeof(GFC_COMPLEX_10) << GFC_DTYPE_SIZE_SHIFT))
487 #endif
488 #ifdef HAVE_GFC_COMPLEX_16
489 #define GFC_DTYPE_COMPLEX_16 ((BT_COMPLEX << GFC_DTYPE_TYPE_SHIFT) \
490 | (sizeof(GFC_COMPLEX_16) << GFC_DTYPE_SIZE_SHIFT))
491 #endif
493 #define GFC_DTYPE_DERIVED_1 ((BT_DERIVED << GFC_DTYPE_TYPE_SHIFT) \
494 | (sizeof(GFC_INTEGER_1) << GFC_DTYPE_SIZE_SHIFT))
495 #define GFC_DTYPE_DERIVED_2 ((BT_DERIVED << GFC_DTYPE_TYPE_SHIFT) \
496 | (sizeof(GFC_INTEGER_2) << GFC_DTYPE_SIZE_SHIFT))
497 #define GFC_DTYPE_DERIVED_4 ((BT_DERIVED << GFC_DTYPE_TYPE_SHIFT) \
498 | (sizeof(GFC_INTEGER_4) << GFC_DTYPE_SIZE_SHIFT))
499 #define GFC_DTYPE_DERIVED_8 ((BT_DERIVED << GFC_DTYPE_TYPE_SHIFT) \
500 | (sizeof(GFC_INTEGER_8) << GFC_DTYPE_SIZE_SHIFT))
501 #ifdef HAVE_GFC_INTEGER_16
502 #define GFC_DTYPE_DERIVED_16 ((BT_DERIVED << GFC_DTYPE_TYPE_SHIFT) \
503 | (sizeof(GFC_INTEGER_16) << GFC_DTYPE_SIZE_SHIFT))
504 #endif
506 /* Macros to determine the alignment of pointers. */
508 #define GFC_UNALIGNED_2(x) (((uintptr_t)(x)) & \
509 (__alignof__(GFC_INTEGER_2) - 1))
510 #define GFC_UNALIGNED_4(x) (((uintptr_t)(x)) & \
511 (__alignof__(GFC_INTEGER_4) - 1))
512 #define GFC_UNALIGNED_8(x) (((uintptr_t)(x)) & \
513 (__alignof__(GFC_INTEGER_8) - 1))
514 #ifdef HAVE_GFC_INTEGER_16
515 #define GFC_UNALIGNED_16(x) (((uintptr_t)(x)) & \
516 (__alignof__(GFC_INTEGER_16) - 1))
517 #endif
519 #define GFC_UNALIGNED_C4(x) (((uintptr_t)(x)) & \
520 (__alignof__(GFC_COMPLEX_4) - 1))
522 #define GFC_UNALIGNED_C8(x) (((uintptr_t)(x)) & \
523 (__alignof__(GFC_COMPLEX_8) - 1))
525 /* Runtime library include. */
526 #define stringize(x) expand_macro(x)
527 #define expand_macro(x) # x
529 /* Runtime options structure. */
531 typedef struct
533 int stdin_unit, stdout_unit, stderr_unit, optional_plus;
534 int locus;
536 int separator_len;
537 const char *separator;
539 int all_unbuffered, unbuffered_preconnected;
540 int fpe, backtrace;
542 options_t;
544 extern options_t options;
545 internal_proto(options);
547 extern void backtrace_handler (int);
548 internal_proto(backtrace_handler);
551 /* Compile-time options that will influence the library. */
553 typedef struct
555 int warn_std;
556 int allow_std;
557 int pedantic;
558 int convert;
559 int backtrace;
560 int sign_zero;
561 size_t record_marker;
562 int max_subrecord_length;
563 int bounds_check;
564 int fpe_summary;
566 compile_options_t;
568 extern compile_options_t compile_options;
569 internal_proto(compile_options);
571 extern void init_compile_options (void);
572 internal_proto(init_compile_options);
574 #define GFC_MAX_SUBRECORD_LENGTH 2147483639 /* 2**31 - 9 */
576 /* Structure for statement options. */
578 typedef struct
580 const char *name;
581 int value;
583 st_option;
586 /* This is returned by notification_std to know if, given the flags
587 that were given (-std=, -pedantic) we should issue an error, a warning
588 or nothing. */
589 typedef enum
590 { NOTIFICATION_SILENT, NOTIFICATION_WARNING, NOTIFICATION_ERROR }
591 notification;
594 /* The filename and line number don't go inside the globals structure.
595 They are set by the rest of the program and must be linked to. */
597 /* Location of the current library call (optional). */
598 extern unsigned line;
599 iexport_data_proto(line);
601 extern char *filename;
602 iexport_data_proto(filename);
605 #define CHARACTER2(name) \
606 gfc_charlen_type name ## _len; \
607 char * name
609 typedef struct st_parameter_common
611 GFC_INTEGER_4 flags;
612 GFC_INTEGER_4 unit;
613 const char *filename;
614 GFC_INTEGER_4 line;
615 CHARACTER2 (iomsg);
616 GFC_INTEGER_4 *iostat;
618 st_parameter_common;
620 #undef CHARACTER2
622 #define IOPARM_LIBRETURN_MASK (3 << 0)
623 #define IOPARM_LIBRETURN_OK (0 << 0)
624 #define IOPARM_LIBRETURN_ERROR (1 << 0)
625 #define IOPARM_LIBRETURN_END (2 << 0)
626 #define IOPARM_LIBRETURN_EOR (3 << 0)
627 #define IOPARM_ERR (1 << 2)
628 #define IOPARM_END (1 << 3)
629 #define IOPARM_EOR (1 << 4)
630 #define IOPARM_HAS_IOSTAT (1 << 5)
631 #define IOPARM_HAS_IOMSG (1 << 6)
633 #define IOPARM_COMMON_MASK ((1 << 7) - 1)
635 /* Make sure to keep in sync with io/io.h (st_parameter_open). */
636 #define IOPARM_OPEN_HAS_RECL_IN (1 << 7)
637 #define IOPARM_OPEN_HAS_FILE (1 << 8)
638 #define IOPARM_OPEN_HAS_STATUS (1 << 9)
639 #define IOPARM_OPEN_HAS_ACCESS (1 << 10)
640 #define IOPARM_OPEN_HAS_FORM (1 << 11)
641 #define IOPARM_OPEN_HAS_BLANK (1 << 12)
642 #define IOPARM_OPEN_HAS_POSITION (1 << 13)
643 #define IOPARM_OPEN_HAS_ACTION (1 << 14)
644 #define IOPARM_OPEN_HAS_DELIM (1 << 15)
645 #define IOPARM_OPEN_HAS_PAD (1 << 16)
646 #define IOPARM_OPEN_HAS_CONVERT (1 << 17)
647 #define IOPARM_OPEN_HAS_DECIMAL (1 << 18)
648 #define IOPARM_OPEN_HAS_ENCODING (1 << 19)
649 #define IOPARM_OPEN_HAS_ROUND (1 << 20)
650 #define IOPARM_OPEN_HAS_SIGN (1 << 21)
651 #define IOPARM_OPEN_HAS_ASYNCHRONOUS (1 << 22)
652 #define IOPARM_OPEN_HAS_NEWUNIT (1 << 23)
653 #define IOPARM_OPEN_HAS_READONLY (1 << 24)
654 #define IOPARM_OPEN_HAS_CC (1 << 25)
655 #define IOPARM_OPEN_HAS_SHARE (1 << 26)
657 /* library start function and end macro. These can be expanded if needed
658 in the future. cmp is st_parameter_common *cmp */
660 extern void library_start (st_parameter_common *);
661 internal_proto(library_start);
663 #define library_end()
665 /* main.c */
667 extern void stupid_function_name_for_static_linking (void);
668 internal_proto(stupid_function_name_for_static_linking);
670 extern void set_args (int, char **);
671 iexport_proto(set_args);
673 extern void get_args (int *, char ***);
674 internal_proto(get_args);
676 /* backtrace.c */
678 extern void show_backtrace (bool);
679 internal_proto(show_backtrace);
682 /* error.c */
684 #if defined(HAVE_GFC_REAL_16)
685 #define GFC_LARGEST_BUF (sizeof (GFC_REAL_16))
686 #elif defined(HAVE_GFC_INTEGER_16)
687 #define GFC_LARGEST_BUF (sizeof (GFC_INTEGER_LARGEST))
688 #elif defined(HAVE_GFC_REAL_10)
689 #define GFC_LARGEST_BUF (sizeof (GFC_REAL_10))
690 #else
691 #define GFC_LARGEST_BUF (sizeof (GFC_INTEGER_LARGEST))
692 #endif
694 #define GFC_ITOA_BUF_SIZE (sizeof (GFC_INTEGER_LARGEST) * 3 + 2)
695 #define GFC_XTOA_BUF_SIZE (GFC_LARGEST_BUF * 2 + 1)
696 #define GFC_OTOA_BUF_SIZE (GFC_LARGEST_BUF * 3 + 1)
697 #define GFC_BTOA_BUF_SIZE (GFC_LARGEST_BUF * 8 + 1)
699 extern _Noreturn void sys_abort (void);
700 internal_proto(sys_abort);
702 extern _Noreturn void exit_error (int);
703 internal_proto(exit_error);
705 extern ssize_t estr_write (const char *);
706 internal_proto(estr_write);
708 extern int st_vprintf (const char *, va_list);
709 internal_proto(st_vprintf);
711 extern int st_printf (const char *, ...)
712 __attribute__((format (gfc_printf, 1, 2)));
713 internal_proto(st_printf);
715 extern const char *gfc_xtoa (GFC_UINTEGER_LARGEST, char *, size_t);
716 internal_proto(gfc_xtoa);
718 extern _Noreturn void os_error (const char *);
719 iexport_proto(os_error);
721 extern void show_locus (st_parameter_common *);
722 internal_proto(show_locus);
724 extern _Noreturn void runtime_error (const char *, ...)
725 __attribute__ ((format (gfc_printf, 1, 2)));
726 iexport_proto(runtime_error);
728 extern _Noreturn void runtime_error_at (const char *, const char *, ...)
729 __attribute__ ((format (gfc_printf, 2, 3)));
730 iexport_proto(runtime_error_at);
732 extern void runtime_warning_at (const char *, const char *, ...)
733 __attribute__ ((format (gfc_printf, 2, 3)));
734 iexport_proto(runtime_warning_at);
736 extern _Noreturn void internal_error (st_parameter_common *, const char *);
737 internal_proto(internal_error);
739 extern const char *translate_error (int);
740 internal_proto(translate_error);
742 extern void generate_error (st_parameter_common *, int, const char *);
743 iexport_proto(generate_error);
745 extern void generate_warning (st_parameter_common *, const char *);
746 internal_proto(generate_warning);
748 extern bool notify_std (st_parameter_common *, int, const char *);
749 internal_proto(notify_std);
751 extern notification notification_std(int);
752 internal_proto(notification_std);
754 extern char *gf_strerror (int, char *, size_t);
755 internal_proto(gf_strerror);
757 /* fpu.c */
759 extern void set_fpu (void);
760 internal_proto(set_fpu);
762 extern int get_fpu_trap_exceptions (void);
763 internal_proto(get_fpu_trap_exceptions);
765 extern void set_fpu_trap_exceptions (int, int);
766 internal_proto(set_fpu_trap_exceptions);
768 extern int support_fpu_trap (int);
769 internal_proto(support_fpu_trap);
771 extern int get_fpu_except_flags (void);
772 internal_proto(get_fpu_except_flags);
774 extern void set_fpu_except_flags (int, int);
775 internal_proto(set_fpu_except_flags);
777 extern int support_fpu_flag (int);
778 internal_proto(support_fpu_flag);
780 extern void set_fpu_rounding_mode (int);
781 internal_proto(set_fpu_rounding_mode);
783 extern int get_fpu_rounding_mode (void);
784 internal_proto(get_fpu_rounding_mode);
786 extern int support_fpu_rounding_mode (int);
787 internal_proto(support_fpu_rounding_mode);
789 extern void get_fpu_state (void *);
790 internal_proto(get_fpu_state);
792 extern void set_fpu_state (void *);
793 internal_proto(set_fpu_state);
795 extern int get_fpu_underflow_mode (void);
796 internal_proto(get_fpu_underflow_mode);
798 extern void set_fpu_underflow_mode (int);
799 internal_proto(set_fpu_underflow_mode);
801 extern int support_fpu_underflow_control (int);
802 internal_proto(support_fpu_underflow_control);
804 /* memory.c */
806 extern void *xmalloc (size_t) __attribute__ ((malloc));
807 internal_proto(xmalloc);
809 extern void *xmallocarray (size_t, size_t) __attribute__ ((malloc));
810 internal_proto(xmallocarray);
812 extern void *xcalloc (size_t, size_t) __attribute__ ((malloc));
813 internal_proto(xcalloc);
815 extern void *xrealloc (void *, size_t);
816 internal_proto(xrealloc);
818 /* environ.c */
820 extern void init_variables (void);
821 internal_proto(init_variables);
823 unit_convert get_unformatted_convert (int);
824 internal_proto(get_unformatted_convert);
826 /* Secure getenv() which returns NULL if running as SUID/SGID. */
827 #ifndef HAVE_SECURE_GETENV
828 #if defined(HAVE_GETUID) && defined(HAVE_GETEUID) \
829 && defined(HAVE_GETGID) && defined(HAVE_GETEGID)
830 #define FALLBACK_SECURE_GETENV
831 extern char *secure_getenv (const char *);
832 internal_proto(secure_getenv);
833 #else
834 #define secure_getenv getenv
835 #endif
836 #endif
838 /* string.c */
840 extern int find_option (st_parameter_common *, const char *, gfc_charlen_type,
841 const st_option *, const char *);
842 internal_proto(find_option);
844 extern gfc_charlen_type fstrlen (const char *, gfc_charlen_type);
845 internal_proto(fstrlen);
847 extern gfc_charlen_type fstrcpy (char *, gfc_charlen_type, const char *, gfc_charlen_type);
848 internal_proto(fstrcpy);
850 extern gfc_charlen_type cf_strcpy (char *, gfc_charlen_type, const char *);
851 internal_proto(cf_strcpy);
853 extern gfc_charlen_type string_len_trim (gfc_charlen_type, const char *);
854 export_proto(string_len_trim);
856 extern gfc_charlen_type string_len_trim_char4 (gfc_charlen_type,
857 const gfc_char4_t *);
858 export_proto(string_len_trim_char4);
860 extern char *fc_strdup(const char *, gfc_charlen_type);
861 internal_proto(fc_strdup);
863 extern char *fc_strdup_notrim(const char *, gfc_charlen_type);
864 internal_proto(fc_strdup_notrim);
866 extern const char *gfc_itoa(GFC_INTEGER_LARGEST, char *, size_t);
867 internal_proto(gfc_itoa);
869 /* io/intrinsics.c */
871 extern void flush_all_units (void);
872 internal_proto(flush_all_units);
874 /* io.c */
876 extern void init_units (void);
877 internal_proto(init_units);
879 extern void close_units (void);
880 internal_proto(close_units);
882 extern int unit_to_fd (int);
883 internal_proto(unit_to_fd);
885 extern char * filename_from_unit (int);
886 internal_proto(filename_from_unit);
888 /* stop.c */
890 extern _Noreturn void stop_string (const char *, GFC_INTEGER_4);
891 export_proto(stop_string);
893 /* reshape_packed.c */
895 extern void reshape_packed (char *, index_type, const char *, index_type,
896 const char *, index_type);
897 internal_proto(reshape_packed);
899 /* Repacking functions. These are called internally by internal_pack
900 and internal_unpack. */
902 GFC_INTEGER_1 *internal_pack_1 (gfc_array_i1 *);
903 internal_proto(internal_pack_1);
905 GFC_INTEGER_2 *internal_pack_2 (gfc_array_i2 *);
906 internal_proto(internal_pack_2);
908 GFC_INTEGER_4 *internal_pack_4 (gfc_array_i4 *);
909 internal_proto(internal_pack_4);
911 GFC_INTEGER_8 *internal_pack_8 (gfc_array_i8 *);
912 internal_proto(internal_pack_8);
914 #if defined HAVE_GFC_INTEGER_16
915 GFC_INTEGER_16 *internal_pack_16 (gfc_array_i16 *);
916 internal_proto(internal_pack_16);
917 #endif
919 GFC_REAL_4 *internal_pack_r4 (gfc_array_r4 *);
920 internal_proto(internal_pack_r4);
922 GFC_REAL_8 *internal_pack_r8 (gfc_array_r8 *);
923 internal_proto(internal_pack_r8);
925 #if defined HAVE_GFC_REAL_10
926 GFC_REAL_10 *internal_pack_r10 (gfc_array_r10 *);
927 internal_proto(internal_pack_r10);
928 #endif
930 #if defined HAVE_GFC_REAL_16
931 GFC_REAL_16 *internal_pack_r16 (gfc_array_r16 *);
932 internal_proto(internal_pack_r16);
933 #endif
935 GFC_COMPLEX_4 *internal_pack_c4 (gfc_array_c4 *);
936 internal_proto(internal_pack_c4);
938 GFC_COMPLEX_8 *internal_pack_c8 (gfc_array_c8 *);
939 internal_proto(internal_pack_c8);
941 #if defined HAVE_GFC_COMPLEX_10
942 GFC_COMPLEX_10 *internal_pack_c10 (gfc_array_c10 *);
943 internal_proto(internal_pack_c10);
944 #endif
946 #if defined HAVE_GFC_COMPLEX_16
947 GFC_COMPLEX_16 *internal_pack_c16 (gfc_array_c16 *);
948 internal_proto(internal_pack_c16);
949 #endif
951 extern void internal_unpack_1 (gfc_array_i1 *, const GFC_INTEGER_1 *);
952 internal_proto(internal_unpack_1);
954 extern void internal_unpack_2 (gfc_array_i2 *, const GFC_INTEGER_2 *);
955 internal_proto(internal_unpack_2);
957 extern void internal_unpack_4 (gfc_array_i4 *, const GFC_INTEGER_4 *);
958 internal_proto(internal_unpack_4);
960 extern void internal_unpack_8 (gfc_array_i8 *, const GFC_INTEGER_8 *);
961 internal_proto(internal_unpack_8);
963 #if defined HAVE_GFC_INTEGER_16
964 extern void internal_unpack_16 (gfc_array_i16 *, const GFC_INTEGER_16 *);
965 internal_proto(internal_unpack_16);
966 #endif
968 extern void internal_unpack_r4 (gfc_array_r4 *, const GFC_REAL_4 *);
969 internal_proto(internal_unpack_r4);
971 extern void internal_unpack_r8 (gfc_array_r8 *, const GFC_REAL_8 *);
972 internal_proto(internal_unpack_r8);
974 #if defined HAVE_GFC_REAL_10
975 extern void internal_unpack_r10 (gfc_array_r10 *, const GFC_REAL_10 *);
976 internal_proto(internal_unpack_r10);
977 #endif
979 #if defined HAVE_GFC_REAL_16
980 extern void internal_unpack_r16 (gfc_array_r16 *, const GFC_REAL_16 *);
981 internal_proto(internal_unpack_r16);
982 #endif
984 extern void internal_unpack_c4 (gfc_array_c4 *, const GFC_COMPLEX_4 *);
985 internal_proto(internal_unpack_c4);
987 extern void internal_unpack_c8 (gfc_array_c8 *, const GFC_COMPLEX_8 *);
988 internal_proto(internal_unpack_c8);
990 #if defined HAVE_GFC_COMPLEX_10
991 extern void internal_unpack_c10 (gfc_array_c10 *, const GFC_COMPLEX_10 *);
992 internal_proto(internal_unpack_c10);
993 #endif
995 #if defined HAVE_GFC_COMPLEX_16
996 extern void internal_unpack_c16 (gfc_array_c16 *, const GFC_COMPLEX_16 *);
997 internal_proto(internal_unpack_c16);
998 #endif
1000 /* Internal auxiliary functions for the pack intrinsic. */
1002 extern void pack_i1 (gfc_array_i1 *, const gfc_array_i1 *,
1003 const gfc_array_l1 *, const gfc_array_i1 *);
1004 internal_proto(pack_i1);
1006 extern void pack_i2 (gfc_array_i2 *, const gfc_array_i2 *,
1007 const gfc_array_l1 *, const gfc_array_i2 *);
1008 internal_proto(pack_i2);
1010 extern void pack_i4 (gfc_array_i4 *, const gfc_array_i4 *,
1011 const gfc_array_l1 *, const gfc_array_i4 *);
1012 internal_proto(pack_i4);
1014 extern void pack_i8 (gfc_array_i8 *, const gfc_array_i8 *,
1015 const gfc_array_l1 *, const gfc_array_i8 *);
1016 internal_proto(pack_i8);
1018 #ifdef HAVE_GFC_INTEGER_16
1019 extern void pack_i16 (gfc_array_i16 *, const gfc_array_i16 *,
1020 const gfc_array_l1 *, const gfc_array_i16 *);
1021 internal_proto(pack_i16);
1022 #endif
1024 extern void pack_r4 (gfc_array_r4 *, const gfc_array_r4 *,
1025 const gfc_array_l1 *, const gfc_array_r4 *);
1026 internal_proto(pack_r4);
1028 extern void pack_r8 (gfc_array_r8 *, const gfc_array_r8 *,
1029 const gfc_array_l1 *, const gfc_array_r8 *);
1030 internal_proto(pack_r8);
1032 #ifdef HAVE_GFC_REAL_10
1033 extern void pack_r10 (gfc_array_r10 *, const gfc_array_r10 *,
1034 const gfc_array_l1 *, const gfc_array_r10 *);
1035 internal_proto(pack_r10);
1036 #endif
1038 #ifdef HAVE_GFC_REAL_16
1039 extern void pack_r16 (gfc_array_r16 *, const gfc_array_r16 *,
1040 const gfc_array_l1 *, const gfc_array_r16 *);
1041 internal_proto(pack_r16);
1042 #endif
1044 extern void pack_c4 (gfc_array_c4 *, const gfc_array_c4 *,
1045 const gfc_array_l1 *, const gfc_array_c4 *);
1046 internal_proto(pack_c4);
1048 extern void pack_c8 (gfc_array_c8 *, const gfc_array_c8 *,
1049 const gfc_array_l1 *, const gfc_array_c8 *);
1050 internal_proto(pack_c8);
1052 #ifdef HAVE_GFC_REAL_10
1053 extern void pack_c10 (gfc_array_c10 *, const gfc_array_c10 *,
1054 const gfc_array_l1 *, const gfc_array_c10 *);
1055 internal_proto(pack_c10);
1056 #endif
1058 #ifdef HAVE_GFC_REAL_16
1059 extern void pack_c16 (gfc_array_c16 *, const gfc_array_c16 *,
1060 const gfc_array_l1 *, const gfc_array_c16 *);
1061 internal_proto(pack_c16);
1062 #endif
1064 /* Internal auxiliary functions for the unpack intrinsic. */
1066 extern void unpack0_i1 (gfc_array_i1 *, const gfc_array_i1 *,
1067 const gfc_array_l1 *, const GFC_INTEGER_1 *);
1068 internal_proto(unpack0_i1);
1070 extern void unpack0_i2 (gfc_array_i2 *, const gfc_array_i2 *,
1071 const gfc_array_l1 *, const GFC_INTEGER_2 *);
1072 internal_proto(unpack0_i2);
1074 extern void unpack0_i4 (gfc_array_i4 *, const gfc_array_i4 *,
1075 const gfc_array_l1 *, const GFC_INTEGER_4 *);
1076 internal_proto(unpack0_i4);
1078 extern void unpack0_i8 (gfc_array_i8 *, const gfc_array_i8 *,
1079 const gfc_array_l1 *, const GFC_INTEGER_8 *);
1080 internal_proto(unpack0_i8);
1082 #ifdef HAVE_GFC_INTEGER_16
1084 extern void unpack0_i16 (gfc_array_i16 *, const gfc_array_i16 *,
1085 const gfc_array_l1 *, const GFC_INTEGER_16 *);
1086 internal_proto(unpack0_i16);
1088 #endif
1090 extern void unpack0_r4 (gfc_array_r4 *, const gfc_array_r4 *,
1091 const gfc_array_l1 *, const GFC_REAL_4 *);
1092 internal_proto(unpack0_r4);
1094 extern void unpack0_r8 (gfc_array_r8 *, const gfc_array_r8 *,
1095 const gfc_array_l1 *, const GFC_REAL_8 *);
1096 internal_proto(unpack0_r8);
1098 #ifdef HAVE_GFC_REAL_10
1100 extern void unpack0_r10 (gfc_array_r10 *, const gfc_array_r10 *,
1101 const gfc_array_l1 *, const GFC_REAL_10 *);
1102 internal_proto(unpack0_r10);
1104 #endif
1106 #ifdef HAVE_GFC_REAL_16
1108 extern void unpack0_r16 (gfc_array_r16 *, const gfc_array_r16 *,
1109 const gfc_array_l1 *, const GFC_REAL_16 *);
1110 internal_proto(unpack0_r16);
1112 #endif
1114 extern void unpack0_c4 (gfc_array_c4 *, const gfc_array_c4 *,
1115 const gfc_array_l1 *, const GFC_COMPLEX_4 *);
1116 internal_proto(unpack0_c4);
1118 extern void unpack0_c8 (gfc_array_c8 *, const gfc_array_c8 *,
1119 const gfc_array_l1 *, const GFC_COMPLEX_8 *);
1120 internal_proto(unpack0_c8);
1122 #ifdef HAVE_GFC_COMPLEX_10
1124 extern void unpack0_c10 (gfc_array_c10 *, const gfc_array_c10 *,
1125 const gfc_array_l1 *mask, const GFC_COMPLEX_10 *);
1126 internal_proto(unpack0_c10);
1128 #endif
1130 #ifdef HAVE_GFC_COMPLEX_16
1132 extern void unpack0_c16 (gfc_array_c16 *, const gfc_array_c16 *,
1133 const gfc_array_l1 *, const GFC_COMPLEX_16 *);
1134 internal_proto(unpack0_c16);
1136 #endif
1138 extern void unpack1_i1 (gfc_array_i1 *, const gfc_array_i1 *,
1139 const gfc_array_l1 *, const gfc_array_i1 *);
1140 internal_proto(unpack1_i1);
1142 extern void unpack1_i2 (gfc_array_i2 *, const gfc_array_i2 *,
1143 const gfc_array_l1 *, const gfc_array_i2 *);
1144 internal_proto(unpack1_i2);
1146 extern void unpack1_i4 (gfc_array_i4 *, const gfc_array_i4 *,
1147 const gfc_array_l1 *, const gfc_array_i4 *);
1148 internal_proto(unpack1_i4);
1150 extern void unpack1_i8 (gfc_array_i8 *, const gfc_array_i8 *,
1151 const gfc_array_l1 *, const gfc_array_i8 *);
1152 internal_proto(unpack1_i8);
1154 #ifdef HAVE_GFC_INTEGER_16
1155 extern void unpack1_i16 (gfc_array_i16 *, const gfc_array_i16 *,
1156 const gfc_array_l1 *, const gfc_array_i16 *);
1157 internal_proto(unpack1_i16);
1158 #endif
1160 extern void unpack1_r4 (gfc_array_r4 *, const gfc_array_r4 *,
1161 const gfc_array_l1 *, const gfc_array_r4 *);
1162 internal_proto(unpack1_r4);
1164 extern void unpack1_r8 (gfc_array_r8 *, const gfc_array_r8 *,
1165 const gfc_array_l1 *, const gfc_array_r8 *);
1166 internal_proto(unpack1_r8);
1168 #ifdef HAVE_GFC_REAL_10
1169 extern void unpack1_r10 (gfc_array_r10 *, const gfc_array_r10 *,
1170 const gfc_array_l1 *, const gfc_array_r10 *);
1171 internal_proto(unpack1_r10);
1172 #endif
1174 #ifdef HAVE_GFC_REAL_16
1175 extern void unpack1_r16 (gfc_array_r16 *, const gfc_array_r16 *,
1176 const gfc_array_l1 *, const gfc_array_r16 *);
1177 internal_proto(unpack1_r16);
1178 #endif
1180 extern void unpack1_c4 (gfc_array_c4 *, const gfc_array_c4 *,
1181 const gfc_array_l1 *, const gfc_array_c4 *);
1182 internal_proto(unpack1_c4);
1184 extern void unpack1_c8 (gfc_array_c8 *, const gfc_array_c8 *,
1185 const gfc_array_l1 *, const gfc_array_c8 *);
1186 internal_proto(unpack1_c8);
1188 #ifdef HAVE_GFC_COMPLEX_10
1189 extern void unpack1_c10 (gfc_array_c10 *, const gfc_array_c10 *,
1190 const gfc_array_l1 *, const gfc_array_c10 *);
1191 internal_proto(unpack1_c10);
1192 #endif
1194 #ifdef HAVE_GFC_COMPLEX_16
1195 extern void unpack1_c16 (gfc_array_c16 *, const gfc_array_c16 *,
1196 const gfc_array_l1 *, const gfc_array_c16 *);
1197 internal_proto(unpack1_c16);
1198 #endif
1200 /* Helper functions for spread. */
1202 extern void spread_i1 (gfc_array_i1 *, const gfc_array_i1 *,
1203 const index_type, const index_type);
1204 internal_proto(spread_i1);
1206 extern void spread_i2 (gfc_array_i2 *, const gfc_array_i2 *,
1207 const index_type, const index_type);
1208 internal_proto(spread_i2);
1210 extern void spread_i4 (gfc_array_i4 *, const gfc_array_i4 *,
1211 const index_type, const index_type);
1212 internal_proto(spread_i4);
1214 extern void spread_i8 (gfc_array_i8 *, const gfc_array_i8 *,
1215 const index_type, const index_type);
1216 internal_proto(spread_i8);
1218 #ifdef HAVE_GFC_INTEGER_16
1219 extern void spread_i16 (gfc_array_i16 *, const gfc_array_i16 *,
1220 const index_type, const index_type);
1221 internal_proto(spread_i16);
1223 #endif
1225 extern void spread_r4 (gfc_array_r4 *, const gfc_array_r4 *,
1226 const index_type, const index_type);
1227 internal_proto(spread_r4);
1229 extern void spread_r8 (gfc_array_r8 *, const gfc_array_r8 *,
1230 const index_type, const index_type);
1231 internal_proto(spread_r8);
1233 #ifdef HAVE_GFC_REAL_10
1234 extern void spread_r10 (gfc_array_r10 *, const gfc_array_r10 *,
1235 const index_type, const index_type);
1236 internal_proto(spread_r10);
1238 #endif
1240 #ifdef HAVE_GFC_REAL_16
1241 extern void spread_r16 (gfc_array_r16 *, const gfc_array_r16 *,
1242 const index_type, const index_type);
1243 internal_proto(spread_r16);
1245 #endif
1247 extern void spread_c4 (gfc_array_c4 *, const gfc_array_c4 *,
1248 const index_type, const index_type);
1249 internal_proto(spread_c4);
1251 extern void spread_c8 (gfc_array_c8 *, const gfc_array_c8 *,
1252 const index_type, const index_type);
1253 internal_proto(spread_c8);
1255 #ifdef HAVE_GFC_COMPLEX_10
1256 extern void spread_c10 (gfc_array_c10 *, const gfc_array_c10 *,
1257 const index_type, const index_type);
1258 internal_proto(spread_c10);
1260 #endif
1262 #ifdef HAVE_GFC_COMPLEX_16
1263 extern void spread_c16 (gfc_array_c16 *, const gfc_array_c16 *,
1264 const index_type, const index_type);
1265 internal_proto(spread_c16);
1267 #endif
1269 extern void spread_scalar_i1 (gfc_array_i1 *, const GFC_INTEGER_1 *,
1270 const index_type, const index_type);
1271 internal_proto(spread_scalar_i1);
1273 extern void spread_scalar_i2 (gfc_array_i2 *, const GFC_INTEGER_2 *,
1274 const index_type, const index_type);
1275 internal_proto(spread_scalar_i2);
1277 extern void spread_scalar_i4 (gfc_array_i4 *, const GFC_INTEGER_4 *,
1278 const index_type, const index_type);
1279 internal_proto(spread_scalar_i4);
1281 extern void spread_scalar_i8 (gfc_array_i8 *, const GFC_INTEGER_8 *,
1282 const index_type, const index_type);
1283 internal_proto(spread_scalar_i8);
1285 #ifdef HAVE_GFC_INTEGER_16
1286 extern void spread_scalar_i16 (gfc_array_i16 *, const GFC_INTEGER_16 *,
1287 const index_type, const index_type);
1288 internal_proto(spread_scalar_i16);
1290 #endif
1292 extern void spread_scalar_r4 (gfc_array_r4 *, const GFC_REAL_4 *,
1293 const index_type, const index_type);
1294 internal_proto(spread_scalar_r4);
1296 extern void spread_scalar_r8 (gfc_array_r8 *, const GFC_REAL_8 *,
1297 const index_type, const index_type);
1298 internal_proto(spread_scalar_r8);
1300 #ifdef HAVE_GFC_REAL_10
1301 extern void spread_scalar_r10 (gfc_array_r10 *, const GFC_REAL_10 *,
1302 const index_type, const index_type);
1303 internal_proto(spread_scalar_r10);
1305 #endif
1307 #ifdef HAVE_GFC_REAL_16
1308 extern void spread_scalar_r16 (gfc_array_r16 *, const GFC_REAL_16 *,
1309 const index_type, const index_type);
1310 internal_proto(spread_scalar_r16);
1312 #endif
1314 extern void spread_scalar_c4 (gfc_array_c4 *, const GFC_COMPLEX_4 *,
1315 const index_type, const index_type);
1316 internal_proto(spread_scalar_c4);
1318 extern void spread_scalar_c8 (gfc_array_c8 *, const GFC_COMPLEX_8 *,
1319 const index_type, const index_type);
1320 internal_proto(spread_scalar_c8);
1322 #ifdef HAVE_GFC_COMPLEX_10
1323 extern void spread_scalar_c10 (gfc_array_c10 *, const GFC_COMPLEX_10 *,
1324 const index_type, const index_type);
1325 internal_proto(spread_scalar_c10);
1327 #endif
1329 #ifdef HAVE_GFC_COMPLEX_16
1330 extern void spread_scalar_c16 (gfc_array_c16 *, const GFC_COMPLEX_16 *,
1331 const index_type, const index_type);
1332 internal_proto(spread_scalar_c16);
1334 #endif
1336 /* string_intrinsics.c */
1338 extern int compare_string (gfc_charlen_type, const char *,
1339 gfc_charlen_type, const char *);
1340 iexport_proto(compare_string);
1342 extern int compare_string_char4 (gfc_charlen_type, const gfc_char4_t *,
1343 gfc_charlen_type, const gfc_char4_t *);
1344 iexport_proto(compare_string_char4);
1346 extern int memcmp_char4 (const void *, const void *, size_t);
1347 internal_proto(memcmp_char4);
1350 /* random.c */
1352 extern void random_seed_i4 (GFC_INTEGER_4 * size, gfc_array_i4 * put,
1353 gfc_array_i4 * get);
1354 iexport_proto(random_seed_i4);
1355 extern void random_seed_i8 (GFC_INTEGER_8 * size, gfc_array_i8 * put,
1356 gfc_array_i8 * get);
1357 iexport_proto(random_seed_i8);
1359 /* size.c */
1361 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, void) array_t;
1363 extern index_type size0 (const array_t * array);
1364 iexport_proto(size0);
1366 /* bounds.c */
1368 extern void bounds_equal_extents (array_t *, array_t *, const char *,
1369 const char *);
1370 internal_proto(bounds_equal_extents);
1372 extern void bounds_reduced_extents (array_t *, array_t *, int, const char *,
1373 const char *intrinsic);
1374 internal_proto(bounds_reduced_extents);
1376 extern void bounds_iforeach_return (array_t *, array_t *, const char *);
1377 internal_proto(bounds_iforeach_return);
1379 extern void bounds_ifunction_return (array_t *, const index_type *,
1380 const char *, const char *);
1381 internal_proto(bounds_ifunction_return);
1383 extern index_type count_0 (const gfc_array_l1 *);
1385 internal_proto(count_0);
1387 /* Internal auxiliary functions for cshift */
1389 void cshift0_i1 (gfc_array_i1 *, const gfc_array_i1 *, ptrdiff_t, int);
1390 internal_proto(cshift0_i1);
1392 void cshift0_i2 (gfc_array_i2 *, const gfc_array_i2 *, ptrdiff_t, int);
1393 internal_proto(cshift0_i2);
1395 void cshift0_i4 (gfc_array_i4 *, const gfc_array_i4 *, ptrdiff_t, int);
1396 internal_proto(cshift0_i4);
1398 void cshift0_i8 (gfc_array_i8 *, const gfc_array_i8 *, ptrdiff_t, int);
1399 internal_proto(cshift0_i8);
1401 #ifdef HAVE_GFC_INTEGER_16
1402 void cshift0_i16 (gfc_array_i16 *, const gfc_array_i16 *, ptrdiff_t, int);
1403 internal_proto(cshift0_i16);
1404 #endif
1406 void cshift0_r4 (gfc_array_r4 *, const gfc_array_r4 *, ptrdiff_t, int);
1407 internal_proto(cshift0_r4);
1409 void cshift0_r8 (gfc_array_r8 *, const gfc_array_r8 *, ptrdiff_t, int);
1410 internal_proto(cshift0_r8);
1412 #ifdef HAVE_GFC_REAL_10
1413 void cshift0_r10 (gfc_array_r10 *, const gfc_array_r10 *, ptrdiff_t, int);
1414 internal_proto(cshift0_r10);
1415 #endif
1417 #ifdef HAVE_GFC_REAL_16
1418 void cshift0_r16 (gfc_array_r16 *, const gfc_array_r16 *, ptrdiff_t, int);
1419 internal_proto(cshift0_r16);
1420 #endif
1422 void cshift0_c4 (gfc_array_c4 *, const gfc_array_c4 *, ptrdiff_t, int);
1423 internal_proto(cshift0_c4);
1425 void cshift0_c8 (gfc_array_c8 *, const gfc_array_c8 *, ptrdiff_t, int);
1426 internal_proto(cshift0_c8);
1428 #ifdef HAVE_GFC_COMPLEX_10
1429 void cshift0_c10 (gfc_array_c10 *, const gfc_array_c10 *, ptrdiff_t, int);
1430 internal_proto(cshift0_c10);
1431 #endif
1433 #ifdef HAVE_GFC_COMPLEX_16
1434 void cshift0_c16 (gfc_array_c16 *, const gfc_array_c16 *, ptrdiff_t, int);
1435 internal_proto(cshift0_c16);
1436 #endif
1438 #if defined (HAVE_GFC_INTEGER_4) && defined (HAVE_GFC_INTEGER_1)
1439 void cshift1_4_i1 (gfc_array_i1 * const restrict,
1440 const gfc_array_i1 * const restrict,
1441 const gfc_array_i4 * const restrict,
1442 const GFC_INTEGER_4 * const restrict);
1443 internal_proto(cshift1_4_i1);
1444 #endif
1446 #if defined (HAVE_GFC_INTEGER_4) && defined (HAVE_GFC_INTEGER_2)
1447 void cshift1_4_i2 (gfc_array_i2 * const restrict,
1448 const gfc_array_i2 * const restrict,
1449 const gfc_array_i4 * const restrict,
1450 const GFC_INTEGER_4 * const restrict);
1451 internal_proto(cshift1_4_i2);
1452 #endif
1454 #if defined (HAVE_GFC_INTEGER_4) && defined (HAVE_GFC_INTEGER_4)
1455 void cshift1_4_i4 (gfc_array_i4 * const restrict,
1456 const gfc_array_i4 * const restrict,
1457 const gfc_array_i4 * const restrict,
1458 const GFC_INTEGER_4 * const restrict);
1459 internal_proto(cshift1_4_i4);
1460 #endif
1462 #if defined (HAVE_GFC_INTEGER_4) && defined (HAVE_GFC_INTEGER_8)
1463 void cshift1_4_i8 (gfc_array_i8 * const restrict,
1464 const gfc_array_i8 * const restrict,
1465 const gfc_array_i4 * const restrict,
1466 const GFC_INTEGER_4 * const restrict);
1467 internal_proto(cshift1_4_i8);
1468 #endif
1470 #if defined (HAVE_GFC_INTEGER_4) && defined (HAVE_GFC_INTEGER_16)
1471 void cshift1_4_i16 (gfc_array_i16 * const restrict,
1472 const gfc_array_i16 * const restrict,
1473 const gfc_array_i4 * const restrict,
1474 const GFC_INTEGER_4 * const restrict);
1475 internal_proto(cshift1_4_i16);
1476 #endif
1478 #if defined (HAVE_GFC_INTEGER_8) && defined (HAVE_GFC_INTEGER_1)
1479 void cshift1_8_i1 (gfc_array_i1 * const restrict,
1480 const gfc_array_i1 * const restrict,
1481 const gfc_array_i8 * const restrict,
1482 const GFC_INTEGER_8 * const restrict);
1483 internal_proto(cshift1_8_i1);
1484 #endif
1486 #if defined (HAVE_GFC_INTEGER_8) && defined (HAVE_GFC_INTEGER_2)
1487 void cshift1_8_i2 (gfc_array_i2 * const restrict,
1488 const gfc_array_i2 * const restrict,
1489 const gfc_array_i8 * const restrict,
1490 const GFC_INTEGER_8 * const restrict);
1491 internal_proto(cshift1_8_i2);
1492 #endif
1494 #if defined (HAVE_GFC_INTEGER_8) && defined (HAVE_GFC_INTEGER_4)
1495 void cshift1_8_i4 (gfc_array_i4 * const restrict,
1496 const gfc_array_i4 * const restrict,
1497 const gfc_array_i8 * const restrict,
1498 const GFC_INTEGER_8 * const restrict);
1499 internal_proto(cshift1_8_i4);
1500 #endif
1502 #if defined (HAVE_GFC_INTEGER_8) && defined (HAVE_GFC_INTEGER_8)
1503 void cshift1_8_i8 (gfc_array_i8 * const restrict,
1504 const gfc_array_i8 * const restrict,
1505 const gfc_array_i8 * const restrict,
1506 const GFC_INTEGER_8 * const restrict);
1507 internal_proto(cshift1_8_i8);
1508 #endif
1510 #if defined (HAVE_GFC_INTEGER_8) && defined (HAVE_GFC_INTEGER_16)
1511 void cshift1_8_i16 (gfc_array_i16 * const restrict,
1512 const gfc_array_i16 * const restrict,
1513 const gfc_array_i8 * const restrict,
1514 const GFC_INTEGER_8 * const restrict);
1515 internal_proto(cshift1_8_i16);
1516 #endif
1518 #if defined (HAVE_GFC_INTEGER_16) && defined (HAVE_GFC_INTEGER_1)
1519 void cshift1_16_i1 (gfc_array_i1 * const restrict,
1520 const gfc_array_i1 * const restrict,
1521 const gfc_array_i16 * const restrict,
1522 const GFC_INTEGER_16 * const restrict);
1523 internal_proto(cshift1_16_i1);
1524 #endif
1526 #if defined (HAVE_GFC_INTEGER_16) && defined (HAVE_GFC_INTEGER_2)
1527 void cshift1_16_i2 (gfc_array_i2 * const restrict,
1528 const gfc_array_i2 * const restrict,
1529 const gfc_array_i16 * const restrict,
1530 const GFC_INTEGER_16 * const restrict);
1531 internal_proto(cshift1_16_i2);
1532 #endif
1534 #if defined (HAVE_GFC_INTEGER_16) && defined (HAVE_GFC_INTEGER_4)
1535 void cshift1_16_i4 (gfc_array_i4 * const restrict,
1536 const gfc_array_i4 * const restrict,
1537 const gfc_array_i16 * const restrict,
1538 const GFC_INTEGER_16 * const restrict);
1539 internal_proto(cshift1_16_i4);
1540 #endif
1542 #if defined (HAVE_GFC_INTEGER_16) && defined (HAVE_GFC_INTEGER_8)
1543 void cshift1_16_i8 (gfc_array_i8 * const restrict,
1544 const gfc_array_i8 * const restrict,
1545 const gfc_array_i16 * const restrict,
1546 const GFC_INTEGER_16 * const restrict);
1547 internal_proto(cshift1_16_i8);
1548 #endif
1550 #if defined (HAVE_GFC_INTEGER_16) && defined (HAVE_GFC_INTEGER_16)
1551 void cshift1_16_i16 (gfc_array_i16 * const restrict,
1552 const gfc_array_i16 * const restrict,
1553 const gfc_array_i16 * const restrict,
1554 const GFC_INTEGER_16 * const restrict);
1555 internal_proto(cshift1_16_i16);
1556 #endif
1558 #if defined (HAVE_GFC_INTEGER_4) && defined (HAVE_GFC_REAL_4)
1559 void cshift1_4_r4 (gfc_array_r4 * const restrict,
1560 const gfc_array_r4 * const restrict,
1561 const gfc_array_i4 * const restrict,
1562 const GFC_INTEGER_4 * const restrict);
1563 internal_proto(cshift1_4_r4);
1564 #endif
1566 #if defined (HAVE_GFC_INTEGER_4) && defined (HAVE_GFC_REAL_8)
1567 void cshift1_4_r8 (gfc_array_r8 * const restrict,
1568 const gfc_array_r8 * const restrict,
1569 const gfc_array_i4 * const restrict,
1570 const GFC_INTEGER_4 * const restrict);
1571 internal_proto(cshift1_4_r8);
1572 #endif
1574 #if defined (HAVE_GFC_INTEGER_4) && defined (HAVE_GFC_REAL_10)
1575 void cshift1_4_r10 (gfc_array_r10 * const restrict,
1576 const gfc_array_r10 * const restrict,
1577 const gfc_array_i4 * const restrict,
1578 const GFC_INTEGER_4 * const restrict);
1579 internal_proto(cshift1_4_r10);
1580 #endif
1582 #if defined (HAVE_GFC_INTEGER_4) && defined (HAVE_GFC_REAL_16)
1583 void cshift1_4_r16 (gfc_array_r16 * const restrict,
1584 const gfc_array_r16 * const restrict,
1585 const gfc_array_i4 * const restrict,
1586 const GFC_INTEGER_4 * const restrict);
1587 internal_proto(cshift1_4_r16);
1588 #endif
1590 #if defined (HAVE_GFC_INTEGER_8) && defined (HAVE_GFC_REAL_4)
1591 void cshift1_8_r4 (gfc_array_r4 * const restrict,
1592 const gfc_array_r4 * const restrict,
1593 const gfc_array_i8 * const restrict,
1594 const GFC_INTEGER_8 * const restrict);
1595 internal_proto(cshift1_8_r4);
1596 #endif
1598 #if defined (HAVE_GFC_INTEGER_8) && defined (HAVE_GFC_REAL_8)
1599 void cshift1_8_r8 (gfc_array_r8 * const restrict,
1600 const gfc_array_r8 * const restrict,
1601 const gfc_array_i8 * const restrict,
1602 const GFC_INTEGER_8 * const restrict);
1603 internal_proto(cshift1_8_r8);
1604 #endif
1606 #if defined (HAVE_GFC_INTEGER_8) && defined (HAVE_GFC_REAL_10)
1607 void cshift1_8_r10 (gfc_array_r10 * const restrict,
1608 const gfc_array_r10 * const restrict,
1609 const gfc_array_i8 * const restrict,
1610 const GFC_INTEGER_8 * const restrict);
1611 internal_proto(cshift1_8_r10);
1612 #endif
1614 #if defined (HAVE_GFC_INTEGER_8) && defined (HAVE_GFC_REAL_16)
1615 void cshift1_8_r16 (gfc_array_r16 * const restrict,
1616 const gfc_array_r16 * const restrict,
1617 const gfc_array_i8 * const restrict,
1618 const GFC_INTEGER_8 * const restrict);
1619 internal_proto(cshift1_8_r16);
1620 #endif
1622 #if defined (HAVE_GFC_INTEGER_16) && defined (HAVE_GFC_REAL_4)
1623 void cshift1_16_r4 (gfc_array_r4 * const restrict,
1624 const gfc_array_r4 * const restrict,
1625 const gfc_array_i16 * const restrict,
1626 const GFC_INTEGER_16 * const restrict);
1627 internal_proto(cshift1_16_r4);
1628 #endif
1630 #if defined (HAVE_GFC_INTEGER_16) && defined (HAVE_GFC_REAL_8)
1631 void cshift1_16_r8 (gfc_array_r8 * const restrict,
1632 const gfc_array_r8 * const restrict,
1633 const gfc_array_i16 * const restrict,
1634 const GFC_INTEGER_16 * const restrict);
1635 internal_proto(cshift1_16_r8);
1636 #endif
1638 #if defined (HAVE_GFC_INTEGER_16) && defined (HAVE_GFC_REAL_10)
1639 void cshift1_16_r10 (gfc_array_r10 * const restrict,
1640 const gfc_array_r10 * const restrict,
1641 const gfc_array_i16 * const restrict,
1642 const GFC_INTEGER_16 * const restrict);
1643 internal_proto(cshift1_16_r10);
1644 #endif
1646 #if defined (HAVE_GFC_INTEGER_16) && defined (HAVE_GFC_REAL_16)
1647 void cshift1_16_r16 (gfc_array_r16 * const restrict,
1648 const gfc_array_r16 * const restrict,
1649 const gfc_array_i16 * const restrict,
1650 const GFC_INTEGER_16 * const restrict);
1651 internal_proto(cshift1_16_r16);
1652 #endif
1654 #if defined (HAVE_GFC_INTEGER_4) && defined (HAVE_GFC_COMPLEX_4)
1655 void cshift1_4_c4 (gfc_array_c4 * const restrict,
1656 const gfc_array_c4 * const restrict,
1657 const gfc_array_i4 * const restrict,
1658 const GFC_INTEGER_4 * const restrict);
1659 internal_proto(cshift1_4_c4);
1660 #endif
1662 #if defined (HAVE_GFC_INTEGER_4) && defined (HAVE_GFC_COMPLEX_8)
1663 void cshift1_4_c8 (gfc_array_c8 * const restrict,
1664 const gfc_array_c8 * const restrict,
1665 const gfc_array_i4 * const restrict,
1666 const GFC_INTEGER_4 * const restrict);
1667 internal_proto(cshift1_4_c8);
1668 #endif
1670 #if defined (HAVE_GFC_INTEGER_4) && defined (HAVE_GFC_COMPLEX_10)
1671 void cshift1_4_c10 (gfc_array_c10 * const restrict,
1672 const gfc_array_c10 * const restrict,
1673 const gfc_array_i4 * const restrict,
1674 const GFC_INTEGER_4 * const restrict);
1675 internal_proto(cshift1_4_c10);
1676 #endif
1678 #if defined (HAVE_GFC_INTEGER_4) && defined (HAVE_GFC_COMPLEX_16)
1679 void cshift1_4_c16 (gfc_array_c16 * const restrict,
1680 const gfc_array_c16 * const restrict,
1681 const gfc_array_i4 * const restrict,
1682 const GFC_INTEGER_4 * const restrict);
1683 internal_proto(cshift1_4_c16);
1684 #endif
1686 #if defined (HAVE_GFC_INTEGER_8) && defined (HAVE_GFC_COMPLEX_4)
1687 void cshift1_8_c4 (gfc_array_c4 * const restrict,
1688 const gfc_array_c4 * const restrict,
1689 const gfc_array_i8 * const restrict,
1690 const GFC_INTEGER_8 * const restrict);
1691 internal_proto(cshift1_8_c4);
1692 #endif
1694 #if defined (HAVE_GFC_INTEGER_8) && defined (HAVE_GFC_COMPLEX_8)
1695 void cshift1_8_c8 (gfc_array_c8 * const restrict,
1696 const gfc_array_c8 * const restrict,
1697 const gfc_array_i8 * const restrict,
1698 const GFC_INTEGER_8 * const restrict);
1699 internal_proto(cshift1_8_c8);
1700 #endif
1702 #if defined (HAVE_GFC_INTEGER_8) && defined (HAVE_GFC_COMPLEX_10)
1703 void cshift1_8_c10 (gfc_array_c10 * const restrict,
1704 const gfc_array_c10 * const restrict,
1705 const gfc_array_i8 * const restrict,
1706 const GFC_INTEGER_8 * const restrict);
1707 internal_proto(cshift1_8_c10);
1708 #endif
1710 #if defined (HAVE_GFC_INTEGER_8) && defined (HAVE_GFC_COMPLEX_16)
1711 void cshift1_8_c16 (gfc_array_c16 * const restrict,
1712 const gfc_array_c16 * const restrict,
1713 const gfc_array_i8 * const restrict,
1714 const GFC_INTEGER_8 * const restrict);
1715 internal_proto(cshift1_8_c16);
1716 #endif
1718 #if defined (HAVE_GFC_INTEGER_16) && defined (HAVE_GFC_COMPLEX_4)
1719 void cshift1_16_c4 (gfc_array_c4 * const restrict,
1720 const gfc_array_c4 * const restrict,
1721 const gfc_array_i16 * const restrict,
1722 const GFC_INTEGER_16 * const restrict);
1723 internal_proto(cshift1_16_c4);
1724 #endif
1726 #if defined (HAVE_GFC_INTEGER_16) && defined (HAVE_GFC_COMPLEX_8)
1727 void cshift1_16_c8 (gfc_array_c8 * const restrict,
1728 const gfc_array_c8 * const restrict,
1729 const gfc_array_i16 * const restrict,
1730 const GFC_INTEGER_16 * const restrict);
1731 internal_proto(cshift1_16_c8);
1732 #endif
1734 #if defined (HAVE_GFC_INTEGER_16) && defined (HAVE_GFC_COMPLEX_10)
1735 void cshift1_16_c10 (gfc_array_c10 * const restrict,
1736 const gfc_array_c10 * const restrict,
1737 const gfc_array_i16 * const restrict,
1738 const GFC_INTEGER_16 * const restrict);
1739 internal_proto(cshift1_16_c10);
1740 #endif
1742 #if defined (HAVE_GFC_INTEGER_16) && defined (HAVE_GFC_COMPLEX_16)
1743 void cshift1_16_c16 (gfc_array_c16 * const restrict,
1744 const gfc_array_c16 * const restrict,
1745 const gfc_array_i16 * const restrict,
1746 const GFC_INTEGER_16 * const restrict);
1747 internal_proto(cshift1_16_c16);
1748 #endif
1751 #endif /* LIBGFOR_H */