Add Indonesian translation
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
4867e41e
DM
12002-04-24 David S. Miller <davem@redhat.com>
2
3 * symtab.h (find_stab_function_addr): Kill extern.
4 * minsyms.c (find_stab_function_addr): Remove from here...
5 * dbxread.c: ... to here, and mark it static.
6
69cdf6a2
DM
72002-04-20 David S. Miller <davem@redhat.com>
8
9 * sparc-tdep.c (sparc_pop_frame): Only need to allocate
10 SPARC_INTREG_SIZE * 16 bytes for reg_temp.
11
5a595886
DM
122002-04-21 David S. Miller <davem@redhat.com>
13
14 * remote-vxsparc.c (vx_read_register): Fix typo, we want
15 REGISTER_RAW_SIZE of SP_REGNUM not CORE_ADDR.
16 (vx_write_register): Likewise.
17
1da1a192
JB
182002-04-23 J. Brobecker <brobecker@gnat.com>
19
20 * source.c (is_regular_file): New function.
21 (openp): Check wether file to open is a regular file
22 to avoid opening directories.
23
baa6f10b
JT
242002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
25
26 * findvar.c (extract_signed_integer): Cast printf argument
27 to suppress format warning.
28 (extract_unsigned_integer): Likewise.
29 * infcmd.c (registers_info): Likewise.
30 * top.c (get_prompt_1): Likewise.
31 * valops.c (value_assign): Likewise.
32 * valprint.c (print_decimal): Likewise.
33
b2c4da81
L
342002-04-22 H.J. Lu (hjl@gnu.org)
35
36 * c-exp.y (typebase): Support
37
38 [long|long long|short] [signed|unsigned] [int|]
39
40 and
41
42 signed [long|long long|short] int
43
f267bd6a
JT
442002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
45
46 * Makefile.in (vax-tdep.o): Add $(arch_utils_h), $(inferior_h),
47 and vax-tdep.h.
48 * vax-tdep.h: New file.
49 * vax-tdep.c: Include inferior.h, arch-utils.h, and vax-tdep.h.
50 Make several routines static.
51 (vax_get_saved_register): New function.
52 (vax_gdbarch_init): New function.
53 (_initialize_vax_tdep): Register vax_gdbarch_init.
54 * config/vax/tm-vax.h: Set GDB_MULTI_ARCH to GDB_MULTI_ARCH_PARTIAL.
55 Remove macros now under the control of gdbarch.
56
da3c6d4a
MS
572002-04-22 Michael Snyder <msnyder@redhat.com>
58
11d3b27d
MS
59 * arm-tdep.c (arm_skip_prologue): Recognize "sub sp, sp, #nn".
60 Some whitespace and coding standards tweaks.
da3c6d4a 61
a33f7558
JT
622002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
63
64 * vax-tdep.c: Include regcache.h.
65 (vax_call_dummy_words): New.
66 (sizeof_vax_call_dummy_words): New.
67 (vax_fix_call_dummy): New function.
68 (vax_saved_pc_after_call): Ditto.
69 * config/vax/tm-vax.h: Don't include regcache.h.
70 (SAVED_PC_AFTER_CALL): Use vax_saved_pc_after_call.
71 (CALL_DUMMY): Remove.
72 (CALL_DUMMY_WORDS): Define.
73 (SIZEOF_CALL_DUMMY_WORDS): Define.
74 (FIX_CALL_DUMMY): Use vax_fix_call_dummy.
75
47a73475
MS
762002-04-18 Michael Snyder <msnyder@redhat.com>
77
78 * arm-tdep.h: Change regnum defines to enums for ease of debugging.
79
52efde73
JT
802002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
81
82 * vax-tdep.c (vax_frame_chain): New function.
83 (vax_push_dummy_frame): Ditto.
84 (vax_pop_frame): Ditto.
85 * config/vax/tm-vax.h (FRAME_CHAIN): vax_frame_chain.
86 (FRAMELESS_FUNCTION_INVOCATION): Use
87 generic_frameless_function_invocation_not.
88 (PUSH_DUMMY_FRAME): Use vax_push_dummy_frame.
89 (POP_FRAME): Use vax_pop_frame.
90
ea74468c
JT
912002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
92
93 * vax-tdep.c (vax_store_struct_return): New function.
94 (vax_extract_return_value): Ditto.
95 (vax_store_return_value): Ditto.
96 (vax_extract_struct_value_address): Ditto.
97 * config/vax/tm-vax.h (STORE_STRUCT_RETURN): Use
98 vax_store_struct_return.
99 (EXTRACT_RETURN_VALUE): Use vax_extract_return_value.
100 (STORE_RETURN_VALUE): Use vax_store_return_value.
101 (EXTRACT_STRUCT_VALUE_ADDRESS): Use vax_extract_struct_value_address.
102
5516aa92
JT
1032002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
104
105 * vax-tdep.c (vax_frame_saved_pc): New function.
106 (vax_frame_args_address_correct): Ditto.
107 (vax_frame_args_address): Ditto.
108 (vax_frame_locals_address): Ditto.
109 (vax_frame_num_args): Move code to be in proximity to
110 other frame-related functions.
111 * config/vax/tm-vax.h (INNER_THAN): Use core_addr_lessthan.
112 (FRAME_SAVED_PC): Use vax_frame_saved_pc.
113 (FRAME_ARGS_ADDRESS_CORRECT): Use vax_frame_args_address_correct.
114 (FRAME_ARGS_ADDRESS): Use vax_frame_args_address.
115 (FRAME_LOCALS_ADDRESS): Use vax_frame_locals_address.
116
36af0b35
L
1172002-04-22 H.J. Lu (hjl@gnu.org)
118
119 * Makefile.in (FLAGS_TO_PASS): Add libdir, mandir, datadir and
120 includedir.
121
ab62c900
JT
1222002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
123
124 * vax-tdep.c (vax_frame_init_saved_regs): New function.
125 * config/vax/tm-vax.h (FRAME_FIND_SAVED_REGS): Remove.
126 (FRAME_INIT_SAVED_REGS): New macro.
127
7232b100
JT
1282002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
129
130 * MAINTAINERS: Reflect that the Alpha target has been multi-arch'd.
131
b70d2aee
JT
1322002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
133
134 * alpha-nat.c (get_longjmp_target): Use ALPHA_* constants
135 where needed.
136 (fetch_osf_core_registers): Likewise.
137 (supply_gregset): Likewise.
138
a0e8a2d1
JB
1392002-04-22 J. Brobecker <brobecker@gnat.com>
140
141 * symfile.h (get_section_index): Define.
142 * symfile.c (get_section_index): New function.
143 * mdebugread.c (SC_IS_SBSS): New macro.
144 (SC_IS_BSS): Return true for the scBss storage class only, as
145 the scSBss storage class refers to the .sbss section.
146 (parse_partial_symbols): Discard the symbols which associated
147 section does not exist.
148 Make sure to use the .sbss section index for symbols which
149 storage class is scBss, rather than using the .bss section index.
150
51eb8b08
JT
1512002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
152
153 * vax-tdep.c: Update copyright years.
154 (vax_register_name): New function.
155 (vax_register_byte): Ditto.
156 (vax_register_raw_size): Ditto.
157 (vax_register_virtual_size): Ditto.
158 (vax_register_virtual_type): Ditto.
159 * config/vax/tm-vax.h: Update copyright years.
160 (REGISTER_NAMES): Remove.
161 (REGISTER_NAME): Define.
162 (REGISTER_BYTE): Use vax_register_byte.
163 (REGISTER_RAW_SIZE): Use vax_register_raw_size.
164 (REGISTER_VIRTUAL_SIZE): Use vax_register_virtual_size.
165 (REGISTER_VIRTUAL_TYPE): Use vax_register_virtual_type.
166
6cc1c0a8
AC
1672002-04-21 Andrew Cagney <ac131313@redhat.com>
168
169 * config/sparc/tm-sparc.h (sparc_skip_prologue): Restore
170 declaration
171 * arc-tdep.c (arc_prologue_frameless_p): Fix syntax error.
172
9319a2fe
DM
1732002-04-21 David S. Miller <davem@redhat.com>
174
175 * arch-utils.c (generic_prologue_frameless_p): Kill
176 SKIP_PROLOGUE_FRAMELESS_P code.
177 * config/arc/tm-arc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
178 references.
179 (PROLOGUE_FRAMELESS_P, arc_prologue_frameless_p): New.
180 * arc-tdep.c (arc_prologue_frameless_p): Implement.
181 * config/arc/tm-sparc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
182 references.
183 (PROLOGUE_FRAMELESS_P, sparc_prologue_frameless_p): New.
184 * sparc-tdep.c (sparc_prologue_frameless_p): Implement.
185 (sparc_gdbarch_init): Pass it to
186 set_gdbarch_prologue_frameless_p.
a0e8a2d1 187
e9ed6d01
JT
1882002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
189
190 * Makefile.in (ALLDEPFILES): Add alphabsd-nat.c.
191 (alphabsd-nat.o): New dependency list.
192
36012033
JT
1932002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
194
195 * Makefile.in (ALLDEPFILES): Add alpha-linux-tdep.c and
196 alphafbsd-tdep.c.
197 (alpha-linux-tdep.o): New dependency list.
198 (alphafbsd-tdep.o): Likewise.
199
3379287a
JT
2002002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
201
202 * alpha-linux-tdep.c: New file. Move alpha_linux_sigtramp_offset
203 to here...
204 * alpha-tdep.c: ...from here.
205 * config/alpha/alpha-linux.mt (TDEPFILES): Add alpha-linux-tdep.o.
206
4bcbd6cb
JT
2072002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
208
209 * config/alpha/tm-alpha.h: Move alpha_software_single_step
210 prototype from here...
211 * alpha-tdep.h: ...to here.
212
b31da25e
AC
2132002-04-21 Andrew Cagney <ac131313@redhat.com>
214
215 * frame.h (selected_frame_level): Document as deprecated.
216 (frame_relative_level): Declare.
217 * stack.c (frame_relative_level): New function.
218 (selected_frame_level): Document as deprecated.
219 (select_frame): Do not set the selected_frame_level.
220
221 * stack.c (frame_info, record_selected_frame): Update.
222 (frame_command, current_frame_command): Update.
223 (up_silently_base, up_command, down_silently_base): Update.
224 (down_command): Update.
225 * inflow.c (kill_command): Update.
226 * tracepoint.c (finish_tfind_command): Update.
227 * corelow.c (core_open): Update.
228 * thread.c (info_threads_command): Update.
229 (do_captured_thread_select): Update.
230 * infcmd.c (finish_command): Update.
231 * breakpoint.c (insert_breakpoints, do_enable_breakpoint): Update.
232
9c1d6fe5
JT
2332002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
234
235 * config/alpha/tm-fbsd.h (FRAME_CHAIN_VALID): Remove.
236
ab89facf
AC
2372002-04-21 Andrew Cagney <ac131313@redhat.com>
238
239 * arm-tdep.c (arm_breakpoint_from_pc): Make static. Make return
240 type const.
241
82a4efa1
JT
2422002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
243
244 * alphafbsd-tdep.c: Update copyright years. Include
245 alpha-tdep.h.
246 (alphafbsd_use_struct_convention): Make static.
247 (alphafbsd_init_abi): New function.
248 (_initialize_alphafbsd_tdep): New function.
249 * config/alpha/tm-fbsd.h: Update copyright years.
250 (USE_STRUCT_CONVENTION): Remove.
251
44dffaac
JT
2522002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
253
254 * alpha-tdep.c (alpha_abi_handler): New structure to describe
255 an Alpha ABI variant.
256 (alpha_abi_handler_list): Declare.
257 (alpha_gdbarch_register_os_abi): New function.
258 (alpha_gdbarch_init): Give registered ABI variant handlers a
259 chance to tweak the gdbarch once we have set up defaults.
260 * alpha-tdep.h: Prototype alpha_gdbarch_register_os_abi.
261
65585be4
JT
2622002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
263
264 * alpha-tdep.c (alpha_gdbarch_init): Set coerce_float_to_double
265 to standard_coerce_float_to_double.
266 * config/alpha/tm-alpha.h (COERCE_FLOAT_TO_DOUBLE): Remove.
267
d9b023cc
JT
2682002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
269
270 * alpha-tdep.h (gdbarch_tdep): Add vm_min_address member.
271 * alpha-tdep.c (heuristic_proc_start): Use vm_min_address
272 from gdbarch_tdep rather than a constant.
273 (alpha_gdbarch_init): Initialize tdep->vm_min_address to
274 the default text address for all Alpha Unix ABIs.
275 (alpha_dump_tdep): Report the value of tdep->vm_min_address.
276 * config/alpha/tm-alpha.h (VM_MIN_ADDRESS): Delete.
277
dc129d82
JT
2782002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
279
280 * alpha-tdep.h: New file. Includes several Alpha target constants
281 taken from...
282 * config/alpha/tm-alpha.h: ...here. Remove macros that we now
283 let gdbarch deal with.
284 (GDB_MULTI_ARCH): Define as GDB_MULTI_ARCH_PARTIAL.
285 * Makefile.in (alpha-nat.o): Add alpha-tdep.h and $(BFD_SRC)/elf-bfd
286 to dependency list.
287 * alpha-nat.c: Include alpha-tdep.h. Update for adjusted
288 Alpha target register names.
289 * alphabsd-nat.c: Likewise.
290 * alpha-tdep.c: Include alpha-tdep.h. Update for adjusted
291 Alpha target register names. Make serveral routines static.
292 (alpha_get_saved_register): New function.
293 (alpha_abi_names): New.
294 (process_note_abi_tag_sections): New function.
295 (get_elfosabi): New function.
296 (alpha_gdbarch_init): New function.
297 (alpha_dump_tdep): New function.
298 (_initialize_alpha_tdep): Register alpha_gdbarch_init.
299
d49d1e0a
AC
3002002-04-21 Andrew Cagney <ac131313@redhat.com>
301
302 * frame.c (find_saved_register): Delete #ifdef
303 HAVE_REGISTER_WINDOWS code.
304 * config/sparc/tm-sparc.h: Update comments.
305 * config/i960/tm-i960.h (HAVE_REGISTER_WINDOWS): Delete macro.
306
92e8c9ed
AC
3072002-04-21 Andrew Cagney <ac131313@redhat.com>
308
309 * i960-tdep.c (i960_find_saved_register): New function.
310 (i960_get_saved_register): New function.
311 * config/i960/tm-i960.h (GET_SAVED_REGISTER): Define.
312 (i960_get_saved_register): Declare.
313 * config/i960/tm-i960.h, i960-tdep.c: Update copyright.
314
e1925118
DM
3152002-04-20 David S. Miller <davem@redhat.com>
316
317 * sparc-nat.c (store-inferior_registers): Fix ambiguous else.
318
29673b29
AC
3192002-04-20 Andrew Cagney <ac131313@redhat.com>
320
321 * arm-tdep.c (arm_gdbarch_init): Use gdbarch_num_pseudo_regs
322 instead of NUM_PSEUDO_REGS.
323
6c86dcd5
DM
3242002-04-20 David S. Miller <davem@redhat.com>
325
326 * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Define to
327 GDB_MULTI_ARCH_PARTIAL
328 * config/sparc/tm-sp64linux.h (GDB_MULTI_ARCH): Do not
329 define, let tm-sp64.h do it.
330
aa40ec90
JT
3312002-04-20 Jason Thorpe <thorpej@wasabisystems.com>
332
333 * frame.c (find_saved_register): Avoid a NULL pointer
334 dereference and actually walk the frame list.
335
0f79675b
AC
3362002-04-20 Andrew Cagney <ac131313@redhat.com>
337
338 * gdbarch.sh (gdbarch_update_p): Keep the list of architectures
339 sorted in most most-recent-used order. Document.
340 * gdbarch.h, gdbarch.c: Regenerate.
341
c04a1aa8
DJ
3422002-04-20 Daniel Jacobowitz <drow@mvista.com>
343
344 * gdbserver/inferiors.c (struct inferior_info): Add regcache_data.
345 (add_inferior): Call create_register_cache.
346 (clear_inferiors): Call free_register_cache.
347 (inferior_regcache_data, set_inferior_regcache_data): New functions.
348 * gdbserver/regcache.c (struct inferior_regcache_data): New.
349 (registers): Remove.
350 (get_regcache): New function.
351 (create_register_cache, free_register_cache): New functions.
352 (set_register_cache): Don't initialize the register cache here.
353 (registers_to_string, registers_from_string, register_data): Call
354 get_regcache.
355 * gdbserver/regcache.h: Add prototypes.
356 * gdbserver/server.h: Likewise.
357
611cb4a5
DJ
3582002-04-20 Daniel Jacobowitz <drow@mvista.com>
359
360 * gdbserver/mem-break.c: New file.
361 * gdbserver/mem-break.h: New file.
362 * gdbserver/Makefile.in: Add mem-break.o rule; update server.h
363 dependencies.
364 * gdbserver/inferiors.c (struct inferior_info): Add target_data
365 member.
366 (clear_inferiors): Free target_data member if set.
367 (inferior_target_data, set_inferior_target_data): New functions.
368 * gdbserver/linux-i386-low.c (i386_breakpoint, i386_breakpoint_len)
369 (i386_stop_pc, i386_set_pc): New. Add to the_low_target.
370 * gdbserver/linux-low.c (linux_bp_reinsert): New variable.
371 (struct inferior_linux_data): New.
372 (linux_create_inferior): Use set_inferior_target_data.
373 (linux_attach): Likewise. Call add_inferior.
374 (linux_wait_for_one_inferior): New function.
375 (linux_wait): Call it.
376 (linux_write_memory): Add const.
377 (initialize_low): Call set_breakpoint_data.
378 * gdbserver/linux-low.h (struct linux_target_ops): Add breakpoint
379 handling members.
380 * gdbserver/server.c (attach_inferior): Remove extra add_inferior
381 call.
382 * gdbserver/server.h: Include mem-break.h. Update inferior.c
383 prototypes.
384 * gdbserver/target.c (read_inferior_memory)
385 (write_inferior_memory): New functions.
386 * gdbserver/target.h (read_inferior_memory)
387 (write_inferior_memory): Change macros to prototypes.
388 (struct target_ops): Update comments. Add const to write_memory
389 definition.
390
f91305dd 3912002-04-19 Andrew Cagney <ac131313@redhat.com>
bf75c8c1
AC
392
393 * sparc-tdep.c (sparc_get_saved_register): Use get_prev_frame
394 instead of ->prev.
395 * z8k-tdep.c (z8k_frame_chain): Do not use ->prev.
396 * s390-tdep.c (s390_frame_chain): Do not use ->prev.
397 * rs6000-tdep.c (frame_get_saved_regs): Use rs6000_frame_chain()
398 instead of ->prev.
399
73d322b1
EZ
4002002-04-19 Elena Zannoni <ezannoni@redhat.com>
401
402 Fix PR gdb/471.
403 * gdbtypes.c (init_simd_type): Rewrite using new functions.
404 (build_builtin_type_vec128): Ditto.
405 (append_composite_type_field): Fix calculation of type length in
406 union case.
407
ccd9a834
EZ
4082002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
409
410 * config/djgpp/README: Update.
411
412 * go32-nat.c (store_register): Cast &a_tss to `char *' to avoid a
413 compiler warnings.
414
a57f9e49
JT
4152002-04-19 Jason Thorpe <thorpej@wasabisystems.com>
416
417 * alpha-tdep.c (setup_arbitrary_frame): Rename...
418 (alpha_setup_arbitrary_frame): ...to this.
419 * config/alpha/tm-alpha.h (SETUP_ARBITRARY_FRAME): Update
420 for alpha_setup_arbitrary_frame.
421
f4f9705a
AC
4222002-04-18 Andrew Cagney <cagney@redhat.com>
423
424 * gdbarch.sh (BREAKPOINT_FROM_PC): Return a const buffer.
425 * gdbarch.h, gdbarch.c: Regenerate.
426
427 * defs.h (breakpoint_from_pc_fn): Delete type definition.
428 * target.h (memory_breakpoint_from_pc): Update declaration.
429 * config/mcore/tm-mcore.h (mcore_breakpoint_from_p): Ditto.
430
431 * arch-utils.c (legacy_breakpoint_from_pc): Update return type.
432 * mcore-tdep.c (mcore_breakpoint_from_pc): Ditto.
433 * mem-break.c (memory_breakpoint_from_pc): Ditto.
434 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Ditto.
435 * s390-tdep.c (s390_breakpoint_from_pc): Ditto
436 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Ditto.
437 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Ditto.
438 * mips-tdep.c (mips_breakpoint_from_pc): Ditto.
439 * m68hc11-tdep.c (m68hc11_breakpoint_from_pc): Ditto.
440 * ia64-tdep.c (ia64_breakpoint_from_pc): Ditto.
441 * d10v-tdep.c (d10v_breakpoint_from_pc): Ditto.
442 * arch-utils.c (legacy_breakpoint_from_pc): Ditto..
443
444 * mem-break.c (default_memory_insert_breakpoint): Make `bp' a
445 const pointer.
446 * monitor.c (monitor_insert_breakpoint): Ditto.
447 * rs6000-tdep.c (rs6000_software_single_step): Ditto for `breakp'.
448
449 * config/mcore/tm-mcore.h: Update copyright.
450 * mem-break.c: Ditto.
451 * xstormy16-tdep.c: Ditto.
452
29f319b8
PM
4532002-04-18 Pierre Muller <muller@ics.u-strasbg.fr>
454
455 * p-exp.y: Add precedence rule for '^' token.
456 This removes the shift/reduce conflicts.
457 Remove the comment concerning these shift/reduce conflicts.
458
ebeac11a
EZ
4592002-04-18 Elena Zannoni <ezannoni@redhat.com>
460
461 * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): New macro.
462 (registers_powerpc_nofp): New register set for processors
463 without floating point unit.
464
27c31547
DM
4652002-04-18 David S. Miller <davem@redhat.com>
466
467 * MAINTAINERS: Add myself to write-after-approval.
468
47a73475
MS
4692002-04-17 Michael Snyder <msnyder@redhat.com>
470
471 * MAINTAINERS: Add myself as co-maintainer of testsuite/gdb.asm.
472
953836b2
AC
4732002-04-17 Andrew Cagney <ac131313@redhat.com>
474
475 * rs6000-tdep.c (frame_initial_stack_address): Use
476 frame_register_read to read the alloca_reg.
477
8b0d4340
AC
4782002-04-17 Andrew Cagney <ac131313@redhat.com>
479
480 * frame.c (find_saved_register): Find saved registers in the next
481 not prev frame.
482 Fix PR gdb/365.
483
d8864532
AC
4842002-04-17 Andrew Cagney <ac131313@redhat.com>
485
486 * gdbarch.sh (LANG): Set to ``c''.
487
36cc83a3
AC
4882002-04-15 Andrew Cagney <ac131313@redhat.com>
489
490 * PROBLEMS: Mention hppa2.0-hp-hpux10.20 compile problems.
491
2f4150cc 4922002-04-15 Andrew Cagney <ac131313@redhat.com>
2c7ef074
AC
493
494 * bcache.c: Include <stddef.h> and <stdlib.h> after "defs.h".
495 Update copyright.
496
628703c6 497 * hpread.c (hpread_get_lntt): Add declaration.
2f4150cc
AC
498 Also fix PR gdb/391.
499
56157b4a
AC
5002002-04-14 Andrew Cagney <ac131313@redhat.com>
501
502 * acinclude.m4 (AM_PROG_CC_STDC): Import from automake 1.6.
503 * aclocal.m4, configure: Re-generate.
504 Fix PR gdb/391.
505
6d1e3329
EZ
5062002-04-14 Elena Zannoni <ezannoni@redhat.com>
507
508 * mi/mi-cmd-disas.c (dump_insns): Use TARGET_PRINT_INSN
509 instead of tm_print_insn.
510
cb06fa07
EZ
5112002-04-14 Elena Zannoni <ezannoni@redhat.com>
512
513 * ppc-bdm.c (bdm_ppc_fetch_registers): Fix typo.
514
f208ba17
AC
5152002-04-14 Andrew Cagney <ac131313@redhat.com>
516
517 * config/pa/tm-hppa.h (FRAME_CHAIN_COMBINE): Delete macro.
518 * blockframe.c (FRAME_CHAIN_COMBINE): Delete macro.
519 (get_prev_frame): Do not call FRAME_CHAIN_COMBINE.
520
20f01a46
DH
5212002-04-12 Don Howard <dhoward@redhat.com>
522
523 * cli/cli-cmds.c (init_cli_cmds): Add new user settable value:
524 max_user_call_depth.
525 (init_cmd_lists): Initialize the new value;
526 * cli/cli-script.c (execute_user_command): Limit the call depth of
527 user defined commands. This avoids a core-dump when user commands
528 are infinitly recursive.
529
a88376a3
KB
5302002-04-12 Kevin Buettner <kevinb@redhat.com>
531
532 * ppc-tdep.h (struct gdbarch_tdep): Add new member ``lr_frame_offset''.
533 * rs6000-tdep.c (rs6000_frame_saved_pc): Use ``lr_frame_offset''
534 from tdep struct instead of DEFAULT_LR_SAVE.
535 (rs6000_gdbarch_init): Initialize ``lr_frame_offset''.
536 * config/powerpc/tm-ppc-eabi.h (DEFAULT_LR_SAVE): Delete.
537 * config/rs6000/tm-rs6000.h (DEFAULT_LR_SAVE): Delete.
538
f2172603
MS
5392002-04-12 Michael Snyder <msnyder@redhat.com>
540
694f61fb 541 * Remote.c: Spelling fix.
20fe79c8
MS
542 * gcore.c (default_derive_heap_segment): Use bfd_section_name.
543 If no symbol found for "sbrk", try "_sbrk".
544 (make_output_phdrs): Use bfd_section_name.
545 (gcore_copy_callback): Use bfd_section_name.
62995fc4 546 * eval.c: Indentation fix-ups.
169a7369
MS
547 * d10v-tdep.c (d10v_make_iaddr): Make it idempotent,
548 in case it gets applied to an address that is already
549 in the instruction space.
de74f71f
MS
550 * cli/cli-decode.c (help_list): Allow long lines to wrap.
551 * symfile.c: Fix indentation, long lines.
f2172603
MS
552 * source.c: White space fix-up.
553
cda5a58a
AC
5542002-04-12 Andrew Cagney <cagney@redhat.com>
555
556 * defs.h (read_relative_register_raw_bytes): Delete declaration.
557 * frame.c (frame_register_read): New function. Return non-zero on
558 success.
559 (read_relative_register_raw_bytes_for_frame): Delete.
560 (read_relative_register_raw_bytes): Delete.
561 * frame.h (frame_register_read): Declare.
562 * d30v-tdep.c: Update Copyright. Use frame_register_read.
563 * sh-tdep.c: Ditto.
564 * infcmd.c (do_registers_info): Ditto.
565 * hppa-tdep.c: Ditto.
566 * rs6000-tdep.c: Ditto.
567 * h8500-tdep.c: Ditto.
568 * mips-tdep.c: Ditto.
569 * h8300-tdep.c: Ditto.
570 * z8k-tdep.c: Ditto.
571
2ea5f656
KB
5722002-04-12 Kevin Buettner <kevinb@redhat.com>
573
574 From Jimi X <jimix@watson.ibm.com>:
575 * rs6000-tdep.c (rs6000_gdbarch_init): Use rs6000_* methods for
576 64-bit SysV ABI.
577
27b15785
KB
5782002-04-12 Kevin Buettner <kevinb@redhat.com>
579
580 From Jimi X <jimix@watson.ibm.com>:
581 * rs6000-tdep.c (rs6000_gdbarch_init): Compute ``wordsize'' from
582 bfd info.
583
5d57ee30
KB
5842002-04-12 Kevin Buettner <kevinb@redhat.com>
585
586 From Jimi X <jimix@watson.ibm.com>:
587 * rs6000-tdep.c (powerpc64, 630, rs64ii, rs64iii): Define
588 register sets for these processor variants.
589
bc1e36ca
DJ
5902002-04-11 Daniel Jacobowitz <drow@mvista.com>
591
592 * gdbserver/linux-low.c (usr_store_inferior_registers): Support
593 registers which are allowed to fail to store.
594 * gdbserver/linux-low.h (linux_target_ops): Likewise.
595 * gdbserver/linux-ppc-low.c (ppc_regmap): Support FPSCR.
596 (ppc_cannot_store_register): FPSCR may not be storable.
597 * regformats/reg-ppc.dat: Support FPSCR.
598
e3f36dbd
KB
5992002-04-11 Kevin Buettner <kevinb@redhat.com>
600
601 * ppc-tdep.h (struct gdbarch_tdep): Add new field ``ppc_fpscr_regnum''.
602 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
603 Add fpscr as an invalid/unfetchable register.
604 * ppc-linux-nat.c (ppc_register_u_addr, store_register)
605 (fetch_ppc_registers, store_ppc_registers, supply_fpregset)
606 (fill_fpregset): Add support for register fpscr.
607 (fetch_ppc_registers, store_ppc_registers, supply_gregset)
608 (fill_gregset): Account for the fact that register ``mq'' might
609 not exist.
610 * rs6000-tdep.c (PPC_UISA_SPRS): Use (unused) slot 70 for fpscr.
611 (registers_power): Add fpscr to register set at slot 71.
612 (rs6000_gdbarch_init): Account for the fact that ``mq'' doesn't
613 exist on most PPC architectures. Initialize ppc_fpscr_regnum.
614
943c9c25
MS
6152002-04-11 Michael Snyder <msnyder@redhat.com>
616
617 * configure.in: Autoconfiscate _SYSCALL32 define for solaris.
618 * configure: Regenerate.
619 * config.in: Regenerate.
620 * acconfig.h: Add define for _SYSCALL32.
621 * core-sol2.c: Remove #define _SYSCALL32.
622 * solib-legacy.c: Remove #define _SYSCALL32.
623
d8c0a2e7
AC
6242002-04-10 Andrew Cagney <ac131313@redhat.com>
625
626 * stack.c (select_frame): Cleanup internal error message, do not
627 use %p.
628
7cc19214
AC
6292002-04-10 Andrew Cagney <ac131313@redhat.com>
630
631 * stack.c (select_frame): Check that selected_frame and the
632 specified level are as expected.
633 * blockframe.c (get_prev_frame): Set the `level' from next_frame.
634 Update copyright.
635 * frame.h (struct frame_info): Add field `level'. Update
636 copyright.
637 Work-in-progress PR gdb/464.
638
67a2b77e
AC
6392002-04-10 Andrew Cagney <ac131313@redhat.com>
640
641 * maint.c (maint_print_section_info): Rename print_section_info.
642 (print_bfd_section_info, print_objfile_section_info): Update.
643 * inferior.h (struct gdbarch): Add opaque declaration.
644 * gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
645 * gdbarch.h: Regenerate.
646
8cfda98c
ML
6472002-04-10 Michal Ludvig <mludvig@suse.cz>
648
649 * x86-64-linux-nat.c (child_resume, child_xfer_memory): Delete.
650 (PTRACE_XFER_TYPE): Moved to config/i386/nm-x86-64.h.
651 (kernel_u_size): Added.
652 * config/i386/nm-x86-64.h (CHILD_XFER_MEMORY, CHILD_RESUME): Delete.
653 (PTRACE_XFER_TYPE): Moved here from config/i386/nm-x86-64.h.
654
ca439ad2
JI
6552002-04-04 Jim Ingham <jingham@apple.com>
656
657 * valarith.c (find_size_for_pointer_math): New function, either returns
658 the size for a pointer's target, returns 1 for void *, or errors for
659 incomplete types.
660 (value_add, value_sub): use find_size_for_pointer_math.
661
2f2893d9
DJ
6622002-04-09 Daniel Jacobowitz <drow@mvista.com>
663
664 * linux-low.c (linux_look_up_symbols): New hook.
665 (linux_target_ops): Add linux_look_up_symbols.
666 * remote-utils.c (decode_address): New function.
667 (look_up_one_symbol): New function.
668 * server.c (handle_query): Call target look_up_symbols hook.
669 * server.h (look_up_one_symbol): Add prototype.
670 * target.h (struct target_ops): Add look_up_symbols hook.
671
2ec06d2e
DJ
6722002-04-09 Daniel Jacobowitz <drow@mvista.com>
673
d64b8841
DJ
674 * gdbserver/server.h: Include <string.h> if HAVE_STRING_H.
675 * ChangeLog: Correct paths in last ChangeLog entry.
676
6772002-04-09 Daniel Jacobowitz <drow@mvista.com>
678
679 * gdbserver/linux-low.h: Remove obsolete prototypes.
2ec06d2e
DJ
680 (struct linux_target_ops): New.
681 (extern the_low_target): New.
d64b8841 682 * gdbserver/linux-low.c (num_regs, regmap): Remove declarations.
2ec06d2e
DJ
683 (register_addr): Use the_low_target explicitly.
684 (fetch_register): Likewise.
685 (usr_fetch_inferior_registers): Likewise.
686 (usr_store_inferior_registers): Likewise.
d64b8841 687 * gdbserver/linux-arm-low.c (num_regs): Remove.
2ec06d2e
DJ
688 (arm_num_regs): Define.
689 (arm_regmap): Renamed from regmap, made static.
690 (arm_cannot_fetch_register): Renamed from cannot_fetch_register,
691 made static.
692 (arm_cannot_store_register): Renamed from cannot_store_register,
693 made static.
694 (the_low_target): New.
d64b8841 695 * gdbserver/linux-i386-low.c (num_regs): Remove.
2ec06d2e
DJ
696 (i386_num_regs): Define.
697 (i386_regmap): Renamed from regmap, made static.
698 (i386_cannot_fetch_register): Renamed from cannot_fetch_register,
699 made static.
700 (i386_cannot_store_register): Renamed from cannot_store_register,
701 made static.
702 (the_low_target): New.
d64b8841 703 * gdbserver/linux-ia64-low.c (num_regs): Remove.
2ec06d2e
DJ
704 (ia64_num_regs): Define.
705 (ia64_regmap): Renamed from regmap, made static.
706 (ia64_cannot_fetch_register): Renamed from cannot_fetch_register,
707 made static.
708 (ia64_cannot_store_register): Renamed from cannot_store_register,
709 made static.
710 (the_low_target): New.
d64b8841 711 * gdbserver/linux-m68k-low.c (num_regs): Remove.
2ec06d2e
DJ
712 (m68k_num_regs): Define.
713 (m68k_regmap): Renamed from regmap, made static.
714 (m68k_cannot_fetch_register): Renamed from cannot_fetch_register,
715 made static.
716 (m68k_cannot_store_register): Renamed from cannot_store_register,
717 made static.
718 (the_low_target): New.
d64b8841 719 * gdbserver/linux-mips-low.c (num_regs): Remove.
2ec06d2e
DJ
720 (mips_num_regs): Define.
721 (mips_regmap): Renamed from regmap, made static.
722 (mips_cannot_fetch_register): Renamed from cannot_fetch_register,
723 made static.
724 (mips_cannot_store_register): Renamed from cannot_store_register,
725 made static.
726 (the_low_target): New.
d64b8841 727 * gdbserver/linux-ppc-low.c (num_regs): Remove.
2ec06d2e
DJ
728 (ppc_num_regs): Define.
729 (ppc_regmap): Renamed from regmap, made static.
730 (ppc_cannot_fetch_register): Renamed from cannot_fetch_register,
731 made static.
732 (ppc_cannot_store_register): Renamed from cannot_store_register,
733 made static.
734 (the_low_target): New.
d64b8841 735 * gdbserver/linux-s390-low.c (num_regs): Remove.
2ec06d2e
DJ
736 (s390_num_regs): Define.
737 (s390_regmap): Renamed from regmap, made static.
738 (s390_cannot_fetch_register): Renamed from cannot_fetch_register,
739 made static.
740 (s390_cannot_store_register): Renamed from cannot_store_register,
741 made static.
742 (the_low_target): New.
d64b8841 743 * gdbserver/linux-sh-low.c (num_regs): Remove.
2ec06d2e
DJ
744 (sh_num_regs): Define.
745 (sh_regmap): Renamed from regmap, made static.
746 (sh_cannot_fetch_register): Renamed from cannot_fetch_register,
747 made static.
748 (sh_cannot_store_register): Renamed from cannot_store_register,
749 made static.
750 (the_low_target): New.
d64b8841 751 * gdbserver/linux-x86-64-low.c (x86_64_regmap): Renamed from regmap.
2ec06d2e
DJ
752 (the_low_target): New.
753
96cb11df
AC
7542002-04-09 Andrew Cagney <ac131313@redhat.com>
755
756 * frame.c (read_relative_register_raw_bytes_for_frame): Do not
757 override FP_REGNUM with frame->fp. Update copyright.
758 * parse.c (num_std_regs, std_regs): Delete.
759 (target_map_name_to_register): Do not search std_regs. Update
760 function description.
761 * parser-defs.h (num_std_regs, std_regs, struct std_regs): Delete
762 declarations. Update copyright.
763 Fix PR gdb/251.
764
c3a3ccc7
DJ
7652002-04-09 Daniel Jacobowitz <drow@mvista.com>
766
767 * gdbserver/Makefile.in: Add stamp-h target.
768 * gdbserver/configure.in: Create stamp-h.
769 * gdbserver/configure: Regenerated.
770
ce3a066d
DJ
7712002-04-09 Daniel Jacobowitz <drow@mvista.com>
772
773 * gdbserver/inferiors.c: New file.
774 * gdbserver/target.c: New file.
775 * gdbserver/target.h: New file.
776 * gdbserver/Makefile.in: Add target.o and inferiors.o. Update
777 dependencies.
778 * gdbserver/linux-low.c (inferior_pid): New static variable,
779 moved from server.c.
780 (linux_create_inferior): Renamed from create_inferior.
781 Call add_inferior. Return 0 on success instead of a PID.
782 (linux_attach): Renamed from myattach.
783 (linux_kill): Renamed from kill_inferior. Call clear_inferiors ().
784 (linux_thread_alive): Renamed from mythread_alive.
785 (linux_wait): Renamed from mywait. Call clear_inferiors () if the
786 child dies.
787 (linux_resume): Renamed from myresume. Add missing ``return 0''.
788 (regsets_store_inferior_registers): Correct error message.
789 Add missing ``return 0''.
790 (linux_fetch_registers): Renamed from fetch_inferior_registers.
791 (linux_store_registers): Renamed from store_inferior_registers.
792 (linux_read_memory): Renamed from read_inferior_memory.
793 (linux_write_memory): Renamed from write_inferior_memory.
794 (linux_target_ops): New structure.
795 (initialize_low): Call set_target_ops ().
796 * gdbserver/remote-utils.c (unhexify): New function.
797 (hexify): New function.
798 (input_interrupt): Send signals to ``signal_pid''.
799 * gdbserver/server.c (inferior_pid): Remove.
800 (start_inferior): Update create_inferior call.
801 (attach_inferior): Call add_inferior.
802 (handle_query): New function.
803 (main): Call handle_query for `q' packets.
804 * gdbserver/server.h: Include "target.h". Remove obsolete prototypes.
805 Add prototypes for "inferiors.c", "target.c", hexify, and unhexify.
806
0729219d
DJ
8072002-04-09 Daniel Jacobowitz <drow@mvista.com>
808
809 * gdbserver/Makefile.in: Add WARN_CFLAGS. Update configury
810 dependencies.
811 * gdbserver/configure.in: Check for <string.h>
812 * gdbserver/configure: Regenerate.
813 * gdbserver/config.in: Regenerate.
814 * gdbserver/gdbreplay.c: Include needed system headers.
815 (remote_open): Remove strchr prototype.
816 * gdbserver/linux-low.h: Correct #ifdef to HAVE_LINUX_USRREGS.
817 * gdbserver/regcache.c (supply_register): Change buf argument to const void *.
818 (supply_register_by_name): Likewise.
819 (collect_register): Change buf argument to void *.
820 (collect_register_by_name): Likewise.
821 * gdbserver/regcache.h: Add missing prototypes.
822 * gdbserver/remote-utils.c: Include <arpa/inet.h> for inet_ntoa.
823 * gdbserver/server.c (handle_query): New function.
824 (attached): New static variable, moved out of main.
825 (main): Quiet longjmp clobber warnings.
826 * gdbserver/server.h: Add ATTR_NORETURN and ATTR_FORMAT. Update prototypes.
827 * gdbserver/utils.c (error): Remove NORETURN.
828 (fatal): Likewise.
829
97658e92
DJ
8302002-04-09 Daniel Jacobowitz <drow@mvista.com>
831
832 * symtab.h (ALL_BLOCK_SYMBOLS): Don't dereference the pointer
833 after the last symbol in a block.
834
6044e3eb
PM
8352002-04-09 Pierre Muller <muller@ics.u-strasbg.fr>
836
837 * p-exp.y (yylex): Handle also the fact that is_a_field_of_this
838 is non zero as a found symbol.
839
0406ec40
AC
8402002-04-08 Andrew Cagney <ac131313@redhat.com>
841
842 * findvar.c: Include "builtin-regs.h".
843 (value_of_register): Call value_of_builtin_reg when applicable.
844 * parse.c: Include "builtin-regs.h" and "gdb_assert.h".
845 (target_map_name_to_register): Call
846 builtin_reg_map_name_to_regnum.
847 * Makefile.in (SFILES): Add builtin-regs.c and std-regs.c.
848 (COMMON_OBS): Add builtin-regs.o and std-regs.o.
849 (builtin_regs_h): Define.
850 (builtin-regs.o): New target.
851 (findvar.o): Add $(builtin_regs_h).
852 * builtin-regs.c, builtin-regs.h: New files.
853 * std-regs.c: New file.
854 Partial fix for PR gdb/251.
855
56a6dfb9
KB
8562002-04-08 Kevin Buettner <kevinb@redhat.com>
857
858 * rs6000-tdep.c (rs6000_gdbarch_init): Don't set tm_print_insn;
859 it's no longer required.
860
3a808432
AC
8612002-04-08 Andrew Cagney <ac131313@redhat.com>
862
863 * Makefile.in (gdbtk-wrapper.o): Add missing dependencies.
864
7c40d541
KB
8652002-04-08 Kevin Buettner <kevinb@redhat.com>
866
867 From Jimi X <jimix@watson.ibm.com>:
868 * rs6000-tdep.c (rs6000_software_single_step): Use
869 rs6000_breakpoint_from_pc() to fetch breakpoint instruction
870 and size. Use target_insert_breakpoint() and
871 target_remove_breakpoint() to insert and remove breakpoints
872 instead of explicit memory reads and writes.
873
cc9836a8
KB
8742002-04-08 Kevin Buettner <kevinb@redhat.com>
875
876 * config/powerpc/tm-ppc-eabi.h (ELF_OBJECT_FORMAT): Delete.
877 * rs6000-tdep.c (rs6000_push_arguments): Eliminate
878 ELF_OBJECT_FORMAT ifdef.
879
7495d1dc
KB
8802002-04-08 Kevin Buettner <kevinb@redhat.com>
881
882 From Jimi X <jimix@watson.ibm.com>:
883 * rs6000-tdep.c (rs6000_gdbarch_init): Use set_gdbarch_print_insn().
884
4288e836
KB
8852002-04-08 Kevin Buettner <kevinb@redhat.com>
886
887 From Jimi X <jimix@watson.ibm.com>:
888 * rs6000-tdep.c (rs6000_fix_call_dummy): Delete unused macro
889 definitions for TOC_ADDR_OFFSET and TARGET_ADDR_OFFSET.
890
a4e4e501
MK
8912002-04-07 Mark Kettenis <kettenis@gnu.org>
892
893 * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions):
894 s/asprintf/xasprintf/.
895 (fbsd_make_corefile_notes): s/strdup/xstrdup/.
896
006defba
AC
8972002-04-07 Andrew Cagney <ac131313@redhat.com>
898
899 I believe Jeff Law denies responsability for this one:
900 * config/pa/hpux11w.mh (MH_CFLAGS): Add -Dvfork=fork.
901 * config/pa/hpux11.mh (MH_CFLAGS): Add -Dvfork=fork.
902 * config/pa/hpux1020.mh (MH_CFLAGS): Add -Dvfork=fork.
903 Work-around for PR gdb/366.
904
7aa83cac
EZ
9052002-04-07 Elena Zannoni <ezannoni@redhat.com>
906
907 * remote-e7000.c (write_small, e7000_read_inferior_memory,
908 e7000_read_inferior_memory_large, e7000_insert_breakpoint,
909 e7000_remove_breakpoint): Use paddr_nz() to print addresses.
910
cf1fcca1
EZ
9112002-04-07 Elena Zannoni <ezannoni@redhat.com>
912
913 * sh-tdep.c (sh_fp_frame_init_saved_regs,
914 sh_nofp_frame_init_saved_regs): Use alloca() for 'where'
915 information.
916
3f289e6f
AC
9172002-04-07 Andrew Cagney <ac131313@redhat.com>
918
919 * MAINTAINERS (Misc): List Daniel Jacobowitz as the GDBSERVER
920 maintainer.
921
129188f6
AC
9222002-04-07 Andrew Cagney <ac131313@redhat.com>
923
924 * README (Reporting Bugs in GDB): Document the bug web page as the
925 prefered way of submitting bugs.
926 Fix PR gdb/402.
927
1200cd6e
AC
9282002-04-06 Andrew Cagney <ac131313@redhat.com>
929
930 * gdbarch.sh (FP_REGNUM, PC_REGNUM, SP_REGNUM): Allow default of
931 -1. Update comment.
932 * gdbarch.h, gdbarch.c: Re-generate.
933
2853c33c
AS
9342002-04-07 Andreas Schwab <schwab@suse.de>
935
936 * m68klinux-nat.c (fill_fpregset): Properly pass address of
937 buffer to regcache_collect.
938
c2169756
AC
9392002-04-06 Andrew Cagney <ac131313@redhat.com>
940
941 * gdbarch.sh (PS_REGNUM): Add. Document. Default to -1.
942 * gdbarch.c, gdbarch.h: Re-generate.
943
25f1b008
AC
9442002-04-06 Andrew Cagney <ac131313@redhat.com>
945
946 * symtab.c (lookup_symtab): Remove ``const'' from ``rp''
947 declaration. Fix -Werror.
948
59263426
DJ
9492002-04-05 Daniel Jacobowitz <drow@mvista.com>
950
951 * gdbarch.sh (initialize_non_multiarch): Call init_gdbarch_swap.
952 * gdbarch.c: Regenerate.
953
f5db4da3
MS
9542002-04-05 Michael Snyder <msnyder@redhat.com>
955
80f8a6eb
MS
956 * breakpoint.c (clear_command): Rewrite middle section to
957 combine two loops with identical control conditions.
958 Add a cleanup to eliminate a memory leak.
f5db4da3
MS
959 * cli/cli-dump.c (restore_section_callback): Use paddr_nz.
960
ad3dcc5c
L
9612002-04-05 H.J. Lu (hjl@gnu.org)
962
963 * solib-svr4.c (bkpt_names): Add "__start".
964
f32e7a74
AC
9652002-04-04 Andrew Cagney <ac131313@redhat.com>
966
967 * sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
968 as test for 64 bit target.
969
8227c0ff
AC
9702002-04-05 Andrew Cagney <ac131313@redhat.com>
971
972 * h8500-tdep.c (h8500_write_fp): Delete function.
973 * dwarf2cfi.c (cfi_write_fp): Document as not used.
974 * mips-tdep.c (mips_gdbarch_init): Do not set write_fp.
975 * ia64-tdep.c (ia64_gdbarch_init): Do not set write_fp.
976 * m68hc11-tdep.c (m68hc11_gdbarch_init): Do not set write_fp.
977 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set write_fp.
978 * s390-tdep.c (s390_gdbarch_init): Do not set write_fp.
979 (s390_write_fp):
980 * sh-tdep.c (sh_gdbarch_init): Do not set write_fp.
981 * x86-64-tdep.c (i386_gdbarch_init): Do not set write_fp.
982 * d10v-tdep.c (d10v_gdbarch_init): Do not set write_fp.
983 (d10v_write_fp): Delete function.
984 * inferior.h (write_fp, generic_target_write_fp): Delete
985 declarations.
986 * regcache.c (generic_target_write_fp): Delete function.
987 (write_fp): Delete function.
988 * gdbarch.sh (TARGET_WRITE_FP): Delete.
989 * gdbarch.h, gdbarch.c: Regenerate.
990 * config/v850/tm-v850.h (TARGET_WRITE_FP): Delete macro.
991 * config/sparc/tm-sp64.h (TARGET_WRITE_FP): Delete macro.
992 (sparc64_write_fp): Delete declaration.
993 * config/h8500/tm-h8500.h (TARGET_WRITE_FP): Delete macro.
994 (h8500_write_fp): Delete declaration.
995
2757dd86
AC
9962002-04-04 Andrew Cagney <ac131313@redhat.com>
997
998 * sparc-tdep.c (sparc64_write_fp): Delete.
999 (sparc_push_dummy_frame): Replace write_fp call with code to store
1000 the FP directly.
1001 (sparc_gdbarch_init): Do not initialize write_fp.
1002
c69255e1
KB
10032002-04-05 Kevin Buettner <kevinb@redhat.com>
1004
1005 * rs6000-tdep.c (skip_prologue): Eliminate unused/unreachable
1006 clause.
1007
ae767bfb
JB
10082002-03-29 Jim Blandy <jimb@redhat.com>
1009
1010 * stack.c (get_selected_block): Add new argument `addr_in_block',
1011 used to return the exact code address we used to select the block,
1012 not just the block.
1013 * blockframe.c (get_frame_block, get_current_block): Same.
1014 * frame.h (get_frame_block, get_current_block,
1015 get_selected_block): Update declarations.
1016 * linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
1017 linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
1018
84d2ac95
MS
10192002-04-05 Michael Snyder <msnyder@redhat.com>
1020
1021 * breakpoint.c (insert_breakpoints): Change 'hw' to 'hardware in
1022 warning message.
1023
596aa3bf
JB
10242002-04-05 J. Brobecker <brobecker@gnat.com>
1025
1026 * utils.c (xfullpath): New function.
1027 * defs.h (xfullpath): Add declaration.
1028 * source.c (openp): Use xfullpath in place of gdb_realpath to
1029 avoid resolving the basename part of filenames when the
1030 associated file is a symbolic link. This fixes a potential
1031 inconsistency between the filenames known to GDB and the
1032 filenames it prints in the annotations.
1033 * symtab.c (lookup_symtab): Use the new xfullpath function, in order
1034 to be able to match a filename with either the real filename, or
1035 the name of any symbolic link to this file.
1036 (lookup_partial_symtab): Ditto.
1037
c02f5703
MS
10382002-04-04 Michael Snyder <msnyder@redhat.com>
1039
1040 * breakpoint.c: Add support for hardware breakpoints in overlays.
1041 (overlay_events_enabled): New state variable.
1042 (insert_breakpoints): Use overlay_events_enabled to decide
1043 whether to attempt to set a breakpoint at the overlay load addr.
1044 Handle bp_hardware_breakpoint as well as bp_breakpoint.
1045 (remove_breakpoint): Use overlay_events_enabled to decide
1046 whether breakpoints need to be removed from overlay load addr.
1047 Handle bp_hardware_breakpoint as well as bp_breakpoint.
1048 (bpstat_stop_status): Handle bp_hardware_breakpoint in overlays.
1049 (create_overlay_event_breakpoint, enable_overlay_breakpoints,
1050 disable_overlay_breakpoints): Update overlay_events_enabled.
1051
5fb290d7
DJ
10522002-04-04 Daniel Jacobowitz <drow@mvista.com>
1053
1054 * dwarf2read.c (struct function_range): New.
1055 (cu_first_fn, cu_last_fn, cu_cached_fn): New.
1056 (check_cu_functions): New.
1057 (read_file_scope): Initialize global function lists.
1058 Call dwarf_decode_line after processing children.
1059 (read_func_scope): Add to global function list.
1060 (dwarf_decode_lines): Call check_cu_functions everywhere
1061 record_line is called. Call record_line with a linenumber
1062 of 0 to mark sequence ends.
1063
7b3fabf0
ML
10642002-04-04 Michal Ludvig <mludvig@suse.cz>
1065
1066 * x86-64-linux-nat.c (child_xfer_memory): x86-64 ptrace() ABI
1067 change sync with glibc.
1068
bce58c09
JB
10692002-04-03 Jim Blandy <jimb@redhat.com>
1070
1071 * configure.in: Call AC_C_INLINE.
1072 * configure: Regenerated.
1073
2fccf04a
DJ
10742002-04-01 Daniel Jacobowitz <drow@mvista.com>
1075
1076 * rs6000-tdep.c: Change #include of "bfd/libcoff.h"
1077 and "bfd/libbfd.h" to "libcoff.h" and "libbfd.h".
1078
2d1bfe2e
MK
10792002-03-31 Mark Kettenis <kettenis@gnu.org>
1080
a5941fbf
MK
1081 * NEWS: Mention gcore support on FreeBSD/i386.
1082
a90cd31d
MK
1083 * fbsd-proc.c: New file.
1084 * config/i386/nm-fbsd.h (CHILD_PID_TO_EXEC_FILE): Define.
1085 * config/i386/fbsd.mh (NATDEPFILES): Add gcore.o and fbsd-proc.o.
1086
2d1bfe2e
MK
1087 * lin-lwp.c (child_wait): Check SAVE_ERRNO instead of ERRNO in
1088 while statement.
1089
9eb6e5a1
JB
10902002-03-29 Jim Blandy <jimb@redhat.com>
1091
1092 * cli/cli-dump.c (_initialize_cli_dump): Older GCC's tolerate
1093 unescaped newlines in string literals, but newer ones don't. So
1094 escape them.
1095
f02df580
MS
10962002-03-26 Michael Snyder <msnyder@redhat.com>
1097 Andrew Cagney <cagney@redhat.com>
1098
1099 * cli/cli-dump.c: New file. Dump memory to file,
1100 restore file to memory.
1101 * cli/cli-dump.h: New file.
1102 * Makefile.in: Add rules, dependencies for cli-dump.o.
89743e04 1103 * NEWS: Mention new commands.
f02df580 1104
109f874e
MS
11052002-03-28 Michael Snyder <msnyder@redhat.com>
1106
1107 * symfile.c (symbol_file_add): Move test for null symbols to later.
1108
520f6ade
AC
11092002-03-27 Andrew Cagney <ac131313@redhat.com>
1110
1111 From veksler at il.ibm.com:
1112 * utils.c (gdb_realpath): If canonicalize_file_name fails, return
1113 the xstrduped original path.
1114 Fix PR gdb/417.
1115
d4654627
MS
11162002-03-27 Michael Snyder <msnyder@redhat.com>
1117
1118 * breakpoint.c (_initialize_breakpoint): Clean up help string.
1119 * infcmd.c (_initialize_infcmd): Ditto.
1120 * language.c (_initialize_language): Ditto.
1121 * symfile.c (_initialize_symfile): Ditto.
1122 * top.c (_init_main): Ditto.
1123 * cli/cli-cmds.c (init_cli_cmds): Ditto.
1124
6be8bc0c
EZ
11252002-03-27 Elena Zannoni <ezannoni@redhat.com>
1126
1127 * rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec
1128 vector registers handling.
1129 (skip_prologue): Handle new AltiVec instructions. Fill in new
1130 fields of frame data.
1131 (frame_get_saved_regs): Fill in information for AltiVec registers.
1132
12af6855
JB
11332002-03-27 Jim Blandy <jimb@redhat.com>
1134
1135 * symtab.h (SYMBOL_INIT_MANGLED_NAME): Turn this macro's body into
1136 a function; leave this macro here to invoke that function.
1137 (symbol_init_mangled_name): Declaration for that function.
1138 * symtab.c (symbol_init_mangled_name): New function.
1139
dc672865
AC
11402002-03-27 Andrew Cagney <ac131313@redhat.com>
1141
1142 * valarith.c: Replace strerror with safe_strerror.
1143 * tracepoint.c: Ditto.
1144 * lin-lwp.c: Ditto.
1145 * go32-nat.c: Ditto.
1146 * inflow.c: Ditto.
1147 * gnu-nat.c: Ditto.
1148
d96429cd
AS
11492002-03-27 Andreas Schwab <schwab@suse.de>
1150
1151 * event-top.c (command_line_handler): Remove useless if.
1152
7e336ba1
AJ
11532002-03-27 Andreas Jaeger <aj@suse.de>
1154
1155 * dwarf2cfi.c: Give credit to Daniel Berlin, reformat copyright
1156 comment.
1157
de220d0f
ML
11582002-03-27 Michal Ludvig <mludvig@suse.cz>
1159
1160 * x86-64-tdep.h (X86_64_NUM_REGS, X86_64_NUM_GREGS): Delete #defines.
1161 (x86_64_num_regs, x86_64_num_gregs): Added extern variables.
1162 * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS.
1163 (x86_64_linux_dr_get_status, supply_gregset),
1164 (fill_gregset): Changed X86_64_NUM_GREGS to x86_64_num_gregs.
1165 * x86-64-tdep.c (x86_64_register_raw_size_table): Delete.
1166 (x86_64_register_info_table): Add.
1167 (X86_64_NUM_REGS, X86_64_NUM_GREGS): Add.
1168 (x86_64_register_raw_size, x86_64_register_virtual_type),
1169 (x86_64_register_name, _initialize_x86_64_tdep): Changed to reflect new
1170 general x86_64_register_info_table.
1171 (i386_gdbarch_init): gdbarch_register_bytes is now set
1172 dynamicaly during initialization.
1173 * regformats/reg-x86-64.dat: Synced with changes to registers above.
1174 * gdbserver/linux-x86-64-low.c: Ditto.
7e336ba1 1175
0e98d0a7
DJ
11762002-03-27 Daniel Jacobowitz <drow@mvista.com>
1177
1178 * gdbserver/server.c (main): Call target_signal_to_host_p
1179 and target_signal_to_host on signals received from the remote.
1180 * gdbserver/remote-utils.c (prepare_resume_reply): Call
1181 target_signal_from_host on signals sent to the remote.
1182 * gdbserver/server.h: Add prototypes. Include "gdb/signals.h".
1183 * gdbserver/Makefile.in: Add signals.o. Add -I${INCLUDE_DIR}.
1184
3130066b
DJ
11852002-03-27 Daniel Jacobowitz <drow@mvista.com>
1186
1187 * signals/signals.c: Include "server.h" in gdbserver build.
1188 (target_signal_from_name): Don't use STREQ.
1189 (_initialize_signals): Likewise. Don't include function in
1190 gdbserver build.
1191
9aedf4f4
DJ
11922002-03-27 Daniel Jacobowitz <drow@mvista.com>
1193
1194 * signals.c: Moved to...
1195 * signals/signals.c: Here.
7e336ba1 1196 * Makefile (signals.o): Update.
9aedf4f4 1197
3fa41cdb
JL
11982002-03-26 Jeff Law (law@redhat.com)
1199
1200 * somread.c (som_symtab_read): Remove some commented out code and
1201 updated related comments. Do not set the minimal symbol table to
1202 mst_solib_trampoline for ST_ENTRY symbols with SS_LOCAL scope
1203 in a dynamic executable.
1204 * hppa-tdep.c (find_proc_framesize): Sanely handle the case
1205 where we are unable to find the minimal symbol for the given
1206 PC value.
1207
ee677e8d
MS
12082002-03-25 Jeff Law (law@redhat.com)
1209
1210 * linux-proc.c (read_mapping): Scan up to end of line for filename.
1211
e76e1718
ML
12122002-03-25 Michal Ludvig <mludvig@suse.cz>
1213
1214 * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch.
1215
18a642a1
AC
12162002-03-23 Andrew Cagney <ac131313@redhat.com>
1217
1218 * command.h: Update copyright.
1219 (struct cmd_list_element): Replace definition with opaque
1220 declaration.
1221 (enum cmd_types): Document that it will eventually be moved to
1222 cli/cli-decode.h
1223 (CMD_DEPRECATED, DEPRECATED_WARN_USER): Delete macros.
1224 (MALLOCED_REPLACEMENT): Delete macro.
1225 * Makefile.in (cli_decode_h): Add $(command_h).
1226 (top.o, completer.o, maint.o): Add dependency on $(cli_decode_h).
7e336ba1 1227 * top.c: Include "cli/cli-decode.h".
18a642a1
AC
1228 * completer.c: Include "cli/cli-decode.h".
1229 * maint.c: Include "cli/cli-decode.h".
1230 * cli/cli-decode.h: Include "command.h".
1231 (enum command_class): Delete.
1232 (enum cmd_types): Comment out.
1233 (enum cmd_auto_boolean): Delete.
1234 (enum var_types): Delete.
1235
b2875cc0
AC
12362002-03-23 Andrew Cagney <ac131313@redhat.com>
1237
1238 * cli/cli-decode.c: Include "gdb_assert.h".
1239 (add_set_or_show_cmd): New static function.
1240 (add_set_cmd): Rewrite. Use add_set_or_show_cmd.
1241 (add_show_from_set): Rewrite. Use add_set_or_show_cmd. Don't copy
1242 all fields, such as func, from the set command.
1243
3b45974e
AC
12442002-03-23 Andrew Cagney <ac131313@redhat.com>
1245
1246 * MAINTAINERS (sh-elf): Change warning flag to -w.
1247
823ca731
AC
12482002-03-23 Andrew Cagney <cagney@redhat.com>
1249
1250 * defs.h (error): Add printf format attribute.
1251 * thread-db.c (thread_from_lwp): Fix error format string.
1252 * stack.c (parse_frame_specification): Ditto.
1253 * cli/cli-decode.c (undef_cmd_error): Ditto.
1254 * scm-lang.c (scm_lookup_name): Ditto.
1255 * tracepoint.c (trace_error): Ditto.
1256 * remote-utils.c (usage): Ditto.
1257 * remote.c (compare_sections_command): Ditto.
1258 Fix PR gdb/328.
1259
0e101458
AC
12602002-03-22 Andrew Cagney <ac131313@redhat.com>
1261
1262 * gdbtypes.c (append_composite_type_field): New function.
1263 (init_composite_type): New function.
1264 * gdbtypes.h (append_composite_type_field): Declare.
1265 (init_composite_type): Ditto.
1266
8e0662df
EZ
12672002-03-22 Elena Zannoni <ezannoni@redhat.com>
1268
1269 * ppc-linux-tdep.c (ppc_sysv_abi_use_struct_convention): New
7e336ba1 1270 function.
8e0662df
EZ
1271 * ppc-tdep.h (ppc_sysv_abi_use_struct_convention): Export.
1272 * rs6000-tdep.c (rs6000_gdbarch_init): Use different
1273 structure returning convention for SYSV ABI case, but not
1274 for GNU/Linux, FreeBSD, or NetBSD.
1275
3121eff0
DJ
12762002-03-22 Daniel Jacobowitz <drow@mvista.com>
1277
1278 * symtab.h (lookup_block_symbol): Add mangled_name argument
1279 to prototype.
1280
1281 * symmisc.c (maintenance_check_symtabs): Call lookup_block_symbol
1282 with new mangled_name argument.
1283 * linespec.c (decode_line_1): Likewise.
1284 * valops (value_of_this): Likewise.
1285 * symtab.c (lookup_transparent_type): Likewise.
1286 (lookup_symbol_aux): Likewise. Accept new mangled_name argument.
1287 (lookup_symbol): If we are given a mangled name, pass it down
1288 to lookup_symbol_aux.
1289 (lookup_block_symbol): If we are given a mangled name to check
1290 against, only return symbols which match it.
1291
349b409f
CF
12922002-03-22 Christopher Faylor <cgf@redhat.com>
1293
1294 * win32-nat.c (child_create_inferior): Check for proper shell to use
1295 here, in case the user changes it on the fly.
1296 (_initialize_inftarg): Remove shell path considerations.
1297
2a873819
EZ
12982002-03-21 Elena Zannoni <ezannoni@redhat.com>
1299
1300 * rs6000-tdep.c (rs6000_gdbarch_init): Use correct max size value
1301 for gdbarch_max_register_raw_size and max_register_virtual_size.
1302 Adjust copyright year.
1303
a1b9830c
DJ
13042002-03-21 Daniel Jacobowitz <drow@mvista.com>
1305
1306 * dbxread.c (process_one_symbol): Extend the first N_SLINE
1307 in a function to cover the entire beginning of the function
1308 as well if it does not already.
1309
8b5790f2
TR
13102002-03-21 Tom Rix <trix@redhat.com>
1311
1312 * rs6000-nat.c (rs6000_ptrace32): Renamed from ptrace32.
1313 (rs6000_ptrace64): Renamed from ptrace64.
1314
bdbe5747
MH
13152002-03-20 Martin M. Hunt <hunt@redhat.com>
1316
1317 * gdbserver/remote-utils.c (remote_open): Don't call
1318 getprotobyname, we're all using TCP here so just use
1319 IPPROTO_TCP.
7e336ba1 1320 * gdbserver/gdbreplay.c (remote_open): Ditto.
bdbe5747
MH
1321
13222002-03-20 Martin M. Hunt <hunt@redhat.com>
7e336ba1 1323
bdbe5747
MH
1324 * regcache.c (_initialize_regcache): No need to call
1325 build_regcache() at this time; it gets called whenever
1326 the gdbarch changes.
1327
7781cd62
DB
13282002-03-20 David O'Brien <obrien@FreeBSD.org>
1329
1330 * sparc-nat.c: Include sys/param.h where possible.
1331
f65ca430
DJ
13322002-03-20 Daniel Jacobowitz <drow@mvista.com>
1333
1334 Fix PR gdb/422.
1335 * c-lang.c (c_create_fundamental_type): Handle FT_COMPLEX,
1336 FT_DBL_PREC_COMPLEX, and FT_EXT_PREC_COMPLEX.
1337 * dwarf2read.c (read_base_type): Set TYPE_TARGET_TYPE for
1338 complex types.
1339 * stabsread.c (rs6000_builtin_type): Likewise.
1340 (read_sun_floating_type): Likewise.
1341
0c867556
PS
13422002-03-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
1343
1344 * stabsread.c (read_member_functions): Remove skip code for duplicate
1345 constructor/destructor methods. Use standard parsing for these
1346 methods and just do not chain them to the list of methods after
1347 parsing.
1348
12b9c64f
AO
13492002-03-19 Alexandre Oliva <aoliva@redhat.com>
1350
1351 * coffread.c: Remove redundant static declarations. Replace
1352 occurrences of `PTR' with `void *'.
1353 * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise.
1354 * top.h (quit_cover): Likewise.
1355 * defs.h (catch_errors): Likewise.
1356
349c5d5f
AC
13572002-03-18 Andrew Cagney <ac131313@redhat.com>
1358
1359 * defs.h (XMALLOC): Define.
1360 * gdb-events.sh (XMALLOC): Delete macro.
1361 * gdb-events.c, gdb-events.h: Regenerate.
1362 * gdbarch.sh (XMALLOC): Delete macro.
1363 * gdbarch.c: Regenerate.
1364 * serial.c (XMALLOC): Delete macro.
1365 * ui-file.c (XMALLOC): Ditto.
1366 * ser-unix.h (XMALLOC): Ditto.
1367 * sh-tdep.c (XMALLOC): Ditto.
1368 * ui-out.c (XMALLOC): Ditto.
1369 * utils.c (XMALLOC): Ditto.
1370 * i386-tdep.c (XMALLOC): Ditto.
1371 * gdb-events.c (XMALLOC): Ditto.
1372 * d10v-tdep.c (XMALLOC): Ditto.
1373 * cli-out.c (XMALLOC): Ditto.
1374
1375 * cli-out.c, d10v-tdep.c, gdb-events.c: Update copyright.
1376 * gdb-events.sh, i386-tdep.c, ser-unix.h, serial.c: Ditto.
1377 * ui-file.c, ui-out.c: Ditto.
1378
7d0766f3
AC
13792002-03-18 Andrew Cagney <ac131313@redhat.com>
1380
1381 * command.h (struct cmd_list_element): Add field context.
1382 (set_cmd_context, get_cmd_context): Declare.
1383 * cli/cli-decode.h: Ditto.
1384 * cli/cli-decode.c (get_cmd_context): New function.
1385 (set_cmd_context): New function.
1386 (add_cmd): Initialize context.
1387 Part of fixing PR gdb/145 and PR gdb/146.
1388
5913bcb0
AC
13892002-03-17 Andrew Cagney <ac131313@redhat.com>
1390
1868c04e
AC
1391 * cli/cli-decode.c (cmd_type): New function.
1392 * command.h (cmd_type): Declare.
1393 * infrun.c (set_schedlock_func): Call function cmd_type.
1394 * kod.c (kod_set_os): Call cmd_type.
1395 * cris-tdep.c (cris_version_update): Use function cmd_type.
1396 (cris_mode_update, cris_abi_update): Ditto.
1397
5913bcb0
AC
1398 * command.h: (execute_cmd_post_hook): Declare.
1399 (execute_cmd_pre_hook): Declare.
1400 * cli/cli-script.c (clear_hook_in_cleanup): New function.
1401 (execute_cmd_post_hook, execute_cmd_pre_hook): New
1402 functions. Execute pre/post hook while ensuring that afterwords
1403 hook_in is cleared.
1404 * top.c (execute_command): Use execute_cmd_post_hook, and
1405 execute_cmd_pre_hook to execute pre/post commands.
1406 * infrun.c (normal_stop): Pass stop_command and not pre_hook to
1407 hook_stop_stub.
1408 (hook_stop_stub): Call execute_cmd_pre_hook.
1409
b51450c9
AC
14102002-03-17 Andrew Cagney <ac131313@redhat.com>
1411
1412 * kod.c (kod_set_os): Revert previous change. Is called by ``info
1413 set'' and this leads to a core dump. Move xstrdup of
1414 operating_system to after check that it is not NULL.
1415
f66c9f11
AC
14162002-03-17 Andrew Cagney <ac131313@redhat.com>
1417
8e694ecf
AC
1418 * kod.c (kod_set_os): Remove unnecessary check that
1419 ``command->type'' is set_cmd.
1420
f66c9f11
AC
1421 * valprint.c (set_input_radix): Use input_radix.
1422 (set_output_radix): Use output_radix.
1423 (set_input_radix_1, set_output_radix_1): Add FIXME - bad radix
1424 isn't reverted.
1425
9d01611c
AC
14262002-03-16 Andrew Cagney <ac131313@redhat.com>
1427
1428 * value.h (struct value): Delete field ``substring_addr''. Change
1429 aligner fields to force_doublest_align, force_longest_align,
ee2d3b3a
AC
1430 force_core_addr_align and force_pointer_aligh.
1431
1432 * value.h (struct value): Fix typo in above change.
9d01611c 1433
4156bb53
PS
14342002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
1435
1436 * ia64-tdep.c (ia64_gdbarch_init): Call set_gdbarch_frame_args_skip,
1437 to fix internal_error from ``maintenance print architecture''.
1438
0e5e3ea6
PS
14392002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
1440
1441 * cp-valprint.c (cp_is_vtbl_ptr_type): Handle vtbl field type
1442 for gcc versions after gcc-2.8.1.
1443
9b013045
PS
14442002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
1445
1446 * eval.c (evaluate_subexp_standard): Fix setup of ``this'' pointer
1447 for method resolution. Restore adjustment of ``this'' pointer after
1448 calling value_struct_elt, which was accidentally removed during the
1449 HP merge.
1450
376c9600
AC
14512002-03-15 Andrew Cagney <ac131313@redhat.com>
1452
1453 * eval.c (evaluate_subexp_standard): Pass ``selected_frame'' to
1454 value_of_register.
1455 * findvar.c (value_of_register): Add ``frame'' parameter. Pass to
1456 get_saved_register.
1457 * value.h (value_of_register): Update.
1458
a4db0f07
RH
14592002-03-14 Richard Henderson <rth@redhat.com>
1460
1461 * configure.in: Detect declaration for canonicalize_file_name.
1462 * utils.c (canonicalize_file_name): Declare, if needed.
1463 (gdb_realpath): Prefer realpath if available and usable.
1464 * config.in, configure: Rebuild.
1465
96383835
RH
14662002-03-14 Richard Henderson <rth@redhat.com>
1467
1468 * dwarf2read.c (read_array_type): Accept DW_FORM_data8 as
1469 a constant array bound.
1470
1471 * MAINTAINERS: Add myself to write-after-approval.
1472
75245b24
MS
14732002-03-14 Michael Snyder <msnyder@redhat.com>
1474
1475 * symfile.c (syms_from_objfile): Return immediately if no syms.
1476 (symbol_file_add): Return immediately if no syms.
1477 (find_sym_fns): Return immediately if no syms.
1478
e641a1ca
ML
14792002-03-13 Michal Ludvig <mludvig@suse.cz>
1480
1481 * gdbserver/remote-util.c (remote_open): Print remote-side's
1482 IP address when remote debugging over the network.
7e336ba1 1483
df08bfec
DB
14842002-03-12 David O'Brien <obrien@FreeBSD.org>
1485
1486 * config/sparc/fbsd.mh: Fix copyright.
1487 * config/sparc/fbsd.mt: Likewise.
1488
9a57864f
RE
14892002-03-11 Richard Earnshaw <rearnsha@arm.com>
1490
1491 * MAINTAINERS: Fix typo in name of gdb warnings option.
1492 (x86-64): Fix formating so that this can be parsed by awk.
1493
dd7bf85e
DJ
14942002-03-10 Daniel Jacobowitz <drow@mvista.com>
1495
1496 * Makefile.in (defs_h): Add $(INCLUDE_DIR)/gdb/signals.h.
1497 * defs.h: Include "gdb/signals.h".
1498 (enum target_signal): Move to $(INCLUDE_DIR)/gdb/signals.h.
1499
33a0a2ac
ML
15002002-03-10 Michal Ludvig <mludvig@suse.cz>
1501
1502 * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
7e336ba1 1503 * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
33a0a2ac
ML
1504 from x86-64-tdep.h
1505
dd824b04
DJ
15062002-03-10 Daniel Jacobowitz <drow@mvista.com>
1507 Don Howard <dhoward@redhat.com>
1508
1509 * mips-tdep.c (ST0_FR): Define.
1510 (mips2_fp_compat): New function, temporarily disabled.
1511 (mips_read_fp_register_single): New function.
1512 (mips_read_fp_register_double): New function.
1513 (mips_print_register): Use them.
1514 (do_fp_register_row): Likewise.
1515
6a41ff59
AC
15162002-03-09 Andrew Cagney <ac131313@redhat.com>
1517
1518 * MAINTAINERS: Add Jim Ingham and Klee Dienes to ``write after
1519 approval''.
1520
4ea09c10
PS
15212002-03-08 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
1522
1523 * stabsread.c (read_member_functions): Fix is_stub test for
1524 static member functions, improve comment.
1525
6ccc741d
RE
15262002-03-07 Richard Earnshaw <rearnsha@arm.com>
1527
1528 * remote-rdi.c (myprint): Replace 'PTR' with 'void *'.
1529 (mywrite, mywritec, mypause, myreadc, mygets): Likewise.
1530 (_initialize_remote_rdi): Use add_set_boolean_cmd to register
1531 commands that set boolean values.
1532 (arm_rdi_remove_breakpoint): Rewrite to avoid uninitialized warning.
1533 (arm_rdi_resume): Always initialize PC.
1534 (arm_rdi_open): Don't use rslt as a boolean.
1535 (arm_rdi_create_inferior, arm_rdi_close, arm_rdi_resume)
1536 (arm_rdi_fetch_registers, arm_rdi_store_registers)
1537 (arm_rdi_xfer_memory, arm_rdi_files_info, arm_rdi_kill)
1538 (arm_rdi_insert_breakpoint, arm_rdi_remove_breakpoint): Likewise.
1539
438013df
AO
15402002-03-06 Alexandre Oliva <aoliva@redhat.com>
1541
1542 * configure.in (gdb_cv_bigtoc): Check for -bbigtoc on AIX.
1543 * configure: Rebuilt.
1544
70ed8774
SC
15452002-03-06 Stephane Carrez <Stephane.Carrez@worldnet.fr>
1546
1547 * m68hc11-tdep.c (_initialize_m68hc11_tdep): Don't set tm_print_insn.
1548 (m68hc11_gdbarch_init): But use set_gdbarch_print_insn instead.
1549
5ba2abeb
AC
15502002-03-06 Andrew Cagney <ac131313@redhat.com>
1551
1552 * cli/cli-decode.c (set_cmd_completer): New function.
1553 * command.h (set_cmd_completer): Declare.
1554 * cli/cli-decode.h (set_cmd_completer): Ditto.
1555
1556 * breakpoint.c (_initialize_breakpoint): Use set_cmd_completer.
1557 * cli/cli-cmds.c (init_cli_cmds): Ditto.
1558 * win32-nat.c (_initialize_inftarg): Ditto.
1559 * remote-rdi.c (_initialize_remote_rdi): Ditto.
1560 * proc-api.c (_initialize_proc_api): Ditto.
1561 * hppa-tdep.c (_initialize_hppa_tdep): Ditto.
1562 * source.c (_initialize_source): Ditto.
1563 * exec.c (_initialize_exec): Ditto.
1564 * solib.c (_initialize_solib): Ditto.
1565 * top.c (init_main): Ditto.
1566 * tracepoint.c (_initialize_tracepoint): Ditto.
1567 * symfile.c (_initialize_symfile): Ditto.
1568 * printcmd.c (_initialize_printcmd): Ditto.
1569 * infcmd.c (_initialize_infcmd): Ditto.
1570 * corefile.c (_initialize_core): Ditto.
1571
f779ca99
AC
15722002-03-05 Andrew Cagney <ac131313@redhat.com>
1573
1574 * MAINTAINERS (Past Maintainers): Add Frank Ch. Eigler.
1575
01a3934b
AC
15762002-03-05 Andrew Cagney <ac131313@redhat.com>
1577
1578 * MAINTAINERS: Fix Mac OS X and Objective-C/C++.
1579
37057839
AC
15802002-03-05 Andrew Cagney <ac131313@redhat.com>
1581
1582 * NEWS: Update headings, 5.2 has branched.
1583
c6ecbae5
DJ
15842002-03-04 Daniel Jacobowitz <drow@mvista.com>
1585
1586 * gdbserver/linux-low.c (PTRACE_XFER_TYPE): Change to long.
1587 (num_regs, regmap): Move inside HAVE_LINUX_USRREGS.
1588 (register_addr, REGISTER_RAW_SIZE): Likewise.
1589 (usr_store_inferior_registers): Use PTRACE_XFER_TYPE.
1590 * gdbserver/linux-x86-64-low.c: Remove extra #endif.
1591
e9f30c21
ML
15922002-03-03 Michal Ludvig <mludvig@suse.cz>
1593
1594 * MAINTAINERS (x86-64): Add myself.
1595 * x86-64-tdep.c (x86_64_push_arguments): Fixed typo naregs->nregs,
1596 changed value_ptr -> struct value *
1597
54394ac3
DB
15982002-03-01 David O'Brien <obrien@FreeBSD.org>
1599
1600 * configure.host (sparc64-*-freebsd): Add.
1601 * configure.tgt: Likewise.
1602 * config/sparc/fbsd.mh: New file.
1603 * config/sparc/fbsd.mt: Likewise.
1604 * config/sparc/nm-fbsd.h: Likewise.
1605 * config/sparc/tm-fbsd.h: Likewise.
1606
bfe95955
DJ
16072002-03-01 Daniel Jacobowitz <drow@mvista.com>
1608
1609 * config/djgpp/fnchange.lst: Add regformats/reg-i386-linux.dat and
1610 regformats/reg-s390x.dat.
1611
f33c6cbf
AC
16122002-03-01 Andrew Cagney <ac131313@redhat.com>
1613
1614 * utils.c: Add FIXME explaining true/false problem.
1615
5ecaa7dd
AC
16162002-02-28 Andrew Cagney <ac131313@redhat.com>
1617
1618 * MAINTAINERS (Past Maintainers): Add J.T. Conklin.
1619
2a251cc2
MC
16202002-02-28 Michael Chastain <mec@shout.net>
1621
1622 * MAINTAINERS: Fix typo: gdb.satbs -> gdb.stabs .
1623
6a8031a3 16242002-02-28 Daniel Jacobowitz <drow@mvista.com>
265f716b
DJ
1625
1626 * gdbserver/linux-s390-low.c: New file.
1627 * regformats/reg-s390.dat: New file.
1628 * regformats/reg-s390x.dat: New file.
1629 * gdbserver/configure.srv: Add S/390.
1630 * gdbserver/Makefile.in: Add S/390.
1631 * configure.tgt: Enable gdbserver for S/390.
1632
ac469903
EZ
16332002-02-28 Eli Zaretskii <eliz@is.elta.co.il>
1634
1635 * go32-nat.c (_initialize_go32_nat): Don't use periods in the
1636 first line of the doc string for "info dos", except at the end of
1637 the sentence, since the short help stops at the first period.
1638
985cb1a3
JM
16392002-02-28 Jason Merrill <jason@redhat.com>
1640
1641 * dwarf2read.c (dwarf_cfi_name): Add new codes.
1642
c570663e
FF
16432002-02-27 Fred Fish <fnf@redhat.com>
1644
1645 * blockframe.c (generic_fix_call_dummy): Fix obvious typo in
1646 comment (dumy -> dummy).
1647
43630227
PS
16482002-02-27 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
1649
1650 * symtab.c (gdb_mangle_name): Handle fully mangled v3 abi physnames.
1651
b84911e8
RB
16522002-02-27 Rodney Brown <rbrown64@csc.com.au>
1653
1654 * utils.c (gdb_realpath): Add pathconf fallback for sco3.2v5.
1655
58caa3dc
DJ
16562002-02-27 Daniel Jacobowitz <drow@mvista.com>
1657
1658 * gdbserver/acconfig.h: New file.
1659 * gdbserver/i387-fp.c: New file.
1660 * gdbserver/i387-fp.h: New file.
1661 * gdbserver/linux-x86-64.c: New file.
1662 * regformats/reg-x86-64.dat: New file.
1663 * configure.tgt: Add x86_64-*-linux* gdbserver support.
1664 * gdbserver/configure.srv: Add x86_64-*-linux* and regset support.
1665 * gdbserver/configure.in: Add support for regsets.
1666 * gdbserver/config.in: Regenerate.
1667 * gdbserver/configure: Regenerate.
1668 * gdbserver/Makefile.in: Likewise. Add $(linux_low_h).
1669 * gdbserver/linux-low.h: New file.
1670 * gdbserver/linux-low.c: Include "linux-low.h". Add support
1671 for regsets.
1672 * gdbserver/linux-arm-low.c: Include "linux-low.h".
1673 * gdbserver/linux-ia64-low.c: Include "linux-low.h".
1674 * gdbserver/linux-m68k-low.c: Include "linux-low.h".
1675 * gdbserver/linux-mips-low.c: Include "linux-low.h".
1676 * gdbserver/linux-ppc-low.c: Include "linux-low.h".
1677 * gdbserver/linux-sh-low.c: Include "linux-low.h".
1678 * gdbserver/linux-i386-low.c: Include "linux-low.h". Include
1679 "i387-fp.h". Add PTRACE_GETREGS and friends.
1680 * gdbserver/regcache.c (supply_register): New function.
1681 (supply_register_by_name): New function.
1682 (collect_register): New function.
1683 (collect_register_by_name): New function.
1684
93652174
DJ
16852002-02-27 Daniel Jacobowitz <drow@mvista.com>
1686
1687 * gdbserver/Makefile.in (INTERNAL_CFLAGS): Remove -DGDBSERVER.
1688 (config.status): Add configure.srv dependency.
1689 (server_h): Add config.h dependency.
1690
a02e4a61
DJ
16912002-02-27 Daniel Jacobowitz <drow@mvista.com>
1692
1693 * regformats/reg-i386-linux.dat: New file, with $orig_eax.
1694 * gdbserver/Makefile.in: Add rules for reg-i386-linux.o.
1695 * gdbserver/configure.srv: Change i386-*-linux* to use
1696 reg-i386-linux.o.
1697
ce0eebec
AC
16982002-02-26 Andrew Cagney <ac131313@redhat.com>
1699
1700 * x86-64-tdep.c: Re-indent. Update copyright date.
1701
82dbc5f7
AC
17022002-02-26 Andrew Cagney <ac131313@redhat.com>
1703
1704 From Michal Ludvig <mludvig@suse.cz>:
1705 * x86-64-tdep.c (value.h): Delete.
1706 (gdb_assert.h): Include.
1707 (x86_64_register_convert_to_virtual,
1708 x86_64_register_convert_to_raw ): Add check which lets only
1709 floating-point values to be converted.
1710 (value_push): Delete.
1711 (x86_64_push_arguments): Order of arguments pushed on stack fixed.
1712 (i386_gdbarch_init): Number of register_bytes fixed.
1713
e4621584
AC
17142002-02-26 Andrew Cagney <ac131313@redhat.com>
1715
1716 * MAINTAINERS: Add x86-64 target.
1717
81a9a963
AC
17182002-02-26 Andrew Cagney <ac131313@redhat.com>
1719
1720 * memattr.c (mem_command): Eliminate ``true'' and ``false''.
1721 * osfsolib.c (solib_map_sections): Ditto.
1722 * irix5-nat.c (solib_map_sections): Ditto.
1723 * corelow.c (gdb_check_format): Ditto.
1724 * symfile.c (symfile_bfd_open): Ditto.
1725 * solib.c (solib_map_sections): Ditto.
1726 Fix PR gdb/354.
7e336ba1 1727
0f017ab9
AC
17282002-02-26 Andrew Cagney <ac131313@redhat.com>
1729
1730 * remote.c (_initialize_remote): By default, disable ``e'' and
1731 ``E'' step out-of-range packets.
1732
75738c29
AS
17332002-02-26 Andreas Schwab <schwab@suse.de>
1734
1735 * config/m68k/tm-linux.h (FRAME_SAVED_PC): Define as
1736 m68k_linux_frame_saved_pc.
1737 (IN_SIGTRAMP): Define as m68k_linux_in_sigtramp instead of
1738 in_sigtramp.
1739 (SIGCONTEXT_PC_OFFSET): Remove.
1740 * m68klinux-nat.c (m68k_linux_frame_saved_pc,
1741 m68k_linux_sigtramp_saved_pc): New functions.
1742 (IS_SIGTRAMP, IS_RT_SIGTRAMP): Define.
1743 (SIGCONTEXT_PC_OFFSET): Moved here from config/m68k/tm-linux.h.
1744 (UCONTEXT_PC_OFFSET): Define.
1745 (m68k_linux_in_sigtramp): Renamed from in_sigtramp, handle both
1746 non-RT and RT signal trampolines.
1747
7e8ed687
RE
17482002-02-26 Richard Earnshaw <rearnsha@arm.com>
1749
1750 * config/arm/tm-embed.h (TARGET_UPAGES): Delete.
1751 (TARGET_NBPG, STACK_END_ADDR): Delete
1752 (VARIABLES_INSIDE_BLOCK): Delete.
1753
6972bc8b
AC
17542002-02-25 Andrew Cagney <ac131313@redhat.com>
1755
1756 * utils.c (perror_with_name): Make string parameter constant.
1757 (print_sys_errmsg): Ditto.
1758 (query): Ditto.
1759 * defs.h (perror_with_name): Update.
1760 (print_sys_errmsg): Update.
1761 (query): Update.
1762
aa32f823
DJ
17632002-02-25 Daniel Jacobowitz <drow@mvista.com>
1764
1765 From Eliot Dresselhaus <eliot@ayrnetworks.com>:
1766 * gdbserver/linux-mips-low.c (cannot_fetch_register): Fix typo.
1767
19caaa45
PS
17682002-02-25 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
1769
1770 * rs6000-nat.c (set_host_arch): Do not switch to a new architecture
1771 if it already matches the current architecture from the exec file.
1772 Include arch-utils.h for gdbarch_info_init prototype.
1773 * Makefile.in (rs6000-nat.o): Update dependencies.
1774
d951901f
EZ
17752002-02-25 Eli Zaretskii <eliz@is.elta.co.il>
1776
1777 * config/djgpp/djconfig.sh: Set NM=nm and CFLAGS="-g -O2" in the
1778 list of exported variables.
1779
7ea81414
DJ
17802002-02-24 Daniel Jacobowitz <drow@mvista.com>
1781
1782 * gdbserver/configure.srv: New file.
1783 * gdbserver/configure.in: Use configure.srv instead
1784 of the host/target makefile fragments. Set GDBSERVER_DEPFILES
1785 from it.
1786 * gdbserver/configure: Regenerated.
1787 * gdbserver/terminal.h: New file.
1788 * gdbserver/Makefile.in: Update for configure changes. Remove
1789 more unneeded include paths.
1790
080fe24b
AC
17912002-02-24 Andrew Cagney <ac131313@redhat.com>
1792
1793 From wiz at danbala:
1794 * config/sparc/tm-sp64.h: Fix grammar and typos.
1795 Fix PR gdb/287.
1796
8605d56e
AC
17972002-02-24 Andrew Cagney <ac131313@redhat.com>
1798
1799 * lin-lwp.c, thread-db.c, defs.h, cris-tdep.c: Replace ``Linux''
a4b6fc86
AC
1800 with either ``GNU/Linux'' or ``Linux kernel''. Update copyright.
1801 * m68klinux-nat.c, sparc-linux-nat.c, x86-64-linux-nat.c: Ditto.
1802 * x86-64-linux-tdep.c, gregset.h, gdb_wait.h: Ditto.
ca557f44
AC
1803 * ia64-linux-nat.c, infrun.c, linux-proc.c: Ditto.
1804 * proc-service.c, i386-linux-tdep.c, ppc-linux-tdep.c: Ditto.
1805 * s390-tdep.c: Ditto.
92362027
AC
1806 * config/nm-linux.h, config/alpha/nm-linux.h: Ditto.
1807 * config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h:
1808 * config/alpha/xm-alphalinux.h, config/i386/nm-linux.h: Ditto.
1809 * config/i386/nm-x86-64.h, config/i386/tm-linux.h: Ditto.
1810 * config/m68k/tm-linux.h, config/mips/nm-linux.h: Ditto.
1811 * config/mips/tm-linux.h, config/mips/xm-linux.h: Ditto.
1812 * config/powerpc/tm-linux.h, config/s390/nm-linux.h: Ditto.
1813 * config/s390/tm-linux.h, config/sh/tm-linux.h: Ditto.
1814 * config/sparc/nm-linux.h, config/sparc/tm-linux.h: Ditto.
1815 * config/sparc/tm-sp64linux.h, config/sparc/xm-linux.h: Ditto.
8605d56e 1816 Fix PR gdb/378.
7e336ba1 1817
8ed32cc0
AC
18182002-02-23 Andrew Cagney <ac131313@redhat.com>
1819
a3007b6f
AC
1820 * lin-thread.c: Delete file.
1821 * configure.in (gdb_cv_struct_reg_r_gs): Update comment to refer
1822 to gdb_proc_service.h.
1823 * configure: Re-generate.
1824
50a9e2f1
AC
1825 * ocd.c (ocd_open): Do not try to open the "ocd" device.
1826 * serial.c (serial_open): Delete check for "ocd".
1827 Fix PR gdb/349.
1828
8b6e7932
AC
1829 * Makefile.in (linux-thread.o): Delete target.
1830 * linux-thread.c: Delete file.
1831
d155c46b
AC
1832 * config/djgpp/fnchange.lst: Rename bfd/elf32-sh64.c. Tweak other
1833 renamed SH files to be consistent.
1834
8ed32cc0
AC
1835 * symtab.c (sort_search_symbols): Use xfree.
1836
0e18d038
RE
18372002-02-23 Richard Earnshaw <rearnsha@arm.com>
1838
1839 * arm-linux-tdep.c (arm_linux_init_abi): Register
1840 IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE
1841 * config/arm/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Replace old
1842 definition with undef, since we don't want the sysvr4 definition.
1843 (SKIP_TRAMPOLINE_CODE): Likewise.
1844
27aac7ff
AC
18452002-02-23 Andrew Cagney <ac131313@redhat.com>
1846
1847 From 2002-02-22 Alfred M. Szmidt <ams@kemisten.nu>:
1848
1849 * configure.in: (AC_CHECK_FUNCS) Added test for
1850 canonicalize_file_name Regenerated.
1851 * config.in, configure: Regenerated.
1852 * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is
1853 defined use canonicalize_file_name.
7e336ba1 1854
65a6e0ee
MC
18552002-02-23 Michael Chastain <mec@shout.net>
1856
1857 * MAINTAINERS: Remove Michael Chastain from "paper trail" list.
1858
47b95330
AC
18592002-02-23 Andrew Cagney <ac131313@redhat.com>
1860
1861 * README: Remove references to cygnus.com.
1862 * MAINTAINERS: Change Past Maintainer addresses to ``foo at bar
1863 dot com'' form. Remove references to cygnus.com and sourceware.
1864
696f451b
AC
18652002-02-23 Andrew Cagney <ac131313@redhat.com>
1866
1867 From 2002-02-19 Paul Eggert <eggert@twinsun.com>:
1868 * Makefile.in (VER): Change "head -1" to "sed q", since POSIX
1869 1003.1-2001 no longer allows "head -1".
1870 * gdb/Makefile.in (version.c): Likewise.
1871 * gdb/doc/Makefile.in (GDBvn.texi): Likewise.
1872 * gdb/CONTRIBUTE: Change "diff -c3" to "diff -c", which is
1873 equivalent. POSIX 1003.1-2001 no longer allows "diff -c3".
1874
bbaca940
AC
18752002-02-23 Andrew Cagney <ac131313@redhat.com>
1876
1877 * cli/cli-decode.c (cmd_cfunc_eq): New function.
1878 * command.h (cmd_cfunc_eq): Declare.
1879 * cli/cli-decode.h (cmd_cfunc_eq): Ditto.
1880
1881 * cli/cli-cmds.h (is_complete_command): Change parameter to a
1882 ``struct cmd_list_element *''.
1883 * cli/cli-cmds.c (is_complete_command): Update. Use
1884 cmd_cfunc_eq.
1885 * top.c (execute_command): Pass the command to
1886 is_complete_command.
1887 * tracepoint.c: Replace function.cfunc with cmd_cfunc_eq.
1888
b8b8b047
AC
18892002-02-23 Andrew Cagney <ac131313@redhat.com>
1890
1891 From 2002-02-20 Martin Schwidefsky <schwidefsky@de.ibm.com>:
1892 * config/s390/tm-s390.h (GDB_TARGET_IS_ESAME): Use renamed
1893 architecture defines.
1894 * s390-tdep.c (s390_gdbarch_init): Likewise.
1895
19d3fc80
RE
18962002-02-23 Richard Earnshaw <rearnsha@arm.com>
1897
1898 * arm-linux-tdep.c (arm_linux_extract_return_value): Make static.
1899 (arm_linux_push_arguments): Likewise.
1900 (arm_linux_init_abi): Register them. Also register linux-specific
1901 call_dummy_words.
1902 (find_minsym_and_objfile): Use strcmp, not STREQ.
1903 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Delete.
1904 (arm_linux_call_dummy_words): Delete declaration.
1905 (EXTRACT_RETURN_VALUE, PUSH_ARGUMENTS): Delete.
1906 (arm_linux_extract_return_value, arm_linux_push_arguments): Delete
1907 declarations.
1908 (LOWEST_PC): Delete.
1909
3ab13650
PS
19102002-02-23 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
1911
1912 * maint.c (print_section_info): Do not prepend `0x' to filepos
1913 output, it will be handled by local_hex_string_custom.
1914
19d3fc80 19152002-02-23 Richard Earnshaw <rearnsha@arm.com>
85ae890c
RE
1916
1917 * arm-linux-nat.c (store_newfpe_single): Use regcache_collect.
1918 (store_newfpe_double, store_newfpe_extended, store_fpregister)
1919 (store_register, store_regs, fill_gregset, fill_fpregset): Likewise.
1920
d85a5daf
JB
19212002-02-22 Jim Blandy <jimb@redhat.com>
1922
1923 Indicate that the bcache functions don't change the strings
1924 they're passed.
1925 * bcache.h (bcache, hash): Add `const' keywords to declarations.
1926 * bcache.c (bcache, hash): Add `const' keywords to definitions.
1927
eeb25b8a
PM
19282002-02-22 Pierre Muller <muller@ics.u-strasbg.fr>
1929
1930 * win32-nat.c (child_create_inferior): Fix create flags setting bug.
1931
6badb179
CF
19322002-02-21 Christopher Faylor <cgf@redhat.com>
1933
1934 * win32-nat.c (register_loaded_dll): Just use raw name when we can't
1935 find the complete path to a loaded DLL.
1936
e8717518
FF
19372002-02-21 Fred Fish <fnf@redhat.com>
1938
1939 * dbxread.c (process_one_symbol): When finding an N_FUN symbol
1940 that marks the end of the range of a function, enter a line number
1941 entry that has a line number of zero and a PC offset that matches
1942 the end of the function. This starts a range of PC's for which no
1943 line number information is known.
1944 * symtab.c (find_pc_sect_line): If our best fit is in a range of
1945 PC's for which no line number info is found (line number is zero)
1946 then we didn't find any valid line information.
1947 * symtab.h: Document use of zero line number entry.
1948
9abe5450
EZ
19492002-02-21 Elena Zannoni <ezannoni@redhat.com>
1950
1951 * ppc-linux-nat.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Define.
1952 (have_ptrace_getvrregs): Define for run time checks.
1953 (gdb_vrregset_t): New type for Altivec register handling.
1954 (fetch_register, store_register): Fetch/store altivec register
1955 when needed.
1956 (fetch_altivec_register, store_altivec_register): New functions.
1957 (supply_vrregset, fill_vrregset): New functions.
1958 (fetch_altivec_registers, store_altivec_registers): New functions.
1959 (fetch_ppc_registers, store_ppc_registers): Fetch/store altivec
1960 registers as well.
1961
aaa38bb5
AJ
19622002-02-21 Jiri Smid <smid@suse.cz>
1963
1964 * config/i386/x86-64linux.mh (NATDEPFILES): Remove x86-64-nat.o.
1965
b34db576
RE
19662002-02-21 Richard Earnshaw <rearnsha@arm.com>
1967
1968 * Makefile.in (armnbsd-nat.o): Update dependencies.
1969 * armnbsd-nat.c (supply_gregset): New function. Common code to
1970 supply the integer register set.
1971 (supply_fparegset): New function. Similar for FPA registers.
1972 (fetch_regs, fetch_fp_regs): Use them.
1973 (fetch_core_registers): Likewise.
1974 (fetch_elfcore_registers): New function.
1975 (arm_netbsd_elfcore_fns): New core-file type specification.
1976 (_initialize_arm_netbsd_nat): Register it.
1977
3e56fc4b
RE
19782002-02-21 Richard Earnshaw <rearnsha@arm.com>
1979
1980 * armnbsd-nat.c: Include gdbcore.h.
1981 (FETCH_INFERIOR_REGISTERS): Just error if this isn't defined.
1982 (fetch_regs, fetch_fp_regs, store_regs, store_fp_regs): Add explicit
1983 'void' to declaration, to shut up ARI.
1984 (fetch_core_registers): Make static. Rewrite using supply_register.
1985 (arm_netbsd_core_fns): New core-file type specification.
1986 (_initialize_arm_netbsd_nat): New function.
1987
097f6b0b
CF
19882002-02-21 Christopher Faylor <cgf@redhat.com>
1989
1990 * win32-nat.c (register_loaded_dll): Correctly check for invalid handle
1991 value.
1992
c914e0cc
CF
19932002-02-20 Christopher Faylor <cgf@redhat.com>
1994
1995 * win32-nat.c (register_loaded_dll): Handle case where FindFirstFile
1996 fails.
1997
385fa495
DJ
19982002-02-20 Daniel Jacobowitz <drow@mvista.com>
1999
2000 * jv-exp.y (parse_number): Change type of implicit longs
2001 to builtin_type_uint64.
2002
e5f1222d
DJ
20032002-02-20 Daniel Jacobowitz <drow@mvista.com>
2004
2005 * gdbserver/linux-low.c (mywait): Change argument to waitpid
2006 to be an integer instead of a `union wait'.
2007
75c9abc6
DJ
20082002-02-20 Daniel Jacobowitz <drow@mvista.com>
2009
2010 * mips-linux-nat.c: Call the operating system GNU/Linux.
2011 * mips-linux-tdep.c: Likewise.
2012 * mips-tdep.c: Likewise.
2013
551792a5
DJ
20142002-02-20 Daniel Jacobowitz <drow@mvista.com>
2015
2016 Fix PR gdb/265.
2017 * jv-exp.y (parse_number): Handle 64-bit integers.
2018
ee6e2b82
DJ
20192002-02-20 Daniel Jacobowitz <drow@mvista.com>
2020
2021 * gdbserver/configure.in: Remove AM_PROC_CC_STDC. Change
2022 AC_STDC_HEADERS to AC_HEADER_STDC.
2023 * gdbserver/configure: Regenerated.
2024
a48442a0
RE
20252002-02-20 Richard Earnshaw <rearnsha@arm.com>
2026
2027 * arc-tdep.c (get_longjmp_target): Only compile this function if JB_PC
2028 is defined.
2029 * sparc-tdep.c (get_longjmp_target): Likewise.
2030
fe419ffc
RE
20312002-02-20 Richard Earnshaw <rearnsha@arm.com>
2032
2033 * News: Add news about ARM and Multi-arch. Mention the new target
2034 arm*-*-netbsd*.
2035
5832ed7e
JB
20362002-02-19 Jim Blandy <jimb@redhat.com>
2037
2038 * stabsread.c (error_type_complaint): Improve error message.
2039
84563040
DJ
20402002-02-19 Daniel Jacobowitz <drow@mvista.com>
2041
2042 * gdbserver/README: Update documentation.
2043 * gdbserver/configure.in: Update configury to match documentation.
2044 * gdbserver/Makefile.in: Likewise.
2045 * gdbserver/configure: Regenerated.
2046 * gdbserver/aclocal.m4: New file, generated by aclocal.
2047 * gdbserver/config.in: New file, generated by autoheader.
2048
375fd65b
RE
20492002-02-19 Richard Earnshaw <rearnsha@arm.com>
2050
2051 * config/djgpp/fnchange.lst: Add change rules for armnbsd-tdep.c and
2052 armnbsd-nat.c.
2053
08216dd7
RE
20542002-02-19 Richard Earnshaw <rearnsha@arm.com>
2055
2056 * arm-tdep.h (enum arm_float_model): New enum.
2057 (struct gdbarch_tdep): Add fp_model.
2058 * arm-tdep.c (arm_gdbarch_init): Set fp_model in tdep. Defer setting
2059 up floating-point conversions until we know the floating-point model
2060 in use by the inferior. Don't complain about being unable to
2061 determine the ABI of the inferior when we don't have one.
2062 (arm_extract_return_value): Support different floating-point models.
2063 (arm_store_return_value): Likewise.
aaa38bb5 2064 * armnbsd-tdep.c (arm_netbsd_aout_init_abi): Set fp_model in tdep to
08216dd7
RE
2065 ARM_FLOAT_SOFT.
2066 (arm_netbsd_elf_init_abi): Set fp_model to ARM_FLOAT_SOFT_VFP.
2067
65d6d66a
PS
20682002-02-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
2069
2070 * i386-tdep.c (i386_gdbarch_init): Eliminate incorrect use
2071 of ``current_gdbarch''.
2072
47221191
RE
20732002-02-19 Richard Earnshaw <rearnsha@arm.com>
2074
2075 * armnbsd-nat.c : ANSIfy all function declarations.
2076 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs): New.
2077 (fetch_inferior_registers): Re-implement in terms of above.
2078 (store_register, store_regs, store_fp_register, store_fp_regs): New.
2079 (store_inferior_registers): Re-implement in terms of above.
2080
fdf39c9a
RE
20812002-02-19 Richard Earnshaw <rearnsha@arm.com>
2082
aaa38bb5 2083 * arm-linux-nat.c: Linux -> GNU/Linux when not talking about the
fdf39c9a
RE
2084 kernel.
2085 * arm-linux-tdep.c: Likewise.
2086 * config/arm/tm-linux.h: Likewise.
2087
93247f88
RE
20882002-02-19 Richard Earnshaw <rearnsha@arm.com>
2089
2090 * configure.tgt (arm*-*-netbsd*): This variant is now fully multi-arch.
2091 * config/arm/nbsd.mt (TM_FILE): Delete.
2092 * config/arm/tm-nbsd.h: Delete.
2093
d7b486e7
RE
20942002-02-19 Richard Earnshaw <rearnsha@arm.com>
2095
2096 * arm-tdep.c (arm_gdbarch_init): Initialize TARGET_CHAR_SIGNED.
2097 Initialize CALL_DUMMY_LENGTH.
2098
41d39a95
RE
20992002-02-19 Richard Earnshaw <rearnsha@arm.com>
2100
2101 * armnbsd-tdep.c (arm_netbsd_aout_in_solib_call_trampoline): New
2102 function.
2103 (arm_netbsd_aout_init_abi): Initialize IN_SOLIB_CALL_TRAMPOLINE.
aaa38bb5 2104 * config/arm/tm-nbsd.h: Don't include config/tm-nbsd.h, it only
41d39a95
RE
2105 defines one thing and that is incorrect for this port.
2106 (IN_SOLIB_CALL_TRAMPOLINE): Delete.
2107
e1195560
PM
21082002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
2109
2110 * go32-nat.c: add i386-tdep.h include to import FP_REGNUM_P macro.
2111
c1748f97
PM
21122002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
2113
2114 * win32-nat.c (display_selector): New function. Displays information
2115 about the information returned by GetThreadSelectorEntry API function.
2116 (display_selectors): New function. Displays the infomation of
2117 the selector given as argument, or of CS, DS ans FS selectors
2118 if no argument is given.
2119 ( _initialize_inftarg): Add "w32" as info prefix command.
2120 Add "info w32 selector" as command calling display_selectors.
2121
e41e6bbf
PM
21222002-02-19 Pierre Muller <muller@ics.u-strasbg.fr>
2123
2124 * i386-tdep.c (get_longjmp_target): Fix compilation failure
2125 by setting dummy values to JB_PC and JB_ELEMENT_SIZE
2126 if not defined.
2127
0d3a9f48
RE
21282002-02-18 Richard Earnshaw <rearnsha@arm.com>
2129
2130 * config/arm/nbsd.mt (TDEPFILES): Add solib-sunos.o.
2131
3fb4b924
RE
21322002-02-18 Richard Earnshaw <rearnsha@arm.com>
2133
2134 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): New function.
2135 (arm_fix_call_dummy): Call it.
2136 (arm_call_dummy_breakpoint_offset): Delete.
2137 (arm_gdbarch_init): Initialize call_dummy_breakpoint_offset.
2138 * config/arm/tm-arm.h (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
2139
7f55af32
AC
21402002-02-18 Andrew Cagney <ac131313@redhat.com>
2141
2142 * gdbarch.sh (FRAME_CHAIN_VALID): Only require at level 2.
2143 Default to func_frame_chain_valid.
2144 * gdbarch.h, gdbarch.c: Re-generate.
2145 * frame.h (FRAME_CHAIN_VALID): Delete definition.
2146
05f13b9c
EZ
21472002-02-18 Elena Zannoni <ezannoni@redhat.com>
2148
2149 * ppc-linux-nat.c: Update copyright.
2150 (fetch_register, store_register): Add tid parameter, don't compute
2151 tid here.
2152 (fetch_ppc_registers, store_ppc_registers): Add tid
2153 parameter. Pass it along to callees.
2154 (fetch_inferior_registers, store_inferior_registers): Compute tid
2155 here, and pass it to calleed functions.
2156 (fill_gregset, supply_fpregset): Clean up formatting.
2157
d7afb4c9
RE
21582002-02-18 Richard Earnshaw <rearnsha@arm.com>
2159
2160 * arm-tdep.c (arm_gdbarch_init): Initialize coerce_float_to_double.
2161 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Delete.
2162
9df628e0
RE
21632002-02-18 Richard Earnshaw <rearnsha@arm.com>
2164
2165 * gdbarch.sh (GET_LONGJMP_TARGET): Add rule.
2166 * gdbarch.c gdbarch.h: Regenerate.
2167 * breakpoint.c (create_longjmp_breakpoint): Always compile this
2168 function.
2169 (breakpoint_reset): Test GET_LONGJMP_TARGET_P().
2170 * infrun.c (GET_LONGJMP_TARGET): Delete default definition.
2171 (handle_inferior_event): Test GET_LONGJMP_TARGET_P().
2172
2173 * arm-tdep.h (struct gdbarch_tdep): Add jb_pc and jb_elt_size fields.
2174 * arm-tdep.c (arm_get_longjmp_target): New function.
2175 (arm_gdbarch_init): Initialize jb_pc to -1. If ABI handler changes
2176 this to a positive value register arm_get_longjmp_target as the
2177 longjmp handler.
2178 * arm-linux-tdep.c (arm_get_longjmp_target): Delete.
2179 (arm_linux_init_abi): Set up longjmp description in tdep.
2180 * armnbsd-nat.c (get_longjmp_target): Delete.
2181 * armnbsd-tdep.c (arm_netbsd_init_abi_common): Set up longjmp
2182 description in tdep.
2183 * config/arm/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC): Delete.
2184 (get_longjmp_target): Delete declaration.
2185 (GET_LONGJMP_TARGET): Delete.
2186 * config/arm/tm-linux.h (arm_get_longjmp_target): Delete declaration.
2187 (GET_LONGJMP_TARGET): Delete.
2188
57bc8964
KB
21892002-02-17 Kevin Buettner <kevinb@redhat.com>
2190
2191 From Peter Schauer <pes@regent.e-technik.tu-muenchen.de>:
2192 * ia64-tdep.c (ia64_gdbarch_init): Eliminate incorrect use
2193 of ``current_gdbarch''.
2194
83d31a92
TT
21952002-02-17 Tom Tromey <tromey@redhat.com>
2196
2197 * cli/cli-cmds.c (compare_strings): New function.
2198 (complete_command): Only print each unique item once.
2199 * completer.h (complete_line): Declare.
2200 * completer.c (complete_line): New function.
2201 (line_completion_function): Use it.
2202
17ef5d92
AC
22032002-02-16 Andrew Cagney <ac131313@redhat.com>
2204
2205 * gdbarch.sh (TARGET_LONG_DOUBLE_BIT): Default to 64.
2206 * gdbarch.h, gdbarch.c: Re-generate.
2207
491b8946
DJ
22082002-02-16 Daniel Jacobowitz <drow@mvista.com>
2209
2210 * valarith.c (value_x_unop): Fix decrement; support post-decrement.
2211
22122002-02-16 Daniel Jacobowitz <drow@mvista.com>
2213
2214 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
2215 * valops.c (value_arg_coerce): Don't take the address of a reference
2216 to convert an argument to a reference.
2217
dfe7f3ac
CF
22182002-02-15 Christopher Faylor <cgf@redhat.com>
2219
2220 * win32-nat.c (get_image_name): New function.
2221 (handle_load_dll): Use get_image_name function.
2222 (get_child_debug_event): Avoid registering debug events until possibly
2223 execed process is started.
2224 (child_create_inferior): Allow invocation via shell so that command
2225 line redirection, etc. works ok.
2226 (_initialize_inftarg): Add new command: "set shell" to control whether
2227 a shell is used to start a process.
2228
1d33e73a
DJ
22292002-02-15 Daniel Jacobowitz <drow@mvista.com>
2230
2231 * gdbserver/linux-mips-low.c (cannot_fetch_register): Use find_regno
2232 instead of find_register_by_number.
2233 (cannot_store_register): Likewise.
2234
48cd0caa
PM
22352002-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
2236
aaa38bb5 2237 * dwarf2read.c: Replace fprintf (stderr, ...) by
48cd0caa
PM
2238 fprintf_unfiltered (gdb_stderr, ...).
2239
8656e7d8
DJ
22402002-02-15 Daniel Jacobowitz <drow@mvista.com>
2241
2242 * gdbserver/gdbserver.1: Document --attach.
2243
66e810cd
RE
22442002-02-15 Richard Earnshaw <rearnsha@arm.com>
2245
2246 * arm-tdep.h (struct gdbarch_tdep): Add fields for breakpoint
2247 descriptions.
2248 * arm-tdep.c (arm_default_arm_le_breakpoint)
2249 (arm_default_arm_be_breakpoint, arm_default_thumb_le_breakpoint)
2250 (arm_default_thumb_be_breakpoint): New. Initialize them from
2251 traditional breakpoint defines.
2252 (arm_breakpoint_from_pc): Use new gdbarch_tdep entries.
2253 (arm_gdbarch_init): Initialize new breakpoint variables.
2254 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint): New.
2255 (arm_linux_init_abi): Initialize linux-specific breakpoint.
2256 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint): New.
2257 (arm_netbsd_aout_init_abi, arm_netbsd_elf_init_abi): Split common
2258 code out to ...
2259 (arm_netbsd_init_abi_common): ... here; new function.
2260 * config/arm/tm-arm.h (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT)
2261 (THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Delete.
2262 * config/arm/tm-linux.h (ARM_LE_BREAKPOINT): Delete.
2263 * config/arm/tm-nbsd.h (ARM_LE_BREAKPOINT): Delete.
2264
97e03143
RE
22652002-02-15 Richard Earnshaw <rearnsha@arm.com>
2266
2267 * arm-tdep.h (enum arm_abi): New enum.
2268 (struct gdbarch_tdep): New structure.
2269 (LOWEST_PC): Provide a default.
2270 (arm_gdbarch_register_os_abi): Declare new function.
2271 * arm-tdep.c (arm_abi_names): New array.
2272 (process_note_abi_tag_sections): New function.
2273 (get_elfosabi): New function.
2274 (arm_gdbarch_register_os_abi): New function.
2275 (arm_gdbarch_init): Try to determine the ABI of the inferior. If
2276 support for that ABI has been built in, then call the appropriate
2277 configuration routine. Use gdbarch_num_regs() to get the number
2278 of registers.
2279 (arm_dump_tdep): New function.
2280 (arm_init_abi_eabi_v1, arm_init_abi_eabi_v2, arm_init_abi_apcs): New
2281 place-holder functions.
2282 (_initialize_arm_tdep): Register them.
2283 * config/arm/tm-arm.h (LOWEST_PC): Delete.
2284
2285 * armnbsd-tdep.c: New file.
2286 * Makefile.in (armnbsd-tdep.o): Add dependencies.
2287 * config/arm/nbsd.mt (TDEPFILES): Add it.
2288 * config/arm/tm-nbsd.h (LOWEST_PC): Delete.
2289
2290 * armnbsd-nat.c: Include regcache.h.
2291 * Makefile.in (armnbsd-nat.o): Update dependency list.
2292
2293 * arm-tdep.c (arm_get_next_pc): Use printf_filtered for error message.
2294
ad68be46
DJ
22952002-02-14 Daniel Jacobowitz <drow@mvista.com>
2296
2297 * gdbserver/Makefile.in: Fix typos in target rules.
2298
003d6d1d
DJ
22992002-02-14 Daniel Jacobowitz <drow@mvista.com>
2300
aaa38bb5 2301 Fix part of PR gdb/267.
003d6d1d
DJ
2302 * linespec.c (find_methods): Handle constructors specially for now.
2303
6b230f1b
CV
23042002-02-14 Corinna Vinschen <vinschen@redhat.com>
2305
2306 * arm-tdep.c (arm_push_arguments): Eliminate special float type
2307 handling.
2308 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Define to call
2309 standard_coerce_float_to_double().
2310
1ea98d12
CF
23112002-02-14 Christopher Faylor <cgf@redhat.com>
2312
2313 * config/i386/xm-cygwin.h: Revert inadvertent reinclusion of
2314 GDBINIT_FILENAME.
2315
dd47e6fd
EZ
23162002-02-14 Elena Zannoni <ezannoni@redhat.com>
2317
2318 * rs6000-tdep.c (rs6000_gdbarch_init): Don't call
2319 find_variant_by_name, because it confuses the multiarch
2320 framework. Return NULL if there isn't an architecture with the
2321 user supplied name, instead of forcing a different one without
2322 recording the change with the multiarch machinery.
2323 (find_variant_by_name): Delete.
2324
d7e39b9e
PS
23252002-02-14 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
2326
2327 * config/i386/i386sol2.mh (NATDEPFILES): Add i387-nat.o, needed by
2328 i386v4-nat.o now. Add gcore.o, Solaris x86 supports gcore.
2329
76e42a4f
MH
23302002-02-13 Martin M. Hunt <hunt@redhat.com>
2331
aaa38bb5 2332 * stack.c (print_frame_info_base): When calling
76e42a4f
MH
2333 print_frame_info_listing_hook, set current_source_symtab.
2334
0a30fbc4
DJ
23352002-02-14 Daniel Jacobowitz <drow@mvista.com>
2336
2337 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS,
2338 and remove unused $(INCLUDE_DIR).
2339 Add regcache.c to OBS.
2340 Add generated register protocol files to clean target.
2341 Update dependencies for new objects, obsolete old target code.
2342
2343 * gdbserver/linux-low.c: Remove all platform-specific code to
2344 new files. Remove various dead code. Update to use regcache
2345 functionality.
2346 * gdbserver/remote-utils.c (fromhex): Add return statement
2347 to quiet warning.
2348 (putpkt): Dynamically allocate buf2 because PBUFSIZ is no longer
2349 constant.
2350 (input_interrupt): Add integer parameter to match prototype
2351 of a signal handler.
2352 (outreg): Use register_data ().
2353 (prepare_resume_reply): Use gdbserver_expedite_regs.
2354 * gdbserver/server.c (main): Dynamically allocate own_buf because
2355 PBUFSIZ is no longer constant. Use registers_to_string () and
2356 registers_from_string ().
2357 * gdbserver/server.h: No longer include "defs.h". Add prototypes
2358 for error (), fatal (), and warning (). Update definition of
2359 PBUFSIZ to use regcache functionality. Add include guard.
2360 * gdbserver/utils.c (fatal): Add missing ``const''.
2361 (warning): New function.
2362
2363 * regformats/regdat.sh: Include "regcache.h" in generated files.
2364 Provide init_registers () function.
2365 * regformats/regdef.h: Add prototype for set_register_cache ().
2366 Add include guard.
2367
2368 * gdbserver/linux-arm-low.c: New file.
2369 * gdbserver/linux-i386-low.c: New file.
2370 * gdbserver/linux-ia64-low.c: New file.
2371 * gdbserver/linux-m68k-low.c: New file.
2372 * gdbserver/linux-mips-low.c: New file.
2373 * gdbserver/linux-ppc-low.c: New file.
2374 * gdbserver/linux-sh-low.c: New file.
2375
2376 * gdbserver/regcache.c: New file.
2377 * gdbserver/regcache.h: New file.
2378
2379 * gdbserver/low-linux.c: Removed obsolete file.
2380
4cc841d0
DJ
23812002-02-14 Daniel Jacobowitz <drow@mvista.com>
2382
2383 * config/arm/linux.mt: Update GDBSERVER_DEPFILES.
2384 * config/i386/linux.mt: Likewise.
2385 * config/ia64/linux.mt: Likewise.
2386 * config/m68k/linux.mh: Likewise.
2387 * config/powerpc/linux.mh: Likewise.
2388 * config/mips/linux.mt: Likewise.
2389
2390 * config/sh/linux.mt: Add GDBSERVER_DEPFILES.
2391
2392 * config/i386/i386lynx.mh: Mark gdbserver variables
2393 as (currently) obsolete for this target.
2394 * config/i386/nbsd.mt: Likewise.
2395 * config/i386/nbsdelf.mt: Likewise.
2396 * config/m32r/m32r.mt: Likewise.
2397 * config/m68k/m68klynx.mh: Likewise.
2398 * config/m68k/nbsd.mt: Likewise.
2399 * config/m68k/sun3os4.mh: Likewise.
2400 * config/mips/vr5000.mt: Likewise.
2401 * config/ns32k/nbsd.mt: Likewise.
2402 * config/pa/hppabsd.mh: Likewise.
2403 * config/pa/hppaosf.mh: Likewise.
2404 * config/powerpc/nbsd.mt: Likewise.
2405 * config/rs6000/rs6000lynx.mh: Likewise.
2406 * config/s390/s390.mt: Likewise.
2407 * config/s390/s390x.mt: Likewise.
2408 * config/sparc/sparclynx.mh: Likewise.
2409 * config/sparc/sun4os4.mh: Likewise.
2410 * config/i386/x86-64linux.mt: Likewise.
2411 * config/sparc/linux.mh: Likewise.
2412
a85f51e7
DJ
24132002-02-14 Daniel Jacobowitz <drow@mvista.com>
2414
2415 * configure.tgt: Configure gdbserver only for known working
2416 targets. Set ${build_gdbserver} instead of modifying ${configdirs}.
2417 * configure.in: Check ${build_gdbserver}. Put gdbserver/ into
2418 SUBDIRS if it is configured. Update comment for ${nativefile}.
2419 * configure: Regenerated.
2420
65554fef
MS
24212002-02-13 Michael Snyder <msnyder@redhat.com>
2422
670a52db
MS
2423 * config/i386/i386v42mp.mh: Add gcore.o to NATDEPFILES.
2424
6dbdc4a3
MS
2425 * gcore.c (gcore_command): Use gcore_default_target instead of NULL.
2426 (default_gcore_mach): Just return 0, work around a problem in bfd.
2427 (default_gcore_target): OK to return NULL if exec_bfd is null.
2428 (make_mem_sec): Use a cast, avoid a warning.
2429
2430 * procfs.c (find_memory_regions_callback): Use a cast instead of
aaa38bb5 2431 calling host_pointer_to_address (which complains if
6dbdc4a3
MS
2432 sizeof (host pointer) != sizeof (target pointer)).
2433 (procfs_make_note_section): Avoid overflow in psargs string.
2434
aaa38bb5 2435 * procfs.c (procfs_make_note_section): Make the default
65554fef
MS
2436 implementation return an error.
2437
24382002-02-13 Rodney Brown <rbrown64@csc.com.au>
2439
2440 * procfs.c (procfs_make_note_section): Provide a default definition
2441 (for alpha-dec-osf4.0f). Fix typos.
2442
1e4d76e7
EZ
24432002-02-13 Elena Zannoni <ezannoni@redhat.com>
2444
2445 * linux-proc.c: Add include of regcache.h.
2446 * Makefile.in (linux-proc.o): Add dependency on regcache.h.
2447
b6d1a1d5
AC
24482002-02-13 Andrew Cagney <ac131313@redhat.com>
2449
2450 From 2002-01-18 Greg McGary <greg@mcgary.org>:
aaa38bb5
AJ
2451 * memattr.c (create_mem_region): Disallow useless empty region.
2452 Regions are half-open intervals, so allow [A..B) [B..C) as
65554fef 2453 non-overlapping.
b6d1a1d5 2454
6c6ea35e
MC
24552002-02-13 Michael Chastain <mec@shout.net>
2456
2457 * defs.h: Kill CONST_PTR.
2458 * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const".
2459 * c-lang.c (c_builtin_types): Likewise.
2460 * ch-lang.c (ch_builtin_types): Likewise.
2461 * f-lang.c (f_builtin_types): Likewise.
2462 * language.c (unknown_builtin_types): Likewise.
2463 * m2-lang.c (m2_builtin_types): Likewise.
2464 * p-lang.c (pascal_builtin_types): Likewise.
2465 * scm-lang.c (c_builtin_types): Likewise.
2466
3e0b0f48
KS
24672002-02-13 Keith Seitz <keiths@redhat.com>
2468
2469 * arm-tdep.h (arm_get_next_pc): Add declaration.
2470
67255d04
RE
24712002-02-13 Richard Earnshaw <rearnsha@arm.com>
2472
2473 * arm-tdep.c (arm_use_struct_convention): Make static. Move to be
2474 with other related struct-returning functions.
2475 (arm_extract_struct_value_address): New function.
2476 (arm_gdbarch_init): Initialize the above in multi-arch vector. Also
2477 initialize float_format, double_format and long_double_format as
2478 appropriate to the endianness of the target.
2479 * config/arm/tm-arm.h (TARGET_DOUBLE_FORMAT): Delete.
2480 (arm_use_struct_convention): Delete declaration.
2481 (USE_STRUCT_CONVENTION, EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
2482
079777f6
KS
24832002-02-13 Keith Seitz <keiths@redhat.com>
2484
2485 * defs.h (core_addr_to_string_nz): New function.
2486
34588f23
MK
24872002-02-13 Mark Kettenis <kettenis@gnu.org>
2488
2489 Apply missing bits of 2002-01-15 patch.
2490 * i386v4-nat.c (supply_fpregset): Use i387_supply_fsave.
2491 (fill_fpregset): Use i387_fill_fsave.
2492
49b563f9
KS
24932002-02-12 Keith Seitz <keiths@redhat.com>
2494
49b563f9
KS
2495 * utils.c (core_addr_to_string): Use phex instead of phex_nz.
2496 (core_addr_to_string_nz): New function.
2497
aeb98c60
RE
24982002-02-11 Richard Earnshaw <rearnsha@arm.com>
2499
2500 * arm-linux-nat.c: Really include arm-tdep.h.
2501 * config/arm/tm-linux.h (struct type, struct value): Declare.
2502
65554fef
MS
25032002-02-11 Michael Snyder <msnyder@redhat.com>
2504
2505 * procfs.c: Include elf-bfd.h (for elfcore_write functions).
2506 (gcore section): Ifdef for Solaris and Unixware only.
2507 (procfs_do_thread_registers): Unixware needs one lwpstatus
2508 per thread (not one prstatus or pstatus).
2509 (procfs_make_note_section): Iterate only over kernel threads (lwps),
2510 not over all gdb threads. For unixware, call elfcore_write_pstatus
2511 once before iterating over threads.
2512
34e8f22d
RE
25132002-02-11 Richard Earnshaw <rearnsha@arm.com>
2514
2515 * arm-tdep.h: New file.
2516 * arm-tdep.c: Include arm-tdep.h.
2517 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
2518 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
2519 (arm_print_float_info, arm_register_type, convert_to_extended)
2520 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
2521 (arm_extract_return_value, arm_register_name): Make static.
2522 (arm_software_single_step): Similarly. Fix types in declaration.
2523 (arm_register_byte, arm_register_raw_size, arm_register_virtual_size)
2524 (arm_store_return_value, arm_store_struct_return): New functions.
2525 (arm_gdbarch_init): Register the above functions. Also register
2526 call_dummy_start_offset, sizeof_call_dummy_words,
2527 function_start_offset, inner_than, decr_pc_after_break, fp_regnum,
2528 sp_regnum, pc_regnum, register_bytes, num_regs, max_register_raw_size,
aaa38bb5 2529 max_register_virtual_size, register_size. Set up
34e8f22d
RE
2530 prologue_cache.saved_regs here, rather than ...
2531 (_initialize_arm_tdep): ... here.
2532 * config/arm/tm-arm.h (struct type, struct value): Delete forward
2533 declarations.
2534 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
2535 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
2536 (arm_print_float_info, arm_register_type, convert_to_extended)
2537 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
2538 (arm_extract_return_value, arm_register_name): Delete declarations.
2539 (SMASH_TEXT_ADDRESS, ADDR_BITS_REMOVE, FUNCTION_START_OFFSET)
2540 (SKIP_PROLOGUE, SAVED_PC_AFTER_CALL, INNER_THAN, BREAKPOINT_FROM_PC)
2541 (DECR_PC_AFTER_BREAK, PRINT_FLOAT_INFO, REGISTER_SIZE, NUM_REGS)
2542 (REGISTER_NAME, REGISTER_BYTES, REGISTER_BYTE, REGISTER_RAW_SIZE)
2543 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
2544 (MAX_REGISTER_VIRTUAL_SIZE, REGISTER_VIRTUAL_TYPE, STORE_STRUCT_RETURN)
2545 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE, CALL_DUMMY_WORDS)
2546 (SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_START_OFFSET, FIX_CALL_DUMMY)
2547 (SOFTWARE_SINGLE_STEP_P, SOFTWARE_SINGLE_STEP)
2548 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL) Delete.
2549 (arm_pc_is_thumb, arm_pc_is_thumb_dummy, thumb_get_next_pc)
2550 (arm_get_next_pc): No-longer static -- these are needed by the RDI
2551 interface.
2552 * arm-linux-nat.c arm-linux-tdep.c armnbsd-nat.c: Include arm-tdep.h.
2553 * remote-rdi.c remote-rdp.c: Likewise.
2554 * Makefile.in (arm-linux-nat.o, arm-linux-tdep.o arm-tdep.o)
2555 (armnbsd-nat.o, remote-rdi.o, remote_rdp.o): Update dependencies.
2556 * config/arm/tm-nbsd.h (SOFTWARE_SINGLE_STEP_P): Delete bogus
2557 definition.
2558
2559 * arm-tdep.h (ARM_A1_REGNUM, ARM_A4_REGNUM, ARM_AP_REGNUM)
2560 (ARM_SP_REGNUM, ARM_LR_REGNUM, ARM_PC_REGNUM, ARM_F0_REGNUM)
2561 (ARM_F3_REGNUM, ARM_F7_REGNUM, ARM_FPS_REGNUM, ARM_PS_REGNUM): Renamed
2562 from non-ARM_ prefixed definitions.
2563 * arm-tdep.c armnbsd-nat.c arm-linux-nat.c arm-linux-tdep.c: Update
2564 all uses of above.
2565 * remote-rdi.c remote-rdp.c: Likewise.
2566 * arm-linux-nat.c (ARM_CPSR_REGNUM): Renamed from CPSR_REGNUM.
2567
148754e5
RE
25682002-02-11 Richard Earnshaw <rearnsha@arm.com>
2569
2570 * arm-tdep.c (arm_frameless_function_invocation)
2571 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
2572 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
2573 (arm_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
2574 (arm_pop_frame, arm_get_next_pc): Make static.
2575 (arm_gdbarch_init): Register above in gdbarch structure.
2576 (arm_read_fp): Renamed from arm_target_read_fp.
2577 (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Make static.
2578 * config/arm/tm-arm.h (arm_frameless_function_invocation)
2579 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
2580 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
2581 (arm_target_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
2582 (arm_pop_frame, arm_get_next_pc, arm_pc_is_thumb)
2583 (arm_pc_is_thumb_dummy): Delete declarations.
fcfb8836
RE
2584 (INIT_EXTRA_FRAME_INFO, TARGET_READ_FP, FRAME_CHAIN)
2585 (FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC, FRAME_ARGS_ADDRESS)
2586 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, FRAME_ARGS_SKIP)
2587 (FRAME_INIT_SAVED_REGS, PUSH_DUMMY_FRAME, POP_FRAME): Delete.
148754e5 2588
434d2d4f
DJ
25892002-02-10 Daniel Jacobowitz <drow@mvista.com>
2590
2591 * symtab.c (compare_search_syms): New function.
2592 (sort_search_symbols): New function.
2593 (search_symbols): Sort symbols after searching rather than
2594 before.
2595
55241689
AC
25962002-02-10 Andrew Cagney <ac131313@redhat.com>
2597
2598 * NEWS: Linux -> GNU/Linux.
2599
028c194b
AC
26002002-02-10 Andrew Cagney <ac131313@redhat.com>
2601
2602 * gdbarch.sh: For for level one methods, disallow a definition
2603 when partially multi-arched. Add comments explaining rationale.
2604 * gdbarch.h: Re-generate.
2605
6acf50cd
AC
26062002-02-10 Andrew Cagney <ac131313@redhat.com>
2607
2608 * gdbarch.sh (EXTRA_STACK_ALIGNMENT_NEEDED): Don't require when
2609 multi-arch partial.
aaa38bb5 2610
50248794
AC
26112002-02-10 Andrew Cagney <ac131313@redhat.com>
2612
2613 * gdbarch.sh: Map LEVEL onto a symbolic GT_LEVEL. Exit on bad
2614 field. Use diff -u.
2615 * gdbarch.c: Re-generate.
2616
c30e0066
AC
26172002-02-10 Andrew Cagney <ac131313@redhat.com>
2618
9b56c5f3 2619 * config/mips/tm-mips.h (CALL_DUMMY_LOCATION): Delete.
c30e0066
AC
2620 * gdbarch.sh (PUSH_RETURN_ADDRESS): Don't require when multi-arch
2621 partial.
2622
6e6d6484
AC
26232002-02-10 Andrew Cagney <ac131313@redhat.com>
2624
2625 * gdbarch.sh (REGISTER_CONVERTIBLE): Don't require when
2626 multi-arch partial.
2627 (PUSH_ARGUMENTS): Switch to using predefault.
2628 * gdbarch.c: Regenerate.
2629
c203844d
AC
26302002-02-10 Andrew Cagney <ac131313@redhat.com>
2631
2632 * valops.c (PUSH_ARGUMENTS): Delete definition.
2633 * gdbarch.sh (PUSH_ARGUMENTS): Don't require when multi-arch
2634 partial. Default to default_push_arguments.
2635 * gdbarch.h, gdbarch.c: Regenerate.
2636
b5a2688f
AC
26372002-02-09 Andrew Cagney <ac131313@redhat.com>
2638
2639 * defs.h (throw_exception): Rename return_to_top_level. Update
2640 comments.
2641 * utils.c (error_stream, internal_verror, quit): Ditto.
2642 * top.c (throw_exception, catcher): Ditto.
2643 * sparclet-rom.c (sparclet_load): Ditto.
2644 * remote.c (interrupt_query, minitelnet): Ditto.
2645 * remote-sds.c (interrupt_query): Ditto.
2646 * remote-mips.c (mips_error, mips_kill): Ditto.
2647 * ocd.c (interrupt_query): Ditto.
2648 * monitor.c (monitor_interrupt_query): Ditto.
2649 * m3-nat.c (suspend_all_threads, thread_resume_command): Ditto.
2650 * target.h: Update comment.
aaa38bb5 2651
b5a2688f 2652 * m3-nat.c, ocd.c, sparclet-rom.c: Update copyright.
aaa38bb5 2653
2fa5c1e0
AC
26542002-02-09 Andrew Cagney <ac131313@redhat.com>
2655
2656 * gdbarch.sh (TARGET_LONG_DOUBLE_FORMAT): Default to
2657 default_double_format.
2658 * gdbarch.h, gdbarch.c: Re-generate.
2659 * findvar.c (floatformat_unknown): Delete variable definition.
2660 * doublest.h (floatformat_unknown): Delete variable declaration.
2661
da966255
JB
26622002-02-09 Jim Blandy <jimb@redhat.com>
2663
2664 * stabsread.c (read_type): Add code to parse Sun's syntax for
2665 prototyped function types.
2666
123a4891
AC
26672002-02-09 Andrew Cagney <ac131313@redhat.com>
2668
2669 * Makefile.in (SUBDIR_CLI_INITS): Set to SUBDIR_CLI_SRCS.
2670 (SUBDIR_MI_INITS): Set to SUBDIR_MI_SRCS.
2671
fb39c8f3
PS
26722002-02-09 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
2673
2674 * xcoffsolib.c (_initialize_xcoffsolib): Renamed from
2675 _initialize_solib. Fixes name clash with solib.c:_initialize_solib,
2676 now _initialize_xcoffsolib gets called again and overrides the
2677 commands from solib.c in a native configuration.
2678
0b87a11d
MK
26792002-02-09 Mark Kettenis <kettenis@gnu.org>
2680
2681 * doublest.c (store_typed_floating): Don't try to return a value.
2682 Fixes PR gdb/290.
2683
bdc2fc72
JB
26842002-02-08 Jim Blandy <jimb@redhat.com>
2685
2686 * c-typeprint.c (c_type_print_varspec_suffix): If a function type
2687 is prototyped and has no arguments, print its argument list as
2688 `(void)'.
2689
da69bbcf
CD
26902002-02-08 Chris Demetriou <cgd@broadcom.com>
2691
2692 * MAINTAINERS (write-after-approval): Add myself.
2693 (paper-trail): I've escaped!
aaa38bb5 2694
b69571f5
CF
26952002-02-08 Christopher Faylor <cgf@redhat.com>
2696
2697 * win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf
2698 changes.
2699 (_initialize_check_for_gdb_ini): Ditto.
2700
f6871398
MH
27012002-02-08 Martin M. Hunt <hunt@redhat.com>
2702
2703 * win32-nat.c (cygwin_pid_to_str): Fix typo.
2704 xaprintf -> xasprintf.
2705
4e52d31c
PM
27062002-02-08 Pierre Muller <muller@ics.u-strasbg.fr>
2707
2708 * win32-nat.c: Remove use of printf and sprintf functions.
2709
39bbf761
RE
27102002-02-08 Richard Earnshaw <rearnsha@arm.com>
2711
2712 * arm-tdep.c (arm_frame_chain_valid): Make static.
2713 (arm_push_arguments): Likewise.
2714 (arm_gdbarch_init): New function.
2715 (_initialize_arm_tdep): Call it.
2716 * config/arm/tm-arm.h (GDB_MULTI_ARCH): Set to 1.
2717 (TARGET_DOUBLE_FORMAT): Test TARGET_BYTE_ORDER, not target_byte_order.
2718 (FRAME_CHAIN_VALID): Delete.
2719 (arm_frame_chain_valid): Delete declaration.
2720 (PUSH_ARGUMENTS): Delete.
2721 (arm_push_arguments): Delete declaration.
2722 (CALL_DUMMY_P): Delete.
2723
9c9532c9
CV
27242002-02-08 Andrew Cagney <ac131313@redhat.com>
2725 Corinna Vinschen <vinschen@redhat.com>
2726
2727 * gdbtypes.c (build_gdbtypes): Disable setting a specific float format
2728 on builtin float types.
2729
4e8f7a8b
DJ
27302002-02-08 Daniel Jacobowitz <drow@mvista.com>
2731
2732 * utils.c: Include <curses.h> before "bfd.h".
2733 * tui/tui-hooks.c: Likewise.
2734 * tui/tui.c: Likewise.
2735 * tui/tuiCommand.c: Likewise.
2736 * tui/tuiData.c: Likewise.
2737 * tui/tuiDataWin.c: Likewise.
2738 * tui/tuiDisassem.c: Likewise.
2739 * tui/tuiGeneralWin.c: Likewise.
2740 * tui/tuiIO.c: Likewise.
2741 * tui/tuiLayout.c: Likewise.
2742 * tui/tuiRegs.c: Likewise.
2743 * tui/tuiSource.c: Likewise.
2744 * tui/tuiSourceWin.c: Likewise.
2745 * tui/tuiStack.c: Likewise.
2746 * tui/tuiWin.c: Likewise.
2747
cd4bffcf
EZ
27482002-02-07 Elena Zannoni <ezannoni@redhat.com>
2749
2750 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Extend where[] array
2751 to include space for pseudoregs as well. Update loops accordingly.
2752 (sh_fp_frame_init_saved_regs): Ditto.
2753 (sh_init_extra_frame_info, sh_pop_frame): Split long lines.
2754
26806ce2
AC
27552002-02-07 Andrew Cagney <ac131313@redhat.com>
2756
2757 * MAINTAINERS: Andreas Schwab is GNU/Linux m68k maintainer.
2758 Add Richard Earnshaw to Arm maintainers.
2759
97fdab62
AC
27602002-02-07 Andrew Cagney <ac131313@redhat.com>
2761
a6b98203
AC
2762 * defs.h (warning_begin): Delete declaration.
2763
97fdab62
AC
2764 * config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
2765 Delete macro.
2766
78b29b40
MS
27672002-02-07 Michael Snyder <msnyder@redhat.com>
2768
aaa38bb5 2769 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
78b29b40
MS
2770 Logic bug, remove misplaced else.
2771
d8849953
KD
27722002-02-07 Klee Dienes <klee@apple.com>
2773
2774 * fork-inferior.c (fork_inferior): Add '!' to the list of
2775 characters that need to be quoted when building a string for the
2776 shell. Quote '!' specifically with a backslash, since CSH chokes
2777 when trying to evaluate "str!str".
aaa38bb5 2778
095778a0
NC
27792002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
2780
2781 * rdi-share/host.h: Only provide a typedef for bool if it is not
2782 defined.
2783
1900040c
MS
27842002-02-04 Michael Snyder <msnyder@redhat.com>
2785
2786 * breakpoint.h (enum bptype): Add new overlay event bp type.
2787 (enable_overlay_breakpoints, disable_overlay_breakpoints): Export.
aaa38bb5 2788
1900040c
MS
2789 * breakpoint.c (create_internal_breakpoint): New function.
2790 (internal_breakpoint_number): Moved into create_internal_breakpoint.
2791 (create_longjmp_breakpoint): Use create_internal_breakpoint.
2792 (create_thread_event_breakpoint): Ditto.
2793 (create_solib_event_breakpoint): Ditto.
2794 (create_overlay_event_breakpoint): New function.
2795 (enable_overlay_breakpoints, disable_overlay_breakpoints): New funcs.
2796 (update_breakpoints_after_exec): Delete and re-initialize
2797 overlay event breakpoints after an exec. Add FIXME comment
2798 about longjmp breakpoint.
2799 (print_it_typical): Ignore overlay event breakpoints.
2800 (print_one_breakpoint): Ditto.
2801 (mention): Ditto.
2802 (bpstat_what): Do not stop for overlay event breakpoints.
2803 (delete_breakpoint): Don't delete overlay event breakpoints.
2804 (breakpoint_re_set_one): Delete the overlay event breakpoint.
2805 (breakpoint_re_set): Re-create overlay event breakpoint.
2806
2807 * symfile.c (overlay_auto_command): Enable overlay breakpoints.
2808 (overlay_manual_command): Disable overlay breakpoints.
2809 (overlay_off_command): Disable overlay breakpoints.
2810
082fc60d
RE
28112002-02-06 Richard Earnshaw <rearnsha@arm.com>
2812
2813 * arm-tdep.c: Include elf-bfd.h and coff/internal.h.
2814 (MSYMBOL_SET_SPECIAL, MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Move defines
2815 to here from config/tm-arm.h.
2816 (coff_sym_is_thumb): Make static.
2817 (arm_elf_make_msymbol_special): New function.
2818 (arm_coff_make_msymbol_special): New function.
2819 * config/arm/tm-arm.h (MSYMBOL_SET_SPECIAL): Delete definition.
2820 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Likewise.
2821 (coff_sym_is_thumb): Delete declaration.
2822 (arm_elf_make_msymbol_special): Declare.
2823 (arm_coff_make_msymbol_special): Declare.
2824 (ELF_MAKE_MSYMBOL_SPECIAL): Call arm_elf_make_msymbol_special.
2825 (COFF_MAKE_MSYMBOL_SPECIAL): Call arm_coff_make_msymbol_special.
2826
039c5766
RE
28272002-02-06 Richard Earnshaw <rearnsha@arm.com>
2828
2829 * arm-tdep.c (arm_software_single_step): ANSIfy function declaration.
2830
28312002-02-06 Richard Earnshaw <rearnsha@arm.com>
2832
2833 * gdbarch.sh (PRINT_FLOAT_INFO): Add rule.
2834 * gdbarch.c gdbarch.h: Regenerate.
2835 * arch-utils.c (default_print_float_info): New function.
2836 * arch-utils.h (default_print_float_info): Prototype it.
2837 * infcmd.c (float_info): Call PRINT_FLOAT_INFO.
2838 * doc/gdbint.texinfo (FLOAT_INFO): Mark as deprecated.
2839 (PRINT_FLOAT_INFO): Document it.
2840
2841 * arm-tdep.c (arm_print_float_info): Renamed from arm_float_info.
2842 * config/arm/tm-arm.h (FLOAT_INFO): Delete.
2843 (PRINT_FLOAT_INFO): Define.
2844
58fa08f0
PM
28452002-02-06 Pierre Muller <muller@ics.u-strasbg.fr>
2846
aaa38bb5 2847 * win32-nat.c (_initialize_check_for_gdb_ini):
58fa08f0
PM
2848 Add typecast to sprintf argument to suppress a warning.
2849
7393af7c
PM
28502002-02-05 Pierre Muller <muller@ics.u-strasbg.fr>
2851
58fa08f0 2852 * win32-nat.c (last_sig): Changed type of variable to target_signal,
7393af7c
PM
2853 to allow easier handling of pass state.
2854 (DEBUG_EXCEPTION_SIMPLE): New macro, used in handle_exception,
2855 that gives exception name and address.
2856 (handle_exception): Use DEBUG_EXCEPTION_SIMPLE macro
aaa38bb5 2857 and set last_sig value to ourstatus->value.sig. Some missing
7393af7c 2858 exceptions added.
aaa38bb5
AJ
2859 (child_continue): Correctly report continue_status.
2860 (get_child_debug_event,do_initial_child_stuff): Set last_sig to
7393af7c 2861 TARGET_SIGNAL_0 (new default value).
aaa38bb5 2862 (child_resume): consider sig argument passed to decide if
7393af7c
PM
2863 the exception should be passed to debuggee or not.
2864
6af4589c
MS
28652002-02-05 Michael Snyder <msnyder@redhat.com>
2866
2867 * regcache.c (fetch_register): Call target_fetch_register
2868 only if we don't call FETCH_PSEUDO_REGISTER.
2869 (store_register): Call target_store_register only if we
2870 don't call STORE_PSEUDO_REGISTER.
2871
a2cf933a
EZ
28722002-02-05 Elena Zannoni <ezannoni@redhat.com>
2873
2874 * gdbarch.sh: Add definitions for COFF_MAKEMSYMBOL_SPECIAL and
2875 ELF_MAKE_MSYMBOL_SPECIAL.
2876 * gdbarch.c, gdbarch.h: Regenerate.
2877 * arch-utils.c (default_make_msymbol_special): New function.
aaa38bb5 2878 * arch-utils.h (default_make_msymbol_special): Export.
a2cf933a
EZ
2879 * elfread.c (elf_symtab_read): Compile use of
2880 ELF_MAKE_MSYMBOL_SPECIAL unconditionally because it is now
2881 multiarched.
2882 * coffread.c (coff_symtab_read): Ditto, for
2883 COFF_MAKE_MSYMBOL_SPECIAL.
2884
6bb7be43
JB
28852002-02-05 Jim Blandy <jimb@redhat.com>
2886
2887 * solib-svr4.c (svr4_truncate_ptr): New function.
2888 (svr4_relocate_section_addresses): Do the address arithmetic with
2889 the appropriate truncation for target addresses, even when
2890 CORE_ADDR is larger than a target address.
2891
e18651ec
DJ
28922002-02-05 Daniel Jacobowitz <drow@mvista.com>
2893
2894 * gdbserver/linux-low.c (mywait): Cast second argument of waitpid
2895 to (int *).
2896
6b2725be
DJ
28972002-02-05 Daniel Jacobowitz <drow@mvista.com>
2898
2899 * gdbserver/linux-low.c (kill_inferior): Remove commented out
2900 code.
2901
fca9e603
DJ
29022002-02-05 Daniel Jacobowitz <drow@mvista.com>
2903
2904 * c-valprint.c (c_val_print): Handle TYPE_CODE_COMPLEX.
2905
6c537a52
DJ
29062002-02-05 Daniel Jacobowitz <drow@mvista.com>
2907
2908 * gdbserver/linux-low.c: Remove unused include files.
2909
d844cde6
DJ
29102002-02-05 Daniel Jacobowitz <drow@mvista.com>
2911
2912 * gdbserver/linux-low.c: Define PTRACE_ARG3_TYPE.
2913 (read_inferior_memory): Use it.
2914 (write_inferior_memory): Likewise.
2915
d07c63e7
DJ
29162002-02-05 Daniel Jacobowitz <drow@mvista.com>
2917
2918 * gdbserver/linux-low.c (create_inferior): Call strerror instead of
2919 grubbing through sys_errlist.
2920
da6d8c04
DJ
29212002-02-05 Daniel Jacobowitz <drow@mvista.com>
2922
2923 * gdbserver/linux-low.c: New file, copied exactly from low-linux.c.
2924
5b421780
PM
29252002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
2926 * win32-nat.c (handle_exception): Handle Ctrl-Break exception.
2927
9f60d481
AC
29282002-02-04 Andrew Cagney <ac131313@redhat.com>
2929
2930 * cli/cli-decode.c (do_cfunc, set_cmd_cfunc): New functions.
2931 (do_sfunc, set_cmd_sfunc): New functions.
2932
2933 * command.h (struct cmd_list_element): Add field func.
2934 * cli/cli-decode.h (struct cmd_list_element): Ditto.
2935 * command.h (set_cmd_sfunc, set_cmd_cfunc): Declare.
2936 * cli/cli-decode.h: Ditto.
2937
2938 * cli/cli-decode.c (help_cmd): Test for func not cfunc/sfunc.
2939 (help_all, help_cmd_list): Ditto.
2940 (find_cmd, complete_on_cmdlist): Ditto.
2941 * top.c (execute_command): Ditto.
2942
2943 * cli/cli-setshow.c (do_setshow_command): Call func instead of
2944 function.sfunc.
2945
2946 * infcmd.c (notice_args_read): Fix function signature.
2947
2948 * cli/cli-cmds.c (init_cli_cmds): Use set_cmd_sfunc.
2949 * cli/cli-decode.c (add_set_cmd): Ditto.
2950 * utils.c (initialize_utils): Ditto.
2951 * maint.c (_initialize_maint_cmds): Ditto.
2952 * infrun.c (_initialize_infrun): Ditto.
2953 * demangle.c (_initialize_demangler): Ditto.
2954 * remote.c (add_packet_config_cmd): Ditto.
2955 * mips-tdep.c (_initialize_mips_tdep): Ditto.
2956 * cris-tdep.c (_initialize_cris_tdep): Ditto.
2957 * proc-api.c (_initialize_proc_api): Ditto.
2958 * kod.c (_initialize_kod): Ditto.
2959 * valprint.c (_initialize_valprint): Ditto.
2960 * top.c (init_main): Ditto.
2961 * infcmd.c (_initialize_infcmd): Ditto.
2962 * corefile.c (_initialize_core): Ditto.
2963 * arm-tdep.c (_initialize_arm_tdep): Ditto.
2964 * arch-utils.c (initialize_current_architecture): Ditto.
2965 (_initialize_gdbarch_utils): Ditto.
2966 * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
2967
2968 * cli/cli-decode.c (add_cmd): Use set_cmd_cfunc.
2969 * wince.c (_initialize_inftarg): Ditto.
2970 * symfile.c (_initialize_symfile): Ditto.
2971 * mips-tdep.c (_initialize_mips_tdep): Ditto.
2972 * language.c (_initialize_language): Ditto.
2973 * arc-tdep.c (_initialize_arc_tdep): Ditto.
2974
f9ba0717
MS
29752002-02-04 Michael Snyder <msnyder@redhat.com>
2976
2977 * memattr.c (_initialize_mem): Elaborate the help for 'mem' command.
2978
0c74b2a7
DJ
29792002-02-04 Daniel Jacobowitz <drow@mvista.com>
2980
2981 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS.
2982 Add rules for building the register data files.
2983
c638789f
DJ
29842002-02-04 Daniel Jacobowitz <drow@mvista.com>
2985
2986 * regformats/regdat.sh: Add braces to the definition of
2987 expedite_regs_${arch}.
2988
db253027
DJ
29892002-02-04 Daniel Jacobowitz <drow@mvista.com>
2990
2991 * regformats/regdef.h (struct reg): Add comment describing the
2992 requirements for offset and size fields.
2993
206be19c
AS
29942002-02-04 Andreas Schwab <schwab@suse.de>
2995
2996 * config/ia64/linux.mh: Don't set NAT_CLIBS and REGEX.
2997 * config/ia64/linux.mt: Don't set GDBSERVER_LIBS.
2998
181c1381
RE
29992002-02-04 Richard Earnshaw <rearnsha@arm.com>
3000
3001 * gdbarch.sh (copyright): Update years in generated header.
3002 (SMASH_TEXT_ADDRESS): Add rule.
db253027 3003 * gdbarch.h, gdbarch.c: Re-generate.
181c1381
RE
3004 * coffread.c: Multi-arch uses of SMASH_TEXT_ADDRESS.
3005 * dbxread.c: Likewise.
3006 * dwarfread.c: Likewise.
3007 * elfread.c: Likewise.
3008 * somread.c: Likewise.
3009
3010 * arm-tdep.c (arm_smash_text_address): New function.
3011 * config/arm/tm-arm.h (SMASH_TEXT_ADDRESS): Define in terms of above.
3012
fa4ba8da
PM
30132002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
3014
3015 Add support for hardware watchpoints on win32 native.
aaa38bb5 3016 * win32-nat.c (CONTEXT_DEBUG_DR macro): Add use of
fa4ba8da 3017 CONTEXT_DEBUG_REGISTERS.
aaa38bb5 3018 (dr variable): New variable. Static array containing a local copy
fa4ba8da
PM
3019 of debug registers.
3020 (debug_registers_changed): New variable. Reflects when debug registers
3021 are changed and need to be written to inferior.
aaa38bb5 3022 (debug_registers_used): New variable. Reflects when any debug register
fa4ba8da
PM
3023 was set, used when new threads are created.
3024 (cygwin_set_dr, cygwin_set_dr7, cygwin_get_dr6): New functions used by
3025 i386-nat code.
3026 (thread_rec): Set dr array if id is the thread of current_event .
3027 (child_continue, child_resume): Change the debug registers for all
3028 threads if debug_registers_changed.
3029 (child_add_thread): Change the debug registers if debug_registers_used.
3030 * config/i386/cygwin.mh: Add use of i386-nat.o file.
3031 Link nm.h to new nm-cygwin.h file.
3032 + config/i386/nm-cygwin.h: New file. Contains the macros used for use
3033 of hardware registers.
3034
a73c86fb
AC
30352002-02-03 Andrew Cagney <ac131313@redhat.com>
3036
3037 * valprint.c (print_floating): Allow non TYPE_CODE_FLT types.
3038 Restore behavour broken by 2002-01-20 Andrew Cagney
3039 <ac131313@redhat.com> IEEE_FLOAT removal.
3040
acf5ed49
DJ
30412002-02-03 Daniel Jacobowitz <drow@mvista.com>
3042
3043 * c-valprint.c (c_val_print): Pass a proper valaddr to
3044 cp_print_class_method.
3045 * valops.c (search_struct_method): If there is only one method
3046 and args is NULL, return that method.
3047
493d28d5
DJ
30482002-02-03 Daniel Jacobowitz <drow@mvista.com>
3049
3050 * gdbtypes.c (init_simd_type): Use TYPE_TAG_NAME instead of
3051 accessing tag_name directly.
3052
7495dfdb
DJ
30532002-02-03 Daniel Jacobowitz <drow@mvista.com>
3054
3055 * ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
3056 of accessing tag_name directly.
3057
dd6bda65
DJ
30582002-02-03 Daniel Jacobowitz <drow@mvista.com>
3059
3060 PR gdb/280
3061 * gdbtypes.c (replace_type): New function.
3062 * gdbtypes.h (replace_type): Add prototype.
3063 * stabsread.c (read_type): Use replace_type.
3064
88fe217c
RE
30652002-02-03 Richard Earnshaw <rearnsha@arm.com>
3066
3067 * Makefile.in (memattr.o): Add missing dependencies rule.
3068
e5d66720
PS
30692002-02-03 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
3070
3071 * breakpoint.c (break_at_finish_command): Really export.
3072 (break_at_finish_at_depth_command): Ditto.
3073 (tbreak_at_finish_command): Ditto.
3074 * hppa-tdep.c: Include completer.h.
3075 * Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
3076 (COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
3077
fffee0be
AC
30782002-02-01 Andrew Cagney <ac131313@redhat.com>
3079
3080 * utils.c (do_write): New function.
3081 (error_stream): Rewrite combining the code from error_begin and
3082 verror.
3083 (verror): Rewrite using error_stream.
3084 (error_begin): Delete function.
3085
255e7dbf
AC
30862002-02-01 Andrew Cagney <ac131313@redhat.com>
3087
3088 * utils.c (error_begin): Make static.
3089 * defs.h (error_begin): Delete declaration.
3090
3091 * linespec.c (cplusplus_error): Replace cplusplus_hint.
3092 (decode_line_1): Use cplusplus_error instead of error_begin,
3093 cplusplus_hint and return_to_top_level.
3094 * coffread.c (coff_symfile_read): Use error instead of error_begin
3095 and return_to_top_level.
3096 * infrun.c (default_skip_permanent_breakpoint): Ditto.
3097
ddfe3c15
AC
30982002-02-01 Andrew Cagney <ac131313@redhat.com>
3099
3100 * language.h (type_error, range_error): Make string parameter
3101 constant.
3102 * language.c (warning_pre_print): Delete extern declaration.
3103 * dwarfread.c (warning_pre_print): Ditto.
3104 * language.c (type_error, range_error): Rewrite to use verror and
3105 vwarning instead of warning_begin.
3106
03ac34d5
MS
31072002-02-01 Michael Snyder <msnyder@redhat.com>
3108
261c4ca2
MS
3109 * breakpoint.c (breakpoint_re_set): Delete ancient #if 0 code.
3110 (set_ignore_count): Move misplaced comment back where it belongs.
03ac34d5 3111
e00d1dc8
AC
31122002-02-01 Andrew Cagney <ac131313@redhat.com>
3113
3114 * command.h (NO_FUNCTION): Delete macro.
3115 * cli/cli-decode.h (NO_FUNCTION): Ditto.
3116 * top.c (execute_command): Replace NO_FUNCTION with NULL.
3117 * tracepoint.c (_initialize_tracepoint): Ditto.
3118 * cli/cli-decode.c (add_set_cmd): Ditto.
3119 * cli/cli-cmds.c (init_cli_cmds): Ditto.
aaa38bb5 3120
76b79d6e
DJ
31212002-02-01 Daniel Jacobowitz <drow@mvista.com>
3122
3123 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Update comments.
3124 Update ``this'' pointer when calling virtual functions.
3125
799f9e91
MS
31262002-02-01 Michael Snyder <msnyder@redhat.com>
3127
c7bd442c 3128 * breakpoint.c (create_temp_exception_breakpoint): Delete.
799f9e91
MS
3129 * hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
3130
3cf384d4
DJ
31312002-02-01 Daniel Jacobowitz <drow@mvista.com>
3132
3133 * regformats/reg-arm.dat: New file.
3134 * regformats/reg-i386.dat: New file.
3135 * regformats/reg-ia64.dat: New file.
3136 * regformats/reg-m68k.dat: New file.
3137 * regformats/reg-mips.dat: New file.
3138 * regformats/reg-ppc.dat: New file.
3139 * regformats/reg-sh.dat: New file.
3140 * regformats/regdef.h: New file.
3141 * regformats/regdat.sh: New file.
3142
0defa245
RE
31432002-02-01 Richard Earnshaw <reanrsha@arm.com>
3144
3145 * arm-tdep.c (arm_frameless_function_invocation): Add some comments.
3146 (arm_frame_args_address, arm_frame_locals_address): New functions.
3147 (arm_frame_num_args): New function.
3148 * config/tm-arm.h (FRAME_ARGS_ADDRESS): Call arm_frame_args_address.
3149 (FRAME_LOCALS_ADDRESS): Call arm_frame_locals_address.
3150 (FRMA_NUM_ARGS): Call arm_frame_num_args.
3151
405f26e6
MS
31522002-01-31 Michael Snyder <msnyder@redhat.com>
3153
502fd408
MS
3154 * breakpoint.c (break_at_finish_command): Export.
3155 (break_at_finish_at_depth_command): Export.
3156 (tbreak_at_finish_command): Export.
3157 (_initialize_breakpoint): Delete "xbreak" and "tbreak" commands.
3158 * hppa-tdep.c (_initialize_hppa_tdep): Add "xbreak" and
3159 "tbreak" commands, which are HPPA specific.
3160
7d35e135
MS
3161 * printcmd.c (disassemble_command): Remove an ancient
3162 artifact of an old merge.
3163
aaa38bb5 3164 * symfile.h (enum overlay_debugging_state):
d874f1e2
MS
3165 Define enum constant values for overlay mode.
3166 * symfile.c (overlay_debugging): Use enums instead of literals.
aaa38bb5
AJ
3167 (overlay_is_mapped, overlay_auto_command,
3168 overlay_manual_command): Ditto.
d874f1e2 3169
aaa38bb5
AJ
3170 * breakpoint.c (insert_breakpoints, remove_breakpoint,
3171 breakpoint_here_p, breakpoint_inserted_here_p,
3172 breakpoint_thread_match, bpstat_stop_status,
9f04af04
MS
3173 describe_other_breakpoints, check_duplicates, clear_command):
3174 Coding standard fixes.
3175
8add0441 3176 * target.c (target_xfer_memory): Add spaces, coding standard.
9f04af04 3177 (do_xfer_memory): Add missing line to trust-readonly
405f26e6
MS
3178 code: check bfd SEC_READONLY flag for section.
3179
e351066e
AC
31802002-01-31 Andrew Cagney <ac131313@redhat.com>
3181
7d35e135 3182 * PROBLEMS: Fix typo, 5.1->5.1.1.
e351066e 3183
8a48e967
DJ
31842002-01-30 Daniel Jacobowitz <drow@mvista.com>
3185
3186 * symtab.c (find_pc_sect_psymtab): Do not search psymtabs for
3187 data symbols, since we search based on textlow and texthigh.
3188 (find_pc_sect_symtab): Likewise.
3189
f5a96129
AC
31902002-01-30 Andrew Cagney <ac131313@redhat.com>
3191
3192 * defs.h (vwarning): Declare.
f5a96129
AC
3193 * utils.c (vwarning): New function.
3194 (warning): Call vwarning.
3195 (warning_begin): Delete function.
3196
3197 * rs6000-nat.c (vmap_ldinfo): Use the function warning to print
3198 the warning message.
3199 * d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
3200 warning_begin.
3201
cefd4ef5
MS
32022002-01-30 Michael Snyder <msnyder@redhat.com>
3203
1a703748
MS
3204 * NEWS: Mention "set trust-readonly-sections" command.
3205 Mention generate-core-file command.
cefd4ef5 3206
3a11626d
MS
32072002-01-15 Michael Snyder <msnyder@redhat.com>
3208
3209 * target.c: New command, "set trust-readonly-sections on".
3210 (do_xfer_memory): Honor the suggestion to trust readonly sections
3211 by reading them from the object file instead of from the target.
3212 (initialize_targets): Register command "set trust-readonly-sections".
3213
d1c7e53b
AC
32142002-01-29 Andrew Cagney <ac131313@redhat.com>
3215
3216 * parse.c (target_map_name_to_register): Simplify, search regs and
3217 pseudo-regs using a single loop.
3218
e2c9a72c
AC
32192002-01-30 Andrew Cagney <ac131313@redhat.com>
3220
3221 * PROBLEMS: Note that the i386 fix was missing from 5.1.1.
3222
69824b4e
MK
32232002-01-15 Rodney Brown <rbrown64@csc.com.au>
3224
3225 * config/i386/tm-i386v4.h: Define HAVE_I387_REGS.
3226 * config/i386/i386v42mp.mh: Add i387-nat.o .
3227 * i386v4-nat.c: Include i387-nat.h.
3228 (supply_fpregset): Use i387_supply_fsave.
3229 (fill_fpregset): Use i387_fill_fsave.
3230
6eb69eab
RE
32312002-01-30 Richard Earnshaw <rearnsha@arm.com>
3232
3233 * arm-tdep.c (arm_call_dummy_words): Define.
3234 * arm-linux-tdep.c (arm_linux_call_dummy_words): Define.
3235 * config/arm/tm-arm.h (CALL_DUMMY_P): Define.
3236 (CALL_DUMMY_WORDS): Define.
3237 (arm_call_dummy_words): Declare.
3238 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Define.
3239 (arm_linux_call_dummy_words): Declare.
3240
9852326a
AS
32412002-01-30 Andreas Schwab <schwab@suse.de>
3242
3243 * m68klinux-nat.c: Fix last change to use regcache_collect
3244 instead of referencing registers[] directly.
3245
977a3030
AC
32462002-01-29 Andrew Cagney <ac131313@redhat.com>
3247
3248 * parse.c (target_map_name_to_register): Delete code wrapped in
3249 #ifdef REGISTER_NAME_ALIAS_HOOK.
3250
2076c72b
MS
32512002-01-28 Michael Snyder <msnyder@redhat.com>
3252
3253 * regcache.c (legacy_read_register_gen): Need to be able to
3254 read pseudo-register as well as real register.
3255 (legacy_write_register_gen): Ditto.
3256
8fcc723b
AC
32572002-01-28 Andrew Cagney <ac131313@redhat.com>
3258
3259 * config/mips/tm-wince.h (TARGET_BYTE_ORDER): Delete.
3260 * config/sparc/tm-sparc.h (TARGET_BYTE_ORDER): Delete.
3261 * config/ns32k/tm-umax.h (TARGET_BYTE_ORDER): Delete.
3262 * config/ia64/tm-ia64.h (TARGET_BYTE_ORDER): Delete.
3263 * config/m32r/tm-m32r.h (TARGET_BYTE_ORDER): Delete.
3264 * config/m68k/tm-m68k.h (TARGET_BYTE_ORDER): Delete.
3265 * config/m88k/tm-m88k.h (TARGET_BYTE_ORDER): Delete.
3266 * config/mn10200/tm-mn10200.h (TARGET_BYTE_ORDER): Delete.
3267 * config/pa/tm-hppa.h (TARGET_BYTE_ORDER): Delete.
3268 * config/sh/tm-wince.h (TARGET_BYTE_ORDER): Delete.
3269 * config/v850/tm-v850.h (TARGET_BYTE_ORDER): Delete.
3270 * config/vax/tm-vax.h (TARGET_BYTE_ORDER): Delete.
3271 * config/z8k/tm-z8k.h (TARGET_BYTE_ORDER): Delete.
3272 * config/i960/tm-i960.h (TARGET_BYTE_ORDER): Delete.
3273 * config/i386/tm-i386.h (TARGET_BYTE_ORDER): Delete.
3274 * config/h8500/tm-h8500.h (TARGET_BYTE_ORDER): Delete.
3275 * config/h8300/tm-h8300.h (TARGET_BYTE_ORDER): Delete.
3276 * config/fr30/tm-fr30.h (TARGET_BYTE_ORDER): Delete.
3277 * config/d30v/tm-d30v.h (TARGET_BYTE_ORDER): Delete.
3278 * config/alpha/tm-alpha.h (TARGET_BYTE_ORDER): Delete.
3279
afe64c1a
AC
32802002-01-28 Andrew Cagney <ac131313@redhat.com>
3281
3282 * arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
3283 (target_byte_order): Initialize to BFD_ENDIAN_BIG.
3284 (initialize_current_architecture): Update target_byte_order using
3285 information from BFD.
aaa38bb5 3286 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
afe64c1a
AC
3287 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
3288
75bc7ddf
AC
32892002-01-28 Andrew Cagney <ac131313@redhat.com>
3290
3291 * config/vax/tm-vax.h (INVALID_FLOAT): Move macro from here...
3292 * vax-tdep.c (INVALID_FLOAT): To here. Document why it is broken.
3293
3294 * rs6000-tdep.c (rs6000_do_registers_info): Delete code wrapped in
3295 #ifdef INVALID_FLOAT.
3296 * infcmd.c (do_registers_info): Ditto.
3297 * values.c (unpack_double): Ditto. Add comment.
3298
3299 * config/ns32k/tm-umax.h (INVALID_FLOAT): Delete macro that was
3300 already commented out.
3301
0280a90a
AS
33022002-01-26 Andreas Schwab <schwab@suse.de>
3303
3304 * config/m68k/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
3305 * m68klinux-nat.c: Update ptrace interface for fetching/storing
3306 registers and add support for PTRACE_GETREGS.
3307
7072a954
AC
33082002-01-24 Andrew Cagney <ac131313@redhat.com>
3309
3310 GDB 5.1.1 released from 5.1 branch.
3311 * NEWS: Add 5.1.1 news.
3312 * README: Sync with 5.1 branch.
3313
86f902e0
FF
33142002-01-23 Fred Fish <fnf@redhat.com>
3315
3316 * mdebugread.c (parse_partial_symbols): Only copy stabstring1 to
3317 stabstring on initial malloc. Reallocing will copy it for us,
3318 if necessary.
3319
8af51c36
EZ
33202002-01-23 Elena Zannoni <ezannoni@redhat.com>
3321
aaa38bb5 3322 * Makefile.in (hpread_h): Delete.
8af51c36
EZ
3323 (HFILES_NO_SRCDIR): Remove hpread.h.
3324 (ALLDEPFILES): Remove hp-psymtab-read.c and hp-symtab-read.c.
3325 (hpread.o): Update dependencies.
3326 (hp-psymtab-read.o, hp-symtab-read.o): Remove.
3327
3328 * hp-psymtab-read.c: Remove file.
3329 * hp-symtab-read.c: Remove file.
3330 * hpread.h: Remove file.
3331
3332 * hpread.c: Merge all contents of hp-psymtab-read.c,
3333 hp-symtab-read.c and hpread.h into this file, as it was prior to
3334 January 1999.
3335
3336 * config/pa/hpux11w.mh, config/pa/hpux11.mh,
aaa38bb5 3337 config/pa/hpux1020.mh, config/pa/hppaosf.mh,
8af51c36
EZ
3338 config/pa/hppahpux.mh, config/pa/hppabsd.mh (NATDEPFILES):
3339 Remove hp-psymtab-read.o and hp-symtab-read.o, add hpread.o.
3340
dc5cfeb6
EZ
33412002-01-23 Elena Zannoni <ezannoni@redhat.com>
3342
3343 * ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
3344 fill_gregset): Call gdbarch_tdep() just once, assign result to
3345 variable and use that, instead of calling the function several
3346 times.
3347
ea87b71b
AO
33482002-01-24 Alexandre Oliva <aoliva@redhat.com>
3349
3350 * configure.host: Accept sparcv9 as alias for sparc64.
3351 * configure.tgt: Likewise.
3352
13fc0c2f
KB
33532002-01-22 Kevin Buettner <kevinb@redhat.com>
3354
3355 * solib-aix5.c (build_so_list_from_mapfile)
3356 (aix5_relocate_main_executable): Fix xcalloc() calls so order of
3357 arguments is not reversed.
3358 * solib-sunos.c (sunos_relocate_main_executable): Likewise.
3359 * solib-svr4.c (svr4_relocate_main_executable): Likewise.
aaa38bb5 3360
7bd872fe
EZ
33612002-01-22 Elena Zannoni <ezannoni@redhat.com>
3362
3363 * sh-tdep.c (sh_pseudo_register_read): New function. Renamed and
3364 modified version of obsolete sh_fetch_pseudo_register.
3365 (sh_fetch_pseudo_register): Rename to sh_pseudo_register_read.
3366 (sh4_register_read): New function.
3367 (sh_pseudo_register_write): New function. Renamed and modified
3368 version of obsolete sh_store_pseudo_register.
3369 (sh_store_pseudo_register): Rename to sh_pseudo_register_write.
3370 (sh4_register_write): New function.
3371 (sh_gdbarch_init): Remove setting of gdbarch function
3372 fetch_pseudo_register and store_pseudo_register. Remove setting of
3373 register_convert_to_raw, register_convert_to_virtual,
3374 register_convertible.
3375 (sh_sh4_register_convertible): Delete. No longer needed. All is
3376 taken care by architecture specific functions
3377 register_read/register_write.
3378 (sh_sh4_register_convert_to_virtual): Make static.
3379 (sh_sh4_register_convert_to_raw): Ditto.
3380
069e84fd
AC
33812002-01-22 Andrew Cagney <ac131313@redhat.com>
3382
3383 * doublest.c (floatformat_is_negative): Assert FMT is non NULL.
3384 (floatformat_is_nan, floatformat_mantissa): Ditto.
3385
3386 * gdbtypes.c (_initialize_gdbtypes): Initialize TYPE_FLOATFORMAT
3387 for builtin_type_ieee_single_little, builtin_type_ieee_double_big,
3388 builtin_type_ieee_double_little,
3389 builtin_type_ieee_double_littlebyte_bigword,
3390 builtin_type_m68881_ext, builtin_type_i960_ext,
3391 builtin_type_m88110_ext, builtin_type_m88110_harris_ext,
3392 builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword,
3393 builtin_type_ia64_spill_big, builtin_type_ia64_spill_little and
3394 builtin_type_ia64_quad_big, builtin_type_ia64_quad_little.
3395
211a4f69
CV
33962002-01-22 Corinna Vinschen <vinschen@redhat.com>
3397
3398 * xstormy16-tdep.c (xstormy16_scan_prologue): Add frameless
3399 parameter. Set frameless flag if it exists and depended of
3400 whether the scanned function is frameless or not.
3401 (xstormy16_skip_prologue): If function is frameless, return
3402 result of xstormy16_scan_prologue().
3403 (xstormy16_frame_init_saved_regs): Adjust xstormy16_scan_prologue()
3404 call.
3405
f81353e4
EZ
34062002-01-21 Elena Zannoni <ezannoni@redhat.com>
3407
3408 * sh-tdep.c (sh_fp_frame_init_saved_regs, sh_push_arguments,
3409 sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
3410 sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs,
3411 sh_sh4_register_byte, sh_sh4_register_raw_size,
3412 sh_sh3e_register_virtual_type, sh_sh4_register_virtual_type,
3413 sh_sh4_register_convertible, sh_sh4_register_convert_to_virtual,
3414 sh_sh4_register_convert_to_raw, sh_fetch_pseudo_register,
3415 sh_store_pseudo_register, sh_do_pseudo_register): Call
3416 gdbarch_tdep() just once, assign result to variable and use that,
3417 instead of calling the function several times.
3418
63c73a17
MK
34192002-01-20 Mark Kettenis <kettenis@gnu.org>
3420
3421 * go32-nat.c (fetch_register): Use FP_REGNUM_P and FPC_REGNUM_P
3422 macros instead of LAST_FPU_CTRL_REGNUM.
3423 (store_register): Likewise.
3424
39ad761d
JB
34252002-01-21 Jim Blandy <jimb@redhat.com>
3426
3427 * infcmd.c (run_command): Check that the `exec' target layer's BFD
3428 is up-to-date before running the program, not just when a program
3429 exits.
3430
3d74b771
FF
34312002-01-21 Fred Fish <fnf@redhat.com>
3432
3433 * arm-tdep.c (thumb_skip_prologue): Quit scanning prologue
3434 when we have found all instructions we are looking for.
3435
966fbf70
RE
34362002-01-21 Richard Earnshaw <rearnsha@arm.com>
3437
3438 * arm-tdep.c (arm_register_name): New function.
3439 (arm_registers_names): Make static.
3440 * config/arm/tm-arm.h (arm_register_names): Delete declaration.
3441 (arm_register_name): Declare.
3442 (REGISTER_NAME): Use it.
3443
c3b4394c
RE
34442002-01-21 Richard Earnshaw <rearnsha@arm.com>
3445 Kevin Buettner <kevinb@redhat.com>
3446
3447 Convert arm targets to new FRAME interface.
3448 * arm-tdep.c (struct frame_extra_info): Remove fsr.
3449 (arm_frame_find_save_regs): Delete.
3450 (arm_frame_init_saved_regs): New.
3451 (arm_init_extra_frame_info): Alloacte saved_regs as required.
3452 Allocate extra_info as required. Convert all uses of fsr.regs
3453 to use saved_regs, similarly all uses of EXTRA_FRAME_INFO fields
3454 to use extra_info.
3455 (thumb_scan_prologue, arm_scan_prologue, arm_find_callers_reg)
3456 (arm_frame_chain, arm_frame_saved_pc, arm_pop_frame): Likewise.
3457 (check_prologue_cache, save_prologue_cache): Likewise.
3458 (_initialize_arm_tdep): Ensure prologue_cache is correctly set up.
3459 * config/arm/tm-arm.h (EXTRA_FRAME_INFO): Delete.
3460 (FRAME_FIND_SAVED_REGS): Delete.
3461 (arm_frame_find_saved_regs): Delete prototype.
3462 (arm_frame_init_saved_regs): New prototype.
3463 (FRAME_INIT_SAVED_REGS): Define.
3464
61d99182
AC
34652002-01-20 Andrew Cagney <ac131313@redhat.com>
3466
3467 * config/arc/tm-arc.h (IEEE_FLOAT): Delete.
3468
6aaea291
AC
34692002-01-20 Andrew Cagney <ac131313@redhat.com>
3470
3471 From Jeff Law <law@redhat.com>:
3472 * infttrace.c: Include <sys/pstat.h>.
3473 (child_pid_to_exec_file): Revamp. Use pstat call to get the
3474 exec file if the ttrace equivalent fails.
3475
15f698d2
AC
34762002-01-20 Andrew Cagney <ac131313@redhat.com>
3477
3478 * rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
3479 (closeLogFile): Ditto.
3480
f86ddd7c
MC
34812002-01-20 Michael Chastain <mec@shout.net>
3482
3483 * top.c (print_gdb_version): Bump copyright year to 2002.
3484
904507ce
AC
34852002-01-20 Andrew Cagney <ac131313@redhat.com>
3486
3487 * MAINTAINERS (Blanket Write Privs): Add Kevin Buettner, Elena
3488 Zannoni and Eli Zaretskii.
3489
d7f0b9ce
DJ
34902002-01-20 Daniel Jacobowitz <drow@mvista.com>
3491
3492 * buildsym.c: Update copyright years.
3493 * c-typeprint.c: Likewise.
3494 * dwarf2read.c: Likewise.
3495 * f-typeprint.c: Likewise.
3496 * gdbtypes.c: Likewise.
3497 * gdbtypes.h: Likewise.
3498 * hp-symtab-read.c: Likewise.
3499 * hpread.c: Likewise.
3500 * mdebugread.c: Likewise.
3501 * p-typeprint.c: Likewise.
3502
3fd3d7d2
AC
35032002-01-20 Andrew Cagney <ac131313@redhat.com>
3504
3505 * remote-sim.c (gdbsim_open): Simplify code testing the macro
3506 TARGET_BYTE_ORDER_SELECTABLE_P. Assume the target is always
3507 byte-order selectable.
3508 * sparc-tdep.c (sparc_target_architecture_hook): Ditto.
3509 * arch-utils.c: Ditto.
3510 (set_endian): Ditto.
3511 (set_endian_from_file): Ditto.
3512 * gdbserver/low-sim.c (create_inferior): Ditto.
3513 * gdbarch.sh: Ditto.
3514 * gdbarch.h: Re-generate.
aaa38bb5
AJ
3515 * config/powerpc/tm-ppc-eabi.h (TARGET_BYTE_ORDER_SELECTABLE_P):
3516 * config/sparc/tm-sparclite.h (TARGET_BYTE_ORDER_SELECTABLE):
3517 * config/sparc/tm-sparclet.h (TARGET_BYTE_ORDER_SELECTABLE):
3518 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_SELECTABLE_P):
3519 * config/arm/tm-wince.h (TARGET_BYTE_ORDER_SELECTABLE_P):
3520 * config/arm/tm-linux.h (TARGET_BYTE_ORDER_SELECTABLE_P):
3521 * config/arc/tm-arc.h (TARGET_BYTE_ORDER_SELECTABLE):
3fd3d7d2
AC
3522 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_SELECTABLE_P): Delete
3523 macro definition.
3524 * config/mips/tm-wince.h: Remove #undef of macro
3525 TARGET_BYTE_ORDER_SELECTABLE.
3526 * config/sh/tm-wince.h: Ditto.
3527
b02dede2
DJ
35282002-01-20 Daniel Jacobowitz <drow@mvista.com>
3529
3530 * gdbtypes.h (struct cplus_struct_type): Add is_artificial to
3531 member function fields. Add accessor macro
3532 TYPE_FN_FIELD_ARTIFICIAL.
3533 * dwarf2read.c (dwarf2_add_member_fn): Check for artificial methods.
3534 * c-typeprint.c (c_type_print_base): Skip artificial member
3535 functions.
3536
c3643761
DJ
35372002-01-20 Daniel Jacobowitz <drow@mvista.com>
3538
3539 * f-typeprint.c: Delete unused function f_type_print_args.
3540 * p-typeprint.c: Delete unused function pascal_type_print_args.
3541
8176bb6d
DJ
35422002-01-20 Daniel Jacobowitz <drow@mvista.com>
3543
3544 * gdbtypes.h (struct type): Fix whitespace. Remove obsolete
3545 comment. Add ``artificial'' to ``union field_location''.
3546
3547 * dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
3548
3549 * buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
3550 * mdebugread.c (parse_symbol): Likewise.
3551 * stabsread.c (define_symbol): Likewise.
3552 * hp-symtab-read.c (hpread_function_type): Likewise, instead of
3553 initializing TYPE_FIELD_BITPOS to n (obsolete).
3554 (hpread_doc_function_type): Likewise.
3555 * hpread.c (hpread_function_type): Likewise.
3556
7fd60527
AC
35572002-01-20 Andrew Cagney <ac131313@redhat.com>
3558
3559 * configure.in (host_makefile_frag): Only require a host makefile
3560 fragment when a native build.
3561 * configure: Re-generate.
3562
c2f05ac9
AC
35632002-01-20 Andrew Cagney <ac131313@redhat.com>
3564
3565 * doublest.h (floatformat_from_type): Declare.
3566 * doublest.c (floatformat_from_type): New function.
3567 (convert_typed_floating): Use.
3568
3569 * valprint.c (print_floating): Replace checks for IEEE_FLOAT with
3570 call to function floatformat_from_type.
3571
3572 * gdbarch.sh (IEEE_FLOAT): Delete.
3573 * gdbarch.h, gdbarch.c: Re-generate.
3574 * config/i960/tm-i960.h (IEEE_FLOAT): Delete macro.
3575 * config/i386/tm-i386.h (IEEE_FLOAT): Ditto.
3576 * config/z8k/tm-z8k.h (IEEE_FLOAT): Ditto.
3577 * config/sparc/tm-sparc.h (IEEE_FLOAT): Ditto.
3578 * config/pa/tm-hppa.h (IEEE_FLOAT): Ditto.
3579 * config/m88k/tm-m88k.h (IEEE_FLOAT): Ditto.
3580 * config/m68k/tm-m68k.h (IEEE_FLOAT): Ditto.
3581 * config/h8500/tm-h8500.h (IEEE_FLOAT): Ditto.
3582 * config/h8300/tm-h8300.h (IEEE_FLOAT): Ditto.
3583 * config/fr30/tm-fr30.h (IEEE_FLOAT): Ditto.
3584 * config/arm/tm-arm.h (IEEE_FLOAT): Ditto.
c2f05ac9
AC
3585 * config/alpha/tm-alpha.h (IEEE_FLOAT): Ditto.
3586
3587 * s390-tdep.c (s390_gdbarch_init): Do not set ieee_float.
3588 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
3589 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
3590 * sh-tdep.c (sh_gdbarch_init): Ditto.
3591 * mips-tdep.c (mips_gdbarch_init): Ditto.
3592 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
3593 * cris-tdep.c (cris_gdbarch_init): Ditto.
3594
abf22e64
AJ
35952002-01-20 Jiri Smid <smid@suse.cz>
3596
3597 * configure.host, configure.tgt: Support x86-64.
3598 * NEWS: Note new target x86-64.
3599
b7c4cbf8
AJ
3600 * config/i386/x86-64linux.mh (NATDEPFILES): x86-64-nat.o removed.
3601 * x86-64-linux-nat.c (x86_64_register_u_addr): New function.
3602 * config/i386/nm-x86-64.h (ATTACH_LWP): Removed.
3603 * Makefile.in (x86-64-tdep.o, x86-64-linux-tdep.o,
3604 x86-64-linux-nat.o): Fix dependencies.
3605
82600034
AC
36062002-01-19 Andrew Cagney <ac131313@redhat.com>
3607
3608 * utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
3609 * config/sparc/xm-sun4os4.h (PTRACE_ARG3_TYPE): Move macro ....
3610 * config/sparc/nm-sun4os4.h (PTRACE_ARG3_TYPE): ... to here.
3611 * config/sparc/xm-sun4os4.h: Delete file.
3612 * config/sparc/sun4os4.mh (XM_FILE): Delete makefile variable.
abf22e64 3613
bbe5c628
AC
36142002-01-19 Andrew Cagney <ac131313@redhat.com>
3615
3616 * config/sparc/sparclynx.mh (XM_FILE): Delete.
3617 * config/rs6000/rs6000lynx.mh (XM_FILE): Delete.
3618 * config/m68k/m68klynx.mh (XM_FILE): Delete.
3619 * config/i386/i386lynx.mh (XM_FILE): Delete.
3620 * config/rs6000/xm-rs6000ly.h: Delete file.
3621 * config/sparc/xm-sparclynx.h: Delete file.
3622 * config/m68k/xm-m68klynx.h: Delete file.
3623 * config/i386/xm-i386lynx.h: Delete file.
3624 * config/xm-lynx.h: Delete file.
3625 * config/djgpp/fnchange.lst: Update.
3626
f8453e34
JT
36272002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
3628
3629 * alpha-tdep.c (alpha_register_byte): New function.
3630 (alpha_register_raw_size): Ditto.
3631 (alpha_register_virtual_size): Ditto.
3632 (alpha_skip_prologue_internal): Renamed from
3633 alpha_skip_prologue.
3634 (alpha_skip_prologue): New version that calls
3635 alpha_skip_prologue_internal.
3636 (alpha_in_lenient_prologue): Use alpha_skip_prologue_internal.
3637 * config/alpha/tm-alpha.h (SKIP_PROLOGUE): Remove
3638 second argument from alpha_skip_prologue.
3639 (REGISTER_BYTE): Use alpha_register_byte.
3640 (REGISTER_RAW_SIZE): Use alpha_register_raw_size.
3641 (REGISTER_VIRTUAL_SIZE): Use alpha_register_virtual_size.
3642 (FRAMELESS_FUNCTION_INVOCATION): Use
3643 generic_frameless_function_invocation_not.
3644 (FRAME_NUM_ARGS): Use frame_num_args_unknown.
3645 (COERCE_FLOAT_TO_DOUBLE): Use standard_coerce_float_to_double.
3646
52d9e613
AC
36472002-01-19 Andrew Cagney <ac131313@redhat.com>
3648
3649 * config/mips/xm-news-mips.h: Delete file.
3650 * config/mips/news-mips.mh (XM_FILE): Delete makefile variable.
3651
3652 * config/m88k/xm-m88k.h: Delete file.
3653 * config/m88k/xm-dgux.h: Do not include xm-m88k.h.
3654 * config/m88k/xm-delta88v4.h: Ditto.
3655 * config/m88k/xm-delta88.h: Ditto.
3656
3657 * config/alpha/xm-fbsd.h: Delete file.
3658 * config/alpha/fbsd.mh (XM_FILE): Delete makefile variable.
3659
3660 * config/sparc/xm-sparc.h: Delete file.
3661 * Makefile.in (xm-sun4os4.h): Delete dependency.
3662 * config/sparc/xm-sun4sol2.h: Do not include xm-sparc.h.
3663 * config/sparc/xm-sun4os4.h: Ditto.
3664 * config/sparc/xm-linux.h: Ditto.
3665
3666 * config/i386/xm-windows.h: Delete file.
3667
2d1b2124
AC
36682002-01-19 Andrew Cagney <ac131313@redhat.com>
3669
3670 * utils.c: Include <sys/param.h> for MAXPATHLEN.
3671 (gdb_realpath): Use MAXPATHLEN when PATH_MAX is not defined.
3672
ee1f65f0
JT
36732002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
3674
3675 * alpha-tdep.c (alpha_call_dummy_words): New.
3676 * config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
3677 (CALL_DUMMY_P): Define.
3678 (CALL_DUMMY_WORDS): Define.
3679 (SIZEOF_CALL_DUMMY_WORDS): Define.
3680
98081e55
PB
36812002-01-19 Per Bothner <per@bothner.com>
3682
3683 * gnu-v3-abi.c (gnuv3_rtti_type): Guard that vtable_symbol_name
3684 isn't NULL, which can happen with some gcj-3.x-produced code.
3685
0d056799
JT
36862002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
3687
3688 * alpha-tdep.c (alpha_register_virtual_type): New function.
3689 (alpha_init_frame_pc_first): Ditto.
3690 (alpha_fix_call_dummy): Ditto.
3691 (alpha_store_struct_return): Ditto.
3692 (alpha_extract_struct_value_address): Ditto.
3693 * config/alpha/tm-alpha.h (REGISTER_VIRTUAL_TYPE): Use
3694 alpha_register_virtual_type.
3695 (STORE_STRUCT_RETURN): Use alpha_store_struct_return.
3696 (EXTRACT_STRUCT_VALUE_ADDRESS): Use
3697 alpha_extract_struct_value_address.
3698 (FIX_CALL_DUMMY): Use alpha_fix_call_dummy.
3699 (INIT_FRAME_PC): Use init_frame_pc_noop.
3700 (INIT_FRAME_PC_FIRST): Use alpha_init_frame_pc_first.
3701
4604bcad
MK
37022002-01-19 Mark Kettenis <kettenis@gnu.org>
3703
3704 * i386gnu-nat.c: Include "i386-tdep.h".
3705 (fetch_fpregs): Simplify code dealing with uninitialized floating
3706 point states such that it doesn't require FP7_REGNUM.
3707
140f9984
JT
37082002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
3709
abf22e64
AJ
3710 * alpha-tdep.c (frame_extra_info): New.
3711 (alpha_find_saved_regs): Make static. Use
140f9984
JT
3712 frame->extra_info.
3713 (alpha_frame_init_saved_regs): New function.
abf22e64
AJ
3714 (alpha_frame_saved_pc): Use frame->extra_info.
3715 (temp_saved_regs): Don't declare as struct frame_saved_regs.
3716 (heuristic_proc_desc): Adjust for temp_saved_regs changes.
140f9984
JT
3717 (init_extra_frame_info): Rename to...
3718 (alpha_init_extra_frame_info): ...this. Use frame->extra_info.
abf22e64 3719 (alpha_print_extra_frame_info): New function.
140f9984
JT
3720 (alpha_frame_locals_address): Ditto.
3721 (alpha_frame_args_address): Ditto.
abf22e64 3722 (alpha_pop_frame): Use frame->extra_info.
140f9984
JT
3723 * config/alpha/tm-alpha.h (FRAME_ARGS_ADDRESS): Use
3724 alpha_frame_args_address.
abf22e64 3725 (FRAME_LOCALS_ADDRESS): Use alpha_frame_locals_address.
140f9984 3726 (alpha_find_saved_regs): Remove prototype.
abf22e64
AJ
3727 (FRAME_INIT_SAVED_REGS): Use alpha_frame_init_saved_regs.
3728 (EXTRA_FRAME_INFO): Remove.
140f9984
JT
3729 (INIT_EXTRA_FRAME_INFO): Use alpha_init_extra_frame_info.
3730 (PRINT_EXTRA_FRAME_INFO): Use alpha_print_extra_frame_info.
3731
d734c450
JT
37322002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
3733
3734 * alpha-tdep.c (alpha_osf_in_sigtramp): New function.
3735 (alpha_cannot_fetch_register): Ditto.
3736 (alpha_cannot_store_register): Ditto.
3737 (alpha_register_convertible): Ditto.
3738 (alpha_use_struct_convention): Ditto.
3739 * config/alpha/tm-alpha.h: Update copyright years.
3740 (IN_SIGTRAMP): Use alpha_osf_in_sigtramp.
3741 (INNER_THAN): Use core_addr_lessthan.
3742 (CANNOT_FETCH_REGISTER): Use alpha_cannot_fetch_register.
3743 (CANNOT_STORE_REGISTER): Use alpha_cannot_store_register.
3744 (REGISTER_CONVERTIBLE): Use alpha_register_convertible.
3745 (USE_STRUCT_CONVENTION): Use alpha_use_struct_convention.
3746 (FRAME_CHAIN): Remove unnecessary cast.
3747
b4ceaee6
AC
37482002-01-18 Andrew Cagney <ac131313@redhat.com>
3749
3750 * NEWS: Document that testsuite/gdb.hp/gdb.threads-hp/ is
3751 obsolete.
3752
0a65a603
AC
37532002-01-18 Andrew Cagney <ac131313@redhat.com>
3754
3755 * infptrace.c: Remove ATTRIBUTE_UNUSED. Update copyright.
3756 * monitor.c, remote-array.c, remote-bug.c: Ditto.
3757 * remote-e7000.c, remote-es.c, remote-mips.c: Ditto.
3758 * remote-nindy.c, remote-os9k.c, remote-rdi.c: Ditto.
3759 * remote-rdp.c, remote-sds.c, remote-sim.c: Ditto.
3760 * remote-st.c, remote-vx.c, remote.c, win32-nat.c: Ditto.
3761 * x86-64-linux-nat.c: Ditto.
3762
636a6dfc
JT
37632002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
3764
abf22e64 3765 * alpha-tdep.c (alpha_register_name): New function.
636a6dfc
JT
3766 * config/alpha/tm-alpha.h (REGISTER_NAMES): Remove.
3767 (REGISTER_NAME): Define.
3768
acceddb6
JT
37692002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
3770
3771 * config/nm-nbsd.h (KERNEL_U_ADDR): Remove.
3772
ec32e4be
JT
37732002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
3774
3775 * alpha-tdep.c: Update copyright years.
3776 (alpha_next_pc): New function.
3777 (alpha_software_single_step): Ditto.
3778 * config/alpha/tm-alpha.h: Add prototype for
3779 alpha_software_single_step.
3780
e771a871
JT
37812002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
3782
3783 * alphabsd-nat.c: Update copyright years.
3784 (fill_gregset): Use regcache_collect.
3785 (fill_fpregset): Likewise.
3786 (fetch_inferior_registers): Only fetch integer registers
3787 if requested to do so.
3788 (store_inferior_registers): Only store integer registers
3789 if requested to do so.
3790
7708fa01
AC
37912002-01-17 Andrew Cagney <ac131313@redhat.com>
3792
3793 * config/alpha/alpha-osf3.mh (XDEPFILES): Delete.
3794 * config/alpha/alpha-osf2.mh (XDEPFILES): Delete.
3795 * config/alpha/alpha-osf1.mh (XDEPFILES): Delete.
3796 * config/alpha/alpha-linux.mh (XDEPFILES): Delete.
3797 * config/alpha/fbsd.mh (XDEPFILES): Delete.
3798 * config/arm/linux.mh (XDEPFILES): Delete.
3799 * config/arm/nbsd.mh (XDEPFILES): Delete.
3800 * config/i386/i386dgux.mh (XDEPFILES): Delete.
3801 * config/i386/i386sol2.mh (XDEPFILES): Delete.
3802 * config/i386/i386m3.mh (XDEPFILES): Delete.
3803 (NATDEPFILES): Move i387-tdep.o and core-aout.o to here.
3804 * config/i386/i386gnu.mh (XDEPFILES): Delete.
3805 * config/i386/fbsd.mh (XDEPFILES): Delete.
3806 * config/i386/i386bsd.mh (XDEPFILES): Delete.
3807 * config/i386/i386sco5.mh (XDEPFILES): Delete.
3808 * config/i386/i386v4.mh (XDEPFILES): Delete.
3809 * config/i386/i386v42mp.mh (XDEPFILES): Delete.
3810 * config/i386/i386sco4.mh (XDEPFILES): Delete.
3811 * config/i386/i386aix.mh (XDEPFILES): Delete.
3812 * config/i386/go32.mh (XDEPFILES): Delete.
3813 * config/i386/cygwin.mh (XDEPFILES): Delete.
3814 * config/i386/i386lynx.mh (XDEPFILES): Delete.
3815 * config/i386/i386mach.mh (XDEPFILES): Delete.
3816 * config/i386/i386v32.mh (XDEPFILES): Delete.
3817 * config/i386/linux.mh (XDEPFILES): Delete.
3818 * config/i386/nbsdelf.mh (XDEPFILES): Delete.
3819 * config/i386/ncr3000.mh (XDEPFILES): Delete.
3820 * config/i386/i386mk.mh (NATDEPFILES): Rename XDEPFILES.
3821 * config/i386/i386sco.mh (XDEPFILES): Delete.
3822 * config/i386/i386v.mh (XDEPFILES): Delete.
3823 * config/i386/nbsd.mh (XDEPFILES): Delete.
3824 * config/i386/ptx.mh (NATDEPFILES): Rename XDEPFILES.
3825 * config/i386/ptx4.mh (NATDEPFILES): Rename XDEPFILES.
3826 * config/i386/symmetry.mh (XDEPFILES): Delete.
3827 * config/i386/obsd.mh (XDEPFILES): Delete.
3828 * config/i386/x86-64linux.mh (XDEPFILES): Delete.
3829 * config/ia64/linux.mh (XDEPFILES): Delete.
3830 * config/ia64/aix.mh (XDEPFILES): Delete.
3831 * config/m68k/apollo68b.mh (XDEPFILES): Delete.
3832 * config/m68k/dpx2.mh (XDEPFILES): Delete.
3833 * config/m68k/3b1.mh (NATDEPFILES): Rename XDEPFILES.
3834 * config/m68k/apollo68v.mh (XDEPFILES): Delete.
3835 * config/m68k/hp300bsd.mh (XDEPFILES): Delete.
3836 * config/m68k/linux.mh (XDEPFILES): Delete.
3837 * config/m68k/m68klynx.mh (XDEPFILES): Delete.
3838 * config/m68k/m68kv4.mh (XDEPFILES): Delete.
3839 * config/m68k/nbsd.mh (XDEPFILES): Delete.
3840 * config/m68k/sun2os3.mh (XDEPFILES): Delete.
3841 * config/m68k/sun2os4.mh (XDEPFILES): Delete.
3842 * config/m68k/sun3os3.mh (XDEPFILES): Delete.
3843 * config/m68k/sun3os4.mh (XDEPFILES): Delete.
3844 * config/m88k/delta88.mh (XDEPFILES): Delete.
3845 * config/m88k/delta88v4.mh (XDEPFILES): Delete.
3846 * config/m88k/m88k.mh (XDEPFILES): Delete.
3847 * config/mips/littlemips.mh (NATDEPFILES): Rename XDEPFILES.
3848 * config/mips/linux.mh (XDEPFILES): Delete.
3849 * config/mips/irix6.mh (XDEPFILES): Delete.
3850 * config/mips/irix5.mh (XDEPFILES): Delete.
3851 * config/mips/irix4.mh (XDEPFILES): Delete.
3852 * config/mips/irix3.mh (XDEPFILES): Delete.
3853 * config/mips/decstation.mh (XDEPFILES): Delete.
3854 * config/mips/mipsm3.mh (XDEPFILES): Delete.
3855 (NATDEPFILES): Move core-aout.o to here.
3856 * config/ns32k/nbsd.mh (XDEPFILES): Delete.
3857 * config/pa/hpux1020.mh (XDEPFILES): Delete.
3858 * config/pa/hppabsd.mh (XDEPFILES): Delete.
3859 * config/pa/hppahpux.mh (XDEPFILES): Delete.
3860 * config/pa/hpux11w.mh (XDEPFILES): Delete.
3861 * config/pa/hppaosf.mh (XDEPFILES): Delete.
3862 * config/pa/hpux11.mh (XDEPFILES): Delete.
3863 * config/powerpc/aix.mh (XDEPFILES): Delete.
3864 * config/powerpc/nbsd.mh (XDEPFILES): Delete.
3865 * config/powerpc/linux.mh (XDEPFILES): Delete.
3866 * config/romp/rtbsd.mh: Rename XDEPFILES.
3867 * config/rs6000/rs6000lynx.mh (XDEPFILES): Delete.
3868 * config/rs6000/aix4.mh (XDEPFILES): Delete.
3869 * config/rs6000/rs6000.mh (XDEPFILES): Delete.
3870 * config/s390/s390.mh (XDEPFILES): Delete.
3871 * config/vax/vaxbsd.mh (NATDEPFILES): Rename XDEPFILES.
3872 * config/sparc/sun4sol2.mh (XDEPFILES): Delete.
3873 * config/sparc/sun4os4.mh (XDEPFILES): Delete.
3874 * config/sparc/sparclynx.mh (XDEPFILES): Delete.
3875 * config/sparc/nbsdelf.mh (XDEPFILES): Delete.
3876 * config/sparc/nbsd.mh (XDEPFILES): Delete.
3877 * config/sparc/linux.mh (XDEPFILES): Delete.
3878 * config/vax/vaxult.mh (XDEPFILES): Delete.
3879 * config/vax/vaxult2.mh (XDEPFILES): Delete.
3880 * Makefile.in (DEPFILES): Remove XDEPFILES.
3881
375fc983
AC
38822002-01-17 Andrew Cagney <ac131313@redhat.com>
3883
3884 * utils.c (internal_verror): Fix comments, default is yes not no.
3885 Update queries to match. Default to quit and dump core.
3886
8926118c
AC
38872002-01-17 Andrew Cagney <ac131313@redhat.com>
3888
3889 * breakpoint.c: Update assuming #if UI_OUT is always true. Update
3890 copyright.
3891 * defs.h, event-top.c, gdbcmd.h: Ditto.
3892 * infcmd.c, infrun.c, main.c, printcmd.c, remote.c: Ditto.
3893 * source.c, stack.c, symfile.c, symtab.c, thread.c: Ditto.
3894 * top.c, cli/cli-cmds.c, cli/cli-decode.c: Ditto.
3895 * cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.c: Ditto.
3896 * mi/ChangeLog, mi/mi-cmd-break.c, mi/mi-cmd-stack.c: Ditto.
3897 * mi/mi-main.c:Ditto.
3898
3899 * stack.c, symfile.c: Update copyright.
3900
45b7b345
DJ
39012002-01-17 Daniel Jacobowitz <drow@mvista.com>
3902
db728ff7
DJ
3903 * gdbserver/low-hppabsd.c, gdbserver/low-lynx.c,
3904 gdbserver/low-nbsd.c, gdbserver/low-sim.c,
3905 gdbserver/low-sparc.c, gdbserver/low-sun3.c,
3906 gdbserver/low-linux.c, gdbserver/server.c: Correct copyright notices.
45b7b345 3907
db728ff7
DJ
39082002-01-17 Daniel Jacobowitz <drow@mvista.com>
3909
3910 * gdbserver/low-hppabsd.c (myattach): New function, returning -1.
3911 * gdbserver/low-lynx.c (myattach): Likewise.
3912 * gdbserver/low-nbsd.c (myattach): Likewise.
3913 * gdbserver/low-sim.c (myattach): Likewise.
3914 * gdbserver/low-sparc.c (myattach): Likewise.
3915 * gdbserver/low-sun3.c (myattach): Likewise.
3916
3917 * gdbserver/low-linux.c (myattach): New function.
45b7b345 3918
db728ff7 3919 * gdbserver/server.c (attach_inferior): New function.
45b7b345
DJ
3920 (main): Handle "--attach".
3921
8de3c354
AC
39222002-01-16 Andrew Cagney <ac131313@redhat.com>
3923
3924 * MAINTAINERS (language support): Daniel Jacobwitz is C++
3925 maintainer.
3926
b0129042
DJ
39272002-01-15 Daniel Jacobowitz <drow@mvista.com>
3928
3929 * c-typeprint.c (is_type_conversion_operator): Add additional
3930 check for non-conversion operators.
3931
ba8679fb 39322002-01-15 Michael Snyder <msnyder@redhat.com>
2bf543a6
MS
3933
3934 * linux-proc.c: Add "info proc" command, a la procfs.c.
3935 (read_mapping): New function, abstract and re-use code.
3936 (linux_find_memory_regions): Use new func read_mapping.
3937 (linux_info_proc_cmd): New function, implement "info proc".
3938 (_initialize_linux_proc): Add new command "info proc".
3939
e4f9b4d5
MS
39402002-01-15 Michael Snyder <msnyder@redhat.com>
3941
3942 * symfile.c (generic_load): Use bfd_map_over_sections method
3943 instead of manipulating bfd structure members directly.
3944 (add_section_size_callback): New function, bfd sections callback
3945 used by generic_load.
3946 (load_sections_callback): New function, bfd sections callback
3947 used by generic_load.
3948
08cf96df
EZ
39492002-01-15 Elena Zannoni <ezannoni@redhat.com>
3950
abf22e64 3951 [Based on work by Jim Blandy]
08cf96df
EZ
3952 * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export.
3953 (builtin_type_vec128): Export.
3954 * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD
3955 types.
3956 (builtin_type_vec128): New builtin type for 128 bit vector
3957 registers.
3958 (build_gdbtypes): Initialize builtin_type_v16qi and
3959 builtin_type_v8hi. Create the vec128 register builtin type
3960 structure.
3961 (build_builtin_type_vec128): New function.
abf22e64 3962 (_initialize_gdbtypes): Register builtin_type_v16qi and
08cf96df
EZ
3963 builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
3964 * rs6000-tdep.c (rs6000_register_virtual_type): Change type of
3965 AltiVec register to new builtin type.
3966
d7242108
DJ
39672001-01-15 Daniel Jacobowitz <drow@mvista.com>
3968
3969 * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
3970 to make_cv_type.
3971
4ee3352d
AC
39722002-01-14 Andrew Cagney <ac131313@redhat.com>
3973
3974 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
3975 CLEAN_UP_REGISTER_VALUE.
3976 * regcache.c (supply_register): Update only call.
3977
f015b2e7
AC
39782002-01-14 Andrew Cagney <ac131313@redhat.com>
3979
3980 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
3981 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
3982 a29k-*-vxworks* targets as obsolete.
3983
356ae49d
MS
39842002-01-14 Michael Snyder <msnyder@redhat.com>
3985
3986 * linux-proc.c (linux_do_thread_registers): Ignore fpxregs
3987 until we can resolve portability issues.
3988 * gregset.h: Remove references to fpxregs.
3989 * gcore.c (gcore_command): Initialize note_sec to NULL.
3990
ade8f45e
AC
39912002-01-13 Andrew Cagney <ac131313@redhat.com>
3992
3993 * signals.c (target_signal_to_name): Rewrite. Only use
3994 signals[].name when in bounds and non-NULL.
abf22e64 3995
89c49e7a
AC
39962002-01-13 Andrew Cagney <ac131313@redhat.com>
3997
3998 From Petr Ledvina <ledvinap@kae.zcu.cz>:
3999 * signals.c (target_signal_to_name): Verify that SIG is within the
4000 bounds of the signals array.
4001
4daa9f9f
AC
40022002-01-13 Andrew Cagney <ac131313@redhat.com>
4003
4004 * MAINTAINERS: Remove arm-coff and arm-pe from target list.
4005
ba4bbdcb
KS
40062002-01-13 Keith Seitz <keiths@redhat.com>
4007
4008 * stack.c (print_frame_info_base): Print the frame's pc
4009 only if when print_frame_info_listing_hook is not defined.
4010
575bbeb6
KS
40112002-01-13 Keith Seitz <keiths@redhat.com>
4012
4013 * varobj.c (varobj_set_value): Make sure that there were no
4014 errors evaluating the object before attempting to set its
4015 value.
4016 value_cast now properly adjusts VALUE_ADDRESS for baseclasses,
4017 so this offset adjustment is no longer necessary.
4018 (create_child): Don't set the error flag if the child is
4019 a CPLUS_FAKE_CHILD.
4020 (value_of_child): If value_fetch_lazy fails, return NULL
4021 so that callers will be notified that an error occurred.
4022 (c_value_of_variable): Delay check of variable's validity
4023 until later. We actually want all structs and unions to have
4024 the value "{...}".
4025 Do not return "???" for variables which could not be evaluated.
4026 This error condition must be returned to the caller so that it
4027 can get the error condition from gdb.
4028 (cplus_name_of_child): Adjust index for vptr before figuring
4029 out the name of the child.
4030 (cplus_value_of_child): If a child's (real) parent is not valid,
4031 don't even bother trying to give a value for it. Just return
4032 an error. Change all instances in this function.
4033 (cplus_type_of_child): If our parent is one of the "fake"
4034 parents, we need to get at the type of the real parent, and
4035 derive the child's true type using this information.
4036
b76898ab
AC
40372002-01-13 Andrew Cagney <ac131313@redhat.com>
4038
4039 From 2002-01-09 John Marshall <johnm@falch.net>:
4040 * CONTRIBUTE, README, TODO: Change sourceware.cygnus.com to
4041 sources.redhat.com, and tweak some related URLs which had
4042 suffered from linkrot.
4043
b6649e88
AC
40442002-01-13 Andrew Cagney <ac131313@redhat.com>
4045
4046 From Jeff law:
4047 * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
4048 structures passed in registers.
4049
82cc5033
EZ
40502002-01-13 Eli Zaretskii <eliz@is.elta.co.il>
4051
4052 * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
4053 white space which prevented compilation. Reported by DSK
4054 <dsk@student.unsw.edu.au>.
4055
ba5f2f8a
MS
40562002-01-11 Michael Snyder <msnyder@redhat.com>
4057
fbd35540
MS
4058 * symfile.c (build_section_addr_info_from_section_tab):
4059 Use bfd access method instead of manipulating bfd directly.
4060 (syms_from_objfile): Ditto.
4061 (simple_overlay_update_1): Ditto.
4062 (simple_overlay_update): Ditto.
4063 (generic_load): Ditto.
4064 (overlay_unmapped_address): FIXME comment, bfd access methods.
4065 (sections_overlap): FIXME comment, bfd access methods.
4066 (pc_in_mapped_range): FIXME comment, bfd access methods.
4067 (pc_in_unmapped_range): FIXME comment, bfd access methods.
4068 (section_is_mapped): FIXME comment, bfd access methods.
4069 (section_is_overlay): FIXME comment, bfd access methods.
4070
ba5f2f8a
MS
4071 * symfile.c (generic_load): Whitespace and long line cleanups.
4072 Remove duplicate variable, change several local variables to
4073 more appropriate data types.
4074 (print_transfer_performance): Use %lu instead of %ld for ulongs.
4075
17df2af6
AC
40762002-01-12 Andrew Cagney <ac131313@redhat.com>
4077
4078 From Peter Schauer:
4079 * language.c (longest_local_hex_string_custom): Use phex_nz to
4080 convert NUM to a hex string.
4081
ec920329
EZ
40822002-01-12 Elena Zannoni <ezannoni@redhat.com>
4083
4084 * sh-tdep.c (sh_gdbarch_init): Move setting of long_bit earlier in
4085 the function.
538a76d6 4086 Update Copyright year.
ec920329 4087
3abd2e01
AC
40882002-01-12 Andrew Cagney <ac131313@redhat.com>
4089
4090 * language.c (longest_raw_hex_string): Delete unused function.
4091
b21b22e0
PS
40922002-01-11 Petr Sorfa <petrs@caldera.com>
4093
4094 * MAINTAINERS (write-after-approval): Add myself.
4095 * dwarf2read.c (read_tag_string_type): Handling of
4096 DW_AT_byte_size.
4097 (read_tag_string_type): FORTRAN fix to prevent propagation of
4098 first string size.
4099 (set_cu_language): Handling of DW_LANG_Fortran95
4100
747fe712
RE
41012002-01-11 Richard Earnshaw <rearnsha@arm.com>
4102
4103 * armnbsd-nat.c (fetch_inferior_registers): Change inferior_pid ->
4104 GETPID(inferior_ptid).
4105 (store_inferior_registers): Likewise.
4106
f1bea926
JM
41072002-01-10 Jason Merrill <jason@redhat.com>
4108
4109 * dwarf2read.c (decode_locdesc): Implement DW_OP_litn, DW_OP_dup.
4110 Fix DW_OP_minus.
4111
ae940673
AC
41122002-01-10 Andrew Cagney <ac131313@redhat.com>
4113
4114 * config/djgpp/fnchange.lst: Add renames for bfd/ChangeLog-0001
4115 and bfd/elf32-sh-nbsd.c.
4116
00546b04
MS
41172002-01-10 Michael Snyder <msnyder@redhat.com>
4118
352ed7b4
MS
4119 * NEWS: Mention --pid and corefile/proc-id behavior change.
4120
c18be923
MS
4121 * Makefile.in: Add rules for gcore.o and linux-proc.o.
4122 * gcore.c: Include cli/cli-decode.h instead of command.h.
4123
00546b04
MS
4124 * main.c (captured_main): Add new command line option "--pid".
4125 If the second command line argument (following the symbol-file)
4126 begins with a digit, try to attach to it before trying to open
4127 it as a corefile.
4128 (print_gdb_help): Document the "--pid" argument.
4129
db60ec62
EZ
41302002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
4131
4132 * completer.c (command_completer): New function.
4133
4134 * completer.h <command_completer>: Add prototype.
4135
4136 * cli/cli-cmds.c (init_cli_cmds): Make command_completer be the
4137 completer for the "help" command.
4138
39c22d1a
JM
41392002-01-09 Jason Merrill <jason@redhat.com>
4140
4141 * c-typeprint.c (is_type_conversion_operator): Fix thinko.
4142
c564377f
MS
41432002-01-09 Michael Snyder <msnyder@redhat.com>
4144
975aec09
MS
4145 * i386-linux-nat.c (fill_fpxregset): Make global.
4146 (store_fpxregset): Ditto.
4147
db4a10fa
MS
4148 * gregset.h (gdb_fpxregset_t): Define.
4149 (supply_fpxregset): Prototype.
4150 (fill_fpxregset): Prototype.
4151
c564377f
MS
4152 * exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
4153
c3d45d70
RE
41542002-01-09 Richard Earnshaw <rearnsha@arm.com>
4155
4156 * config/arm/arm-tdep.h (arm_software_single_step): Remove PARAMS.
4157 * config/arm/nm-nbsd.h (arm_register_u_addr): Likewise.
4158 * config/arm/tm-nbsd.h (get_longjmp_target): Likewise.
4159
fcc87af1
AC
41602002-01-09 Andrew Cagney <ac131313@redhat.com>
4161
4162 * MAINTAINERS: Update target maintainer rules so that any
4163 Maintainer can approve a tested patch for a maintenance-only
4164 target.
4165
dd96c05b
RE
41662002-01-09 Richard Earnshaw <rearnsha@arm.com>
4167
d4297db9 4168 * MAINTAINERS (write-after-approval): Add myself.
dd96c05b 4169
d4297db9 4170 * arm-tdep.c (arm_init_extra_frame_info): Cast NULL argument to
dd96c05b
RE
4171 IN_SIGTRAMP.
4172
145fdc6e
MS
41732002-01-08 Michael Snyder <msnyder@redhat.com>
4174
4175 * linux-proc.c (child_pid_to_exec_file): Use readlink to get the
4176 real name of the executable, rather than the /proc name.
4177
be4d1333
MS
41782002-01-03 Michael Snyder <msnyder@redhat.com>
4179
4180 Implement a "generate-core-file" command in gdb, save target state.
4181 * gcore.c: New file. Implement new command 'generate-core-file'.
4182 Save a corefile image of the current state of the inferior.
4183 * linux-proc.c: Add linux-specific code for saving corefiles.
4184 * target.h (struct target_ops): Add new target vectors for saving
4185 corefiles; to_find_memory_regions and to_make_corefile_notes.
4186 (target_find_memory_regions): New macro.
4187 (target_make_corefile_notes): New macro.
4188 * target.c (update_current_target): Inherit new target methods.
4189 (dummy_find_memory_regions): New place-holder method.
4190 (dummy_make_corefile_notes): New place-holder method.
4191 (init_dummy_target): Initialize new dummy target vectors.
4192 * exec.c (exec_set_find_memory_regions): New function.
4193 Allow the exec_ops vector for memory regions to be taken over.
4194 (exec_make_note_section): New function, target vector method.
4195 * defs.h (exec_set_find_memory_regions): Export prototype.
4196 * procfs.c (proc_find_memory_regions): New function, corefile method.
4197 (procfs_make_note_section): New function, corefile method.
4198 (init_procfs_ops): Set new target vector pointers.
4199 (find_memory_regions_callback): New function.
4200 (procfs_do_thread_registers): New function.
4201 (procfs_corefile_thread_callback): New function.
4202 * sol-thread.c (sol_find_memory_regions): New function.
4203 (sol_make_note_section): New function.
4204 (init_sol_thread_ops): Initialize new target vectors.
4205 * inftarg.c (inftarg_set_find_memory_regions): New function.
4206 Allow to_find_memory_regions vector to be taken over.
4207 (inftarg_set_make_corefile_notes): New function.
4208 Allow to_make_corefile_notes vector to be taken over.
4209 * thread-db.c (thread_db_new_objfile): Don't activate thread-db
4210 interface layer if not target_has_execution (may be a corefile).
4211 * config/i386/linux.mh: Add gcore.o to NATDEPFILES.
4212 * config/sparc/sun4sol2.mh: Ditto.
4213 * config/alpha/alpha-linux.mh: Ditto.
4214 * config/arm/linux.mh: Ditto.
4215 * config/i386/x86-64linux.mh: Ditto.
4216 * config/ia64/linux.mh: Ditto.
4217 * config/m68k/linux.mh: Ditto.
4218 * config/mips/linux.mh: Ditto.
4219 * config/powerpc/linux.mh: Ditto.
4220 * config/sparc/linux.mh: Ditto.
4221
c6b92abd
MS
42222002-01-07 Michael Snyder <msnyder@redhat.com>
4223
4224 * arm-linux-nat.c: Remove references to regcache.c internal data
4225 (registers[] and register_valid[]).
4226
4b09dc8c
MS
42272002-01-07 Michael Snyder <msnyder@redhat.com>
4228
abf22e64
AJ
4229 * linux-proc.c: New file. Implement child_pid_to_exec_file,
4230 so that attaching to a pid will automatically read the process's
4b09dc8c
MS
4231 symbol file and shlibs.
4232 * Makefile.in: Add rule for linux-proc.o.
4233 * config/nm-linux.h: Define CHILD_PID_TO_EXEC_FILE.
4234 * config/alpha/alpha-linux.mh: Add linux-proc.o to NATDEPFILES.
4235 * config/arm/linux.mh: Ditto.
4236 * config/i386/linux.mh: Ditto.
4237 * config/i386/x86-64linux.mh: Ditto.
4238 * config/ia64/linux.mh: Ditto.
4239 * config/m68k/linux.mh: Ditto.
4240 * config/mips/linux.mh: Ditto.
4241 * config/powerpc/linux.mh: Ditto.
4242 * config/sparc/linux.mh: Ditto.
4243
c25b74ac
PM
42442002-01-06 Pierre Muller <muller@ics.u-strasbg.fr>
4245
4246 * win32-nat.c: Add i386-tdep.h dependency.
4247
94cd915f
MS
42482002-01-07 Michael Snyder <msnyder@redhat.com>
4249
c7cccb76
MS
4250 * solib.c (info_sharedlibrary_command): Use TARGET_PTR_BIT
4251 instead of bfd_get_arch_size. Don't bail out just because
4252 there's no exec_bfd.
abf22e64 4253
34c0bd93
MS
4254 * cp-valprint.c (cp_print_value): FIXME comment, alloca size.
4255 * p-valprint.c (pascal_object_print_value): Ditto.
4256 * somread.c (som_symtab_read): Ditto.
4257 * symfile.c (simple_free_overlay_region_table): Ditto.
4258 * valops.c (value_assign): Ditto.
4259
21c1c920
MS
4260 * tracepoint.c (tracepoint_save_command): From Klee Dienes --
4261 use tilde_expand and strerror for opening save-tracepoints file.
4262
5bbd998e
MS
4263 * thread-db.c (thread_db_new_objfile): Indendation fix.
4264
94cd915f
MS
4265 * infptrace.c (GDB_MAX_ALLOCA): New define.
4266 (child_xfer_memory): Use xmalloc/xfree instead of alloca if the
abf22e64 4267 size of the buffer exceeds GDB_MAX_ALLOCA (default 1 megabyte,
94cd915f
MS
4268 can be overridden with whatever value is appropriate to the host).
4269 * infttrace.c (child_xfer_memory): Add FIXME warning about use of
4270 alloca to allocate potentially large buffer.
4271 * rs6000-nat.c (child_xfer_memory): Ditto.
4272 * symm-nat.c (child_xfer_memory): Ditto.
4273 * x86-64-linux-nat.c (child_xfer_memory): Ditto.
4274
494e8a93
JSC
42752002-01-07 Jackie Smith Cashion <jsmith@redhat.com>
4276
4277 From Nick Clifton <nickc@redhat.com>
4278 * d10v-tdep.c: Set STACK_START to 0x200bffe.
4279
d0e1d48e
MS
42802002-01-07 Michael Snyder <msnyder@redhat.com>
4281
abf22e64 4282 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
d0e1d48e
MS
4283 Don't use exec_bfd if it's NULL.
4284
290b2c7a
MK
42852002-01-06 Mark Kettenis <kettenis@gnu.org>
4286
abf22e64 4287 * valops.c (value_arg_coerce): Fix formatting.
290b2c7a 4288
aef21287
AC
42892002-01-06 Andrew Cagney <ac131313@redhat.com>
4290
4291 * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
4292 * gnu-nat.c: Ditto.
4293
30efa627
AC
42942002-01-06 Andrew Cagney <ac131313@redhat.com>
4295
4296 * MAINTAINERS: Note that alpha-dec-osf4.0a, arc-elf, arm-coff,
4297 arm-elf, arm-pe, d30v-elf, fr30-elf, h8300hms, h8500hms,
4298 i960-coff, m32r-elf, m68k-elf, m88k, mcore-elf, mn10200-elf,
4299 ns32k-netbsd, hppa1.1-hp-proelf, v850-elf, vax-dec-vms5.5 and
4300 z8k-coff have not been multi-arched. Update z8k-coff build
4301 status.
4302
9b4ff276
AC
43032002-01-06 Andrew Cagney <ac131313@redhat.com>
4304
4305 * MAINTAINERS: Mark a29k target as obsolete.
4306 * Makefile.in (a29k-tdep.o, remote-adapt.o, remote-eb.o)
4307 (remote-mm.o, remote-udi.o): Obsolete. Remove references in
4308 comments.
4309 * NEWS: Note that a29k targets are obsolete.
4310 * a29k-tdep.c: Mark as obsolete.
4311 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
4312 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
4313 a29k-*-vxworks* targets as obsolete.
4314 * remote-adapt.c: Obsolete.
4315 * remote-eb.c: Obsolete.
4316 * remote-mm.c: Obsolete.
4317 * remote-udi.c: Obsolete.
4318 * config/a29k/a29k-udi.mt: Obsolete.
4319 * config/a29k/a29k.mt: Obsolete.
4320 * config/a29k/tm-a29k.h: Obsolete.
4321 * config/a29k/tm-vx29k.h: Obsolete.
4322 * config/a29k/vx29k.mt: Obsolete.
4323
a9011d31
AC
43242002-01-05 Andrew Cagney <ac131313@redhat.com>
4325
4326 * rs6000-tdep.c (rs6000_do_registers_info): Replace BIG_ENDIAN
4327 with BFD_ENDIAN_BIG.
4328
9299404e
AC
43292002-01-05 Andrew Cagney <ac131313@redhat.com>
4330
4331 * configure.in (AC_CHECK_HEADERS): Do not check for <endian.h>.
4332 * configure, config.in: Re-generate.
4333 * config/vax/xm-vaxbsd.h: Do not include <machine/endian.h>.
4334 * defs.h: Do not include <endian.h>.
4335
7e89e357
JT
43362002-01-05 Jason Thorpe <thorpej@wasabisystems.com>
4337
4338 * acconfig.h (HAVE_PT_GETXMMREGS): New.
4339 * config.in: Regenerate.
4340 * configure.in: Update copyright years.
4341 Add test for PT_GETXMMREGS supplied by <sys/ptrace.h>.
4342 * configure: Regenerate.
4343 * i386bsd-nat.c: Update copyright years.
4344 (fill_gregset): Use regcache_collect.
4345 (fetch_inferior_registers): Only fetch integer registers
4346 if requested to do so. Add support for XMM registers
4347 using PT_GETXMMREGS.
4348 (store_inferior_registers): Only store integer registers
4349 if requested to do so. Add support for XMM registers
4350 using PT_SETXMMREGS.
4351 * i386nbsd-nat.c (fetch_inferior_registers): Remove.
4352 (store_inferior_registers): Remove.
4353 (fetch_core_registers): Use supply_gregset and i387_supply_fsave.
4354 (fetch_elfcore_registers): New function.
4355 (i386nbsd_elfcore_fns): New.
4356 (_initialize_i386nbsd_nat): Register i386nbsd_elfcore_fns.
4357 * config/i386/nbsd.mh (NATDEPFILES): Add i387-nat.o and
4358 i386bsd-nat.o.
4359 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
4360 * config/i386/nbsd.mt (TDEPFILES): Add i386bsd-nat.o.
4361 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
4362 * config/i386/tm-nbsd.h: Update copyright years.
4363 (HAVE_SSE_REGS): Define.
4364 (IN_SIGTRAMP): Define as i386bsd_in_sigtramp.
4365 (SIGTRAMP_START): Redefine as i386bsd_sigtramp_start.
4366 (SIGTRAMP_END): Redefine as i386bsd_sigtramp_end.
4367 (SIGCONTEXT_PC_OFFSET): Remove.
4368 (FRAME_SAVED_PC): Define as i386bsd_frame_saved_pc.
4369
a752853e
AC
43702002-01-05 Andrew Cagney <ac131313@redhat.com>
4371
4372 * configure.tgt: Remove powerpc-*-macos* target.
4373 * config/m68k/xm-mpw.h: Delete file.
4374 * config/xm-mpw.h: Delete file.
4375 * ser-mac.c: Delete file.
4376 * mpw-make.sed: Delete file.
4377 * mpw-config.in: Delete file.
4378 * mac-xdep.c: Delete file.
4379 * mac-gdb.r: Delete file.
4380 * mac-defs.h: Delete file.
4381 * mac-nat.c: Delete file.
4382 * config/powerpc/macos.mh: Delete file.
4383 * config/powerpc/macos.mt: Delete file.
4384 * config/powerpc/nm-macos.h: Delete file.
4385 * config/powerpc/tm-macos.h: Delete file.
4386 * source.c (openp, open_source_file): Remove obsolete code.
4387 * top.c (gdb_readline): Ditto.
4388 * utils.c (query): Ditto.
4389 * event-top.c (display_gdb_prompt): Ditto.
4390 * Makefile.in (ser-mac.o): Delete obsolete target.
4391 * NEWS: Update.
4392
d7449b42
AC
43932002-01-04 Andrew Cagney <ac131313@redhat.com>
4394
4395 * defs.h (BIG_ENDIAN): Delete macro definition.
4396 * a29k-tdep.c, arch-utils.c, arm-tdep.c, ax-gdb.c, ch-exp.c,
4397 coffread.c, cris-tdep.c, d10v-tdep.c, d30v-tdep.c, defs.h,
4398 findvar.c, infcmd.c, mem-break.c, mips-tdep.c, mn10300-tdep.c,
4399 printcmd.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
4400 remote-sim.c, remote.c, rs6000-tdep.c, sh-tdep.c, sparcl-tdep.c,
4401 stabsread.c, valops.c, valprint.c, config/a29k/tm-a29k.h,
4402 config/a29k/tm-vx29k.h, config/arm/tm-arm.h,
4403 config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
4404 config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
4405 config/m32r/tm-m32r.h, config/m68k/tm-m68k.h,
4406 config/m88k/tm-m88k.h, config/mips/tm-mips.h, config/pa/tm-hppa.h,
4407 config/sparc/tm-sparc.h, config/z8k/tm-z8k.h, mi/mi-cmd-disas.c,
4408 mi/mi-main.c: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
4409 * gdbarch.sh: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
4410 * gdbarch.c: Re-generate.
4411
356374e8
DJ
44122002-01-04 Daniel Jacobowitz <drow@mvista.com>
4413
4414 * thread-db.c (thread_db_new_objfile): Do not enable thread_db
4415 for core files.
4416
a2b8f8f8
JT
44172002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
4418
4419 * config/arm/nbsd.mh (XDEPFILES): Remove ser-tcp.o.
4420
12466af9
AC
44212002-01-04 Andrew Cagney <ac131313@redhat.com>
4422
4423 * value.h (value_ptr): Delete typedef.
4424
3549ab40
JT
44252002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
4426
4427 * i386nbsd-nat.c: Update copyright years.
4428 Include i386-tdep.h.
4429
fedbd091
EZ
44302002-01-04 Elena Zannoni <ezannoni@redhat.com>
4431
4432 * stabsread.c: Update copyright years.
4433
4434 From Debashis Mahata <debashis.mahata@wipro.com>:
4435 (read_struct_fields): Deal with Sun C compiler erroneous stab
4436 output for structs and unions.
fec8b34f 4437 Fix PR gdb/269.
fedbd091 4438
eb43544b
DJ
44392002-01-04 Daniel Jacobowitz <drow@mvista.com>
4440
4441 * p-valprint.c: Include "cp-abi.h" for baseclass_offset
4442 prototype.
4443
1514d34e
DJ
44442002-01-04 Daniel Jacobowitz <drow@mvista.com>
4445
4446 * cp-abi.c: Fix whitespace.
4447 (baseclass_offset): New wrapper function.
4448 * cp-abi.h (baseclass_offset): Add prototype.
4449 (struct cp_abi_ops): Add baseclass_offset pointer.
4450
4451 * valops.c (vb_match): Move to...
4452 * gnu-v2-abi.c (vb_match): here.
4453 * valops.c (baseclass_offset): Move to...
4454 * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename.
4455
4456 * gnu-v3-abi.c (gnuv3_baseclass_offset): New function.
4457
4458 * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset.
4459 * gnu-v3-abi.c (init_gnuv3_ops): Likewise.
4460 * hpacc-abi.c (init_hpacc_ops): Likewise.
4461
7f8c9282
DJ
44622002-01-04 Daniel Jacobowitz <drow@mvista.com>
4463
4464 * valops.c (find_overload_match): Accept obj as a
4465 reference parameter. Update it before returning.
4466 * value.h (find_overload_match): Update prototype.
4467 * eval.c (evaluate_subexp_standard): Pass object to
4468 find_overload_match by reference.
4469
f23631e4
AC
44702002-01-03 Andrew Cagney <ac131313@redhat.com>
4471
4472 * valarith.c: Replace value_ptr with struct value pointer. Remove
4473 register attribute from value declarations.
4474 * valops.c: Ditto.
4475 * value.h: Ditto.
4476 * scm-lang.c (scm_lookup_name): Ditto.
4477
79e10fab 44782002-01-03 Michael Snyder <msnyder@redhat.com>
abf22e64 4479
79e10fab
AC
4480 Abstract the functionality of iterating over mapped memory
4481 regions into a general purpose iterator function.
abf22e64 4482 * procfs.c (iterate_over_mappings): New function, general purpose
79e10fab
AC
4483 iterator for memory sections.
4484 (proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
4485 (solib_mappings_callback): New function, callback for above.
4486 (info_proc_mappings): Reimpliment using iterate_over_mappings.
4487 (info_mappings_callback): New function, callback for above.
4488
4489 * procfs.c (proc_set_watchpoint): Add cast to suppress warning.
4490
c5ad026a
MK
44912002-01-01 Mark Kettenis <kettenis@gnu.org>
4492
d2a7c97a
MK
4493 * i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
4494 * i386-tdep.c: Include "elf-bfd.h".
4495 (process_note_abi_tag_sections): New function.
4496 (i386_gdbarch_init): Add code to recognize various OS/ABI
4497 combinations.
4498
c5ad026a
MK
4499 * maint.c (_initialize_maint_cmds): Add missing \ in
4500 string-literal.
4501
a1a5b71e 4502For older changes see ChangeLog-2001
c906108c
SS
4503\f
4504Local Variables:
4505mode: change-log
4506left-margin: 8
4507fill-column: 74
4508version-control: never
4509End:
This page took 0.439883 seconds and 4 git commands to generate.