1 /* Copyright (C) 2002-2024 Free Software Foundation, Inc.
2 Contributed by Paul Brook
4 This file is part of the GNU Fortran runtime library (libgfortran).
6 Libgfortran is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
11 Libgfortran is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 Under Section 7 of GPL version 3, you are granted additional
17 permissions described in the GCC Runtime Library Exception, version
18 3.1, as published by the Free Software Foundation.
20 You should have received a copy of the GNU General Public License and
21 a copy of the GCC Runtime Library Exception along with this program;
22 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 <http://www.gnu.org/licenses/>. */
25 #include "libgfortran.h"
31 /* Given a fortran string, return its length exclusive of the trailing
35 fstrlen (const char *string
, gfc_charlen_type len
)
37 for (; len
> 0; len
--)
38 if (string
[len
-1] != ' ')
45 /* Copy a Fortran string (not null-terminated, hence length arguments
46 for both source and destination strings. Returns the non-padded
47 length of the destination. */
50 fstrcpy (char *dest
, gfc_charlen_type destlen
,
51 const char *src
, gfc_charlen_type srclen
)
53 if (srclen
>= destlen
)
55 /* This will truncate if too long. */
56 memcpy (dest
, src
, destlen
);
61 memcpy (dest
, src
, srclen
);
62 /* Pad with spaces. */
63 memset (&dest
[srclen
], ' ', destlen
- srclen
);
69 /* Copy a null-terminated C string to a non-null-terminated Fortran
70 string. Returns the non-padded length of the destination string. */
73 cf_strcpy (char *dest
, gfc_charlen_type dest_len
, const char *src
)
77 src_len
= strlen (src
);
79 if (src_len
>= (size_t) dest_len
)
81 /* This will truncate if too long. */
82 memcpy (dest
, src
, dest_len
);
87 memcpy (dest
, src
, src_len
);
88 /* Pad with spaces. */
89 memset (&dest
[src_len
], ' ', dest_len
- src_len
);
97 strnlen (const char *s
, size_t maxlen
)
99 for (size_t ii
= 0; ii
< maxlen
; ii
++)
111 strndup (const char *s
, size_t n
)
113 size_t len
= strnlen (s
, n
);
114 char *p
= malloc (len
+ 1);
124 /* Duplicate a non-null-terminated Fortran string to a malloced
125 null-terminated C string. */
128 fc_strdup (const char *src
, gfc_charlen_type src_len
)
130 gfc_charlen_type n
= fstrlen (src
, src_len
);
131 char *p
= strndup (src
, n
);
133 os_error ("Memory allocation failed in fc_strdup");
138 /* Duplicate a non-null-terminated Fortran string to a malloced
139 null-terminated C string, without getting rid of trailing
143 fc_strdup_notrim (const char *src
, gfc_charlen_type src_len
)
145 char *p
= strndup (src
, src_len
);
147 os_error ("Memory allocation failed in fc_strdup");
152 /* Given a fortran string and an array of st_option structures, search through
153 the array to find a match. If the option is not found, we generate an error
154 if no default is provided. */
157 find_option (st_parameter_common
*cmp
, const char *s1
, gfc_charlen_type s1_len
,
158 const st_option
* opts
, const char *error_message
)
160 /* Strip trailing blanks from the Fortran string. */
161 size_t len
= (size_t) fstrlen (s1
, s1_len
);
163 for (; opts
->name
; opts
++)
164 if (len
== strlen(opts
->name
) && strncasecmp (s1
, opts
->name
, len
) == 0)
167 generate_error (cmp
, LIBERROR_BAD_OPTION
, error_message
);
173 /* Fast helper function for a positive value that fits in uint64_t. */
176 itoa64 (uint64_t n
, char *p
)
180 *--p
= '0' + (n
% 10);
187 #if defined(HAVE_GFC_INTEGER_16)
188 # define TEN19 ((GFC_UINTEGER_LARGEST) 1000000 * (GFC_UINTEGER_LARGEST) 1000000 * (GFC_UINTEGER_LARGEST) 10000000)
190 /* Same as itoa64(), with zero padding of 19 digits. */
193 itoa64_pad19 (uint64_t n
, char *p
)
195 for (int k
= 0; k
< 19; k
++)
197 *--p
= '0' + (n
% 10);
205 /* Integer to decimal conversion.
207 This function is much more restricted than the widespread (but
208 non-standard) itoa() function. This version has the following
211 - it takes only non-negative arguments
212 - it is async-signal-safe (we use it runtime/backtrace.c)
213 - it works in base 10 (see xtoa, otoa, btoa functions
214 in io/write.c for other radices)
218 gfc_itoa (GFC_UINTEGER_LARGEST n
, char *buffer
, size_t len
)
222 if (len
< GFC_ITOA_BUF_SIZE
)
228 p
= buffer
+ GFC_ITOA_BUF_SIZE
- 1;
231 #if defined(HAVE_GFC_INTEGER_16)
232 /* On targets that have a 128-bit integer type, division in that type
233 is slow, because it occurs through a function call. We avoid that. */
236 /* If the value fits in uint64_t, use the fast function. */
237 return itoa64 (n
, p
);
240 /* Otherwise, break down into smaller bits by division. Two calls to
241 the uint64_t function are not sufficient for all 128-bit unsigned
242 integers (we would need three calls), but they do suffice for all
243 values up to 2^127, which is the largest that Fortran can produce
244 (-HUGE(0_16)-1) with its signed integer types. */
245 _Static_assert (sizeof(GFC_UINTEGER_LARGEST
) <= 2 * sizeof(uint64_t),
246 "integer too large");
248 GFC_UINTEGER_LARGEST r
;
251 assert (r
<= UINT64_MAX
);
252 p
= itoa64_pad19 (r
, p
);
254 assert(n
<= UINT64_MAX
);
255 return itoa64 (n
, p
);
258 /* On targets where the largest integer is 64-bit, just use that. */
259 return itoa64 (n
, p
);