daily update
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2012-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
2
3 PR symtab/13777
4 * dwarf2read.c (process_full_comp_unit): Set LOCATIONS_VALID only for
5 GCC >=4.5.
6
7 2012-03-16 Chris January <chris.january@allinea.com>
8
9 * tui-tui.win.c (tui_resize_all): Use erase and clearok instead
10 of clear.
11
12 2012-03-16 Chris January <chris.january@allinea.com>
13
14 * source.c (add_path): Use memmove instead of strcpy because the
15 strings overlap.
16
17 2012-03-16 Joel Brobecker <brobecker@adacore.com>
18
19 * value.h (set_value_parent): Add declaration.
20 * value.c (set_value_parent): New function.
21 (value_address): If VALUE->PARENT is not NULL, then use it as
22 the base address instead of VALUE->LOCATION.address.
23 * ada-lang.c (ada_value_primitive_packed_val): Keep V's address
24 the same as OBJ's address. Adjust V's offset accordingly.
25 Set V's parent.
26
27 2012-03-16 Gary Benson <gbenson@redhat.com>
28
29 PR breakpoints/10738
30 * dwarf2read.c (use_deprecated_index_sections): New global.
31 (struct partial_die_info): New member may_be_inlined.
32 (read_partial_die): Set may_be_inlined where appropriate.
33 (add_partial_subprogram): Add partial symbols for partial
34 DIEs that may be inlined.
35 (new_symbol_full): Add inlined subroutines to the current
36 scope.
37 (write_psymtabs_to_index): Bump version number.
38 (dwarf2_read_index): Read only version 6 indices unless
39 use_deprecated_index_sections is set.
40 * linespec.c (symbol_and_data_callback): New structure.
41 (iterate_inline_only): New function.
42 (iterate_over_all_matching_symtabs): New argument
43 "include_inline". If nonzero, also call the callback for
44 symbols representing inlined subroutines.
45 (lookup_prefix_sym): Pass extra argument to the above.
46 (find_function_symbols): Likewise.
47 (add_matching_symbols_to_info): Likewise.
48 * NEWS: Mention that GDB can now set breakpoints on inlined
49 functions.
50
51 2012-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
52
53 * p-typeprint.c (pascal_type_print_method_args):
54 Fix display of parameter of methods.
55
56 2012-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
57
58 * amd64-windows-nat.c (_initialize_amd64_windows_nat):
59 Add missing prototype.
60
61 2012-03-16 Yao Qi <yao@codesourcery.com>
62 Jan Kratochvil <jan.kratochvil@redhat.com>
63
64 Fix false compilation warning.
65 * gnu-v3-abi.c (print_one_vtable): Initialize ADDR.
66
67 2012-03-15 Jonathan Larmour <jifl@eCosCentric.com>
68 Pedro Alves <pedro@codesourcery.com>
69
70 * arm-tdep.c: Include "remote.h" and "features/arm-with-m-fpa-layout.c".
71 (arm_register_g_packet_guesses): New function.
72 (arm_gdbarch_init): Don't force a target description with
73 registers when the executable is detected as M-profile. Instead
74 set gdbarch->tdep->is_m. Register `g' packet guesses.
75 (_initialize_arm_tdep): Initialize the new target description.
76 * features/arm-with-m-fpa-layout.xml: New description.
77 * features/arm-with-m-fpa-layout.c: New, generated.
78
79 2012-03-15 Joel Brobecker <brobecker@adacore.com>
80
81 * breakpoint.c (breakpoint_xfer_memory): Add assertion.
82 Update function description.
83 (insert_bp_location): Do not wipe bl->target_info out.
84 * mem-break.c: #include "gdb_string.h".
85 (default_memory_insert_breakpoint): Do not call target_read_memory
86 with a pointer to the breakpoint's shadow_contents buffer. Use
87 a local buffer instead.
88 * m32r-tdep.c (m32r_memory_insert_breakpoint): Ditto.
89
90 2012-03-15 Tom Tromey <tromey@redhat.com>
91
92 * NEWS: Mention "info vtbl", not "info vtable".
93 * cp-support.c (info_vtbl_command): Fix comment.
94 (_initialize_cp_support): Fix text.
95
96 2012-03-15 Tom Tromey <tromey@redhat.com>
97
98 * cp-valprint.c (cp_print_value_fields): Use
99 print_function_pointer_address for vtable slot.
100
101 2012-03-15 Tom Tromey <tromey@redhat.com>
102
103 * gnu-v3-abi.c (struct value_and_voffset): New.
104 (hash_value_and_voffset, eq_value_and_voffset)
105 (compare_value_and_voffset, compute_vtable_size)
106 (print_one_vtable, gnuv3_print_vtable): New functions.
107 (init_gnuv3_ops): Initialize 'print_vtable' field.
108 * cp-support.c (info_vtbl_command): New function.
109 (_initialize_cp_support): Add "info vtbl".
110 * cp-abi.h (cplus_print_vtable): Declare.
111 (struct cp_abi_ops) <print_vtable>: New field.
112 * cp-abi.c (cplus_print_vtable): New function.
113 * NEWS: Update.
114
115 2012-03-15 Tom Tromey <tromey@redhat.com>
116
117 * d-lang.c (d_language_defn) <la_iterate_over_symbols>: Set to
118 iterate_over_symbols.
119
120 2012-03-14 Doug Evans <dje@google.com>
121
122 * dwarf2read.c (dwarf_stack_op_name): Add DW_OP_GNU_encoded_addr,
123 DW_OP_GNU_parameter_ref.
124
125 2012-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
126
127 Fix double prompt of 'interpreter-exec mi'.
128 * mi/mi-interp.c (mi_execute_command_input_handler): New prototype.
129 (mi_interpreter_resume): use it.
130 (mi_execute_command_input_handler): New function.
131 * mi/mi-main.c (mi_execute_command): Move prompt printing to
132 mi_execute_command_input_handler.
133
134 2012-03-13 Josh Matthews <josh@joshmatthews.net> (tiny change)
135
136 * darwin-nat-info.c (_initialize_darwin_info_commands): Add
137 prototype.
138 (darwin_debug_port_info): Make static.
139 * darwin-nat.c (_initialize_darwin_inferior): Add prototype.
140 * machoread.c (_initialize_machoread): Add prototype.
141 * i386-darwin-nat.c (i386_darwin_dr_set, i386_darwin_dr_get)
142 (i386_darwin_set_control, i386_darwin_get_control)
143 i386_darwin_dr_set_addr, i386_darwin_get_addr)
144 i386_darwin_get_status, i386_darwin_get_control):
145 Comment out with HW_WATCHPOINT_NOT_YET_ENABLED macro.
146
147 2012-03-13 Joel Brobecker <brobecker@adacore.com>
148
149 * ax-gdb.c (gen_usual_unary): Remove special handling of
150 enum and bool types.
151
152 2012-03-13 Joel Brobecker <brobecker@adacore.com>
153
154 * ax-gdb.c (gen_fetch): Add handling for TYPE_CODE_RANGE types.
155
156 2012-03-13 Joel Brobecker <brobecker@adacore.com>
157
158 * aix-thread.c (supply_fprs): Make more consistent with fill_fprs.
159
160 2012-03-13 Chris January <chris.january@allinea.com>
161
162 * aix-thread.c (fill_sprs): Store the floating point registers
163 at the correct offsets into vals.
164
165 2012-03-13 Doug Evans <dje@google.com>
166
167 * NEWS: Mention symbol-reloading has been deleted.
168 * symfile.c (symbol_reloading): Delete.
169 (show_symbol_reloading): Delete.
170 (_initialize_symfile): Delete set/show symbol-reloading.
171
172 * dwarf2read.c (load_partial_comp_unit): Defer adding cu to
173 read_in_chain until we have successfully read it in.
174 (load_full_comp_unit): Ditto.
175 (read_signatured_type): Add comment.
176
177 2012-03-13 Chris January <chris.january@allinea.com>
178
179 * stabsread.c (fix_common_block): Change type of valu argument
180 to CORE_ADDR.
181
182 2012-03-13 Chris January <chris.january@allinea.com>
183
184 * rs6000-tdep.c (skip_prologue): Support the oril r29, r1, 0x0
185 instruction.
186
187 2012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
188
189 * common/linux-procfs.c (linux_proc_get_int): New, from
190 linux_proc_get_tgid, change its LWPID type to pid_t, add parameter
191 field.
192 (linux_proc_get_tgid): Only call linux_proc_get_int.
193 (linux_proc_get_tracerpid): New.
194 (linux_proc_pid_has_state): New, from linux_proc_pid_is_zombie.
195 (linux_proc_pid_is_stopped, linux_proc_pid_is_zombie): Only call
196 linux_proc_pid_has_state.
197 * common/linux-procfs.h (linux_proc_get_tracerpid): New declaration.
198 * common/linux-ptrace.c: Include linux-procfs.h and buffer.h.
199 (linux_ptrace_attach_warnings): New.
200 * common/linux-ptrace.h (struct buffer, linux_ptrace_attach_warnings):
201 New declaration.
202 * linux-nat.c: Include exceptions.h, linux-ptrace.h and buffer.h.
203 (linux_nat_attach): New variables ex, buffer, message and message_s.
204 Wrap to_attach by TRY_CATCH and call linux_ptrace_attach_warnings.
205
206 2012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
207
208 * Makefile.in (linux-ptrace.o): New.
209 * common/linux-procfs.c (linux_proc_pid_is_zombie): New,
210 from linux-nat.c.
211 * common/linux-procfs.h (linux_proc_pid_is_zombie): New declaration.
212 * common/linux-ptrace.c: New file.
213 * config/alpha/alpha-linux.mh (NATDEPFILES): Add linux-ptrace.o.
214 * config/arm/linux.mh: Likewise.
215 * config/i386/linux.mh: Likewise.
216 * config/i386/linux64.mh: Likewise.
217 * config/ia64/linux.mh: Likewise.
218 * config/m32r/linux.mh: Likewise.
219 * config/m68k/linux.mh: Likewise.
220 * config/mips/linux.mh: Likewise.
221 * config/pa/linux.mh: Likewise.
222 * config/powerpc/linux.mh: Likewise.
223 * config/powerpc/ppc64-linux.mh: Likewise.
224 * config/powerpc/spu-linux.mh: Likewise.
225 * config/s390/s390.mh: Likewise.
226 * config/sparc/linux.mh: Likewise.
227 * config/sparc/linux64.mh: Likewise.
228 * config/xtensa/linux.mh: Likewise.
229 * linux-nat.c (linux_lwp_is_zombie): Remove, move it to
230 common/linux-procfs.c.
231 (wait_lwp): Rename linux_lwp_is_zombie to linux_proc_pid_is_zombie.
232
233 2012-03-13 Hui Zhu <teawater@gmail.com>
234 Pedro Alves <palves@redhat.com>
235
236 * breakpoint.c (init_breakpoint_sal): New flags parameter. Handle
237 CREATE_BREAKPOINT_FLAGS_INSERTED.
238 (create_breakpoint_sal, create_breakpoints_sal)
239 (base_breakpoint_create_breakpoints_sal)
240 (tracepoint_create_breakpoints_sal)
241 (strace_marker_create_breakpoints_sal): New flags parameter. Pass
242 down.
243 (break_command_1, handle_gnu_v3_exceptions, trace_command)
244 (ftrace_command, strace_command): Adjust.
245 (create_tracepoint_from_upload): Pass
246 CREATE_BREAKPOINT_FLAGS_INSERTED.
247 * breakpoint.h (enum breakpoint_create_flags): New.
248 (create_breakpoint): New flags parameter.
249 * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
250 * python/py-breakpoint.c (bppy_init): Adjust.
251 * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust.
252 * spu-tdep.c (spu_catch_start): Adjust.
253
254 2012-03-13 Pedro Alves <palves@redhat.com>
255 Hui Zhu <teawater@gmail.com>
256 Yao Qi <yao@codesourcery.com>
257
258 * remote.c (struct remote_state): New field `starting_up'.
259 (remote_start_remote): Set and clear it.
260 (remote_can_download_tracepoint): If starting up, return false.
261
262 2012-03-13 Yao Qi <yao@codesourcery.com>
263
264 * inferior.h (struct inferior): Remove fields any_syscall_count,
265 syscalls_counts and total_syscalls_count. Move them to new
266 struct catch_syscall_inferior_data in breakpoint.c.
267 * breakpoint.c: Call DEF_VEC_I(int).
268 (struct catch_syscall_inferior_data): New.
269 (get_catch_syscall_inferior_data): New.
270 (catch_syscall_inferior_data_cleanup): New.
271 (insert_catch_syscall): Update to access data in
272 struct catch_syscall_inferior_data.
273 (insert_catch_syscall): Likewise.
274 (remove_catch_syscall): Likewise.
275 (remove_catch_syscall): Likewise.
276 (is_syscall_catchpoint_enabled): Likewise.
277 (add_catch_command): Likewise.
278 (_initialize_breakpoint): Register cleanup.
279 * breakpoint.h: Removed DEF_VEC_I(int).
280 * dwarf2loc.c: Call DEF_VEC_I(int).
281 * mi/mi-main.c: Likewise.
282
283 2012-03-12 Mark Kettenis <kettenis@gnu.org>
284
285 * inf-ptrace.c (inf_ptrace_post_attach): Make static.
286
287 2012-03-12 Chris January <chris.january@allinea.com>
288
289 * aix-thread.c (_initialize_aix_thread): Add prototype.
290 * rs6000-nat.c (_initialize_rs6000_nat): Ditto.
291 * xcoffsolib.c (_initialize_xcoffsolib): Ditto.
292
293 2012-03-12 Joel Brobecker <brobecker@adacore.com>
294
295 * amd64bsd-nat.c: Move #include of "amd64bsd-nat.h" after
296 include of "amd64-nat.h".
297
298 2012-03-12 Tom Tromey <tromey@redhat.com>
299
300 * buildsym.c (record_pending_block): Now static.
301 * buildsym.h: (record_pending_block): Remove.
302
303 2012-03-12 Andreas Tobler <andreast@fgznet.ch>
304
305 * amd64bsd-nat.c: Include amd64bsd-nat.h.
306
307 2012-03-09 Tom Tromey <tromey@redhat.com>
308
309 * dwarf2read.c (struct dwarf2_cu) <checked_producer,
310 producer_is_gxx_lt_4_6>: New fields.
311 (producer_is_gxx_lt_4_6): Use and update producer cache fields.
312
313 2012-03-09 Tom Tromey <tromey@redhat.com>
314
315 * dwarf2read.c (dwarf2_attr): Avoid tail-recursive call.
316
317 2012-03-08 Joel Brobecker <brobecker@adacore.com>
318
319 * ravenscar-sparc-thread.c (_initialize_ravenscar_sparc): Add
320 prototype.
321
322 2012-03-08 Joel Brobecker <brobecker@adacore.com>
323
324 * ravenscar-thread.c (_initialize_ravenscar): Add prototype.
325
326 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
327
328 Fix -Wmissing-prototypes build.
329 * arm-linux-nat.c (get_thread_id): Make it static.
330 * xtensa-linux-nat.c (get_thread_id): Likewise.
331
332 2012-03-08 Joel Brobecker <brobecker@adacore.com>
333
334 * server.c (process_point_options): If a conditional expression
335 is found, only print a message if remote_debug is nonzero.
336
337 2012-03-08 Luis Machado <lgustavo@codesourcery.com>
338
339 * ax-gdb.c (gen_fetch): Fail gracefully and use error instead
340 of internal error for unknown/unsupported types.
341
342 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
343
344 Fix CU relative vs. absolute DIE offsets.
345 * dwarf2loc.h (dwarf2_fetch_die_location_block): Rename parameter
346 offset to offset_in_cu.
347 * dwarf2read.c (process_enumeration_scope): Add CU offset to
348 TYPE_OFFSET.
349 (dwarf2_fetch_die_location_block): Rename parameter offset to
350 offset_in_cu. New variable offset, add CU offset to OFFSET_IN_CU.
351
352 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
353
354 * libunwind-frame.c: Rename to ...
355 * ia64-libunwind-tdep.c: ... here.
356 * libunwind-frame.h: Rename to ...
357 * ia64-libunwind-tdep.h: ... here.
358 * Makefile.in (HFILES_NO_SRCDIR): Rename libunwind-frame.h to
359 ia64-libunwind-tdep.h.
360 (ALLDEPFILES): Rename libunwind-frame.c to ia64-libunwind-tdep.c.
361 * README (--with-libunwind): Rename to ...
362 (--with-libunwind-ia64): ... here, note it is ia64 specific now.
363 * config.in: Regenerate.
364 * configure: Regenerate.
365 * configure.ac: New option --with-libunwind-ia64, make the
366 AS_HELP_STRING ia64 specific. Deprecate option --with-libunwind.
367 Remove AC_DEFINE for HAVE_LIBUNWIND.
368 * ia64-libunwind-tdep.c: Make the file top comment ia64 specific.
369 Rename libunwind-frame.h #include to ia64-libunwind-tdep.h.
370 Rename libunwind-frame in the general comment.
371 * ia64-libunwind-tdep.h: Make the file top comment ia64 specific.
372 Rename symbol LIBUNWIND_FRAME_H to IA64_TDEP_LIBUNWIND_FRAME_H.
373 Move forward declarations inside #ifndef. Rename libunwind-frame in
374 the general comment.
375 * ia64-tdep.c: Rename libunwind-frame.h #include to
376 ia64-libunwind-tdep.h.
377 (ia64_gdb2uw_regnum, ia64_uw2gdb_regnum, ia64_is_fpreg)
378 (ia64_libunwind_descr): Rename libunwind-frame to
379 ia64-libunwind-tdep in these function comments.
380 * ia64-tdep.h: Rename libunwind-frame.h #include to
381 ia64-libunwind-tdep.h.
382 * ia64-vms-tdep.c (ia64_vms_libunwind_descr): Rename libunwind-frame to
383 ia64-libunwind-tdep in that data comment.
384
385 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
386
387 * libunwind-frame.h (struct frame_unwind): New declaration.
388
389 2012-03-08 Joel Brobecker <brobecker@adacore.com>
390
391 * breakpoint.c (_initialize_breakpoint): Fix error in help of
392 "set breakpoint condition-evaluation" command.
393
394 2012-03-08 Tristan Gingold <gingold@adacore.com>
395
396 * sparc-stub.c: Move to stubs/
397 * sh-stub.c: Likewise.
398 * m68k-stub.c: Likewise.
399 * m32r-stub.c: Likewise.
400 * i386-stub.c: Likewise.
401
402 2012-03-08 Andreas Schwab <schwab@linux-m68k.org>
403
404 * m68klinux-tdep.c (m68k_linux_init_abi): Register
405 linux_get_siginfo_type.
406
407 * m68klinux-nat.c: Include "gdb_proc_service.h".
408 (PTRACE_GET_THREAD_AREA): Define.
409 (ps_get_thread_area): New function.
410
411 2012-03-08 Yao Qi <yao@codesourcery.com>
412
413 * remote.c (remote_get_noisy_reply): Replace `sprintf' with
414 `xsnprintf'.
415 (remote_query_attached): Likewise.
416 (remote_static_tracepoint_marker_at): Likewise.
417 (remote_set_permissions): Likewise.
418 (remote_detach_1, extended_remote_attach_1): Likewise.
419 (send_g_packet, remote_vkill): Likewise.
420 (extended_remote_disable_randomization): Likewise.
421 (remote_add_target_side_condition): Likewise.
422 (remote_insert_breakpoint): Likewise.
423 (remote_remove_breakpoint): Likewise.
424 (remote_insert_watchpoint): Likewise.
425 (remote_remove_watchpoint): Likewise.
426 (remote_insert_hw_breakpoint): Likewise.
427 (remote_insert_hw_breakpoint): Likewise.
428 (remote_remove_hw_breakpoint): Likewise.
429 (remote_download_command_source): Likewise.
430 (remote_download_tracepoint): Likewise.
431 (remote_download_trace_state_variable): Likewise.
432 (remote_disable_tracepoint): Likewise.
433 (remote_trace_set_readonly_regions): Likewise.
434 (remote_get_tracepoint_status): Likewise.
435 (remote_trace_find): Likewise.
436 (remote_get_trace_state_variable_value): Likewise.
437 (remote_set_disconnected_tracing): Likewise.
438 (remote_set_circular_trace_buffer): Likewise.
439 (remote_get_min_fast_tracepoint_insn_len): Likewise.
440 (remote_use_agent): Likewise.
441 (remote_add_target_side_condition): Add one parameter BUF_SIZE.
442 Update callers.
443
444 2012-03-07 Pedro Alves <palves@redhat.com>
445
446 * NEWS: Mention QProgramSignals.
447 * inferior.h (update_signals_program_target): Declare.
448 * infrun.c: (update_signals_program_target): New.
449 (handle_command): Update the target of the new program signals
450 array changes.
451 * remote.c (PACKET_QProgramSignals): New enum.
452 (last_program_signals_packet): New global.
453 (remote_program_signals): New.
454 (remote_start_remote): Update the target with the program signals
455 list.
456 (remote_protocol_features): Add entry for QPassSignals.
457 (remote_open_1): Free anc clear last_program_signals_packet.
458 (init_remote_ops): Install remote_program_signals.
459 * target.c (update_current_target): Adjust.
460 (target_program_signals): New.
461 * target.h (struct target_ops) <to_program_signals>: New field.
462 (target_program_signals): Declare.
463
464 2012-03-07 Pedro Alves <palves@redhat.com>
465
466 * NEWS: Add subtitle for new z0/z1 conditional breakpoint
467 extensions.
468
469 2012-03-07 Andreas Schwab <schwab@linux-m68k.org>
470
471 * m68klinux-nat.c (getregs_supplies): Make static.
472 (getfpregs_supplies): Likewise.
473 (have_ptrace_getregs): Likewise.
474
475 2012-03-06 Joel Brobecker <brobecker@adacore.com>
476
477 * dwarf2read.c (dwarf2_get_die_type): Pass absolute offset
478 in call to get_die_type_at_offset.
479
480 2012-03-06 Stan Shebs <stan@codesourcery.com>
481
482 * mi/mi-cmd-break.c: Enforce coding standards, fix comments.
483 * mi/mi-cmd-disas.c: Ditto.
484 * mi/mi-cmd-env.c: Ditto.
485 * mi/mi-cmd-file.c: Ditto.
486 * mi/mi-cmd-stack.c: Ditto.
487 * mi/mi-cmd-target.c: Ditto.
488 * mi/mi-cmd-var.c: Ditto.
489 * mi/mi-cmds.c: Ditto.
490 * mi/mi-cmds.h: Ditto.
491 * mi/mi-console.c: Ditto.
492 * mi/mi-getopt.c: Ditto.
493 * mi/mi-getopt.h: Ditto.
494 * mi/mi-interp.c: Ditto.
495 * mi/mi-main.c: Ditto.
496 * mi/mi-out.c: Ditto.
497 * mi/mi-parse.c: Ditto.
498 * mi/mi-parse.h: Ditto.
499 * mi/mi-symbol-cmds.c: Ditto.
500
501 * mi/mi-getopt.h: Move mi_opt struct up.
502 * mi/mi-main.c (captured_mi_execute_command): Remove redundant
503 return.
504 * mi/mi-out.c (_initialize_mi_out): Remove empty initialize.
505
506 2012-03-06 Tom Tromey <tromey@redhat.com>
507
508 * proc-service.c (ps_pglobal_lookup): Set the current program
509 space.
510
511 2012-03-06 Pedro Alves <palves@redhat.com>
512
513 * gregset.h [HAVE_SYS_PROCFS_H]: Include <sys/procfs.h>.
514
515 2012-03-05 Joel Brobecker <brobecker@adacore.com>
516
517 * MAINTAINERS: List Maciej W. Rozycki as the mips maintainer.
518
519 2012-03-05 Jan Kratochvil <jan.kratochvil@redhat.com>
520
521 Code cleanup.
522 * common/linux-osdata.c (linux_common_core_of_thread): New function
523 comment.
524 * linux-nat.c (linux_nat_wait_1): Replace linux_nat_core_of_thread_1
525 call by linux_common_core_of_thread.
526 (linux_nat_core_of_thread_1): Remove.
527 * linux-nat.h (linux_nat_core_of_thread_1): Remove declaration.
528 * linux-thread-db.c: Include linux-osdata.h.
529 (update_thread_core): Replace linux_nat_core_of_thread_1 call by
530 linux_common_core_of_thread.
531
532 2012-03-05 Tom Tromey <tromey@redhat.com>
533
534 * value.c (value_primitive_field): Don't fetch contents for
535 non-virtual bases.
536
537 2012-03-05 Tom Tromey <tromey@redhat.com>
538
539 * jv-valprint.c (java_value_print): Correctly compute 'obj_addr'.
540
541 2012-03-05 Andreas Arnez <arnez@linux.vnet.ibm.com>
542
543 * s390-nat.c: Include "gregset.h".
544
545 2012-03-05 Jan Kratochvil <jan.kratochvil@redhat.com>
546
547 * libunwind-frame.c (LIBUNWIND_SO): Change .7 to .8.
548 [!LIBUNWIND_SO] (LIBUNWIND_SO_7): New #define.
549 (libunwind_load): New variable so_error, use it for dlerror. Try to
550 load also LIBUNWIND_SO_7.
551
552 2012-03-05 Pedro Alves <palves@redhat.com>
553
554 * i387-tdep.c (i387_supply_xsave): Assert the xsave section buffer
555 is not NULL, and remove resulting dead code.
556
557 2012-03-05 Thomas Schwinge <thomas@codesourcery.com>
558
559 * sh-tdep.c (sh_skip_prologue): Provide an upper limit on the function
560 prologue to sh_analyze_prologue.
561 (sh_analyze_prologue): Make better use of such an upper limit, and
562 generally be more cautious about accessing memory.
563
564 2012-03-05 Tom Tromey <tromey@redhat.com>
565
566 * ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Rename from
567 _initialize_ia64_hpux_tdep.
568
569 2012-03-05 Pedro Alves <palves@redhat.com>
570
571 PR gdb/13766
572
573 * i387-tdep.c (i387_supply_xsave): If we have an xsave buffer, and
574 the register state is clear, supply explicit zero, instead of
575 marking the register unavailable.
576
577 2012-03-05 Tristan Gingold <gingold@adacore.com>
578
579 * NEWS: Mention OpenVMS ia64 new target.
580
581 2012-03-05 Tristan Gingold <gingold@adacore.com>
582
583 * ia64-tdep.h: Include libunwind-frame.h and libunwind-ia64.h.
584 (ia64_unw_accessors, ia64_unw_rse_accessors)
585 (ia64_libunwind_descr): Declare.
586 * ia64-vms-tdep.c: New file.
587 * ia64-tdep.c (ia64_unw_accessors, ia64_unw_rse_accessors)
588 (ia64_libunwind_descr): Make them public.
589 * configure.tgt: Add ia64-*-*vms*.
590 * Makefile.in (ALL_64_TARGET_OBS): Add ia64-vms-tdep.o
591 (ALLDEPFILES): Add ia64-vms-tdep.c
592
593 2012-03-05 Tristan Gingold <gingold@adacore.com>
594
595 * target.h (target_object): Add TARGET_OBJECT_OPENVMS_UIB.
596 * remote.c (PACKET_qXfer_uib): New enum value.
597 (remote_protocol_features): Add entry for PACKET_qXfer_uib.
598 (remote_xfer_partial): Handle TARGET_OBJECT_OPENVMS_UIB.
599 (_initialize_remote): Call add_packet_config_cmd for
600 xfer:uib packet.
601
602 2012-03-05 Tristan Gingold <gingold@adacore.com>
603
604 * osabi.c (gdb_osabi_names): Add OpenVMS.
605 (generic_elf_osabi_sniffer): Likewise.
606 * defs.h (gdb_osabi): Add GDB_OSABI_OPENVMS.
607
608 2012-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
609
610 Removed unused code.
611 * libunwind-frame.c (libunwind_frame_unwind)
612 (libunwind_frame_base_address): Remove.
613 * libunwind-frame.h (libunwind_frame_base_address): Remove declaration.
614
615 2012-03-04 Yao Qi <yao@codesourcery.com>
616
617 * common/agent.c (gdb_connect_sync_socket): Add _ markup and
618 remove trailing new line.
619 (agent_run_command, agent_run_command): Add _ markup.
620 (agent_capability_check): Likewise.
621
622 2012-03-03 Jan Kratochvil <jan.kratochvil@redhat.com>
623
624 * breakpoint.c (set_condition_evaluation_mode): Set
625 CONDITION_EVALUATION_MODE unconditionally.
626
627 2012-03-03 Yao Qi <yao@codesourcery.com>
628
629 * common/agent.c (agent_look_up_symbols): Add one parameter 'arg'.
630 * common/agent.h: Update declaration.
631 * inf-child.c (inf_child_use_agent): New.
632 (inf_child_can_use_agent): New.
633 (inf_child_target): Initialize fields `to_use_agent'
634 and `to_can_use_agent'.
635 * agent.c (agent_new_objfile): New.
636 (_initialize_agent): Add agent_new_objfile to new_objfile
637 observer.
638
639 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
640 New.
641 (linux_target_install_ops): Initialize field
642 `to_static_tracepoint_markers_by_strid'.
643 * remote.c (free_current_marker): Move it to ...
644 * tracepoint.c (free_current_marker): ... here. New.
645 (cleanup_target_stop): New.
646 * tracepoint.h: Declare free_current_marker.
647 * NEWS: Add one entry about `info static-tracepoint-marker'.
648
649 2012-03-03 Yao Qi <yao@codesourcery.com>
650
651 * common/agent.c (agent_loaded_p): New.
652 (agent_look_up_symbols): New global.
653 * common/agent.h: Declare agent_loaded_p.
654
655 2012-03-03 Yao Qi <yao@codesourcery.com>
656
657 * common/agent.c (struct ipa_sym_addresses) <addr_capability>: New.
658 (agent_capability_check, agent_capability_invalidate): New.
659 (symbol_list): New array element.
660 * common/agent.h (enum agent_capa): New.
661 * target.c (target_pre_inferior): Call agent_capability_invalidate.
662
663 2012-03-03 Yao Qi <yao@codesourcery.com>
664
665 * target.h (struct target_ops) <to_use_agent>: New field.
666 (struct target_ops) <to_can_use_agent>: New field.
667 (target_use_agent, target_can_use_agent): New macro.
668 * target.c (update_current_target): Update.
669 * remote.c: New enum `PACKET_QAgent'.
670 (remote_protocol_features): Add a new element.
671 (remote_use_agent, remote_can_use_agent): New.
672 (init_remote_ops): Initialize field `can_use_agent' with
673 remote_can_use_agent. Intiailize field `use_agent' with
674 remote_use_agent.
675 * common/agent.c (use_agent): New global.
676 * common/agent.h: Declare it.
677 * tracepoint.c (info_static_tracepoint_markers_command): Add
678 comment.
679 * Makefile.in (SFILES): Add common/agent.c and agent.c.
680 (COMMON_OBS): Add common/agent.o and agent.o
681 (common-agent.o): New rule.
682 * agent.c: New.
683
684 2012-03-03 Yao Qi <yao@codesourcery.com>
685
686 * common/agent.c: New.
687 * common/agent.h: New.
688 * configure.ac: Add `sys/socket.h' and `sys/un.h' to
689 AC_CHECK_HEADERS.
690 * configure, configh.in: Regenerated.
691
692 2012-03-02 Kevin Buettner <kevinb@redhat.com>
693
694 * sh-tdep.c (sh_frame_cache): Don't fetch the FPSCR register
695 unless it exists for this architecture.
696
697 2012-03-02 Joel Brobecker <brobecker@adacore.com>
698
699 * language.h (struct language_defn): New "method" la_read_var_value.
700 * findvar.c: #include "language.h".
701 (default_read_var_value): Renames read_var_value. Rewrite
702 function description.
703 (read_var_value): New function.
704 * value.h (default_read_var_value): Add prototype.
705 * ada-lang.c (ada_read_renaming_var_value, ada_read_var_value):
706 New functions.
707 (ada_language_defn): Add entry for la_read_var_value.
708 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, language.c,
709 * m2-lang.c, objc-lang.c, opencl-lang.c, p-lang.c: Update
710 language_defn structures to add entry for new la_read_var_value
711 field.
712
713 2012-03-02 Tom Tromey <tromey@redhat.com>
714 Pedro Alves <palves@redhat.com>
715
716 PR breakpoints/13776:
717 * breakpoint.c (breakpoint_init_inferior): Delete step-resume
718 breakpoints.
719 (delete_longjmp_breakpoint_at_next_stop): New.
720 * breakpoint.h (delete_longjmp_breakpoint_at_next_stop): Declare.
721 * target.c (generic_mourn_inferior): Call mark_breakpoints_out
722 before deleting the inferior. Add comments.
723 * thread.c (clear_thread_inferior_resources): Don't delete lonjmp
724 breakpoints immediately, but only on next stop. Move that code
725 next to where we mark other breakpoints for deletion.
726
727 2012-03-02 Joel Brobecker <brobecker@adacore.com>
728
729 * mips-linux-nat.c (mips_linux_read_description): Add missing i18n
730 marker.
731 * mips-tdep.c (mips_linux_reg_names): Improve comment to avoid ARI
732 violation.
733
734 2012-03-02 Pedro Alves <palves@redhat.com>
735
736 * linux-thread-db.c (attach_thread): Avoid in_thread_list call.
737
738 2012-03-02 Ulrich Weigand <uweigand@de.ibm.com>
739
740 Fix -Wmissing-prototypes build.
741 * ppc-linux-nat.c (ppc_linux_get_hwcap): Make static.
742 * remote-sim.c (gdbsim_has_all_memory): Likewise.
743 (gdbsim_has_memory): Likewise.
744
745 2012-03-02 Yao Qi <yao@codesourcery.com>
746
747 Fix -Wmissing-prototypes build.
748 * charset.c (phony_iconv_open): Make static.
749 (phony_iconv_close, phony_iconv): Likewise.
750 * i386-linux-nat.c (_initialize_i386_linux_nat): New prototype.
751 * i386-windows-nat.c (_initialize_i386_windows_nat): New
752 prototype.
753 * mingw-hdep.c (_initialize_mingw_hdep): New prototype.
754 * ser-mingw.c (create_select_thread): Make static.
755 * windows-termcap.c (tgetent): New prototype.
756 (tgetnum, tgetflag, tgetstr, tputs, tgoto): Likewise.
757
758 2012-03-02 Zhang Yuanhui <asmwarrior@gmail.com>
759
760 Fix -Wmissing-prototypes build.
761 * windows-nat.c (dll_symbol_command, ctrl_c_handler): Make them static.
762 (_initialize_windows_nat, _initialize_check_for_gdb_ini)
763 (_initialize_loadable): New prototypes.
764
765 2012-03-02 Doug Evans <dje@google.com>
766
767 * dwarf2read.c (load_full_comp_unit): Remove unnecessary reading of
768 abbrev table, read_comp_unit will do it.
769
770 2012-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
771
772 Fix -Wmissing-prototypes build.
773 * alpha-tdep.c (alpha_deal_with_atomic_sequence): Make it static.
774 * amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): New prototype.
775 * amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Likewise.
776 * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code): Make it static.
777 (_initialize_arm_symbian_tdep): New prototype.
778 * arm-wince-tdep.c (arm_wince_skip_main_prologue): Make it static.
779 * i386-darwin-tdep.c (_initialize_i386_darwin_tdep): New prototype.
780 * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Make it
781 static.
782 * lm32-tdep.c (_initialize_lm32_tdep): New prototype.
783 * microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): New
784 prototype.
785 * microblaze-tdep.c (microblaze_debug, microblaze_fetch_instruction)
786 (microblaze_skip_prologue, microblaze_frame_cache): Make them static.
787 * mips-linux-tdep.c (mips_linux_regset_from_core_section): Make it
788 static.
789 * moxie-tdep.c (moxie_process_record): Likewise.
790 * remote-mips.c (mips_can_use_watchpoint, mips_insert_watchpoint)
791 (mips_remove_watchpoint, mips_stopped_by_watchpoint): Make them static.
792 * rl78-tdep.c (rl78_breakpoint_from_pc): Make it static.
793 (_initialize_rl78_tdep): New prototype.
794 * rx-tdep.c (rx_breakpoint_from_pc): Make it static.
795 (_initialize_rx_tdep): New prototype.
796 * solib-darwin.c (darwin_in_dynsym_resolve_code): Make it static.
797 (_initialize_darwin_solib): New prototype.
798 * solib-spu.c: Include solib-spu.h.
799 (_initialize_spu_solib): New prototype.
800 * spu-multiarch.c (_initialize_spu_multiarch): New prototype.
801 * tic6x-tdep.c (tic6x_analyze_prologue, tic6x_skip_prologue)
802 (tic6x_breakpoint_from_pc, tic6x_frame_unwind_cache)
803 (tic6x_software_single_step): Make it static.
804 (_initialize_tic6x_tdep): New prototype.
805
806 2012-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
807
808 Fix -Wmissing-prototypes build.
809 * cris-tdep.c (cris_can_use_hardware_watchpoint)
810 (cris_region_ok_for_watchpoint, cris_stopped_data_address): Remove.
811
812 2012-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
813
814 Fix -Wmissing-prototypes build.
815 * frv-tdep.c (frv_check_watch_resources, frv_stopped_data_address)
816 (frv_have_stopped_data_address): Remove.
817
818 2012-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
819
820 Fix -Wmissing-prototypes build.
821 * Makefile.in (HFILES_NO_SRCDIR): Add sh64-tdep.h.
822 * sh-tdep.c: Include sh64-tdep.h.
823 * sh-tdep.h (sh64_gdbarch_init, sh64_show_regs): Remove declarations.
824 * sh64-tdep.c: Include sh64-tdep.h.
825 * sh64-tdep.h: New file.
826
827 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
828
829 * mips-tdep.c (mips32_scan_prologue): Correct indentation.
830
831 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
832
833 * mips-tdep.c (mips_gdbarch_init): Only set pc_regnum and
834 sp_regnum once the gdbarch_init_osabi hook has been called.
835
836 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
837
838 * mips-tdep.c (mips32_bc1_pc): New function.
839 (mips32_next_pc): Handle BC1ANY2F, BC1ANY2T, BC1ANY4F, BC1ANY4T,
840 BPOSGE32 and BPOSGE64 instructions.
841 (deal_with_atomic_sequence): Likewise.
842 (mips32_instruction_has_delay_slot): Likewise.
843
844 2012-03-01 Maciej W. Rozycki <macro@mips.com>
845 Chris Dearman <chris@mips.com>
846 Maciej W. Rozycki <macro@codesourcery.com>
847 Joseph Myers <joseph@codesourcery.com>
848
849 * features/mips-dsp.xml: New file.
850 * features/mips64-dsp.xml: New file.
851 * features/mips-dsp-linux.xml: New file.
852 * features/mips64-dsp-linux.xml: New file.
853 * features/Makefile (WHICH): Add mips-dsp-linux and
854 mips64-dsp-linux.
855 (mips-dsp-expedite, mips64-dsp-expedite): New variables.
856 * features/mips-dsp-linux.c: New file.
857 * features/mips64-dsp-linux.c: New file.
858 * regformats/mips-dsp-linux.dat: New file.
859 * regformats/mips64-dsp-linux.dat: New file.
860 * mips-linux-nat.c (mips_linux_register_addr): Handle DSP
861 registers.
862 (mips64_linux_register_addr): Likewise.
863 (mips64_linux_regsets_fetch_registers): Likewise.
864 (mips64_linux_regsets_store_registers): Likewise.
865 (mips64_linux_fetch_registers): Update call to
866 mips64_linux_regsets_fetch_registers.
867 (mips64_linux_store_registers): Update call to
868 mips64_linux_regsets_store_registers.
869 (mips_linux_read_description): Probe for DSP registers.
870 (_initialize_mips_linux_nat): Call initialize_tdesc_mips_dsp_linux
871 and initialize_tdesc_mips64_dsp_linux.
872 * mips-linux-tdep.c (supply_gregset, mips64_supply_gregset):
873 Remove padding of no longer used embedded register slots.
874 * mips-linux-tdep.h (DSP_BASE, DSP_CONTROL): New macros.
875 (MIPS_RESTART_REGNUM): Redefine enum value.
876 * mips-tdep.c (mips_generic_reg_names): Remove trailing null
877 strings.
878 (mips_tx39_reg_names): Likewise.
879 (mips_linux_reg_names): New array of register names for Linux
880 targets.
881 (mips_register_name): Check for a null pointer in
882 mips_processor_reg_names and return an empty string.
883 (mips_register_type): Exclude embedded registers for the IRIX
884 and Linux ABIs.
885 (mips_pseudo_register_type): Likewise. Use dynamic numbers to
886 refer to FP registers, LO, HI, BadVAddr, Cause and PC. Handle
887 DSP registers.
888 (mips_stab_reg_to_regnum): Handle DSP accumulators.
889 (mips_dwarf_dwarf2_ecoff_reg_to_regnum): Likewise.
890 (mips_gdbarch_init): Likewise. Initialize internal register
891 indices for the Linux ABI. Use dynamic numbers to refer to
892 registers, as applicable, while parsing the target description.
893 * mips-tdep.h (struct mips_regnum): Add dspacc/dspctl offsets.
894
895 2012-03-01 Joel Brobecker <brobecker@adacore.com>
896
897 * frame.h (read_frame_register_unsigned): Fix typo in function
898 description.
899
900 2012-03-01 Pedro Alves <palves@redhat.com>
901
902 * jit-reader.in [!__cplusplus]
903 (GDB_DECLARE_GPL_COMPATIBLE_READER): Add missing backslash.
904
905 2012-03-01 Pedro Alves <palves@redhat.com>
906
907 * configure.ac (build_warnings): Add -Wmissing-prototypes.
908 * configure: Regenerate.
909
910 2012-03-01 Pedro Alves <palves@redhat.com>
911
912 * amd64-linux-tdep.c (amd64_linux_record_signal): Make static.
913 * breakpoint.c (create_exception_master_breakpoint, trace_command)
914 (ftrace_command, strace_command): Make static.
915 * d-lang.c (_initialize_d_language): Declare.
916 * dwarf2expr.c (_initialize_dwarf2expr): Declare.
917 * dwarf2loc.c (_initialize_dwarf2loc):
918 * dwarf2read.c (process_psymtab_comp_unit): Make static.
919 * exec.c (exec_get_section_table): Make static.
920 * i386-linux-tdep.c (i386_linux_record_signal): Make static.
921 * infcmd.c (ensure_valid_thread, ensure_not_tfind_mode): Make static.
922 * inferior.c (remove_inferior_command, add_inferior_command)
923 (clone_inferior_command): Make static.
924 * linux-nat.c (linux_nat_thread_address_space)
925 (linux_nat_core_of_thread): Make static.
926 * linux-tdep.c (_initialize_linux_tdep): Declare.
927 * objc-lang.c (_initialize_objc_lang): Declare.
928 * opencl-lang.c (builtin_opencl_type, opencl_language_arch_info):
929 Make static.
930 (_initialize_opencl_language): Declare.
931 * record.c (_initialize_record): Declare.
932 * remote.c (demand_private_info, remote_get_tib_address)
933 (remote_supports_cond_tracepoints)
934 (remote_supports_fast_tracepoints, remote_get_tracepoint_status):
935 Make static.
936 * skip.c (_initialize_step_skip): Declare.
937 * symtab.c (skip_prologue_using_lineinfo): Make static.
938 * tracepoint.c (delete_trace_state_variable)
939 (trace_variable_command, delete_trace_variable_command)
940 (get_uploaded_tsv, find_matching_tracepoint_location)
941 (find_matching_tsv, create_tsv_from_upload, get_traceframe_info):
942 Make static.
943 * value.c (pack_unsigned_long): Make static.
944 * varobj.c (varobj_ensure_python_env): Make static.
945 * windows-tdep.c (_initialize_windows_tdep): Declare.
946 * xml-syscall.c (make_cleanup_free_syscalls_info): Make static.
947
948 2012-03-01 Pedro Alves <palves@redhat.com>
949
950 * linux-tdep.c (linux_has_shared_address_space): Make static. Add
951 gdbarch parameter.
952 (linux_init_abi): Install it as has_shared_address_space gdbarch
953 callback.
954
955 2012-03-01 Pedro Alves <palves@redhat.com>
956
957 * observer.c (observer_test_first_notification_function)
958 (observer_test_second_notification_function)
959 (observer_test_third_notification_function): Add declarations.
960
961 2012-03-01 Pedro Alves <palves@redhat.com>
962
963 * common/signals.c (default_target_signal_to_host)
964 (default_target_signal_from_host): Move ...
965 * arch-utils.c: ... here.
966 * arch-utils.h (default_target_signal_to_host)
967 (default_target_signal_from_host): Declare.
968
969 * common/signals.c (target_signal_from_command): Move ...
970 * infrun.c: ... here.
971 * inferior.h (target_signal_from_command): Declare.
972 * target.h (target_signal_from_command)
973 (default_target_signal_from_host, default_target_signal_to_host):
974 Delete declarations.
975
976 * common/signals.c (_initialize_signals): Delete.
977
978 2012-03-01 Pedro Alves <palves@redhat.com>
979
980 * jit-reader.in (plugin_is_GPL_compatible): Add declarations for
981 both __cplusplus and !__cplusplus.
982
983 2012-03-01 Pedro Alves <palves@redhat.com>
984
985 * psymtab.c (find_and_open_source): Delete declaration.
986 * source.c (find_and_open_source): Move comment ...
987 * source.h (find_and_open_source): ... to this new declaration.
988
989 2012-03-01 Pedro Alves <palves@redhat.com>
990
991 * inline-frame.c: Include inline-frame.h.
992
993 2012-03-01 Pedro Alves <palves@redhat.com>
994
995 * tui/tui-data.c (set_gen_win_origin): Delete.
996 * tui/tui-data.h (tui_set_gen_win_origin): Delete declaration.
997 * tui/tui-regs.c (tui_last_reg_element_no_in_line): Delete.
998
999 2012-03-01 Pedro Alves <palves@redhat.com>
1000
1001 * remote.c (encode_actions): Delete declaration.
1002 * tracepoint.c (encode_actions): Make extern.
1003 * tracepoint.h (encode_actions): Declare.
1004
1005 2012-03-01 Pedro Alves <palves@redhat.com>
1006
1007 * python/py-breakpoint.c: Include python.h.
1008 * python/py-continueevent.c (create_continue_event_object): Make
1009 static.
1010 * python/py-lazy-string.c (stpy_get_type): Make static.
1011 * python/py-newobjfileevent.c (create_new_objfile_event_object):
1012 Make static.
1013 * python/py-utils.c (unicode_to_target_python_string): Make
1014 static.
1015 * python/py-value.c: Include python.h.
1016
1017 2012-03-01 Pedro Alves <palves@redhat.com>
1018
1019 * inferior.c (delete_threads_of_inferior): Delete.
1020
1021 2012-03-01 Pedro Alves <palves@redhat.com>
1022
1023 Import fallback definitions from glibc.
1024
1025 * gdb_proc_service.h [!HAVE_PROC_SERVICE_H] (struct
1026 ps_prochandle): Forward declare.
1027 (ps_err_e): Use glibc's comments.
1028 [!HAVE_PROC_SERVICE_H] (ps_pdread, ps_pdwrite, ps_ptread)
1029 (ps_ptwrite, ps_lgetregs, ps_lsetregs, ps_lgetfpregs)
1030 (ps_lsetfpregs, ps_getpid, ps_get_thread_area, ps_pglobal_lookup)
1031 (ps_pstop, ps_pcontinue, ps_lstop, ps_lcontinue, ps_lgetxregsize)
1032 (ps_lgetxregs, ps_lsetxregs, ps_plog): Declare.
1033 (struct ps_prochandle): Adjust comment.
1034
1035 2012-03-01 Pedro Alves <palves@redhat.com>
1036
1037 * ada-lang.c (ada_modulus_from_name): Delete.
1038 * ada-lex.l (lexer_init): Make static.
1039
1040 2012-03-01 Pedro Alves <palves@redhat.com>
1041
1042 PR gdb/13767
1043
1044 * frame.c (read_frame_register_unsigned): New.
1045 * frame.h (read_frame_register_unsigned): Declare.
1046 * i387-tdep.c (print_i387_status_word): New parameter `status_p'.
1047 Handle it.
1048 (print_i387_control_word): New parameter `control_p'. Handle it.
1049 (i387_print_float_info): Handle unavailable float registers.
1050
1051 2012-03-01 Keith Seitz <keiths@redhat.com>
1052
1053 * linespec.c (decode_line_2): Sort the list of methods
1054 alphabetically before presenting the user with a selection
1055 menu.
1056
1057 2012-03-01 Doug Evans <dje@google.com>
1058
1059 * dwarf2read.c (dwarf2_cu): Remove unused members has_form_ref_addr,
1060 has_namespace_info.
1061 (dwarf2_read_abbrevs): Remove corresponding initialization.
1062
1063 2012-03-01 Scott J. Goldman <scottjg@vmware.com>
1064
1065 * NEWS: Mention new python command class gdb.COMMAND_USER.
1066 * cli/cli-cmds.c (show_user): Print error when used on a python
1067 command.
1068 (init_cli_cmds): Update documentation strings for "show user" and
1069 "set/show max-user-call-depth" to clarify that it does not apply to
1070 python commands.
1071 * python/py-cmd.c (cmdpy_init): Treat class_user as a valid class in
1072 error check.
1073 (gdbpy_initialize_commands): Add COMMAND_USER as a constant in
1074 gdb python api.
1075 * top.c (execute_command): Only execute a user-defined command as a
1076 legacy macro if c->user_commands is set.
1077
1078 2012-03-01 Tom Tromey <tromey@redhat.com>
1079
1080 * valprint.h (struct generic_val_print_decorations): New.
1081 (generic_val_print): Declare.
1082 * valprint.c (generic_val_print): New function.
1083 * p-valprint.c (p_decorations): New global.
1084 (pascal_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM,
1085 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_RANGE, TYPE_CODE_INT,
1086 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ERROR, TYPE_CODE_UNDEF,
1087 TYPE_CODE_BOOL, TYPE_CODE_CHAR>: Call generic_val_print.
1088 * m2-valprint.c (m2_decorations): New global.
1089 (m2_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM, TYPE_CODE_FUNC,
1090 TYPE_CODE_BOOL, TYPE_CODE_RANGE, TYPE_CODE_INT, TYPE_CODE_CHAR,
1091 TYPE_CODE_FLT, TYPE_CODE_METHOD, TYPE_CODE_VOID, TYPE_CODE_UNDEF,
1092 TYPE_CODE_ERROR>: Call generic_val_print.
1093 * f-valprint.c (f_decorations): New global.
1094 (f_val_print): Use print_function_pointer_address.
1095 <TYPE_CODE_REF, TYPE_CODE_FUNC, TYPE_CODE_CHAR, TYPE_CODE_FLAGS,
1096 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ENUM, TYPE_CODE_RANGE,
1097 TYPE_CODE_BOOL, TYPE_CODE_COMPLEX, TYPE_CODE_UNDEF>: Call
1098 generic_val_print.
1099 * c-valprint.c (c_decorations): New global.
1100 (c_val_print) <TYPE_CODE_MEMBERPTR, TYPE_CODE_REF, TYPE_CODE_ENUM,
1101 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_METHOD, TYPE_CODE_BOOL,
1102 TYPE_CODE_RANGE, TYPE_CODE_CHAR, TYPE_CODE_FLT,
1103 TYPE_CODE_DECFLOAT, TYPE_CODE_VOID, TYPE_CODE_ERROR,
1104 TYPE_CODE_UNDEF, TYPE_CODE_COMPLEX>: Call generic_val_print.
1105 * ada-valprint.c (ada_val_print_1) <TYPE_CODE_FLAGS>: Remove
1106 case.
1107
1108 2012-03-01 Tom Tromey <tromey@redhat.com>
1109
1110 * valprint.c (val_print): Update.
1111 * p-valprint (pascal_val_print): Return void.
1112 * p-lang.h (pascal_val_print): Return void.
1113 * m2-valprint.c (m2_val_print): Return void.
1114 * m2-lang.h (m2_val_print): Return void.
1115 * language.h (struct language_defn) <la_val_print>: Return void.
1116 * language.c (unk_lang_val_print): Return void.
1117 * jv-valprint.c (java_val_print): Return void.
1118 * jv-lang.h (java_val_print): Return void.
1119 * f-valprint.c (f_val_print): Return void.
1120 * f-lang.h (f_val_print): Return void.
1121 * d-valprint.c (d_val_print): Return void.
1122 (dynamic_array_type): Update.
1123 * d-lang.h (d_val_print): Return void.
1124 * c-valprint.c (c_val_print): Return void.
1125 * c-lang.h (c_val_print): Return void.
1126 * ada-valprint.c (ada_vada_val_print, ada_val_print_1): Return
1127 void.
1128 * ada-lang.h (ada_val_print): Return void.
1129
1130 2012-03-01 Tom Tromey <tromey@redhat.com>
1131
1132 * value.h (val_print): Return void.
1133 * valprint.c (val_print): Return void.
1134
1135 2012-03-01 Tom Tromey <tromey@redhat.com>
1136
1137 * value.h (common_val_print): Return void.
1138 * valprint.c (common_val_print): Return void.
1139
1140 2012-03-01 Tom Tromey <tromey@redhat.com>
1141
1142 * value.h (value_print): Return void.
1143 * valprint.c (value_print): Return void.
1144 * p-valprint.c (pascal_value_print): Return void.
1145 * p-lang.h (pascal_value_print): Return void.
1146 * language.h (struct language_defn) <la_value_print>: Return
1147 void.
1148 * language.c (unk_lang_value_print): Return void.
1149 * jv-valprint.c (java_value_print): Return void.
1150 * jv-lang.h (java_value_print): Return void.
1151 * f-valprint.c (c_value_print): Don't declare.
1152 Include c-lang.h.
1153 * c-valprint.c (c_value_print): Return void.
1154 * c-lang.h (c_value_print): Return void.
1155 * ada-valprint.c (ada_value_print): Return void.
1156 * ada-lang.h (ada_value_print): Return void.
1157
1158 2012-03-01 Tom Tromey <tromey@redhat.com>
1159
1160 * value.c (value_primitive_field): Handle virtual base classes.
1161
1162 2012-03-01 Tom Tromey <tromey@redhat.com>
1163
1164 * gdbtypes.h (struct vbase): Remove.
1165
1166 2012-03-01 Tom Tromey <tromey@redhat.com>
1167
1168 * c-valprint.c (print_function_pointer_address): Move...
1169 * valprint.c: ... here. Make non-static.
1170 * m2-valprint.c (print_function_pointer_address): Remove.
1171 * valprint.h (print_function_pointer_address): Declare.
1172
1173 2012-03-01 Joel Brobecker <brobecker@adacore.com>
1174
1175 * NEWS: Document the fact that one can provide a condition when
1176 creating an Ada exception catchpoint.
1177
1178 2012-03-01 Tom Tromey <tromey@redhat.com>
1179
1180 * valprint.c (val_print_type_code_flags): Fix placement of
1181 trailing brace.
1182
1183 2012-03-01 Joel Brobecker <brobecker@adacore.com>
1184
1185 * copyright.py (MULTILINE_COMMENT_PREFIXES): Delete.
1186 (update_files): Do not set MULTILINE_COMMENT_PREFIXES
1187 environment variable before calling update-copyright.
1188
1189 2012-03-01 Joel Brobecker <brobecker@adacore.com>
1190
1191 * gnulib/extra/update-copyright: Update to the latest from
1192 gnulib's git repository.
1193 * copyright.py: Set UPDATE_COPYRIGHT_USE_INTERVALS environment
1194 variable to 2 instead of 1.
1195
1196 2012-02-29 Joel Brobecker <brobecker@adacore.com>
1197
1198 * varobj.c (c_value_of_variable): Remove dead code.
1199
1200 2012-02-29 Joel Brobecker <brobecker@adacore.com>
1201
1202 * ada-lex.p (processId): Do not modify already encoded IDs.
1203 Update function documentation.
1204
1205 2012-02-29 Joel Brobecker <brobecker@adacore.com>
1206
1207 * ada-lang.h (ada_find_renaming_symbol): Replace parameter
1208 "name" with "struct symbol *name_sym".
1209 * ada-exp.y (write_var_or_type): Update call to
1210 ada_find_renaming_symbol.
1211 "name" with "struct symbol *name_sym". Adjust Implementation
1212 accordingly. Adjust the function documentation.
1213
1214 2012-02-29 Joel Brobecker <brobecker@adacore.com>
1215
1216 * ada-lang.h (ada_find_any_symbol, ada_find_any_type): Delete.
1217 * ada-lang.c (ada_find_any_type): Add advance declaration.
1218 Make static. Replace ada_find_any_symbol by
1219 ada_find_any_type_symbol.
1220 (ada_find_any_type_symbol): Renames ada_find_any_symbol.
1221 Improve function description. Make static.
1222 (ada_find_renaming_symbol, find_old_style_renaming_symbol):
1223 Replace ada_find_any_symbol by ada_find_any_type_symbol.
1224
1225 2012-02-29 Joel Brobecker <brobecker@adacore.com>
1226
1227 * ada-lang.c (struct tag_args): Delete.
1228 (ada_get_tsd_type): Function body moved up in source file.
1229 (ada_tag_name_1, ada_tag_name_2): Delete.
1230 (ada_get_tsd_from_tag): New function.
1231 (ada_tag_name_from_tsd): New function.
1232 (ada_tag_name): Use a TRY_CATCH block instead of catch_errors
1233 to determine the tag name.
1234
1235 2012-02-29 Joel Brobecker <brobecker@adacore.com>
1236
1237 * ada-lang.h (ada_get_decoded_value, ada_get_decoded_type): Add
1238 declaration.
1239 * ada-lang.c (ada_get_decoded_value, ada_get_decoded_type): New
1240 function.
1241
1242 2012-02-29 Joel Brobecker <brobecker@adacore.com>
1243
1244 * ada-lang.c (ada_is_ignored_field): Rewrite wrong comment.
1245
1246 2012-02-29 Joel Brobecker <brobecker@adacore.com>
1247
1248 * ada-lang.c (ada_lookup_symbol_list): Only cache the result of
1249 full searches.
1250
1251 2012-02-29 Joel Brobecker <brobecker@adacore.com>
1252
1253 * ada-lang.c (constrained_packed_array_type): If there is a
1254 parallel XA type, use it to determine the array index type.
1255
1256 2012-02-29 Joel Brobecker <brobecker@adacore.com>
1257
1258 * ada-valprint.c (ada_val_print_1): If our value is a reference
1259 to an array descriptor, dereference it before converting it
1260 to a simple array.
1261
1262 2012-02-29 Joel Brobecker <brobecker@adacore.com>
1263
1264 * ada-lang.c (ada_to_fixed_value): Call unwrap_value before
1265 creating fixed value.
1266 (ada_value_ind, ada_coerce_ref, assign_component)
1267 (ada_evaluate_subexp): Remove call to unwrap_value before
1268 call to ada_to_fixed_value.
1269
1270 2012-02-29 Joel Brobecker <brobecker@adacore.com>
1271
1272 * ada-lang.c (to_fixed_array_type): Set result's type name.
1273
1274 2012-02-29 Joel Brobecker <brobecker@adacore.com>
1275
1276 * ada-lang.c (catch_ada_exception_command_split): Add new
1277 argument cond_string. Add support for condition at end of
1278 "catch exception" commands.
1279 (ada_decode_exception_location): Add new argument cond_string.
1280 Update call to catch_ada_exception_command_split.
1281 (create_ada_exception_catchpoint): Add new argument cond_string.
1282 Set the breakpoint condition if needed.
1283 (catch_ada_exception_command): Update call to
1284 ada_decode_exception_location.
1285 (ada_decode_assert_location): Add function documentation.
1286 Add support for condition at end of "catch assert" command.
1287 (catch_assert_command): Update calls to ada_decode_assert_location
1288 and create_ada_exception_catchpoint.
1289
1290 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
1291
1292 Fix disp-step-syscall.exp: fork: single step over fork.
1293 * i386-linux-tdep.c (-i386_linux_get_syscall_number): Rename to ...
1294 (i386_linux_get_syscall_number_from_regcache): ... here, new function
1295 comment, change parameters gdbarch and ptid to regcache. Remove
1296 parameter regcache, initialize gdbarch from regcache here.
1297 (i386_linux_get_syscall_number, i386_linux_displaced_step_copy_insn):
1298 New functions.
1299 (i386_linux_init_abi): Install i386_linux_displaced_step_copy_insn
1300 instead.
1301 * i386-tdep.c (i386_syscall_p): Check also for 'sysenter' and
1302 'syscall'. Make the 'int' check more strict.
1303
1304 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
1305
1306 Fix reverse mode for syscall on AMD CPUs in 32-bit mode.
1307 * i386-linux-tdep.c (i386_linux_intx80_sysenter_record): Rename to ...
1308 (i386_linux_intx80_sysenter_syscall_record): ... here.
1309 (i386_linux_init_abi): Initialize also I386_SYSCALL_RECORD.
1310 Use the renamed function name.
1311
1312 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
1313
1314 * arm-linux-tdep.c (arm_linux_copy_svc): Reset stale FRAME.
1315 * breakpoint.c (until_break_command): Likewise.
1316 * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
1317 * infcall.c (call_function_by_hand): Likewise.
1318 * infcmd.c (finish_forward): Likewise.
1319 * infrun.c (insert_exception_resume_breakpoint): Likewise.
1320
1321 2012-02-28 Tristan Gingold <gingold@adacore.com>
1322
1323 * ada-tasks.c (ada_tasks_inferior_data_sniffer): Rework code to
1324 avoid variable assignments inside condition.
1325
1326 2012-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1327
1328 Fix static analysis issue found by cppcheck.
1329 * microblaze-tdep.c (microblaze_extract_return_value): Fix
1330 uninitialized BUF for size 2.
1331
1332 2012-02-27 Chris Dearman <chris@mips.com>
1333 Nathan Froyd <froydnj@codesourcery.com>
1334 Maciej W. Rozycki <macro@codesourcery.com>
1335
1336 * mips-tdep.c (mips32_instruction_has_delay_slot): New function.
1337 (mips16_instruction_has_delay_slot): Likewise.
1338 (mips_segment_boundary): Likewise.
1339 (mips_adjust_breakpoint_address): Likewise.
1340 (mips_gdbarch_init): Use mips_adjust_breakpoint_address.
1341
1342 2012-02-27 Maciej W. Rozycki <macro@mips.com>
1343 Maciej W. Rozycki <macro@codesourcery.com>
1344
1345 * infrun.c (handle_inferior_event): Don't proceed through
1346 shared library trampolines if stepping at the machine
1347 instruction level.
1348
1349 2012-02-27 Maciej W. Rozycki <macro@codesourcery.com>
1350
1351 * mips-linux-tdep.c (mips_linux_init_abi): Set num_pseudo_regs
1352 too.
1353
1354 2012-02-27 Thomas Schwinge <thomas@codesourcery.com>
1355
1356 * sh-tdep.c (sh_make_stub_cache, sh_stub_this_id)
1357 (sh_stub_unwind_sniffer): New functions.
1358 (sh_stub_unwind): New variable.
1359 (sh_gdbarch_init): Wire everything.
1360
1361 2012-02-27 Pedro Alves <palves@redhat.com>
1362
1363 * linux-nat.c (pid_is_stopped): Delete, moved to common/.
1364 (linux_nat_post_attach_wait): Adjust to use
1365 linux_proc_pid_is_stopped.
1366 * common/linux-procfs.h (linux_proc_pid_is_stopped): Declare.
1367 * common/linux-procfs.c (linux_proc_pid_is_stopped): New function,
1368 based on pid_is_stopped from both linux-nat.c and
1369 gdbserver/linux-low.c, and renamed.
1370
1371 2012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
1372
1373 * remote.c (remote_watchpoint_addr_within_range): New function.
1374 (init_remote_ops): Use it.
1375
1376 2012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
1377
1378 * target.h (target_watchpoint_addr_within_range): Document macro.
1379
1380 2012-02-24 Pedro Alves <palves@redhat.com>
1381
1382 * stack.c (set_last_displayed_sal): Issue internal_error instead
1383 of warning, and issue it after clearing the last displayed sal.
1384
1385 2012-02-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1386 Pedro Alves <palves@redhat.com>
1387
1388 * breakpoint.c (until_break_command): Install breakpoints after
1389 all frame manipulations.
1390
1391 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
1392
1393 * remote.c (remote_supports_cond_breakpoints): New forward
1394 declaration.
1395 (remote_add_target_side_condition): New function.
1396 (remote_insert_breakpoint): Add target-side breakpoint
1397 conditional if supported.
1398 (remote_insert_hw_breakpoint): Likewise.
1399 (init_remote_ops): Set to_supports_evaluation_of_breakpoint_conditions
1400 hook.
1401
1402 * target.c (update_current_target): Inherit
1403 to_supports_evaluation_of_breakpoint_conditions.
1404 Default to_supports_evaluation_of_breakpoint_conditions to return_zero.
1405
1406 * target.h (struct target_ops)
1407 <to_supports_evaluation_of_breakpoint_conditions>: New field.
1408 (target_supports_evaluation_of_breakpoint_conditions): New #define.
1409
1410 * breakpoint.c (get_first_locp_gte_addr): New forward declaration.
1411 (condition_evaluation_both, condition_evaluation_auto,
1412 condition_evaluation_host, condition_evaluation_target,
1413 condition_evaluation_enums, condition_evaluation_mode_1,
1414 condition_evaluation_mode): New static globals.
1415 (translate_condition_evaluation_mode): New function.
1416 (breakpoint_condition_evaluation_mode): New function.
1417 (gdb_evaluates_breakpoint_condition_p): New function.
1418 (ALL_BP_LOCATIONS_AT_ADDR): New helper macro.
1419 (mark_breakpoint_modified): New function.
1420 (mark_breakpoint_location_modified): New function.
1421 (set_condition_evaluation_mode): New function.
1422 (show_condition_evaluation_mode): New function.
1423 (bp_location_compare_addrs): New function.
1424 (get_first_location_gte_addr): New helper function.
1425 (set_breakpoint_condition): Free condition bytecode if locations
1426 has become unconditional. Call mark_breakpoint_modified (...).
1427 (condition_command): Call update_global_location_list (1) for
1428 breakpoints.
1429 (breakpoint_xfer_memory): Use is_breakpoint (...).
1430 (is_breakpoint): New function.
1431 (parse_cond_to_aexpr): New function.
1432 (build_target_condition_list): New function.
1433 (insert_bp_location): Handle target-side conditional
1434 breakpoints and call build_target_condition_list (...).
1435 (update_inserted_breakpoint_locations): New function.
1436 (insert_breakpoint_locations): Handle target-side conditional
1437 breakpoints.
1438 (bpstat_check_breakpoint_conditions): Add comment.
1439 (bp_condition_evaluator): New function.
1440 (bp_location_condition_evaluator): New function.
1441 (print_breakpoint_location): Print information on where the condition
1442 will be evaluated.
1443 (print_one_breakpoint_location): Likewise.
1444 (init_bp_location): Call mark_breakpoint_location_modified (...) for
1445 breakpoint location.
1446 (force_breakpoint_reinsertion): New functions.
1447 (update_global_location_list): Handle target-side breakpoint
1448 conditions.
1449 Reinsert locations that are already inserted if conditions have
1450 changed.
1451 (bp_location_dtor): Free agent expression bytecode.
1452 (disable_breakpoint): Call mark_breakpoint_modified (...).
1453 Call update_global_location_list (...) with parameter 1 for breakpoints.
1454 (disable_command): Call mark_breakpoint_location_modified (...).
1455 Call update_global_location_list (...) with parameter 1 for breakpoints.
1456 (enable_breakpoint_disp): Call mark_breakpoint_modified (...).
1457 (enable_command): mark_breakpoint_location_modified (...).
1458 (_initialize_breakpoint): Update documentation and add
1459 condition-evaluation breakpoint subcommand.
1460
1461 * breakpoint.h: Include ax.h.
1462 (condition_list): New data structure.
1463 (condition_status): New enum.
1464 (bp_target_info) <cond_list>: New field.
1465 (bp_location) <condition_changed, cond_bytecode>: New fields.
1466 (is_breakpoint): New prototype.
1467
1468 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
1469
1470 * remote.c (remote_state) <cond_breakpoints>: New field.
1471 (PACKET_ConditionalBreakpoints): New enum.
1472 (remote_cond_breakpoint_feature): New function.
1473 (remote_protocol_features): Add new ConditionalBreakpoints entry.
1474 (remote_supports_cond_breakpoints): New function.
1475 (_initialize_remote): Add new packet configuration for
1476 target-side conditional breakpoints.
1477
1478 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
1479
1480 * NEWS: Mention target-side conditional breakpoint support,
1481 new condition-evaluation breakpoint subcommand and remote
1482 packet extensions.
1483
1484 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
1485
1486 * breakpoint.c (bp_location_compare): Sort by pspace before sorting by
1487 number.
1488
1489 2012-02-24 Thomas Schwinge <thomas@codesourcery.com>
1490
1491 * sh-tdep.c (sh_skip_prologue): Use skip_prologue_using_sal.
1492 (after_prologue): Remove.
1493
1494 2012-02-23 Tom Tromey <tromey@redhat.com>
1495
1496 * jv-valprint.c (java_val_print): Remove dead code.
1497
1498 2012-02-23 Tristan Gingold <gingold@adacore.com>
1499
1500 * ada-tasks.c (struct ada_tasks_inferior_data): Add
1501 known_tasks_element and known_tasks_length fields.
1502 (read_known_tasks_array): Change argument type. Use pointer type
1503 and number of elements from DATA. Adjust.
1504 (read_known_tasks_list): Likewise.
1505 (get_known_tasks_addr): Remove.
1506 (ada_set_current_inferior_known_tasks_addr): Renamed to ...
1507 (ada_tasks_inferior_data_sniffer): ... this. Use symtab for element
1508 type and array length. Merge former get_known_tasks_addr code.
1509
1510 2012-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
1511
1512 PR backtrace/13716
1513 * infcmd.c (finish_forward): New variable frame_id, initialize it, use
1514 it after set_momentary_breakpoint.
1515
1516 2012-02-22 Sterling Augustine <saugustine@google.com>
1517
1518 PR 13689:
1519 * breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch.
1520
1521 2012-02-22 Gary Benson <gbenson@redhat.com>
1522
1523 * dwarf2read.c (dwarf2_read_index): Correct misspelling.
1524 (find_slot_in_mapped_hash): Likewise.
1525
1526 2012-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
1527
1528 PR build/13638
1529 * configure.ac (MAKEINFO): Replace AC_CHECK_PROG by AC_ARG_VAR.
1530 (MAKEINFOFLAGS): Replace static string by AC_ARG_VAR.
1531 * configure: Regenerate.
1532
1533 2012-02-21 Tristan Gingold <gingold@adacore.com>
1534 Pedro Alves <palves@redhat.com>
1535
1536 * ia64-tdep.c: Do not include libunwind-ia64.h.
1537 * libunwind-frame.h: Remove #ifdef HAVE_LIBUNWIND_H guard.
1538 Include libunwind-ia64.h instead of libunwind.h.
1539 * configure.ac (--with-libunwind, $enable_libunwind): Don't check
1540 for libunwind.h existence.
1541 * configure, config.in: Regenerate.
1542
1543 2012-02-21 Anton Gorenkov <xgsa@yandex.ru>
1544
1545 * c-valprint.c (c_value_print): Use value_rtti_indirect_type
1546 instead of value_rtti_target_type.
1547 * eval.c (evaluate_subexp_standard): Use value_rtti_indirect_type
1548 instead of value_rtti_target_type.
1549 * typeprint.c (whatis_exp): Use value_rtti_indirect_type instead of
1550 value_rtti_target_type.
1551 * valops.c (value_ind): Extract function readjust_indirect_value_type.
1552 (value_rtti_target_type): Rename to ...
1553 (value_rtti_indirect_type): ... here and make it indirect. Update
1554 function comment.
1555 * value.c (readjust_indirect_value_type): New function.
1556 (coerce_ref): Support for enclosing type setting for references
1557 with readjust_indirect_value_type.
1558 * value.h (readjust_value_type): New declaration.
1559 (value_rtti_target_type): Rename to ...
1560 (value_rtti_indirect_type): ... here.
1561
1562 2012-02-21 Anton Gorenkov <xgsa@yandex.ru>
1563
1564 * MAINTAINERS (Write After Approval): Add myself to the list.
1565
1566 2012-02-20 Doug Evans <dje@google.com>
1567
1568 * objfiles.c (add_to_objfile_sections): Remove outdated comments.
1569 Rename objfile_p_char parameter to objfilep.
1570 (build_objfile_section_table): Result is now void. All callers
1571 updated.
1572 * objfiles.h (struct objfile): Tweak comments, whitespace.
1573 (build_objfile_section_table): Update.
1574
1575 * elfread.c (elf_symfile_segments): Fix warning text.
1576
1577 2012-02-20 Tom Tromey <tromey@redhat.com>
1578
1579 PR gdb/13498:
1580 * dwarf2read.c (dw2_expand_symtabs_matching): Only visit a
1581 particular set of file names once.
1582 (dw2_map_symbol_filenames): Likewise.
1583
1584 2012-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
1585
1586 Code cleanup.
1587 * main.c (write_files): Remove the declaration.
1588 (external_editor_command): Move the declaration ...
1589 [GDBTK] (external_editor_command): ... here. Fix the comment.
1590
1591 2012-02-20 Tom Tromey <tromey@redhat.com>
1592
1593 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove
1594 extraneous block.
1595
1596 2012-02-20 Tristan Gingold <gingold@adacore.com>
1597
1598 * darwin-nat.h (enum darwin_msg_state): Add comments.
1599
1600 2012-02-20 Tristan Gingold <gingold@adacore.com>
1601
1602 * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Fix jb_pc_offset
1603 value.
1604
1605 2012-20-18 Joel Brobecker <brobecker@adacore.com>
1606
1607 * breakpoint.c (watchpoint_exp_is_const): Add missing empty line
1608 between function description and implementation.
1609
1610 2012-02-17 Tom Tromey <tromey@redhat.com>
1611
1612 PR python/12070:
1613 * python/py-event.c (event_object_getset): New global.
1614 (event_object_type): Reference it.
1615 * python/py-type.c (field_object_getset): New global.
1616 (field_object_type): Reference it.
1617 * python/python-internal.h (gdb_py_generic_dict): Declare.
1618 * python/py-utils.c (gdb_py_generic_dict): New function.
1619
1620 2012-02-17 Tristan Gingold <gingold@adacore.com>
1621
1622 * solib-darwin.c (darwin_current_sos): Check magic and filetype
1623
1624 2012-02-17 Thomas Schwinge <thomas@codesourcery.com>
1625
1626 * sh-tdep.c (sh_is_renesas_calling_convention): Fix handling of
1627 TYPE_CALLING_CONVENTION annotation.
1628
1629 2012-02-16 Kevin Buettner <kevinb@redhat.com>
1630
1631 * MAINTAINERS: Add rx to target ISA section.
1632 * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o.
1633 (ALLDEPFILES): Add rx-tdep.c.
1634
1635 2012-02-16 Tom Tromey <tromey@redhat.com>
1636
1637 * symfile.c (symbol_file_add_main_1): Use inferior's
1638 symfile_flags.
1639 * solib.c (solib_read_symbols): Use inferior's symfile_flags.
1640 * linux-nat.c (linux_child_follow_fork): Set symfile_flags on
1641 inferior.
1642 * infrun.c (handle_vfork_child_exec_or_exit): Set symfile_flags on
1643 inferior.
1644 (follow_exec): Use inferior's symfile_flags.
1645 * inferior.h (struct inferior) <symfile_flags>: New field.
1646
1647 2012-02-16 Mike Frysinger <vapier@gentoo.org>
1648
1649 PR gdb/9734:
1650 * remote-sim.c (gdbsim_create_inferior): Call error() when
1651 sim_create_inferior() fails.
1652
1653 2012-02-16 Josh Matthews <josh@joshmatthews.net>
1654
1655 * machoread.c: Initialize nbr_syms to avoid warnings-as-errors failure.
1656
1657 2012-02-16 Tom Tromey <tromey@redhat.com>
1658
1659 PR c++/13653:
1660 * thread.c (struct current_thread_cleanup) <was_removable>: New
1661 field.
1662 (restore_current_thread_cleanup_dtor): Restore 'removable' field.
1663 (make_cleanup_restore_current_thread): Initialize new field.
1664
1665 2012-02-15 Kevin Buettner <kevinb@redhat.com>
1666
1667 * MAINTAINERS: Add rl78 to target ISA section.
1668 * Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o.
1669 (ALLDEPFILES): Add rl78-tdep.c.
1670 * NEWS: Mention rl78 as a new target.
1671
1672 2012-02-15 Aleksandar Ristovski <aristovski@qnx.com>
1673
1674 * frame.c (find_frame_sal): Initialize sal->pspace field from frame
1675 data.
1676 * stack.c (set_last_displayed_sal): Validate that PSPACE is not NULL.
1677
1678 2012-02-15 Tom Tromey <tromey@redhat.com>
1679
1680 PR gdb/12659:
1681 * infcmd.c (registers_info): Print just the current register's
1682 name.
1683
1684 2012-02-15 Tom Tromey <tromey@redhat.com>
1685
1686 * python/py-symbol.c (sympy_value): Use _().
1687
1688 2012-02-15 Pedro Alves <palves@redhat.com>
1689
1690 * remote.c (remote_detach_1, extended_remote_attach_1): Tweak
1691 output to be like native targets'.
1692 (remote_pid_to_str): Special case the null ptid.
1693
1694 2012-02-14 Stan Shebs <stan@codesourcery.com>
1695
1696 * NEWS: Mention enable count command.
1697 * breakpoint.h (struct breakpoint): New field enable_count.
1698 * breakpoint.c (enable_breakpoint_disp): Add count argument.
1699 (enable_breakpoint): Add arg to call.
1700 (struct disp_data): New struct.
1701 (do_enable_breakpoint_disp): Interp arg as disp_data and unpack.
1702 (do_map_enable_once_breakpoint): Create a struct and pass it.
1703 (do_map_enable_delete_breakpoint): Ditto.
1704 (do_map_enable_count_breakpoint): New function.
1705 (enable_count_command): New function.
1706 (bpstat_stop_status): Decrement enable_count.
1707 (print_one_breakpoint_location): Report enable count.
1708 (_initialize_breakpoint): Add enable count command.
1709
1710 2012-02-14 Kevin Buettner <kevinb@redhat.com>
1711
1712 * rl78-tdep.c (reggroups.h): Include.
1713 (RL78_RAW_BANK0_R0_REGNUM, RL78_RAW_BANK0_R1_REGNUM)
1714 (RL78_RAW_BANK0_R2_REGNUM, RL78_RAW_BANK0_R3_REGNUM)
1715 (RL78_RAW_BANK0_R4_REGNUM, RL78_RAW_BANK0_R5_REGNUM)
1716 (RL78_RAW_BANK0_R6_REGNUM, RL78_RAW_BANK0_R7_REGNUM)
1717 (RL78_RAW_BANK1_R0_REGNUM, RL78_RAW_BANK1_R1_REGNUM)
1718 (RL78_RAW_BANK1_R2_REGNUM, RL78_RAW_BANK1_R3_REGNUM)
1719 (RL78_RAW_BANK1_R4_REGNUM, RL78_RAW_BANK1_R5_REGNUM)
1720 (RL78_RAW_BANK1_R6_REGNUM, RL78_RAW_BANK1_R7_REGNUM)
1721 (RL78_RAW_BANK2_R0_REGNUM, RL78_RAW_BANK2_R1_REGNUM)
1722 (RL78_RAW_BANK2_R2_REGNUM, RL78_RAW_BANK2_R3_REGNUM)
1723 (RL78_RAW_BANK2_R4_REGNUM, RL78_RAW_BANK2_R5_REGNUM)
1724 (RL78_RAW_BANK2_R6_REGNUM, RL78_RAW_BANK2_R7_REGNUM)
1725 (RL78_RAW_BANK3_R0_REGNUM, RL78_RAW_BANK3_R1_REGNUM)
1726 (RL78_RAW_BANK3_R2_REGNUM, RL78_RAW_BANK3_R3_REGNUM)
1727 (RL78_RAW_BANK3_R4_REGNUM, RL78_RAW_BANK3_R5_REGNUM)
1728 (RL78_RAW_BANK3_R6_REGNUM, RL78_RAW_BANK3_R7_REGNUM): Add to
1729 beginning of register list.
1730 (RL78_BANK0_R0_REGNUM, RL78_BANK0_R1_REGNUM, RL78_BANK0_R2_REGNUM)
1731 (RL78_BANK0_R3_REGNUM, RL78_BANK0_R4_REGNUM, RL78_BANK0_R5_REGNUM)
1732 (RL78_BANK0_R6_REGNUM, RL78_BANK0_R7_REGNUM, RL78_BANK1_R0_REGNUM)
1733 (RL78_BANK1_R1_REGNUM, RL78_BANK1_R2_REGNUM, RL78_BANK1_R3_REGNUM)
1734 (RL78_BANK1_R4_REGNUM, RL78_BANK1_R5_REGNUM, RL78_BANK1_R6_REGNUM)
1735 (RL78_BANK1_R7_REGNUM, RL78_BANK2_R0_REGNUM, RL78_BANK2_R1_REGNUM)
1736 (RL78_BANK2_R2_REGNUM, RL78_BANK2_R3_REGNUM, RL78_BANK2_R4_REGNUM)
1737 (RL78_BANK2_R5_REGNUM, RL78_BANK2_R6_REGNUM, RL78_BANK2_R7_REGNUM)
1738 (RL78_BANK3_R0_REGNUM, RL78_BANK3_R1_REGNUM, RL78_BANK3_R2_REGNUM)
1739 (RL78_BANK3_R3_REGNUM, RL78_BANK3_R4_REGNUM, RL78_BANK3_R5_REGNUM)
1740 (RL78_BANK3_R6_REGNUM, RL78_BANK3_R7_REGNUM): Move these into
1741 the pseudo registers. Rearrange other pseudo registers too so
1742 that the bank registers appear at the end.
1743 (rl78_register_type): Account for the fact that the byte sized
1744 bank registers are now pseudo-registers.
1745 (rl78_register_name): Rearrange the register name array. Make
1746 initial set of raw banked registers inaccessible.
1747 (rl78_register_reggroup_p, rl78_register_sim_regno): New functions.
1748 (rl78_pseudo_register_read, rl78_pseudo_register_write): Add
1749 case for copying bytes back and forth between raw and pseudo
1750 versions of the banked registers. Update other cases to reflect
1751 the changed names.
1752 (rl78_return_value): Update to account for changed names of
1753 raw registers.
1754 (rl78_gdbarch_init): Register rl78_register_reggroup_p() and
1755 rl78_register_sim_regno().
1756
1757 2012-02-14 Kevin Buettner <kevinb@redhat.com>
1758
1759 * rl78-tdep.c (rl78_skip_prologue): Make `const' the type of
1760 the name parameter being passed to find_pc_partial_function().
1761
1762 2012-02-14 Jan Kratochvil <jan.kratochvil@redhat.com>
1763
1764 * MAINTAINERS: Step down from being ia64 target maintainer.
1765
1766 2012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
1767
1768 * ppc-linux-nat.c (fetch_register, store_register): Fix GCC aliasing
1769 compilation warning.
1770
1771 2012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
1772
1773 Fix crash on loaded shlibs without loaded exec_bfd.
1774 * exec.c (exec_files_info): Do not crash on NULL EXEC_BFD.
1775 (set_section_command): Replace exec_bfd by p->bfd.
1776
1777 2012-02-10 Tom Tromey <tromey@redhat.com>
1778
1779 * linespec.c (decode_line_internal): Skip symtabs_from_filename
1780 when we have a C++ qualified name.
1781
1782 2012-02-10 Pedro Alves <palves@redhat.com>
1783
1784 * inferior.c (inferior_pid_to_str): New.
1785 (print_inferior, inferior_command): Use it.
1786
1787 2012-02-10 Pedro Alves <palves@redhat.com>
1788
1789 * configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of
1790 the test CFLAGS.
1791 * configure: Regenerate.
1792
1793 2012-02-10 Jan Kratochvil <jan.kratochvil@redhat.com>
1794
1795 * linespec.c (decode_line_internal): Fix comment correctness.
1796
1797 2012-02-09 Valery Khromov <valery.khromov@gmail.com>
1798
1799 PR gdb/12953
1800 * Makefile.in (HFILES_NO_SRCDIR): Add amd64bsd-nat.h.
1801 * amd64bsd-nat.c: Add support for debug registers (adapted from
1802 i386bsd-nat.c).
1803 [HAVE_PT_GETDBREGS] (amd64bsd_dr_get, amd64bsd_dr_set)
1804 (amd64bsd_dr_set_control, amd64bsd_dr_set_addr)
1805 (amd64bsd_dr_get_addr, amd64bsd_dr_get_status)
1806 (amd64bsd_dr_get_control): New functions.
1807 * amd64bsd-nat.h: New file (adapted from i386bsd-nat.h).
1808 * amd64fbsd-nat.c: Include "amd64bsd-nat.h", "i386-nat.h".
1809 [HAVE_PT_GETDBREGS] (_initialize_amd64fbsd_nat): Add hardware
1810 watchpoints initialization.
1811 * config/i386/fbsd64.mh (NATDEPFILES): Add i386-nat.o.
1812
1813 2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
1814
1815 * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print
1816 flds_bnds.fields.
1817 (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
1818
1819 2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
1820
1821 * breakpoint.c (bp_location_compare): Fix comment. Reindent the code.
1822
1823 2012-02-08 Joel Brobecker <brobecker@adacore.com>
1824
1825 * language.h (symbol_name_cmp_ftype): Renames
1826 symbol_name_match_p_ftype.
1827 (struct language_defn)[la_get_symbol_name_cmp]: Renames
1828 la_get_symbol_name_match_p.
1829 * ada-lang.c (ada_get_symbol_name_cmp): Renames
1830 ada_get_symbol_name_match_p. Update comment.
1831 (ada_language_defn)[la_get_symbol_name_cmp]: Update value.
1832 * linespec.c (struct symbol_matcher_data)[symbol_name_cmp]:
1833 Renames symbol_name_match_p. Update field type.
1834 (iterate_name_matcher, iterate_over_all_matching_symtabs): Adjust.
1835 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
1836 opencl-lang.c, p-lang.c: Replace "la_get_symbol_name_match_p" by
1837 "la_get_symbol_name_cmp" in comments.
1838 * language.c: Likewise.
1839
1840 2012-02-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1841
1842 * amd64-sol2-tdep.c (amd64_sol2_gregset_reg_offset): Correct
1843 %eflags offset.
1844 * i386-sol2-nat.c (amd64_sol2_gregset64_reg_offs)
1845 (amd64_sol2_gregset32_reg_offs): Likewise.
1846
1847 2012-02-08 Joel Brobecker <brobecker@adacore.com>
1848
1849 * solib-darwin.c (darwin_bfd_open): Make sure that the filename
1850 of the returned BFD is allocated by GDB.
1851
1852 2012-02-07 Tom Tromey <tromey@redhat.com>
1853
1854 PR python/12027:
1855 * python/python-internal.h (frame_object_type): Declare.
1856 * python/py-symbol.c (sympy_needs_frame): New function.
1857 (sympy_value): New function.
1858 (symbol_object_getset): Add "needs_frame".
1859 (symbol_object_methods): Add "value".
1860 * python/py-frame.c (frame_object_type): No longer static.
1861
1862 2012-02-07 Tom Tromey <tromey@redhat.com>
1863
1864 PR python/13599:
1865 * python/py-symbol.c (sympy_line): New function.
1866 (symbol_object_getset): Add "line".
1867
1868 2012-02-07 Tom Tromey <tromey@redhat.com>
1869
1870 * charset.c (find_charset_names): Check 'in' against NULL.
1871
1872 2012-02-06 Doug Evans <dje@google.com>
1873
1874 * gdbtypes.h (struct main_type): Change type of name,tag_name,
1875 and fields.name members from char * to const char *. All uses updated.
1876 (struct cplus_struct_type): Change type of fn_fieldlists.name member
1877 from char * to const char *. All uses updated.
1878 (type_name_no_tag): Update.
1879 (lookup_unsigned_typename, lookup_signed_typename): Update.
1880 * gdbtypes.c (type_name_no_tag): Change result type
1881 from char * to const char *. All callers updated.
1882 (lookup_unsigned_typename, lookup_signed_typename): Change type of
1883 name parameter from char * to const char *.
1884 * symtab.h (struct cplus_specific): Change type of demangled_name
1885 member from char * to const char *. All uses updated.
1886 (struct general_symbol_info): Change type of name and
1887 mangled_lang.demangled_name members from char * to const char *.
1888 All uses updated.
1889 (symbol_get_demangled_name, symbol_natural_name): Update.
1890 (symbol_demangled_name, symbol_search_name): Update.
1891 * symtab.c (symbol_get_demangled_name): Change result type
1892 from char * to const char *. All callers updated.
1893 (symbol_natural_name, symbol_demangled_name): Ditto.
1894 (symbol_search_name): Ditto.
1895 (completion_list_add_name): Change type of symname,sym_text,
1896 text,word parameters from char * to const char *.
1897 (completion_list_objc_symbol): Change type of sym_text,
1898 text,word parameters from char * to const char *.
1899 * ada-lang.c (find_struct_field): Change type of name parameter
1900 from char * to const char *.
1901 (encoded_ordered_before): Similarly for N0,N1 parameters.
1902 (old_renaming_is_invisible): Similarly for function_name parameter.
1903 (ada_type_name): Change result type from char * to const char *.
1904 All callers updated.
1905 * ada-lang.h (ada_type_name): Update.
1906 * buildsym.c (hashname): Change type of name parameter
1907 from char * to const char *.
1908 * buildsym.h (hashname): Update.
1909 * dbxread.c (end_psymtab): Change type of include_list parameter
1910 from char ** to const char **.
1911 * dwarf2read.c (determine_prefix): Change result type
1912 from char * to const char *. All callers updated.
1913 * f-lang.c (find_common_for_function): Change type of name, funcname
1914 parameters from char * to const char *.
1915 * f-lang.c (find_common_for_function): Update.
1916 * f-valprint.c (list_all_visible_commons): Change type of funcname
1917 parameters from char * to const char *.
1918 * gdbarch.sh (static_transform_name): Change type of name parameter
1919 and result from char * to const char *.
1920 * gdbarch.c: Regenerate.
1921 * gdbarch.h: Regenerate.
1922 * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type
1923 of name parameter from char * to const char *.
1924 * jv-lang.c (java_primitive_type_from_name): Ditto.
1925 (java_demangled_signature_length): Similarly for signature parameter.
1926 (java_demangled_signature_copy): Ditto.
1927 (java_demangle_type_signature): Ditto.
1928 * jv-lang.h (java_primitive_type_from_name): Update.
1929 (java_demangle_type_signature): Update.
1930 * objc-lang.c (specialcmp): Change type of a,b parameters
1931 from char * to const char *.
1932 * p-lang.c (is_pascal_string_type): Change type of arrayname parameter
1933 from char * to const char *. All callers updated.
1934 * p-lang.h (is_pascal_string_type): Update.
1935 * solib-frv.c (find_canonical_descriptor_in_load_object): Change type
1936 of name parameter from char * to const char *.
1937 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto.
1938 * utils.c (fprintf_symbol_filtered): Ditto.
1939 * defs.h (fprintf_symbol_filtered): Update.
1940 * sparc-tdep.h (sparc_sol2_static_transform_name): Update.
1941 * stabsread.h (end_psymtab): Update.
1942 * stack.c (find_frame_funname): Change type of funname parameter
1943 from char ** to const char **.
1944 * stack.h (find_frame_funname): Update.
1945 * typeprint.c (type_print): Change type of varstring parameter
1946 from char * to const char *.
1947 * value.h (type_print): Update.
1948 * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter
1949 from char * to const char *. All callers updated.
1950 (xcoff_end_psymtab): Change type of include_list parameter
1951 from char ** to const char **. All callers updated.
1952 (swap_sym): Similarly for name parameter. All callers updated.
1953 * coffread.c (patch_type): Add (char*) cast to xfree parameter.
1954 Use xstrdup.
1955 (process_coff_symbol): Use xstrdup.
1956 * stabsread.c (stabs_method_name_from_physname): Renamed from
1957 update_method_name_from_physname. Change result type from void
1958 to char *. All callers updated.
1959 (read_member_functions): In has_destructor case, store name in objfile
1960 obstack instead of malloc space. In !has_stub case, fix mem leak.
1961
1962 2012-02-06 Luca Pizzamiglio <luca.pizzamiglio@gmail.com>
1963
1964 * configure: Rebuild.
1965 * configure.ac: Put -L../bfd and -L../libiberty at the front of
1966 LDFLAGS.
1967
1968 2012-02-03 Kevin Buettner <kevinb@redhat.com>
1969
1970 * configure.tgt (rl78-*-elf): New target.
1971 * rl78-tdep.c: New file.
1972
1973 2012-02-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1974
1975 * remote.c (remote_rcmd): Use getpkt_sane to detect timeout
1976 and continue the loop. Add QUIT statement.
1977
1978 2012-02-03 Tom Tromey <tromey@redhat.com>
1979
1980 PR gdb/13596:
1981 * solib.h (gdb_bfd_lookup_symbol_from_symtab): Rename from
1982 bfd_lookup_symbol_from_symtab.
1983 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
1984 gdb_bfd_lookup_symbol_from_symtab.
1985
1986 2012-02-03 Joel Brobecker <brobecker@adacore.com>
1987
1988 * mi/mi-cmd-stack.c (list_args_or_locals): For argument symbols,
1989 use SYMBOL_LINKAGE_NAME to find the corresponding non-argument
1990 symbol. Add assertion that sym2 is never NULL.
1991
1992 2012-02-02 Doug Evans <dje@google.com>
1993
1994 * blockframe.c (find_pc_partial_function_gnu_ifunc): Change type of
1995 "name" parameter to const char ** from char **. All callers updated.
1996 (find_pc_partial_function): Ditto.
1997 (cache_pc_function_name): Change type to const char * from char *.
1998 * symtab.h ((find_pc_partial_function_gnu_ifunc): Update.
1999 (find_pc_partial_function): Update.
2000 * alpha-tdep.h (struct gdbarch_tdep, member pc_in_sigtramp): Change
2001 type of "name" parameter to const char * from char *.
2002 All uses updated.
2003 * arch-utils.c (generic_in_solib_return_trampoline): Change
2004 type of "name" parameter to const char * from char *.
2005 * arch-utils.h (generic_in_solib_return_trampoline): Update.
2006 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Change
2007 type of "name" parameter to const char * from char *.
2008 * gdbarch.sh (in_solib_return_trampoline): Ditto.
2009 * gdbarch.c: Regenerate.
2010 * gdbarch.h: Regenerate.
2011 * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Update.
2012 * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Update.
2013 * m32r-linux-tdep.c (m32r_linux_pc_in_sigtramp): Change
2014 type of "name" parameter to const char * from char *.
2015 * skip.c (skip_function_pc): Ditto.
2016 * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Ditto.
2017 * sparc-tdep.h (sparc_sol2_pc_in_sigtramp): Update.
2018 * sparc64fbsd-tdep.c (sparc64fbsd_pc_in_sigtramp): Ditto.
2019 * sparc64nbsd-tdep.c (sparc64nbsd_pc_in_sigtramp): Ditto.
2020 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Ditto.
2021 * sparcnbsd-tdep.c (sparc32nbsd_pc_in_sigtramp): Ditto.
2022 * sparcobsd-tdep.c (sparc32obsd_pc_in_sigtramp): Ditto.
2023 * nbsd-tdep.c (nbsd_pc_in_sigtramp): Similary for "func_name".
2024 * nbsd-tdep.h (nbsd_pc_in_sigtramp): Update.
2025
2026 2012-02-02 Pedro Alves <palves@redhat.com>
2027
2028 * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if
2029 the current inferior has no execution. Make sure the current
2030 remote process matches gdb's current inferior.
2031
2032 2012-02-02 Tom Tromey <tromey@redhat.com>
2033
2034 PR gdb/13405:
2035 * tui/tui-win.c (parse_scrolling_args): Don't write to possibly
2036 read-only memory.
2037
2038 2012-02-02 Tom Tromey <tromey@redhat.com>
2039
2040 PR gdb/9307:
2041 * symtab.c (lookup_language_this): Set block_found.
2042
2043 2012-02-01 Tom Tromey <tromey@redhat.com>
2044
2045 PR gdb/13431:
2046 * jit.c (struct jit_inferior_data): Rewrite.
2047 (struct jit_objfile_data): New.
2048 (get_jit_objfile_data): New function.
2049 (add_objfile_entry): Update.
2050 (jit_read_descriptor): Return int. Replace descriptor_addr
2051 argument with inf_data. Update. Don't call error.
2052 (jit_breakpoint_re_set_internal): Reorder logic. Update. Look up
2053 descriptor here.
2054 (jit_inferior_init): Don't look up descriptor. Don't call error.
2055 (jit_reset_inferior_data_and_breakpoints)
2056 (jit_inferior_created_observer): Remove.
2057 (jit_inferior_exit_hook): Update.
2058 (jit_executable_changed_observer): Remove.
2059 (jit_event_handler): Update.
2060 (free_objfile_data): Reset inferior data if needed.
2061 (_initialize_jit): Update.
2062
2063 2012-02-01 Tom Tromey <tromey@redhat.com>
2064
2065 * jit.c (bfd_open_from_target_memory): Move higher in file.
2066
2067 2012-02-01 Tristan Gingold <gingold@adacore.com>
2068
2069 * libunwind-frame.c (libunwind_load): Display message if dlopen
2070 failed.
2071
2072 2012-02-01 Gary Benson <gbenson@redhat.com>
2073
2074 * symtab.h (symbol_name_match_p_ftype): New typedef.
2075 (iterate_over_symbols): Use the above.
2076 * symtab.c (iterate_over_symbols): Likewise.
2077 * language.h (language_defn->la_iterate_over_symbols): Likewise.
2078 * ada-lang.c (ada_iterate_over_symbols): Likewise.
2079 * linespec.c (iterate_over_all_matching_symtabs): Likewise.
2080 (iterate_name_matcher): Document return values.
2081 (collect_one_symbol): Likewise.
2082 (collect_function_symbols): Likewise.
2083 (collect_symbols): Likewise.
2084
2085 2012-02-01 Tom Tromey <tromey@redhat.com>
2086
2087 * ada-lang.c (resolve_subexp): Update.
2088 (ada_lookup_symbol_list): Add 'full_search' argument.
2089 (ada_iterate_over_symbols): Pass 0 as full_search argument to
2090 ada_lookup_symbol_list.
2091 (ada_lookup_encoded_symbol): Update.
2092 (get_var_value): Update.
2093 * ada-exp.y (block_lookup): Update.
2094 (write_var_or_type): Update.
2095 (write_name_assoc): Update.
2096 * ada-lang.h (ada_lookup_symbol_list): Update.
2097
2098 2012-01-31 Tom Tromey <tromey@redhat.com>
2099
2100 * language.h (struct language_defn) <la_iterate_over_symbols>: Fix
2101 comment.
2102
2103 2012-01-31 Doug Evans <dje@google.com>
2104
2105 * symtab.h: Remove outdated comment.
2106 (SYMBOL_MATCHES_NATURAL_NAME): Delete.
2107
2108 2012-02-01 Josh Matthews <josh@joshmatthews.net> (tiny change)
2109
2110 Fix build error in Darwin port.
2111 * i386-darwin-nat.c: Include i386-nat.h.
2112
2113 2012-01-30 Tom Tromey <tromey@redhat.com>
2114
2115 PR breakpoints/13568:
2116 * dwarf2read.c (dwarf_decode_macro_bytes): Add 'include_hash'
2117 argument. Check for recursive includes.
2118 (dwarf_decode_macros): Create an include hash.
2119
2120 2012-01-30 Michael Eager <eager@eagercon.com>
2121
2122 * configure.tgt (powerpc-*-linux*): Add glibc-tdep.o.
2123 * ppc-linux-tdep.c: Include glibc-tdep.h.
2124 (powerpc32_plt_stub, powerpc32_plt_stub_so): Add PLT stub templates.
2125 (powerpc_linux_in_plt_stub): New function.
2126 (powerpc_linux_in_dynsym_resolve_code): New function.
2127 (ppc_skip_trampoline_code): New function.
2128 (ppc_linux_init_abi): Use PPC specific functions rather than generic.
2129 Use glibc_skip_solib_resolver.
2130
2131 2012-01-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2132
2133 Code cleanup: Make 1440 bytes of data segment read-only.
2134 * arch-utils.c (endian_enum): Make it const char *const [].
2135 * arm-tdep.c (fp_model_strings, arm_abi_strings, arm_mode_strings):
2136 Likewise.
2137 * breakpoint.c (always_inserted_enums): Likewise.
2138 * cli/cli-cmds.c (script_ext_enums): Likewise.
2139 * cli/cli-decode.c (add_setshow_enum_cmd, complete_on_enum): Make the
2140 enumlist parameter const char *const *.
2141 * cli/cli-decode.h (struct cmd_list_element): Make the enums field
2142 const char *const *.
2143 * command.h (complete_on_enum, add_setshow_enum_cmd): Make the enumlist
2144 parameter const char *const *.
2145 * cris-tdep.c (cris_modes): Make it const char *const [].
2146 * filesystem.c (target_file_system_kinds): Likewise.
2147 * i386-tdep.c (valid_flavors, valid_conventions): Likewise.
2148 * infrun.c (follow_fork_mode_kind_names, follow_exec_mode_names)
2149 (can_use_displaced_stepping_enum, scheduler_enums)
2150 (exec_direction_names): Likewise.
2151 * language.c (_initialize_language): Make the type_or_range_names and
2152 case_sensitive_names variables const char *const [].
2153 * mips-tdep.c (mips_abi_strings): Make it const char *const [].
2154 * python/python.c (python_excp_enums): Likewise.
2155 * remote.c (interrupt_sequence_modes): Likewise.
2156 * rs6000-tdep.c (powerpc_vector_strings): Likewise.
2157 * serial.c (logbase_enums): Likewise.
2158 * sh-tdep.c (sh_cc_enum): Likewise.
2159 * stack.c (print_frame_arguments_choices, print_entry_values_choices):
2160 Likewise.
2161 * symtab.c (multiple_symbols_modes): Likewise.
2162 * tui/tui-win.c (tui_border_kind_enums, tui_border_mode_enums):
2163 Likewise.
2164 * utils.c (internal_problem_modes): Likewise.
2165
2166 2012-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2167
2168 Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
2169 * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
2170 result.
2171
2172 2012-01-27 Doug Evans <dje@google.com>
2173
2174 * configure.ac (with_python): Fix absolute path handling for win32.
2175 * configure: Regenerate.
2176
2177 2012-01-26 Doug Evans <dje@google.com>
2178
2179 * symtab.c: Whitespace cleanup, no code changes.
2180
2181 * symtab.c (lookup_symbol_in_language): Improve comment.
2182 (lookup_symbol_aux): Fix comment.
2183
2184 * psymtab.c (add_psymbol_to_list): Result is now "void".
2185 * psympriv.h (add_psymbol_to_list): Update.
2186
2187 * dwarf2read.c (add_partial_symbol): Delete local psym, unused.
2188
2189 2012-01-26 Jan Kratochvil <jan.kratochvil@redhat.com>
2190
2191 Do not open script filenames twice.
2192 * cli/cli-cmds.c (source_script_from_stream): Pass to
2193 source_python_script also STREAM.
2194 * python/py-auto-load.c (source_section_scripts): Pass to
2195 source_python_script_for_objfile also STREAM.
2196 (auto_load_objfile_script): Pass to source_python_script_for_objfile
2197 also INPUT.
2198 * python/python-internal.h (source_python_script_for_objfile): New
2199 parameter file, rename parameter file to filename.
2200 * python/python.c (python_run_simple_file): Call PyRun_SimpleFile
2201 instead if !_WIN32. Update the function comment.
2202 (source_python_script, source_python_script_for_objfile)
2203 (source_python_script): New parameter file, rename parameter file to
2204 filename. Pass FILENAME to python_run_simple_file.
2205 * python/python.h (source_python_script): New parameter file, rename
2206 parameter file to filename.
2207
2208 2012-01-26 Pedro Alves <palves@redhat.com>
2209
2210 * corelow.c (core_has_fake_pid): Delete.
2211 (core_close): Delete references to `core_has_fake_pid'.
2212 (add_to_thread_list): Adjust to mark the inferior's pid as fake.
2213 (core_open): Delete references to `core_has_fake_pid'.
2214 (core_pid_to_str): Adjust to check inferior->fake_pid_p instead of
2215 the removed global.
2216
2217 2012-01-26 Joel Brobecker <brobecker@adacore.com>
2218
2219 * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]:
2220 Remove language parameter from name_matcher. Adjust the comment.
2221 * symtab.c (search_symbols_name_matches, expand_partial_symbol_name):
2222 Remove language parameter.
2223 * ada-lang.c (ada_expand_partial_symbol_name): Likewise.
2224 * linespec.c (iterate_name_matcher): Likewise.
2225 * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of
2226 name_matcher. Adjust call accordingly.
2227 * psymtab.c (expand_symtabs_matching_via_partial): Likewise.
2228 (maintenance_check_symtabs): Adjust type of parameter "fun".
2229 * psymtab.h (maintenance_check_symtabs): Likewise.
2230
2231 2012-01-26 Joel Brobecker <brobecker@adacore.com>
2232
2233 * language.h (symbol_name_match_p_ftype): New typedef.
2234 (struct language_defn): Replace field la_symbol_name_compare
2235 by la_get_symbol_name_match_p.
2236 * ada-lang.c (ada_get_symbol_name_match_p): New function.
2237 (ada_language_defn): Use it.
2238 * linespec.c (struct symbol_matcher_data): New type.
2239 (iterate_name_matcher): Rewrite.
2240 (iterate_over_all_matching_symtabs): Pass a pointer to
2241 a symbol_matcher_data struct to expand_symtabs_matching
2242 instead of just the lookup name.
2243 * c-lang.c, d-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
2244 opencl-lang.c, p-lang.c, language.c: Delete field
2245 la_symbol_name_compare, and replace by NULL for new field
2246 la_get_symbol_name_match_p.
2247 * symfile.h (struct quick_symbol_functions): Update comment.
2248
2249 2012-01-25 Tom Tromey <tromey@redhat.com>
2250
2251 * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before
2252 dereferencing.
2253
2254 2012-01-24 Tom Tromey <tromey@redhat.com>
2255
2256 PR symtab/12406:
2257 * solib.c (update_solib_list): Update the program space's
2258 added_solibs and deleted_solibs fields.
2259 * progspace.h (struct program_space) <added_solibs,
2260 deleted_solibs>: New fields.
2261 (clear_program_space_solib_cache): Declare.
2262 * progspace.c (release_program_space): Call
2263 clear_program_space_solib_cache.
2264 (clear_program_space_solib_cache): New function.
2265 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>: Call
2266 bpstat_stop_status. Use handle_solib_event.
2267 * breakpoint.c: Include gdb_regex.h.
2268 (print_solib_event): New function.
2269 (bpstat_print): Use print_solib_event.
2270 (bpstat_stop_status): Add special case for bp_shlib_event.
2271 (handle_solib_event): New function.
2272 (bpstat_what): Use handle_solib_event.
2273 (struct solib_catchpoint): New.
2274 (dtor_catch_solib, insert_catch_solib, remove_catch_solib)
2275 (breakpoint_hit_catch_solib, check_status_catch_solib)
2276 (print_it_catch_solib, print_one_catch_solib)
2277 (print_mention_catch_solib, print_recreate_catch_solib): New
2278 functions.
2279 (catch_solib_breakpoint_ops): New global.
2280 (catch_load_or_unload, catch_load_command_1)
2281 (catch_unload_command_1): New functions.
2282 (internal_bkpt_check_status): Add special case for
2283 bp_shlib_event.
2284 (internal_bkpt_print_it): Use print_solib_event.
2285 (initialize_breakpoint_ops): Initialize
2286 catch_solib_breakpoint_ops.
2287 (_initialize_breakpoint): Register "catch load" and "catch
2288 unload".
2289 * breakpoint.h (handle_solib_event): Declare.
2290 * NEWS: Add entry for "catch load" and "catch unload".
2291
2292 2012-01-24 Tom Tromey <tromey@redhat.com>
2293
2294 * ada-lang.c: Include gdb_vecs.h.
2295 * charset.c: Include gdb_vecs.h.
2296 * tracepoint.h: Include gdb_vecs.h.
2297 * gdb_vecs.h: New file.
2298
2299 2012-01-24 Pedro Alves <pedro@codesourcery.com>
2300
2301 * breakpoint.c (breakpoint_hit_catch_fork)
2302 (breakpoint_hit_catch_vfork, breakpoint_hit_catch_syscall)
2303 (breakpoint_hit_catch_exec): Make use of the `ws' argument.
2304 * infrun.c (inferior_has_forked, inferior_has_vforked)
2305 (inferior_has_execd, inferior_has_called_syscall): Delete.
2306 (handle_syscall_event): Get syscall_number from the execution
2307 control state's wait status.
2308 (wait_for_inferior): Don't clear syscall_number.
2309
2310 2012-01-24 Pedro Alves <palves@redhat.com>
2311
2312 * breakpoint.c (bpstat_check_location, bpstat_stop_status,
2313 pc_at_non_inline_function): Add `ws' parameter, and pass it down.
2314 (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork)
2315 (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add
2316 `ws' parameter.
2317 (breakpoint_hit_ranged_breakpoint): Add `ws' parameter. Return
2318 false for events other than TARGET_SIGNAL_TRAP.
2319 (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit):
2320 Add `ws' parameter.
2321 (bkpt_breakpoint_hit): Add `ws' parameter. Return false for
2322 events other than TARGET_SIGNAL_TRAP.
2323 (tracepoint_breakpoint_hit): Add `ws' parameter.
2324 * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws'
2325 parameter.
2326 (bpstat_stop_status): Same.
2327 (pc_at_non_inline_function): Same.
2328 * infrun.c (handle_syscall_event, handle_inferior_event): Adjust
2329 to pass the current event's waitstatus to bpstat_stop_status
2330 and pc_at_non_inline_function.
2331
2332 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2333
2334 Code cleanup.
2335 * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM.
2336 Update the function comment for it.
2337 (source_script_with_search): Call make_cleanup_fclose for STREAM.
2338 * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose
2339 for STREAM.
2340
2341 2012-01-24 Pedro Alves <palves@redhat.com>
2342
2343 * breakpoint.c (bpstat_stop_status): Moving clearing print_it
2344 outside `bs->stop' block.
2345 (bpstat_what): Rework bp_shlib_event handling.
2346 (internal_bkpt_check_status): If the breakpoint is a
2347 bp_shlib_event, then set bs->stop and bs->print if
2348 stop_on_solib_events is set.
2349
2350 2012-01-24 Gary Benson <gbenson@redhat.com>
2351
2352 Delete #if 0'd out code.
2353 * stack.c (print_frame_label_vars): Remove.
2354 (catch_info): Likewise.
2355 (_initialize_stack): Remove "info catch" command.
2356 * NEWS: Mention the above.
2357
2358 2012-01-24 Pedro Alves <palves@redhat.com>
2359
2360 * remote.c (remote_add_inferior): New `fake_pid_p' parameter. Use
2361 it.
2362 (remote_notice_new_inferior): If the remote end doesn't support
2363 the multiprocess extensions, then the PID is fake.
2364 (add_current_inferior_and_thread): New.
2365 (remote_start_remote): Use it.
2366 (extended_remote_attach_1): Adjust.
2367 (extended_remote_create_inferior_1): Use
2368 add_current_inferior_and_thread.
2369
2370 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2371
2372 Fix watchpoints to be specific for each inferior.
2373 * breakpoint.c (watchpoint_in_thread_scope): Verify also
2374 current_program_space.
2375 * i386-nat.c (i386_inferior_data_cleanup): New.
2376 (i386_inferior_data_get): Replace variable inf_data_local by an
2377 inferior_data call.
2378 (i386_use_watchpoints): Initialize i386_inferior_data.
2379 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID
2380 specific iterate_over_lwps.
2381
2382 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2383
2384 Fix watchpoints across inferior fork.
2385 * amd64-linux-nat.c (update_debug_registers_callback): Update the
2386 comment for linux_nat_iterate_watchpoint_lwps.
2387 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
2388 linux_nat_iterate_watchpoint_lwps.
2389 (amd64_linux_prepare_to_resume): New comment on Linux kernel.
2390 * i386-linux-nat.c (update_debug_registers_callback): Update the
2391 comment for linux_nat_iterate_watchpoint_lwps.
2392 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
2393 linux_nat_iterate_watchpoint_lwps.
2394 (i386_linux_prepare_to_resume): New comment on Linux kernel.
2395 * i386-nat.c: Include inferior.h.
2396 (dr_mirror): Remove.
2397 (i386_inferior_data, struct i386_inferior_data)
2398 (i386_inferior_data_get): New.
2399 (i386_debug_reg_state): Use i386_inferior_data_get.
2400 (i386_cleanup_dregs, i386_update_inferior_debug_regs)
2401 (i386_insert_watchpoint, i386_remove_watchpoint)
2402 (i386_stopped_data_address, i386_insert_hw_breakpoint)
2403 (i386_remove_hw_breakpoint): New variable state, use
2404 i386_debug_reg_state instead of DR_MIRROR.
2405 * linux-nat.c (delete_lwp): New declaration.
2406 (num_lwps): Move here from downwards.
2407 (delete_lwp_cleanup): New.
2408 (linux_child_follow_fork): Create new child_lp, call
2409 linux_nat_new_thread and linux_nat_prepare_to_resume before calling
2410 PTRACE_DETACH.
2411 (num_lwps): Move upwards.
2412 (linux_nat_iterate_watchpoint_lwps): New.
2413 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New.
2414 (linux_nat_iterate_watchpoint_lwps_ftype): New declaration.
2415
2416 2012-01-24 Joel Brobecker <brobecker@adacore.com>
2417
2418 GDB 7.4 released.
2419
2420 2012-01-23 Pedro Alves <palves@redhat.com>
2421
2422 * top.c (caution): Rename to ...
2423 (confirm): ... this.
2424 (show_caution): Rename to ...
2425 (show_confirm): ... this.
2426 (quit_cover): Adjust.
2427 (init_main): Adjust.
2428 * top.h (caution): Rename to ...
2429 (confirm): ... this.
2430 * utils.c (internal_vproblem, defaulted_query): Adjust.
2431
2432 2012-01-23 Pedro Alves <palves@redhat.com>
2433
2434 * top.c (caution): Update comment.
2435 (execute_command): Don't consider the current value of `caution'.
2436
2437 2012-01-23 Jan Kratochvil <jan.kratochvil@redhat.com>
2438
2439 * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen.
2440
2441 2012-01-23 Ulrich Weigand <ulrich.weigand@linaro.org>
2442
2443 * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
2444 * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning.
2445 * target.c (target_fileio_pwrite): Remove buffer address from
2446 debug output.
2447 (target_fileio_pread): Likewise.
2448
2449 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
2450
2451 * NEWS: Document remote "info proc" and "generate-core-file".
2452
2453 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
2454
2455 * gdbarch.sh (find_memory_regions): New callback.
2456 * gdbarch.c, gdbarch.h: Regenerate.
2457
2458 * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions
2459 callback before falling back to target method.
2460
2461 * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove.
2462 (linux_target_install_ops): No longer install it.
2463
2464 * linux-tdep.c (linux_find_memory_regions): New function.
2465 (linux_init_abi): Install it.
2466
2467 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
2468
2469 * gdbarch.sh (make_corefile_notes): New architecture callback.
2470 * gdbarch.c: Regenerate.
2471 * gdbarch.h: Likewise.
2472
2473 * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes
2474 before target_make_corefile_notes. If NULL is returned, the
2475 target does not support core file generation.
2476
2477 * linux-nat.c: Include "linux-tdep.h".
2478 (find_signalled_thread, find_stop_signal): Remove.
2479 (linux_nat_do_thread_registers): Likewise.
2480 (struct linux_nat_corefile_thread_data): Likewise.
2481 (linux_nat_corefile_thread_callback): Likewise.
2482 (iterate_over_spus): Likewise.
2483 (struct linux_spu_corefile_data): Likewise.
2484 (linux_spu_corefile_callback): Likewise.
2485 (linux_spu_make_corefile_notes): Likewise.
2486 (linux_nat_collect_thread_registers): New function.
2487 (linux_nat_make_corefile_notes): Replace contents by call to
2488 linux_make_corefile_notes passing linux_nat_collect_thread_registers
2489 as native-only callback.
2490
2491 * linux-tdep.h: Include "bfd.h".
2492 (struct regcache): Add forward declaration.
2493 (linux_collect_thread_registers_ftype): New typedef.
2494 (linux_make_corefile_notes): Add prototype.
2495 * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h",
2496 "regset.h", and "elf-bfd.h".
2497 (find_signalled_thread, find_stop_signal): New functions.
2498 (linux_spu_make_corefile_notes): Likewise.
2499 (linux_collect_thread_registers): Likewise.
2500 (struct linux_corefile_thread_data): New data structure.
2501 (linux_corefile_thread_callback): New funcion.
2502 (linux_make_corefile_notes): Likewise.
2503 (linux_make_corefile_notes_1): Likewise.
2504 (linux_init_abi): Install it.
2505
2506 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
2507
2508 * gdbarch.sh (info_proc): New callback.
2509 * gdbarch.c, gdbarch.h: Regenerate.
2510
2511 * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback
2512 before falling back to the target info_proc callback.
2513
2514 * linux-nat.c: Do not include "cli/cli-utils.h".
2515 (linux_nat_info_proc): Remove.
2516 (linux_target_install_ops): No longer install it.
2517
2518 * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>.
2519 (read_mapping): New function.
2520 (linux_info_proc): Likewise.
2521 (linux_init_abi): Install it.
2522
2523 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
2524
2525 * defs.h (enum info_proc_what): Moved here from linux-nat.c
2526 * infcmd.c: (info_proc_cmd_1): New function.
2527 (info_proc_cmd): New function, moved here from equivalent routine
2528 orignally in linux-nat.c.
2529 (info_proc_cmd_mappings): Likewise.
2530 (info_proc_cmd_stat): Likewise.
2531 (info_proc_cmd_status): Likewise.
2532 (info_proc_cmd_cwd): Likewise.
2533 (info_proc_cmd_cmdline): Likewise.
2534 (info_proc_cmd_exe): Likewise.
2535 (info_proc_cmd_all): Likewise.
2536 (_initialize_infcmd): Install "info proc" command and subcommands.
2537
2538 * target.h (struct target_ops): Add to_info_proc.
2539 (target_info_proc): Add prototype.
2540 * target.c (target_info_proc): New function.
2541
2542 * procfs.c (procfs_info_proc): Add prototype.
2543 (info_proc_cmd): Rename into ...
2544 (procfs_info_proc): ... this. Update argument types as appropriate
2545 for a to_info_proc implementation. Handle "what" argument.
2546 (procfs_target): Install procfs_info_proc.
2547 (_initialize_procfs): No longer install "info proc" command.
2548
2549 * linux-nat.c: (enum info_proc_what): Remove.
2550 (linux_nat_info_proc_cmd_1): Rename into ...
2551 (linux_nat_info_proc): ... this. Update argument types as appropriate
2552 for a to_info_proc implementation.
2553 (linux_nat_info_proc_cmd): Remove.
2554 (linux_nat_info_proc_cmd_mappings): Likewise.
2555 (linux_nat_info_proc_cmd_stat): Likewise.
2556 (linux_nat_info_proc_cmd_status): Likewise.
2557 (linux_nat_info_proc_cmd_cwd): Likewise.
2558 (linux_nat_info_proc_cmd_cmdline): Likewise.
2559 (linux_nat_info_proc_cmd_exe): Likewise.
2560 (linux_nat_info_proc_cmd_all): Likewise.
2561 (linux_target_install_ops): Install linux_nat_info_proc.
2562 (_initialize_linux_nat): No longer install "info proc" command
2563 and subcommands.
2564
2565 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
2566
2567 * configure.ac [AC_CHECK_FUNCS]: Check for readlink.
2568 * config.in, configure: Regenerate.
2569
2570 * target.h (struct target_ops): Add to_fileio_readlink.
2571 (target_fileio_readlink): Add prototype.
2572 * target.c (target_fileio_readlink): New function.
2573
2574 * inf-child.c: Conditionally include <sys/param.h>.
2575 (inf_child_fileio_readlink): New function.
2576 (inf_child_target): Install it.
2577
2578 * remote.c (PACKET_vFile_readlink): New enum value.
2579 (remote_hostio_readlink): New function.
2580 (init_remote_ops): Install it.
2581 (_initialize_remote): Handle vFile:readlink packet type.
2582
2583 2012-01-20 Pedro Alves <palves@redhat.com>
2584 Ulrich Weigand <ulrich.weigand@linaro.org>
2585
2586 * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite.
2587 * config.in, configure: Regenerate.
2588
2589 * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite,
2590 to_fileio_pread, to_fileio_close, to_fileio_unlink.
2591 (target_fileio_open): Add prototype.
2592 (target_fileio_pwrite): Likewise.
2593 (target_fileio_pread): Likewise.
2594 (target_fileio_close): Likewise.
2595 (target_fileio_unlink): Likewise.
2596 (target_fileio_read_alloc): Likewise.
2597 (target_fileio_read_stralloc): Likewise.
2598
2599 * target.c: Include "gdb/fileio.h".
2600 (target_read_stralloc): Accept trailing, but not embedded NUL bytes.
2601 (default_fileio_target): New function.
2602 (target_fileio_open): Likewise.
2603 (target_fileio_pwrite): Likewise.
2604 (target_fileio_pread): Likewise.
2605 (target_fileio_close): Likewise.
2606 (target_fileio_unlink): Likewise.
2607 (target_fileio_close_cleanup): Likewise.
2608 (target_fileio_read_alloc_1): Likewise.
2609 (target_fileio_read_alloc): Likewise.
2610 (target_fileio_read_stralloc): Likewise.
2611
2612 * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>,
2613 <fcntl.h>, and <unistd.h>.
2614 (inf_child_fileio_open_flags_to_host): New function.
2615 (inf_child_errno_to_fileio_error): Likewise.
2616 (inf_child_fileio_open): Likewise.
2617 (inf_child_fileio_pwrite): Likewise.
2618 (inf_child_fileio_pread): Likewise.
2619 (inf_child_fileio_close): Likewise.
2620 (inf_child_fileio_unlink): Likewise.
2621 (inf_child_target): Install to_fileio routines.
2622
2623 * remote.c (init_remote_ops): Install to_fileio routines.
2624
2625 2012-01-20 Pedro Alves <palves@redhat.com>
2626 Ulrich Weigand <ulrich.weigand@linaro.org>
2627
2628 * remote.c (remote_multi_process_p): Only check for multi-process
2629 protocol feature, do not check for extended protocol.
2630 (remote_supports_multi_process): Check for extended protocol here.
2631 (set_general_process): Likewise.
2632 (extended_remote_kill): Likewise.
2633 (remote_pid_to_str): Likewise.
2634 (remote_query_supported): Always query multiprocess mode.
2635
2636 2012-01-20 Pedro Alves <palves@redhat.com>
2637 Ulrich Weigand <ulrich.weigand@linaro.org>
2638
2639 * inferior.h (struct inferior): Add fake_pid_p.
2640 * inferior.c (exit_inferior_1): Clear fake_pid_p.
2641 * remote.c (remote_start_remote): Set fake_pid_p if we have to use
2642 magic_null_ptid since the remote side doesn't provide a real PID.
2643
2644 2012-01-19 Tom Tromey <tromey@redhat.com>
2645
2646 * NEWS: Combine the two Python sections.
2647
2648 2012-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
2649
2650 * target.h (target_close): Update comment on the target's unpush state.
2651
2652 2012-01-19 Pedro Alves <palves@redhat.com>
2653
2654 * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and
2655 linux_nat_async directly instead of going through the target
2656 vector.
2657 * target.c (unpush_target): Close target after unpushing it, not
2658 before.
2659
2660 2012-01-19 Gary Benson <gbenson@redhat.com>
2661
2662 * mdebugread.c (sort_blocks): Replace integer constants with ones
2663 derived from FIRST_LOCAL_BLOCK.
2664
2665 2012-01-18 Paul Pluzhnikov <ppluzhnikov@google.com>
2666 Jan Kratochvil <jan.kratochvil@redhat.com>
2667
2668 PR gdb/9538
2669 * symfile.c (find_separate_debug_file): New function.
2670 (terminate_after_last_dir_separator): Likewise.
2671 (find_separate_debug_file_by_debuglink): Also try realpath.
2672 * configure.ac (AC_CHECK_FUNCS): Add lstat.
2673 * configure: Regenerate.
2674 * config.in: Regenerate.
2675
2676 2012-01-18 Doug Evans <dje@google.com>
2677
2678 * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete.
2679 (main.o): Remove rule.
2680 * configure.ac (BINDIR): Define with AC_DEFINE_DIR.
2681 (--with-sysroot): Rewrite.
2682 * configure: Regenerate.
2683 * config.in: Regenerate.
2684
2685 2012-01-18 Sergio Durigan Junior <sergiodj@redhat.com>
2686
2687 * parse.c (initialize_expout): New function.
2688 (reallocate_expout): Likewise.
2689 (parse_exp_in_context): Use `initialize_expout' and
2690 `reallocate_expout' when appropriate.
2691
2692 2012-01-18 Pedro Alves <palves@redhat.com>
2693
2694 * record.c (struct record_breakpoint, record_breakpoint_p)
2695 (record_breakpoints): New.
2696 (record_insert_breakpoint, record_remove_breakpoint): Manage
2697 record breakpoints list. Only remove breakpoints from the
2698 inferior if they had been inserted there in the first place.
2699
2700 2012-01-17 Doug Evans <dje@google.com>
2701
2702 * linespec.c (decode_line_internal): Don't call symtabs_from_filename
2703 if we know we don't have a file name to look for.
2704
2705 2012-01-17 Pedro Alves <palves@redhat.com>
2706
2707 * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if
2708 the frame's stop reason is UNWIND_UNAVAILABLE.
2709
2710 2012-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2711
2712 Fix compilation error.
2713 * m2-exp.y (yyerror): Use ANSI C prototype.
2714
2715 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
2716
2717 * f-exp.y (parse_number): Convert prototype from K&R to ANSI C.
2718 (growbuf_by_size): Likewise.
2719 (yyerror): Likewise.
2720 * m2-exp.y (make_qualname): Remove function (was #if 0'ed).
2721 (modblock): Remove variable (was #if 0'ed).
2722 (parse_number): Convert prototype from K&R to ANSI C.
2723 (yyerror): Likewise.
2724 * objc-exp.y (parse_number): Likewise.
2725 (yyerror): Likewise.
2726 (yylex): Remove #if 0'ed code.
2727 * p-exp.y (uptok): Convert prototype from K&R to ANSI C.
2728 (yyerror): Likewise.
2729
2730 2012-01-16 Tom Tromey <tromey@redhat.com>
2731
2732 * NEWS: Add item.
2733 * symtab.h (compare_filenames_for_search): Declare.
2734 * symtab.c (compare_filenames_for_search): New function.
2735 (iterate_over_some_symtabs): Use it.
2736 * symfile.h (struct quick_symbol_functions)
2737 <map_symtabs_matching_filename>: Change spec.
2738 * psymtab.c (partial_map_symtabs_matching_filename): Use
2739 compare_filenames_for_search. Update for new spec.
2740 * dwarf2read.c (dw2_map_symtabs_matching_filename): Use
2741 compare_filenames_for_search. Update for new spec.
2742 * breakpoint.c (clear_command): Use compare_filenames_for_search.
2743
2744 2012-01-16 Tom Tromey <tromey@redhat.com>
2745
2746 PR python/13281:
2747 * gdbtypes.h (TYPE_FLAG_ENUM): New macro.
2748 (struct main_type) <flag_flag_enum>: New field.
2749 * dwarf2read.c (process_enumeration_scope): Detect "flag" enums.
2750 * NEWS: Add entries.
2751 * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag"
2752 enums.
2753 * python/lib/gdb/printing.py (_EnumInstance): New class.
2754 (FlagEnumerationPrinter): Likewise.
2755
2756 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
2757
2758 * breakpoint.c (create_sals_from_address_default): New function.
2759 (create_breakpoints_sal_default): Likewise.
2760 (decode_linespec_default): Likewise.
2761 (is_marker_spec): Removed.
2762 (strace_marker_p): New function.
2763 (init_breakpoint_sal): Using `strace_marker_p' instead of
2764 `is_marker_spec'.
2765 (create_breakpoint): Call method `create_sals_from_address' from
2766 breakpoint_ops, replacing code that created SALs conditionally
2767 on the type of the breakpoint. Call method `create_breakpoints_sal',
2768 replacing code that created breakpoints conditionally on the type
2769 wanted.
2770 (base_breakpoint_create_sals_from_address): New function.
2771 (base_breakpoint_create_breakpoints_sal): Likewise.
2772 (base_breakpoint_decode_linespec): Likewise.
2773 (base_breakpoint_ops): Add methods
2774 `base_breakpoint_create_sals_from_address',
2775 `base_breakpoint_create_breakpoints_sal' and
2776 `base_breakpoint_decode_linespec'.
2777 (bkpt_create_sals_from_address): New function.
2778 (bkpt_create_breakpoints_sal): Likewise.
2779 (bkpt_decode_linespec): Likewise.
2780 (tracepoint_create_sals_from_address): Likewise.
2781 (tracepoint_create_breakpoints_sal): Likewise.
2782 (tracepoint_decode_linespec): Likewise.
2783 (strace_marker_create_sals_from_address): Likewise.
2784 (strace_marker_create_breakpoints_sal): Likewise.
2785 (strace_marker_decode_linespec): Likewise.
2786 (strace_marker_breakpoint_ops): New variable.
2787 (addr_string_to_sals): Remove `marker_spec'. Call method
2788 `decode_linespec' from breakpoint_ops, replacing code that decoded
2789 an address string into a SAL. Use `strace_marker_p' instead of
2790 `marker_spec'.
2791 (strace_command): Decide whether we are dealing with a static
2792 tracepoint with marker or not. Use the appropriate breakpoint_ops.
2793 (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops.
2794 * breakpoint.h (linespec_result, linespec_sals): New forward
2795 declarations.
2796 (breakpoint_ops) <create_sals_from_address>,
2797 <create_breakpoints_sal>, <decode_linespec>: New methods.
2798
2799 2012-01-14 Doug Evans <dje@google.com>
2800
2801 * NEWS: Update text for "maint set python print-stack".
2802 It is deprecated in gdb 7.4 and deleted in 7.5.
2803
2804 2012-01-13 Eli Zaretskii <eliz@gnu.org>
2805
2806 * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before
2807 including curses.h.
2808
2809 2012-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
2810
2811 * configure: Regenerate.
2812 * config.in: Regenerate.
2813
2814 2012-01-12 Keith Seitz <keiths@redhat.com>
2815
2816 PR mi/10586
2817 * varobj.c (ANONYMOUS_STRUCT_NAME): Define.
2818 (ANONYMOUS_UNION_NAME): Define.
2819 (is_path_expr_parent): New function.
2820 (get_path_expr_parent): New function.
2821 (is_anonymous_child): New function.
2822 (create_child_with_value): If the child is anonymous and without
2823 a name, assign an object name to it.
2824 (c_describe_child): Use get_path_expr_parent to determine
2825 the parent expression.
2826 If there field represents an anonymous struct or union and
2827 has no name, set an appropriate display name and expression.
2828 (cplus_describe_child): Likewise.
2829
2830 2012-01-12 Pedro Alves <palves@redhat.com>
2831
2832 * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as
2833 available when %ebp is found to be zero (outermost).
2834
2835 2012-01-11 Andreas Tobler <andreast@fgznet.ch>
2836
2837 * common/gdb_assert.h (gdb_static_assert): Rename static_assert to
2838 an internal gdb_static_assert.
2839 * mi/mi-common.c: Rename static_assert to gdb_static_assert.
2840
2841 2012-01-11 Tom Tromey <tromey@redhat.com>
2842
2843 PR gdb/9598:
2844 * breakpoint.c (_initialize_breakpoint): Fix help for "catch
2845 catch" and "catch throw".
2846
2847 2012-01-11 Paul Hilfinger <hilfingr@adacore.com>
2848
2849 * blockframe.c (block_innermost_frame): Start search from selected
2850 frame, if present, or otherwise the current frame.
2851
2852 * c-exp.y (variable): Update innermost_block for
2853 'block COLONCOLON NAME' clause.
2854 * m2-exp.y (variable): Ditto.
2855 * objc-exp.y (variable): Ditto.
2856
2857 2012-01-10 Tom Tromey <tromey@redhat.com>
2858
2859 PR python/13199:
2860 * python/python.c (finish_python_initialization): Set sys.argv.
2861
2862 2012-01-10 Doug Evans <dje@google.com>
2863
2864 * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd". New arg
2865 "want_line_info". All callers updated.
2866 (dwarf_decode_lines_1): New function.
2867 (handle_DW_AT_stmt_list): Add function comment.
2868 New arg "want_line_info". All callers updated.
2869 (read_file_scope,read_type_unit_scope): Move comment from
2870 handle_DW_AT_stmt_list to here.
2871
2872 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
2873
2874 Fix regression after libiberty/ update for GCC PR 6057 and others.
2875 * c-exp.y (operator) <OPERATOR DELETE>
2876 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
2877 * cp-name-parser.y (fill_comp, make_operator, make_dtor)
2878 (make_builtin_type, make_name): New variable i, add gdb_assert.
2879 (operator) <OPERATOR NEW>: Update ARGS to 3.
2880 (operator) <OPERATOR DELETE>: Add trailing space.
2881 (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3.
2882 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
2883 * cp-support.c (cp_canonicalize_string): Check NULL from
2884 cp_comp_to_string, call warning and return.
2885
2886 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
2887
2888 Fix duplicate .o files after omitting libbfd.a.
2889 * Makefile.in (ALL_TARGET_OBS): Remove corelow.o.
2890 (SFILES): Add corelow.c.
2891 (COMMON_OBS): Add corelow.o.
2892 (ALLDEPFILES): Remove corelow.c.
2893 * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o.
2894 * config/alpha/alpha-osf3.mh: Likewise.
2895 * config/alpha/fbsd.mh: Likewise.
2896 * config/arm/nbsdaout.mh: Likewise.
2897 * config/arm/nbsdelf.mh: Likewise.
2898 * config/i386/i386gnu.mh: Likewise.
2899 * config/ia64/hpux.mh: Likewise.
2900 * config/ia64/linux.mh: Likewise.
2901 * config/m32r/linux.mh: Likewise.
2902 * config/m68k/linux.mh: Likewise.
2903 * config/mips/irix5.mh: Likewise.
2904 * config/mips/irix6.mh: Likewise.
2905 * config/pa/hpux.mh: Likewise.
2906 * config/pa/linux.mh: Likewise.
2907 * config/powerpc/aix.mh: Likewise.
2908 * config/sparc/linux.mh: Likewise.
2909 * config/sparc/linux64.mh: Likewise.
2910 * config/sparc/sol2.mh: Likewise.
2911 * config/vax/vax.mh: Likewise.
2912 * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu)
2913 (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*)
2914 (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*)
2915 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*)
2916 (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*)
2917 (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*)
2918 (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*)
2919 (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*)
2920 (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*)
2921 (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu)
2922 (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*)
2923 (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*)
2924 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
2925 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*)
2926 (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*)
2927 (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
2928 (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*)
2929 (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu)
2930 (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*)
2931 (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*)
2932 (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*)
2933 (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove
2934 corelow.o from gdb_target_obs.
2935 * corefile.c (core_target): Update the comment on NULL value.
2936 (core_file_command): Replace error by gdb_assert on CORE_TARGET.
2937 * corelow.c (sniff_core_bfd): Call error instead of warning on zero
2938 MATCHES. Drop YUMMY set on NULL.
2939 (core_close): Do not call exit_inferior_silent on zero PID. Do not
2940 reclaim CORE_DATA if it is already NULL.
2941
2942 2012-01-09 Doug Evans <dje@google.com>
2943
2944 * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
2945 * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
2946
2947 2012-01-09 Keith Seitz <keiths@redhat.com>
2948
2949 * breakpoint.c (wrapper.h): Don't include.
2950
2951 2012-01-09 Keith Seitz <keiths@redhat.com>
2952
2953 * Makefile.in (SFILES): Remove wrapper.c.
2954 (HFILES_NO_SRCDIR): Remove wrapper.h.
2955 (COMMON_OBS): Remove wrapper.o.
2956 * cli/cli-interp.c: Don't inlude wrapper.h.
2957 * corelow.c: Likewise.
2958 (core_open): Replace gdb_target_find_new_threads with
2959 TRY_CATCH around target_find_new_threads.
2960 * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy.
2961 * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type.
2962 * varobj.c (varobj_create): Likewise for parse_exp_1 and
2963 evaluate_expression.
2964 (varobj_set_value): Likewise for evaluate_expression and
2965 value_assign.
2966 (install_new_variable): Likewise for value_fetch_lazy.
2967 (adjust_value_for_child_access): Likewise for value_ind.
2968 (c_describe_child): Likewise for value_subscript and
2969 value_ind.
2970 (c_value_of_root): Likewise for evaluate_expression.
2971 * wrapper.c: Remove.
2972 * wrapper.h: Remove.
2973
2974 2012-01-09 Doug Evans <dje@google.com>
2975
2976 * dwarf2read.c (read_and_check_comp_unit_head): Renamed from
2977 partial_read_comp_unit_head. Replace "buffer", "buffer_size" and
2978 "abfd" args with "section". All callers updated.
2979 Error checking code moved ...
2980 (error_check_comp_unit_head): ... here. New function.
2981 (read_and_check_type_unit_head): Renamed from read_type_unit_head.
2982 Delete arg "abfd". New arg "type_offset". All callers updated.
2983 (create_debug_types_hash_table): Simplify by using
2984 read_and_check_type_unit_head.
2985
2986 * parser-defs.h (namecopy): Delete.
2987 * parse.c (namecopy, namecopy_size): Move into copy_name.
2988
2989 2012-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
2990
2991 Partially fix duplicate .o files after omitting libbfd.a.
2992 * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o.
2993 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
2994 * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o.
2995 * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o.
2996 * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o.
2997 * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o.
2998 * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o.
2999
3000 2012-01-09 Pedro Alves <palves@redhat.com>
3001
3002 * MAINTAINERS: Update my email address.
3003
3004 2012-01-08 Doug Evans <dje@google.com>
3005
3006 * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to
3007 n_type_units. Rename type_comp_units to all_type_units.
3008 All uses updated.
3009 (add_signatured_type_cu_to_table): Renamed from
3010 add_signatured_type_cu_to_list. All callers updated.
3011
3012 * gdbtypes.h (struct cplus_struct_type): Delete member
3013 nfn_fields_total. All uses removed.
3014
3015 2012-01-06 Doug Evans <dje@google.com>
3016
3017 * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard
3018 to top of file.
3019 (dwarf2_find_comp_unit): Delete.
3020 (process_psymtab_comp_unit): Make result "void".
3021 Delete args buffer, info_ptr, buffer_size, and replace with
3022 "section". All callers updated.
3023 (dwarf2_build_psymtabs_hard): Simplify.
3024
3025 2012-01-06 Sergio Durigan Junior <sergiodj@redhat.com>
3026 Thiago Jung Bauermann <bauerman@br.ibm.com>
3027
3028 * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword
3029 before `struct gdb_exception'.
3030 * breakpoint.c (update_global_location_list_nothrow)
3031 (update_breakpoint_locations, enable_breakpoint_disp): Likewise.
3032 * cp-abi.c (value_rtti_type): Likewise.
3033 * cp-support.c (cp_validate_operator): Likewise.
3034 * infrun.c (insert_exception_resume_breakpoint)
3035 (check_exception_resume, keep_going): Likewise.
3036 * mi-interp.c (mi_breakpoint_created)
3037 (mi_breakpoint_modified): Likewise.
3038 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise.
3039 * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p)
3040 (ia64_hpux_handle_dld_breakpoint_1): Likewise.
3041
3042 2012-01-05 Doug Evans <dje@google.com>
3043
3044 * dwarf2read.c (statement_prologue): Delete, unused.
3045
3046 * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int.
3047 * dwarf2loc.h (dwarf2_per_cu_addr_size): Update.
3048
3049 * dwarf2read.c (comp_unit_header): Delete, unused.
3050
3051 2012-01-05 Ulrich Weigand <uweigand@de.ibm.com>
3052
3053 * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o.
3054 * config/s390/s390.mh (NATDEPFILES): Remove corelow.o.
3055
3056 2012-01-05 Khoo Yit Phang <khooyp@cs.umd.edu>
3057
3058 * infrun.c (normal_stop): Don't skip calling the normal_stop
3059 observers if the thread was doing a multi-step, but stopped for
3060 some reason other than stepping.
3061
3062 2012-01-05 Pedro Alves <alves.ped@gmail.com>
3063
3064 * cli/cli-decode.h: Add comments.
3065 (CMD_LIST_AMBIGUOUS): Moved to command.h
3066 (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
3067 (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq)
3068 (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1)
3069 (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition)
3070 (add_com, add_com_alias, add_info, add_info_alias)
3071 (complete_on_cmdlist, complete_on_enum, help_list): Remove
3072 declarations.
3073 * command.h: Add and adjust comments.
3074 (CMD_LIST_AMBIGUOUS): Moved here.
3075 (help_cmd, help_cmd_list): Delete declarations.
3076
3077 2012-01-04 Doug Evans <dje@google.com>
3078
3079 * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd".
3080 All callers updated.
3081 (load_full_type_unit): Renamed from read_signatured_type_at_offset.
3082 Replace all arguments with "per_cu". All callers updated.
3083
3084 * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment.
3085
3086 * dwarf2read.c (init_one_comp_unit): Delete arg "objfile".
3087 New arg "per_cu". All callers updated.
3088
3089 Delete #if 0'd out code.
3090 * language.c (binop_result_type): Delete.
3091 (simple_type, ordered_type, same_type, integral_type): Delete.
3092 (numeric_type, character_type, string_type, boolean_type): Delete.
3093 (float_type, structured_type): Delete.
3094 * language.h: Update.
3095
3096 2012-01-04 Tom Tromey <tromey@redhat.com>
3097
3098 * python/py-value.c (valpy_binop): Initialize 'res_val'.
3099
3100 2012-01-04 Joel Brobecker <brobecker@adacore.com>
3101
3102 * corefile.c (close_exec_file): Delete.
3103 (reopen_exec_file): Remove commented out code that seems related
3104 to close_exec_file, which is being deleted here.
3105 * inferior.h (close_exec_file): Delete.
3106 * fork-child.c (fork_inferior): Remove call to fork_inferior.
3107
3108 2012-01-04 Joel Brobecker <brobecker@adacore.com>
3109
3110 * ada-lang.c: #include "cli/cli-utils.h".
3111 (get_selections): Use skip_spaces.
3112 (ada_get_next_arg): Use skip_spaces and skip_to_space.
3113 (catch_ada_exception_command_split): Use skip_spaces.
3114 (ada_decode_assert_location): Likewise.
3115
3116 2012-01-04 Joel Brobecker <brobecker@adacore.com>
3117
3118 * linespec.c (decode_line_internal): Check for C++ or Java
3119 compound constructs only if the current language is C, C++
3120 or Java.
3121
3122 2012-01-04 Jan Kratochvil <jan.kratochvil@redhat.com>
3123
3124 Revert:
3125 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3126 Joel Brobecker <brobecker@adacore.com>
3127 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
3128 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
3129 3 times.
3130 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
3131 fall through into AT_ENTRY_POINT.
3132 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
3133 DUMMY_ADDR with it.
3134 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
3135 PPC_INSN_SIZE skip to 3 times.
3136
3137 2012-01-04 Joel Brobecker <brobecker@adacore.com>
3138
3139 * linespec.c (add_minsym): Preserve function descriptors.
3140
3141 2012-01-04 Ulrich Weigand <uweigand@de.ibm.com>
3142
3143 * breakpoint.c (all_locations_are_pending): Consider locations
3144 in program spaces executing during startup pending as well.
3145
3146 2012-01-04 Joel Brobecker <brobecker@adacore.com>
3147
3148 Copyright year update in most files of the GDB Project.
3149
3150 2012-01-04 Joel Brobecker <brobecker@adacore.com>
3151
3152 * copyright.sh: Delete.
3153 * copyright.py: Rewrite.
3154
3155 2012-01-04 Joel Brobecker <brobecker@adacore.com>
3156
3157 * gnulib/extra/update-copyright: New file, imported from gnulib.
3158
3159 2012-01-04 Joel Brobecker <brobecker@adacore.com>
3160
3161 * README (Copyright and License Notices): New section.
3162
3163 2012-01-03 Tom Tromey <tromey@redhat.com>
3164
3165 PR python/12533:
3166 * python/py-value.c (valpy_dereference, valpy_get_address
3167 valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
3168 (valpy_getitem, valpy_call, valpy_binop, valpy_negative)
3169 (valpy_absolute, valpy_richcompare): Free intermediate values.
3170
3171 2011-01-03 Joel Brobecker <brobecker@adacore.com>
3172
3173 * ada-lang.c: Reformat the copyright notice.
3174
3175 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3176
3177 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
3178 * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*)
3179 (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*)
3180 (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o.
3181 Revert this part of:
3182 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3183 Build gdb directly from *.o files not using libgdb.a.
3184 * Makefile.in (COMMON_OBS): Remove solib-target.o.
3185
3186 2012-01-02 Joel Brobecker <brobecker@adacore.com>
3187
3188 * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c,
3189 gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c:
3190 Reformat the copyright header.
3191
3192 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3193
3194 Revert this part of:
3195 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3196 Remove the gdbtui binary.
3197 * gdb.c (main): Remove args.interpreter_p initialization.
3198 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
3199 * main.h (struct captured_main_args): Remove interpreter_p.
3200
3201 2012-01-02 Joel Brobecker <brobecker@adacore.com>
3202
3203 * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011.
3204
3205 2012-01-02 Joel Brobecker <brobecker@adacore.com>
3206
3207 * top.c (print_gdb_version): Update copyright year.
3208
3209 2012-01-02 Yao Qi <yao@codesourcery.com>
3210
3211 * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent.
3212
3213 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3214 Joel Brobecker <brobecker@adacore.com>
3215
3216 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
3217 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
3218 3 times.
3219 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
3220 fall through into AT_ENTRY_POINT.
3221 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
3222 DUMMY_ADDR with it.
3223 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
3224 PPC_INSN_SIZE skip to 3 times.
3225
3226 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3227
3228 * amd64-linux-nat.c (update_debug_registers_callback): New comment on
3229 the return value.
3230 * i386-linux-nat.c (update_debug_registers_callback): Likewise.
3231
3232 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3233
3234 Build gdb directly from *.o files not using libgdb.a.
3235 * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o.
3236 (COMMON_OBS): Remove solib-target.o.
3237 (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule.
3238 (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS).
3239 (LIBGDB_OBS, libgdb.a): Move it above.
3240 * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*)
3241 (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu)
3242 (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe)
3243 (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu)
3244 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*)
3245 (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*)
3246 (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu)
3247 (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*)
3248 (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*)
3249 (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*)
3250 (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
3251 (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*)
3252 (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*)
3253 (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*)
3254 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
3255 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*)
3256 (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*)
3257 (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
3258 (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*)
3259 (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu)
3260 (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*)
3261 (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*)
3262 (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*)
3263 (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*)
3264 (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu)
3265 (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*)
3266 (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs.
3267
3268 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3269
3270 Remove the gdbtui binary.
3271 * .gitignore (/gdbtui): Remove.
3272 * Makefile.in (TUI): Remove.
3273 (SUBDIR_TUI_OBS): Remove tui-main.o.
3274 (SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
3275 (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
3276 (tui-main.o): Remove.
3277 (all_object_files): Remove tui-main.o.
3278 * NEWS: New note for the gdbtui removal.
3279 * configure: Rebuilt.
3280 * configure.ac: No longer add all-tui, clean-tui, install-tui and
3281 uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
3282 CONFIG_UNINSTALL respectively.
3283 * gdb.c (main): Remove args.interpreter_p initialization.
3284 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
3285 * main.h (struct captured_main_args): Remove interpreter_p.
3286 * tui/tui-main.c: Remove.
3287
3288 2012-01-01 Doug Evans <dje@google.com>
3289
3290 * dwarf2read.c (dwarf2_compute_name): Simplify objfile references.
3291 (dwarf2_physname, read_import_statement): Ditto.
3292 (read_call_site_scope, dwarf2_record_block_ranges): Ditto.
3293 (process_structure_scope read_subroutine_type): Ditto.
3294 (read_typedef, load_partial_dies, read_partial_die): Ditto.
3295 (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto.
3296 (dwarf2_fetch_die_location_block): Ditto.
3297 (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto.
3298
3299 * dwarf2read.c (read_signatured_type): Delete `objfile' arg.
3300 All callers updated.
3301 (load_full_comp_unit, queue_comp_unit, process_queue): Ditto.
3302 (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto.
3303 (process_psymtab_comp_unit, load_partial_comp_unit): Ditto.
3304
3305 * dwarf2read.c (load_cu): Move assert to more useful location.
3306
3307 * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit.
3308 All callers updated.
3309
3310 * dwarf2read.c (dwarf2_per_objfile): Add comment.
3311 (dwarf2_elf_names): Minor reformat.
3312 (dwarf2_per_cu_data): Tweak comment.
3313 (dwarf2_read_section): Fix comment.
3314 (create_all_comp_units): Fix comment.
3315 (load_full_comp_unit): Fix comment.
3316 (process_full_comp_unit): Fix comment.
3317 (read_signatured_type): Fix comment.
3318
3319 For older changes see ChangeLog-2011.
3320 \f
3321 Local Variables:
3322 mode: change-log
3323 left-margin: 8
3324 fill-column: 74
3325 version-control: never
3326 coding: utf-8
3327 End:
This page took 0.180613 seconds and 4 git commands to generate.