Replace calls to abort() with calls to internal_error().

This commit is contained in:
Kevin Buettner 2001-02-25 04:45:12 +00:00
parent d95767bf85
commit e1e9e218c1
38 changed files with 123 additions and 74 deletions

View file

@ -1,3 +1,52 @@
2001-02-24 Kevin Buettner <kevinb@redhat.com>
* buildsym.c (push_subfile, pop_subfile): Replace call to abort()
with call to internal_error().
* dbxread.c (process_one_symbol): Likewise.
* exec.c (build_section_table, xfer_memory): Likewise.
* h8500-tdep.c (h8500_register_size, h8500_register_virtual_type):
Likewise.
* hpread.c (hpread_type_translate, hpread_read_array_type)
(hpread_type_lookup): Likewise.
* i386-tdep.c (gdb_print_insn_i386): Likewise.
* i960-tdep.c (mem): Likewise
* inflow.c (set_sigio_trap, clear_sigio_trap): Likewise.
* infptrace.c (child_resume): Likewise.
* infttrace.c (_initialize_infttrace): Likewise.
* language.c (binop_result_type, add_language): Likewise.
* lynx-nat.c (store_inferior_registers): Likewise.
* m3-nat.c (port_chain_insert, m3_trace_me): Likewise.
* mdebugread.c (parse_partial_symbols): Likewise.
* monitor.c (monitor_printf_noecho, monitor_printf)
(monitor_dump_regs): Likewise.
* ocd.c (stu_put_packet): Likewise.
* printcmd.c (decode_format, print_scalar_formatted): Likewise.
* remote-bug.c (bug_open): Likewise.
* remote-e7000.c (fetch_regs_from_dump, e7000_wait): Likewise.
* remote-es.c (es1800_read_bytes): Likewise.
* remote-mips.c (common_breakpoint): Likewise.
* remote-rdp.c (send_rdp): Likewise.
* remote-sds.c (putmessage): Likewise.
* sparc-nat.c (fetch_inferior_registers, store_inferior_registers):
Likewise.
* sparcl-tdep.c (sparclite_download): Likewise.
* symtab.c (lookup_partial_symbol): Likewise.
* target.c (push_target, pop_target, initialize_targets): Likewise.
* utils.c (internal_verror, malloc_botch, wrap_here, decimal2str):
Likewise.
* valprint.c (print_decimal, print_longest, print_longest)
(strcat_longest): Likewise.
* w65-tdep.c (init_frame_pc, w65_push_dummy_frame): Likewise.
* xmodem.c (xmodem_send_packet): Likewise.
* z8k-tdep.c (init_frame_pc, z8k_push_dummy_frame): Likewise.
* config/h8500/tm-h8500.h (STORE_STRUCT_RETURN): Likewise.
* config/mn10200/tm-mn10200.h (EXTRACT_RETURN_VALUE)
(STORE_RETURN_VALUE): Likewise.
* config/ns32k/nm-umax.h (REGISTER_U_ADDR): Likewise.
* config/ns32k/xm-merlin.h (REGISTER_U_ADDR): Likewise.
* config/z8k/tm-z8k.h (STORE_STRUCT_RETURN, STORE_RETURN_VALUE):
Likewise.
2001-02-23 Andrew Cagney <ac131313@redhat.com> 2001-02-23 Andrew Cagney <ac131313@redhat.com>
* CONTRIBUTE: Document how to cite a problem report. * CONTRIBUTE: Document how to cite a problem report.

View file

