Fix for PR gdb/209, PR gdb/156:
[deliverable/binutils-gdb.git] / gdb / defs.h
CommitLineData
9846de1b 1/* *INDENT-OFF* */ /* ATTR_FORMAT confuses indent, avoid running it for now */
c906108c 2/* Basic, host-specific, and target-specific definitions for GDB.
b6ba6518
KB
3 Copyright 1986, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
4 1997, 1998, 1999, 2000, 2001
c906108c
SS
5 Free Software Foundation, Inc.
6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
9 This program 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 2 of the License, or
12 (at your option) any later version.
c906108c 13
c5aa993b
JM
14 This program 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.
c906108c 18
c5aa993b
JM
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
c906108c
SS
23
24#ifndef DEFS_H
25#define DEFS_H
26
27#include "config.h" /* Generated by configure */
28#include <stdio.h>
29#include <errno.h> /* System call error return status */
30#include <limits.h>
31
32#ifdef HAVE_STDDEF_H
917317f4 33#include <stddef.h>
c906108c 34#else
917317f4 35#include <sys/types.h> /* for size_t */
c906108c
SS
36#endif
37
104c1213
JM
38#ifdef HAVE_UNISTD_H
39#include <unistd.h>
40#endif
41
c906108c
SS
42/* Just in case they're not defined in stdio.h. */
43
44#ifndef SEEK_SET
45#define SEEK_SET 0
46#endif
47#ifndef SEEK_CUR
48#define SEEK_CUR 1
49#endif
50
51/* First include ansidecl.h so we can use the various macro definitions
52 here and in all subsequent file inclusions. */
53
54#include "ansidecl.h"
55
917317f4 56#include <stdarg.h> /* for va_list */
c906108c
SS
57
58#include "libiberty.h"
59
c906108c
SS
60#include "progress.h"
61
62#ifdef USE_MMALLOC
63#include "mmalloc.h"
64#endif
65
66/* For BFD64 and bfd_vma. */
67#include "bfd.h"
68
6166d547
AC
69
70/* The target is partially multi-arched. Both "tm.h" and the
71 multi-arch vector provide definitions. "tm.h" normally overrides
72 the multi-arch vector (but there are a few exceptions). */
73
74#define GDB_MULTI_ARCH_PARTIAL 1
75
83905903
AC
76/* The target is partially multi-arched. Both the multi-arch vector
77 and "tm.h" provide definitions. "tm.h" cannot override a definition
78 provided by the multi-arch vector. It is detected as a compilation
79 error.
80
81 This setting is only useful during a multi-arch conversion. */
6166d547
AC
82
83#define GDB_MULTI_ARCH_TM 2
84
85/* The target is pure multi-arch. The MULTI-ARCH vector provides all
5a2402b8 86 definitions. "tm.h" is linked to an empty file. */
6166d547
AC
87
88#define GDB_MULTI_ARCH_PURE 3
89
90
91
c906108c
SS
92/* An address in the program being debugged. Host byte order. Rather
93 than duplicate all the logic in BFD which figures out what type
94 this is (long, long long, etc.) and whether it needs to be 64
95 bits (the host/target interactions are subtle), we just use
96 bfd_vma. */
97
98typedef bfd_vma CORE_ADDR;
99
104c1213
JM
100/* This is to make sure that LONGEST is at least as big as CORE_ADDR. */
101
102#ifndef LONGEST
103
104#ifdef BFD64
105
106#define LONGEST BFD_HOST_64_BIT
107#define ULONGEST BFD_HOST_U_64_BIT
108
109#else /* No BFD64 */
110
917317f4
JM
111#ifdef CC_HAS_LONG_LONG
112#define LONGEST long long
113#define ULONGEST unsigned long long
114#else
115#ifdef BFD_HOST_64_BIT
104c1213
JM
116/* BFD_HOST_64_BIT is defined for some hosts that don't have long long
117 (e.g. i386-windows) so try it. */
917317f4
JM
118#define LONGEST BFD_HOST_64_BIT
119#define ULONGEST BFD_HOST_U_64_BIT
120#else
121#define LONGEST long
122#define ULONGEST unsigned long
123#endif
124#endif
104c1213
JM
125
126#endif /* No BFD64 */
127
128#endif /* ! LONGEST */
129
c906108c
SS
130#ifndef min
131#define min(a, b) ((a) < (b) ? (a) : (b))
132#endif
133#ifndef max
134#define max(a, b) ((a) > (b) ? (a) : (b))
135#endif
136
1a0559af
AC
137/* Macros to do string compares.
138
139 NOTE: cagney/2000-03-14:
140
141 While old code can continue to refer to these macros, new code is
142 probably better off using strcmp() directly vis: ``strcmp() == 0''
143 and ``strcmp() != 0''.
144
145 This is because modern compilers can directly inline strcmp()
146 making the original justification for these macros - avoid function
147 call overhead by pre-testing the first characters
148 (``*X==*Y?...:0'') - redundant.
149
150 ``Even if [...] testing the first character does have a modest
151 performance improvement, I'd rather that whenever a performance
152 issue is found that we spend the effort on algorithmic
153 optimizations than micro-optimizing.'' J.T. */
c906108c 154
c906108c
SS
155#define STREQ(a,b) (*(a) == *(b) ? !strcmp ((a), (b)) : 0)
156#define STREQN(a,b,c) (*(a) == *(b) ? !strncmp ((a), (b), (c)) : 0)
157
158/* The character GNU C++ uses to build identifiers that must be unique from
159 the program's identifiers (such as $this and $$vptr). */
160#define CPLUS_MARKER '$' /* May be overridden to '.' for SysV */
161
162/* Check if a character is one of the commonly used C++ marker characters. */
917317f4 163extern int is_cplus_marker (int);
c906108c
SS
164
165/* use tui interface if non-zero */
166extern int tui_version;
167
c906108c
SS
168/* enable xdb commands if set */
169extern int xdb_commands;
170
171/* enable dbx commands if set */
172extern int dbx_commands;
173
174extern int quit_flag;
175extern int immediate_quit;
176extern int sevenbit_strings;
177
917317f4 178extern void quit (void);
c906108c 179
1a0559af
AC
180/* FIXME: cagney/2000-03-13: It has been suggested that the peformance
181 benefits of having a ``QUIT'' macro rather than a function are
182 marginal. If the overhead of a QUIT function call is proving
183 significant then its calling frequency should probably be reduced
184 [kingdon]. A profile analyzing the current situtation is
185 needed. */
186
c906108c
SS
187#ifdef QUIT
188/* do twice to force compiler warning */
189#define QUIT_FIXME "FIXME"
190#define QUIT_FIXME "ignoring redefinition of QUIT"
191#else
192#define QUIT { \
193 if (quit_flag) quit (); \
194 if (interactive_hook) interactive_hook (); \
195 PROGRESS (1); \
196}
197#endif
198
c906108c
SS
199/* Languages represented in the symbol table and elsewhere.
200 This should probably be in language.h, but since enum's can't
201 be forward declared to satisfy opaque references before their
202 actual definition, needs to be here. */
203
917317f4
JM
204enum language
205 {
206 language_unknown, /* Language not known */
207 language_auto, /* Placeholder for automatic setting */
208 language_c, /* C */
209 language_cplus, /* C++ */
210 language_java, /* Java */
211 language_chill, /* Chill */
212 language_fortran, /* Fortran */
213 language_m2, /* Modula-2 */
214 language_asm, /* Assembly language */
750ba382
PM
215 language_scm, /* Scheme / Guile */
216 language_pascal /* Pascal */
917317f4 217 };
c906108c
SS
218
219enum precision_type
917317f4
JM
220 {
221 single_precision,
222 double_precision,
223 unspecified_precision
224 };
225
379d08a1
AC
226/* The numbering of these signals is chosen to match traditional unix
227 signals (insofar as various unices use the same numbers, anyway).
228 It is also the numbering of the GDB remote protocol. Other remote
229 protocols, if they use a different numbering, should make sure to
230 translate appropriately.
231
232 Since these numbers have actually made it out into other software
233 (stubs, etc.), you mustn't disturb the assigned numbering. If you
234 need to add new signals here, add them to the end of the explicitly
235 numbered signals.
236
237 This is based strongly on Unix/POSIX signals for several reasons:
238 (1) This set of signals represents a widely-accepted attempt to
239 represent events of this sort in a portable fashion, (2) we want a
240 signal to make it from wait to child_wait to the user intact, (3) many
241 remote protocols use a similar encoding. However, it is
242 recognized that this set of signals has limitations (such as not
243 distinguishing between various kinds of SIGSEGV, or not
244 distinguishing hitting a breakpoint from finishing a single step).
245 So in the future we may get around this either by adding additional
246 signals for breakpoint, single-step, etc., or by adding signal
247 codes; the latter seems more in the spirit of what BSD, System V,
248 etc. are doing to address these issues. */
249
250/* For an explanation of what each signal means, see
251 target_signal_to_string. */
252
253enum target_signal
254 {
255 /* Used some places (e.g. stop_signal) to record the concept that
256 there is no signal. */
257 TARGET_SIGNAL_0 = 0,
258 TARGET_SIGNAL_FIRST = 0,
259 TARGET_SIGNAL_HUP = 1,
260 TARGET_SIGNAL_INT = 2,
261 TARGET_SIGNAL_QUIT = 3,
262 TARGET_SIGNAL_ILL = 4,
263 TARGET_SIGNAL_TRAP = 5,
264 TARGET_SIGNAL_ABRT = 6,
265 TARGET_SIGNAL_EMT = 7,
266 TARGET_SIGNAL_FPE = 8,
267 TARGET_SIGNAL_KILL = 9,
268 TARGET_SIGNAL_BUS = 10,
269 TARGET_SIGNAL_SEGV = 11,
270 TARGET_SIGNAL_SYS = 12,
271 TARGET_SIGNAL_PIPE = 13,
272 TARGET_SIGNAL_ALRM = 14,
273 TARGET_SIGNAL_TERM = 15,
274 TARGET_SIGNAL_URG = 16,
275 TARGET_SIGNAL_STOP = 17,
276 TARGET_SIGNAL_TSTP = 18,
277 TARGET_SIGNAL_CONT = 19,
278 TARGET_SIGNAL_CHLD = 20,
279 TARGET_SIGNAL_TTIN = 21,
280 TARGET_SIGNAL_TTOU = 22,
281 TARGET_SIGNAL_IO = 23,
282 TARGET_SIGNAL_XCPU = 24,
283 TARGET_SIGNAL_XFSZ = 25,
284 TARGET_SIGNAL_VTALRM = 26,
285 TARGET_SIGNAL_PROF = 27,
286 TARGET_SIGNAL_WINCH = 28,
287 TARGET_SIGNAL_LOST = 29,
288 TARGET_SIGNAL_USR1 = 30,
289 TARGET_SIGNAL_USR2 = 31,
290 TARGET_SIGNAL_PWR = 32,
291 /* Similar to SIGIO. Perhaps they should have the same number. */
292 TARGET_SIGNAL_POLL = 33,
293 TARGET_SIGNAL_WIND = 34,
294 TARGET_SIGNAL_PHONE = 35,
295 TARGET_SIGNAL_WAITING = 36,
296 TARGET_SIGNAL_LWP = 37,
297 TARGET_SIGNAL_DANGER = 38,
298 TARGET_SIGNAL_GRANT = 39,
299 TARGET_SIGNAL_RETRACT = 40,
300 TARGET_SIGNAL_MSG = 41,
301 TARGET_SIGNAL_SOUND = 42,
302 TARGET_SIGNAL_SAK = 43,
303 TARGET_SIGNAL_PRIO = 44,
304 TARGET_SIGNAL_REALTIME_33 = 45,
305 TARGET_SIGNAL_REALTIME_34 = 46,
306 TARGET_SIGNAL_REALTIME_35 = 47,
307 TARGET_SIGNAL_REALTIME_36 = 48,
308 TARGET_SIGNAL_REALTIME_37 = 49,
309 TARGET_SIGNAL_REALTIME_38 = 50,
310 TARGET_SIGNAL_REALTIME_39 = 51,
311 TARGET_SIGNAL_REALTIME_40 = 52,
312 TARGET_SIGNAL_REALTIME_41 = 53,
313 TARGET_SIGNAL_REALTIME_42 = 54,
314 TARGET_SIGNAL_REALTIME_43 = 55,
315 TARGET_SIGNAL_REALTIME_44 = 56,
316 TARGET_SIGNAL_REALTIME_45 = 57,
317 TARGET_SIGNAL_REALTIME_46 = 58,
318 TARGET_SIGNAL_REALTIME_47 = 59,
319 TARGET_SIGNAL_REALTIME_48 = 60,
320 TARGET_SIGNAL_REALTIME_49 = 61,
321 TARGET_SIGNAL_REALTIME_50 = 62,
322 TARGET_SIGNAL_REALTIME_51 = 63,
323 TARGET_SIGNAL_REALTIME_52 = 64,
324 TARGET_SIGNAL_REALTIME_53 = 65,
325 TARGET_SIGNAL_REALTIME_54 = 66,
326 TARGET_SIGNAL_REALTIME_55 = 67,
327 TARGET_SIGNAL_REALTIME_56 = 68,
328 TARGET_SIGNAL_REALTIME_57 = 69,
329 TARGET_SIGNAL_REALTIME_58 = 70,
330 TARGET_SIGNAL_REALTIME_59 = 71,
331 TARGET_SIGNAL_REALTIME_60 = 72,
332 TARGET_SIGNAL_REALTIME_61 = 73,
333 TARGET_SIGNAL_REALTIME_62 = 74,
334 TARGET_SIGNAL_REALTIME_63 = 75,
335
336 /* Used internally by Solaris threads. See signal(5) on Solaris. */
337 TARGET_SIGNAL_CANCEL = 76,
338
339 /* Yes, this pains me, too. But LynxOS didn't have SIG32, and now
340 Linux does, and we can't disturb the numbering, since it's part
49dd83ba
AC
341 of the remote protocol. Note that in some GDB's
342 TARGET_SIGNAL_REALTIME_32 is number 76. */
379d08a1 343 TARGET_SIGNAL_REALTIME_32,
49dd83ba 344 /* Yet another pain, IRIX 6 has SIG64. */
379d08a1 345 TARGET_SIGNAL_REALTIME_64,
49dd83ba
AC
346 /* Yet another pain, Linux/MIPS might go up to 128. */
347 TARGET_SIGNAL_REALTIME_65,
348 TARGET_SIGNAL_REALTIME_66,
349 TARGET_SIGNAL_REALTIME_67,
350 TARGET_SIGNAL_REALTIME_68,
351 TARGET_SIGNAL_REALTIME_69,
352 TARGET_SIGNAL_REALTIME_70,
353 TARGET_SIGNAL_REALTIME_71,
354 TARGET_SIGNAL_REALTIME_72,
355 TARGET_SIGNAL_REALTIME_73,
356 TARGET_SIGNAL_REALTIME_74,
357 TARGET_SIGNAL_REALTIME_75,
358 TARGET_SIGNAL_REALTIME_76,
359 TARGET_SIGNAL_REALTIME_77,
360 TARGET_SIGNAL_REALTIME_78,
361 TARGET_SIGNAL_REALTIME_79,
362 TARGET_SIGNAL_REALTIME_80,
363 TARGET_SIGNAL_REALTIME_81,
364 TARGET_SIGNAL_REALTIME_82,
365 TARGET_SIGNAL_REALTIME_83,
366 TARGET_SIGNAL_REALTIME_84,
367 TARGET_SIGNAL_REALTIME_85,
368 TARGET_SIGNAL_REALTIME_86,
369 TARGET_SIGNAL_REALTIME_87,
370 TARGET_SIGNAL_REALTIME_88,
371 TARGET_SIGNAL_REALTIME_89,
372 TARGET_SIGNAL_REALTIME_90,
373 TARGET_SIGNAL_REALTIME_91,
374 TARGET_SIGNAL_REALTIME_92,
375 TARGET_SIGNAL_REALTIME_93,
376 TARGET_SIGNAL_REALTIME_94,
377 TARGET_SIGNAL_REALTIME_95,
378 TARGET_SIGNAL_REALTIME_96,
379 TARGET_SIGNAL_REALTIME_97,
380 TARGET_SIGNAL_REALTIME_98,
381 TARGET_SIGNAL_REALTIME_99,
382 TARGET_SIGNAL_REALTIME_100,
383 TARGET_SIGNAL_REALTIME_101,
384 TARGET_SIGNAL_REALTIME_102,
385 TARGET_SIGNAL_REALTIME_103,
386 TARGET_SIGNAL_REALTIME_104,
387 TARGET_SIGNAL_REALTIME_105,
388 TARGET_SIGNAL_REALTIME_106,
389 TARGET_SIGNAL_REALTIME_107,
390 TARGET_SIGNAL_REALTIME_108,
391 TARGET_SIGNAL_REALTIME_109,
392 TARGET_SIGNAL_REALTIME_110,
393 TARGET_SIGNAL_REALTIME_111,
394 TARGET_SIGNAL_REALTIME_112,
395 TARGET_SIGNAL_REALTIME_113,
396 TARGET_SIGNAL_REALTIME_114,
397 TARGET_SIGNAL_REALTIME_115,
398 TARGET_SIGNAL_REALTIME_116,
399 TARGET_SIGNAL_REALTIME_117,
400 TARGET_SIGNAL_REALTIME_118,
401 TARGET_SIGNAL_REALTIME_119,
402 TARGET_SIGNAL_REALTIME_120,
403 TARGET_SIGNAL_REALTIME_121,
404 TARGET_SIGNAL_REALTIME_122,
405 TARGET_SIGNAL_REALTIME_123,
406 TARGET_SIGNAL_REALTIME_124,
407 TARGET_SIGNAL_REALTIME_125,
408 TARGET_SIGNAL_REALTIME_126,
409 TARGET_SIGNAL_REALTIME_127,
379d08a1
AC
410
411#if defined(MACH) || defined(__MACH__)
412 /* Mach exceptions */
413 TARGET_EXC_BAD_ACCESS,
414 TARGET_EXC_BAD_INSTRUCTION,
415 TARGET_EXC_ARITHMETIC,
416 TARGET_EXC_EMULATION,
417 TARGET_EXC_SOFTWARE,
418 TARGET_EXC_BREAKPOINT,
419#endif
420 TARGET_SIGNAL_INFO,
421
422 /* Some signal we don't know about. */
423 TARGET_SIGNAL_UNKNOWN,
424
425 /* Use whatever signal we use when one is not specifically specified
426 (for passing to proceed and so on). */
427 TARGET_SIGNAL_DEFAULT,
428
429 /* Last and unused enum value, for sizing arrays, etc. */
430 TARGET_SIGNAL_LAST
431 };
432
c906108c
SS
433/* the cleanup list records things that have to be undone
434 if an error happens (descriptors to be closed, memory to be freed, etc.)
435 Each link in the chain records a function to call and an
436 argument to give it.
437
438 Use make_cleanup to add an element to the cleanup chain.
439 Use do_cleanups to do all cleanup actions back to a given
440 point in the chain. Use discard_cleanups to remove cleanups
441 from the chain back to a given point, not doing them. */
442
443struct cleanup
917317f4
JM
444 {
445 struct cleanup *next;
446 void (*function) (PTR);
447 PTR arg;
448 };
c906108c
SS
449
450
451/* The ability to declare that a function never returns is useful, but
452 not really required to compile GDB successfully, so the NORETURN and
453 ATTR_NORETURN macros normally expand into nothing. */
454
455/* If compiling with older versions of GCC, a function may be declared
456 "volatile" to indicate that it does not return. */
457
458#ifndef NORETURN
917317f4 459#if defined(__GNUC__) \
c906108c 460 && (__GNUC__ == 1 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7))
917317f4
JM
461#define NORETURN volatile
462#else
463#define NORETURN /* nothing */
464#endif
c906108c
SS
465#endif
466
467/* GCC 2.5 and later versions define a function attribute "noreturn",
468 which is the preferred way to declare that a function never returns.
469 However GCC 2.7 appears to be the first version in which this fully
470 works everywhere we use it. */
471
472#ifndef ATTR_NORETURN
7d418785 473#if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7))
917317f4
JM
474#define ATTR_NORETURN __attribute__ ((noreturn))
475#else
476#define ATTR_NORETURN /* nothing */
477#endif
c906108c
SS
478#endif
479
480#ifndef ATTR_FORMAT
7d418785 481#if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 4))
917317f4
JM
482#define ATTR_FORMAT(type, x, y) __attribute__ ((format(type, x, y)))
483#else
484#define ATTR_FORMAT(type, x, y) /* nothing */
485#endif
c906108c
SS
486#endif
487
488/* Needed for various prototypes */
489
c906108c
SS
490struct symtab;
491struct breakpoint;
c906108c
SS
492
493/* From blockframe.c */
494
917317f4 495extern int inside_entry_func (CORE_ADDR);
c906108c 496
917317f4 497extern int inside_entry_file (CORE_ADDR addr);
c906108c 498
917317f4 499extern int inside_main_func (CORE_ADDR pc);
c906108c
SS
500
501/* From ch-lang.c, for the moment. (FIXME) */
502
917317f4 503extern char *chill_demangle (const char *);
c906108c
SS
504
505/* From utils.c */
506
917317f4 507extern void initialize_utils (void);
392a587b 508
917317f4 509extern void notice_quit (void);
c906108c 510
917317f4 511extern int strcmp_iw (const char *, const char *);
c906108c 512
917317f4 513extern int subset_compare (char *, char *);
7a292a7a 514
917317f4 515extern char *safe_strerror (int);
c906108c 516
917317f4 517extern void init_malloc (void *);
c906108c 518
917317f4 519extern void request_quit (int);
c906108c 520
917317f4
JM
521extern void do_cleanups (struct cleanup *);
522extern void do_final_cleanups (struct cleanup *);
523extern void do_my_cleanups (struct cleanup **, struct cleanup *);
524extern void do_run_cleanups (struct cleanup *);
525extern void do_exec_cleanups (struct cleanup *);
526extern void do_exec_error_cleanups (struct cleanup *);
c906108c 527
917317f4
JM
528extern void discard_cleanups (struct cleanup *);
529extern void discard_final_cleanups (struct cleanup *);
530extern void discard_exec_error_cleanups (struct cleanup *);
531extern void discard_my_cleanups (struct cleanup **, struct cleanup *);
c906108c 532
e4005526
AC
533/* NOTE: cagney/2000-03-04: This typedef is strictly for the
534 make_cleanup function declarations below. Do not use this typedef
535 as a cast when passing functions into the make_cleanup() code.
536 Instead either use a bounce function or add a wrapper function.
537 Calling a f(char*) function with f(void*) is non-portable. */
538typedef void (make_cleanup_ftype) (void *);
539
540extern struct cleanup *make_cleanup (make_cleanup_ftype *, void *);
c906108c 541
917317f4 542extern struct cleanup *make_cleanup_freeargv (char **);
7a292a7a 543
d9fcf2fb
JM
544struct ui_file;
545extern struct cleanup *make_cleanup_ui_file_delete (struct ui_file *);
11cf8741 546
f5ff8c83
AC
547extern struct cleanup *make_cleanup_close (int fd);
548
5c65bbb6
AC
549extern struct cleanup *make_cleanup_bfd_close (bfd *abfd);
550
e4005526 551extern struct cleanup *make_final_cleanup (make_cleanup_ftype *, void *);
c906108c 552
917317f4 553extern struct cleanup *make_my_cleanup (struct cleanup **,
e4005526 554 make_cleanup_ftype *, void *);
c906108c 555
e4005526 556extern struct cleanup *make_run_cleanup (make_cleanup_ftype *, void *);
c906108c 557
e4005526
AC
558extern struct cleanup *make_exec_cleanup (make_cleanup_ftype *, void *);
559extern struct cleanup *make_exec_error_cleanup (make_cleanup_ftype *, void *);
43ff13b4 560
917317f4
JM
561extern struct cleanup *save_cleanups (void);
562extern struct cleanup *save_final_cleanups (void);
563extern struct cleanup *save_my_cleanups (struct cleanup **);
c906108c 564
917317f4
JM
565extern void restore_cleanups (struct cleanup *);
566extern void restore_final_cleanups (struct cleanup *);
567extern void restore_my_cleanups (struct cleanup **, struct cleanup *);
c906108c 568
2f9429ae 569extern void free_current_contents (void *);
c906108c 570
e54a9244 571extern void null_cleanup (void *);
c906108c 572
917317f4 573extern int myread (int, char *, int);
c906108c 574
917317f4 575extern int query (char *, ...) ATTR_FORMAT (printf, 1, 2);
c906108c 576
917317f4 577extern void init_page_info (void);
392a587b 578
ac2e2ef7
AC
579extern CORE_ADDR host_pointer_to_address (void *ptr);
580extern void *address_to_host_pointer (CORE_ADDR addr);
581
c906108c
SS
582/* From demangle.c */
583
917317f4 584extern void set_demangling_style (char *);
c906108c
SS
585
586/* From tm.h */
587
588struct type;
917317f4 589typedef int (use_struct_convention_fn) (int gcc_p, struct type * value_type);
c906108c
SS
590extern use_struct_convention_fn generic_use_struct_convention;
591
917317f4 592typedef unsigned char *(breakpoint_from_pc_fn) (CORE_ADDR * pcptr, int *lenptr);
c906108c
SS
593\f
594/* Annotation stuff. */
595
917317f4 596extern int annotation_level; /* in stack.c */
c906108c 597\f
917317f4 598extern void begin_line (void);
c906108c 599
917317f4 600extern void wrap_here (char *);
c906108c 601
917317f4 602extern void reinitialize_more_filter (void);
c906108c 603
0f71a2f6 604/* Normal results */
d9fcf2fb 605extern struct ui_file *gdb_stdout;
0f71a2f6 606/* Serious error notifications */
d9fcf2fb 607extern struct ui_file *gdb_stderr;
0f71a2f6
JM
608/* Log/debug/trace messages that should bypass normal stdout/stderr
609 filtering. For momement, always call this stream using
610 *_unfiltered. In the very near future that restriction shall be
611 removed - either call shall be unfiltered. (cagney 1999-06-13). */
d9fcf2fb 612extern struct ui_file *gdb_stdlog;
43ff13b4
JM
613/* Target output that should bypass normal stdout/stderr filtering.
614 For momement, always call this stream using *_unfiltered. In the
615 very near future that restriction shall be removed - either call
616 shall be unfiltered. (cagney 1999-07-02). */
d9fcf2fb 617extern struct ui_file *gdb_stdtarg;
c906108c 618
c906108c
SS
619#if defined(TUI)
620#include "tui.h"
c906108c
SS
621#endif
622
d9fcf2fb 623#include "ui-file.h"
c906108c 624
d1f4cff8
AC
625/* More generic printf like operations. Filtered versions may return
626 non-locally on error. */
c906108c 627
d9fcf2fb 628extern void fputs_filtered (const char *, struct ui_file *);
c906108c 629
d9fcf2fb 630extern void fputs_unfiltered (const char *, struct ui_file *);
c906108c 631
d9fcf2fb 632extern int fputc_filtered (int c, struct ui_file *);
c906108c 633
d9fcf2fb 634extern int fputc_unfiltered (int c, struct ui_file *);
c906108c 635
d1f4cff8
AC
636extern int putchar_filtered (int c);
637
917317f4 638extern int putchar_unfiltered (int c);
c906108c 639
917317f4 640extern void puts_filtered (const char *);
c906108c 641
917317f4 642extern void puts_unfiltered (const char *);
c906108c 643
917317f4 644extern void puts_debug (char *prefix, char *string, char *suffix);
c906108c 645
917317f4 646extern void vprintf_filtered (const char *, va_list) ATTR_FORMAT (printf, 1, 0);
c906108c 647
d9fcf2fb 648extern void vfprintf_filtered (struct ui_file *, const char *, va_list) ATTR_FORMAT (printf, 2, 0);
c906108c 649
d9fcf2fb 650extern void fprintf_filtered (struct ui_file *, const char *, ...) ATTR_FORMAT (printf, 2, 3);
c906108c 651
d9fcf2fb 652extern void fprintfi_filtered (int, struct ui_file *, const char *, ...) ATTR_FORMAT (printf, 3, 4);
c906108c 653
917317f4 654extern void printf_filtered (const char *, ...) ATTR_FORMAT (printf, 1, 2);
c906108c 655
917317f4 656extern void printfi_filtered (int, const char *, ...) ATTR_FORMAT (printf, 2, 3);
c906108c 657
917317f4 658extern void vprintf_unfiltered (const char *, va_list) ATTR_FORMAT (printf, 1, 0);
c906108c 659
d9fcf2fb 660extern void vfprintf_unfiltered (struct ui_file *, const char *, va_list) ATTR_FORMAT (printf, 2, 0);
c906108c 661
d9fcf2fb 662extern void fprintf_unfiltered (struct ui_file *, const char *, ...) ATTR_FORMAT (printf, 2, 3);
917317f4
JM
663
664extern void printf_unfiltered (const char *, ...) ATTR_FORMAT (printf, 1, 2);
c906108c 665
d9fcf2fb 666extern void print_spaces (int, struct ui_file *);
c906108c 667
d9fcf2fb 668extern void print_spaces_filtered (int, struct ui_file *);
c906108c 669
917317f4 670extern char *n_spaces (int);
c906108c 671
d9fcf2fb 672extern void fputstr_filtered (const char *str, int quotr, struct ui_file * stream);
43e526b9 673
d9fcf2fb 674extern void fputstr_unfiltered (const char *str, int quotr, struct ui_file * stream);
43e526b9 675
d9fcf2fb 676extern void fputstrn_unfiltered (const char *str, int n, int quotr, struct ui_file * stream);
c906108c 677
d4f3574e 678/* Display the host ADDR on STREAM formatted as ``0x%x''. */
d9fcf2fb 679extern void gdb_print_host_address (void *addr, struct ui_file *stream);
c906108c 680
104c1213
JM
681/* Convert a CORE_ADDR into a HEX string. paddr() is like %08lx.
682 paddr_nz() is like %lx. paddr_u() is like %lu. paddr_width() is
683 for ``%*''. */
d4f3574e 684extern int strlen_paddr (void);
917317f4
JM
685extern char *paddr (CORE_ADDR addr);
686extern char *paddr_nz (CORE_ADDR addr);
687extern char *paddr_u (CORE_ADDR addr);
688extern char *paddr_d (LONGEST addr);
c906108c 689
5683e87a
AC
690extern char *phex (ULONGEST l, int sizeof_l);
691extern char *phex_nz (ULONGEST l, int sizeof_l);
c906108c 692
03dd37c3
AC
693/* Like paddr() only print/scan raw CORE_ADDR. The output from
694 core_addr_to_string() can be passed direct to
695 string_to_core_addr(). */
696extern const char *core_addr_to_string (const CORE_ADDR addr);
697extern CORE_ADDR string_to_core_addr (const char *my_string);
698
d9fcf2fb 699extern void fprintf_symbol_filtered (struct ui_file *, char *,
917317f4 700 enum language, int);
c906108c 701
917317f4 702extern NORETURN void perror_with_name (char *) ATTR_NORETURN;
c906108c 703
917317f4 704extern void print_sys_errmsg (char *, int);
c906108c
SS
705
706/* From regex.c or libc. BSD 4.4 declares this with the argument type as
707 "const char *" in unistd.h, so we can't declare the argument
708 as "char *". */
709
917317f4 710extern char *re_comp (const char *);
c906108c
SS
711
712/* From symfile.c */
713
917317f4
JM
714extern void symbol_file_command (char *, int);
715
716/* Remote targets may wish to use this as their load function. */
717extern void generic_load (char *name, int from_tty);
718
719/* Summarise a download */
d9fcf2fb 720extern void print_transfer_performance (struct ui_file *stream,
917317f4
JM
721 unsigned long data_count,
722 unsigned long write_count,
723 unsigned long time_count);
c906108c
SS
724
725/* From top.c */
726
6426a772
JM
727typedef void initialize_file_ftype (void);
728
917317f4 729extern char *skip_quoted (char *);
c906108c 730
917317f4 731extern char *gdb_readline (char *);
c906108c 732
917317f4 733extern char *command_line_input (char *, int, char *);
c906108c 734
917317f4 735extern void print_prompt (void);
c906108c 736
917317f4 737extern int input_from_terminal_p (void);
c906108c
SS
738
739extern int info_verbose;
740
741/* From printcmd.c */
742
917317f4 743extern void set_next_address (CORE_ADDR);
c906108c 744
d9fcf2fb 745extern void print_address_symbolic (CORE_ADDR, struct ui_file *, int,
917317f4 746 char *);
c906108c 747
dfcd3bfb 748extern int build_address_symbolic (CORE_ADDR addr,
7b83ea04
AC
749 int do_demangle,
750 char **name,
751 int *offset,
752 char **filename,
753 int *line,
dfcd3bfb
JM
754 int *unmapped);
755
d9fcf2fb 756extern void print_address_numeric (CORE_ADDR, int, struct ui_file *);
c906108c 757
d9fcf2fb 758extern void print_address (CORE_ADDR, struct ui_file *);
c906108c
SS
759
760/* From source.c */
761
1f8cc6db 762extern int openp (const char *, int, const char *, int, int, char **);
c906108c 763
917317f4 764extern int source_full_path_of (char *, char **);
c906108c 765
917317f4 766extern void mod_path (char *, char **);
c906108c 767
917317f4 768extern void directory_command (char *, int);
c906108c 769
917317f4 770extern void init_source_path (void);
c906108c 771
917317f4 772extern char *symtab_to_filename (struct symtab *);
c906108c 773
104c1213
JM
774/* From exec.c */
775
776extern void exec_set_section_offsets (bfd_signed_vma text_off,
777 bfd_signed_vma data_off,
778 bfd_signed_vma bss_off);
779
c906108c
SS
780/* From findvar.c */
781
917317f4 782extern int read_relative_register_raw_bytes (int, char *);
c906108c 783
53a5351d
JM
784/* Possible lvalue types. Like enum language, this should be in
785 value.h, but needs to be here for the same reason. */
786
787enum lval_type
788 {
789 /* Not an lval. */
790 not_lval,
791 /* In memory. Could be a saved register. */
792 lval_memory,
793 /* In a register. */
794 lval_register,
795 /* In a gdb internal variable. */
796 lval_internalvar,
797 /* Part of a gdb internal variable (structure field). */
798 lval_internalvar_component,
799 /* In a register series in a frame not the current one, which may have been
800 partially saved or saved in different places (otherwise would be
801 lval_register or lval_memory). */
802 lval_reg_frame_relative
803 };
804
392a587b 805struct frame_info;
53a5351d 806
c906108c
SS
807/* From readline (but not in any readline .h files). */
808
917317f4 809extern char *tilde_expand (char *);
c906108c
SS
810
811/* Control types for commands */
812
813enum misc_command_type
917317f4
JM
814 {
815 ok_command,
816 end_command,
817 else_command,
818 nop_command
819 };
c906108c
SS
820
821enum command_control_type
917317f4
JM
822 {
823 simple_control,
824 break_control,
825 continue_control,
826 while_control,
827 if_control,
828 invalid_control
829 };
c906108c
SS
830
831/* Structure for saved commands lines
832 (for breakpoints, defined commands, etc). */
833
834struct command_line
917317f4
JM
835 {
836 struct command_line *next;
837 char *line;
838 enum command_control_type control_type;
839 int body_count;
840 struct command_line **body_list;
841 };
c906108c 842
917317f4 843extern struct command_line *read_command_lines (char *, int);
c906108c 844
917317f4 845extern void free_command_lines (struct command_line **);
c906108c 846
7b83ea04
AC
847/* To continue the execution commands when running gdb asynchronously.
848 A continuation structure contains a pointer to a function to be called
43ff13b4
JM
849 to finish the command, once the target has stopped. Such mechanism is
850 used bt the finish and until commands, and in the remote protocol
851 when opening an extended-remote connection. */
852
853struct continuation_arg
917317f4
JM
854 {
855 struct continuation_arg *next;
57e687d9
MS
856 union continuation_data {
857 void *pointer;
858 int integer;
859 long longint;
860 } data;
917317f4 861 };
43ff13b4
JM
862
863struct continuation
917317f4
JM
864 {
865 void (*continuation_hook) (struct continuation_arg *);
866 struct continuation_arg *arg_list;
867 struct continuation *next;
868 };
43ff13b4
JM
869
870/* In infrun.c. */
871extern struct continuation *cmd_continuation;
c2d11a7d
JM
872/* Used only by the step_1 function. */
873extern struct continuation *intermediate_continuation;
43ff13b4
JM
874
875/* From utils.c */
917317f4
JM
876extern void add_continuation (void (*)(struct continuation_arg *),
877 struct continuation_arg *);
878extern void do_all_continuations (void);
879extern void discard_all_continuations (void);
43ff13b4 880
c2d11a7d
JM
881extern void add_intermediate_continuation (void (*)(struct continuation_arg *),
882 struct continuation_arg *);
883extern void do_all_intermediate_continuations (void);
884extern void discard_all_intermediate_continuations (void);
885
c906108c
SS
886/* String containing the current directory (what getwd would return). */
887
888extern char *current_directory;
889
890/* Default radixes for input and output. Only some values supported. */
891extern unsigned input_radix;
892extern unsigned output_radix;
893
894/* Possibilities for prettyprint parameters to routines which print
895 things. Like enum language, this should be in value.h, but needs
896 to be here for the same reason. FIXME: If we can eliminate this
897 as an arg to LA_VAL_PRINT, then we can probably move it back to
898 value.h. */
899
900enum val_prettyprint
917317f4
JM
901 {
902 Val_no_prettyprint = 0,
903 Val_prettyprint,
904 /* Use the default setting which the user has specified. */
905 Val_pretty_default
906 };
39f77062 907
ca6724c1
KB
908/* The ptid struct is a collection of the various "ids" necessary
909 for identifying the inferior. This consists of the process id
910 (pid), thread id (tid), and other fields necessary for uniquely
911 identifying the inferior process/thread being debugged. When
912 manipulating ptids, the constructors, accessors, and predicate
913 declared in inferior.h should be used. These are as follows:
914
915 ptid_build - Make a new ptid from a pid, lwp, and tid.
916 pid_to_ptid - Make a new ptid from just a pid.
917 ptid_get_pid - Fetch the pid component of a ptid.
918 ptid_get_lwp - Fetch the lwp component of a ptid.
919 ptid_get_tid - Fetch the tid component of a ptid.
920 ptid_equal - Test to see if two ptids are equal.
921
922 Please do NOT access the struct ptid members directly (except, of
923 course, in the implementation of the above ptid manipulation
924 functions). */
925
926struct ptid
927 {
928 /* Process id */
929 int pid;
39f77062 930
ca6724c1
KB
931 /* Lightweight process id */
932 long lwp;
39f77062 933
ca6724c1
KB
934 /* Thread id */
935 long tid;
936 };
39f77062 937
ca6724c1 938typedef struct ptid ptid_t;
39f77062 939
c906108c 940\f
917317f4 941
5a2402b8
AC
942/* Optional host machine definition. Pure autoconf targets will not
943 need a "xm.h" file. This will be a symlink to one of the xm-*.h
944 files, built by the `configure' script. */
c906108c 945
5a2402b8 946#ifdef GDB_XM_FILE
c906108c 947#include "xm.h"
5a2402b8 948#endif
c906108c 949
5a2402b8
AC
950/* Optional native machine support. Non-native (and possibly pure
951 multi-arch) targets do not need a "nm.h" file. This will be a
952 symlink to one of the nm-*.h files, built by the `configure'
953 script. */
c906108c 954
5a2402b8 955#ifdef GDB_NM_FILE
c906108c 956#include "nm.h"
5a2402b8 957#endif
c906108c 958
5a2402b8
AC
959/* Optional target machine definition. Pure multi-arch configurations
960 do not need a "tm.h" file. This will be a symlink to one of the
c906108c
SS
961 tm-*.h files, built by the `configure' script. */
962
5a2402b8 963#ifdef GDB_TM_FILE
c906108c 964#include "tm.h"
6166d547
AC
965#endif
966
967/* GDB_MULTI_ARCH is normally set by configure.in using information
968 from configure.tgt or the config/%/%.mt Makefile fragment. Since
5a2402b8
AC
969 some targets have defined it in their "tm.h" file, delay providing
970 a default definition until after "tm.h" has been included.. */
6166d547
AC
971
972#ifndef GDB_MULTI_ARCH
973#define GDB_MULTI_ARCH 0
974#endif
975
c906108c
SS
976
977/* If the xm.h file did not define the mode string used to open the
978 files, assume that binary files are opened the same way as text
979 files */
980#ifndef FOPEN_RB
981#include "fopen-same.h"
982#endif
983
c906108c 984#define CONST_PTR const
c906108c 985
c906108c
SS
986/* Defaults for system-wide constants (if not defined by xm.h, we fake it).
987 FIXME: Assumes 2's complement arithmetic */
988
989#if !defined (UINT_MAX)
917317f4 990#define UINT_MAX ((unsigned int)(~0)) /* 0xFFFFFFFF for 32-bits */
c906108c
SS
991#endif
992
993#if !defined (INT_MAX)
917317f4 994#define INT_MAX ((int)(UINT_MAX >> 1)) /* 0x7FFFFFFF for 32-bits */
c906108c
SS
995#endif
996
997#if !defined (INT_MIN)
998#define INT_MIN ((int)((int) ~0 ^ INT_MAX)) /* 0x80000000 for 32-bits */
999#endif
1000
1001#if !defined (ULONG_MAX)
1002#define ULONG_MAX ((unsigned long)(~0L)) /* 0xFFFFFFFF for 32-bits */
1003#endif
1004
1005#if !defined (LONG_MAX)
1006#define LONG_MAX ((long)(ULONG_MAX >> 1)) /* 0x7FFFFFFF for 32-bits */
1007#endif
1008
4ce44c66 1009#if !defined (ULONGEST_MAX)
658d99ff 1010#define ULONGEST_MAX (~(ULONGEST)0) /* 0xFFFFFFFFFFFFFFFF for 64-bits */
4ce44c66
JM
1011#endif
1012
658d99ff 1013#if !defined (LONGEST_MAX) /* 0x7FFFFFFFFFFFFFFF for 64-bits */
4ce44c66
JM
1014#define LONGEST_MAX ((LONGEST)(ULONGEST_MAX >> 1))
1015#endif
1016
c906108c
SS
1017/* Convert a LONGEST to an int. This is used in contexts (e.g. number of
1018 arguments to a function, number in a value history, register number, etc.)
1019 where the value must not be larger than can fit in an int. */
1020
917317f4 1021extern int longest_to_int (LONGEST);
c906108c 1022
7b83ea04 1023/* Assorted functions we can declare, now that const and volatile are
c906108c
SS
1024 defined. */
1025
5565b556 1026extern char *savestring (const char *, size_t);
c906108c 1027
5565b556 1028extern char *msavestring (void *, const char *, size_t);
c906108c 1029
917317f4 1030extern char *mstrsave (void *, const char *);
c906108c 1031
c0e61796
AC
1032#if !defined (USE_MMALLOC)
1033/* NOTE: cagney/2000-03-04: The mmalloc functions need to use PTR
1034 rather than void* so that they are consistent with the delcaration
1035 in ../mmalloc/mmalloc.h. */
1036extern PTR mcalloc (PTR, size_t, size_t);
1037extern PTR mmalloc (PTR, size_t);
1038extern PTR mrealloc (PTR, PTR, size_t);
1039extern void mfree (PTR, PTR);
c906108c
SS
1040#endif
1041
c0e61796
AC
1042/* Robust versions of same. Throw an internal error when no memory,
1043 guard against stray NULL arguments. */
1044extern void *xmmalloc (void *md, size_t size);
1045extern void *xmrealloc (void *md, void *ptr, size_t size);
1046extern void *xmcalloc (void *md, size_t number, size_t size);
1047extern void xmfree (void *md, void *ptr);
1048
1049/* xmalloc(), xrealloc() and xcalloc() have already been declared in
1050 "libiberty.h". */
1051extern void xfree (void *);
1052
76995688
AC
1053/* Like asprintf/vasprintf but get an internal_error if the call
1054 fails. */
1055extern void xasprintf (char **ret, const char *format, ...) ATTR_FORMAT (printf, 2, 3);
1056extern void xvasprintf (char **ret, const char *format, va_list ap);
1057
917317f4 1058extern int parse_escape (char **);
c906108c 1059
c906108c
SS
1060/* Message to be printed before the error message, when an error occurs. */
1061
1062extern char *error_pre_print;
1063
1064/* Message to be printed before the error message, when an error occurs. */
1065
1066extern char *quit_pre_print;
1067
1068/* Message to be printed before the warning message, when a warning occurs. */
1069
1070extern char *warning_pre_print;
1071
4ce44c66 1072extern NORETURN void verror (const char *fmt, va_list ap) ATTR_NORETURN;
c906108c 1073
4ce44c66 1074extern NORETURN void error (const char *fmt, ...) ATTR_NORETURN;
c906108c 1075
4ce44c66
JM
1076/* DEPRECATED: Use error(), verror() or error_stream(). */
1077extern NORETURN void error_begin (void);
c906108c 1078
d9fcf2fb 1079extern NORETURN void error_stream (struct ui_file *) ATTR_NORETURN;
2acceee2 1080
4ce44c66
JM
1081/* Returns a freshly allocate buffer containing the last error
1082 message. */
917317f4 1083extern char *error_last_message (void);
2acceee2 1084
8e65ff28
AC
1085extern NORETURN void internal_verror (const char *file, int line,
1086 const char *, va_list ap) ATTR_NORETURN;
4ce44c66 1087
8e65ff28
AC
1088extern NORETURN void internal_error (const char *file, int line,
1089 const char *, ...) ATTR_NORETURN ATTR_FORMAT (printf, 3, 4);
4ce44c66 1090
917317f4 1091extern NORETURN void nomem (long) ATTR_NORETURN;
c906108c 1092
f9c696d2
AC
1093/* Reasons for calling return_to_top_level. NOTE: all reason values
1094 must be less than zero. enum value 0 is reserved for internal use
1095 as the return value from an initial setjmp(). The function
1096 catch_exceptions() reserves values >= 0 as legal results from its
1097 wrapped function. */
c906108c 1098
917317f4
JM
1099enum return_reason
1100 {
1101 /* User interrupt. */
f9c696d2 1102 RETURN_QUIT = -2,
917317f4
JM
1103 /* Any other error. */
1104 RETURN_ERROR
1105 };
c906108c 1106
43ff13b4
JM
1107#define ALL_CLEANUPS ((struct cleanup *)0)
1108
f9c696d2 1109#define RETURN_MASK(reason) (1 << (int)(-reason))
99eeeb0f
ND
1110#define RETURN_MASK_QUIT RETURN_MASK (RETURN_QUIT)
1111#define RETURN_MASK_ERROR RETURN_MASK (RETURN_ERROR)
1112#define RETURN_MASK_ALL (RETURN_MASK_QUIT | RETURN_MASK_ERROR)
c906108c
SS
1113typedef int return_mask;
1114
ab290c52
AC
1115/* Throw an exception of type RETURN_REASON. Will execute a LONG JUMP
1116 to the inner most containing exception handler (established using
1117 catch_exceptions() or the legacy catch_errors()).
1118
1119 Useful when a section of code that caught an exception finds it
1120 needs to repropagate that exception up the call chain.
1121
1122 The name return_to_top_level() dates back to a time when GDB had
1123 only one exception handler installed at the top level. This really
1124 did return to the top level. The name should probably be changed.
1125
1126 NOTE: Some sections of code are using error_begin() in conjunction
1127 with return_to_top_level() to throw the initial exception. That
1128 code should, instead, use either error() or error_string(). */
1129
917317f4 1130extern NORETURN void return_to_top_level (enum return_reason) ATTR_NORETURN;
c906108c 1131
f9c696d2
AC
1132/* Call FUNC(UIOUT, FUNC_ARGS) but wrapped within an exception
1133 handler. If an exception (enum return_reason) is thrown using
1134 return_to_top_level() than all cleanups installed since
1135 catch_exceptions() was entered are invoked, the (-ve) exception
1136 value is then returned by catch_exceptions. If FUNC() returns
1137 normally (with a postive or zero return value) then that value is
1138 returned by catch_exceptions(). It is an internal_error() for
1139 FUNC() to return a negative value.
1140
1141 For the period of the FUNC() call: UIOUT is installed as the output
1142 builder; ERRSTRING is installed as the error/quit message; and a
1143 new cleanup_chain is established. The old values are restored
1144 before catch_exceptions() returns.
1145
1146 FIXME; cagney/2001-08-13: The need to override the global UIOUT
1147 builder variable should just go away.
1148
1149 This function superseeds catch_errors().
1150
1151 This function uses SETJMP() and LONGJUMP(). */
1152
1153struct ui_out;
1154typedef int (catch_exceptions_ftype) (struct ui_out *ui_out, void *args);
1155extern int catch_exceptions (struct ui_out *uiout,
1156 catch_exceptions_ftype *func, void *func_args,
1157 char *errstring, return_mask mask);
1158
11cf8741
JM
1159/* If CATCH_ERRORS_FTYPE throws an error, catch_errors() returns zero
1160 otherwize the result from CATCH_ERRORS_FTYPE is returned. It is
1161 probably useful for CATCH_ERRORS_FTYPE to always return a non-zero
1162 value. It's unfortunate that, catch_errors() does not return an
1163 indication of the exact exception that it caught - quit_flag might
f9c696d2
AC
1164 help.
1165
1166 This function is superseeded by catch_exceptions(). */
11cf8741 1167
917317f4
JM
1168typedef int (catch_errors_ftype) (PTR);
1169extern int catch_errors (catch_errors_ftype *, PTR, char *, return_mask);
c906108c 1170
11cf8741
JM
1171/* Template to catch_errors() that wraps calls to command
1172 functions. */
1173
1174typedef void (catch_command_errors_ftype) (char *, int);
1175extern int catch_command_errors (catch_command_errors_ftype *func, char *command, int from_tty, return_mask);
1176
917317f4 1177extern void warning_begin (void);
c906108c 1178
917317f4 1179extern void warning (const char *, ...) ATTR_FORMAT (printf, 1, 2);
c906108c
SS
1180
1181/* Global functions from other, non-gdb GNU thingies.
1182 Libiberty thingies are no longer declared here. We include libiberty.h
1183 above, instead. */
1184
1185#ifndef GETENV_PROVIDED
917317f4 1186extern char *getenv (const char *);
c906108c
SS
1187#endif
1188
1189/* From other system libraries */
1190
1191#ifdef HAVE_STDDEF_H
1192#include <stddef.h>
1193#endif
1194
1195#ifdef HAVE_STDLIB_H
c906108c
SS
1196#include <stdlib.h>
1197#endif
1198#ifndef min
1199#define min(a, b) ((a) < (b) ? (a) : (b))
1200#endif
1201#ifndef max
1202#define max(a, b) ((a) > (b) ? (a) : (b))
1203#endif
1204
1205
1206/* We take the address of fclose later, but some stdio's forget
1207 to declare this. We can't always declare it since there's
1208 no way to declare the parameters without upsetting some compiler
1209 somewhere. */
1210
1211#ifndef FCLOSE_PROVIDED
917317f4 1212extern int fclose (FILE *);
c906108c
SS
1213#endif
1214
1215#ifndef atof
917317f4 1216extern double atof (const char *); /* X3.159-1989 4.10.1.1 */
c906108c
SS
1217#endif
1218
c906108c
SS
1219/* Various possibilities for alloca. */
1220#ifndef alloca
917317f4
JM
1221#ifdef __GNUC__
1222#define alloca __builtin_alloca
1223#else /* Not GNU C */
1224#ifdef HAVE_ALLOCA_H
1225#include <alloca.h>
1226#else
1227#ifdef _AIX
1228#pragma alloca
1229#else
c906108c
SS
1230
1231/* We need to be careful not to declare this in a way which conflicts with
1232 bison. Bison never declares it as char *, but under various circumstances
1233 (like __hpux) we need to use void *. */
917317f4 1234extern void *alloca ();
917317f4
JM
1235#endif /* Not _AIX */
1236#endif /* Not HAVE_ALLOCA_H */
1237#endif /* Not GNU C */
c906108c
SS
1238#endif /* alloca not defined */
1239
1240/* HOST_BYTE_ORDER must be defined to one of these. */
1241
1242#ifdef HAVE_ENDIAN_H
1243#include <endian.h>
1244#endif
1245
1246#if !defined (BIG_ENDIAN)
1247#define BIG_ENDIAN 4321
1248#endif
1249
1250#if !defined (LITTLE_ENDIAN)
1251#define LITTLE_ENDIAN 1234
1252#endif
1253
1254/* Dynamic target-system-dependent parameters for GDB. */
1255#include "gdbarch.h"
33489c5b
AC
1256#if (GDB_MULTI_ARCH == 0)
1257/* Multi-arch targets _should_ be including "arch-utils.h" directly
1258 into their *-tdep.c file. This is a prop to help old non-
1259 multi-arch targets to continue to compile. */
1260#include "arch-utils.h"
1261#endif
c906108c
SS
1262
1263/* Static target-system-dependent parameters for GDB. */
1264
1265/* Number of bits in a char or unsigned char for the target machine.
1266 Just like CHAR_BIT in <limits.h> but describes the target machine. */
1267#if !defined (TARGET_CHAR_BIT)
1268#define TARGET_CHAR_BIT 8
1269#endif
1270
c906108c
SS
1271/* If we picked up a copy of CHAR_BIT from a configuration file
1272 (which may get it by including <limits.h>) then use it to set
1273 the number of bits in a host char. If not, use the same size
1274 as the target. */
1275
1276#if defined (CHAR_BIT)
1277#define HOST_CHAR_BIT CHAR_BIT
1278#else
1279#define HOST_CHAR_BIT TARGET_CHAR_BIT
1280#endif
1281
1282/* The bit byte-order has to do just with numbering of bits in
1283 debugging symbols and such. Conceptually, it's quite separate
1284 from byte/word byte order. */
1285
1286#if !defined (BITS_BIG_ENDIAN)
1287#define BITS_BIG_ENDIAN (TARGET_BYTE_ORDER == BIG_ENDIAN)
1288#endif
1289
1290/* In findvar.c. */
1291
917317f4 1292extern LONGEST extract_signed_integer (void *, int);
c906108c 1293
917317f4 1294extern ULONGEST extract_unsigned_integer (void *, int);
c906108c 1295
917317f4 1296extern int extract_long_unsigned_integer (void *, int, LONGEST *);
c906108c 1297
917317f4 1298extern CORE_ADDR extract_address (void *, int);
c906108c 1299
4478b372
JB
1300extern CORE_ADDR extract_typed_address (void *buf, struct type *type);
1301
a9ac8f51 1302extern void store_signed_integer (void *, int, LONGEST);
c906108c 1303
a9ac8f51 1304extern void store_unsigned_integer (void *, int, ULONGEST);
c906108c 1305
a9ac8f51 1306extern void store_address (void *, int, LONGEST);
c906108c 1307
4478b372
JB
1308extern void store_typed_address (void *buf, struct type *type, CORE_ADDR addr);
1309
c906108c 1310\f
c906108c
SS
1311/* From valops.c */
1312
917317f4 1313extern CORE_ADDR push_bytes (CORE_ADDR, char *, int);
c906108c 1314
917317f4 1315extern CORE_ADDR push_word (CORE_ADDR, ULONGEST);
c906108c 1316
c906108c 1317extern int watchdog;
c906108c
SS
1318
1319/* Hooks for alternate command interfaces. */
8b93c638 1320
fb40c209
AC
1321#ifdef UI_OUT
1322/* The name of the interpreter if specified on the command line. */
1323extern char *interpreter_p;
1324#endif
1325
1326/* If a given interpreter matches INTERPRETER_P then it should update
1327 command_loop_hook and init_ui_hook with the per-interpreter
1328 implementation. */
1329/* FIXME: command_loop_hook and init_ui_hook should be moved here. */
1330
c906108c
SS
1331struct target_waitstatus;
1332struct cmd_list_element;
c906108c 1333
0f71a2f6
JM
1334/* Should the asynchronous variant of the interpreter (using the
1335 event-loop) be enabled? */
6426a772 1336extern int event_loop_p;
917317f4
JM
1337
1338extern void (*init_ui_hook) (char *argv0);
1339extern void (*command_loop_hook) (void);
c2d11a7d 1340extern void (*show_load_progress) (const char *section,
7b83ea04
AC
1341 unsigned long section_sent,
1342 unsigned long section_size,
1343 unsigned long total_sent,
c2d11a7d 1344 unsigned long total_size);
917317f4
JM
1345extern void (*print_frame_info_listing_hook) (struct symtab * s,
1346 int line, int stopline,
1347 int noerror);
1348extern struct frame_info *parse_frame_specification (char *frame_exp);
1349extern int (*query_hook) (const char *, va_list);
1350extern void (*warning_hook) (const char *, va_list);
d9fcf2fb 1351extern void (*flush_hook) (struct ui_file * stream);
917317f4
JM
1352extern void (*create_breakpoint_hook) (struct breakpoint * b);
1353extern void (*delete_breakpoint_hook) (struct breakpoint * bpt);
1354extern void (*modify_breakpoint_hook) (struct breakpoint * bpt);
1355extern void (*interactive_hook) (void);
1356extern void (*registers_changed_hook) (void);
1357extern void (*readline_begin_hook) (char *,...);
1358extern char *(*readline_hook) (char *);
1359extern void (*readline_end_hook) (void);
1360extern void (*register_changed_hook) (int regno);
1361extern void (*memory_changed_hook) (CORE_ADDR addr, int len);
1362extern void (*context_hook) (int);
39f77062
KB
1363extern ptid_t (*target_wait_hook) (ptid_t ptid,
1364 struct target_waitstatus * status);
917317f4
JM
1365
1366extern void (*attach_hook) (void);
1367extern void (*detach_hook) (void);
1368extern void (*call_command_hook) (struct cmd_list_element * c,
1369 char *cmd, int from_tty);
1370
1371extern void (*set_hook) (struct cmd_list_element * c);
1372
1373extern NORETURN void (*error_hook) (void) ATTR_NORETURN;
1374
1375extern void (*error_begin_hook) (void);
1376
1377extern int (*ui_load_progress_hook) (const char *section, unsigned long num);
c906108c
SS
1378
1379
1380/* Inhibit window interface if non-zero. */
1381
1382extern int use_windows;
1383
1384/* Symbolic definitions of filename-related things. */
1385/* FIXME, this doesn't work very well if host and executable
1386 filesystems conventions are different. */
1387
1388#ifndef DIRNAME_SEPARATOR
1389#define DIRNAME_SEPARATOR ':'
1390#endif
1391
c906108c 1392#ifndef SLASH_STRING
c906108c
SS
1393#define SLASH_STRING "/"
1394#endif
c906108c 1395
2584159e
EZ
1396#ifdef __MSDOS__
1397# define CANT_FORK
1398# define GLOBAL_CURDIR
1399#endif
1400
ca6724c1
KB
1401/* Provide default definitions of PIDGET, TIDGET, and MERGEPID.
1402 The name ``TIDGET'' is a historical accident. Many uses of TIDGET
1403 in the code actually refer to a lightweight process id, i.e,
1404 something that can be considered a process id in its own right for
1405 certain purposes. */
c906108c
SS
1406
1407#ifndef PIDGET
ca6724c1
KB
1408#define PIDGET(PTID) (ptid_get_pid (PTID))
1409#define TIDGET(PTID) (ptid_get_lwp (PTID))
1410#define MERGEPID(PID, TID) ptid_build (PID, TID, 0)
c906108c
SS
1411#endif
1412
96baa820
JM
1413/* Define well known filenos if the system does not define them. */
1414#ifndef STDIN_FILENO
1415#define STDIN_FILENO 0
1416#endif
1417#ifndef STDOUT_FILENO
1418#define STDOUT_FILENO 1
1419#endif
1420#ifndef STDERR_FILENO
1421#define STDERR_FILENO 2
1422#endif
1423
104c1213
JM
1424/* If this definition isn't overridden by the header files, assume
1425 that isatty and fileno exist on this system. */
1426#ifndef ISATTY
1427#define ISATTY(FP) (isatty (fileno (FP)))
1428#endif
1429
c906108c 1430#endif /* #ifndef DEFS_H */
This page took 0.200393 seconds and 4 git commands to generate.