Unify target macros.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
d92524f1
PM
12009-05-11 Pierre Muller <muller.u-strasbg.fr>
2
3 Unify target macros.
4
5 * target.h (STOPPED_BY_WATCHPOINT): Delete, replaced by ...
6 (target_stoppped_by_watchpoint): New macro.
7 (HAVE_STEPPABLE_WATCHPOINT): Delete, replaced by ...
8 (target_have_steppable_watchpoint): New macro.
9 (HAVE_CONTINUABLE_WATCHPOINT): Delete, replace by ...
10 (target_have_continuable_watchpoint): New macro.
11 (TARGET_CAN_USE_HARDWARE_WATCHPOINT):Delete, replaced by ...
12 (target_can_use_hardware_watchpoint): New macro.
13 (TARGET_REGION_OK_FOR_HW_WATCHPOINT):Delete, replaced by ...
14 (target_region_ok_for_hw_watchpoint): New macro.
15
16 * breakpoint.c (update_watchpoint): Use new macros.
17 (bpstat_alloc): Likewise.
18 (create_breakpoint): Likewise.
19 (watch_command_1): Likewise.
20 (can_use_hardware_watchpoint): Likewise.
21 (do_enable_breakpoint): Likewise.
22 * infrun.c (handle_inferior_event): Adapt to new macros.
23 * mips-tdep.c (mips_gdbarch_init): Update comments.
24 * procfs.c (procfs_set_watchpoint): Update comment.
25 (procfs_insert_watchpoint): Adapt to new macros.
26 * remote-m32r-sdi.c (m32r_stop):
27 * remote-mips.c (mips_remove_breakpoint):
28 * target.c (debug_to_region_ok_for_hw_watchpoint): Update to new macros.
29 (debug_to_stopped_by_watchpoint): Likewise.
30
31
fe524716
PM
322009-05-10 Pierre Muller <muller.u-strasbg.fr>
33
34 * src/gdb/target.h: Remove all tests for already defined
35 macros. All macros defined here should not be set in config
36 headers anymore.
37
1dfe79e8
SDJ
382009-05-08 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
39
40 * ppc-linux-nat.c (have_ptrace_getsetregs): New variable.
41 (have_ptrace_getsetfpregs): Likewise.
42 fetch_all_gp_regs): New function.
43 (fetch_gp_regs): New function.
44 (fetch_all_fp_regs): Likewise.
45 (fetch_fp_regs): New function.
46 (fetch_ppc_registers): Using the new methods to fetch general-
47 purpose and floating-pointer registers.
48 (store_all_gp_regs): New function.
49 (store_gp_regs): Likewise.
50 (store_all_fp_regs): New function.
51 (store_fp_regs): Likewise.
52 (store_ppc_registers): Using the new methods to store general-
53 purpose and floating-pointer registers.
54
2cda8d2f
DE
552009-05-08 Doug Evans <dje@google.com>
56
57 * linux-nat.c (linux_xfer_siginfo): Delete unused locals lp, n.
58
b0afac70
SDJ
592009-05-07 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
60
61 * MAINTAINERS (Write After Approval): Add self.
62
6b614274
JB
632009-05-07 Joel Brobecker <brobecker@adacore.com>
64
65 * gdbarch.h (target_gdbarch): Add comment documenting this global.
66
672009-05-06 Joel Brobecker <brobecker@adacore.com>
4edb1e84
JB
68
69 * acinclude.m4 (AM_ICONV): Prefer in-tree libiconv if present over
70 system iconv.
71 * configure: Regenerate.
72
6b614274 732009-05-06 Joel Brobecker <brobecker@adacore.com>
8626589c
JB
74
75 * utils.c: Add include of gdb_usleep.h.
76 (defaulted_query): Detect false EOF conditions that happen
77 on terminals opened with the O_NONBLOCK flag when there is
78 nothing to read.
79
a562dc8f
PA
802009-05-06 Pedro Alves <pedro@codesourcery.com>
81
82 * inferior.c (add_inferior): Move observer_notify_new_inferior
83 call to ...
84 (add_inferior_silent): ... here.
85
25513619
PA
862009-05-06 Pierre Muller <muller.u-strasbg.fr>
87 Pedro Alves <pedro@codesourcery.com>
88
89 * procfs.c (procfs_insert_watchpoint, procfs_remove_watchpoint)
90 (procfs_region_ok_for_hw_watchpoint, procfs_use_watchpoints): New
91 functions.
92 (procfs_stopped_by_watchpoint): Made static, ptid argument
93 removed.
94 (_initialize_procfs): Register new watchpoint related target
95 functions.
96 * config/i386/nm-i386sol2.h (TARGET_CAN_USE_HARDWARE_WATCHPOINT)
97 (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT, STOPPED_BY_WATCHPOINT)
98 (HAVE_CONTINUABLE_WATCHPOINT): Delete.
99 (target_insert_watchpoint, target_remove_watchpoint): Delete.
100 (procfs_stopped_by_watchpoint, procfs_set_watchpoint): Delete
101 declarations.
102 * config/mips/nm-irix5.h (STOPPED_BY_WATCHPOINT)
103 (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete.
104 (target_insert_watchpoint, target_remove_watchpoint): Delete.
105 (procfs_stopped_by_watchpoint, procfs_set_watchpoint): Delete
106 declarations.
107 * config/sparc/nm-sol2.h (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT)
108 (HAVE_CONTINUABLE_WATCHPOINT, STOPPED_BY_WATCHPOINT): Delete.
109 (target_insert_watchpoint, target_remove_watchpoint): Delete.
110 (procfs_stopped_by_watchpoint, procfs_set_watchpoint): Delete
111 declarations.
112
51f4db83 1132009-05-06 Hui Zhu <teawater@gmail.com>
e7a8dbfb 114
8408d274
HZ
115 * i386-tdep.c (i386_process_record): Change bzero to memset.
116
51f4db83 1172009-05-06 Hui Zhu <teawater@gmail.com>
8408d274
HZ
118
119 * NEWS: Add item for process record and replay.
e7a8dbfb 120
f6402f18
MG
1212009-05-05 Maxim Grigoriev <maxim2405@gmail.com>
122
123 * xtensa-tdep.c (xtensa_frame_cache): Use pc instead of cache->pc.
124
fb14de7b
UW
1252009-05-05 Ulrich Weigand <uweigand@de.ibm.com>
126
127 * inferior.h (read_pc, write_pc): Remove.
128 * regcache.c (read_pc, write_pc): Remove.
129
130 * infrun.c (displaced_step_fixup): Use regcache_read_pc instead
131 of read_pc.
132 (handle_inferior_event): Use regcache_read_pc instead of read_pc
133 when determining value of stop_pc. Replace subsequent uses of
134 read_pc by inspecting already-retrieved stop_pc value.
135 (keep_going): Use regcache_read_pc instead of read_pc.
136
137 * breakpoint.c (watchpoint_check): Use current frame architecture
138 and PC instead of current_gdbarch and read_pc ().
139 * tracepoint.c (set_traceframe_context): Replace PC argument
140 with FRAME argument.
141 (trace_start_command, finish_tfind_command): Update calls.
142 (finish_tfind_command): Compare frame IDs to identify transitions
143 between frames.
144 (trace_find_pc_command): Use regcache_read_pc instead of read_pc.
145 * rs6000-nat.c (exec_one_dummy_insn): Pass in regcache instead
146 of gdbarch. Use regcache_read_pc and regcache_write_pc instead
147 of read_pc and write_pc.
148 (store_register): Make regcache argument non-const. Update call
149 to exec_one_dummy_insn.
150
151 * thread.c (switch_to_thread): Use regcache_read_pc instead of read_pc.
152 * infcmd.c (post_create_inferior): Likewise.
153 * solib-darwin.c (darwin_solib_create_inferior_hook): Likewise.
154 * solib-pa64.c (pa64_solib_create_inferior_hook): Likewise.
155 * solib-sunos.c (sunos_solib_create_inferior_hook): Likewise.
156 * solib-svr4.c (enable_break, svr4_relocate_main_executable): Likewise.
157 * linux-fork.c (fork_load_infrun_state): Likewise.
158 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Likewise.
159 * record.c (record_wait): Likewise.
160 * procfs.c (procfs_wait): Likewise.
161 * remote-mips.c (common_open, mips_wait): Likewise.
162 * remote-m32r-sdi.c (m32r_resume): Likewise.
163
164 * symfile.c (generic_load): Use regcache_write_pc instead of write_pc.
165 * monitor.c (monitor_create_inferior, monitor_load): Likewise.
166 * m32r-rom.c (m32r_load, m32r_upload_command): Likewise.
167 * remote-m32r-sdi.c (m32r_create_inferior, m32r_load): Likewise.
168 * remote-mips.c (mips_create_inferior, mips_load): Likewise.
169
170 * solib-darwin.c: Include "regcache.h".
171 * solib-pa64.c: Include "regcache.h".
172 * solib-svr4.c: Include "regcache.h.".
173
174 * symfile.c: Do not mention read_pc or write_pc in comments.
175 * dink32-rom.c: Likewise.
176 * m32r-rom.c: Likewise.
177 * mips-tdep.c: Likewise.
178
f698437e
UW
1792009-05-05 Ulrich Weigand <uweigand@de.ibm.com>
180
181 * fork-child.c (startup_inferior): Move setting stop_pc ...
182 * infcmd.c (post_create_inferior): ... to here.
183
64644d9b
MS
1842009-05-04 Michael Snyder <msnyder@vmware.com>
185
186 * NEWS: Add item for reverse debugging commands.
187
67ce33d7
PA
1882009-05-04 Pedro Alves <pedro@codesourcery.com>
189
190 * go32-nat.c (go32_stop): Delete.
191 (go32_kill_inferior): Rewrite to only call go32_mourn_inferior.
192 (go32_create_inferior): Don't call go32_stop or
193 go32_kill_inferior.
194 (go32_mourn_inferior): Inline go32_stop and go32_kill_inferior
195 here.
196 (init_go32_ops): Don't register go32_stop.
197
26a4ddaa
EZ
1982009-05-02 Eli Zaretskii <eliz@gnu.org>
199
200 * dbxread.c (read_dbx_symtab): Avoid compiler warnings for
201 sym_name.
202
203 * infcall.c (find_function_addr): Avoid compiler warnings for
204 funaddr.
205
a11a1416
JK
2062009-05-01 Jan Kratochvil <jan.kratochvil@redhat.com>
207
208 * dictionary.c (dict_hashed_vector, dict_hashed_expandable_vector)
209 (dict_linear_vector, dict_linear_expandable_vector): Fix a comment typo.
210
ee78f3e5
DE
2112009-05-01 Doug Evans <dje@google.com>
212
213 * linux-thread-db.c (thread_db_pid_to_str): Delete unused assignment
214 to thread_info.
215
699275c9
EZ
2162009-05-01 Eli Zaretskii <eliz@gnu.org>
217
299a410e
EZ
218 * record.c (_initialize_record): Reformat and clarify doc strings
219 for stop-at-limit and insn-number-max.
220
699275c9
EZ
221 * go32-nat.c: Add comments about dirty secrets of DJGPP debugging.
222
323427d1
JK
2232009-05-01 Jan Kratochvil <jan.kratochvil@redhat.com>
224
225 Make specifiable the make_function_type type memory ownership.
226 * gdbtypes.c (make_function_type): New parameter `objfile', use it
227 explicitely instead of TYPE-initialized removed local variable
228 `objfile'. Describe `objfile' it in the function comment.
229 (lookup_function_type): Update make_function_type callers.
230 * gdbtypes.h (make_function_type): Update the prototype.
231 * jv-lang.c (java_link_class_type): Update make_function_type callers.
232 * dwarf2read.c (read_subroutine_type): Likewise.
233 * stabsread.c (read_type): Likewise.
234
15430fc0
EZ
2352009-05-01 Eli Zaretskii <eliz@gnu.org>
236
89c9c2ec
EZ
237 * go32-nat.c (go32_pid_to_str): Call normal_pid_to_str instead of
238 printing a bogus "Thread <main>".
239 (go32_thread_alive): Don't return 1 for null_ptid.
240
15430fc0
EZ
241 * i386-tdep.c (i386_go32_init_abi): Override the number of
242 registers due to non-support of SSE.
243
c7098c41
AG
2442009-04-30 Anthony Green <green@moxielogic.com>
245
246 * configure.tgt: Link the moxie simulator in with gdb.
247
25c2f6ab
PP
2482009-04-30 Paul Pluzhnikov <ppluzhnikov@google.com>
249
250 * elfread.c (elf_symtab_read): Don't assume .data and .rodata
251 are present.
15430fc0 252
77fcef51
HZ
2532009-04-30 Hui Zhu <teawater@gmail.com>
254 Michael Snyder <msnyder@vmware.com>
255
256 I386 Linux process record and replay support.
257
258 * i386-linux-tdep.c (i386_linux_record_tdep): New variable.
259 This struct has the argument for the function
260 "record_linux_system_call".
261 (i386_linux_intx80_sysenter_record): New function. Parse the
262 system call instruction and call function
263 "record_linux_system_call" to record execute log.
264 (i386_linux_init_abi): Initialize "i386_linux_record_tdep".
265 Set "i386_linux_intx80_sysenter_record" to
266 "i386_intx80_record" and "i386_sysenter_record".
267
7ad10968
HZ
2682009-04-30 Hui Zhu <teawater@gmail.com>
269 Michael Snyder <msnyder@vmware.com>
270
271 I386 architecture process record and replay support.
272
273 * i386-tdep.c (PREFIX_REPZ, PREFIX_REPNZ, PREFIX_LOCK,
274 PREFIX_DATA, PREFIX_ADDR): New macros. Help decode the i386
275 instruction set.
276 (aflag, dflag, override, modrm, mod, reg, rm, ot,
277 i386_record_pc): New variables. Ditto.
278 (i386_record_modrm, i386_record_lea_modrm_addr,
279 i386_record_lea_modrm): New functions. Ditto.
280 (i386_process_record): New function. Parse the instruction in
281 address "addr" and record the values of registers and memory
282 that will be changed by this instruction.
283 (i386_gdbarch_init): Set "i386_process_record" to GDBARCH
284 "process_record" interface.
285 * i386-tdep.h (gdbarch_tdep): New function pointers
286 "i386_intx80_record" and "i386_sysenter_record" that point to
287 the function that can record "intx80" and "sysenter" execute
288 log.
289
96429cc8
HZ
2902009-04-30 Hui Zhu <teawater@gmail.com>
291 Michael Snyder <msnyder@vmware.com>
292
293 * infrun.c (use_displaced_stepping): Return false if process
294 record and replay target is used.
295 (proceed): Call function "record_not_record_set" if pocess
296 record and replay target is used.
297
b7f6bf22
HZ
2982009-04-30 Hui Zhu <teawater@gmail.com>
299 Michael Snyder <msnyder@vmware.com>
300
301 Linux process record and replay support.
302
303 * Makefile.in (ALLDEPFILES): Add linux-record.c.
304 (ALL_TARGET_OBS): Add linux-record.o.
305 * configure.tgt (x86_64-*-linux*): Add linux-record.o.
306 (i[34567]86-*-linux*): Add linux-record.o.
307 * linux-record.c, linux-record.h: New file.
308
69d05d38
HZ
3092009-04-30 Hui Zhu <teawater@gmail.com>
310 Michael Snyder <msnyder@vmware.com>
311
312 Process record and replay target.
313
314 * Makefile.in (SFILES): Add record.c.
315 (COMMON_OBS): Add record.o.
316 * record.c, record.h: New file.
317
81e64f55
HZ
3182009-04-30 Hui Zhu <teawater@gmail.com>
319 Michael Snyder <msnyder@vmware.com>
320
321 * target.h (strata): New stratum "record_stratum".
322
0407e712
HZ
3232009-04-30 Hui Zhu <teawater@gmail.com>
324 Michael Snyder <msnyder@vmware.com>
325
326 GDBARCH interface for process record and replay.
327
328 * gdbarch.sh (process_record): This interface point to the
329 function that records the inferior execute log.
330
c5af0dad
DE
3312009-04-29 Doug Evans <dje@google.com>
332
333 * i386-nat.c (child_post_startup_inferior): Delete, unused.
334
df2b6d2d
PA
3352009-04-29 Pedro Alves <pedro@codesourcery.com>
336
337 * breakpoint.c (print_exception_catchpoint): Access `b' directly
338 instead of `b->loc->owner'.
339 (print_mention_exception_catchpoint): Ditto.
340
484086b7
JK
3412009-04-29 Jan Kratochvil <jan.kratochvil@redhat.com>
342
343 * macrocmd.c (info_macro_command): Print -Dname=value if LINE is zero.
344
379a77b5
TT
3452009-04-27 Tom Tromey <tromey@redhat.com>
346
347 * c-exp.y (yylex): Handle '[' and ']' like '(' and ')'.
348
aad80b26
JG
3492009-04-27 Jerome Guitton <guitton@adacore.com>
350
351 * symtab.c (append_exact_match_to_sals): New function, extracted
352 from expand_line_sal.
353 (expand_line_sal): Use append_exact_match_to_sals to append exact
354 matches. If none found, append all best items.
355
57a46001
JG
3562009-04-27 Jerome Guitton <guitton@adacore.com>
357
358 * main.c (captured_main): Move gdbinit lookups after gdb_init.
359
d389af10
JK
3602009-04-27 Jan Kratochvil <jan.kratochvil@redhat.com>
361
362 PR gdb/9675:
363 * dwarf2read.c (unsigned_int_compar, inherit_abstract_dies): New.
364 (read_func_scope): Call inherit_abstract_dies.
365
90b9b517
EZ
3662009-04-25 Eli Zaretskii <eliz@gnu.org>
367
368 * Makefile.in (ALLDEPFILES): Remove duplicate entries for
369 sparc-sol2-nat.c and sparc-sol2-tdep.c.
80a0ea0f
EZ
370
371 * stack.c (_initialize_stack) <disassemble-next-line>: Doc fix.
372
5ac79d78
PM
3732009-04-24 Pierre Muller <muller.u-strasbg.fr>
374
375 ARI change: Use "/* ARI: rule */" pattern.
376 * utils.c: Update ARI patterns.
377 * gdb_dirent.h: Likewise.
378
d7066cce
AG
3792009-04-23 Anthony Green <green@moxielogic.com>
380
381 * MAINTAINERS: Add moxie target.
382 * configure.tgt: Add moxie-*-elf target.
383 * moxie-tdep.c: New file.
384 * moxie-tdep.h: New file.
385
fc84d355 3862009-04-23 Joel Brobecker <brobecker@adacore.com>
72fcaa05
JB
387
388 * ada-lang.c: Remove an extra empty line. No code change.
389
217dc9e2
JK
3902009-04-23 Jan Kratochvil <jan.kratochvil@redhat.com>
391
392 Fix double free on error inserting the breakpoint instruction.
393 * breakpoint.c (create_breakpoints): Move the
394 update_global_location_list call to ...
395 (break_command_really): ... here together with the second local call
396 both unified after all the cleanups.
397
b14b1491
TT
3982009-04-23 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
399 Tom Tromey <tromey@redhat.com>
400
401 * configure, config.in: Regenerate.
402 * configure.ac: Support for relocatable GDB datadir. Use
403 GDB_AC_WITH_DIR. Always define TARGET_SYSTEM_ROOT_RELOCATABLE.
404 * acinclude.m4 (GDB_AC_WITH_DIR): New defun.
405 * top.c (init_main): Add "set data-directory".
406 * defs.h (gdb_datadir): Declare.
407 * main.c (gdb_datadir): New global.
408 (captured_main): Initialize gdb_datadir. Use relocate_directory.
409 (relocate_path): New function.
410 (relocate_directory): Likewise.
411 (get_init_files): Use relocate_path.
412 (README): Mention --with-gdb-datadir.
413
5e7b5f74
JB
4142009-04-23 Joel Brobecker <brobecker@adacore.com>
415
416 * ada-tasks (task_command_1): Call target_find_new_threads.
417
465f42bb
JB
4182009-04-23 Joel Brobecker <brobecker@adacore.com>
419
420 * stack.c (do_gdb_disassembly): Print the exception message if an
421 error was thrown while trying to perform the disassembly.
422
3038237c
JK
4232009-04-22 Jan Kratochvil <jan.kratochvil@redhat.com>
424
425 * varobj.c (free_variable): Replace free_current_contents by xfree.
426
17c12639
KH
4272009-04-22 Kazu Hirata <kazu@codesourcery.com>
428
429 * arm-linux-nat.c (fetch_register, store_register): Use
430 ARM_CPSR_GREGNUM instead of ARM_CPSR_REGNUM.
431 * arm-linux-tdep.c (arm_linux_supply_gregset,
432 arm_linux_collect_gregset): Likewise.
433 * arm-linux-tdep.h (ARM_CPSR_GREGNUM): New.
434 * arm-tdep.h (ARM_CPSR_REGNUM): Remove.
435
a362e3d3
HZ
4362009-04-22 Hui Zhu <teawater@gmail.com>
437
438 * stack.c (_initialize_stack): Set the default of
439 disassemble-next-line to off.
440
d2596e2e
TT
4412009-04-21 Tom Tromey <tromey@redhat.com>
442
443 * acinclude.m4: Use AS_HELP_STRING, not AC_HELP_STRING.
444 * configure.ac: Use AS_HELP_STRING, not AC_HELP_STRING.
445
62e4f60c
AS
4462009-04-21 Andreas Schwab <schwab@linux-m68k.org>
447
448 * configure.ac: Add quotes to not lose brackets in help text.
449 * configure: Rebuild.
450
82cd387f 4512009-04-21 Andreas Schwab <schwab@linux-m68k.org>
cfd53605
AS
452
453 * configure.ac: Don't postprocess Makefile in config.status.
454 Substitute GDB_NM_FILE. Don't substitute nm_h.
455 * Makefile.in (GDB_NM_FILE): Substitute.
456 (TAGS): Use $(GDB_NM_FILE) instead of $(NAT_FILE).
457 * configure: Regenerate.
458 * gnulib/Makefile.in: Regenerate.
459
26e251b6
JM
4602009-04-21 Joseph Myers <joseph@codesourcery.com>
461
462 * configure.ac (--with-datarootdir, --with-docdir, --with-pdfdir,
463 --with-htmldir): New.
464 * configure: Regenerate.
465
32c1c914
TT
4662009-04-21 Tom Tromey <tromey@redhat.com>
467
468 * configure: Rebuild.
469 * configure.ac: Use lower case for start of help strings. Clean
470 up --with-sysroot help.
471
a1220294
TT
4722009-04-21 Tom Tromey <tromey@redhat.com>
473
474 * configure: Rebuild.
475 * acinclude.m4 (AM_ICONV): Use AC_HELP_STRING.
476 * configure.ac: Use AC_HELP_STRING. Use upper case for variables
477 in help.
478
dfc3cd0e
PM
4792009-04-21 Pierre Muller <muller.u-strasbg.fr>
480
481 ARI fix: remove "%p".
482 * ia64-tdep.c (ia64_frame_this_id): Use host_address_to_string function.
483 (ia64_sigtramp_frame_this_id): Ditto.
484 (ia64_libunwind_frame_this_id): Ditto.
485 (ia64_libunwind_sigtramp_frame_this_id): Ditto.
486 * symmisc.c (maintenance_info_psymtabs): Ditto.
487
29b0e8a2
JM
4882009-04-21 Joseph Myers <joseph@codesourcery.com>
489
490 * configure.ac (--with-relocated-sources): New.
491 * configure, config.in: Regenerate.
492 * source.c (add_substitute_path_rule): Remove static.
493 * source.h (add_substitute_path_rule): Declare.
494 * main.c: Include "source.h".
495 (captured_main): Add substitution rule if RELOC_SRCDIR.
496
ccabeb57
PM
4972009-04-21 Pierre Muller <muller.u-strasbg.fr>
498
499 * gnu-nat.h (proc_debug): Add missing continuation line in macro.
cfd53605 500
b9412953
DD
5012009-04-20 David Daney <ddaney@caviumnetworks.com>
502
503 * NEWS: Mention MIPS/Linux hardware watchpoint support.
504
5052009-04-20 David Daney <ddaney@caviumnetworks.com>
506
507 * mips-linux-nat.c (command.h, gdbcmd.h, gdb_assert.h): New #includes.
508 (maint_show_dr, super_close): New variables.
509 (super_fetch_registers, super_store_registers): Make static.
510 (PTRACE_GET_WATCH_REGS, PTRACE_SET_WATCH_REGS, W_BIT, R_BIT, I_BIT)
511 (W_MASK, R_MASK, I_MASK, IRW_MASK, MAX_DEBUG_REGISTER): Define.
512 (pt_watch_style): Define new enum.
513 (mips32_watch_regs, mips64_watch_regs, pt_watch_regs, mips_watchpoint):
514 Define new structs.
515 (watch_readback_valid, watch_readback, current_watches, watch_mirror):
516 New variables.
517 (get_irw_mask, get_reg_mask, get_num_valid, get_watchlo)
518 (set_watchlo, get_watchhi, set_watchhi, mips_show_dr)
519 (mips_linux_read_watch_registers, mips_linux_can_use_hw_breakpoint)
520 (mips_linux_stopped_by_watchpoint, mips_linux_stopped_data_address)
521 (type_to_irw, fill_mask, try_one_watch)
522 (mips_linux_region_ok_for_hw_watchpoint, write_watchpoint_regs)
523 (mips_linux_new_thread, populate_regs_from_watches)
524 (mips_linux_insert_watchpoint, mips_linux_remove_watchpoint)
525 (mips_linux_close): New functions.
526 (_initialize_mips_linux_nat): Register watchpoint functions with
527 the target_ops. Add show-debug-regs maintenance command.
528
5292009-04-20 David Daney <ddaney@caviumnetworks.com>
530
531 * infrun.c (handle_inferior_event): Move gegisters_changed call down.
532
6de3146c
PA
5332009-04-19 Pedro Alves <pedro@codesourcery.com>
534
535 * NEWS: Mention gdbserver support for x86 Windows CE.
536
10085bb5
EZ
5372009-04-19 Eli Zaretskii <eliz@gnu.org>
538
e424a02e
EZ
539 * config/djgpp/fnchange.lst: Fix typos.
540
10085bb5
EZ
541 Set default host and target charsets in the DJGPP port.
542
543 * config/djgpp/config.sed (am_cv_langinfo_codeset)
544 (bash_cv_langinfo_codeset, ac_cv_header_nl_types_h): Set to "yes"
545 in all configure scripts that define ac_cv_env_CPP_value.
546
547 * go32-nat.c (dos_codepage, nl_langinfo): New functions.
548 Include langinfo.h.
549
550 * config/djgpp/nl_types.h: New file.
551
552 * config/djgpp/langinfo.h: New file.
553
554 * config/i386/go32.mh (MH_CFLAGS): Add $(srcdir)/config/djgpp.
555
2b831889
JM
5562009-04-18 Carlos O'Donell <carlos@codesourcery.com>
557
558 * Makefile.in (MAKEHTML): Set to makeinfo --html.
559 (MAKEHTMLFLAGS): Set to empty.
560
d647eed6
EZ
5612009-04-18 Eli Zaretskii <eliz@gnu.org>
562
d7713ae0
EZ
563 * NEWS: Mention all new set/show commands added since GDB 6.8 was
564 released.
565
d647eed6
EZ
566 * go32-nat.c (go32_sysinfo): Check if the call to
567 __dpmi_get_capabilities fills the buffer with information, and
568 don't use the buffer if not.
569
58720494
TT
5702009-04-17 Tom Tromey <tromey@redhat.com>
571
572 * charset.c (_initialize_charset): Add special case for "646".
573
89a34d1b
JM
5742009-04-17 Carlos O'Donell <carlos@codesourcery.com>
575
576 * configure.ac: AC_SUBST datarootdir, docdir, htmldir, pdfdir.
577 * configure: Regenerate.
578 * Makefile.in: Set datarootdir, docdir, htmldir, and pdfdir from
579 configure substitutions.
580 (FLAGS_TO_PASS): Add datarootdir, docdir, and htmldir.
581
a74ce742
PM
5822009-04-17 Pierre Muller <muller.u-strasbg.fr>
583
584 ARI fix: Do not use %p, replace by call to host_address_to_string
585 for host pointers.
586 * darwin-nat.c (darwin_xfer_partial): Apply change.
587 * gnu-nat.c (inf_continue, gnu_xfer_memory): Ditto.
588 * gnu-nat.h (proc_debug): Ditto.
589 * symmisc.c (maintenance_info_symtabs): Ditto.
590 (maintenance_info_psymtabs): Ditto.
591 * windows-nat.c (handle_load_dll): Ditto.
592 (handle_unload_dll, info_w32_command, handle_exception): Ditto.
593 * xtensa-tdep.c (xtensa_unwind_pc): Ditto.
594
0ca8834f
JM
5952009-04-17 Joseph Myers <joseph@codesourcery.com>
596
597 * configure.tgt (i[34567]86-*-linux*): Use 64-bit configuration if
598 --enable-64-bit-bfd.
599 (sparc-*-linux*): Likewise.
600
541f1105
EZ
6012009-04-17 Eli Zaretskii <eliz@gnu.org>
602
603 * go32-nat.c (go32_sysinfo): Update list of Windows versions of
604 the NT family.
605
1554e9be
PA
6062009-04-16 Pedro Alves <pedro@codesourcery.com>
607
608 * remote.c (remote_query_attached): Fix pasto in packet_ok result
609 checking.
610
bf75638e
JB
6112009-04-16 Joel Brobecker <brobecker@adacore.com>
612
613 * procfs.c (solib_mappings_callback, find_memory_regions_callback):
614 Revert the previous change. Might not be correct, actually.
615
3705b1c5
JB
6162009-04-16 Joel Brobecker <brobecker@adacore.com>
617
618 * ada-lang.h (ada_adjust_exception_stop, ada_print_exception_stop)
619 (ada_get_current_task, ada_print_exception_breakpoint_nontask)
620 (ada_print_exception_breakpoint_task, ada_reset_thread_registers):
621 Remove declaration. These are non-existent functions.
622
37da21bc
JB
6232009-04-16 Joel Brobecker <brobecker@adacore.com>
624
625 * procfs.c (solib_mappings_callback, find_memory_regions_callback):
626 Fix a compilation warning on mips-irix due to casting from
627 a pointer of different size.
628
6f38eac8
JB
6292009-04-16 Joel Brobecker <brobecker@adacore.com>
630
631 * ada-lang.c (symtab_for_sym): Delete.
632 (user_select_syms): Use sym->symtab instead of calling symtab_for_sym.
633
f9bc20b9
JB
6342009-04-16 Joel Brobecker <brobecker@adacore.com>
635
636 * ada-lang.c (extract_string): Delete.
637 (ada_main_name): Reimplement using target_read_string instead of
638 extract_string.
639
335d71d6
AS
6402009-04-16 Andreas Schwab <schwab@linux-m68k.org>
641
642 * m68klinux-nat.c: Remove obsolete comment.
643 (fetch_register, store_register): Don't call
644 gdbarch_cannot_fetch_register or gdbarch_cannot_store_register,
645 which are always nops here.
646
732f6a93
TT
6472009-04-14 Tom Tromey <tromey@redhat.com>
648
649 * c-lang.c (c_emit_char): Use INTERMEDIATE_ENCODING.
650 (c_printstr): Likewise.
651 * charset.c: Include gdb_wait.h.
652 (make_wchar_iterator): Use INTERMEDIATE_ENCODING.
653 (find_charset_names): Use pexecute. Handle libiconv's output.
654 Detect errors.
655 (_initialize_charset): Use xstrdup.
656 * gdb_wchar.h: Check HAVE_BTOWC. Split PHONY_ICONV and wchar
657 cases.
658 (INTERMEDIATE_ENCODING): New define.
659 * configure, config.in: Rebuild.
660 * configure.ac: Check for btowc.
661
334cc82d
TT
6622009-04-15 Tom Tromey <tromey@redhat.com>
663
664 * c-lang.c (evaluate_subexp_c): Correctly handle EVAL_SKIP.
665
27e3013d
EZ
6662009-04-15 Eli Zaretskii <eliz@gnu.org>
667
668 * utils.c (parse_escape): Initialize target_char to pacify GCC.
669
8ea5dfdf
JK
6702009-04-14 Jan Kratochvil <jan.kratochvil@redhat.com>
671
672 * c-lang.c (c_get_string): Fix xfree crash on a failed string read.
673
88c15c34
PM
6742009-04-14 Pierre Muller <muller@ics.u-strasbg.fr>
675
676 ARI fix: sprintf rule.
677 * ada-exp.y (convert_char_literal): Replace sprintf by xsnprintf.
678 * ada-lang.c (add_angle_brackets): Use xstrprintf.
679 (ada_decode): Replace sprintf by xsnprintf.
680 (find_old_style_renaming_symbol): Ditto.
681 (ada_to_fixed_type_1, ada_enum_name): Ditto.
682
683
efbd6e75
JB
6842009-04-14 Joel Brobecker <brobecker@adacore.com>
685
686 * target.c (target_mourn_inferior): Call bfd_cache_close_all
687 after having executed the target mourn_inferior routine.
688
b46df7a1
EZ
6892009-04-14 Eli Zaretskii <eliz@gnu.org>
690
691 * config/djgpp/djconfig.sh (DEPDIR): Define to "_deps", if
692 undefined.
693
2facfe5c
DD
6942009-04-13 David Daney <ddaney@caviumnetworks.com>
695
696 * infrun.c (maybe_software_singlestep): New function.
697 (resume): Call maybe_software_singlestep.
698 (handle_inferior_event): Same.
699
18e8c3bc
TT
7002009-04-13 Tom Tromey <tromey@redhat.com>
701
702 * python/python-frame.c (frapy_richcompare): Return
703 Py_NotImplemented, not an error. Handle Py_NE as well.
704
e726d784
EZ
7052009-04-13 Eli Zaretskii <eliz@gnu.org>
706
707 * charset.c (EILSEQ): Define if not defined by system headers.
708
685af672
EZ
7092009-04-11 Eli Zaretskii <eliz@gnu.org>
710
238f4807 711 * config/djgpp/config.sed: Tweak ac_config_files in intl/configure
a2effb2e 712 to be consistent with renaming config.intl.in into config_intl.in.
238f4807 713
c03b3c32
EZ
714 * go32-nat.c (go32_attach, go32_detach): Fix prototypes to be
715 consistent with the change from 2008-11-09.
685af672 716
c16abbde
JK
7172009-04-10 Jan Kratochvil <jan.kratochvil@redhat.com>
718
719 * gdbtypes.c: Remove excessive parentheses at the return keywords.
2dbd25e5 720 * varobj.c (varobj_invalidate): Fix indentation.
f4a34a08 721 * varobj.c (varobj_invalidate): Fix formatting text width.
c16abbde 722
143260c9
VP
7232009-04-08 Vladimir Prus <vladimir@codesourcery.com>
724
725 Implement -exec-jump.
726
727 * mi/mi-cmds.h (mi_cmd_exec_jump): Declare.
728 * mi/mi-main.c (mi_cmd_exec_jump): New.
729 * mi/mi-cmds.c (mi_cmds): Register exec-jump.
730
d10c338d
DE
7312009-04-07 Doug Evans <dje@google.com>
732
733 * symfile.c (symbol_file_clear): Fix indentation.
734
e5a6ba44
MK
7352009-04-06 Mark Kettenis <kettenis@gnu.org>
736
737 * sparc64nbsd-nat.c (sparc64nbsd_supply_pcb): Fix comment.
738
409c383c
UW
7392009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
740
741 * ppc-linux-nat.c (ppc_linux_target_wordsize): New function.
742 (ppc_linux_auxv_parse): New function.
743 (ppc_linux_read_description): Use ppc_linux_target_wordsize.
744 (_initialize_ppc_linux_nat): Install ppc_linux_auxv_parse.
745
7462009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
9592c5d0
UW
747
748 * spu-linux-nat.c (spu_bfd_open): Set filename of in-memory
749 BFD to contents of SPU name note.
750 (spu_symbol_file_add_from_memory): Call symbol_file_add_from_bfd
751 with "from_tty" argument 1 instead of 0.
752
de40b933
JK
7532009-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
754
755 * dwarf2read.c
756 (new_symbol <DW_TAG_variable> <!DW_AT_location> <DW_AT_external>):
757 Create the symbol in local scope.
758 * symtab.h (cu->list_in_scope <LOC_UNRESOLVED>): New comment part.
759
6cbbcdfe
KS
7602009-04-02 Keith Seitz <keiths@redhat.com>
761
762 * stabsread.c (read_member_functions): GCC may emit an extra space
763 at the end of the names "__base_ctor" and "__base_dtor"; so ignore
764 whitespace when looking for these functions.
765
476f7b68
JB
7662009-04-01 Joel Brobecker <brobecker@adacore.com>
767
768 Change the default value for "set print frame-arguments" to scalars.
769
770 * stack.c (print_frame_arguments): Set initial value to "scalars".
771
865093a3
AR
7722009-04-01 Aleksandar Ristovski <aristovski@qnx.com>
773
774 * mips-tdep.c (mips_numeric_register_alieses): New definition.
cfd53605 775 (mips_gdbarch_init): Add user registers from
865093a3
AR
776 mips_numeric_register_aliases.
777
5d3b6af6
JB
7782009-04-01 Joel Brobecker <brobecker@adacore.com>
779
780 * linux-nat.c (linux_nat_filter_event): Minor comment reformatting.
781
9db03742
JB
7822009-04-01 Joel Brobecker <brobecker@adacore.com>
783
784 * linux-nat.c (linux_nat_filter_events): Do not delete the lwp if
785 this is the last one.
786
0d8f58ca
PA
7872009-04-01 Pedro Alves <pedro@codesourcery.com>
788
789 * remote.c (append_resumption): New.
790 (remote_vcont_resume): Use it.
791
1e2f1c5c
JB
7922009-04-01 Joel Brobecker <brobecker@adacore.com>
793
794 * windows-nat.c (+windows_get_ada_task_ptid): New function.
795 (init_windows_ops): Set windows_ops.to_get_ada_task_ptid.
796
71c25dea
TT
7972009-03-31 Daniel Jacobowitz <dan@codesourcery.com>
798 Keith Seitz <keiths@redhat.com>
799 Jan Kratochvil <jan.kratochvil@redhat.com>
800
801 PR gdb/6817
802 * Makefile.in (dbxread.o): Update.
803 * dbxread.c (read_dbx_symtab): Use cp_canonicalize_string.
804 * dwarf2read.c (GDB_FORM_cached_string): New.
805 (read_partial_die): Use dwarf2_canonicalize_name.
806 (dwarf2_linkage_name): Use dwarf2_name.
807 (dwarf2_canonicalize_name): New.
808 (dwarf2_name): Use dwarf2_canonicalize_name.
809 (dwarf_form_name, dump_die): Handle GDB_FORM_cached_string.
810 * stabsread.c (define_symbol, read_type): Use cp_canonicalize_string.
811 * symtab.c (lookup_symbol_in_language): Canonicalize input before
812 searching.
813 * cp-name-parser.y: operator() requires two parameters,
814 according to libiberty.
815 * minsyms.c (lookup_minimal_symbol): Canonicalize input
816 before searching.
817 * NEWS: Update.
818
4a306c9a
JB
8192009-03-31 Joel Brobecker <brobecker@adacore.com>
820
821 Provide support for (Ada) task-specific breakpoints.
822
823 * ada-lang.h (ada_get_task_number): Add declaration.
824 (breakpoint_ada_task_match): Delete declaration.
825 * ada-tasks.c (ada_get_task_number): Make non-static.
826 * breakpoint.h (struct breakpoint): Add field "task".
827 * breakpoint.c (print_one_breakpoint_location): Add handling of
828 task-specific breakpoints.
829 (create_breakpoint, create_breakpoints, find_condition_and_thread):
830 New parameter "task".
831 (break_command_really): Update calls to find_condition_and_thread
832 and create_breakpoints.
833 (breakpoint_re_set_one): Update call to find_condition_and_thread.
834 Set b->task.
835
4a5a9917
JB
8362009-03-31 Joel Brobecker <brobecker@adacore.com>
837
838 * ada-tasks.c (short_task_info): Eliminate the "Running" task state.
839
bad34192
PA
8402009-03-31 Pedro Alves <pedro@codesourcery.com>
841
842 * remote.c (remote_notice_new_inferior): Use ptid_is_pid. Check
843 if the thread's ptid without a thread id field is in the list
844 before calling thread_change_ptid.
845 (extended_remote_attach_1): In non-stop mode, do not rely on
846 querying the current thread, instead, query the thread list, and
847 select the first thread of the process.
848 * gdbthread.h (first_thread_of_process): Declare.
849 * thread.c (first_thread_of_process): Define.
850
1042e4c0
SS
8512009-03-30 Stan Shebs <stan@codesourcery.com>
852
853 Make tracepoints into a type of breakpoint.
854 * breakpoint.h (enum bptype): Add bp_tracepoint.
855 (struct breakpoint): Add fields step_count, pass_count, actions.
856 (get_tracepoint, get_tracepoint_by_number): Declare.
857 (all_tracepoints): Declare.
858 * breakpoint.c: Include tracepoint.h, readline.h.
859 (ALL_TRACEPOINTS): Move here from tracepoint.c.
860 (tracepoint_count): Ditto.
861 (should_be_inserted): GDB does not insert tracepoints itself.
862 (print_it_typical): Add tracepoint case.
863 (bpstat_what): Ditto.
864 (print_one_breakpoint_location): Ditto, and add printing for
865 pass count, step count, and action list.
866 (user_settable_breakpoint): Add tracepoint case.
867 (allocate_bp_location): Ditto.
868 (set_breakpoint_location_function): Ditto.
869 (disable_breakpoints_in_shlibs): Ditto.
870 (mention): Ditto.
871 (break_command_really): Add argument traceflag, use to choose
872 basic breakpoint type.
873 (break_command_1): Pass extra argument.
874 (set_breakpoint, handle_gnu_v3_exceptions): Ditto.
875 (breakpoint_re_set_one): Add tracepoint case.
876 (disable_command, enable_command): Ditto.
877 (set_tracepoint_count): Move here from tracepoint.c.
878 (trace_command): Move here from tracepoint.c and use
879 break_command_really.
880 (tracepoints_info): Move here from tracepoint.c and call
881 breakpoints_info.
882 (enable_trace_command): Move here from tracepoint.c and call
883 enable_command.
884 (disable_trace_command): Move here from tracepoint.c and call
885 disable_command.
886 (delete_trace_command): Move here from tracepoint.c and call
887 delete_breakpoint.
888 (trace_pass_command): Move here from tracepoint.c.
889 (get_tracepoint_by_number): Ditto.
890 (tracepoint_save_command): Ditto.
891 (get_tracepoint): New function.
892 (all_tracepoints): New function.
893 (_initialize_breakpoint): Move tracepoint init from tracepoint.c,
894 deprecate "enable trace" and "disable trace" commands.
895 * tracepoint.h (struct tracepoint): Remove.
896 (tracepoint_chain): Remove decl.
897 (deprecated_create_tracepoint_hook): Remove decl.
898 (deprecated_delete_tracepoint_hook): Remove decl.
899 (deprecated_modify_tracepoint_hook): Remove decl.
900 (ALL_TRACEPOINTS, ALL_TRACEPOINTS_SAFE): Remove.
901 (free_actions): Update signature.
902 (validate_actionline): Update signature.
903 (end_actions_pseudocommand): Declare.
904 (while_stepping_pseudocommand): Declare.
905 * tracepoint.c: Include breakpoint.h.
906 (tracepoint_chain, tracepoint_count): Remove.
907 (free_actions, make_cleanup_free_actions): Update signature.
908 (trace_command, set_raw_tracepoint): Remove.
909 (trace_mention): Remove.
910 (tracepoints_info): Remove.
911 (tracepoint_operation, map_args_over_tracepoints): Remove.
912 (get_tracepoint_by_number): Remove.
913 (enable_trace_command, disable_trace_command): Remove.
914 (delete_trace_command, trace_pass_command): Remove.
915 (trace_actions_command, read_actions): Update signature.
916 (validate_actionline): Update signature, use bp loc.
917 (encode_actions): Ditto.
918 (download_tracepoint): New function, body of trace_start_command.
919 (trace_start_command): Call it, use all_tracepoints.
920 (tracepoint_save_command): Remove.
921 (tracepoint_dump_command): Use get_tracepoint.
922 (end_actions_pseudocommand): Make globally visible.
923 (while_stepping_pseudocommand): Ditto.
924 (_initialize_tracepoint): Move command definitions to breakpoint.c.
925
f8f6f20b
TJB
9262009-03-30 Thiago Jung Bauermann <bauerman@br.ibm.com>
927
928 Expose frames to Python.
929 * Makefile.in (SUBDIR_PYTHON_OBS): Add python-frame.o.
930 (SUBDIR_PYTHON_SRCS): Add python-frame.c.
931 (python-frame.o): New target.
932 * python/python-frame.c: New file.
933 * python/python-internal.h (gdbpy_frames, gdbpy_newest_frame,
934 gdbpy_frame_stop_reason_string, gdbpy_selected_frame,
935 gdbpy_initialize_frames): New prototypes.
936 * python/python.c (_initialize_python): Call gdbpy_initialize_frames.
937 (GdbMethods): Add `selected_frame' and `frame_stop_reason_string'
938 entries.
939 * stack.c (find_frame_funname): New function, factored out of
940 print_frame.
941 (print_frame): Call find_frame_funname.
942 * stack.h (find_frame_funname): Add prototype.
943
77316f4c
TJB
9442009-03-29 Thiago Jung Bauermann <bauerman@br.ibm.com>
945
946 Remove unused value_object attribute `owned_by_gdb'.
947 * python/python-value.c (value_object): Remove owned_by_gdb
948 attribute.
949 (valpy_dealloc): Remove reference to self->owned_by_gdb.
950 (valpy_new): Likewise.
951 (value_to_value_object): Likewise.
952
c0c6f777
TJB
9532009-03-29 Thiago Jung Bauermann <bauerman@br.ibm.com>
954
955 Change gdb.Value.address from a method to an attribute.
956 * python/python-value.c (value_object): Add `address' element.
957 (valpy_dealloc): Decrement reference to self->address if set.
958 (valpy_new): Initialize val_obj->address.
959 (valpy_address): Rename to ...
960 (valpy_get_address): ... this. Change signature from method to
961 attribute. Update self->address if not set.
962 (value_to_value_object): Initialize val_obj->address.
963 (value_object_getset): Add `address' element.
964 (value_object_methods): Remove `address' element.
965
c2c8d75b
AS
9662009-03-29 Andreas Schwab <schwab@linux-m68k.org>
967
968 * observer.sh: Set LANG/LC_ALL to C, not c.
969
1b31f75d
KB
9702009-03-28 Kevin Buettner <kevinb@redhat.com>
971
972 * mn10300-tdep.c (mn10300_gdbarch_init): For mn10300, by default,
973 `char' is unsigned.
974
f91d3df5
PA
9752009-03-28 Pedro Alves <pedro@codesourcery.com>
976
977 * remote.c (remote_stop_ns): If multi-process extensions are off,
978 and GDB is requesting the whole process to stop, sent "vCont;t",
979 not "vCont;t:-1"
980
7b0e8051
PA
9812009-03-28 Pedro Alves <pedro@codesourcery.com>
982
983 * inf-loop.c (inferior_event_handler): Avoid calling is_running on
984 null inferior_ptid.
985
5362e076
EZ
9862009-03-27 Eli Zaretskii <eliz@gnu.org>
987
988 * config/djgpp/fnchange.lst: Update to fix ARI-reported problems.
989
88fc996f
DE
9902009-03-26 Doug Evans <dje@google.com>
991
992 * thread.c (do_restore_current_thread_cleanup): Redo test for
993 whether to restore old->inferior_ptid.
994
56ef84b1
TT
9952009-03-26 Tom Tromey <tromey@redhat.com>
996
997 * breakpoint.c (resolve_sal_pc): Preserve original line number
998 when skipping prologue.
999
a5321aa4
DE
10002009-03-26 Doug Evans <dje@google.com>
1001
1002 * thread.c (inferior_thread) Remove "extern" in definition.
1003
def2b000
TJB
10042009-03-26 Thiago Jung Bauermann <bauerman@br.ibm.com>
1005
1006 Add gdb.Value.is_optimized_out attribute.
1007 * python/python-value.c (valpy_get_is_optimized_out): New
1008 function.
1009 (value_object_getset): New variable.
1010 (value_object_type): Initialize tp_getset element.
1011
442ddf59
JK
10122009-03-26 Joel Brobecker <brobecker@adacore.com>
1013
1014 Recognize missing DW_AT_location as <value optimized out>.
1015 * dwarf2read.c
1016 (new_symbol <DW_TAG_variable> <!DW_AT_location> <!DW_AT_external>):
1017 Call add_symbol_to_list.
1018
78485d59
TT
10192009-03-25 Tom Tromey <tromey@redhat.com>
1020
1021 * gdbtypes.h (CHECK_TYPEDEF): Don't yield a value.
1022 * stack.c (print_this_frame_argument_p): Use check_typedef.
1023
94ae1714
TT
10242009-03-25 Tom Tromey <tromey@redhat.com>
1025
1026 * configure: Rebuild.
1027 * acinclude.m4 (AM_ICONV): Set am_cv_use_build_libiconv.
1028 Rearrange flags setting. Add comments.
1029
2bc57ae3
PM
10302009-03-25 Pierre Muller <muller@ics.u-strasbg.fr>
1031
1032 * config/i386/nm-i386.h: Remove code within
1033 I386_WATCHPOINTS_IN_TARGET_VECTOR conditional.
1034 * config/i386/nm-cygwin.h: Remove I386_WATCHPOINTS_IN_TARGET_VECTOR
1035 macro.
1036 * config/i386/nm-cygwin64.h: Ditto.
1037 * config/i386/nm-fbsd.h: Ditto.
1038 * config/i386/nm-go32.h: Ditto.
1039 * config/i386/nm-linux.h: Ditto.
1040 * config/i386/nm-linux64.h: Ditto.
1041
549ba0f8
PM
10422009-03-25 Pierre Muller <muller@ics.u-strasbg.fr>
1043
1044 ARI fix: "xasprintf" rule.
1045 * printcmd.c (sym_info): Replace xasprintf by xstrprintf.
1046
68c97600
PA
10472009-03-25 Pedro Alves <pedro@codesourcery.com>
1048
1049 * remote.c (remote_start_remote): In non-stop mode, call
1050 init_wait_for_inferior before adding threads and inferiors.
1051
a6f1cd96
JB
10522009-03-25 Joel Brobecker <brobecker@adacore.com>
1053
1054 * breakpoint.c (breakpoint_thread_match): Split a large condition
1055 into several smaller conditions. No behavior change.
1056
dbfb4bc7 10572009-03-25 Pedro Alves <pedro@codesourcery.com>
a07daef3
PA
1058
1059 * infrun.c (infrun_thread_thread_exit): New.
1060 (_initialize_infrun): Attach it to the thread_exit observer.
1061 * thread.c (delete_thread_1): Always call the observer, passing it
1062 the silent flag.
1063 * mi/mi-interp.c (mi_thread_exit): Add "silent" parameter. If
1064 SILENT, return immediately.
1065
d729566a
PA
10662009-03-25 Pedro Alves <pedro@codesourcery.com>
1067
1068 * infrun.c (normal_stop): Use has_stack_frames instead of
1069 target_has_stack.
1070 * mi/mi-main.c (mi_execute_command): Avoid calling inferior_thread
1071 when there is no thread selected.
1072 (mi_cmd_execute): Don't special case commands that can run without
1073 a valid selected thread.
1074 * top.c (execute_command): Don't special case commands that can
1075 run without a valid selected thread. Use has_stack_frames.
1076 * infcmd.c (ensure_valid_thread): New.
1077 (continue_1, step_1, jump_command, signal_command): Use it.
1078 (detach_command): Error out if there's no selected thread/inferior.
1079 * thread.c (print_thread_info): Allow having no thread selected.
1080 (switch_to_thread): Don't read the PC if there is no current thread.
1081 (do_restore_current_thread_cleanup): Don't record the current
1082 frame if there is no current thread.
1083 (make_cleanup_restore_current_thread): Don't read frame info if
1084 there is no selected thread.
1085 (_initialize_thread): Don't mark commands as
1086 "no_selected_thread_ok".
1087 * frame.c (get_current_frame): Error out if there is no valid
1088 selected thread.
1089 (has_stack_frames): Return false if there is no valid
1090 selected thread.
1091 * cli/cli-cmds.c (init_cli_cmds): Don't mark commands as
1092 "no_selected_thread_ok".
1093 * cli/cli-decode.c (set_cmd_no_selected_thread_ok)
1094 (get_cmd_no_selected_thread_ok): Delete.
1095 * cli/cli-decode.h (CMD_NO_SELECTED_THREAD_OK): Delete.
1096 (set_cmd_no_selected_thread_ok, get_cmd_no_selected_thread_ok):
1097 Delete declaration.
1098 * stack.c (get_selected_block): Use has_stack_frames.
1099
f04c6d38
TJB
11002009-03-25 Thiago Jung Bauermann <bauerman@br.ibm.com>
1101
1102 Fix size of FPSCR in Power 7 processors.
1103 * ppc-linux-nat.c (PPC_FEATURE_ARCH_2_05): Remove #define.
1104 (PPC_FEATURE_HAS_DFP): New #define.
1105 (ppc_linux_read_description): Check for DFP feature instead of
1106 ISA 2.05 to decide on size of the FPSCR.
1107
6c02c64c
KB
11082009-03-25 Kevin Buettner <kevinb@redhat.com>
1109
1110 * mn10300-tdep.c (trad-frame.h): Don't include.
1111 (prologue-value.h): Include.
1112 (mn10300_frame_unwind_cache, set_reg_offsets): Delete.
1113 (struct mn10300_prologue): Define.
1114 (push_reg, translate_rreg, check_for_saved): New functions.
1115 (mn10300_analyze_prologue): Rewrite, using prologue-value
1116 machinery. Handle more instructions than before. Permit
1117 instructions to occur in any order.
1118 (mn10300_skip_prologue): Find the extents of the function
1119 in question; mn10300_analyze_prologue no longer does this.
1120 (mn10300_analyze_frame_prologue): New function.
1121 (mn10300_frame_base): New function.
1122 (mn10300_frame_this_id): Rewrite, no longer using trad-frame
1123 implementation.
1124 (mn10300_frame_prev_register): Likewise.
1125 (mn10300_frame_base_address, mn10300_frame_base struct): Delete.
1126 (mn10300_unwind_pc, mn10300_unwind_sp): Rename `next_frame' to
1127 `this_frame'.
1128 (mn10300_frame_unwind_init): Don't call frame_base_set_default().
1129
67c296a2
PM
11302009-03-25 Pierre Muller <muller@ics.u-strasbg.fr>
1131
1132 Fix completer problem for filename completion on the first try.
1133
1134 * gdb/completer.h (gdb_completion_word_break_characters): New function.
1135 * gdb/completer.c: Include gdb_assert.h.
1136 (complete_line_internal_reason): New enum.
1137 (complete_line_internal): Change last argument type to
1138 complete_line_internal_reason.
1139 Modify function to handle the different complete_line_internal_reason
1140 argument values.
1141 (complete_line): Adapt to change in complete_line_internal.
1142 (command_completer): Ditto.
1143 (gdb_completion_word_break_characters): Implement new function.
1144 * top.c (init_main): Set rl_completion_word_break_hook to
1145 gdb_completion_word_break_characters.
c2c8d75b 1146
67c296a2 1147
1a6d2f2f
PM
11482009-03-25 Pierre Muller <muller@ics.u-strasbg.fr>
1149
1150 ARI fix: "strlen d_name" rule.
1151 * linux-nat.c (linux_nat_xfer_osdata): Use NAMELEN macro.
1152
1153
fc3b640d
TT
11542009-03-24 Tom Tromey <tromey@redhat.com>
1155 Pedro Alves <pedro@codesourcery.com>
1156
1157 * configure, config.in: Rebuild.
1158 * configure.ac: Check for libiconvlist.
1159 * charset.c: Check HAVE_LIBICONVLIST.
1160 * acinclude.m4 (AM_ICONV): Don't subst LIBICONV, LIBICONV_INCLUDE,
1161 LIBICONV_LIBDIR. Update CPPFLAGS and LIBS.
1162 * Makefile.in (LIBICONV, LIBICONV_INCLUDE, LIBICONV_LIBDIR):
1163 Remove.
1164 (INTERNAL_CFLAGS_BASE): Update.
1165 (INTERNAL_LDFLAGS): Update.
1166 (CLIBS): Update.
1167
76a39ba7
JK
11682009-03-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1169
1170 * configure.ac: Initialize the variable $PREFER_CURSES.
1171 * configure: Regenerated.
1172
bd8a8e1b
JK
11732009-03-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1174
1175 * configure.ac: Enable $PREFER_CURSES even with default $ENABLE_TUI.
1176 * configure: Regenerated.
1177
a3224241
PM
11782009-03-24 Pierre Muller <muller@ics.u-strasbg.fr>
1179
1180 ARI fix: "strerror" rule.
1181 * darwin-nat.c (darwin_ptrace): Use safe_strerror.
1182 (darwin_stop_inferior, darwin_attach, darwin_detach): Ditto.
1183
6cdd57f4
JB
11842009-03-23 Joel Brobecker <brobecker@adacore.com>
1185
1186 * ada-exp.y (get_symbol_field_type): Make sure to resolve typedefs
1187 before looking up the fields inside our struct type.
1188
17466c1a
JB
11892009-03-23 Joel Brobecker <brobecker@adacore.com>
1190
1191 * ada-lang.c (resolve_subexp) [UNOP_QUAL]: Resolve typedefs before
1192 trying to resolve the type qualification.
1193
8008e265
JB
11942009-03-23 Joel Brobecker <brobecker@adacore.com>
1195
1196 * ada-lang.c (ada_evaluate_subexp) [UNOP_IN_RANGE]: make sure
1197 we try to apply the attribute on the real type, rather than
1198 its associated typedef.
1199
31dedfee
JB
12002009-03-23 Joel Brobecker <brobecker@adacore.com>
1201
1202 * ada-lang.c (ada_evaluate_subexp) [OP_ATR_MODULUS]: Use check_typdef
1203 to make sure we try to get the modulus of the actual type, not the
1204 associated typedef.
1205
5bc23cb3
JB
12062009-03-23 Joel Brobecker <brobecker@adacore.com>
1207
1208 * ada-lang.c (ada_evaluate_subexp): [OP_ATR_FIRST, OP_ATR_LAST]
1209 [OP_ATR_LENGTH]: When using the attribute on a type, make sure
1210 to get the real type, not the associated typedef.
1211
872c8b51
JB
12122009-03-23 Joel Brobecker <brobecker@adacore.com>
1213
1214 * ada-lang.c (ada_get_field_index): Add handling of the case
1215 when TYPE is a typedef of a struct.
1216
dcb626be
JB
12172009-03-23 Joel Brobecker <brobecker@adacore.com>
1218
e0cfd8e3 1219 Add gdb_usleep as a portable version of usleep based on gdb_select.
dcb626be
JB
1220 * gdb_usleep.h, gdb_usleep.c: New files.
1221 * Makefile.in (SFILES): Add gdb_usleep.c.
1222 (HFILES_NO_SRCDIR): Add gdb_usleep.h.
1223 (COMMON_OBS): Add gdb_usleep.o.
1224 * ser-unix.c (hardwire_send_break): Replace call to gdb_select
1225 by call to gdb_usleep.
1226
24be086d
JB
12272009-03-23 Joel Brobecker <brobecker@adacore.com>
1228
1229 * buildsym.c (end_symtab): If we ignore the subfiles, then
1230 unlink the associated symtabs if they were already allocated.
1231
cb01cfba
JB
12322009-03-23 Jerome Guitton <guitton@adacore.com>
1233
1234 Provide a way to force building of GDB with libcurses.
1235 * configure.ac: Add --with-curses.
1236 * configure: Regenerated.
1237
9c482037
TT
12382009-03-23 Tom Tromey <tromey@redhat.com>
1239
1240 * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_uninit>: Fix typo in
1241 error message.
1242
e2dd7057
PP
12432009-03-23 Paul Pluzhnikov <ppluzhnikov@google.com>
1244
1245 * breakpoint.c (disable_breakpoints_in_unloaded_shlib): Use
1246 solib_contains_address_p instead of searching.
c2c8d75b 1247
0dd7fb99
TT
12482009-03-23 Tom Tromey <tromey@redhat.com>
1249
1250 * charset.c (ICONV_CONST) <PHONY_ICONV>: Define.
1251 (iconv): Make 'inbuf' argument const.
1252 (convert_between_encodings): Use ICONV_CONST.
1253 (wchar_iterate): Likewise.
1254
418c6cb3
CF
12552009-03-22 Christopher Faylor <me+cygwin@cgf.cx>
1256
1257 * windows-nat.c (AdjustTokenPrivileges): Implement macro wraparound for
1258 dynamically loaded function.
1259 (LookupPrivilegeValueA): Ditto.
1260 (OpenProcessToken): Ditto.
1261 (AdjustTokenPrivileges): Rename and define placeholder for address of
c2c8d75b 1262 dynamically loaded function.
418c6cb3
CF
1263 (LookupPrivilegeValueA): Ditto.
1264 (OpenProcessToken): Ditto.
1265 (set_process_privilege): Remove check for loaded functions.
1266 (bad_OpenProcessToken): Define.
1267 (_initialize_loadable): Load token functions from advapi here, setting
1268 OpenProcessToken function to a dummy static function which always return
1269 error if OS doesn't support this functionality.
1270
695de547
CF
12712009-03-22 Nicolas Roche <roche@adacore.com>
1272 Christopher Faylor <me+cygwin@cgf.cx>
1273
1274 * win32-nat.c (ctrl_c_handler): New function.
1275 (win32_wait): Register ctrl_c_handler as Ctrl-C handler if the inferior
1276 is run in a separate console.
1277
2b008701
CF
12782009-03-22 Christopher Faylor <me+cygwin@cgf.cx>
1279
1280 * windows-nat.c (DebugActiveProcessStop): Implement macro wraparound
1281 for dynamically loaded function.
1282 (DebugBreakProcess): Ditto.
1283 (DebugSetProcessKillOnExit): Ditto.
1284 (EnumProcessModules): Ditto.
1285 (GetModuleFileNameExA): Ditto.
1286 (GetModuleInformation): Ditto.
1287 (DebugActiveProcessStop): Rename and define placeholder for address of
418c6cb3 1288 dynamically loaded function.
2b008701
CF
1289 (DebugBreakProcess): Ditto.
1290 (DebugSetProcessKillOnExit): Ditto.
1291 (EnumProcessModules): Ditto.
1292 (GetModuleFileNameExA): Ditto.
1293 (GetModuleInformation): Ditto.
1294 (psapi_loaded): Delete.
1295 (get_module_name): Don't check psapi_loaded, just rely on the fact that
1296 dynamically loaded functions will return failure if they weren't
1297 previously found.
1298 (has_detach_ability): Delete.
1299 (windows_attach): Remove call to has_detach_ability (). Just rely on
1300 functions being callable.
1301 (bad_DebugActiveProcessStop): Define.
1302 (bad_DebugBreakProcess): Ditto.
1303 (bad_DebugSetProcessKillOnExit): Ditto.
1304 (bad_EnumProcessModules): Ditto.
1305 (bad_GetModuleFileNameExA): Ditto.
1306 (bad_GetModuleInformation): Ditto.
1307 (_initialize_loadable): Rename from _initialize_psapi. Initialize all
1308 dynamic storage here, setting nonexistent functions to dummy static
1309 functions which always return error.
1310
f3b1572e
PA
13112009-03-22 Pedro Alves <pedro@codesourcery.com>
1312
1313 * mi/mi-interp.c (mi_interpreter_init): Attach mi_about_to_proceed
1314 to the about_to_proceed observer notification.
1315 (mi_about_to_proceed): New.
1316 (mi_on_resume): Only output ^running and the prompt here if the
1317 target was proceeded.
1318 * breakpoint.c (breakpoint_proceeded): New static.
1319 (breakpoint_about_to_proceed): New.
1320 (_initialize_breakpoints): Attach breakpoint_about_to_proceed to
1321 the about_to_proceed observer notification.
1322 * inferior.h (breakpoint_proceeded): Delete declaration.
1323 * infrun.c (clear_proceed_status): Don't set breakpoint_proceeded.
1324 Notify the about_to_proceed observers.
1325 (struct inferior_status): Delete breakpoint_proceeded member.
1326 (save_inferior_status): Don't save it.
1327 (restore_inferior_status): Don't restore it.
1328 * mi-main.h (mi_proceeded): Declare.
1329 * mi/mi-main.c (mi_cmd_execute): Clear mi_proceeded before running
1330 a command.
1331
c5a4d20b
PA
13322009-03-22 Pedro Alves <pedro@codesourcery.com>
1333
1334 * gdbthread.h (struct thread_info): Add in_infcall member.
1335 * infcall.c (run_inferior_call): Save, set and restore in_infcall.
1336 Remove reverences to suppress_resume_observer. Refresh
1337 `call_thread' after returning from `proceed'.
1338 * infcmd.c (suppress_resume_observer): Delete.
1339 * inferior.h (suppress_resume_observer): Delete declaration.
1340 * mi/mi-interp.c (mi_on_resume): Suppress output while calling an
1341 inferior function.
1342 * thread.c (set_running): Remove references to
1343 suppress_resume_observer.
1344 * infrun.c (struct inferior_status): Add in_infcall member.
1345 (save_inferior_status): Save it.
1346 (restore_inferior_status): Restore it.
1347
41d2bdb4
PA
13482009-03-22 Pedro Alves <pedro@codesourcery.com>
1349
1350 * infcall.c (run_inferior_call): Remove references to
1351 suppress_stop_observer.
1352 * infcmd.c (suppress_stop_observer): Delete.
1353 (finish_command_continuation): Remove NOTE. Don't clear
1354 suppress_stop_observer anymore.
1355 (finish_command_continuation_free_arg): Likewise.
1356 (finish_forward): Remove references to suppress_stop_observer.
1357 Call normal_stop observer if we haven't already.
1358 * inferior.h (suppress_stop_observer): Delete.
1359 * infrun.c (normal_stop): When deciding to suppress the
1360 normal_stop observer, check for proceed_to_finish instead of
1361 suppress_stop_observer.
1362
065a2c74
PA
13632009-03-22 Pedro Alves <pedro@codesourcery.com>
1364
1365 * symfile.c (symfile_relocate_debug_section): Remove check for
1366 SEC_DEBUGGING.
1367
cc924cad
TJB
13682009-03-21 Jan Kratochvil <jan.kratochvil@redhat.com>
1369 Jim Blandy <jimb@red-bean.com>
1370 Thiago Jung Bauermann <bauerman@br.ibm.com>
1371 Tom Tromey <tromey@redhat.com>
1372
1373 Miscellaneous fixes to the Python code.
1374 * python/python-cmd.c (cmdpy_init): Accept keyword
1375 arguments.
1376 * python/python-value.c (valpy_string): Accept keyword
1377 arguments.
1378 (valpy_binop): Use `break' to exit from the TRY_CATCH block.
1379 Do not call value_to_value_object on NULL RES_VAL.
1380 (value_object_methods): Change `string' entry to also accept
1381 keyword arguments.
1382 (convert_value_from_python): Return a copy of the value if obj is
1383 a gdb.Value object.
1384 (value_object_methods): Mark the `string' method as accepting
1385 keywords, and show method "prototype" in the doc string.
1386 * python/python.c (get_parameter): Don't return inside a
1387 TRY_CATCH.
1388
bc3b79fd
TJB
13892009-03-20 Tom Tromey <tromey@redhat.com>
1390
1391 Add support for convenience functions in Python.
1392 * Makefile.in (SUBDIR_PYTHON_OBS): Add python-function.o.
1393 (SUBDIR_PYTHON_SRCS): Add python-function.c.
1394 (python-function.o): New target.
1395 * eval.c: Include "python/python.h" and <ctype.h>.
1396 (evaluate_subexp_standard): Handle values of type
1397 TYPE_CODE_INTERNAL_FUNCTION.
1398 * gdbtypes.h (type_code): Add TYPE_CODE_INTERNAL_FUNCTION.
1399 * parse.c (write_exp_string): Remove duplicate word in comment.
1400 * python/python-function.c: New file.
1401 * python/python-internal.h (gdbpy_initialize_functions): Add
1402 prototype.
1403 * python/python.c (_initialize_python): Call
1404 gdbpy_initialize_functions.
1405 * valprint.c (value_check_printable): Handle values of type
1406 TYPE_CODE_INTERNAL_FUNCTION.
1407 * value.c: Include "cli/cli-decode.h".
1408 (internal_function): New struct.
1409 (functionlist, internal_fn_type): New static variables.
1410 (lookup_only_internalvar,
1411 lookup_internalvar): Add const qualifier to name argument.
1412 (create_internalvar): Likewise. Initialize new field.
1413 (set_internal_var): Fix typo in comment. Don't allow assignment
1414 to canonical variable.
1415 (value_create_internal_function, value_internal_function_name,
1416 call_internal_function, function_command, function_destroyer,
1417 add_internal_function): New functions.
1418 (_initialize_values): Create `function' placeholder command.
1419 Initialize internal_fn_type.
1420 * value.h (lookup_only_internalvar, create_internalvar,
1421 lookup_internalvar): Add const qualifier to name argument.
1422 (internal_function_fn, add_internal_function, call_internal_function,
1423 value_internal_function_name): Add prototypes.
1424 (struct internalvar) <canonical>: New field.
1425
546e879e
TT
14262009-03-20 Tom Tromey <tromey@redhat.com>
1427
1428 * c-lang.c (evaluate_subexp_c): Call check_typedef.
1429
6c7a06a3
TT
14302009-03-20 Tom Tromey <tromey@redhat.com>
1431 Julian Brown <julian@codesourcery.com>
1432
1433 PR i18n/7220, PR i18n/7821, PR exp/8815, PR exp/9103,
1434 PR i18n/9401, PR exp/9613:
1435 * NEWS: Update
1436 * value.h (value_typed_string): Declare.
1437 (val_print_string): Update.
1438 * valprint.h (print_char_chars): Update.
1439 * valprint.c (print_char_chars): Add type argument. Update.
1440 (val_print_string): Likewise.
1441 * valops.c (value_typed_string): New function.
1442 * utils.c (host_char_to_target): New function.
1443 (parse_escape): Use host_char_to_target, host_hex_value. Update.
1444 Remove '^' case.
1445 (no_control_char_error): Remove.
1446 * typeprint.c (print_type_scalar): Update.
1447 * scm-valprint.c (scm_scmval_print): Update.
1448 * scm-lang.h (scm_printchar, scm_printstr): Update.
1449 * scm-lang.c (scm_printchar): Add type argument.
1450 (scm_printstr): Likewise.
1451 * printcmd.c (print_formatted): Update.
1452 (print_scalar_formatted): Update.
1453 (printf_command) <wide_string_arg, wide_char_arg>: New constants.
1454 Handle '%lc' and '%ls'.
1455 * parser-defs.h (struct typed_stoken): New type.
1456 (struct stoken_vector): Likewise.
1457 (write_exp_string_vector): Declare.
1458 * parse.c (write_exp_string_vector): New function.
1459 * p-valprint.c (pascal_val_print): Update.
1460 * p-lang.h (is_pascal_string_type, pascal_printchar,
1461 pascal_printstr): Update.
1462 * p-lang.c (is_pascal_string_type): Remove 'char_size' argument.
1463 Add 'char_type' argument.
1464 (pascal_emit_char): Add type argument.
1465 (pascal_printchar): Likewise.
1466 (pascal_printstr): Likewise.
1467 * objc-lang.c (objc_emit_char): Add type argument.
1468 (objc_printchar): Likewise.
1469 (objc_printstr): Likewise.
1470 * macroexp.c (get_character_constant): Handle unicode characters.
1471 Use c_parse_escape.
1472 (get_string_literal): Handle unicode strings. Use
1473 c_parse_escape.
1474 * m2-valprint.c (print_unpacked_pointer): Update.
1475 (m2_print_array_contents): Update.
1476 (m2_val_print): Update.
1477 * m2-lang.c (m2_emit_char): Add type argument.
1478 (m2_printchar): Likewise.
1479 (m2_printstr): Likewise.
1480 * language.h (struct language_defn) <la_printchar>: Add type
1481 argument.
1482 <la_printstr, la_emitchar>: Likewise.
1483 (LA_PRINT_CHAR): Likewise.
1484 (LA_PRINT_STRING): Likewise.
1485 (LA_EMIT_CHAR): Likewise.
1486 * language.c (unk_lang_emit_char): Add type argument.
1487 (unk_lang_printchar): Likewise.
1488 (unk_lang_printstr): Likewise.
1489 * jv-valprint.c (java_val_print): Update.
1490 * jv-lang.c (java_emit_char): Add type argument.
1491 * f-valprint.c (f_val_print): Update.
1492 * f-lang.c (f_emit_char): Add type argument.
1493 (f_printchar): Likewise.
1494 (f_printstr): Likewise.
1495 * expprint.c (print_subexp_standard): Update.
1496 * charset.h (target_wide_charset): Declare.
1497 (c_target_char_has_backslash_escape, c_parse_backslash,
1498 host_char_print_literally, host_char_to_target,
1499 target_char_to_host, target_char_to_control_char): Remove.
1500 (enum transliterations): New type.
1501 (convert_between_encodings): Declare.
1502 (HOST_ESCAPE_CHAR): New define.
1503 (host_letter_to_control_character, host_hex_value): Declare.
1504 (enum wchar_iterate_result): New enum.
1505 (struct wchar_iterator): Declare.
1506 (make_wchar_iterator, make_cleanup_wchar_iterator, wchar_iterator,
1507 wchar_push_back): Declare.
1508 * charset-list.h: New file.
1509 * c-valprint.c (textual_name): New function.
1510 (textual_element_type): Handle wide character types.
1511 (c_val_print): Pass original type to textual_element_type. Handle
1512 wide character types.
1513 (c_value_print): Use textual_element_type. Pass original type of
1514 value to val_print.
1515 * c-lang.h (enum c_string_type): New type.
1516 (c_printchar, c_printstr): Update.
1517 * c-lang.c (classify_type): New function.
1518 (print_wchar): Likewise.
1519 (c_emit_char): Add type argument. Handle wide characters.
1520 (c_printchar): Likewise.
1521 (c_printstr): Add type argument. Handle wide and multibyte
1522 character sets.
1523 (convert_ucn): New function.
1524 (emit_numeric_character): Likewise.
1525 (convert_octal): Likewise.
1526 (convert_hex): Likewise.
1527 (ADVANCE): New macro.
1528 (convert_escape): New function.
1529 (parse_one_string): Likewise.
1530 (evaluate_subexp_c): Likewise.
1531 (exp_descriptor_c): New global.
1532 (c_language_defn): Use exp_descriptor_c.
1533 (cplus_language_defn): Likewise.
1534 (asm_language_defn): Likewise.
1535 (minimal_language_defn): Likewise.
1536 (charset_for_string_type): New function.
1537 * c-exp.y (%union): Add 'svec' and 'tsval'.
1538 (CHAR): New token.
1539 (exp): Add CHAR production.
1540 (string_exp): Rewrite.
1541 (exp) <string_exp>: Rewrite.
1542 (tempbuf): Now global.
1543 (tempbuf_init): New global.
1544 (parse_string_or_char): New function.
1545 (yylex) <tempbuf>: Now global.
1546 <tokptr, tempbufindex, tempbufsize, token_string, class_prefix>:
1547 Remove.
1548 Handle 'u', 'U', and 'L' prefixes. Call parse_string_or_char.
1549 (c_parse_escape): New function.
1550 * auxv.c (fprint_target_auxv): Update.
1551 * ada-valprint.c (ada_emit_char): Add type argument.
1552 (ada_printchar): Likewise.
1553 (ada_print_scalar): Update.
1554 (printstr): Add type argument. Update calls to ada_emit_char.
1555 (ada_printstr): Add type argument.
1556 (ada_val_print_array): Update.
1557 (ada_val_print_1): Likewise.
1558 * ada-lang.c (emit_char): Add type argument.
1559 * ada-lang.h (ada_emit_char, ada_printchar, ada_printstr): Add
1560 type arguments.
1561 * gdb_locale.h: Include langinfo.h.
1562 * charset.c (_initialize_charset): Set default host charset from
1563 the locale. Don't register charsets. Add target-wide-charset
1564 commands. Call find_charset_names.
1565 (struct charset, struct translation): Remove.
1566 (GDB_DEFAULT_HOST_CHARSET): Remove.
1567 (GDB_DEFAULT_TARGET_WIDE_CHARSET): New define.
1568 (target_wide_charset_name): New global.
1569 (show_host_charset_name): Handle "auto".
1570 (show_target_wide_charset_name): New function.
1571 (host_charset_enum, target_charset_enum): Remove.
1572 (charset_enum): New global.
1573 (all_charsets, register_charset, lookup_charset, all_translations,
1574 register_translation, lookup_translation): Remove.
1575 (simple_charset, ascii_print_literally, ascii_to_control): Remove.
1576 (iso_8859_print_literally, iso_8859_to_control,
1577 iso_8859_family_charset): Remove.
1578 (ebcdic_print_literally, ebcdic_to_control,
1579 ebcdic_family_charset): Remove.
1580 (struct cached_iconv, check_iconv_cache, cached_iconv_convert,
1581 register_iconv_charsets): Remove.
1582 (target_wide_charset_be_name, target_wide_charset_le_name): New
1583 globals.
1584 (identity_either_char_to_other): Remove.
1585 (set_be_le_names, validate): New functions.
1586 (backslashable, backslashed, represented): Remove.
1587 (default_c_target_char_has_backslash_escape): Remove.
1588 (default_c_parse_backslash, iconv_convert): Remove.
1589 (ascii_to_iso_8859_1_table, ascii_to_ebcdic_us_table,
1590 ascii_to_ibm1047_table, iso_8859_1_to_ascii_table,
1591 iso_8859_1_to_ebcdic_us_table, iso_8859_1_to_ibm1047_table,
1592 ebcdic_us_to_ascii_table, ebcdic_us_to_iso_8859_1_table,
1593 ebcdic_us_to_ibm1047_table, ibm1047_to_ascii_table,
1594 ibm1047_to_iso_8859_1_table, ibm1047_to_ebcdic_us_table): Remove.
1595 (table_convert_char, table_translation, simple_table_translation):
1596 Remove.
1597 (current_host_charset, current_target_charset,
1598 c_target_char_has_backslash_escape_func,
1599 c_target_char_has_backslash_escape_baton): Remove.
1600 (c_parse_backslash_func, c_parse_backslash_baton): Remove.
1601 (host_char_to_target_func, host_char_to_target_baton): Remove.
1602 (target_char_to_host_func, target_char_to_host_baton): Remove.
1603 (cached_iconv_host_to_target, cached_iconv_target_to_host):
1604 Remove.
1605 (lookup_charset_or_error, check_valid_host_charset): Remove.
1606 (set_host_and_target_charsets): Remove.
1607 (set_host_charset, set_target_charset): Remove.
1608 (set_host_charset_sfunc, set_target_charset_sfunc): Rewrite.
1609 (set_target_wide_charset_sfunc): New function.
1610 (show_charset): Print target wide character set.
1611 (host_charset, target_charset): Rewrite.
1612 (target_wide_charset): New function.
1613 (c_target_char_has_backslash_escape): Remove.
1614 (c_parse_backslash): Remove.
1615 (host_letter_to_control_character): New function.
1616 (host_char_print_literally): Remove.
1617 (host_hex_value): New function.
1618 (target_char_to_control_char): Remove.
1619 (cleanup_iconv): New function.
1620 (convert_between_encodings): New function.
1621 (target_char_to_host): Remove.
1622 (struct wchar_iterator): Define.
1623 (make_wchar_iterator, make_cleanup_wchar_iterator, wchar_iterator,
1624 wchar_push_back): New functions.
1625 (do_cleanup_iterator): New function.
1626 (char_ptr): New typedef.
1627 (charsets): New global.
1628 (add_one, find_charset_names): New functions.
1629 (default_charset_names): New global.
1630 (auto_host_charset_name): Likewise.
1631 * aclocal.m4, config.in, configure: Rebuild.
1632 * configure.ac: Call AM_LANGINFO_CODESET.
1633 (GDB_DEFAULT_HOST_CHARSET): Default to UTF-8.
1634 (AM_ICONV): Invoke earlier.
1635 * acinclude.m4: Include codeset.m4. Subst LIBICONV_INCLUDE and
1636 LIBICONV_LIBDIR. Check for libiconv in build tree.
1637 * Makefile.in (LIBICONV_LIBDIR, LIBICONV_INCLUDE): New macros.
1638 (INTERNAL_CFLAGS_BASE): Add LIBICONV_INCLUDE.
1639 (INTERNAL_LDFLAGS): Add LIBICONV_LIBDIR.
1640 * gdb_obstack.h (obstack_grow_wstr): New define.
c2c8d75b
AS
1641 * gdb_wchar.h: New file.
1642 * defs.h: Include it.
6c7a06a3 1643
cb249c71
TT
16442009-03-20 Tom Tromey <tromey@redhat.com>
1645 Jan Kratochvil <jan.kratochvil@redhat.com>
1646
1647 * dwarf2read.c (process_die): Handle DW_TAG_typedef.
1648 * eval.c (evaluate_subexp_standard) <OP_TYPE>: Strip a single
1649 typedef.
1650 * ada-lang.c (decode_packed_array_type): Call CHECK_TYPEDEF on the
1651 SYMBOL_TYPE result.
1652 * ada-typeprint.c (print_array_type): Do the NULL check
1653 unconditionally.
1654
16ad9370
TT
16552009-03-19 Tom Tromey <tromey@redhat.com>
1656
1657 * utils.c (do_obstack_free): New function.
1658 (make_cleanup_obstack_free): Likewise.
1659 * defs.h (make_cleanup_obstack_free): Declare.
1660
36dc683c
DE
16612009-03-18 Doug Evans <dje@google.com>
1662
89ecc4f5
DE
1663 * linux-nat.c (linux_nat_find_memory_regions): Result of PIDGET is an
1664 int, not a long long.
1665 (linux_nat_info_proc_cmd): Store pid in long instead of long long.
1666
a411cd0e
DE
1667 * expprint.c (dump_raw_expression): Print note if non-NULL.
1668
36dc683c
DE
1669 * printcmd.c (display_uses_solib_p): Redo loop, scan element list
1670 backwards.
1671
5b1ba0e5
NS
16722009-03-18 Nathan Sidwell <nathan@codesourcery.com>
1673
1674 * Makefile.in: Update license to GPLv3.
1675 * ada-exp.y: Update license to GPLv3.
1676 * ada-lex.l: Update license to GPLv3.
1677 * c-exp.y: Update license to GPLv3.
1678 * cp-name-parser.y: Update license to GPLv3.
1679 * darwin-nat-info.c: Update license to GPLv3.
1680 * f-exp.y: Update license to GPLv3.
1681 * gdb_thread_db.h: Update license to GPLv3.
1682 * hppanbsd-nat.c: Update license to GPLv3.
1683 * hppanbsd-tdep.c: Update license to GPLv3.
1684 * hppaobsd-tdep.c: Update license to GPLv3.
1685 * jv-exp.y: Update license to GPLv3.
1686 * m2-exp.y: Update license to GPLv3.
1687 * objc-exp.y: Update license to GPLv3.
1688 * p-exp.y: Update license to GPLv3.
1689 * reply_mig_hack.awk: Update license to GPLv3.
1690 * reverse.c: Update license to GPLv3.
1691 * xtensa-xtregs.c: Update license to GPLv3.
1692
8a2492ee
PA
16932009-03-18 Pedro Alves <pedro@codesourcery.com>
1694
1695 * remote.c (remote_close): Don't call generic_mourn_inferior.
1696 (remote_mourn_1): Call generic_mourn_inferior after closing the
1697 target.
1698
5338cef1
PA
16992009-03-18 Pedro Alves <pedro@codesourcery.com>
1700
1701 * remote.c (remote_start_remote): Add missing call to
1702 init_wait_for_inferior in non-stop mode.
1703
717a8278
PA
17042009-03-18 Pedro Alves <pedro@codesourcery.com>
1705
1706 * breakpoint.c (bpstat_should_step): Only consider software
1707 watchpoints that have a location.
1708
7d85a9c0
JB
17092009-03-17 Joel Brobecker <brobecker@adacore.com>
1710
1711 Add a target_ops parameter to the to_kill method in struct target_ops.
1712
1713 * target.h (struct target_ops): Add a "target_ops *" parameter to
1714 method to_kill.
1715 (target_kill): Remove macro. Add declaration.
1716 * target.c (debug_to_kill): Delete, no longer necessary.
1717 (target_kill): New function.
1718 (update_current_target): Stop inheriting the to_kill method.
1719 Do not de_fault it to no_process either.
1720 (setup_target_debug): Do not set current_target.to_kill.
1721 * gnu-nat.c, go32-nat.c, hpux-thread.c, inf-ptrace.c, inf-ttrace.c,
1722 linux-nat.c, monitor.c, nto-procfs.c, procfs.c, remote-m32r-sdi.c,
1723 remote-mips.c, remote-sim.c, remote.c, windows-nat.c: Update
1724 accordingly.
1725
14064aa2
DE
17262009-03-17 Doug Evans <dje@google.com>
1727
1728 * amd64-linux-nat.c (si_timerid,si_overrun): Provide definition for
1729 glibc 2.3.2 and earlier.
1730
f06eadd9
JB
17312009-03-17 Joel Brobecker <brobecker@adacore.com>
1732
1733 * frame.c (get_prev_frame_1): Do not perform the inner_frame
1734 sanity check if this_frame is not NORMAL.
1735 (frame_id_inner): Update the description of this function.
1736
481df73e
HZ
17372009-03-17 Hui Zhu <teawater@gmail.com>
1738
1739 * stack.c: Change the introduce of "disassemble-next-line".
1740
6b251945
PA
17412009-03-17 Pedro Alves <pedro@codesourcery.com>
1742
1743 * mi/mi-main.h (mi_print_timing_maybe): Add strict prototype,
1744 declare as extern.
1745
30c33a9f
HZ
17462009-03-17 Hui Zhu <teawater@gmail.com>
1747
dafb3b41 1748 * stack.c: Include valprint.h.
30c33a9f
HZ
1749 (disassemble_next_line): New enum.
1750 (show_disassemble_next_line): New function. Show the current
1751 value of disassemble-next-line.
1752 (gdb_disassembly_stub_args): New struct for argument passing
1753 between function do_gdb_disassembly and function
1754 gdb_disassembly_stub.
1755 (gdb_disassembly_stub): New function. Helper for
1756 gdb_disassembly.
1757 (do_gdb_disassembly): New function. Use TRY_CATCH to catch
1758 the exception from the gdb_disassembly because it will be
1759 broken by filter sometime.
1760 (print_frame_info): If disassemble-next-line is set to auto
1761 or on and doesn't have the line debug messages for $pc,
1762 output the next instruction.
1763 If disassemble-next-line is set to on and there is line debug
1764 messages, output assembly codes for next line.
1765 (_initialize_stack): Make the "set disassemble-next-line"
1766 command an auto-boolean command. Change its class to
1767 class_stack. Place it in the top level set list. Extend help
1768 to describe the auto mode.
1769
fee0be5d
PA
17702009-03-17 Pedro Alves <pedro@codesourcery.com>
1771
1772 * infrun.c (normal_stop): Don't overwrite old_chain.
1773
a624e111
JB
17742009-03-16 Joel Brobecker <brobecker@adacore.com>
1775
1776 * remote-mips.c (mips_load): Replace call to regcache_set_valid_p,
1777 which is undefined, by call to regcache_invalidate, which should
1778 do what the original author wanted to do.
1779
383c0389
JB
17802009-03-16 Joel Brobecker <brobecker@adacore.com>
1781
1782 * remote-mips.c (mips_mourn_inferior): Add missing ops parameter.
1783 (mips_create_inferior): Likewise.
1784
267fbcde
JB
17852009-03-16 Joel Brobecker <brobecker@adacore.com>
1786
1787 * go32-nat.c (go32_create_inferior): Add missing ops parameter.
1788
da66f6a6
JB
17892009-03-16 Joel Brobecker <brobecker@adacore.com>
1790
1791 * darwin-nat.c (darwin_resume): Fix a compiler warning when
1792 building on x86_64-darwin.
1793
58529c02
JB
17942009-03-16 Tristan Gingold <gingold@adacore.com>
1795
1796 * configure.tgt: Add handling for x86_64-darwin.
1797
ba30a4e9
JK
17982009-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
1799
1800 * auxv.c (fprint_target_auxv): New TAG for AT_RANDOM.
1801
7fc0c7b5
JB
18022009-03-15 Joel Brobecker <brobecker@adacore.com>
1803
1804 * aix-thread.c (aix_thread_thread_alive, aix_thread_pid_to_str):
1805 Use the ops parameter to get to the target beneath, rather than
1806 using the current_target global. Using the current_target global
1807 was an unintended accident.
1808
1ba0a4ee
JB
18092009-03-15 Joel Brobecker <brobecker@adacore.com>
1810
1811 Fix an error happening while loading symbols from a core file
1812 (on AIX).
1813
1814 * rs6000-nat.c (xcoff_relocate_symtab): Use target_has_execution
1815 to detect whether we're debugging a core file or not.
1816
d30acaa7
JB
18172009-03-15 Joel Brobecker <brobecker@adacore.com>
1818
1819 Modernize the aix-thread later by getting rid of the base_target
1820 global. This brings back to life the AIX port which was otherwise
1821 crashing all the time.
1822
1823 * aix-thread.c (base_target): Delete.
1824 (pd_enable): Do not set base_target.
1825 (aix_thread_attach): Use find_target_beneath instead of base_target.
1826 (aix_thread_detach, aix_thread_resume, aix_thread_wait)
1827 (aix_thread_fetch_registers, aix_thread_store_registers),
1828 (aix_thread_xfer_partial, aix_thread_mourn_inferior)
1829 (aix_thread_thread_alive, aix_thread_pid_to_str): Likewise.
1830 (aix_thread_kill): Delete. Does not seem necessary.
1831 (init_aix_thread_ops): Do not set aix_thread_ops.to_kill.
1832
61ff14c6
JK
18332009-03-15 Jan Kratochvil <jan.kratochvil@redhat.com>
1834
1835 * stack.c (return_command <retval_exp>): New variables retval_expr
1836 and old_chain. Inline parse_and_eval to initialize retval_expr. Check
1837 RETVAL_EXPR for UNOP_CAST and set RETURN_TYPE to the RETURN_VALUE type
1838 if RETURN_TYPE is NULL.
1839
0b16c5cf
PA
18402009-03-14 Pedro Alves <pedro@codesourcery.com>
1841
1842 * remote.c (PACKET_qAttached): New.
1843 (remote_query_attached): New.
1844 (remote_add_inferior): Add new `attached' argument. Handle it.
1845 (remote_notice_new_inferior, remote_start_remote): Adjust to pass
1846 -1 to remote_add_inferior in new parameter.
1847 (extended_remote_attach_1): Adjust to pass 1 to
1848 remote_add_inferior in the new parameter.
1849 (extended_remote_create_inferior_1): Adjust to pass 0 to
1850 remote_add_inferior in the new parameter.
1851 (_initialize_remote): Add "set/show remote query-attached-packet"
1852 commands.
1853
9ee6bb93
TT
18542009-03-13 Tom Tromey <tromey@redhat.com>
1855
1856 * symtab.c (lookup_symbol_in_language): Use a cleanup.
1857
787274f0
DE
18582009-03-13 Doug Evans <dje@google.com>
1859
1860 * exceptions.h: Clean up some comments on catch_exceptions usage.
1861 * exceptions.c: Ditto. Plus mark catch_errors as superseded by
1862 catch_exceptions.
1863
24f81874
JB
18642009-02-17 Joel Brobecker <brobecker@adacore.com>
1865
1866 The following patch helps getting rid of a warning inside solib-som.c.
1867
1868 * source.c (source_full_path_of): Constify parameter filename.
1869 * defs.h (source_full_path_of): Update declaration accordingly.
1870
e1578042
JB
18712009-03-12 Joel Brobecker <brobecker@adacore.com>
1872
1873 * ada-lang.c (ada_evaluate_subexp): Merge case BINOP_REM and
1874 BINOP_MOD cases with the handling of case BINOP_DIV and BINOP_MUL.
1875 Remove useless op value checks when EVAL_AVOID_SIDE_EFFECTS.
1876
9c2be529
JB
18772009-03-12 Joel Brobecker <brobecker@adacore.com>
1878
1879 * ada-lang.c (ada_evaluate_subexp) <BINOP_DIV>: make sure to
1880 promote the operands when noside is EVAL_AVOID_SIDE_EFFECTS.
1881
2360f94a 18822009-03-12 Joel Brobecker <brobecker@adacore.com>
e22dccb5
JB
1883
1884 * ada-tasks.c (ada_task_is_alive): Move up and make static.
1885 * ada-lang.h (ada_task_is_alive): Remove declaration.
1886
facc390f
JB
18872009-03-12 Jerome Guitton <guitton@adacore.com>
1888
1889 * ada-lang.c (ada_delta): Change the type of numerators and
1890 denominators to DOUBLEST, as they may not fit into a long.
1891 (scaling_factor): Ditto.
1892
47e729a8
JB
18932009-03-12 Jerome Guitton <guitton@adacore.com>
1894
5c20fa2a 1895 * language.c (lang_bool_type): Set lai->bool_type_symbol to NULL.
47e729a8 1896
b79819ba
JB
18972009-03-12 Joel Brobecker <brobecker@adacore.com>
1898
1899 * ada-lang.c (ada_evaluate_subexp) [OP_VAR_VALUE]: For tagged
1900 types, if we are unable to determine the actual symbol type
1901 from its tag, then use the static approximation instead.
1902
0056e4d5
JB
19032009-03-12 Joel Brobecker <brobecker@adacore.com>
1904
1905 Fix crash printing packed record with packed array.
1906
1907 * ada-lang.c (ada_modulus_from_name): New function.
1908 (ada_modulus): In the case where the type length is bigger than
1909 the size of the type used to hold the bounds, try determining
1910 the modulus from the type name.
1911 (ada_value_primitive_packed_val): Fix bug in the computation of
1912 ntarg causing an out-of-buffer invalid access.
1913
3c513ee6
JB
19142009-03-12 Joel Brobecker <brobecker@adacore.com>
1915
1916 Fix segfault when printing short_integer'last.
1917
1918 * ada-lang.c (ada_find_any_type): Search in the primitive types
1919 if a symbol could not be found.
1920
680f3fad
JB
19212009-03-12 Joel Brobecker <brobecker@adacore.com>
1922
1923 * ada-tasks.c (task_states,long_task_states): Add new states
1924 Activating and Acceptor_Delay_Sleep. Update the description
1925 of state Acceptor_Sleep.
1926
2ab1c2d9
JB
19272009-03-12 Jonas Maebe <jonas.maebe@elis.ugent.be> (obvious change)
1928
1929 Fix a build failure on Darwin following some changes in
1930 the profile of some target_ops methods.
1931
1932 * darwin-nat.c (darwin_kill_inferior): Add target_ops parameter
1933 where missing.
1934 (darwin_stop_inferior, darwin_detach): Likewise.
1935
1f31650a
VP
19362009-03-12 Vladimir Prus <vladimir@codesourcery.com>
1937
1938 Include token in ^running notification for CLI commands.
1939
c2c8d75b
AS
1940 * mi/mi-main.c (mi_execute_command): Set current_token here.
1941 (mi_cmd_execute): Do not set current_token here.
1f31650a 1942
4333ada3
VP
19432009-03-12 Vladimir Prus <vladimir@codesourcery.com>
1944
1945 Fix MI timings.
1946
c2c8d75b
AS
1947 * mi/mi-main.c (mi_print_timing_maybe): New.
1948 (captured_mi_execute_command): Simplify. Output timings to
1949 CLI commands, too.
1950 (mi_execute_async_cli_command): Do not print timings.
1951 * mi/mi-main.h (mi_print_timing_maybe): Declare.
1952 * mi/mi-interp.c (mi_on_normal_stop): Call mi_print_timing_maybe.
4333ada3 1953
c5933f6d
JB
19542009-03-12 Jerome Guitton <guitton@adacore.com>
1955
1956 * xcoffread.c (process_linenos): Check if the line in the
1957 include table refers to the main source file and, if so,
1958 add them to the main subfile.
1959
c7660128
JB
19602009-03-12 Joel Brobecker <brobecker@adacore.com>
1961
1962 Fix a build failure on AIX introduced after a change in the profile
1963 of some of the "methods" in the target_ops structure.
1964 * aix-thread.c: Add missing target_ops parameter throughout.
1965
1966 Implement Ada task switching on AIX.
1967 * aix-thread.c (aix_thread_get_ada_task_ptid): New function.
1968 (init_aix_thread_ops): Set aix_thread_ops.to_get_ada_task_ptid.
1969
c5bc3a77
DJ
19702009-03-11 Daniel Jacobowitz <dan@codesourcery.com>
1971
1972 * breakpoint.c (bpstat_check_breakpoint_conditions): Use
1973 value_mark and value_free_to_mark.
1974 * objfiles.c (free_objfile): Call objfile_free_data before
1975 freeing the BFD.
1976
55518360
HZ
19772009-03-10 Hui Zhu <teawater@gmail.com>
1978
1979 * disasm.c (gdb_disassembly): Remove unused argument
1980 "line_num".
1981 * disasm.h (gdb_disassembly): Ditto.
1982 * cli/cli-cmds.c (print_disassembly): Ditto.
1983 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Ditto.
1984
5fd1a349
PP
19852009-03-09 Paul Pluzhnikov <ppluzhnikov@google.com>
1986
1987 * solib.c (solib_contains_address_p): New function.
1988 (solib_name_from_address): Use it.
1989 * printcmd.c (display_uses_solib_p): Use it.
c2c8d75b
AS
1990 * solib.h (solib_contains_address_p): Declare it.
1991
36746093
JK
19922009-03-09 Jan Kratochvil <jan.kratochvil@redhat.com>
1993
1994 * varobj.c (free_variable): Call value_free.
1995
757a13d0
JK
19962009-03-09 Jan Kratochvil <jan.kratochvil@redhat.com>
1997
1998 PR gdb/9873:
1999 * dwarf2read.c (dwarf_decode_macros): New variable `at_commandline'.
2000 Move the variable `macinfo_type' out of the loop. Create a new
2001 processing pass before the current one to pre-create `current_file'.
2002 New complaint on misplaced zero/non-zero definitions/includes.
2003 Skip first DW_MACINFO_start_file with `at_commandline' set.
2004
c8fa6cdd
VP
20052008-03-09 Vladimir Prus <vladimir@codesourcery.com>
2006
2007 * solib.c (reload_shared_libraries): Give
2008 inferior a chance to reset solib breakpoint.
2009 Reinit frame cache.
2010
41b4aadc
CF
20112009-03-08 Christopher Faylor <me+cygwin@cgf.cx>
2012
2013 * windows-nat.c (dr): Redefine to use largest possible integer which
2014 holds a pointer.
2015 (cygwin_set_dr): Avoid coercion.
2016
20172009-03-08 Oswald Buddenhagen <oswald.buddenhagen@trolltech.de>
2018
14b69f28 2019 * windows-nat.c (windows_create_inferior): Implement --tty handling on
41b4aadc
CF
2020 non-cygwin.
2021
f5c9a895
PP
20222009-03-06 Paul Pluzhnikov <ppluzhnikov@google.com>
2023
2024 Rename solib_address to solib_name_from_address.
2025 * breakpoint.c (insert_bp_location, disable_breakpoints_in_shlibs)
2026 (disable_breakpoints_in_unloaded_shlib): Update.
2027 * printcmd.c (display_uses_solib_p): Likewise.
2028 * stack.c (print_frame): Likewise.
2029 * solib.c: Rename.
2030 * solib.h: Rename.
c2c8d75b 2031
a3247a22
PP
20322009-03-05 Paul Pluzhnikov <ppluzhnikov@google.com>
2033
2034 * printcmd.c (do_one_display): Reparse exp_string.
2035 (display_uses_solib_p): New function.
2036 (clear_dangling_display_expressions): New function.
2037 (_initialize_printcmd): Add observer.
2038 * solib.c (no_shared_libraries): Swap order of calls to
2039 clear_solib and objfile_purge_solibs.
c2c8d75b 2040
d36df9c5
JB
20412009-03-05 Joel Brobecker <brobecker@adacore.com>
2042
2043 Implement the target-specific part of Ada tasking support
2044 on Tru64.
2045
2046 * dec-thread.c (dec_thread_get_ada_task_ptid): New function.
2047 (init_dec_thread_ops): Set the to_get_ada_task_ptid method.
2048
b254c0b2
JB
20492009-03-05 Joel Brobecker <brobecker@adacore.com>
2050
2051 Get rid of the global "base_target" and use "find_target_beneath"
2052 to find the underlying target.
2053 * dec-thread.c (base_target): Delete.
2054 (enable_dec_thread): Remove assignement to base_target.
2055 (dec_thread_detach, dec_thread_wait, dec_thread_wait)
2056 (dec_thread_fetch_registers, dec_thread_store_registers)
2057 (dec_thread_mourn_inferior, dec_thread_pid_to_str):
2058 Update the function profile if necessary.
2059 Use find_target_beneath to call the same method but from
2060 the underlying target, removing the need for "base_target".
2061
2062 * dec-thread.c (dec_thread_get_regsets, dec_thread_set_regsets):
2063 Fix a copy/paste error in a few debug traces...
2064
2065 * solib-osf.c (init_so): Use a simpler method for computing
2066 the size of lm_info structure. This also gets rid of warning
2067 emitted by the compiler.
2068
aae64587
PA
20692009-03-05 Pedro Alves <pedro@codesourcery.com>
2070
2071 * breakpoint.c (check_duplicates_for): Skip permanent breakpoints
2072 duplicates of permanent breakpoints.
2073
1941c569
PA
20742009-03-04 Pedro Alves <pedro@codesourcery.com>
2075
2076 * inferior.h (notice_new_inferior): Declare.
2077 * infcmd.c (notice_new_inferior): New.
2078 * remote.c (remote_add_inferior, remote_add_thread): New.
2079 (notice_new_inferiors): Rename to...
2080 (remote_notice_new_inferior): ... this. Add RUNNING argument.
2081 Use remote_add_thread instead of add_thread, passing it the
2082 RUNNING argument. Add an inferior with remote_add_inferior. If
2083 we just learned about an inferior, call notice_new_inferior.
2084 (record_currthread): Adjust.
2085 (remote_threads_info): Adjust to use remote_notice_new_inferior.
237d4315
PA
2086 (remote_start_remote, extended_remote_attach_1): Use
2087 remote_add_inferior.
1941c569
PA
2088 (process_stop_reply): Adjust. Call remote_notice_new_inferior
2089 after handling expedited registers and watchpoint state.
2090 (extended_remote_create_inferior_1): Use remote_add_inferior.
2091
9bde0732
AR
20922009-03-04 Aleksandar Ristovski <aristovski@qnx.com>
2093
2094 * infcmd.c (registers_info): Remove register number case.
2095
6aa8e5c2
PA
20962009-03-03 Pedro Alves <pedro@codesourcery.com>
2097
2098 * top.c (quit_target): Check for target_has_execution before
2099 killing or detaching from inferiors.
2100
1d59cee5
JB
21012009-03-02 Joel Brobecker <brobecker@adacore.com>
2102
2103 Remove some unused routines.
2104
2105 * ada-lang.c (is_suppressed_name, ada_suppress_symbol_printing):
2106 Delete.
2107 * ada-lang.c (ada_task_list_iterator_ftype)
2108 (iterate_over_live_ada_tasks): Delete.
2109 * ada-tasks.c (ada_get_environment_task, iterate_over_live_ada_tasks):
2110 Delete.
2111
223698f8
DE
21122009-03-01 Doug Evans <dje@google.com>
2113
9af17804
DE
2114 * symtab.c: Remove trailing whitespace throughout the file.
2115 (expand_line_sal): Fix some typos and whitespace.
2116
3c54f140
DE
2117 * Makefile.in (clean): rm -f $(DEPDIR)/*.
2118
2aecd87f
DE
2119 * Makefile.in (GDB_CFLAGS): Add -I$(srcdir)/common.
2120 (init.c): signals/ -> common/.
2121 (signals.o): Update.
2122 * target.h (target_signal_to_string,target_signal_to_string)
2123 (target_signal_from_name,target_signal_to_host_p)
2124 (target_signal_from_host,target_signal_to_host): Move to ...
2125 * common/gdb_signals.h: ... here. New file.
2126 * common/signals.c: Moved here from signals/signals.c.
2127 #include gdb_signals.h, remove #include of target.h in gdb case.
2128 (target_signal_from_command,default_target_signal_to_host)
2129 (default_target_signal_from_host): Move inside #ifndef GDBSERVER.
2130
223698f8
DE
2131 Include thread ID in target_wait debugging output.
2132 * infrun.c (print_target_wait_results): New function.
2133 (wait_for_inferior,fetch_inferior_event): Call it.
2134
93a91755
PA
21352009-02-27 Pedro Alves <pedro@codesourcery.com>
2136
2137 * gdb_proc_service.h (struct ps_prochandle): Replace pid_t field
2138 with a ptid_t field.
2139 * linux-thread-db.c (thread_get_info_callback): Build the ptid
2140 using the pid stored in proc_handle.ptid.
2141 (thread_from_lwp, thread_db_attach_lwp, enable_thread_event)
2142 (check_for_thread_db, thread_db_detach, check_event)
2143 (thread_db_mourn_inferior, find_new_threads_callback)
2144 (thread_db_find_new_threads_1): Adjust.
2145 * proc-service.c (ps_xfer_memory, ps_lgetregs, ps_lsetregs)
2146 (ps_lgetfpregs, ps_lsetfpregs, ps_getpid): Adjust.
2147
b5096abe
PM
21482009-02-27 Phil Muldoon <pmuldoon@redhat.com>
2149
2150 * valprint.c (read_string): Rework clean-up logic. Use
2151 free_current_contents to clean-up buffer.
2152
a2f63f5e
AS
21532009-02-27 Andreas Schwab <schwab@linux-m68k.org>
2154
2155 * MAINTAINERS: Update e-mail address.
2156
83390453
PM
21572009-02-26 Phil Muldoon <pmuldoon@redhat.com>
2158
2159 * python/python-utils.c (python_string_to_unicode): Always return
2160 a new reference.
2161 (python_string_to_target_string): Decrement transient python
2162 instance.
2163 (python_string_to_host_string): Likewise.
2164
21652007-02-26 Pedro Alves <pedro@codesourcery.com>
a0740d21
PA
2166
2167 * mips-linux-nat.c (mips64_linux_fetch_registers): Pass `ops' to
2168 call to super_fetch_registers.
2169 (mips64_linux_store_registers): Pass `ops' to call to
2170 super_store_registers.
2171
89c83b10
DE
21722009-02-25 Doug Evans <dje@google.com>
2173
99361f52
DE
2174 * breakpoint.c (insert_bp_location): Add \n to overlay breakpoint
2175 error message.
2176
1c2af6c4
DE
2177 * breakpoint.c (disable_breakpoints_in_shlibs): Delete local
2178 disabled_shlib_breaks, unused.
2179
89c83b10
DE
2180 * printcmd.c (build_address_symbolic): Fix comment.
2181
9e2f0ad4
HZ
21822009-02-25 Hui Zhu <teawater@gmail.com>
2183
2184 * cli/cli-script.c (define_command): Add _() to query.
2185 * gnu-nat.c (inf_validate_task_sc): Ditto.
2186 * infcmd.c (kill_if_already_running): Ditto.
2187 (jump_command): Ditto.
2188 (attach_command): Ditto.
2189 * inflow.c (kill_command): Ditto.
2190 * infrun.c (handle_command): Ditto.
2191 * maint.c (maintenance_dump_me): Ditto.
2192 * memattr.c (mem_delete_command): Ditto.
2193 * monitor.c (monitor_interrupt_query): Ditto.
2194 * nto-procfs.c (interrupt_query): Ditto.
2195 * printcmd.c (undisplay_command): Ditto.
2196 * remote-mips.c (mips_kill): Ditto.
2197 * remote.c (interrupt_query): Ditto.
2198 * solib-irix.c (irix_open_symbol_file_object): Ditto.
2199 * solib-osf.c (osf_open_symbol_file_object): Ditto.
2200 * solib-pa64.c (pa64_open_symbol_file_object): Ditto.
2201 * solib-som.c (som_open_symbol_file_object): Ditto.
2202 * solib-svr4.c (open_symbol_file_object): Ditto.
2203 * symfile.c (symbol_file_add_with_addrs_or_offsets): Ditto.
2204 * target.c (kill_or_be_killed): Ditto.
2205 * tracepoint.c (delete_trace_command): Ditto.
2206 * top.c (quit_confirm): Add _() to s that will be used
2207 in query.
2208
02529b48
PM
22092009-02-24 Pierre Muller <muller@ics.u-strasbg.fr>
2210
2211 Fix windows-nat.c compilation failure.
2212
2213 * windows-nat.c (windows_thread_alive): Fix forward declaration.
2214 (get_windows_debug_event): Add ops parameter to call to windows_resume.
2215
2fb89e62
PA
22162009-02-23 Pedro Alves <pedro@codesourcery.com>
2217
2218 * remote-sim.c (gdbsim_resume): Add target_ops* argument.
2219
6f43c46f
JB
22202009-02-23 Jay Krell <jay.krell@cornell.edu> (tiny change)
2221
2222 * symtab.c (find_line_symtab): Initialize exact to avoid
2223 a compiler warning.
2224
84e473c8
PA
22252009-02-23 Pedro Alves <pedro@codesourcery.com>
2226
2227 * i386-linux-nat.c (i386_linux_fetch_inferior_registers): Pass
2228 `ops' to recursive call.
2229
28439f5e
PA
22302009-02-23 Pedro Alves <pedro@codesourcery.com>
2231
2232 * corelow.c (get_core_registers): Adjust.
2233 (core_file_thread_alive): Rename to...
2234 (core_thread_alive): ... this.
2235 (core_pid_to_str): Try gdbarch_core_pid_to_str first.
2236 (init_core_ops): Adjust.
2237 (coreops_suppress_target): Delete.
2238 (_initialize_corelow): Unconditionally add core_ops.
2239 * procfs.c: Include "inf-child.h".
2240 (procfs_ops): Delete.
2241 (init_procfs_ops): Delete. Reimplement as...
2242 (procfs_target): ... this, inheriting from inf-child.
2243 (procfs_attach, procfs_detach, procfs_fetch_registers): Adjust.
2244 (procfs_prepare_to_store): Delete.
2245 (procfs_store_registers, procfs_resume): Adjust.
2246 (procfs_open): Delete.
2247 (procfs_suppress_run): Delete.
2248 (procfs_can_run): Delete.
2249 (procfs_mourn_inferior): Adjust.
2250 (procfs_init_inferior): Add target_ops parameter. Adjust.
2251 (procfs_create_inferior): Don't pass procfs_init_inferior to
2252 fork_inferior. Instead call it after fork_inferior returns.
2253 (procfs_find_new_threads): Adjust.
2254 (_initialize_procfs): Adjust to use procfs_target instead of
2255 init_procfs_ops.
2256 * sol-thread.c (orig_core_ops, sol_core_ops): Delete.
2257 (lwp_to_thread): Use target_thread_alive.
2258 (sol_thread_open): Delete.
2259 (sol_thread_attach): Delete.
2260 (sol_thread_detach, sol_thread_resume, sol_thread_wait)
2261 (sol_thread_fetch_registers, sol_thread_store_registers): Adjust
2262 to use find_target_beneath.
2263 (sol_thread_prepare_to_store, sol_thread_xfer_memory): Delete.
2264 (sol_thread_xfer_partial): Adjust to use find_target_beneath.
2265 (sol_thread_files_info, sol_thread_kill_inferior): Delete.
2266 (check_for_thread_db): New.
2267 (sol_thread_notice_signals, sol_thread_create_inferior): Delete.
2268 (sol_thread_new_objfile): Call check_for_thread_db.
2269 (sol_thread_mourn_inferior): Adjust to use find_target_beneath.
2270 (sol_thread_can_run): Delete.
2271 (sol_thread_alive): Adjust to use find_target_beneath.
2272 (sol_thread_stop): Delete.
2273 (rw_common): Use target_write_memory or target_read_memory.
2274 (ps_lgetregs, ps_lgetfpregs): Use target_fetch_registers.
2275 (ps_lsetregs, ps_lsetfpregs): Use target_store_registers.
2276 (solaris_pid_to_str): Remove check for libthread_db initialization
2277 failing.
2278 (sol_find_new_threads): Remove check for libthread_db
2279 initialization failing, or for an invalid inferior_ptid. Adjust
2280 to use find_target_beneath.
2281 (sol_core_open, sol_core_close, sol_core_detach,
2282 sol_core_files_info, sol_find_memory_regions,
2283 sol_make_note_section, ignore): Delete.
2284 (init_sol_thread_ops): Make it a thread_stratum target. Remove
2285 unneeded callback settings.
2286 (init_sol_core_ops): Delete.
2287 (_initialize_sol_thread): No longer call init_sol_core_ops, set
2288 procfs_suppress_run, or hack with core_ops.
2289
2290 * target.h (struct target_ops): Add a target_ops * parameter to
2291 to_resume, to_fetch_registers, to_store_registers, to_thread_alive
2292 and to_find_new_threads.
2293 (target_fetch_registers, target_store_registers)
2294 (target_thread_alive, target_find_new_threads): Redeclare as
2295 function.
a2f63f5e 2296
28439f5e
PA
2297 * target.c (update_current_target): Do not inherit or de_fault
2298 to_resume, to_fetch_registers, to_store_registers,
2299 to_thread_alive, to_find_new_threads.
2300 (target_resume): Adjust.
2301 (target_thread_alive, target_find_new_threads): New.
2302 (debug_to_resume, debug_to_fetch_registers): Delete.
2303 (target_fetch_registers): New.
2304 (debug_to_store_registers): Delete.
2305 (target_store_registers): New.
2306 (debug_to_thread_alive, debug_to_find_new_threads): Delete.
2307 (setup_target_debug): Adjust.
a2f63f5e 2308
28439f5e 2309 * gdbcore.h (core_ops): Delete declaration.
a2f63f5e 2310
28439f5e
PA
2311 * inf-ptrace.c, linux-nat.c, remote.c, amd64-linux-nat.c,
2312 inf-child.c, linux-thread-db.c, bsd-uthread.c, inf-ttrace.c,
2313 i386-sol2-tdep.c, darwin-nat.c, gnu-nat.c, go32-nat.c,
2314 hpux-thread.c, i386-linux-nat.c, i386fbsd-nat.c, monitor.c,
2315 nto-procfs.c, remote-m32r-sdi.c, remote-mips.c, windows-nat.c,
2316 alphabsd-nat.c, amd64bsd-nat.c, arm-linux-nat.c, armnbsd-nat.c,
2317 bsd-kvm.c, hppa-hpux-nat.c, hppa-linux-nat.c, hppabsd-nat.c,
2318 hppanbsd-nat.c, i386-darwin-nat.c, i386bsd-nat.c,
2319 ia64-linux-nat.c, m32r-linux-nat.c, m68kbsd-nat.c,
2320 m68klinux-nat.c, m88kbsd-nat.c, mips-linux-nat.c,
2321 mips64obsd-nat.c, mipsnbsd-nat.c, ppc-linux-nat.c, ppcnbsd-nat.c,
2322 ppcobsd-nat.c, remote-sim.c, rs6000-nat.c, s390-nat.c,
2323 shnbsd-nat.c, sparc-nat.c, sparc-nat.h, spu-linux-nat.c,
2324 vaxbsd-nat.c, xtensa-linux-nat.c: Adjust to target_ops changes.
2325
2326 * gdbarch.sh (core_pid_to_str): New gdbarch callback.
2327 * gdbarch.h, gdbarch.c: Regenerate.
2328
2329 * sol2-tdep.c: Include "inferior.h".
2330 (sol2_core_pid_to_str): New.
2331 * sol2-tdep.h (sol2_core_pid_to_str): Declare.
2332
2333 * amd64-sol2-tdep.c (amd64_sol2_init_abi): Set it.
2334 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Set it.
2335 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Set it.
2336 * i386-sol2-tdep.c (i386_sol2_init_abi): Set it.
2337
907083d1
DE
23382009-02-22 Doug Evans <dje@google.com>
2339
2340 * exec.c (exec_file_attach): Fix comment.
2341
63807e1d
PA
23422009-02-22 Pedro Alves <pedro@codesourcery.com>
2343
2344 Silence a few -Wmissing-prototypes warnings.
2345
2346 PR build/9877:
a2f63f5e 2347 * alpha-linux-tdep.c (alpha_linux_regset_from_core_section): Make
63807e1d 2348 it static.
a2f63f5e
AS
2349 * alpha-osf1-tdep.c (_initialize_alpha_osf1_tdep): Declare.
2350 * amd64fbsd-tdep.c (amd64fbsd_init_abi): Make it static.
2351 * amd64nbsd-tdep.c (_initialize_amd64nbsd_ndep): Rename to ...
63807e1d
PA
2352 (_initialize_amd64nbsd_tdep): ... this.
2353 * arm-linux-tdep.c (arm_linux_software_single_step): Make it static.
2354 (_initialize_arm_linux_tdep): Declare.
2355 * armbsd-tdep.c (armbsd_fpreg_offset): Make it static.
2356 * armnbsd-tdep.c (_initialize_arm_netbsd_tdep): Declare.
2357 * armobsd-tdep.c (_initialize_armobsd_tdep): Declare.
2358 * avr-tdep.c (avr_return_value): Make it static.
2359 (avr_frame_unwind_cache): Ditto.
2360 * bsd-uthread.c (bsd_uthread_inferior_created): Ditto.
2361 (bsd_uthread_solib_loaded): Ditto.
2362 (bsd_uthread_solib_unloaded): Ditto.
2363 (bsd_uthread_target): Ditto.
2364 (_initialize_bsd_uthread): Declare.
2365 * cris-tdep.c (crisv32_single_step_through_delay): Make it static.
2366 (cris_frame_unwind_cache): Ditto.
2367 * frv-tdep.c (frv_return_value): Ditto.
2368 * h8300-tdep.c (h8300_use_struct_convention): Ditto.
2369 (h8300h_use_struct_convention): Ditto.
2370 * hppa-tdep.c (hppa_sign_extend, hppa_low_hppa_sign_extend):
2371 Ditto.
2372 * hppa-tdep.h (hppa_low_sign_extend, hppa_sign_extend): Delete
2373 declarations.
2374 * hppabsd-tdep.c: Include hppabsd-tdep.h.
2375 (hppabsd_find_global_pointer): Make it static.
2376 * hppabsd-tdep.h: New.
2377 * hppanbsd-tdep.c: Include hppabsd-tdep.h.
2378 (hppabsd_init_abi): Remove declaration.
2379 (_initialize_hppabsd_tdep): Remove declaration.
2380 (_initialize_hppanbsd_tdep): Declare.
2381 * hppaobsd-tdep.c: Include hppabsd-tdep.h.
2382 (hppabsd_init_abi): Delete declaration.
2383 (hppaobsd_init_abi): Make it static.
2384 * i386-nto-tdep.c (_initialize_i386nto_tdep): Declare.
2385 * i386nbsd-tdep.c (_initialize_i386nbsd_tdep): Declare.
2386 * ia64-linux-tdep.c (_initialize_ia64_linux_tdep): Declare.
2387 * ia64-tdep.c (ia64_register_reggroup_p): Make it static.
2388 * iq2000-tdep.c (_initialize_iq2000_tdep): Declare.
2389 * m32c-tdep.c (m32c_register_reggroup_p): Make it static.
2390 (m32c_analyze_prologue, m32c_virtual_frame_pointer): Ditto.
2391 (_initialize_m32c_tdep): Declare.
2392 * m32r-rom.c (_initialize_m32r_rom): Declare.
2393 * m32r-tdep.c (m32r_skip_prologue): Make it static.
2394 (m32r_return_value): Ditto.
2395 * m68hc11-tdep.c (m68hc11_frame_unwind_cache): Make it static.
2396 (m68hc11_return_value): Ditto.
2397 * m68klinux-tdep.c (_initialize_m68k_linux_tdep): Declare.
2398 * m88k-tdep.c (m88k_frame_cache): Make it static.
2399 * mep-tdep.c (mep_gdb_print_insn): Ditto.
2400 (mep_return_value): Ditto.
2401 (_initialize_mep_tdep): Declare.
2402 * mips-irix-tdep.c (_initialize_mips_irix_tdep): Declare.
2403 * mips-linux-tdep.c (supply_64bit_reg): Make it static.
2404 (mips_linux_syscall_next_pc): Ditto.
2405 (_initialize_mips_linux_tdep): Declare.
2406 * mips-tdep.c (mips_single_step_through_delay): Make it static.
2407 * mipsnbsd-tdep.c (_initialize_mipsnbsd_tdep): Declare.
2408 * mn10300-linux-tdep.c (_initialize_mn10300_linux_tdep): Declare.
2409 * mn10300-tdep.c (_initialize_mn10300_tdep): Declare.
2410 * mt-tdep.c (_initialize_mt_tdep): Declare.
2411 * nbsd-tdep.c: Include nbsd-tdep.h.
2412 * nto-tdep.c (find_load_phdr): Make it static.
2413 (_initialize_nto_tdep): Declare.
2414 * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint): Make it
2415 static.
2416 (_initialize_ppc_linux_tdep): Declare.
2417 * remote-m32r-sdi.c (m32r_can_use_hw_watchpoint)
2418 (m32r_insert_watchpoint, m32r_remove_watchpoint)
2419 (m32r_stopped_data_address, m32r_stopped_by_watchpoint): Make
2420 static.
2421 * rs6000-aix-tdep.c (_initialize_rs6000_aix_tdep): Declare.
2422 * rs6000-nat.c: Include xcoffread.h.
2423 (find_toc_address): Don't extern declare get_toc_offset. Adjust
2424 to call xcoff_get_to_offset.
2425 * rs6000-tdep.c (ppc_vsx_support_p, ppc_displaced_step_fixup)
2426 (rs6000_skip_main_prologue, rs6000_in_solib_return_trampoline)
2427 (rs6000_skip_trampoline_code): Make static.
2428 * s390-tdep.c (s390_regset_from_core_section): Ditto.
2429 * sh-tdep.c (sh_register_reggroup_p): Ditto.
2430 * shnbsd-tdep.c (shnbsd_regset_from_core_section): Ditto.
2431 (_initialize_shnbsd_tdep): Declare.
2432 * solib-frv.c (displacement_from_map): Make static.
2433 (_initialize_frv_solib): Declare.
2434 * solib-irix.c (fetch_lm_info): Make static.
2435 (_initialize_irix_solib): Declare.
2436 * solib-som.c: Include solib-som.h.
2437 (som_solib_select): Line break.
2438 * sparc-tdep.c (sparc_regset_from_core_section): Make static.
2439 * sparcnbsd-tdep.c (_initialize_sparnbsd_tdep): Rename to ...
2440 (_initialize_sparcnbsd_tdep): ... this.
2441 * spu-tdep.c (spu_software_single_step): Make it static.
2442 (_initialize_spu_tdep): Declare.
2443 * vax-tdep.c (vax_frame_cache): Make it static.
2444 * xcoffread.c: Include xcoffread.h.
2445 (get_toc_offset): Rename to ...
2446 (xcoff_get_toc_offset): ... this.
2447 (_initialize_xcoffread): Declare.
2448 * xcoffread.h: New.
2449 * xtensa-linux-tdep.c (_initialize_xtensa_linux_tdep): Declare.
2450 * xtensa-tdep.c (xtensa_skip_prologue, xtensa_derive_tdep): Make
2451 static.
2452 (_initialize_xtensa_tdep): Declare.
2453
2c0b251b
PA
24542008-02-21 Pedro Alves <pedro@codesorcery.com>
2455
2456 Silence a few -Wmissing-prototypes warnings.
2457
2458 PR build/9877:
2459 * amd64-nat.c: Include "amd64-nat.h".
2460 * fork-child.c (_initialize_fork_child): Ditto.
2461 * gcore.c (_initialize_gcore): Ditto.
2462 * inf-ptrace.c: Include "inf-ptrace.h".
2463 (inf_ptrace_store_registers): Make it static.
2464 * linux-nat.c (linux_nat_terminal_ours): Make it static.
2465 (_initialize_linux_nat): Declare before definition.
2466 * linux-tdep.c: Include "linux-tdep.h".
2467 * linux-thread-db.c (_initialize_thread_db): Declare before
2468 definition.
2469 * proc-service.c (_initialize_proc_service): Ditto.
2470 * remote.c (remote_send_printf): Make it static.
2471 * solib.c: Include "solib.h".
2472 * symfile-mem.c (_initialize_symfile_mem): Declare before
2473 definition.
2474 * ada-lang.c (ada_la_decode, ada_match_name)
2475 (ada_suppress_symbol_printing, ada_is_array_type)
2476 (ada_value_ptr_subscript, ada_array_length)
2477 (ada_to_static_fixed_value): Make them static.
2478 (_initialize_ada_language): Declare before definition.
2479 * ada-tasks.c (ada_get_task_number, ada_get_environment_task)
2480 (ada_task_list_changed, ada_new_objfile_observer): Make them
2481 static.
2482 (_initialize_tasks): Declare before definition.
2483 * addrmap.c (_initialize_addrmap): Declare before definition.
2484 * auxv.c (default_auxv_parse): Make it static.
2485 * bfd-target.c (target_bfd_xfer_partial, target_bfd_xclose): Make
2486 them static.
2487 * breakpoint.c (remove_sal): Add line break.
2488 (expand_line_sal_maybe): Make it static.
2489 * cp-name-parser.y: Include "cp-support.h".
2490 * cp-valprint.c (cp_find_class_member): Make it static.
2491 * eval.c (value_f90_subarray): Ditto.
2492 * exceptions.c (print_any_exception): Ditto.
2493 * findcmd.c (_initialize_mem_search): Declare before definition.
2494 * frame.c (frame_observer_target_changed): Make it static.
2495 * gnu-v3-abi.c (gnuv3_find_method_in): Make it static.
2496 * inf-child.c: Include "inf-child.h".
2497 * inferior.h (valid_inferior_id): Rename to ...
2498 (valid_gdb_inferior_id): ... this.
2499 * infrun.c (infrun_thread_stop_requested, siginfo_make_value):
2500 Make them static.
2501 * jv-lang.c (java_language_arch_info): Make it static.
2502 * m2-typeprint.c (m2_get_discrete_bounds): Ditto.
2503 * osdata.c (info_osdata_command): Make it static.
2504 * regcache.c (regcache_observer_target_changed): Make it static.
2505 * reverse.c (_initialize_reverse): Declare before definition.
2506 * stabsread.c (cleanup_undefined_types_noname)
2507 (cleanup_undefined_types_1): Make them static.
2508 * symfile.c (place_section): Make it static.
2509 * symtab.c (find_pc_sect_psymtab_closer): Make it static.
2510 * target-descriptions.c (_initialize_target_descriptions): Declare
2511 before definition.
2512 * target.c (default_get_ada_task_ptid, find_default_can_async_p)
2513 (find_default_is_async_p, find_default_supports_non_stop): Make
2514 them static.
2515 (target_supports_non_stop): Add prototype.
2516 (dummy_pid_to_str): Make it static.
2517 * utils.c (_initialize_utils): Declare before definition.
2518 * ada-exp.y (_initialize_ada_exp): Declare before definition.
2519 * solib-svr4.c (HAS_LM_DYNAMIC_FROM_LINK_MAP): Add a prototype.
2520 * target.h (struct target_ops): Add a prototype to the
2521 to_can_execute_reverse callback.
a2f63f5e
AS
2522 * macroscope.c (_initialize_macroscope): Declare before definition.
2523 * cp-namespace.c (_initialize_cp_namespace): Declare before definition.
2c0b251b
PA
2524 * python/python.c (_initialize_python): Declare before definition.
2525 * tui/tui-command.c: Include "tui/tui-command.h".
2526 * tui/tui-data.c (init_content_element, init_win_info): Make them
2527 static.
2528 * tui/tui-disasm.c: Include "tui/tui-disasm.h".
2529 * tui/tui-interp.c (_initialize_tui_interp): Declare before
2530 definition.
2531 * tui/tui-layout.c: Include "tui/tui-layout.h".
2532 (_initialize_tui_layout): Declare before definition.
2533 * tui/tui-regs.c: Include "tui/tui-regs.h".
2534 (tui_display_reg_element_at_line): Make it static.
2535 (_initialize_tui_regs): Declare before definition.
2536 * tui/tui-stack.c (_initialize_tui_stack): Declare before
2537 definition.
2538 * tui/tui-win.c: Include "tui/tui-win.h".
2539 (_initialize_tui_win): Declare before definition.
2540 (tui_sigwinch_handler): Make it static. Wrap in ifdef SIGWINCH.
2541 * tui/tui-win.h (tui_sigwinch_handler): Delete declaration.
2542 (tui_get_cmd_list): Add a prototype.
2543 * tui/tui-windata.c: Include tui-windata.h.
2544 * tui/tui-wingeneral.c (box_win): Make it static.
2545 * cli/cli-logging.c (show_logging_command): Make it static.
2546 (_initialize_cli_logging): Declare before definition.
2547 * mi/mi-common.c (_initialize_gdb_mi_common): Declare before
2548 definition.
2549
5aca5a82
PM
25502009-02-20 Pierre Muller <muller@ics.u-strasbg.fr>
2551
08c1f091 2552 Extend use of i386_use_watchpoints to all i386 native files
5aca5a82 2553 using hardware watchpoints.
08c1f091
DE
2554 * go32-nat.c (init_go32_ops): Call i386_use_watchpoints.
2555 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Ditto.
2556 * windows-nat.c (init_windows_ops): Ditto.
2557 * config/i386/nm-cygwin.h: Define I386_WATCHPOINTS_IN_TARGET_VECTOR.
2558 * config/i386/nm-cygwin64.h: Ditto.
2559 * config/i386/nm-fbsd.h: Ditto.
2560 * config/i386/nm-go32.h: Ditto.
5aca5a82 2561
1db300f1
JB
25622009-02-19 Joel Brobecker <brobecker@adacore.com>
2563
2564 * ada-typeprint.c (ada_typedef_print): Remove. Unused.
2565
c86cf029
VP
25662009-02-18 Vladimir Prus <vladimir@codesourcery.com>
2567
2568 * mi/mi-interp.c (mi_solib_loaded, mi_solib_unloaded): New.
2569 (mi_interpreter_init): Register the above.
2570 * solib.c (clear_solib): Notify solib unload.
2571 * breakpoint.c (disable_breakpoints_in_unloaded_shlib): Do not
2572 disable breakpoints on a.out targets.
2573
3ea85240
VP
25742009-02-17 Vladimir Prus <vladimir@codesourcery.com>
2575
2576 * observer.c (observer_test_first_notification_function)
2577 (observer_test_second_notification_function)
2578 (observer_test_third_notification_function): Adjust prototype.
2579
4c1d2973
PA
25802009-02-17 Pedro Alves <pedro@codesourcery.com>
2581
2582 * Makefile.in (ALL_64_TARGET_OBS): Add amd64-dicos-tdep.o.
2583 (ALL_TARGET_OBS): Add dicos-tdep.o.
2584 (ALLDEPFILES): Add amd64-dicos-tdep.c and dicos-tdep.c.
2585 * configure.tgt (i[34567]86-*-dicos*): Add dicos-tdep.o to
2586 gdb_target_obs.
2587 (x86_64-*-dicos*): Add dicos-tdep.o and amd64-dicos-tdep.o to
2588 gdb_target_obs.
2589 * dicos-tdep.h, dicos-tdep.c: New.
2590 * amd64-dicos-tdep.c: New.
2591 * i386-dicos-tdep.c: Don't include solib.h, solib-target.h or
2592 inferior.h. Include dicos-tdep.h.
2593 (i386_dicos_init_abi): Call dicos_init_abi.
2594 (i386_dicos_bfd_has_symbol_p): Delete.
2595 (i386_dicos_osabi_sniffer): Use dicos_load_module_p.
2596
2597 * NEWS: Mention x86-64 DICOS target support.
2598
1903f0e6
DE
25992009-02-16 Doug Evans <dje@google.com>
2600
2601 * amd64-tdep.c (amd64_skip_prefixes): Renamed from skip_prefixes.
2602 All callers updated.
2603 (amd64_get_insn_details): Handle more 3-byte opcode insns.
2604 (amd64_breakpoint_p): Delete.
2605 (amd64_displaced_step_fixup): When fixing up after stepping an int3,
2606 don't back up pc to the start of the int3.
2607 * i386-tdep.c: #include opcode/i386.h.
2608 (i386_skip_prefixes): New function.
2609 (i386_absolute_jmp_p): Constify argument.
2610 (i386_absolute_call_p,i386_ret_p,i386_call_p,i386_syscall_p): Ditto.
2611 (i386_breakpoint_p): Delete.
2612 (i386_displaced_step_fixup): Handle unnecessary or redundant prefixes.
2613 When fixing up after stepping an int3, don't back up pc to the start
2614 of the int3.
2615
959b8724
PA
26162009-02-16 Pedro Alves <pedro@codesourcery.com>
2617
2618 * corelow.c (core_close): Don't hardcode the core's pid.
2619 (core_open): Find core threads before calling
2620 post_create_inferior.
2621 (add_to_thread_list, get_core_register_section): Take into account
2622 systems where the regset section names encode the pid of the
2623 inferior.
2624
2625 * gdbarch.sh (core_reg_section_encodes_pid): New gdbarch setting.
2626 * gdbarch.h, gdbarch.c: Regenerate.
2627
2628 * amd64-sol2-tdep.c (amd64_sol2_init_abi): Set it.
2629 * i386-sol2-tdep.c (i386_sol2_init_abi): Set it.
2630 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Set it.
2631 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Set it.
2632
1d33d6ba
VP
26332009-02-14 Vladimir Prus <vladimir@codesourcery.com>
2634
2635 Include frame information for *stopped due to CLI commands.
2636
a2f63f5e
AS
2637 * ada-tasks.c (ada_normal_stop_observer): Adjust prototype.
2638 * infcmd.c (finish_command_continuation): Pass '1' for
2639 'print_frame' parameter to the observer.
2640 * infrun.c (normal_stop): Don't print mi-specific information
2641 here. Pass 'stop_print_frame' to the 'print_frame' parameter
2642 of the observer.
2643 * mi/mi-interp.c (mi_on_normal_stop): Adjust prototype.
2644 If we need to print frame, and current uiout is not the MI one,
2645 print frame again.
1d33d6ba 2646
2ff5e605
PM
26472009-02-13 Pierre Muller <muller@ics.u-strasbg.fr>
2648
2649 * xtensa-tdep.c (call0_analyze_prologue): Delete BSZ macro.
2650 Replace BSZ macro uses by XTENSA_ISA_BSZ macro.
2651
5d7cb8df
JK
26522009-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
2653
2654 PR fortran/9806
2655 * dwarf2read.c (process_die <DW_TAG_module>, read_module)
2656 (scan_partial_symbols <DW_TAG_module>, add_partial_module): New.
2657
868a0084
PM
26582009-02-11 Pierre Muller <muller@ics.u-strasbg.fr>
2659
2660 * dwarf2read.c (read_base_type): Set code to TYPE_CODE_CHAR
5d7cb8df 2661 for DW_ATE_signed_char and DW_ATE_unsigned_char
868a0084
PM
2662 for pascal language.
2663
42e2132c
JK
26642009-02-11 Jim Meyering <meyering@redhat.com>
2665 Jan Kratochvil <jan.kratochvil@redhat.com>
2666
2667 Avoid NULL dereference.
2668 * stack.c (return_command): Guard use of SYMBOL_TYPE (thisfun).
2669 New variable func_type.
2670
315aef0a
PA
26712009-02-11 Pedro Alves <pedro@codesourcery.com>
2672
2673 * gdbarch.c: Regenerate.
2674
58159490
PM
26752009-02-10 Pierre Muller <muller@ics.u-strasbg.fr>
2676
2677 * p-lang.c (is_pascal_string_type): Fix comment.
2678 Determine exact size of char elements for GPC
2679 strings.
2680 (pascal_printstr): Handle char width of 2 or 4.
2681 * p-valprint.c (pascal_val_print): Handle char
2682 of width 2 or 4.
a2f63f5e 2683
d3f36a39
DJ
26842009-02-07 Daniel Jacobowitz <dan@codesourcery.com>
2685
2686 * dwarf2read.c (dwarf2_build_psymtabs_hard): Move lowpc and highpc
2687 inside the loop. Only call addrmap_set_empty if the compilation unit
2688 had DW_AT_high_pc and DW_AT_low_pc. Update call to
2689 scan_partial_symbols.
2690 (scan_partial_symbols): Take NEED_PC argument and pass it along with
2691 LOWPC and HIGHPC.
2692 (add_partial_namespace): Take NEED_PC argument and pass it through.
2693 (add_partial_subprogram): Take NEED_PC argument. Update the addrmap
2694 if necessary.
2695
47a3467a
PA
26962009-02-07 Pedro Alves <pedro@codesourcery.com>
2697
2698 * NEWS: Mention inspecting extra signal information, $_siginfo,
2699 and the qXfer:siginfo:read and qXfer:siginfo:write packets.
2700
1ef18d08
PA
27012009-02-07 Pedro Alves <pedro@codesourcery.com>
2702
2703 * linux-nat.c (PTRACE_SETSIGINFO): Define if PTRACE_GETSIGINFO
2704 isn't defined.
2705
5b009018
PA
27062009-02-06 Pedro Alves <pedro@codesourcery.com>
2707
2708 * amd64-linux-nat.c (compat_int_t, compat_uptr_t, compat_time_t)
2709 (compat_timer_t, compat_clock_t, struct compat_timeval)
2710 (compat_sigval_t, compat_siginfo_t): New types.
2711 (cpt_si_pid, cpt_si_uid, cpt_si_timerid, cpt_si_overrun)
2712 (cpt_si_status, cpt_si_utime, cpt_si_stime, cpt_si_ptr)
2713 (cpt_si_addr, cpt_si_band, cpt_si_fd): New defines.
2714 (compat_siginfo_from_siginfo, siginfo_from_compat_siginfo)
2715 (amd64_linux_siginfo_fixup): New.
2716 * linux-nat.c (linux_nat_siginfo_fixup): New.
2717 (siginfo_fixup): New.
2718 (linux_xfer_siginfo): Use siginfo_fixup to convert between the
2719 siginfo layout expected by ptrace and the siginfo layout of the
2720 inferior.
2721 (linux_nat_set_siginfo_fixup): New.
2722 * linux-nat.h (linux_nat_set_siginfo_fixup): Declare.
2723
4aa995e1
PA
27242009-02-06 Pedro Alves <pedro@codesourcery.com>
2725
2726 * target.h (enum target_object): Add new TARGET_OBJECT_SIGNAL_INFO.
2727 * infrun.c (siginfo_value_read, siginfo_value_write): New.
2728 (siginfo_value_funcs): New.
2729 (siginfo_make_value): New.
2730 (_initialize_infrun): Create the $_siginfo convenience variable.
2731 * gdbtypes.h (append_composite_type_field_aligned): Declare.
2732 * gdbtypes.c (append_composite_type_field): Rename to...
2733 (append_composite_type_field_aligned): ... this. Add ALIGNMENT
2734 argument. Handle it.
2735 (append_composite_type_field): Rewrite on top of
2736 append_composite_type_field_aligned.
2737 * value.h (internalvar_make_value): New typedef.
2738 (struct internalvar) <make_value>: New field.
2739 (create_internalvar_type_lazy): Declare.
2740 * value.c (create_internalvar): Clear make_value.
2741 (create_internalvar_type_lazy): New.
2742 (value_of_internalvar): If make_value is set use it.
2743 (preserve_values): Skip internal variables that don't have a
2744 value.
2745 * gdbarch.sh (get_siginfo_type): New.
2746 * gdbarch.h, gdbarch.c: Regenerate.
2747
2748 * linux-tdep.h, linux-tdep.c: New.
2749 * amd64-linux-tdep.c: Include "linux-tdep.h".
2750 (amd64_linux_init_abi): Register linux_get_siginfo_type and
2751 linux_get_siginfo_mapper.
2752 * i386-linux-tdep.c: Include "linux-tdep.h".
2753 (i386_linux_init_abi): Register linux_get_siginfo_type and
2754 linux_get_siginfo_mapper.
2755 * arm-linux-tdep.c: Include "linux-tdep.h".
2756 (i386_linux_init_abi): Register linux_get_siginfo_type and
2757 linux_get_siginfo_mapper.
2758
2759 * linux-nat.c (linux_xfer_siginfo): New.
2760 (linux_nat_xfer_partial): Handle TARGET_OBJECT_SIGNAL_INFO.
2761 * remote.c (PACKET_qXfer_siginfo_read)
2762 (PACKET_qXfer_siginfo_write): New.
2763 (feature remote_protocol_features): Add "qXfer:siginfo:read" and
2764 "qXfer:siginfo:write" features.
2765 (remote_xfer_partial): Handle TARGET_OBJECT_SIGNAL_INFO.
2766 (_initialize_remote): Add "set/show remote read-siginfo-object"
2767 and "set/show remote write-siginfo-object" commands.
2768
2769 * Makefile.in (ALL_TARGET_OBS): Add linux-tdep.o.
2770 (HFILES_NO_SRCDIR): Add linux-tdep.h.
2771 (ALLDEPFILES): Add linux-tdep.c.
a2f63f5e 2772
4aa995e1
PA
2773 * configure.tgt (arm*-*-linux* | arm*-*-uclinux*)
2774 (i[34567]86-*-linux*, x86_64-*-linux*): Add linux-tdep.o to
2775 gdb_target_obs.
2776
5f5233d4
PA
27772009-02-06 Jim Blandy <jimb@codesourcery.com>
2778 Daniel Jacobowitz <dan@codesourcery.com>
2779 Vladimir Prus <vladimir@codesourcery.com>
2780 Pedro Alves <pedro@codesourcery.com>
2781
2782 * defs.h (enum lval_type): New value: lval_computed.
2783 * value.h (struct lval_funcs): New type.
2784 (allocate_computed_value, value_computed_funcs)
2785 (value_computed_closure): New declarations.
2786 * value.c (struct value): Add a structure to the location union
2787 for computed lvalues, containing 'funcs' and 'closure' members.
2788 (allocate_computed_value, value_computed_funcs)
2789 (value_computed_closure): New functions.
2790 (value_free): For computed lvalues, call the closure's
2791 'free_closure' function before freeing the value itself.
2792 (value_copy): If we're copying an lval_computed value, call the
2793 closure's 'copy_closure' function.
2794 (set_value_component_location): If the original value is a
2795 computed lvalue, then call the closure's 'copy_closure' function.
2796 (value_of_internalvar): If an internal variable's value is a
2797 computed lvalue, make retrieving its value produce an equivalent
2798 computed lvalue.
2799 * valops.c (value_fetch_lazy): Unlazy computed lvalues by calling
2800 their read function.
2801 (value_assign): Assign to computed lvalues by calling their write
2802 function.
2803
117de6a9
PA
28042009-02-06 Pedro Alves <pedro@codesourcery.com>
2805
2806 * linux-nat.c (linux_nat_wait): Adjust.
2807 (linux_nat_pid_to_str): Adjust. Remove call to thread_db_init.
2808 * linux-nat.h (thread_db_init): Delete declaration.
2809 * linux-thread-db.c (target_beneath): Delete.
2810 (thread_db_init): Delete.
2811 (thread_db_detach): Use find_target_beneath.
2812 (thread_db_wait): Adjust interface. Use find_target_beneath.
2813 (thread_db_mourn_inferior): Use find_target_beneath.
2814 (thread_db_can_async_p, thread_db_is_async_p, thread_db_async)
2815 (thread_db_async_mask): Delete.
2816 (thread_db_pid_to_str): Adjust interface. Use
2817 find_target_beneath.
2818 (thread_db_get_thread_local_address): Adjust interface. Use
2819 find_target_beneath.
2820 (init_thread_db_ops): Delete references to delete functions.
2821 * target.c (update_current_target): Don't inherit or default
2822 to_wait. Don't inherit to_pid_to_str and
2823 to_get_thread_local_address.
2824 (target_translate_tls_address): Look for a pushed target that
2825 implements to_get_thread_local_address, and use it instead of
2826 checking for target_get_thread_local_address_p.
2827 (target_wait, target_pid_to_str): Reimplement as functions.
2828 (dummy_pid_to_str): New.
2829 (init_dummy_target): Register it.
2830 (debug_to_wait): Delete.
2831 * target.h (struct target_ops): Make to_wait, to_pid_to_str and
2832 to_get_thread_local_address accept a pointer to struct target_ops.
2833 (target_wait): Delete macro, and declare as function.
2834 (target_pid_to_str): Likewise.
2835 (target_get_thread_local_address)
2836 (target_get_thread_local_address_p): Delete.
2837 (noprocess): Add NORETURN and ATTR_NORETURN tags.
2838 * inf-ptrace.c (inf_ptrace_wait): Adjust.
2839 (inf_ptrace_pid_to_str): New.
2840 (inf_ptrace_target): Use inf_ptrace_pid_to_str.
2841 * aix-thread.c (aix_thread_wait, aix_thread_pid_to_str): Adjust.
2842 * bsd-kvm.c (bsd_kvm_pid_to_str): Adjust.
2843 * bsd-uthread.c (bsd_uthread_wait, bsd_uthread_pid_to_str):
2844 Adjust.
2845 * corelow.c (core_pid_to_str): Adjust.
2846 * darwin-nat.c (darwin_wait, darwin_pid_to_str): Adjust.
2847 * dec-thread.c (dec_thread_wait, dec_thread_pid_to_str): Adjust.
2848 * gnu-nat.c (gnu_wait, gnu_pid_to_str): Adjust.
2849 * go32-nat.c (go32_wait, go32_pid_to_str): Adjust.
2850 * hpux-thread.c (hpux_thread_wait): Adjust.
2851 * inf-ttrace.c (inf_ttrace_wait, inf_ttrace_pid_to_str): Adjust.
2852 * monitor.c (monitor_wait, monitor_pid_to_str): Adjust.
2853 * nto-procfs.c (procfs_wait, procfs_pid_to_str): Adjust.
2854 * procfs.c (procfs_pid_to_str): Adjust.
2855 * remote-m32r-sdi.c (m32r_wait, m32r_pid_to_str): Adjust.
2856 * remote-mips.c (mips_wait): Adjust.
2857 * remote-sim.c (gdbsim_wait, gdbsim_pid_to_str): Adjust.
2858 * remote.c (remote_wait, remote_pid_to_str)
2859 (remote_get_thread_local_address): Adjust.
2860 * rs6000-nat.c (rs6000_wait): Adjust.
2861 * sol-thread.c (procfs_pid_to_str): Adjust declaration.
2862 (sol_thread_wait, solaris_pid_to_str): Adjust.
2863 * spu-linux-nat.c (spu_child_wait): Adjust.
2864 * windows-nat.c (windows_wait, windows_pid_to_str): Adjust.
2865
d8906c6f
TJB
28662009-02-06 Tom Tromey <tromey@redhat.com>
2867
2868 * Makefile.in (SUBDIR_PYTHON_OBS): Add python-cmd.o.
2869 (SUBDIR_PYTHON_SRCS): Add python-cmd.c.
2870 (python-cmd.o): New target.
2871 * cli/cli-decode.c (set_cmd_completer): Add self parameter to
2872 completer prototype.
2873 (add_cmd): Initialize destroyer member of cmd_list_element. Use
2874 make_symbol_completion_list_fn as completer.
2875 (delete_cmd): Call destroyer if one is set.
2876 * cli/cli-decode.h (cmd_list_element): Add cmd parameter to
2877 completer member. Add destroyer member.
2878 (set_cmd_completer): Add self parameter to
2879 completer prototype.
2880 * command.h (set_cmd_completer): Add cmd parameter to
2881 completer prototype.
2882 * completer.c (noop_completer, filename_completer,
2883 location_completer, expression_completer, command_completer): Adapt
2884 to new completer prototype.
2885 (complete_line_internal): Pass new parameter to completer function.
2886 * completer.h (noop_completer, filename_completer,
2887 location_completer, expression_completer, command_completer): Adapt
2888 prototypes to new completer prototype.
2889 * interps.c (interpreter_completer): Adapt to new completer
2890 prototype.
2891 * python/python-cmd.c: New file.
2892 * python/python-internal.h (gdbpy_initialize_commands): Add
2893 prototype.
2894 (gdbpy_doc_cst): Add forward declaration.
2895 * python/python.c (gdbpy_doc_cst): Declare.
2896 (_initialize_python): Call gdbpy_initialize_commands. Initialize
2897 gdbpy_doc_cst.
2898 * symtab.c (make_symbol_completion_list_fn): New function.
2899 * symtab.h (make_symbol_completion_list_fn): Add prototype.
2900
739ef7fb
PA
29012009-02-06 Pedro Alves <pedro@codesourcery.com>
2902
2903 * target.c (target_get_osdata): Check for equal or higher than
2904 process_stratum, not dummy_stratum.
2905
6d097e65
PA
29062009-02-06 Pedro Alves <pedro@codesourcery.com>
2907
2908 * remote.c (extended_remote_can_run): Delete.
2909 (init_remote_ops): Don't register it.
2910 * target.c (target_get_osdata): Don't check for target_can_run.
2911 Instead any target that has already been pushed, otherwise
739ef7fb 2912 fallback to the default run target.
6d097e65 2913
947b8855
PA
29142009-02-06 Pedro Alves <pedro@codesourcery.com>
2915
2916 * target.c (target_create_inferior, target_detach)
2917 (target_mourn_inferior, target_attach, target_close): Do target
2918 debug output.
2919 (debug_to_attach, debug_to_detach, debug_to_create_inferior)
2920 (debug_to_mourn_inferior, debug_to_close): Delete.
2921 (setup_target_debug): Adjust.
2922
611041af
PA
29232009-02-05 Pedro Alves <pedro@codesourcery.com>
2924
2925 * target.h (target_stopped_data_address_p): Delete declaration,
2926 and don't define as macro.
2927 * target.c (target_stopped_data_address_p): Delete.
2928
b6cb8e7d
TJB
29292009-02-05 Thiago Jung Bauermann <bauerman@br.ibm.com>
2930 Tom Tromey <tromey@redhat.com>
2931
2932 * python/python-utils.c (target_string_to_unicode): New function.
2933 * python/python-internal.h (target_string_to_unicode): New prototype.
2934 * python/python-value.c (valpy_string): New function.
2935 (value_object_methods): Add `string' entry.
2936
54ba13f7
PA
29372009-02-05 Pedro Alves <pedro@codesourcery.com>
2938
2939 * target.h (target_tid_to_str): Delete.
2940 * thread.c (print_thread_info, thread_apply_all_command)
2941 (thread_apply_command, thread_command, do_captured_thread_select):
2942 Use target_pid_to_str instead of target_tid_to_str.
2943 * linux-fork.c (delete_fork_command): Likewise.
2944
9d49bdc2
PA
29452009-02-05 Pedro Alves <pedro@codesourcery.com>
2946
2947 * frame.c (has_stack_frames): Make public.
2948 (get_prev_frame): Don't allow a NULL this_frame anymore.
2949 * frame.h (has_stack_frames): Declare.
2950 * varobj.c (find_frame_addr_in_frame_chain): Don't ever pass NULL
2951 to get_prev_frame, instead start at get_current_frame.
2952 (varobj_create): Check has_stack_frames before getting any frame;
2953 eliminate one usage of deprecated_safe_get_selected_frame.
2954
12453b93
TJB
29552009-02-05 Tom Tromey <tromey@redhat.com>
2956 Thiago Jung Bauermann <bauerman@br.ibm.com>
2957
2958 * python/python.c (GdbMethods): Move to bottom of file.
2959 (get_parameter, execute_gdb_command, gdbpy_write,
2960 gdbpy_flush): Remove forward declarations.
2961 (eval_python_from_control_command): Fix error checking of function
2962 PyRun_SimpleString. Fix error string.
2963 (python_command): Likewise.
2964 (execute_gdb_command): Added from_tty argument.
2965
ae6a3a4c
TJB
29662009-02-05 Thiago Jung Bauermann <bauerman@br.ibm.com>
2967
2968 * language.h (language_dfn): Add la_get_string member.
2969 (LA_GET_STRING): New macro.
2970 (default_get_string): New prototype.
2971 * language.c (default_get_string): New function.
2972 (unknown_language_defn, auto_language_defn, local_language_defn): Use
2973 default_get_string for la_get_string.
2974 * c-lang.c (c_get_string): New function.
2975 (c_language_defn, cplus_language_defn, asm_language_defn): Use
2976 c_get_string for la_get_string.
2977 (minimal_language_defn): Likewise
2978 * ada-lang.c (ada_language_defn): Likewise.
2979 * f-lang.c (f_language_defn): Use default_get_string for
2980 la_get_string.
2981 * jv-lang.c (java_language_defn): Likewise.
2982 * m2-lang.c (m2_language_defn): Likewise.
2983 * objc-lang.c (objc_language_defn): Likewise.
2984 * p-lang.c (p_language_defn): Likewise.
2985 * scm-lang.c (scm_language_defn): Likewise.
2986 * typeprint.c (type_to_string): New function.
2987 * value.h (type_to_string): New prototype.
2988 * valprint.c (val_print_string): Factor out code for reading string
2989 from the inferior into its own function. Put 2 spaces after period
2990 in comments.
2991 (read_string): New function.
2992 * valprint.h (read_string): New prototype.
2993
fa8a61dc
TT
29942009-01-07 Pierre Muller <muller@ics.u-strasbg.fr>
2995 Tom Tromey <tromey@redhat.com>
2996
2997 PR breakpoints/8079:
2998 * breakpoint.c (print_one_breakpoint): Use exp_string field
2999 to display expression of watchpoints.
3000 (mention): Likewise.
3001 (watch_command_1): Remove trailing whitespace from expression.
3002 * printcmd.c (struct display) <exp_string>: New field.
3003 (display_command): Set exp_string.
3004 (free_display): Free exp_string.
3005 (clear_displays): Use free_display.
3006 (do_one_display): Print exp_string.
3007 (display_info): Likewise.
3008
08c637de
TJB
30092009-02-04 Tom Tromey <tromey@redhat.com>
3010 Thiago Jung Bauermann <bauerman@br.ibm.com>
3011 Phil Muldoon <pmuldoon@redhat.com>
3012
3013 * python/python-internal.h (gdbpy_get_value_from_history): Rename
3014 prototype to gdbpy_history.
3015 (gdbpy_is_string): Declare.
3016 (python_string_to_host_string): Declare.
3017 * python/python-utils.c (gdbpy_is_string): New function.
3018 (unicode_to_encoded_string): New function.
3019 (unicode_to_target_string): Use it.
3020 (python_string_to_host_string): New function.
3021 * python/python-value.c (valpy_address): New function.
3022 (convert_value_from_python): Use gdbpy_is_string. Change to throw
3023 Python exception instead of a GDB exception on error. Properly check
3024 Python booleans.
3025 (valpy_getitem): Convert field name to host string. Handle array
3026 accesses. Adapt to new behaviour of convert_value_from_python.
3027 (valpy_new): Adapt to new behaviour of convert_value_from_python.
3028 (enum valpy_opcode) <VALPY_LSH, VALPY_RSH, VALPY_BITAND,
3029 VALPY_BITXOR, VALPY_BITOR>: New constants.
3030 (valpy_binop): Update. Adapt to new behaviour of
3031 convert_value_from_python.
3032 (valpy_invert): New function.
3033 (valpy_lsh): Likewise.
3034 (valpy_rsh): Likewise.
3035 (valpy_and): Likewise.
3036 (valpy_or): Likewise.
3037 (valpy_xor): Likewise.
3038 (valpy_richcompare): Call convert_value_from_python instead of doing
3039 conversions itself.
3040 (is_intlike, valpy_int, valpy_long, valpy_float): New functions.
3041 (gdbpy_get_value_from_history): Rename
3042 function to gdbpy_history.
3043 (gdbpy_initialize_values): Don't set tp_new.
3044 (value_object_type): Add valpy_new.
3045 (value_object_methods): Add `address' entry.
3046 (value_object_as_number): Update for new methods.
3047 * python/python.c (GdbMethods): Rename entry from
3048 `get_value_from_history' to `history'.
3049
538e13a6 30502009-02-04 Jerome Guitton <guitton@adacore.com>
b5304971
JG
3051
3052 * ada-lang.c (ada_template_to_fixed_record_type_1): Check size
3053 of type to guard against a crash.
3054
33d502b4
JG
30552009-02-04 Jerome Guitton <guitton@adacore.com>
3056
3057 * value.c (value_from_contents_and_address): Always return
3058 a lval_memory value, even if address is null.
3059
9f08ae4f
TG
30602009-02-04 Tristan Gingold <gingold@adacore.com>
3061
3062 * i386-darwin-tdep.c (i386_darwin_sigcontext_addr): New function.
3063 (amd64_darwin_sigcontext_addr): Ditto.
3064 (darwin_dwarf_signal_frame_p): Ditto.
3065 (i386_darwin_init_abi): Handle signal frames, use the const for
3066 sc_num_regs.
3067 (x86_darwin_init_abi_64): Ditto.
3068
4bd207ef
TG
30692009-02-04 Tristan Gingold <gingold@adacore.com>
3070
3071 * i386-tdep.c (i386_sigtramp_p): Make it public.
3072 * i386-tdep.h (i386_sigtramp_p): Declare.
3073
4aa99a88
TG
30742009-02-04 Tristan Gingold <gingold@adacore.com>
3075
3076 * machoread.c (macho_symfile_read): Read minsymtab also from
3077 shared libraries.
3078 (macho_symfile_read): Try to read dwarf2 frame info from main
3079 object file, but not from OSO files.
3080 (macho_symfile_offsets): Update section names for latest BFD
3081 changes.
3082 * i386-darwin-tdep.c (i386_darwin_init_abi): Call set_solib_ops.
3083 (x86_darwin_init_abi_64): Ditto.
3084 * solib-darwin.c: New file.
3085 * solib-darwin.h: New file.
3086 * configure.tgt: Add solib.o solib-darwin.o for Darwin.
3087
7a848be1
TG
30882009-02-04 Tristan Gingold <gingold@adacore.com>
3089
3090 * solist.h (struct target_so_ops): Comment fallback behavior for
3091 operation same.
3092
b32d97f3
TT
30932009-02-03 Tom Tromey <tromey@redhat.com>
3094
3095 * completer.c (add_struct_fields): Check type_name against NULL
3096 before use.
3097
692263b8
JB
30982009-02-03 Joel Brobecker <brobecker@adacore.com>
3099
3100 * MAINTAINERS: Update Elena's email address.
3101
bfa149ac
JB
31022009-02-02 Joel Brobecker <brobecker@adacore.com>
3103
3104 * breakpoint (update_watchpoint): Minor comment adjustment.
3105
1c71341a
TT
31062009-02-02 Tom Tromey <tromey@redhat.com>
3107
52e44b43 3108 PR gdb/9594:
1c71341a
TT
3109 * completer.c (count_struct_fields): Count method names.
3110 (add_struct_fields): Add matching method names.
3111
85541719
DE
31122009-02-02 Doug Evans <dje@google.com>
3113
3114 * configure.ac (gdbkt): Check both no_tcl/no_tk first, before
3115 doing any further tcl/tk configury. Don't configure gdbtk if
3116 tcl or tk check fails.
3117 * aclocal.m4: Regenerate.
3118 * configure: Regenerate.
3119
a4295225
TT
31202009-02-02 Tom Tromey <tromey@redhat.com>
3121
3122 PR exp/9059:
3123 * valops.c (find_overload_match): Follow typedefs before taking
3124 address of object argument.
3125
f00150c9
DE
31262009-02-01 Doug Evans <dje@google.com>
3127
3128 * target.h (target_waitstatus_to_string): Declare.
3129 * target.c (target_waitstatus_to_string): New function. Copied from
3130 debug_to_wait. Add missing entries for TARGET_WAITKIND_SYSCALL_ENTRY,
3131 TARGET_WAITKIND_SYSCALL_RETURN, TARGET_WAITKIND_IGNORE,
3132 TARGET_WAITKIND_NO_HISTORY.
3133 (debug_to_wait): Call it.
3134 * infrun.c (wait_for_inferior): If debug_infrun, print result of
3135 target_wait.
3136 (fetch_inferior_event): Ditto.
3137
5abdf4bd
TT
31382009-01-30 Tom Tromey <tromey@redhat.com>
3139
3140 * Makefile.in (HFILES_NO_SRCDIR): Remove i386-cygwin-tdep.h.
3141
592375cd
VP
31422009-01-30 Vladimir Prus <vladimir@codesourcery.com>
3143
3144 PR 8145.
3145 * thread.c (do_captured_list_thread_ids): Report the current
3146 thread id.
3147
41447f92
VP
31482009-01-30 Vladimir Prus <vladimir@codesourcery.com>
3149
3150 * breakpoint.c (create_breakpoint, create_breakpoints)
3151 (break_command_really, set_breakpoint): New parameter enabled.
3152 (create_breakpoint, break_command_really): Make breakpoint
3153 disabled if so requested.
3154 * breakpoint.h (set_breakpoint): New parameter enabled.
3155 * mi/mi-cmd-break.c (mi_cmd_break_insert): Handle the -d option.
3156
35669430
DE
31572009-01-28 Doug Evans <dje@google.com>
3158
3159 * amd64-tdep.h (amd64_displaced_step_copy_insn): Declare.
3160 (amd64_displaced_step_fixup): Declare.
3161 * amd64-tdep.c: #include opcode/i386.h, dis-asm.h.
3162 (amd64_arch_regmap): Move out of amd64_analyze_stack_align
3163 and make static global.
3164 (amd64_arch_regmap_len): New static global.
3165 (amd64_arch_reg_to_regnum): New function.
3166 (struct amd64_insn): New struct.
3167 (struct displaced_step_closure): New struct.
3168 (onebyte_has_modrm,twobyte_has_modrm): New static globals.
3169 (rex_prefix_p,skip_prefixes)
3170 (amd64_insn_length_fprintf,amd64_insn_length_init_dis)
3171 (amd64_insn_length,amd64_get_unused_input_int_reg)
3172 (amd64_get_insn_details,fixup_riprel,fixup_displaced_copy)
3173 (amd64_displaced_step_copy_insn)
3174 (amd64_absolute_jmp_p,amd64_absolute_call_p,amd64_ret_p)
3175 (amd64_call_p,amd64_breakpoint_p,amd64_syscall_p)
3176 (amd64_displaced_step_fixup): New functions.
3177 * amd64-linux-tdep.c: #include arch-utils.h.
3178 (amd64_linux_init_abi): Install displaced stepping support.
3179
4eb7c016
JG
31802009-01-28 Daniel Jacobowitz <dan@codesourcery.com>
3181 Jerome Guitton <guitton@adacore.com>
3182
3183 * configure, config.in: Regenerated.
3184 * configure.ac: Add --with-system-gdbinit.
3185 * main.c (get_init_files): New.
3186 (captured_main): Use get_init_files. Load system gdbinit before
3187 $HOME/.gdbinit.
3188 (print_gdb_help): Print location of init files.
3189
7df3ce47
PA
31902009-01-28 Pedro Alves <pedro@codesourcery.com>
3191
3192 * corefile.c (generic_search): Delete disabled code.
3193 * gdbcore.h (generic_search): Delete declaration.
3194
77435e4c
PA
31952009-01-26 Pedro Alves <pedro@codesourcery.com>
3196
3197 * linux-nat.c (linux_child_follow_fork): Copy attach_flag from the
3198 parent to the child.
3199 * inf-ttrace.c (inf_ttrace_follow_fork): Likewise.
3200 * inf-ptrace.c (inf_ptrace_follow_fork): Likewise. Use
3201 remove_breakpoints to remove breakpoints from the parent.
3202
1e275f79
PA
32032009-01-26 Pedro Alves <pedro@codesourcery.com>
3204
7488432f 3205 PR backtrace/9458, PR backtrace/8864:
1e275f79
PA
3206 * frame.c (create_new_frame): Update the frame's cached PC before
3207 finding its unwinder. Use frame_id_build to build the new frame's
3208 id.
3209 * stack.c (parse_frame_specification_1): Correct setting ``addrs''
3210 array values from the ``args'' array values.
3211
1deafd4e
PA
32122009-01-26 Pedro Alves <pedro@codesourcery.com>
3213
3214 * gdbtypes.c (alloc_type, alloc_type_instance, create_range_type)
3215 (create_array_type, create_set_type, init_flags_type)
3216 (copy_type_recursive): Replace pairs of calls to XALLOC and memset
3217 with a call to XZALLOC or XCALLOC, and pairs of calls to
3218 obstack_alloc and memset with a call to OBSTACK_ZALLOC.
3219
3c16cced
PA
32202009-01-26 Pedro Alves <pedro@codesourcery.com>
3221
3222 Add "maint set|show internal-error|internal-warning quit|corefile
3223 ask|yes|no" commands.
3224
3225 PR gdb/7580:
3226 * utils.c (internal_problem_ask, internal_problem_yes)
3227 (internal_problem_no, internal_problem_modes): New.
3228 (struct internal_problem): Remove FIXME. Make should_quit and
3229 should_dump_core types to char *.
3230 (internal_vproblem, internal_error_problem)
3231 (internal_warning_problem): Adjust.
3232 (set_internal_problem_cmd, show_internal_problem_cmd): New dummy
3233 functions.
3234 (add_internal_problem_command): New.
3235 (_initialize_utils): New.
3236
616d7dd2
PA
32372009-01-25 Pedro Alves <pedro@codesourcery.com>
3238
3239 * infcmd.c (program_info): Use paddress instead of casting stop_pc
3240 to unsigned long.
3241
0516318b
PA
32422009-01-24 Pedro Alves <pedro@codesourcery.com>
3243
3244 * infrun.c (normal_stop): Don't call
3245 deprecated_update_frame_pc_hack.
3246 * frame.c (deprecated_update_frame_pc_hack)
3247 (deprecated_update_frame_base_hack): Delete, and ...
3248 (create_new_frame): ... inline here.
3249 * frame.h (deprecated_update_frame_pc_hack)
3250 (deprecated_update_frame_base_hack): Delete declarations.
3251
1e8fb976
PA
32522009-01-23 Pedro Alves <pedro@codesourcery.com>
3253
3254 * cli/cli-decode.c (add_setshow_zuinteger_cmd): New.
3255 * cli/cli-setshow.c (do_setshow_command): Handle it.
3256 * command.h (enum var_types): Add var_zuinteger.
3257 (add_setshow_zuinteger_cmd): Declare.
3258
3259 * valprint.c (_initialize_valprint): Change the set input-radix
3260 and set output-radix commands to zuinteger type.
3261
dd7e2d2b
PA
32622009-01-23 Pedro Alves <pedro@codesourcery.com>
3263
3264 PR gdb/9664:
3265 * infrun.c (normal_stop): Tag threads as stopped, and run the
3266 hook-stop before printing the stack frame.
3267
392452f6
PA
32682009-01-22 Pedro Alves <pedro@codesourcery.com>
3269
3270 PR c++/9631:
3271 * gnu-v3-abi.c (gnuv3_baseclass_offset): Call check_typedef on
3272 vbasetype.
3273
f6a96b83
KH
32742009-01-20 Kazu Hirata <kazu@codesourcery.com>
3275
3276 * gdb/procfs.c (info_mappings_callback): Cast map->pr_size to
3277 unsigned long.
3278
5d277928 32792009-01-20 Daniel Jacobowitz <dan@codesourcery.com>
a12cc160
DJ
3280
3281 PR gdb/9346
3282 * infcmd.c (signal_command): Do not specify a resume PC.
3283
b89667eb
DE
32842009-01-19 Doug Evans <dje@google.com>
3285
3286 * dummy-frame.c (dummy_frame): Replace regcache member with
3287 caller_state.
3288 (dummy_frame_push): Replace caller_regcache arg with caller_state.
3289 All callers updated.
3290 (remove_dummy_frame,pop_dummy_frame,lookup_dummy_frame): New fns.
3291 (dummy_frame_pop): Rewrite. Verify requested frame is in the
3292 dummy frame stack. Restore program state.
3293 (cleanup_dummy_frames): Rewrite.
3294 (dummy_frame_sniffer): Update. Make static.
3295 * dummy-frame.h (regcache,frame_info): Delete forward decls.
3296 (inferior_thread_state): New forward decl.
3297 (dummy_frame_push): Update prototype.
3298 * frame.c (frame_pop): dummy_frame_pop now does all the work for
3299 DUMMY_FRAMEs.
3300 * infcall.c (breakpoint_auto_delete_contents): Delete.
3301 (get_function_name,run_inferior_call): New fns.
3302 (call_function_by_hand): Simplify by moving some code to
3303 get_function_name, run_inferior_call. Inferior function call wrapped
3304 in TRY_CATCH so there's less need for cleanups and all exits from
3305 proceed are handled similarily. Detect program exit.
3306 Detect program stopping in a different thread.
3307 Make error messages more consistent.
3308 * inferior.h (inferior_thread_state): Declare (opaque type).
3309 (save_inferior_thread_state,restore_inferior_thread_state,
3310 make_cleanup_restore_inferior_thread_state,
3311 discard_inferior_thread_state, get_inferior_thread_state_regcache):
3312 Declare.
3313 (save_inferior_status): Update prototype.
3314 * infrun.c: (normal_stop): When stopped for the completion of an
3315 inferior function call, verify the expected stack frame kind.
3316 (inferior_thread_state): New struct.
3317 (save_inferior_thread_state,restore_inferior_thread_state,
3318 do_restore_inferior_thread_state_cleanup,
3319 make_cleanup_restore_inferior_thread_state,
3320 discard_inferior_thread_state,
3321 get_inferior_thread_state_regcache): New functions.
3322 (inferior_status): Move stop_signal, stop_pc, registers to
3323 inferior_thread_state. Remove restore_stack_info.
3324 (save_inferior_status): Remove arg restore_stack_info.
3325 All callers updated. Remove saving of state now saved by
3326 save_inferior_thread_state.
3327 (restore_inferior_status): Remove restoration of state now done by
3328 restore_inferior_thread_state.
3329 (discard_inferior_status): Remove freeing of registers, now done by
3330 discard_inferior_thread_state.
3331
aefc7064
PA
33322009-01-18 Pedro Alves <pedro@codesourcery.com>
3333
3334 * tui/tui-disasm.c (tui_vertical_disassem_scroll): Scroll one line
3335 at a time, times NUM_TO_SCROLL.
3336 * tui/tui-winsource.c (tui_horizontal_source_scroll): Don't try to
3337 fetch the selected frame if there is no stack.
3338
29f49a6a
PA
33392009-01-18 Pedro Alves <pedro@codesourcery.com>
3340
3341 PR gdb/9747:
3342 * gdbthread.h (finish_thread_state, finish_thread_state_cleanup):
3343 Declare.
3344 * thread.c (finish_thread_state, finish_thread_state_cleanup): New.
3345 * infrun.c (wait_for_inferior, fetch_inferior_event): If an error
3346 is thrown while handling an event, finish the thread state.
3347 (normal_stop): Use finish_thread_state cleanup.
3348 * infcmd.c (run_command_1): If an error is thrown while starting
3349 the inferior, finish the thread state.
3350
e7243d73
PA
33512009-01-18 Pedro Alves <pedro@codesourcery.com>
3352
3353 * tui/tui-winsource.c (tui_update_breakpoint_info): In asm layout,
3354 skip breakpoints without a location (pending breakpoints).
3355
e74994b5
PA
33562009-01-18 Pedro Alves <pedro@codesourcery.com>
3357
3358 PR build/9186:
3359 * hppa-hpux-tdep.c (hppa_hpux_write_pc): Remove 'return'.
3360
8405c36e
NR
33612009-01-18 Nick Roberts <nickrob@snap.net.nz>
3362
3363 * thread.c (thread_command): Move call to annotate_thread_changed
3364 to...
3365 (do_captured_thread_select): ... here, to avoid printing an
3366 annotation if the thread change generates an exception.
3367
b8bfd3ed
JB
33682009-01-16 Joel Brobecker <brobecker@adacore.com>
3369
3370 * NEWS: Document x86_64/MinGW as a new native configuration.
3371
2dde91e9
JB
33722009-01-16 Joel Brobecker <brobecker@adacore.com>
3373
3374 * NEWS: Move the documentation of "info os processes" to
3375 the appropriate section (documenting the new commands).
3376
54363045
DE
33772009-01-15 Doug Evans <dje@google.com>
3378
3379 * target.h (target_signal_to_string): Make return type const char *.
3380 (target_signal_to_name): Ditto.
3381 (target_signal_from_name): Make arg const char *.
54363045 3382 * infrun.c (sig_print_info): Update.
54363045
DE
3383 * signals/signals.c (signals): Make array and struct members const.
3384 (target_signal_to_string): Make return type const char *.
3385 (target_signal_to_name): Ditto.
3386 (target_signal_from_name): Make arg const char *.
3387
572d275c
UW
33882009-01-15 Ulrich Weigand <uweigand@de.ibm.com>
3389 Tristan Gingold <gingold@adacore.com>
3390
3391 * solist.h (struct target_so_ops): New member bfd_open.
3392 (solib_find): Add prototype.
3393 (solib_bfd_fopen): Add prototype.
3394 * solib.c (solib_find, solib_bfd_fopen): New functions, extracted
3395 from solib_bfd_open.
3396 (solib_bfd_open): Use ops->bfd_open override if present. Call
3397 solib_find and solib_bfd_open otherwise.
3398
3399 * objfiles.h (OBJF_KEEPBFD): New define.
3400 * objfiles.c (free_objfile): Do not close BFD if OBJF_KEEPBFD
3401 objfile flag is set.
3402 * solib.c (symbol_add_stub): Do not allocate second BFD for
3403 shared library; use OBJF_KEEPBFD flag on solib objfile.
3404
0701b271
UW
34052009-01-15 Ulrich Weigand <uweigand@de.ibm.com>
3406
3407 * frame.c (get_frame_arch): Abort if called with NULL this_frame.
3408
61212c0f
UW
34092009-01-15 Ulrich Weigand <uweigand@de.ibm.com>
3410
3411 * value.h (address_of_variable): Add prototype.
3412 (locate_var_value): Remove prototype.
3413
3414 * findvar.c (read_var_value): Do not attempt to default frame
3415 to selected frame.
3416 (locate_var_value): Remove function.
3417 * valops.c (value_of_variable): Retrieve selected frame for
3418 symbols that require a frame when called with NULL block.
3419 * valops.c (address_of_variable): New function.
3420
3421 * eval.c (evaluate_subexp_for_address): Call address_of_variable
3422 instead of calling locate_var_value.
3423 (evaluate_subexp_with_coercion): Likewise.
3424
adb483fe
DJ
34252009-01-14 Daniel Jacobowitz <dan@codesourcery.com>
3426
3427 * NEWS: Document "define" for prefixed commands.
3428 * cli/cli-cmds.c (show_user): Update calls to show_user_1. Call
3429 show_user_1 for prefix commands.
3430 * cli/cli-decode.c (help_cmd_list): Recurse for "help user-defined".
3431 * cli/cli-script.c (validate_comname): Rewrite to handle prefix
3432 commands. Return the containing command list.
3433 (define_command, document_command): Update to handle prefix commands.
3434 (show_user_1): Add prefix and name arguments. Handle prefix
3435 commands.
3436 * cli/cli-script.h (show_user_1): Update prototype.
3437
a32d7317
KT
34382009-01-14 Kai Tietz <kai.tietz@onevision.com>
3439
3440 * mingw-ser.c (console_select_thread): Add return to make
3441 compiler happy.
3442 (pipe_select_thread): Likewise.
3443 (file_select_thread): Likewise.
3444
041d0fd7
PA
34452009-01-14 Pedro Alves <pedro@codesourcery.com>
3446
3447 * mi/mi-main.c (mi_cmd_execute): Clean up parenthesis mess from
3448 previous change.
3449
dc1981d7
PA
34502009-01-14 Pedro Alves <pedro@codesourcery.com>
3451
3452 * remote.c (extended_remote_mourn_1): Invalidate our notion of
3453 current general thread.
3454
244bf9ae
PA
34552009-01-14 Pedro Alves <pedro@codesourcery.com>
3456
3457 * mi/mi-main.c (mi_cmd_execute): Also allow -list-thread-groups
3458 without a live selected thread.
3459
e4d013fc
JB
34602009-01-14 Joel Brobecker <brobecker@adacore.com>
3461
3462 Update the copyright notice of some of the files I missed
3463 in the previous copyright update.
3464
a588db63
JB
34652009-01-14 Joel Brobecker <brobecker@adacore.com>
3466
3467 * windows-nat.c (handle_unload_dll): Use %p to print the DLL
3468 base address instead of casting it to DWORD.
3469
77a732d9
UW
34702009-01-13 Ulrich Weigand <uweigand@de.ibm.com>
3471
3472 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Do not call get_frame_arch
3473 for NULL frame pointers.
3474
773698b5
JB
34752009-01-13 Mark Kettenis <kettenis@gnu.org>
3476
3477 * utils.c (host_address_to_string): Reimplement in a way that
3478 avoids the cast of the address to long.
3479
9918cab9
JB
34802009-01-13 Joel Brobecker <brobecker@adacore.com>
3481
3482 * mdebugread.c (parse_symbol): Save the symbol private data
3483 using SYMBOL_VALUE_BYTES instead of SYMBOL_VALUE.
3484 (psymtab_to_symtab_1): Likewise.
3485 (parse_procedure): Declare variable "e" only in the scope
3486 where it is used. Extract the symbol private data using
3487 SYMBOL_VALUE_BYTES.
3488
74bcbdf3
PA
34892009-01-13 Jim Blandy <jimb@codesourcery.com>
3490
3491 Abstract out common code for copying value locations.
3492
3493 * value.h (set_value_component_location): New declaration.
3494 * value.c (set_value_component_location): New function.
3495 (value_primitive_field): Use it.
3496 * valarith.c (value_subscript, value_subscripted_rvalue): Same.
3497 * valops.c (search_struct_field, value_slice): Same.
3498 * ada-lang.c (coerce_unspec_val_to_type)
3499 (ada_value_primitive_packed_val): Same.
3500
d7dc3873
JB
35012009-01-13 Joel Brobecker <brobecker@adacore.com>
3502
3503 * MAINTAINERS (GLOBAL MAINTAINERS): Add Tom Tromey.
3504
dc05df57
CF
35052009-01-12 Christopher Faylor <me+cygwin@cgf.cx>
3506
3507 * amd64-windows-nat.c Rename gdb-specific win32_* to windows_*
3508 throughout.
3509 * i386-cygwin-tdep.c: Ditto.
3510 * i386-windows-nat.c: Ditto.
3511 * windows-nat.h: Ditto.
3512 * windows-tdep.c: Ditto.
3513 * windows-tdep.h: Ditto.
3514 * windows-nat.c: Ditto.
3515 (cygwin_load_start): Redefine as CORE_ADDR.
3516 (cygwin_load_end): Ditto.
b8511eeb 3517 (windows_make_so): Coerce result of address arithmetic to uintptr_t
dc05df57
CF
3518 before coercing to CORE_ADDR to avoid a compiler warning.
3519 (handle_exception): Define addr as CORE_ADDR and coerce
3520 ExceptionAddress to uintptr_t before assigining to avoid a compiler
3521 warning.
3522 * config/djgpp/fnchange.lst: Add mappings for recently renamed windows
3523 files.
3524
31b060a2
CF
35252009-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
3526
3527 Fix linking with --enable-targets=all:
3528 * Makefile.in (ALL_TARGET_OBS): Add windows-tdep.o.
3529 (HFILES_NO_SRCDIR): Add windows-tdep.h.
3530 (ALLDEPFILES): Add windows-tdep.c.
3531
f3b6bd60 35322009-01-11 Chris Faylor <me.gdb@cgf.cx>
31b060a2
CF
3533
3534 * win32-nat.h: Delete.
3535 * windows-nat.h: Rename from win32-nat.h.
3536 * win32-nat.c: Delete.
3537 * windows-nat.c: Rename from win32-nat.c.
3538 * win32-termcap.c: Delete.
3539 * windows-termcap.c: Rename from win32-termcap.c.
3540 * amd64-windows-nat.c: Handle rename from win32-nat.h -> windows-nat.h.
3541 * configure.ac: Handle rename from win32-termcap.c ->
3542 windows-termcap.c.
3543 * configure: Regenerate.
3544 * gdb_curses.h: Change comment to reflect rename from win32-termcap.c
3545 -> windows-termcap.c.
3546 * i386-cygwin-tdep.c: Handle rename from win32-tdep.h ->
3547 windows-tdep.h.
3548 * i386-windows-nat.c: Refect rename from win32-nat.h -> windows-nat.h.
3549 * windows-nat.c: Ditto. Also reflect rename from from win32-tdep.h ->
3550 windows-tdep.h.
3551 (win32_make_so): Handle cygwin compiler warning due to change of
3552 load_addr from DWORD to LPVOID.
3553 (handle_load_dll): Use %p in format string to properly print address
3554 and avoid a compiler warning.
3555 (DEBUG_EXCEPTION_SIMPLE): Ditto.
3556 (handle_exception): Ditto.
3557 * windows-tdep.c: Handle rename from win32-tdep.h -> windows-tdep.h.
3558 * config/i386/cygwin.mh: Handle rename from win32-nat.o ->
3559 windows-nat.o.
3560 * config/i386/mingw.mh: Ditto.
3561 * config/i386/mingw64.mh: Ditto.
3562
0311118f
JK
35632009-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
3564
3565 * f-typeprint.c (f_type_print_varspec_suffix): Convert the autovariable
3566 arrayprint_recurse_level to a parameter. Update all the callers. New
3567 comment at autovariables.
3568
5f61c20e
JK
35692009-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
3570
3571 * gdbtypes.c (make_qualified_type, replace_type): Reformat to the GNU
3572 coding style.
3573
35742009-01-11 Joel Brobecker <brobecker@adacore.com>
53b71562
JB
3575
3576 * target.c (target_xfer_partial): Use host_address_to_string to
3577 print the address of readbuf and writebuf. Cast the address of
3578 elements inside the myaddr buffer into intptr_t.
3579 (deprecated_debug_xfer_memory): Use paddress to print memaddr.
3580 Cast the address of elements inside the myaddr buffer into
3581 intptr_t.
3582
5f61c20e 35832009-01-11 Joel Brobecker <brobecker@adacore.com>
d0761299
JB
3584
3585 * amd64-windows-nat.c, amd64-windows-tdep.c: New files.
3586 * config/i386/mingw64.mh, config/i386/nm-cygwin64.h: New files.
3587 * configure.host, configure.tgt: Add handling for x86_64/windows.
3588 * config/djgpp/fnchange.lst: Add entries for amd64-windows-nat.c
3589 and amd64-windows-tdep.c.
3590
5f61c20e 35912009-01-11 Joel Brobecker <brobecker@adacore.com>
bfb87e33
JB
3592
3593 * win32-tdep.h, win32-tdep.c: New files.
3594 * i386-cygwin-tdep.h: Delete.
3595 * i386-cygwin-tdep.c: Include win32-tdep.h instead of
3596 i386-cygwin-tdep.h.
3597 (win32_xfer_shared_library): Delete. Moved to win32-tdep.c.
3598 * win32-nat.c: Likewise.
3599 * configure.tgt: Add win32-tdep.o to the list of target object
3600 files for i386-cygwin and i386-mingw targets.
3601
5f61c20e 36022009-01-11 Joel Brobecker <brobecker@adacore.com>
7e63b4e4
JB
3603
3604 * win32-nat.h: New file.
3605 * win32-nat.c (mappings): Initialize to NULL.
3606 (win32_set_context_register_offsets): New function.
3607 * i386-windows-nat.c: New file.
3608 (mappings): Moved here from win32-nat.c.
3609 (_initialize_i386_windows_nat): New function.
3610 * config/i386/mingw.mh (NATDEPFILES): Add i386-windows-nat.o.
3611 * config/i386/cygwin.mh (NATDEPFILES): Likewise.
3612
25fc6591
AS
36132009-01-09 Andreas Schwab <schwab@suse.de>
3614
3615 * Makefile.in (init.c): Set LANG/LC_ALL to C, not c.
3616
87f70781
PA
36172009-01-09 Daniel Jacobowitz <dan@codesourcery.com>
3618
3619 * gdbtypes.c (append_composite_type_field): Correct the location of
3620 appended fields.
3621
58d4abe1
PA
36222009-01-09 Pedro Alves <pedro@codesourcery.com>
3623
3624 * defs.h (deprecated_error_hook): Delete declaration.
3625 * interps.c (clear_interpreter_hooks): Adjust.
3626 * remote-sim.c (gdb_os_error): Don't try to call
3627 deprecated_error_hook. No need to call exit anymore.
3628 * top.c (deprecated_error_hook): Delete.
3629
e3cb3832
JB
36302009-01-09 Joel Brobecker <brobecker@adacore.com>
3631
3632 * arch-utils.c (gdbarch_update_p): Use host_address_to_string
3633 to print the address of the gdbarch pointer.
3634
30737ed9
JB
36352009-01-09 Joel Brobecker <brobecker@adacore.com>
3636
3637 * gdbarch.sh: Fix all the compilation errors on amd64-windows
3638 due to casting a pointer to a long when printing a function
3639 address. Instead, use host_address_to_string to convert our
3640 address to a string.
3641 * gdbarch.c: Regenerate.
3642
ec4dfccf
JB
36432009-01-09 Joel Brobecker <brobecker@adacore.com>
3644
3645 * event-top.c (async_disconnect, async_stop_sig): use "raise"
3646 instead of "kill" to raise a signal.
3647
d3653bf6
JB
36482009-01-09 Joel Brobecker <brobecker@adacore.com>
3649
3650 * win32-nat.c (get_module_name): Change the type of parameter
3651 "base_address" to LPVOID. Remove unnecessary cast.
3652 (struct lm_info): Change type of load_addr to LPVOID.
3653 (win32_make_so): Change the type of parameter "load_addr"
3654 to LPVOID. Remove some unnecessary casts.
3655 (handle_unload_dll): Change the type of "lpBaseOfDll" to LPVOID.
3656 (win32_xfer_shared_libraries): Add missing cast.
3657
308a8808
JB
36582009-01-09 Joel Brobecker <brobecker@adacore.com>
3659
3660 * win32-nat.c (has_detach_ability, set_process_privilege):
3661 Cast the result of GetProcAddress to (void *) to avoid
3662 a compilation warning.
3663
5851ab76
JB
36642009-01-09 Joel Brobecker <brobecker@adacore.com>
3665
3666 * win32-nat.c (CONTEXT_EXTENDED_REGISTERS): Define to 0 if not
3667 already defined.
3668
5732a500
JB
36692009-01-09 Joel Brobecker <brobecker@adacore.com>
3670
3671 * win32-nat.c (get_image_name, win32_xfer_memory): Fix type
3672 definition of local variable "done".
3673 (info_w32_command, handle_exception): Remove unnecessary cast.
3674
def4de3a
JB
36752009-01-09 Joel Brobecker <brobecker@adacore.com>
3676
3677 * win32-nat.c (kernel32_DebugSetProcessKillOnExit): Renames
3678 DebugSetProcessKillOnExit. Update all uses in this file.
3679 (kernel32_DebugActiveProcessStop): Renames DebugActiveProcessStop.
3680 Update all uses in this file.
3681
36822009-01-09 Joel Brobecker <brobecker@adacore.com>
0795be10
JB
3683
3684 * win32-nat.c (do_initial_win32_stuff): Add new ops parameter,
3685 and use it when pushing the target.
3686 (win32_attach, win32_create_inferior): Update call to
3687 do_initial_win32_stuff.
3688 (win32_detach, win32_mourn_inferior): Use our ops parameter
3689 instead of the global win32_ops to unpush the target.
3690
1be7fe8d
JB
36912009-01-09 Joel Brobecker <brobecker@adacore.com>
3692
3693 * ser-mingw.c (ser_windows_open): Use proper type when casting
3694 in call to _open_osfhandle.
3695
1dac1b47
KT
36962009-01-09 Kai Tietz <kai.tietz@onevision.com>
3697
3698 * coff-pe-read.c (read_pe_exported_syms): Fix typo.
3699
ecf180db
JB
37002009-01-09 Joel Brobecker <brobecker@adacore.com>
3701
3702 * CONTRIBUTE: Minor reformatting.
3703
8234eceb
KT
37042009-01-08 Kai Tietz <kai.tietz@onevision.com>
3705
3706 * MAINTAINERS: Add myself to Write After Approval.
a68ddad5
KT
3707 * coff-pe-read.c (read_pe_exported_syms): Enable read of PE+
3708 export directory.
8234eceb 3709
72ee8797
NF
37102009-01-08 Nathan Froyd <froydnj@codesourcery.com>
3711
3712 * remote-sim.c (gdb_os_error): Mark as a noreturn function.
3713 Call exit to make it obvious to GCC.
3714
f7545552
TT
37152009-01-08 Tom Tromey <tromey@redhat.com>
3716
3717 PR breakpoints/9350:
3718 * varobj.c (varobj_invalidate): Unconditionally free
3719 all_rootvarobj.
3720 * symfile.c (syms_from_objfile): Free local_addr when returning
3721 normally.
3722 * exec.c (exec_file_attach): Do cleanups before returning.
3723 (exec_file_command): Likewise.
3724 * corefile.c (reopen_exec_file): Do cleanups before returning.
3725 * breakpoint.c (insert_breakpoint_locations): Do cleanups before
a2f63f5e 3726 returning.
f7545552
TT
3727 (do_vec_free): New function.
3728 (update_global_location_list): Make a cleanup for old_locations.
3729 Do cleanups before returning. Remove unused variable 'e'.
3730 (find_condition_and_thread): Free result of parsing the
3731 expression.
3732 (print_it_typical): Do cleanups before returning.
3733 (breakpoint_re_set_one): Always free sals.sals.
3734
dde02812
ES
37352009-01-08 Joel Brobecker <brobecker@adacore.com>
3736 Emi Suzuki <emi-suzuki@tjsys.co.jp>
a2f63f5e 3737
dde02812
ES
3738 * breakpoint.c (do_enable_breakpoint): Use update_watchpoint for
3739 watchpoints.
3740
69bcc6bc
DE
37412009-01-07 Doug Evans <dje@google.com>
3742
3743 * top.c (gdb_prompt_string): Delete, unused.
3744
fa3a767f
PA
37452009-01-07 Pedro Alves <pedro@codesourcery.com>
3746
3747 Delete ONE_PROCESS_WRITETEXT leftovers.
3748
3749 * breakpoint.c (insert_bp_location): Delete process_warning
3750 argument. Adjust.
3751 (insert_breakpoint_locations): Adjust.
3752 (reattach_breakpoints): Adjust.
3753 * infrun.c (normal_stop): Drop "It might be running in another
3754 process" notice.
3755
7b93f36d
SS
37562009-01-07 Stan Shebs <stan@codesourcery.com>
3757
3758 * config/pa/linux.mh (XDEPFILES): Remove.
3759
0380c18b
DE
37602009-01-07 Doug Evans <dje@google.com>
3761
3762 * cli/cli-cmds.c (set_debug): Fix cut-n-paste error.
3763
60023297
JK
37642009-01-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3765
3766 * f-typeprint.c (f_type_print_base <TYPE_CODE_STRUCT>): Fix output
3767 spacing, a regression from 2008-04-22.
3768
ea8992ce
JB
37692009-01-07 Joel Brobecker <brobecker@adacore.com>
3770
3771 * utils.c (gdb_print_host_address): Adjust implementation to
3772 reuse host_address_to_string. Move comment explaining the conversion
3773 from host address to string from here...
3774 (host_address_to_string): ... to there.
3775
301d2c47
ES
37762009-01-07 Emi Suzuki <emi-suzuki@tjsys.co.jp>
3777
3778 * MAINTAINERS: Add myself for write after approval privileges.
3779
170ce852
TT
37802009-01-06 Tom Tromey <tromey@redhat.com>
3781
3782 * value.c (set_internalvar): Use value_free, not xfree.
3783
fdb7262a
JB
37842009-01-06 Jim Blandy <jimb@red-bean.com>
3785
bf1d7d9c
JB
3786 Check return values of functions declared with warn_unused_result
3787 attribute in GLIBC 2.8.
3788 * cli/cli-cmds.c (pwd_command): Check return value from getcwd.
3789 * inflow.c (check_syscall): New function.
3790 (new_tty): Use check_syscall to check return values from open and dup.
3791 * linux-nat.c (linux_nat_info_proc_cmd): Check return value from fgets.
3792 * main.c (captured_main): Call cwd after setting up gdb_stderr;
3793 check for errors from getcwd.
3794 * mi/mi-cmd-env.c (mi_cmd_env_pwd): Check return value from getcwd.
3795 * ui-file.c (stdio_file_write): Ignore return value from fwrite.
3796 (stdio_file_fputs): Same.
3797 * utils.c (internal_vproblem): abort if last-ditch error message
3798 write fails.
3799
fdb7262a
JB
3800 * top.c (gdb_init): Don't set the current directory here; that's
3801 already been done in captured_main.
3802
84603566
SL
38032009-01-06 Sandra Loosemore <sandra@codesourcery.com>
3804
3805 * ser-tcp.c: Adjust includes.
3806 (tcp_set_cmdlist, tcp_show_cmdlist): Declare.
3807 (tcp_auto_retry, tcp_retry_limit): Declare.
3808 (TIMEOUT): Remove, in favor of tcp_retry_limit.
3809 (POLL_INTERVAL): Increase to 5, in favor of backoff logic.
3810 (wait_for_connect): New function.
3811 (net_open): Use it. Add auto-retry logic.
3812 (set_tcp_cmd, show_tcp_cmd): New functions.
3813 (_initialize_ser_tcp): Initialize new "set/show tcp auto-retry"
3814 and "set/show tcp connect-timeout" commands.
3815 * NEWS: Document new commands.
3816
5171e6b3
TT
38172009-01-05 Tom Tromey <tromey@redhat.com>
3818
3819 * python/python-internal.h (Py_ssize_t): Define as int.
3820
a367a1f2
JB
38212009-01-05 Jim Blandy <jimb@red-bean.com>
3822
3823 * MAINTAINERS: Fix my e-mail address as steering committee member.
3824
0fb0cc75
JB
38252009-01-03 Joel Brobecker <brobecker@adacore.com>
3826
3827 Updated copyright notices for most files.
3828
c9fc347d
JB
38292009-01-03 Joel Brobecker <brobecker@adacore.com>
3830
3831 * top.c (print_gdb_version): Update copyright year.
3832
a85d99b4
JB
38332009-01-03 Joel Brobecker <brobecker@adacore.com>
3834
3835 * config/djgpp/fnchange.lst: Add entry for ChangeLog-2008.
3836
4d78a120
JB
38372009-01-01 Pedro Alves <pedro@codesourcery.com>
3838
3839 PR breakpoints/9681:
3840 * exceptions.h (enum errors): New error type, MEMORY_ERROR.
3841 * corefile.c (memory_error): Rewrite to throw a MEMORY_ERROR.
3842 * breakpoint.c (fetch_watchpoint_value): Ignore MEMORY_ERRORs, but
3843 retrow all other exceptions.
3844
67de2a4c 3845For older changes see ChangeLog-2008.
c906108c
SS
3846\f
3847Local Variables:
3848mode: change-log
3849left-margin: 8
3850fill-column: 74
3851version-control: never
57da7796 3852coding: utf-8
c906108c 3853End:
This page took 1.178729 seconds and 4 git commands to generate.