@ -667,7 +667,7 @@ push_subfile (void)
subfile_stack = tem; subfile_stack = tem;
if (current_subfile == NULL || current_subfile->name == NULL) if (current_subfile == NULL || current_subfile->name == NULL)
{ {
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
tem->name = current_subfile->name; tem->name = current_subfile->name;
} }
@ -680,7 +680,7 @@ pop_subfile (void)
if (link == NULL) if (link == NULL)
{ {
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
name = link->name; name = link->name;
subfile_stack = link->next; subfile_stack = link->next;

View file

@ -159,7 +159,7 @@ extern struct type *h8500_register_virtual_type (int regno);
subroutine will return. This is called from call_function. */ subroutine will return. This is called from call_function. */
/*#define STORE_STRUCT_RETURN(ADDR, SP) \ /*#define STORE_STRUCT_RETURN(ADDR, SP) \
{ write_register (0, (ADDR)); abort(); } */ { write_register (0, (ADDR)); internal_error (__FILE__, __LINE__, "failed internal consistency check"); } */
/* Extract from an array REGBUF containing the (raw) register state /* Extract from an array REGBUF containing the (raw) register state
a function return value of type TYPE, and copy that, in virtual format, a function return value of type TYPE, and copy that, in virtual format,

View file

@ -122,7 +122,7 @@ extern CORE_ADDR mn10200_frame_saved_pc (struct frame_info *);
#define EXTRACT_RETURN_VALUE(TYPE, REGBUF, VALBUF) \ #define EXTRACT_RETURN_VALUE(TYPE, REGBUF, VALBUF) \
{ \ { \
if (TYPE_LENGTH (TYPE) > 8) \ if (TYPE_LENGTH (TYPE) > 8) \
abort (); \ internal_error (__FILE__, __LINE__, "failed internal consistency check"); \
else if (TYPE_LENGTH (TYPE) > 2 && TYPE_CODE (TYPE) != TYPE_CODE_PTR) \ else if (TYPE_LENGTH (TYPE) > 2 && TYPE_CODE (TYPE) != TYPE_CODE_PTR) \
{ \ { \
memcpy (VALBUF, REGBUF + REGISTER_BYTE (0), 2); \ memcpy (VALBUF, REGBUF + REGISTER_BYTE (0), 2); \
@ -145,7 +145,7 @@ extern CORE_ADDR mn10200_frame_saved_pc (struct frame_info *);
#define STORE_RETURN_VALUE(TYPE, VALBUF) \ #define STORE_RETURN_VALUE(TYPE, VALBUF) \
{ \ { \
if (TYPE_LENGTH (TYPE) > 8) \ if (TYPE_LENGTH (TYPE) > 8) \
abort (); \ internal_error (__FILE__, __LINE__, "failed internal consistency check"); \
else if (TYPE_LENGTH (TYPE) > 2 && TYPE_CODE (TYPE) != TYPE_CODE_PTR) \ else if (TYPE_LENGTH (TYPE) > 2 && TYPE_CODE (TYPE) != TYPE_CODE_PTR) \
{ \ { \
write_register_bytes (REGISTER_BYTE (0), VALBUF, 2); \ write_register_bytes (REGISTER_BYTE (0), VALBUF, 2); \

View file

@ -50,6 +50,6 @@
addr = PU_F0 + (regno - LP0_REGNUM) * sizeof (double); break; \ addr = PU_F0 + (regno - LP0_REGNUM) * sizeof (double); break; \
default: \ default: \
printf ("bad argument to REGISTER_U_ADDR %d\n", regno); \ printf ("bad argument to REGISTER_U_ADDR %d\n", regno); \
abort (); \ internal_error (__FILE__, __LINE__, "failed internal consistency check"); \
} \ } \
} }

View file

@ -61,6 +61,6 @@
addr = 76 + (regno - LP0_REGNUM) * sizeof (double); break; \ addr = 76 + (regno - LP0_REGNUM) * sizeof (double); break; \
default: \ default: \
printf ("bad argument to REGISTER_U_ADDR %d\n", regno); \ printf ("bad argument to REGISTER_U_ADDR %d\n", regno); \
abort (); \ internal_error (__FILE__, __LINE__, "failed internal consistency check"); \
} \ } \
} }

View file

@ -138,7 +138,7 @@ extern int z8k_saved_pc_after_call (struct frame_info *frame);
/* Store the address of the place in which to copy the structure the /* Store the address of the place in which to copy the structure the
subroutine will return. This is called from call_function. */ subroutine will return. This is called from call_function. */
#define STORE_STRUCT_RETURN(ADDR, SP) abort(); #define STORE_STRUCT_RETURN(ADDR, SP) internal_error (__FILE__, __LINE__, "failed internal consistency check");
/* Extract from an array REGBUF containing the (raw) register state /* Extract from an array REGBUF containing the (raw) register state
a function return value of type TYPE, and copy that, in virtual format, a function return value of type TYPE, and copy that, in virtual format,
@ -152,7 +152,7 @@ extern int z8k_saved_pc_after_call (struct frame_info *frame);
/* Write into appropriate registers a function return value /* Write into appropriate registers a function return value
of type TYPE, given in virtual format. */ of type TYPE, given in virtual format. */
#define STORE_RETURN_VALUE(TYPE,VALBUF) abort(); #define STORE_RETURN_VALUE(TYPE,VALBUF) internal_error (__FILE__, __LINE__, "failed internal consistency check");
/* Extract from an array REGBUF containing the (raw) register state /* Extract from an array REGBUF containing the (raw) register state
the address in which a function should return its structure value, the address in which a function should return its structure value,

View file

@ -2202,7 +2202,7 @@ process_one_symbol (int type, int desc, CORE_ADDR valu, char *name,
case N_ROSYM: case N_ROSYM:
goto case_N_ROSYM; goto case_N_ROSYM;
default: default:
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
} }

View file

@ -398,7 +398,7 @@ build_section_table (bfd *some_bfd, struct section_table **start,
*end = *start; *end = *start;
bfd_map_over_sections (some_bfd, add_to_section_table, (char *) end); bfd_map_over_sections (some_bfd, add_to_section_table, (char *) end);
if (*end > *start + count) if (*end > *start + count)
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
/* We could realloc the table, but it probably loses for most files. */ /* We could realloc the table, but it probably loses for most files. */
return 0; return 0;
} }
@ -488,7 +488,7 @@ xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
asection *section; asection *section;
if (len <= 0) if (len <= 0)
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
if (overlay_debugging) if (overlay_debugging)
{ {

View file

@ -251,7 +251,7 @@ h8500_register_size (int regno)
case PC_REGNUM: case PC_REGNUM:
return 4; return 4;
default: default:
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
} }
@ -286,7 +286,7 @@ h8500_register_virtual_type (int regno)
case PC_REGNUM: case PC_REGNUM:
return builtin_type_unsigned_long; return builtin_type_unsigned_long;
default: default:
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
} }

