1 /* General utility routines for GDB, the GNU debugger.
2 Copyright 1986, 89, 90, 91, 92, 95, 1996 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program 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 2 of the License, or
9 (at your option) any later version.
11 This program 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 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21 #ifdef ANSI_PROTOTYPES
27 #include "gdb_string.h"
38 #include "expression.h"
44 /* readline defines this. */
47 /* Prototypes for local functions */
49 static void vfprintf_maybe_filtered PARAMS ((FILE *, const char *, va_list, int));
51 static void fputs_maybe_filtered PARAMS ((const char *, FILE *, int));
53 #if !defined (NO_MMALLOC) && !defined (NO_MMCHECK)
54 static void malloc_botch PARAMS ((void));
58 fatal_dump_core PARAMS((char *, ...));
61 prompt_for_continue PARAMS ((void));
64 set_width_command PARAMS ((char *, int, struct cmd_list_element *));
66 /* If this definition isn't overridden by the header files, assume
67 that isatty and fileno exist on this system. */
69 #define ISATTY(FP) (isatty (fileno (FP)))
72 /* Chain of cleanup actions established with make_cleanup,
73 to be executed if an error happens. */
75 static struct cleanup *cleanup_chain; /* cleaned up after a failed command */
76 static struct cleanup *final_cleanup_chain; /* cleaned up when gdb exits */
78 /* Nonzero if we have job control. */
82 /* Nonzero means a quit has been requested. */
86 /* Nonzero means quit immediately if Control-C is typed now, rather
87 than waiting until QUIT is executed. Be careful in setting this;
88 code which executes with immediate_quit set has to be very careful
89 about being able to deal with being interrupted at any time. It is
90 almost always better to use QUIT; the only exception I can think of
91 is being able to quit out of a system call (using EINTR loses if
92 the SIGINT happens between the previous QUIT and the system call).
93 To immediately quit in the case in which a SIGINT happens between
94 the previous QUIT and setting immediate_quit (desirable anytime we
95 expect to block), call QUIT after setting immediate_quit. */
99 /* Nonzero means that encoded C++ names should be printed out in their
100 C++ form rather than raw. */
104 /* Nonzero means that encoded C++ names should be printed out in their
105 C++ form even in assembler language displays. If this is set, but
106 DEMANGLE is zero, names are printed raw, i.e. DEMANGLE controls. */
108 int asm_demangle = 0;
110 /* Nonzero means that strings with character values >0x7F should be printed
111 as octal escapes. Zero means just print the value (e.g. it's an
112 international character, and the terminal or window can cope.) */
114 int sevenbit_strings = 0;
116 /* String to be printed before error messages, if any. */
118 char *error_pre_print;
120 /* String to be printed before quit messages, if any. */
122 char *quit_pre_print;
124 /* String to be printed before warning messages, if any. */
126 char *warning_pre_print = "\nwarning: ";
128 /* Add a new cleanup to the cleanup_chain,
129 and return the previous chain pointer
130 to be passed later to do_cleanups or discard_cleanups.
131 Args are FUNCTION to clean up with, and ARG to pass to it. */
134 make_cleanup (function, arg)
135 void (*function) PARAMS ((PTR));
138 return make_my_cleanup (&cleanup_chain, function, arg);
142 make_final_cleanup (function, arg)
143 void (*function) PARAMS ((PTR));
146 return make_my_cleanup (&final_cleanup_chain, function, arg);
149 make_my_cleanup (pmy_chain, function, arg)
150 struct cleanup **pmy_chain;
151 void (*function) PARAMS ((PTR));
154 register struct cleanup *new
155 = (struct cleanup *) xmalloc (sizeof (struct cleanup));
156 register struct cleanup *old_chain = *pmy_chain;
158 new->next = *pmy_chain;
159 new->function = function;
166 /* Discard cleanups and do the actions they describe
167 until we get back to the point OLD_CHAIN in the cleanup_chain. */
170 do_cleanups (old_chain)
171 register struct cleanup *old_chain;
173 do_my_cleanups (&cleanup_chain, old_chain);
177 do_final_cleanups (old_chain)
178 register struct cleanup *old_chain;
180 do_my_cleanups (&final_cleanup_chain, old_chain);
184 do_my_cleanups (pmy_chain, old_chain)
185 register struct cleanup **pmy_chain;
186 register struct cleanup *old_chain;
188 register struct cleanup *ptr;
189 while ((ptr = *pmy_chain) != old_chain)
191 *pmy_chain = ptr->next; /* Do this first incase recursion */
192 (*ptr->function) (ptr->arg);
197 /* Discard cleanups, not doing the actions they describe,
198 until we get back to the point OLD_CHAIN in the cleanup_chain. */
201 discard_cleanups (old_chain)
202 register struct cleanup *old_chain;
204 discard_my_cleanups (&cleanup_chain, old_chain);
208 discard_final_cleanups (old_chain)
209 register struct cleanup *old_chain;
211 discard_my_cleanups (&final_cleanup_chain, old_chain);
215 discard_my_cleanups (pmy_chain, old_chain)
216 register struct cleanup **pmy_chain;
217 register struct cleanup *old_chain;
219 register struct cleanup *ptr;
220 while ((ptr = *pmy_chain) != old_chain)
222 *pmy_chain = ptr->next;
227 /* Set the cleanup_chain to 0, and return the old cleanup chain. */
231 return save_my_cleanups (&cleanup_chain);
235 save_final_cleanups ()
237 return save_my_cleanups (&final_cleanup_chain);
241 save_my_cleanups (pmy_chain)
242 struct cleanup **pmy_chain;
244 struct cleanup *old_chain = *pmy_chain;
250 /* Restore the cleanup chain from a previously saved chain. */
252 restore_cleanups (chain)
253 struct cleanup *chain;
255 restore_my_cleanups (&cleanup_chain, chain);
259 restore_final_cleanups (chain)
260 struct cleanup *chain;
262 restore_my_cleanups (&final_cleanup_chain, chain);
266 restore_my_cleanups (pmy_chain, chain)
267 struct cleanup **pmy_chain;
268 struct cleanup *chain;
273 /* This function is useful for cleanups.
277 old_chain = make_cleanup (free_current_contents, &foo);
279 to arrange to free the object thus allocated. */
282 free_current_contents (location)
288 /* Provide a known function that does nothing, to use as a base for
289 for a possibly long chain of cleanups. This is useful where we
290 use the cleanup chain for handling normal cleanups as well as dealing
291 with cleanups that need to be done as a result of a call to error().
292 In such cases, we may not be certain where the first cleanup is, unless
293 we have a do-nothing one to always use as the base. */
303 /* Print a warning message. Way to use this is to call warning_begin,
304 output the warning message (use unfiltered output to gdb_stderr),
305 ending in a newline. There is not currently a warning_end that you
306 call afterwards, but such a thing might be added if it is useful
307 for a GUI to separate warning messages from other output.
309 FIXME: Why do warnings use unfiltered output and errors filtered?
310 Is this anything other than a historical accident? */
315 target_terminal_ours ();
316 wrap_here(""); /* Force out any buffered output */
317 gdb_flush (gdb_stdout);
318 if (warning_pre_print)
319 fprintf_unfiltered (gdb_stderr, warning_pre_print);
322 /* Print a warning message.
323 The first argument STRING is the warning message, used as a fprintf string,
324 and the remaining args are passed as arguments to it.
325 The primary difference between warnings and errors is that a warning
326 does not force the return to command level. */
330 #ifdef ANSI_PROTOTYPES
331 warning (const char *string, ...)
338 #ifdef ANSI_PROTOTYPES
339 va_start (args, string);
344 string = va_arg (args, char *);
347 vfprintf_unfiltered (gdb_stderr, string, args);
348 fprintf_unfiltered (gdb_stderr, "\n");
352 /* Start the printing of an error message. Way to use this is to call
353 this, output the error message (use filtered output to gdb_stderr
354 (FIXME: Some callers, like memory_error, use gdb_stdout)), ending
355 in a newline, and then call return_to_top_level (RETURN_ERROR).
356 error() provides a convenient way to do this for the special case
357 that the error message can be formatted with a single printf call,
358 but this is more general. */
362 target_terminal_ours ();
363 wrap_here (""); /* Force out any buffered output */
364 gdb_flush (gdb_stdout);
366 annotate_error_begin ();
369 fprintf_filtered (gdb_stderr, error_pre_print);
372 /* Print an error message and return to command level.
373 The first argument STRING is the error message, used as a fprintf string,
374 and the remaining args are passed as arguments to it. */
376 #ifdef ANSI_PROTOTYPES
378 error (const char *string, ...)
386 #ifdef ANSI_PROTOTYPES
387 va_start (args, string);
396 #ifdef ANSI_PROTOTYPES
397 vfprintf_filtered (gdb_stderr, string, args);
402 string1 = va_arg (args, char *);
403 vfprintf_filtered (gdb_stderr, string1, args);
406 fprintf_filtered (gdb_stderr, "\n");
408 return_to_top_level (RETURN_ERROR);
413 /* Print an error message and exit reporting failure.
414 This is for a error that we cannot continue from.
415 The arguments are printed a la printf.
417 This function cannot be declared volatile (NORETURN) in an
418 ANSI environment because exit() is not declared volatile. */
422 #ifdef ANSI_PROTOTYPES
423 fatal (char *string, ...)
430 #ifdef ANSI_PROTOTYPES
431 va_start (args, string);
435 string = va_arg (args, char *);
437 fprintf_unfiltered (gdb_stderr, "\ngdb: ");
438 vfprintf_unfiltered (gdb_stderr, string, args);
439 fprintf_unfiltered (gdb_stderr, "\n");
444 /* Print an error message and exit, dumping core.
445 The arguments are printed a la printf (). */
449 #ifdef ANSI_PROTOTYPES
450 fatal_dump_core (char *string, ...)
452 fatal_dump_core (va_alist)
457 #ifdef ANSI_PROTOTYPES
458 va_start (args, string);
463 string = va_arg (args, char *);
465 /* "internal error" is always correct, since GDB should never dump
466 core, no matter what the input. */
467 fprintf_unfiltered (gdb_stderr, "\ngdb internal error: ");
468 vfprintf_unfiltered (gdb_stderr, string, args);
469 fprintf_unfiltered (gdb_stderr, "\n");
472 signal (SIGQUIT, SIG_DFL);
473 kill (getpid (), SIGQUIT);
474 /* We should never get here, but just in case... */
478 /* The strerror() function can return NULL for errno values that are
479 out of range. Provide a "safe" version that always returns a
483 safe_strerror (errnum)
489 if ((msg = strerror (errnum)) == NULL)
491 sprintf (buf, "(undocumented errno %d)", errnum);
497 /* The strsignal() function can return NULL for signal values that are
498 out of range. Provide a "safe" version that always returns a
502 safe_strsignal (signo)
508 if ((msg = strsignal (signo)) == NULL)
510 sprintf (buf, "(undocumented signal %d)", signo);
517 /* Print the system error message for errno, and also mention STRING
518 as the file name for which the error was encountered.
519 Then return to command level. */
522 perror_with_name (string)
528 err = safe_strerror (errno);
529 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
530 strcpy (combined, string);
531 strcat (combined, ": ");
532 strcat (combined, err);
534 /* I understand setting these is a matter of taste. Still, some people
535 may clear errno but not know about bfd_error. Doing this here is not
537 bfd_set_error (bfd_error_no_error);
540 error ("%s.", combined);
543 /* Print the system error message for ERRCODE, and also mention STRING
544 as the file name for which the error was encountered. */
547 print_sys_errmsg (string, errcode)
554 err = safe_strerror (errcode);
555 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
556 strcpy (combined, string);
557 strcat (combined, ": ");
558 strcat (combined, err);
560 /* We want anything which was printed on stdout to come out first, before
562 gdb_flush (gdb_stdout);
563 fprintf_unfiltered (gdb_stderr, "%s.\n", combined);
566 /* Control C eventually causes this to be called, at a convenient time. */
571 serial_t gdb_stdout_serial = serial_fdopen (1);
573 target_terminal_ours ();
575 /* We want all output to appear now, before we print "Quit". We
576 have 3 levels of buffering we have to flush (it's possible that
577 some of these should be changed to flush the lower-level ones
580 /* 1. The _filtered buffer. */
581 wrap_here ((char *)0);
583 /* 2. The stdio buffer. */
584 gdb_flush (gdb_stdout);
585 gdb_flush (gdb_stderr);
587 /* 3. The system-level buffer. */
588 SERIAL_FLUSH_OUTPUT (gdb_stdout_serial);
589 SERIAL_UN_FDOPEN (gdb_stdout_serial);
591 annotate_error_begin ();
593 /* Don't use *_filtered; we don't want to prompt the user to continue. */
595 fprintf_unfiltered (gdb_stderr, quit_pre_print);
598 /* If there is no terminal switching for this target, then we can't
599 possibly get screwed by the lack of job control. */
600 || current_target.to_terminal_ours == NULL)
601 fprintf_unfiltered (gdb_stderr, "Quit\n");
603 fprintf_unfiltered (gdb_stderr,
604 "Quit (expect signal SIGINT when the program is resumed)\n");
605 return_to_top_level (RETURN_QUIT);
609 #if defined(__GO32__) || defined (_WIN32)
612 /* In the absence of signals, poll keyboard for a quit.
613 Called from #define QUIT pollquit() in xm-go32.h. */
631 /* We just ignore it */
632 /* FIXME!! Don't think this actually works! */
633 fprintf_unfiltered (gdb_stderr, "CTRL-A to quit, CTRL-B to quit harder\n");
637 #else /* !_MSC_VER */
639 /* This above code is not valid for wingdb unless
640 * getkey and kbhit were to be rewritten.
641 * Windows translates all keyboard and mouse events
642 * into a message which is appended to the message
643 * queue for the process.
648 int k = win32pollquit();
660 #endif /* !_MSC_VER */
678 fprintf_unfiltered (gdb_stderr, "CTRL-A to quit, CTRL-B to quit harder\n");
682 #else /* !_MSC_VER */
686 int k = win32pollquit();
692 #endif /* !_MSC_VER */
697 /* Done by signals */
699 #endif /* defined(__GO32__) || defined(_WIN32) */
701 /* Control C comes here */
708 /* Restore the signal handler. Harmless with BSD-style signals, needed
709 for System V-style signals. So just always do it, rather than worrying
710 about USG defines and stuff like that. */
711 signal (signo, request_quit);
713 /* start-sanitize-gm */
716 #endif /* GENERAL_MAGIC */
717 /* end-sanitize-gm */
728 /* Memory management stuff (malloc friends). */
730 /* Make a substitute size_t for non-ANSI compilers. */
732 #ifndef HAVE_STDDEF_H
734 #define size_t unsigned int
738 #if defined (NO_MMALLOC)
745 return malloc (size);
749 mrealloc (md, ptr, size)
754 if (ptr == 0) /* Guard against old realloc's */
755 return malloc (size);
757 return realloc (ptr, size);
768 #endif /* NO_MMALLOC */
770 #if defined (NO_MMALLOC) || defined (NO_MMCHECK)
778 #else /* Have mmalloc and want corruption checking */
783 fatal_dump_core ("Memory corruption");
786 /* Attempt to install hooks in mmalloc/mrealloc/mfree for the heap specified
787 by MD, to detect memory corruption. Note that MD may be NULL to specify
788 the default heap that grows via sbrk.
790 Note that for freshly created regions, we must call mmcheckf prior to any
791 mallocs in the region. Otherwise, any region which was allocated prior to
792 installing the checking hooks, which is later reallocated or freed, will
793 fail the checks! The mmcheck function only allows initial hooks to be
794 installed before the first mmalloc. However, anytime after we have called
795 mmcheck the first time to install the checking hooks, we can call it again
796 to update the function pointer to the memory corruption handler.
798 Returns zero on failure, non-zero on success. */
800 #ifndef MMCHECK_FORCE
801 #define MMCHECK_FORCE 0
808 if (!mmcheckf (md, malloc_botch, MMCHECK_FORCE))
810 /* Don't use warning(), which relies on current_target being set
811 to something other than dummy_target, until after
812 initialize_all_files(). */
815 (gdb_stderr, "warning: failed to install memory consistency checks; ");
817 (gdb_stderr, "configuration should define NO_MMCHECK or MMCHECK_FORCE\n");
823 #endif /* Have mmalloc and want corruption checking */
825 /* Called when a memory allocation fails, with the number of bytes of
826 memory requested in SIZE. */
834 fatal ("virtual memory exhausted: can't allocate %ld bytes.", size);
838 fatal ("virtual memory exhausted.");
842 /* Like mmalloc but get error if no storage available, and protect against
843 the caller wanting to allocate zero bytes. Whether to return NULL for
844 a zero byte request, or translate the request into a request for one
845 byte of zero'd storage, is a religious issue. */
858 else if ((val = mmalloc (md, size)) == NULL)
865 /* Like mrealloc but get error if no storage available. */
868 xmrealloc (md, ptr, size)
877 val = mrealloc (md, ptr, size);
881 val = mmalloc (md, size);
890 /* Like malloc but get error if no storage available, and protect against
891 the caller wanting to allocate zero bytes. */
897 return (xmmalloc ((PTR) NULL, size));
900 /* Like mrealloc but get error if no storage available. */
907 return (xmrealloc ((PTR) NULL, ptr, size));
911 /* My replacement for the read system call.
912 Used like `read' but keeps going if `read' returns too soon. */
915 myread (desc, addr, len)
925 val = read (desc, addr, len);
936 /* Make a copy of the string at PTR with SIZE characters
937 (and add a null character at the end in the copy).
938 Uses malloc to get the space. Returns the address of the copy. */
941 savestring (ptr, size)
945 register char *p = (char *) xmalloc (size + 1);
946 memcpy (p, ptr, size);
952 msavestring (md, ptr, size)
957 register char *p = (char *) xmmalloc (md, size + 1);
958 memcpy (p, ptr, size);
963 /* The "const" is so it compiles under DGUX (which prototypes strsave
964 in <string.h>. FIXME: This should be named "xstrsave", shouldn't it?
965 Doesn't real strsave return NULL if out of memory? */
970 return savestring (ptr, strlen (ptr));
978 return (msavestring (md, ptr, strlen (ptr)));
982 print_spaces (n, file)
990 /* Print a host address. */
993 gdb_print_address (addr, stream)
998 /* We could use the %p conversion specifier to fprintf if we had any
999 way of knowing whether this host supports it. But the following
1000 should work on the Alpha and on 32 bit machines. */
1002 fprintf_filtered (stream, "0x%lx", (unsigned long)addr);
1005 /* Ask user a y-or-n question and return 1 iff answer is yes.
1006 Takes three args which are given to printf to print the question.
1007 The first, a control string, should end in "? ".
1008 It should not say how to answer, because we do that. */
1012 #ifdef ANSI_PROTOTYPES
1013 query (char *ctlstr, ...)
1020 register int answer;
1024 #ifdef ANSI_PROTOTYPES
1025 va_start (args, ctlstr);
1029 ctlstr = va_arg (args, char *);
1034 return query_hook (ctlstr, args);
1037 /* Automatically answer "yes" if input is not from a terminal. */
1038 if (!input_from_terminal_p ())
1041 /* FIXME Automatically answer "yes" if called from MacGDB. */
1048 wrap_here (""); /* Flush any buffered output */
1049 gdb_flush (gdb_stdout);
1051 if (annotation_level > 1)
1052 printf_filtered ("\n\032\032pre-query\n");
1054 vfprintf_filtered (gdb_stdout, ctlstr, args);
1055 printf_filtered ("(y or n) ");
1057 if (annotation_level > 1)
1058 printf_filtered ("\n\032\032query\n");
1061 /* If not in MacGDB, move to a new line so the entered line doesn't
1062 have a prompt on the front of it. */
1064 fputs_unfiltered ("\n", gdb_stdout);
1067 gdb_flush (gdb_stdout);
1068 answer = fgetc (stdin);
1069 clearerr (stdin); /* in case of C-d */
1070 if (answer == EOF) /* C-d */
1075 if (answer != '\n') /* Eat rest of input line, to EOF or newline */
1078 ans2 = fgetc (stdin);
1081 while (ans2 != EOF && ans2 != '\n');
1094 printf_filtered ("Please answer y or n.\n");
1097 if (annotation_level > 1)
1098 printf_filtered ("\n\032\032post-query\n");
1103 /* Parse a C escape sequence. STRING_PTR points to a variable
1104 containing a pointer to the string to parse. That pointer
1105 should point to the character after the \. That pointer
1106 is updated past the characters we use. The value of the
1107 escape sequence is returned.
1109 A negative value means the sequence \ newline was seen,
1110 which is supposed to be equivalent to nothing at all.
1112 If \ is followed by a null character, we return a negative
1113 value and leave the string pointer pointing at the null character.
1115 If \ is followed by 000, we return 0 and leave the string pointer
1116 after the zeros. A value of 0 does not mean end of string. */
1119 parse_escape (string_ptr)
1122 register int c = *(*string_ptr)++;
1126 return 007; /* Bell (alert) char */
1129 case 'e': /* Escape character */
1147 c = *(*string_ptr)++;
1149 c = parse_escape (string_ptr);
1152 return (c & 0200) | (c & 037);
1163 register int i = c - '0';
1164 register int count = 0;
1167 if ((c = *(*string_ptr)++) >= '0' && c <= '7')
1185 /* Print the character C on STREAM as part of the contents of a literal
1186 string whose delimiter is QUOTER. Note that this routine should only
1187 be call for printing things which are independent of the language
1188 of the program being debugged. */
1191 gdb_printchar (c, stream, quoter)
1197 c &= 0xFF; /* Avoid sign bit follies */
1199 if ( c < 0x20 || /* Low control chars */
1200 (c >= 0x7F && c < 0xA0) || /* DEL, High controls */
1201 (sevenbit_strings && c >= 0x80)) { /* high order bit set */
1205 fputs_filtered ("\\n", stream);
1208 fputs_filtered ("\\b", stream);
1211 fputs_filtered ("\\t", stream);
1214 fputs_filtered ("\\f", stream);
1217 fputs_filtered ("\\r", stream);
1220 fputs_filtered ("\\e", stream);
1223 fputs_filtered ("\\a", stream);
1226 fprintf_filtered (stream, "\\%.3o", (unsigned int) c);
1230 if (c == '\\' || c == quoter)
1231 fputs_filtered ("\\", stream);
1232 fprintf_filtered (stream, "%c", c);
1236 /* Number of lines per page or UINT_MAX if paging is disabled. */
1237 static unsigned int lines_per_page;
1238 /* Number of chars per line or UNIT_MAX is line folding is disabled. */
1239 static unsigned int chars_per_line;
1240 /* Current count of lines printed on this page, chars on this line. */
1241 static unsigned int lines_printed, chars_printed;
1243 /* Buffer and start column of buffered text, for doing smarter word-
1244 wrapping. When someone calls wrap_here(), we start buffering output
1245 that comes through fputs_filtered(). If we see a newline, we just
1246 spit it out and forget about the wrap_here(). If we see another
1247 wrap_here(), we spit it out and remember the newer one. If we see
1248 the end of the line, we spit out a newline, the indent, and then
1249 the buffered output. */
1251 /* Malloc'd buffer with chars_per_line+2 bytes. Contains characters which
1252 are waiting to be output (they have already been counted in chars_printed).
1253 When wrap_buffer[0] is null, the buffer is empty. */
1254 static char *wrap_buffer;
1256 /* Pointer in wrap_buffer to the next character to fill. */
1257 static char *wrap_pointer;
1259 /* String to indent by if the wrap occurs. Must not be NULL if wrap_column
1261 static char *wrap_indent;
1263 /* Column number on the screen where wrap_buffer begins, or 0 if wrapping
1264 is not in effect. */
1265 static int wrap_column;
1269 set_width_command (args, from_tty, c)
1272 struct cmd_list_element *c;
1276 wrap_buffer = (char *) xmalloc (chars_per_line + 2);
1277 wrap_buffer[0] = '\0';
1280 wrap_buffer = (char *) xrealloc (wrap_buffer, chars_per_line + 2);
1281 wrap_pointer = wrap_buffer; /* Start it at the beginning */
1284 /* Wait, so the user can read what's on the screen. Prompt the user
1285 to continue by pressing RETURN. */
1288 prompt_for_continue ()
1291 char cont_prompt[120];
1293 if (annotation_level > 1)
1294 printf_unfiltered ("\n\032\032pre-prompt-for-continue\n");
1296 strcpy (cont_prompt,
1297 "---Type <return> to continue, or q <return> to quit---");
1298 if (annotation_level > 1)
1299 strcat (cont_prompt, "\n\032\032prompt-for-continue\n");
1301 /* We must do this *before* we call gdb_readline, else it will eventually
1302 call us -- thinking that we're trying to print beyond the end of the
1304 reinitialize_more_filter ();
1307 /* On a real operating system, the user can quit with SIGINT.
1310 'q' is provided on all systems so users don't have to change habits
1311 from system to system, and because telling them what to do in
1312 the prompt is more user-friendly than expecting them to think of
1314 /* Call readline, not gdb_readline, because GO32 readline handles control-C
1315 whereas control-C to gdb_readline will cause the user to get dumped
1317 ignore = readline (cont_prompt);
1319 if (annotation_level > 1)
1320 printf_unfiltered ("\n\032\032post-prompt-for-continue\n");
1325 while (*p == ' ' || *p == '\t')
1328 request_quit (SIGINT);
1333 /* Now we have to do this again, so that GDB will know that it doesn't
1334 need to save the ---Type <return>--- line at the top of the screen. */
1335 reinitialize_more_filter ();
1337 dont_repeat (); /* Forget prev cmd -- CR won't repeat it. */
1340 /* Reinitialize filter; ie. tell it to reset to original values. */
1343 reinitialize_more_filter ()
1349 /* Indicate that if the next sequence of characters overflows the line,
1350 a newline should be inserted here rather than when it hits the end.
1351 If INDENT is non-null, it is a string to be printed to indent the
1352 wrapped part on the next line. INDENT must remain accessible until
1353 the next call to wrap_here() or until a newline is printed through
1356 If the line is already overfull, we immediately print a newline and
1357 the indentation, and disable further wrapping.
1359 If we don't know the width of lines, but we know the page height,
1360 we must not wrap words, but should still keep track of newlines
1361 that were explicitly printed.
1363 INDENT should not contain tabs, as that will mess up the char count
1364 on the next line. FIXME.
1366 This routine is guaranteed to force out any output which has been
1367 squirreled away in the wrap_buffer, so wrap_here ((char *)0) can be
1368 used to force out output from the wrap_buffer. */
1374 /* This should have been allocated, but be paranoid anyway. */
1380 *wrap_pointer = '\0';
1381 fputs_unfiltered (wrap_buffer, gdb_stdout);
1383 wrap_pointer = wrap_buffer;
1384 wrap_buffer[0] = '\0';
1385 if (chars_per_line == UINT_MAX) /* No line overflow checking */
1389 else if (chars_printed >= chars_per_line)
1391 puts_filtered ("\n");
1393 puts_filtered (indent);
1398 wrap_column = chars_printed;
1402 wrap_indent = indent;
1406 /* Ensure that whatever gets printed next, using the filtered output
1407 commands, starts at the beginning of the line. I.E. if there is
1408 any pending output for the current line, flush it and start a new
1409 line. Otherwise do nothing. */
1414 if (chars_printed > 0)
1416 puts_filtered ("\n");
1422 gdb_fopen (name, mode)
1426 return fopen (name, mode);
1434 && (stream == gdb_stdout
1435 || stream == gdb_stderr))
1437 flush_hook (stream);
1444 /* Like fputs but if FILTER is true, pause after every screenful.
1446 Regardless of FILTER can wrap at points other than the final
1447 character of a line.
1449 Unlike fputs, fputs_maybe_filtered does not return a value.
1450 It is OK for LINEBUFFER to be NULL, in which case just don't print
1453 Note that a longjmp to top level may occur in this routine (only if
1454 FILTER is true) (since prompt_for_continue may do so) so this
1455 routine should not be called when cleanups are not in place. */
1458 fputs_maybe_filtered (linebuffer, stream, filter)
1459 const char *linebuffer;
1463 const char *lineptr;
1465 if (linebuffer == 0)
1468 /* Don't do any filtering if it is disabled. */
1469 if (stream != gdb_stdout
1470 || (lines_per_page == UINT_MAX && chars_per_line == UINT_MAX))
1472 fputs_unfiltered (linebuffer, stream);
1476 /* Go through and output each character. Show line extension
1477 when this is necessary; prompt user for new page when this is
1480 lineptr = linebuffer;
1483 /* Possible new page. */
1485 (lines_printed >= lines_per_page - 1))
1486 prompt_for_continue ();
1488 while (*lineptr && *lineptr != '\n')
1490 /* Print a single line. */
1491 if (*lineptr == '\t')
1494 *wrap_pointer++ = '\t';
1496 fputc_unfiltered ('\t', stream);
1497 /* Shifting right by 3 produces the number of tab stops
1498 we have already passed, and then adding one and
1499 shifting left 3 advances to the next tab stop. */
1500 chars_printed = ((chars_printed >> 3) + 1) << 3;
1506 *wrap_pointer++ = *lineptr;
1508 fputc_unfiltered (*lineptr, stream);
1513 if (chars_printed >= chars_per_line)
1515 unsigned int save_chars = chars_printed;
1519 /* If we aren't actually wrapping, don't output newline --
1520 if chars_per_line is right, we probably just overflowed
1521 anyway; if it's wrong, let us keep going. */
1523 fputc_unfiltered ('\n', stream);
1525 /* Possible new page. */
1526 if (lines_printed >= lines_per_page - 1)
1527 prompt_for_continue ();
1529 /* Now output indentation and wrapped string */
1532 fputs_unfiltered (wrap_indent, stream);
1533 *wrap_pointer = '\0'; /* Null-terminate saved stuff */
1534 fputs_unfiltered (wrap_buffer, stream); /* and eject it */
1535 /* FIXME, this strlen is what prevents wrap_indent from
1536 containing tabs. However, if we recurse to print it
1537 and count its chars, we risk trouble if wrap_indent is
1538 longer than (the user settable) chars_per_line.
1539 Note also that this can set chars_printed > chars_per_line
1540 if we are printing a long string. */
1541 chars_printed = strlen (wrap_indent)
1542 + (save_chars - wrap_column);
1543 wrap_pointer = wrap_buffer; /* Reset buffer */
1544 wrap_buffer[0] = '\0';
1545 wrap_column = 0; /* And disable fancy wrap */
1550 if (*lineptr == '\n')
1553 wrap_here ((char *)0); /* Spit out chars, cancel further wraps */
1555 fputc_unfiltered ('\n', stream);
1562 fputs_filtered (linebuffer, stream)
1563 const char *linebuffer;
1566 fputs_maybe_filtered (linebuffer, stream, 1);
1570 putchar_unfiltered (c)
1577 fputs_unfiltered (buf, gdb_stdout);
1582 fputc_unfiltered (c, stream)
1590 fputs_unfiltered (buf, stream);
1595 /* Print a variable number of ARGS using format FORMAT. If this
1596 information is going to put the amount written (since the last call
1597 to REINITIALIZE_MORE_FILTER or the last page break) over the page size,
1598 call prompt_for_continue to get the users permision to continue.
1600 Unlike fprintf, this function does not return a value.
1602 We implement three variants, vfprintf (takes a vararg list and stream),
1603 fprintf (takes a stream to write on), and printf (the usual).
1605 Note also that a longjmp to top level may occur in this routine
1606 (since prompt_for_continue may do so) so this routine should not be
1607 called when cleanups are not in place. */
1610 vfprintf_maybe_filtered (stream, format, args, filter)
1617 struct cleanup *old_cleanups;
1619 vasprintf (&linebuffer, format, args);
1620 if (linebuffer == NULL)
1622 fputs_unfiltered ("\ngdb: virtual memory exhausted.\n", gdb_stderr);
1625 old_cleanups = make_cleanup (free, linebuffer);
1626 fputs_maybe_filtered (linebuffer, stream, filter);
1627 do_cleanups (old_cleanups);
1632 vfprintf_filtered (stream, format, args)
1637 vfprintf_maybe_filtered (stream, format, args, 1);
1641 vfprintf_unfiltered (stream, format, args)
1647 struct cleanup *old_cleanups;
1649 vasprintf (&linebuffer, format, args);
1650 if (linebuffer == NULL)
1652 fputs_unfiltered ("\ngdb: virtual memory exhausted.\n", gdb_stderr);
1655 old_cleanups = make_cleanup (free, linebuffer);
1656 fputs_unfiltered (linebuffer, stream);
1657 do_cleanups (old_cleanups);
1661 vprintf_filtered (format, args)
1665 vfprintf_maybe_filtered (gdb_stdout, format, args, 1);
1669 vprintf_unfiltered (format, args)
1673 vfprintf_unfiltered (gdb_stdout, format, args);
1678 #ifdef ANSI_PROTOTYPES
1679 fprintf_filtered (FILE *stream, const char *format, ...)
1681 fprintf_filtered (va_alist)
1686 #ifdef ANSI_PROTOTYPES
1687 va_start (args, format);
1693 stream = va_arg (args, FILE *);
1694 format = va_arg (args, char *);
1696 vfprintf_filtered (stream, format, args);
1702 #ifdef ANSI_PROTOTYPES
1703 fprintf_unfiltered (FILE *stream, const char *format, ...)
1705 fprintf_unfiltered (va_alist)
1710 #ifdef ANSI_PROTOTYPES
1711 va_start (args, format);
1717 stream = va_arg (args, FILE *);
1718 format = va_arg (args, char *);
1720 vfprintf_unfiltered (stream, format, args);
1724 /* Like fprintf_filtered, but prints its result indented.
1725 Called as fprintfi_filtered (spaces, stream, format, ...); */
1729 #ifdef ANSI_PROTOTYPES
1730 fprintfi_filtered (int spaces, FILE *stream, const char *format, ...)
1732 fprintfi_filtered (va_alist)
1737 #ifdef ANSI_PROTOTYPES
1738 va_start (args, format);
1745 spaces = va_arg (args, int);
1746 stream = va_arg (args, FILE *);
1747 format = va_arg (args, char *);
1749 print_spaces_filtered (spaces, stream);
1751 vfprintf_filtered (stream, format, args);
1758 #ifdef ANSI_PROTOTYPES
1759 printf_filtered (const char *format, ...)
1761 printf_filtered (va_alist)
1766 #ifdef ANSI_PROTOTYPES
1767 va_start (args, format);
1772 format = va_arg (args, char *);
1774 vfprintf_filtered (gdb_stdout, format, args);
1781 #ifdef ANSI_PROTOTYPES
1782 printf_unfiltered (const char *format, ...)
1784 printf_unfiltered (va_alist)
1789 #ifdef ANSI_PROTOTYPES
1790 va_start (args, format);
1795 format = va_arg (args, char *);
1797 vfprintf_unfiltered (gdb_stdout, format, args);
1801 /* Like printf_filtered, but prints it's result indented.
1802 Called as printfi_filtered (spaces, format, ...); */
1806 #ifdef ANSI_PROTOTYPES
1807 printfi_filtered (int spaces, const char *format, ...)
1809 printfi_filtered (va_alist)
1814 #ifdef ANSI_PROTOTYPES
1815 va_start (args, format);
1821 spaces = va_arg (args, int);
1822 format = va_arg (args, char *);
1824 print_spaces_filtered (spaces, gdb_stdout);
1825 vfprintf_filtered (gdb_stdout, format, args);
1829 /* Easy -- but watch out!
1831 This routine is *not* a replacement for puts()! puts() appends a newline.
1832 This one doesn't, and had better not! */
1835 puts_filtered (string)
1838 fputs_filtered (string, gdb_stdout);
1842 puts_unfiltered (string)
1845 fputs_unfiltered (string, gdb_stdout);
1848 /* Return a pointer to N spaces and a null. The pointer is good
1849 until the next call to here. */
1855 static char *spaces;
1856 static int max_spaces;
1862 spaces = (char *) xmalloc (n+1);
1863 for (t = spaces+n; t != spaces;)
1869 return spaces + max_spaces - n;
1872 /* Print N spaces. */
1874 print_spaces_filtered (n, stream)
1878 fputs_filtered (n_spaces (n), stream);
1881 /* C++ demangler stuff. */
1883 /* fprintf_symbol_filtered attempts to demangle NAME, a symbol in language
1884 LANG, using demangling args ARG_MODE, and print it filtered to STREAM.
1885 If the name is not mangled, or the language for the name is unknown, or
1886 demangling is off, the name is printed in its "raw" form. */
1889 fprintf_symbol_filtered (stream, name, lang, arg_mode)
1899 /* If user wants to see raw output, no problem. */
1902 fputs_filtered (name, stream);
1908 case language_cplus:
1909 demangled = cplus_demangle (name, arg_mode);
1911 case language_chill:
1912 demangled = chill_demangle (name);
1918 fputs_filtered (demangled ? demangled : name, stream);
1919 if (demangled != NULL)
1927 /* Do a strcmp() type operation on STRING1 and STRING2, ignoring any
1928 differences in whitespace. Returns 0 if they match, non-zero if they
1929 don't (slightly different than strcmp()'s range of return values).
1931 As an extra hack, string1=="FOO(ARGS)" matches string2=="FOO".
1932 This "feature" is useful when searching for matching C++ function names
1933 (such as if the user types 'break FOO', where FOO is a mangled C++
1937 strcmp_iw (string1, string2)
1938 const char *string1;
1939 const char *string2;
1941 while ((*string1 != '\0') && (*string2 != '\0'))
1943 while (isspace (*string1))
1947 while (isspace (*string2))
1951 if (*string1 != *string2)
1955 if (*string1 != '\0')
1961 return (*string1 != '\0' && *string1 != '(') || (*string2 != '\0');
1968 struct cmd_list_element *c;
1970 c = add_set_cmd ("width", class_support, var_uinteger,
1971 (char *)&chars_per_line,
1972 "Set number of characters gdb thinks are in a line.",
1974 add_show_from_set (c, &showlist);
1975 c->function.sfunc = set_width_command;
1978 (add_set_cmd ("height", class_support,
1979 var_uinteger, (char *)&lines_per_page,
1980 "Set number of lines gdb thinks are in a page.", &setlist),
1983 /* These defaults will be used if we are unable to get the correct
1984 values from termcap. */
1985 #if defined(__GO32__)
1986 lines_per_page = ScreenRows();
1987 chars_per_line = ScreenCols();
1989 lines_per_page = 24;
1990 chars_per_line = 80;
1992 #if !defined (MPW) && !defined (_WIN32)
1993 /* No termcap under MPW, although might be cool to do something
1994 by looking at worksheet or console window sizes. */
1995 /* Initialize the screen height and width from termcap. */
1997 char *termtype = getenv ("TERM");
1999 /* Positive means success, nonpositive means failure. */
2002 /* 2048 is large enough for all known terminals, according to the
2003 GNU termcap manual. */
2004 char term_buffer[2048];
2008 status = tgetent (term_buffer, termtype);
2013 val = tgetnum ("li");
2015 lines_per_page = val;
2017 /* The number of lines per page is not mentioned
2018 in the terminal description. This probably means
2019 that paging is not useful (e.g. emacs shell window),
2020 so disable paging. */
2021 lines_per_page = UINT_MAX;
2023 val = tgetnum ("co");
2025 chars_per_line = val;
2031 #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
2033 /* If there is a better way to determine the window size, use it. */
2034 SIGWINCH_HANDLER ();
2037 /* If the output is not a terminal, don't paginate it. */
2038 if (!ISATTY (gdb_stdout))
2039 lines_per_page = UINT_MAX;
2041 set_width_command ((char *)NULL, 0, c);
2044 (add_set_cmd ("demangle", class_support, var_boolean,
2046 "Set demangling of encoded C++ names when displaying symbols.",
2051 (add_set_cmd ("sevenbit-strings", class_support, var_boolean,
2052 (char *)&sevenbit_strings,
2053 "Set printing of 8-bit characters in strings as \\nnn.",
2058 (add_set_cmd ("asm-demangle", class_support, var_boolean,
2059 (char *)&asm_demangle,
2060 "Set demangling of C++ names in disassembly listings.",
2065 /* Machine specific function to handle SIGWINCH signal. */
2067 #ifdef SIGWINCH_HANDLER_BODY
2068 SIGWINCH_HANDLER_BODY
2071 /* Support for converting target fp numbers into host DOUBLEST format. */
2073 /* XXX - This code should really be in libiberty/floatformat.c, however
2074 configuration issues with libiberty made this very difficult to do in the
2077 #include "floatformat.h"
2078 #include <math.h> /* ldexp */
2080 /* The odds that CHAR_BIT will be anything but 8 are low enough that I'm not
2081 going to bother with trying to muck around with whether it is defined in
2082 a system header, what we do if not, etc. */
2083 #define FLOATFORMAT_CHAR_BIT 8
2085 static unsigned long get_field PARAMS ((unsigned char *,
2086 enum floatformat_byteorders,
2091 /* Extract a field which starts at START and is LEN bytes long. DATA and
2092 TOTAL_LEN are the thing we are extracting it from, in byteorder ORDER. */
2093 static unsigned long
2094 get_field (data, order, total_len, start, len)
2095 unsigned char *data;
2096 enum floatformat_byteorders order;
2097 unsigned int total_len;
2101 unsigned long result;
2102 unsigned int cur_byte;
2105 /* Start at the least significant part of the field. */
2106 cur_byte = (start + len) / FLOATFORMAT_CHAR_BIT;
2107 if (order == floatformat_little)
2108 cur_byte = (total_len / FLOATFORMAT_CHAR_BIT) - cur_byte - 1;
2110 ((start + len) % FLOATFORMAT_CHAR_BIT) - FLOATFORMAT_CHAR_BIT;
2111 result = *(data + cur_byte) >> (-cur_bitshift);
2112 cur_bitshift += FLOATFORMAT_CHAR_BIT;
2113 if (order == floatformat_little)
2118 /* Move towards the most significant part of the field. */
2119 while (cur_bitshift < len)
2121 if (len - cur_bitshift < FLOATFORMAT_CHAR_BIT)
2122 /* This is the last byte; zero out the bits which are not part of
2125 (*(data + cur_byte) & ((1 << (len - cur_bitshift)) - 1))
2128 result |= *(data + cur_byte) << cur_bitshift;
2129 cur_bitshift += FLOATFORMAT_CHAR_BIT;
2130 if (order == floatformat_little)
2138 /* Convert from FMT to a DOUBLEST.
2139 FROM is the address of the extended float.
2140 Store the DOUBLEST in *TO. */
2143 floatformat_to_doublest (fmt, from, to)
2144 const struct floatformat *fmt;
2148 unsigned char *ufrom = (unsigned char *)from;
2152 unsigned int mant_bits, mant_off;
2154 int special_exponent; /* It's a NaN, denorm or zero */
2156 exponent = get_field (ufrom, fmt->byteorder, fmt->totalsize,
2157 fmt->exp_start, fmt->exp_len);
2158 /* Note that if exponent indicates a NaN, we can't really do anything useful
2159 (not knowing if the host has NaN's, or how to build one). So it will
2160 end up as an infinity or something close; that is OK. */
2162 mant_bits_left = fmt->man_len;
2163 mant_off = fmt->man_start;
2166 special_exponent = exponent == 0 || exponent == fmt->exp_nan;
2168 /* Don't bias zero's, denorms or NaNs. */
2169 if (!special_exponent)
2170 exponent -= fmt->exp_bias;
2172 /* Build the result algebraically. Might go infinite, underflow, etc;
2175 /* If this format uses a hidden bit, explicitly add it in now. Otherwise,
2176 increment the exponent by one to account for the integer bit. */
2178 if (!special_exponent)
2179 if (fmt->intbit == floatformat_intbit_no)
2180 dto = ldexp (1.0, exponent);
2184 while (mant_bits_left > 0)
2186 mant_bits = min (mant_bits_left, 32);
2188 mant = get_field (ufrom, fmt->byteorder, fmt->totalsize,
2189 mant_off, mant_bits);
2191 dto += ldexp ((double)mant, exponent - mant_bits);
2192 exponent -= mant_bits;
2193 mant_off += mant_bits;
2194 mant_bits_left -= mant_bits;
2197 /* Negate it if negative. */
2198 if (get_field (ufrom, fmt->byteorder, fmt->totalsize, fmt->sign_start, 1))
2203 static void put_field PARAMS ((unsigned char *, enum floatformat_byteorders,
2209 /* Set a field which starts at START and is LEN bytes long. DATA and
2210 TOTAL_LEN are the thing we are extracting it from, in byteorder ORDER. */
2212 put_field (data, order, total_len, start, len, stuff_to_put)
2213 unsigned char *data;
2214 enum floatformat_byteorders order;
2215 unsigned int total_len;
2218 unsigned long stuff_to_put;
2220 unsigned int cur_byte;
2223 /* Start at the least significant part of the field. */
2224 cur_byte = (start + len) / FLOATFORMAT_CHAR_BIT;
2225 if (order == floatformat_little)
2226 cur_byte = (total_len / FLOATFORMAT_CHAR_BIT) - cur_byte - 1;
2228 ((start + len) % FLOATFORMAT_CHAR_BIT) - FLOATFORMAT_CHAR_BIT;
2229 *(data + cur_byte) &=
2230 ~(((1 << ((start + len) % FLOATFORMAT_CHAR_BIT)) - 1) << (-cur_bitshift));
2231 *(data + cur_byte) |=
2232 (stuff_to_put & ((1 << FLOATFORMAT_CHAR_BIT) - 1)) << (-cur_bitshift);
2233 cur_bitshift += FLOATFORMAT_CHAR_BIT;
2234 if (order == floatformat_little)
2239 /* Move towards the most significant part of the field. */
2240 while (cur_bitshift < len)
2242 if (len - cur_bitshift < FLOATFORMAT_CHAR_BIT)
2244 /* This is the last byte. */
2245 *(data + cur_byte) &=
2246 ~((1 << (len - cur_bitshift)) - 1);
2247 *(data + cur_byte) |= (stuff_to_put >> cur_bitshift);
2250 *(data + cur_byte) = ((stuff_to_put >> cur_bitshift)
2251 & ((1 << FLOATFORMAT_CHAR_BIT) - 1));
2252 cur_bitshift += FLOATFORMAT_CHAR_BIT;
2253 if (order == floatformat_little)
2260 #ifdef HAVE_LONG_DOUBLE
2261 /* Return the fractional part of VALUE, and put the exponent of VALUE in *EPTR.
2262 The range of the returned value is >= 0.5 and < 1.0. This is equivalent to
2263 frexp, but operates on the long double data type. */
2265 static long double ldfrexp PARAMS ((long double value, int *eptr));
2268 ldfrexp (value, eptr)
2275 /* Unfortunately, there are no portable functions for extracting the exponent
2276 of a long double, so we have to do it iteratively by multiplying or dividing
2277 by two until the fraction is between 0.5 and 1.0. */
2285 if (value >= tmp) /* Value >= 1.0 */
2286 while (value >= tmp)
2291 else if (value != 0.0l) /* Value < 1.0 and > 0.0 */
2305 #endif /* HAVE_LONG_DOUBLE */
2308 /* The converse: convert the DOUBLEST *FROM to an extended float
2309 and store where TO points. Neither FROM nor TO have any alignment
2313 floatformat_from_doublest (fmt, from, to)
2314 CONST struct floatformat *fmt;
2321 unsigned int mant_bits, mant_off;
2323 unsigned char *uto = (unsigned char *)to;
2325 memcpy (&dfrom, from, sizeof (dfrom));
2326 memset (uto, 0, fmt->totalsize / FLOATFORMAT_CHAR_BIT);
2328 return; /* Result is zero */
2332 put_field (uto, fmt->byteorder, fmt->totalsize, fmt->exp_start,
2333 fmt->exp_len, fmt->exp_nan);
2334 /* Be sure it's not infinity, but NaN value is irrel */
2335 put_field (uto, fmt->byteorder, fmt->totalsize, fmt->man_start,
2340 /* If negative, set the sign bit. */
2343 put_field (uto, fmt->byteorder, fmt->totalsize, fmt->sign_start, 1, 1);
2347 /* How to tell an infinity from an ordinary number? FIXME-someday */
2349 #ifdef HAVE_LONG_DOUBLE
2350 mant = ldfrexp (dfrom, &exponent);
2352 mant = frexp (dfrom, &exponent);
2355 put_field (uto, fmt->byteorder, fmt->totalsize, fmt->exp_start, fmt->exp_len,
2356 exponent + fmt->exp_bias - 1);
2358 mant_bits_left = fmt->man_len;
2359 mant_off = fmt->man_start;
2360 while (mant_bits_left > 0)
2362 unsigned long mant_long;
2363 mant_bits = mant_bits_left < 32 ? mant_bits_left : 32;
2365 mant *= 4294967296.0;
2366 mant_long = (unsigned long)mant;
2369 /* If the integer bit is implicit, then we need to discard it.
2370 If we are discarding a zero, we should be (but are not) creating
2371 a denormalized number which means adjusting the exponent
2373 if (mant_bits_left == fmt->man_len
2374 && fmt->intbit == floatformat_intbit_no)
2382 /* The bits we want are in the most significant MANT_BITS bits of
2383 mant_long. Move them to the least significant. */
2384 mant_long >>= 32 - mant_bits;
2387 put_field (uto, fmt->byteorder, fmt->totalsize,
2388 mant_off, mant_bits, mant_long);
2389 mant_off += mant_bits;
2390 mant_bits_left -= mant_bits;
2394 /* temporary storage using circular buffer */
2400 static char buf[NUMCELLS][CELLSIZE];
2402 if (++cell>=NUMCELLS) cell=0;
2406 /* print routines to handle variable size regs, etc */
2407 static int thirty_two = 32; /* eliminate warning from compiler on 32-bit systems */
2413 char *paddr_str=get_cell();
2414 switch (sizeof(t_addr))
2417 sprintf(paddr_str,"%08x%08x",
2418 (unsigned long)(addr>>thirty_two),(unsigned long)(addr&0xffffffff));
2421 sprintf(paddr_str,"%08x",(unsigned long)addr);
2424 sprintf(paddr_str,"%04x",(unsigned short)(addr&0xffff));
2427 sprintf(paddr_str,"%x",addr);
2436 char *preg_str=get_cell();
2437 switch (sizeof(t_reg))
2440 sprintf(preg_str,"%08x%08x",
2441 (unsigned long)(reg>>thirty_two),(unsigned long)(reg&0xffffffff));
2444 sprintf(preg_str,"%08x",(unsigned long)reg);
2447 sprintf(preg_str,"%04x",(unsigned short)(reg&0xffff));
2450 sprintf(preg_str,"%x",reg);
2459 char *paddr_str=get_cell();
2460 switch (sizeof(t_addr))
2464 unsigned long high = (unsigned long)(addr>>thirty_two);
2466 sprintf(paddr_str,"%x", (unsigned long)(addr&0xffffffff));
2468 sprintf(paddr_str,"%x%08x",
2469 high, (unsigned long)(addr&0xffffffff));
2473 sprintf(paddr_str,"%x",(unsigned long)addr);
2476 sprintf(paddr_str,"%x",(unsigned short)(addr&0xffff));
2479 sprintf(paddr_str,"%x",addr);
2488 char *preg_str=get_cell();
2489 switch (sizeof(t_reg))
2493 unsigned long high = (unsigned long)(reg>>thirty_two);
2495 sprintf(preg_str,"%x", (unsigned long)(reg&0xffffffff));
2497 sprintf(preg_str,"%x%08x",
2498 high, (unsigned long)(reg&0xffffffff));
2502 sprintf(preg_str,"%x",(unsigned long)reg);
2505 sprintf(preg_str,"%x",(unsigned short)(reg&0xffff));
2508 sprintf(preg_str,"%x",reg);