gdb: fix vfork with multiple threads
[deliverable/binutils-gdb.git] / gdbsupport / common-utils.h
CommitLineData
d26e3629
KY
1/* Shared general utility routines for GDB, the GNU debugger.
2
3666a048 3 Copyright (C) 1986-2021 Free Software Foundation, Inc.
d26e3629
KY
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
1a5c2598
TT
20#ifndef COMMON_COMMON_UTILS_H
21#define COMMON_COMMON_UTILS_H
d26e3629 22
d4081a38 23#include <string>
7c5ded6a 24#include <vector>
48136e00 25#include "gdbsupport/byte-vector.h"
d4081a38 26
8172f16b
SM
27#include "poison.h"
28
3a80edfc
JB
29/* If possible, define FUNCTION_NAME, a macro containing the name of
30 the function being defined. Since this macro may not always be
31 defined, all uses must be protected by appropriate macro definition
32 checks (Eg: "#ifdef FUNCTION_NAME").
33
34 Version 2.4 and later of GCC define a magical variable `__PRETTY_FUNCTION__'
df049a58
DE
35 which contains the name of the function currently being defined.
36 This is broken in G++ before version 2.6.
37 C9x has a similar variable called __func__, but prefer the GCC one since
38 it demangles C++ function names. */
39#if (GCC_VERSION >= 2004)
40#define FUNCTION_NAME __PRETTY_FUNCTION__
41#else
42#if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
46bbb3ed 43#define FUNCTION_NAME __func__ /* ARI: func */
df049a58
DE
44#endif
45#endif
46
87f34879
CB
47#include "gdb_string_view.h"
48
d26e3629
KY
49/* xmalloc(), xrealloc() and xcalloc() have already been declared in
50 "libiberty.h". */
51
52/* Like xmalloc, but zero the memory. */
53void *xzalloc (size_t);
54
8172f16b
SM
55template <typename T>
56static void
57xfree (T *ptr)
58{
59 static_assert (IsFreeable<T>::value, "Trying to use xfree with a non-POD \
60data type. Use operator delete instead.");
61
62 if (ptr != NULL)
9c9d63b1
PM
63#ifdef GNULIB_NAMESPACE
64 GNULIB_NAMESPACE::free (ptr); /* ARI: free */
65#else
66 free (ptr); /* ARI: free */
67#endif
8172f16b
SM
68}
69
d26e3629
KY
70
71/* Like asprintf and vasprintf, but return the string, throw an error
72 if no memory. */
73char *xstrprintf (const char *format, ...) ATTRIBUTE_PRINTF (1, 2);
74char *xstrvprintf (const char *format, va_list ap)
75 ATTRIBUTE_PRINTF (1, 0);
76
d26e3629
KY
77/* Like snprintf, but throw an error if the output buffer is too small. */
78int xsnprintf (char *str, size_t size, const char *format, ...)
79 ATTRIBUTE_PRINTF (3, 4);
80
d4081a38
PA
81/* Returns a std::string built from a printf-style format string. */
82std::string string_printf (const char* fmt, ...)
83 ATTRIBUTE_PRINTF (1, 2);
84
bd413795
TT
85/* Like string_printf, but takes a va_list. */
86std::string string_vprintf (const char* fmt, va_list args)
87 ATTRIBUTE_PRINTF (1, 0);
88
31b833b3
PA
89/* Like string_printf, but appends to DEST instead of returning a new
90 std::string. */
91void string_appendf (std::string &dest, const char* fmt, ...)
92 ATTRIBUTE_PRINTF (2, 3);
93
94/* Like string_appendf, but takes a va_list. */
95void string_vappendf (std::string &dest, const char* fmt, va_list args)
96 ATTRIBUTE_PRINTF (2, 0);
97
baea0dae
PA
98/* Make a copy of the string at PTR with LEN characters
99 (and add a null character at the end in the copy).
100 Uses malloc to get the space. Returns the address of the copy. */
101
102char *savestring (const char *ptr, size_t len);
103
021d8588
AB
104/* Extract the next word from ARG. The next word is defined as either,
105 everything up to the next space, or, if the next word starts with either
106 a single or double quote, then everything up to the closing quote. The
107 enclosing quotes are not returned in the result string. The pointer in
108 ARG is updated to point to the first character after the end of the
109 word, or, for quoted words, the first character after the closing
110 quote. */
111
112std::string extract_string_maybe_quoted (const char **arg);
113
fb23d554
SDJ
114/* The strerror() function can return NULL for errno values that are
115 out of range. Provide a "safe" version that always returns a
b231e86a 116 printable string. This version is also thread-safe. */
fb23d554 117
b231e86a 118extern const char *safe_strerror (int);
fb23d554 119
e9338841
AM
120/* Version of startswith that takes string_view arguments. Return
121 true if the start of STRING matches PATTERN, false otherwise. */
87f34879
CB
122
123static inline bool
124startswith (gdb::string_view string, gdb::string_view pattern)
125{
126 return (string.length () >= pattern.length ()
127 && strncmp (string.data (), pattern.data (), pattern.length ()) == 0);
128}
129
03aef70f
JK
130ULONGEST strtoulst (const char *num, const char **trailer, int base);
131
132/* Skip leading whitespace characters in INP, returning an updated
133 pointer. If INP is NULL, return NULL. */
134
135extern char *skip_spaces (char *inp);
136
137/* A const-correct version of the above. */
138
f1735a53 139extern const char *skip_spaces (const char *inp);
03aef70f
JK
140
141/* Skip leading non-whitespace characters in INP, returning an updated
142 pointer. If INP is NULL, return NULL. */
143
f1735a53 144extern char *skip_to_space (char *inp);
03aef70f
JK
145
146/* A const-correct version of the above. */
147
f1735a53 148extern const char *skip_to_space (const char *inp);
03aef70f 149
7c5ded6a
SDJ
150/* Assumes that V is an argv for a program, and iterates through
151 freeing all the elements. */
152extern void free_vector_argv (std::vector<char *> &v);
153
b020ff80
SM
154/* Return true if VALUE is in [LOW, HIGH]. */
155
156template <typename T>
157static bool
158in_inclusive_range (T value, T low, T high)
159{
160 return value >= low && value <= high;
161}
162
4b186f88 163/* Ensure that V is aligned to an N byte boundary (N's assumed to be a
a3b60e45
JK
164 power of 2). Round up/down when necessary. Examples of correct
165 use include:
166
167 addr = align_up (addr, 8); -- VALUE needs 8 byte alignment
168 write_memory (addr, value, len);
169 addr += len;
170
171 and:
172
173 sp = align_down (sp - len, 16); -- Keep SP 16 byte aligned
174 write_memory (sp, value, len);
175
176 Note that uses such as:
177
178 write_memory (addr, value, len);
179 addr += align_up (len, 8);
180
181 and:
182
183 sp -= align_up (len, 8);
184 write_memory (sp, value, len);
185
186 are typically not correct as they don't ensure that the address (SP
187 or ADDR) is correctly aligned (relying on previous alignment to
188 keep things right). This is also why the methods are called
189 "align_..." instead of "round_..." as the latter reads better with
190 this incorrect coding style. */
191
192extern ULONGEST align_up (ULONGEST v, int n);
193extern ULONGEST align_down (ULONGEST v, int n);
194
48136e00
LM
195/* Convert hex digit A to a number, or throw an exception. */
196extern int fromhex (int a);
197
198/* HEX is a string of characters representing hexadecimal digits.
199 Convert pairs of hex digits to bytes and store sequentially into
200 BIN. COUNT is the maximum number of characters to convert. This
201 will convert fewer characters if the number of hex characters
202 actually seen is odd, or if HEX terminates before COUNT characters.
203 Returns the number of characters actually converted. */
204extern int hex2bin (const char *hex, gdb_byte *bin, int count);
205
206/* Like the above, but return a gdb::byte_vector. */
207gdb::byte_vector hex2bin (const char *hex);
208
1a5c2598 209#endif /* COMMON_COMMON_UTILS_H */
This page took 0.645864 seconds and 4 git commands to generate.