View file

@ -1074,7 +1074,7 @@ static int
hpread_type_translate (dnttpointer typep) hpread_type_translate (dnttpointer typep)
{ {
if (!typep.dntti.immediate) if (!typep.dntti.immediate)
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
switch (typep.dntti.type) switch (typep.dntti.type)
{ {
@ -1136,7 +1136,7 @@ hpread_type_translate (dnttpointer typep)
case HP_TYPE_FTN_STRING_VAX_COMPAT: case HP_TYPE_FTN_STRING_VAX_COMPAT:
return FT_STRING; return FT_STRING;
default: default:
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
} }
@ -1501,7 +1501,7 @@ hpread_read_array_type (dnttpointer hp_type, union dnttentry *dn_bufp,
/* values are not normalized. */ /* values are not normalized. */
if (!((dn_bufp->darray.arrayisbytes && dn_bufp->darray.elemisbytes) if (!((dn_bufp->darray.arrayisbytes && dn_bufp->darray.elemisbytes)
|| (!dn_bufp->darray.arrayisbytes && !dn_bufp->darray.elemisbytes))) || (!dn_bufp->darray.arrayisbytes && !dn_bufp->darray.elemisbytes)))
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
else if (dn_bufp->darray.arraylength == 0x7fffffff) else if (dn_bufp->darray.arraylength == 0x7fffffff)
{ {
/* The HP debug format represents char foo[]; as an array with /* The HP debug format represents char foo[]; as an array with
@ -1618,7 +1618,7 @@ hpread_type_lookup (dnttpointer hp_type, struct objfile *objfile)
if (dn_bufp->dtype.type.dnttp.index < LNTT_SYMCOUNT (objfile)) if (dn_bufp->dtype.type.dnttp.index < LNTT_SYMCOUNT (objfile))
dn_bufp = hpread_get_lntt (dn_bufp->dtype.type.dnttp.index, objfile); dn_bufp = hpread_get_lntt (dn_bufp->dtype.type.dnttp.index, objfile);
else else
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
if (dn_bufp->dblock.kind == DNTT_TYPE_STRUCT) if (dn_bufp->dblock.kind == DNTT_TYPE_STRUCT)
prefix = "struct "; prefix = "struct ";

View file

@ -947,7 +947,7 @@ gdb_print_insn_i386 (bfd_vma memaddr, disassemble_info *info)
return print_insn_i386_intel (memaddr, info); return print_insn_i386_intel (memaddr, info);
/* Never reached - disassembly_flavour is always either att_flavor /* Never reached - disassembly_flavour is always either att_flavor
or intel_flavor */ or intel_flavor */
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
/* If the disassembly mode is intel, we have to also switch the /* If the disassembly mode is intel, we have to also switch the

View file

@ -774,7 +774,7 @@ mem (unsigned long memaddr, unsigned long word1, unsigned long word2,
{ {
return len; return len;
} }
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
/* Read the i960 instruction at 'memaddr' and return the address of /* Read the i960 instruction at 'memaddr' and return the address of

View file

@ -679,14 +679,14 @@ void
set_sigio_trap (void) set_sigio_trap (void)
{ {
if (target_activity_function) if (target_activity_function)
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
void void
clear_sigio_trap (void) clear_sigio_trap (void)
{ {
if (target_activity_function) if (target_activity_function)
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
#endif /* No SIGIO. */ #endif /* No SIGIO. */

View file

@ -272,7 +272,7 @@ child_resume (int pid, int step, enum target_signal signal)
if (step) if (step)
{ {
if (SOFTWARE_SINGLE_STEP_P) if (SOFTWARE_SINGLE_STEP_P)
abort (); /* Make sure this doesn't happen. */ internal_error (__FILE__, __LINE__, "failed internal consistency check"); /* Make sure this doesn't happen. */
else else
ptrace (PT_STEP, pid, (PTRACE_ARG3_TYPE) 1, ptrace (PT_STEP, pid, (PTRACE_ARG3_TYPE) 1,
target_signal_to_host (signal)); target_signal_to_host (signal));

View file

@ -5775,7 +5775,7 @@ _initialize_infttrace (void)
/* We do a lot of casts from pointers to TTRACE_ARG_TYPE; make sure /* We do a lot of casts from pointers to TTRACE_ARG_TYPE; make sure
this is okay. */ this is okay. */
if (sizeof (TTRACE_ARG_TYPE) < sizeof (void *)) if (sizeof (TTRACE_ARG_TYPE) < sizeof (void *))
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
if (errno || (memory_page_dictionary.page_size <= 0)) if (errno || (memory_page_dictionary.page_size <= 0))
perror_with_name ("sysconf"); perror_with_name ("sysconf");

View file

@ -571,7 +571,7 @@ binop_result_type (value_ptr v1, value_ptr v2)
case language_chill: case language_chill:
error ("Missing Chill support in function binop_result_check."); /*FIXME */ error ("Missing Chill support in function binop_result_check."); /*FIXME */
} }
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
return (struct type *) 0; /* For lint */ return (struct type *) 0; /* For lint */
} }
@ -1384,7 +1384,7 @@ add_language (const struct language_defn *lang)
{ {
fprintf_unfiltered (gdb_stderr, "Magic number of %s language struct wrong\n", fprintf_unfiltered (gdb_stderr, "Magic number of %s language struct wrong\n",
lang->la_name); lang->la_name);
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
if (!languages) if (!languages)

View file

@ -410,7 +410,7 @@ store_inferior_registers (int regno)
if (regno == -1 || regno == SP_REGNUM) if (regno == -1 || regno == SP_REGNUM)
{ {
if (!register_valid[L0_REGNUM + 5]) if (!register_valid[L0_REGNUM + 5])
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
target_write_memory (sp + FRAME_SAVED_I0, target_write_memory (sp + FRAME_SAVED_I0,
&registers[REGISTER_BYTE (I0_REGNUM)], &registers[REGISTER_BYTE (I0_REGNUM)],
8 * REGISTER_RAW_SIZE (I0_REGNUM)); 8 * REGISTER_RAW_SIZE (I0_REGNUM));
@ -422,7 +422,7 @@ store_inferior_registers (int regno)
else if (regno >= L0_REGNUM && regno <= I7_REGNUM) else if (regno >= L0_REGNUM && regno <= I7_REGNUM)
{ {
if (!register_valid[regno]) if (!register_valid[regno])
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
if (regno >= L0_REGNUM && regno <= L0_REGNUM + 7) if (regno >= L0_REGNUM && regno <= L0_REGNUM + 7)
regoffset = REGISTER_BYTE (regno) - REGISTER_BYTE (L0_REGNUM) regoffset = REGISTER_BYTE (regno) - REGISTER_BYTE (L0_REGNUM)
+ FRAME_SAVED_L0; + FRAME_SAVED_L0;

View file

@ -346,7 +346,7 @@ port_chain_insert (port_chain_t list, mach_port_t name, int type)
} }
} }
else else
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
new = (port_chain_t) obstack_alloc (port_chain_obstack, new = (port_chain_t) obstack_alloc (port_chain_obstack,
sizeof (struct port_chain)); sizeof (struct port_chain));
@ -602,17 +602,17 @@ m3_trace_me (void)
ret = task_get_bootstrap_port (mach_task_self (), ret = task_get_bootstrap_port (mach_task_self (),
&original_server_port_name); &original_server_port_name);
if (ret != KERN_SUCCESS) if (ret != KERN_SUCCESS)
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
ret = mach_port_deallocate (mach_task_self (), ret = mach_port_deallocate (mach_task_self (),
original_server_port_name); original_server_port_name);
if (ret != KERN_SUCCESS) if (ret != KERN_SUCCESS)
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
/* Suspend this task to let the parent change my ports. /* Suspend this task to let the parent change my ports.
Resumed by the debugger */ Resumed by the debugger */
ret = task_suspend (mach_task_self ()); ret = task_suspend (mach_task_self ());
if (ret != KERN_SUCCESS) if (ret != KERN_SUCCESS)
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
/* /*

View file

@ -2943,7 +2943,7 @@ parse_partial_symbols (struct objfile *objfile)
CORE_ADDR svalue; CORE_ADDR svalue;
if (ext_ptr->ifd != f_idx) if (ext_ptr->ifd != f_idx)
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
psh = &ext_ptr->asym; psh = &ext_ptr->asym;
/* Do not add undefined symbols to the partial symbol table. */ /* Do not add undefined symbols to the partial symbol table. */

View file

@ -335,7 +335,7 @@ monitor_printf_noecho (char *pattern,...)
len = strlen (sndbuf); len = strlen (sndbuf);
if (len + 1 > sizeof sndbuf) if (len + 1 > sizeof sndbuf)
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
if (monitor_debug_p) if (monitor_debug_p)
{ {
@ -363,7 +363,7 @@ monitor_printf (char *pattern,...)
len = strlen (sndbuf); len = strlen (sndbuf);
if (len + 1 > sizeof sndbuf) if (len + 1 > sizeof sndbuf)
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
if (monitor_debug_p) if (monitor_debug_p)
{ {
@ -1286,7 +1286,7 @@ monitor_dump_regs (void)
parse_register_dump (buf, resp_len); parse_register_dump (buf, resp_len);
} }
else else
abort (); /* Need some way to read registers */ internal_error (__FILE__, __LINE__, "failed internal consistency check"); /* Need some way to read registers */
} }
static void static void

View file

@ -880,7 +880,7 @@ stu_put_packet (unsigned char *buf, int len)
unsigned char c; unsigned char c;
if (len == 0 || len > 256) if (len == 0 || len > 256)
abort (); /* Can't represent 0 length packet */ internal_error (__FILE__, __LINE__, "failed internal consistency check"); /* Can't represent 0 length packet */
reset_packet (); reset_packet ();

View file

@ -249,7 +249,7 @@ decode_format (char **string_ptr, int oformat, int osize)
val.size = osize ? 'h' : osize; val.size = osize ? 'h' : osize;
else else
/* Bad value for TARGET_PTR_BIT */ /* Bad value for TARGET_PTR_BIT */
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
break; break;
case 'f': case 'f':
/* Floating point has to be word or giantword. */ /* Floating point has to be word or giantword. */
@ -456,7 +456,7 @@ print_scalar_formatted (char *valaddr, struct type *type, int format, int size,
break; break;
case 0: case 0:
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
case 't': case 't':
/* Binary; 't' stands for "two". */ /* Binary; 't' stands for "two". */

View file

@ -226,7 +226,7 @@ bug_open (char *args, int from_tty)
target_is_m88110 = 1; target_is_m88110 = 1;
break; break;
default: default:
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
} }

View file

@ -887,7 +887,7 @@ fetch_regs_from_dump (int (*nextchar) (), char *want)
} }
else else
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
store_signed_integer (buf, store_signed_integer (buf,
REGISTER_RAW_SIZE (regno), REGISTER_RAW_SIZE (regno),
@ -2117,7 +2117,7 @@ e7000_wait (int pid, struct target_waitstatus *status)
break; break;
default: default:
/* Get the user's attention - this should never happen. */ /* Get the user's attention - this should never happen. */
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
return 0; return 0;

View file

@ -1031,7 +1031,7 @@ es1800_read_bytes (CORE_ADDR memaddr, char *myaddr, int len)
if (len > PBUFSIZ / 2 - 1) if (len > PBUFSIZ / 2 - 1)
{ {
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
if (len == 1) /* The emulator does not like expressions like: */ if (len == 1) /* The emulator does not like expressions like: */

View file

@ -2729,7 +2729,7 @@ common_breakpoint (int set, CORE_ADDR addr, int len, enum break_type type)
flags = "f"; flags = "f";
break; break;
default: default:
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
cmd = 'B'; cmd = 'B';

View file

@ -471,13 +471,13 @@ send_rdp (char *template,...)
*pi = get_byte (); *pi = get_byte ();
break; break;
default: default:
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
} }
va_end (alist); va_end (alist);
if (dst != buf) if (dst != buf)
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }

View file

@ -746,7 +746,7 @@ putmessage (unsigned char *buf, int len)
and giving it a checksum. */ and giving it a checksum. */
if (len > 170) /* Prosanity check */ if (len > 170) /* Prosanity check */
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
if (remote_debug) if (remote_debug)
{ {

View file

@ -59,7 +59,7 @@ fetch_inferior_registers (int regno)
/* We should never be called with deferred stores, because a prerequisite /* We should never be called with deferred stores, because a prerequisite
for writing regs is to have fetched them all (PREPARE_TO_STORE), sigh. */ for writing regs is to have fetched them all (PREPARE_TO_STORE), sigh. */
if (deferred_stores) if (deferred_stores)
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
DO_DEFERRED_STORES; DO_DEFERRED_STORES;
@ -195,7 +195,7 @@ store_inferior_registers (int regno)
if (regno < 0 || regno == SP_REGNUM) if (regno < 0 || regno == SP_REGNUM)
{ {
if (!register_valid[L0_REGNUM + 5]) if (!register_valid[L0_REGNUM + 5])
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
target_write_memory (sp, target_write_memory (sp,
&registers[REGISTER_BYTE (L0_REGNUM)], &registers[REGISTER_BYTE (L0_REGNUM)],
16 * REGISTER_RAW_SIZE (L0_REGNUM)); 16 * REGISTER_RAW_SIZE (L0_REGNUM));
@ -203,7 +203,7 @@ store_inferior_registers (int regno)
else else
{ {
if (!register_valid[regno]) if (!register_valid[regno])
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
target_write_memory (sp + REGISTER_BYTE (regno) - REGISTER_BYTE (L0_REGNUM), target_write_memory (sp + REGISTER_BYTE (regno) - REGISTER_BYTE (L0_REGNUM),
&registers[REGISTER_BYTE (regno)], &registers[REGISTER_BYTE (regno)],
REGISTER_RAW_SIZE (regno)); REGISTER_RAW_SIZE (regno));
@ -214,7 +214,7 @@ store_inferior_registers (int regno)
if (wanna_store & INT_REGS) if (wanna_store & INT_REGS)
{ {
if (!register_valid[G1_REGNUM]) if (!register_valid[G1_REGNUM])
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
memcpy (&inferior_registers.r_g1, &registers[REGISTER_BYTE (G1_REGNUM)], memcpy (&inferior_registers.r_g1, &registers[REGISTER_BYTE (G1_REGNUM)],
15 * REGISTER_RAW_SIZE (G1_REGNUM)); 15 * REGISTER_RAW_SIZE (G1_REGNUM));
@ -236,7 +236,7 @@ store_inferior_registers (int regno)
if (wanna_store & FP_REGS) if (wanna_store & FP_REGS)
{ {
if (!register_valid[FP0_REGNUM + 9]) if (!register_valid[FP0_REGNUM + 9])
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
memcpy (&inferior_fp_registers, &registers[REGISTER_BYTE (FP0_REGNUM)], memcpy (&inferior_fp_registers, &registers[REGISTER_BYTE (FP0_REGNUM)],
sizeof inferior_fp_registers.fpu_fr); sizeof inferior_fp_registers.fpu_fr);
memcpy (&inferior_fp_registers.Fpu_fsr, memcpy (&inferior_fp_registers.Fpu_fsr,

View file

@ -836,7 +836,7 @@ sparclite_download (char *filename, int from_tty)
download (remote_target_name, filename, from_tty, sparclite_udp_write, download (remote_target_name, filename, from_tty, sparclite_udp_write,
sparclite_udp_start); sparclite_udp_start);
#else #else
abort (); /* sparclite_open should prevent this! */ internal_error (__FILE__, __LINE__, "failed internal consistency check"); /* sparclite_open should prevent this! */
#endif #endif
else else
download (remote_target_name, filename, from_tty, sparclite_serial_write, download (remote_target_name, filename, from_tty, sparclite_serial_write,

View file

@ -998,7 +998,7 @@ lookup_partial_symbol (struct partial_symtab *pst, const char *name, int global,
{ {
center = bottom + (top - bottom) / 2; center = bottom + (top - bottom) / 2;
if (!(center < top)) if (!(center < top))
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
if (!do_linear_search if (!do_linear_search
&& (SYMBOL_LANGUAGE (*center) == language_java)) && (SYMBOL_LANGUAGE (*center) == language_java))
{ {
@ -1014,7 +1014,7 @@ lookup_partial_symbol (struct partial_symtab *pst, const char *name, int global,
} }
} }
if (!(top == bottom)) if (!(top == bottom))
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
/* djb - 2000-06-03 - Use SYMBOL_MATCHES_NAME, not a strcmp, so /* djb - 2000-06-03 - Use SYMBOL_MATCHES_NAME, not a strcmp, so
we don't have to force a linear search on C++. Probably holds true we don't have to force a linear search on C++. Probably holds true

View file

@ -641,7 +641,7 @@ push_target (struct target_ops *t)
fprintf_unfiltered (gdb_stderr, fprintf_unfiltered (gdb_stderr,
"Magic number of %s target struct wrong\n", "Magic number of %s target struct wrong\n",
t->to_shortname); t->to_shortname);
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
/* Find the proper stratum to install this target in. */ /* Find the proper stratum to install this target in. */
@ -737,7 +737,7 @@ pop_target (void)
fprintf_unfiltered (gdb_stderr, fprintf_unfiltered (gdb_stderr,
"pop_target couldn't find target %s\n", "pop_target couldn't find target %s\n",
current_target.to_shortname); current_target.to_shortname);
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
#undef MIN #undef MIN
@ -2993,5 +2993,5 @@ When non-zero, target debugging is enabled.", &setdebuglist),
target_dcache = dcache_init(); target_dcache = dcache_init();
if (!STREQ (signals[TARGET_SIGNAL_LAST].string, "TARGET_SIGNAL_MAGIC")) if (!STREQ (signals[TARGET_SIGNAL_LAST].string, "TARGET_SIGNAL_MAGIC"))
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }

View file

@ -688,7 +688,7 @@ internal_verror (const char *file, int line,
case 1: case 1:
dejavu = 2; dejavu = 2;
fputs_unfiltered (msg, gdb_stderr); fputs_unfiltered (msg, gdb_stderr);
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
default: default:
dejavu = 3; dejavu = 3;
write (STDERR_FILENO, msg, sizeof (msg)); write (STDERR_FILENO, msg, sizeof (msg));
@ -717,13 +717,13 @@ Create a core file containing the current state of GDB? ");
if (dump_core_p) if (dump_core_p)
{ {
if (fork () == 0) if (fork () == 0)
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
} }
else else
{ {
if (dump_core_p) if (dump_core_p)
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
else else
exit (1); exit (1);
} }
@ -955,7 +955,7 @@ static void
malloc_botch (void) malloc_botch (void)
{ {
fprintf_unfiltered (gdb_stderr, "Memory corruption\n"); fprintf_unfiltered (gdb_stderr, "Memory corruption\n");
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
/* Attempt to install hooks in mmalloc/mrealloc/mfree for the heap specified /* Attempt to install hooks in mmalloc/mrealloc/mfree for the heap specified
@ -1692,7 +1692,7 @@ wrap_here (char *indent)
{ {
/* This should have been allocated, but be paranoid anyway. */ /* This should have been allocated, but be paranoid anyway. */
if (!wrap_buffer) if (!wrap_buffer)
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
if (wrap_buffer[0]) if (wrap_buffer[0])
{ {
@ -2802,7 +2802,7 @@ decimal2str (char *paddr_str, char *sign, ULONGEST addr)
sign, temp[2], temp[1], temp[0]); sign, temp[2], temp[1], temp[0]);
break; break;
default: default:
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
} }

View file

@ -257,7 +257,7 @@ print_decimal (struct ui_file *stream, char *sign, int use_local,
sign, temp[2], temp[1], temp[0]); sign, temp[2], temp[1], temp[0]);
break; break;
default: default:
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
return; return;
} }
@ -360,7 +360,7 @@ print_longest (struct ui_file *stream, int format, int use_local,
fprintf_filtered (stream, local_hex_format_custom ("016ll"), val_long); fprintf_filtered (stream, local_hex_format_custom ("016ll"), val_long);
break; break;
default: default:
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
#else /* !CC_HAS_LONG_LONG || !PRINTF_HAS_LONG_LONG */ #else /* !CC_HAS_LONG_LONG || !PRINTF_HAS_LONG_LONG */
/* In the following it is important to coerce (val_long) to a long. It does /* In the following it is important to coerce (val_long) to a long. It does
@ -407,7 +407,7 @@ print_longest (struct ui_file *stream, int format, int use_local,
(unsigned long) val_long); (unsigned long) val_long);
break; break;
default: default:
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
#endif /* CC_HAS_LONG_LONG || PRINTF_HAS_LONG_LONG */ #endif /* CC_HAS_LONG_LONG || PRINTF_HAS_LONG_LONG */
} }
@ -467,7 +467,7 @@ strcat_longest (int format, int use_local, LONGEST val_long, char *buf,
sprintf (buf, local_hex_format_custom ("016ll"), val_long); sprintf (buf, local_hex_format_custom ("016ll"), val_long);
break; break;
default: default:
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
#else /* !PRINTF_HAS_LONG_LONG */ #else /* !PRINTF_HAS_LONG_LONG */
/* In the following it is important to coerce (val_long) to a long. It does /* In the following it is important to coerce (val_long) to a long. It does
@ -508,7 +508,7 @@ strcat_longest (int format, int use_local, LONGEST val_long, char *buf,
((long) val_long)); ((long) val_long));
break; break;
default: default:
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
#endif /* !PRINTF_HAS_LONG_LONG */ #endif /* !PRINTF_HAS_LONG_LONG */

View file

@ -54,13 +54,13 @@ read_memory_pointer (CORE_ADDR x)
init_frame_pc (void) init_frame_pc (void)
{ {
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
void void
w65_push_dummy_frame (void) w65_push_dummy_frame (void)
{ {
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
/* Put here the code to store, into a struct frame_saved_regs, /* Put here the code to store, into a struct frame_saved_regs,

View file

@ -185,7 +185,7 @@ xmodem_send_packet (serial_t desc, unsigned char *packet, int len, int hashmark)
datasize = XMODEM_1KDATASIZE; datasize = XMODEM_1KDATASIZE;
} }
else else
abort (); /* Packet way too large */ internal_error (__FILE__, __LINE__, "failed internal consistency check"); /* Packet way too large */
/* Add ^Z padding if packet < 128 (or 1024) bytes */ /* Add ^Z padding if packet < 128 (or 1024) bytes */

View file

@ -171,7 +171,7 @@ z8k_frame_chain (struct frame_info *thisframe)
void void
init_frame_pc (void) init_frame_pc (void)
{ {
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
/* Put here the code to store, into a struct frame_saved_regs, /* Put here the code to store, into a struct frame_saved_regs,
@ -197,7 +197,7 @@ z8k_frame_init_saved_regs (struct frame_info *frame_info)
void void
z8k_push_dummy_frame (void) z8k_push_dummy_frame (void)
{ {
abort (); internal_error (__FILE__, __LINE__, "failed internal consistency check");
} }
int int