Fix ARI violation in ada_tasks_inferior_data_sniffer.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2012-02-28 Joel Brobecker <brobecker@adacore.com>
2
3 From Tristan Gingold <gingold@adacore.com>.
4 * ada-tasks.c (ada_tasks_inferior_data_sniffer): Rework code to
5 avoid variable assignments inside condition.
6
7 2012-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
8
9 Fix static analysis issue found by cppcheck.
10 * microblaze-tdep.c (microblaze_extract_return_value): Fix
11 uninitialized BUF for size 2.
12
13 2012-02-27 Chris Dearman <chris@mips.com>
14 Nathan Froyd <froydnj@codesourcery.com>
15 Maciej W. Rozycki <macro@codesourcery.com>
16
17 * mips-tdep.c (mips32_instruction_has_delay_slot): New function.
18 (mips16_instruction_has_delay_slot): Likewise.
19 (mips_segment_boundary): Likewise.
20 (mips_adjust_breakpoint_address): Likewise.
21 (mips_gdbarch_init): Use mips_adjust_breakpoint_address.
22
23 2012-02-27 Maciej W. Rozycki <macro@mips.com>
24 Maciej W. Rozycki <macro@codesourcery.com>
25
26 * infrun.c (handle_inferior_event): Don't proceed through
27 shared library trampolines if stepping at the machine
28 instruction level.
29
30 2012-02-27 Maciej W. Rozycki <macro@codesourcery.com>
31
32 * mips-linux-tdep.c (mips_linux_init_abi): Set num_pseudo_regs
33 too.
34
35 2012-02-27 Thomas Schwinge <thomas@codesourcery.com>
36
37 * sh-tdep.c (sh_make_stub_cache, sh_stub_this_id)
38 (sh_stub_unwind_sniffer): New functions.
39 (sh_stub_unwind): New variable.
40 (sh_gdbarch_init): Wire everything.
41
42 2012-02-27 Pedro Alves <palves@redhat.com>
43
44 * linux-nat.c (pid_is_stopped): Delete, moved to common/.
45 (linux_nat_post_attach_wait): Adjust to use
46 linux_proc_pid_is_stopped.
47 * common/linux-procfs.h (linux_proc_pid_is_stopped): Declare.
48 * common/linux-procfs.c (linux_proc_pid_is_stopped): New function,
49 based on pid_is_stopped from both linux-nat.c and
50 gdbserver/linux-low.c, and renamed.
51
52 2012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
53
54 * remote.c (remote_watchpoint_addr_within_range): New function.
55 (init_remote_ops): Use it.
56
57 2012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
58
59 * target.h (target_watchpoint_addr_within_range): Document macro.
60
61 2012-02-24 Pedro Alves <palves@redhat.com>
62
63 * stack.c (set_last_displayed_sal): Issue internal_error instead
64 of warning, and issue it after clearing the last displayed sal.
65
66 2012-02-24 Jan Kratochvil <jan.kratochvil@redhat.com>
67 Pedro Alves <palves@redhat.com>
68
69 * breakpoint.c (until_break_command): Install breakpoints after
70 all frame manipulations.
71
72 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
73
74 * remote.c (remote_supports_cond_breakpoints): New forward
75 declaration.
76 (remote_add_target_side_condition): New function.
77 (remote_insert_breakpoint): Add target-side breakpoint
78 conditional if supported.
79 (remote_insert_hw_breakpoint): Likewise.
80 (init_remote_ops): Set to_supports_evaluation_of_breakpoint_conditions
81 hook.
82
83 * target.c (update_current_target): Inherit
84 to_supports_evaluation_of_breakpoint_conditions.
85 Default to_supports_evaluation_of_breakpoint_conditions to return_zero.
86
87 * target.h (struct target_ops)
88 <to_supports_evaluation_of_breakpoint_conditions>: New field.
89 (target_supports_evaluation_of_breakpoint_conditions): New #define.
90
91 * breakpoint.c (get_first_locp_gte_addr): New forward declaration.
92 (condition_evaluation_both, condition_evaluation_auto,
93 condition_evaluation_host, condition_evaluation_target,
94 condition_evaluation_enums, condition_evaluation_mode_1,
95 condition_evaluation_mode): New static globals.
96 (translate_condition_evaluation_mode): New function.
97 (breakpoint_condition_evaluation_mode): New function.
98 (gdb_evaluates_breakpoint_condition_p): New function.
99 (ALL_BP_LOCATIONS_AT_ADDR): New helper macro.
100 (mark_breakpoint_modified): New function.
101 (mark_breakpoint_location_modified): New function.
102 (set_condition_evaluation_mode): New function.
103 (show_condition_evaluation_mode): New function.
104 (bp_location_compare_addrs): New function.
105 (get_first_location_gte_addr): New helper function.
106 (set_breakpoint_condition): Free condition bytecode if locations
107 has become unconditional. Call mark_breakpoint_modified (...).
108 (condition_command): Call update_global_location_list (1) for
109 breakpoints.
110 (breakpoint_xfer_memory): Use is_breakpoint (...).
111 (is_breakpoint): New function.
112 (parse_cond_to_aexpr): New function.
113 (build_target_condition_list): New function.
114 (insert_bp_location): Handle target-side conditional
115 breakpoints and call build_target_condition_list (...).
116 (update_inserted_breakpoint_locations): New function.
117 (insert_breakpoint_locations): Handle target-side conditional
118 breakpoints.
119 (bpstat_check_breakpoint_conditions): Add comment.
120 (bp_condition_evaluator): New function.
121 (bp_location_condition_evaluator): New function.
122 (print_breakpoint_location): Print information on where the condition
123 will be evaluated.
124 (print_one_breakpoint_location): Likewise.
125 (init_bp_location): Call mark_breakpoint_location_modified (...) for
126 breakpoint location.
127 (force_breakpoint_reinsertion): New functions.
128 (update_global_location_list): Handle target-side breakpoint
129 conditions.
130 Reinsert locations that are already inserted if conditions have
131 changed.
132 (bp_location_dtor): Free agent expression bytecode.
133 (disable_breakpoint): Call mark_breakpoint_modified (...).
134 Call update_global_location_list (...) with parameter 1 for breakpoints.
135 (disable_command): Call mark_breakpoint_location_modified (...).
136 Call update_global_location_list (...) with parameter 1 for breakpoints.
137 (enable_breakpoint_disp): Call mark_breakpoint_modified (...).
138 (enable_command): mark_breakpoint_location_modified (...).
139 (_initialize_breakpoint): Update documentation and add
140 condition-evaluation breakpoint subcommand.
141
142 * breakpoint.h: Include ax.h.
143 (condition_list): New data structure.
144 (condition_status): New enum.
145 (bp_target_info) <cond_list>: New field.
146 (bp_location) <condition_changed, cond_bytecode>: New fields.
147 (is_breakpoint): New prototype.
148
149 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
150
151 * remote.c (remote_state) <cond_breakpoints>: New field.
152 (PACKET_ConditionalBreakpoints): New enum.
153 (remote_cond_breakpoint_feature): New function.
154 (remote_protocol_features): Add new ConditionalBreakpoints entry.
155 (remote_supports_cond_breakpoints): New function.
156 (_initialize_remote): Add new packet configuration for
157 target-side conditional breakpoints.
158
159 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
160
161 * NEWS: Mention target-side conditional breakpoint support,
162 new condition-evaluation breakpoint subcommand and remote
163 packet extensions.
164
165 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
166
167 * breakpoint.c (bp_location_compare): Sort by pspace before sorting by
168 number.
169
170 2012-02-24 Thomas Schwinge <thomas@codesourcery.com>
171
172 * sh-tdep.c (sh_skip_prologue): Use skip_prologue_using_sal.
173 (after_prologue): Remove.
174
175 2012-02-23 Tom Tromey <tromey@redhat.com>
176
177 * jv-valprint.c (java_val_print): Remove dead code.
178
179 2012-02-23 Tristan Gingold <gingold@adacore.com>
180
181 * ada-tasks.c (struct ada_tasks_inferior_data): Add
182 known_tasks_element and known_tasks_length fields.
183 (read_known_tasks_array): Change argument type. Use pointer type
184 and number of elements from DATA. Adjust.
185 (read_known_tasks_list): Likewise.
186 (get_known_tasks_addr): Remove.
187 (ada_set_current_inferior_known_tasks_addr): Renamed to ...
188 (ada_tasks_inferior_data_sniffer): ... this. Use symtab for element
189 type and array length. Merge former get_known_tasks_addr code.
190
191 2012-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
192
193 PR backtrace/13716
194 * infcmd.c (finish_forward): New variable frame_id, initialize it, use
195 it after set_momentary_breakpoint.
196
197 2012-02-22 Sterling Augustine <saugustine@google.com>
198
199 PR 13689:
200 * breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch.
201
202 2012-02-22 Gary Benson <gbenson@redhat.com>
203
204 * dwarf2read.c (dwarf2_read_index): Correct misspelling.
205 (find_slot_in_mapped_hash): Likewise.
206
207 2012-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
208
209 PR build/13638
210 * configure.ac (MAKEINFO): Replace AC_CHECK_PROG by AC_ARG_VAR.
211 (MAKEINFOFLAGS): Replace static string by AC_ARG_VAR.
212 * configure: Regenerate.
213
214 2012-02-21 Tristan Gingold <gingold@adacore.com>
215 Pedro Alves <palves@redhat.com>
216
217 * ia64-tdep.c: Do not include libunwind-ia64.h.
218 * libunwind-frame.h: Remove #ifdef HAVE_LIBUNWIND_H guard.
219 Include libunwind-ia64.h instead of libunwind.h.
220 * configure.ac (--with-libunwind, $enable_libunwind): Don't check
221 for libunwind.h existence.
222 * configure, config.in: Regenerate.
223
224 2012-02-21 Anton Gorenkov <xgsa@yandex.ru>
225
226 * c-valprint.c (c_value_print): Use value_rtti_indirect_type
227 instead of value_rtti_target_type.
228 * eval.c (evaluate_subexp_standard): Use value_rtti_indirect_type
229 instead of value_rtti_target_type.
230 * typeprint.c (whatis_exp): Use value_rtti_indirect_type instead of
231 value_rtti_target_type.
232 * valops.c (value_ind): Extract function readjust_indirect_value_type.
233 (value_rtti_target_type): Rename to ...
234 (value_rtti_indirect_type): ... here and make it indirect. Update
235 function comment.
236 * value.c (readjust_indirect_value_type): New function.
237 (coerce_ref): Support for enclosing type setting for references
238 with readjust_indirect_value_type.
239 * value.h (readjust_value_type): New declaration.
240 (value_rtti_target_type): Rename to ...
241 (value_rtti_indirect_type): ... here.
242
243 2012-02-21 Anton Gorenkov <xgsa@yandex.ru>
244
245 * MAINTAINERS (Write After Approval): Add myself to the list.
246
247 2012-02-20 Doug Evans <dje@google.com>
248
249 * objfiles.c (add_to_objfile_sections): Remove outdated comments.
250 Rename objfile_p_char parameter to objfilep.
251 (build_objfile_section_table): Result is now void. All callers
252 updated.
253 * objfiles.h (struct objfile): Tweak comments, whitespace.
254 (build_objfile_section_table): Update.
255
256 * elfread.c (elf_symfile_segments): Fix warning text.
257
258 2012-02-20 Tom Tromey <tromey@redhat.com>
259
260 PR gdb/13498:
261 * dwarf2read.c (dw2_expand_symtabs_matching): Only visit a
262 particular set of file names once.
263 (dw2_map_symbol_filenames): Likewise.
264
265 2012-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
266
267 Code cleanup.
268 * main.c (write_files): Remove the declaration.
269 (external_editor_command): Move the declaration ...
270 [GDBTK] (external_editor_command): ... here. Fix the comment.
271
272 2012-02-20 Tom Tromey <tromey@redhat.com>
273
274 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove
275 extraneous block.
276
277 2012-02-20 Tristan Gingold <gingold@adacore.com>
278
279 * darwin-nat.h (enum darwin_msg_state): Add comments.
280
281 2012-02-20 Tristan Gingold <gingold@adacore.com>
282
283 * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Fix jb_pc_offset
284 value.
285
286 2012-20-18 Joel Brobecker <brobecker@adacore.com>
287
288 * breakpoint.c (watchpoint_exp_is_const): Add missing empty line
289 between function description and implementation.
290
291 2012-02-17 Tom Tromey <tromey@redhat.com>
292
293 PR python/12070:
294 * python/py-event.c (event_object_getset): New global.
295 (event_object_type): Reference it.
296 * python/py-type.c (field_object_getset): New global.
297 (field_object_type): Reference it.
298 * python/python-internal.h (gdb_py_generic_dict): Declare.
299 * python/py-utils.c (gdb_py_generic_dict): New function.
300
301 2012-02-17 Tristan Gingold <gingold@adacore.com>
302
303 * solib-darwin.c (darwin_current_sos): Check magic and filetype
304
305 2012-02-17 Thomas Schwinge <thomas@codesourcery.com>
306
307 * sh-tdep.c (sh_is_renesas_calling_convention): Fix handling of
308 TYPE_CALLING_CONVENTION annotation.
309
310 2012-02-16 Kevin Buettner <kevinb@redhat.com>
311
312 * MAINTAINERS: Add rx to target ISA section.
313 * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o.
314 (ALLDEPFILES): Add rx-tdep.c.
315
316 2012-02-16 Tom Tromey <tromey@redhat.com>
317
318 * symfile.c (symbol_file_add_main_1): Use inferior's
319 symfile_flags.
320 * solib.c (solib_read_symbols): Use inferior's symfile_flags.
321 * linux-nat.c (linux_child_follow_fork): Set symfile_flags on
322 inferior.
323 * infrun.c (handle_vfork_child_exec_or_exit): Set symfile_flags on
324 inferior.
325 (follow_exec): Use inferior's symfile_flags.
326 * inferior.h (struct inferior) <symfile_flags>: New field.
327
328 2012-02-16 Mike Frysinger <vapier@gentoo.org>
329
330 PR gdb/9734:
331 * remote-sim.c (gdbsim_create_inferior): Call error() when
332 sim_create_inferior() fails.
333
334 2012-02-16 Josh Matthews <josh@joshmatthews.net>
335
336 * machoread.c: Initialize nbr_syms to avoid warnings-as-errors failure.
337
338 2012-02-16 Tom Tromey <tromey@redhat.com>
339
340 PR c++/13653:
341 * thread.c (struct current_thread_cleanup) <was_removable>: New
342 field.
343 (restore_current_thread_cleanup_dtor): Restore 'removable' field.
344 (make_cleanup_restore_current_thread): Initialize new field.
345
346 2012-02-15 Kevin Buettner <kevinb@redhat.com>
347
348 * MAINTAINERS: Add rl78 to target ISA section.
349 * Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o.
350 (ALLDEPFILES): Add rl78-tdep.c.
351 * NEWS: Mention rl78 as a new target.
352
353 2012-02-15 Aleksandar Ristovski <aristovski@qnx.com>
354
355 * frame.c (find_frame_sal): Initialize sal->pspace field from frame
356 data.
357 * stack.c (set_last_displayed_sal): Validate that PSPACE is not NULL.
358
359 2012-02-15 Tom Tromey <tromey@redhat.com>
360
361 PR gdb/12659:
362 * infcmd.c (registers_info): Print just the current register's
363 name.
364
365 2012-02-15 Tom Tromey <tromey@redhat.com>
366
367 * python/py-symbol.c (sympy_value): Use _().
368
369 2012-02-15 Pedro Alves <palves@redhat.com>
370
371 * remote.c (remote_detach_1, extended_remote_attach_1): Tweak
372 output to be like native targets'.
373 (remote_pid_to_str): Special case the null ptid.
374
375 2012-02-14 Stan Shebs <stan@codesourcery.com>
376
377 * NEWS: Mention enable count command.
378 * breakpoint.h (struct breakpoint): New field enable_count.
379 * breakpoint.c (enable_breakpoint_disp): Add count argument.
380 (enable_breakpoint): Add arg to call.
381 (struct disp_data): New struct.
382 (do_enable_breakpoint_disp): Interp arg as disp_data and unpack.
383 (do_map_enable_once_breakpoint): Create a struct and pass it.
384 (do_map_enable_delete_breakpoint): Ditto.
385 (do_map_enable_count_breakpoint): New function.
386 (enable_count_command): New function.
387 (bpstat_stop_status): Decrement enable_count.
388 (print_one_breakpoint_location): Report enable count.
389 (_initialize_breakpoint): Add enable count command.
390
391 2012-02-14 Kevin Buettner <kevinb@redhat.com>
392
393 * rl78-tdep.c (reggroups.h): Include.
394 (RL78_RAW_BANK0_R0_REGNUM, RL78_RAW_BANK0_R1_REGNUM)
395 (RL78_RAW_BANK0_R2_REGNUM, RL78_RAW_BANK0_R3_REGNUM)
396 (RL78_RAW_BANK0_R4_REGNUM, RL78_RAW_BANK0_R5_REGNUM)
397 (RL78_RAW_BANK0_R6_REGNUM, RL78_RAW_BANK0_R7_REGNUM)
398 (RL78_RAW_BANK1_R0_REGNUM, RL78_RAW_BANK1_R1_REGNUM)
399 (RL78_RAW_BANK1_R2_REGNUM, RL78_RAW_BANK1_R3_REGNUM)
400 (RL78_RAW_BANK1_R4_REGNUM, RL78_RAW_BANK1_R5_REGNUM)
401 (RL78_RAW_BANK1_R6_REGNUM, RL78_RAW_BANK1_R7_REGNUM)
402 (RL78_RAW_BANK2_R0_REGNUM, RL78_RAW_BANK2_R1_REGNUM)
403 (RL78_RAW_BANK2_R2_REGNUM, RL78_RAW_BANK2_R3_REGNUM)
404 (RL78_RAW_BANK2_R4_REGNUM, RL78_RAW_BANK2_R5_REGNUM)
405 (RL78_RAW_BANK2_R6_REGNUM, RL78_RAW_BANK2_R7_REGNUM)
406 (RL78_RAW_BANK3_R0_REGNUM, RL78_RAW_BANK3_R1_REGNUM)
407 (RL78_RAW_BANK3_R2_REGNUM, RL78_RAW_BANK3_R3_REGNUM)
408 (RL78_RAW_BANK3_R4_REGNUM, RL78_RAW_BANK3_R5_REGNUM)
409 (RL78_RAW_BANK3_R6_REGNUM, RL78_RAW_BANK3_R7_REGNUM): Add to
410 beginning of register list.
411 (RL78_BANK0_R0_REGNUM, RL78_BANK0_R1_REGNUM, RL78_BANK0_R2_REGNUM)
412 (RL78_BANK0_R3_REGNUM, RL78_BANK0_R4_REGNUM, RL78_BANK0_R5_REGNUM)
413 (RL78_BANK0_R6_REGNUM, RL78_BANK0_R7_REGNUM, RL78_BANK1_R0_REGNUM)
414 (RL78_BANK1_R1_REGNUM, RL78_BANK1_R2_REGNUM, RL78_BANK1_R3_REGNUM)
415 (RL78_BANK1_R4_REGNUM, RL78_BANK1_R5_REGNUM, RL78_BANK1_R6_REGNUM)
416 (RL78_BANK1_R7_REGNUM, RL78_BANK2_R0_REGNUM, RL78_BANK2_R1_REGNUM)
417 (RL78_BANK2_R2_REGNUM, RL78_BANK2_R3_REGNUM, RL78_BANK2_R4_REGNUM)
418 (RL78_BANK2_R5_REGNUM, RL78_BANK2_R6_REGNUM, RL78_BANK2_R7_REGNUM)
419 (RL78_BANK3_R0_REGNUM, RL78_BANK3_R1_REGNUM, RL78_BANK3_R2_REGNUM)
420 (RL78_BANK3_R3_REGNUM, RL78_BANK3_R4_REGNUM, RL78_BANK3_R5_REGNUM)
421 (RL78_BANK3_R6_REGNUM, RL78_BANK3_R7_REGNUM): Move these into
422 the pseudo registers. Rearrange other pseudo registers too so
423 that the bank registers appear at the end.
424 (rl78_register_type): Account for the fact that the byte sized
425 bank registers are now pseudo-registers.
426 (rl78_register_name): Rearrange the register name array. Make
427 initial set of raw banked registers inaccessible.
428 (rl78_register_reggroup_p, rl78_register_sim_regno): New functions.
429 (rl78_pseudo_register_read, rl78_pseudo_register_write): Add
430 case for copying bytes back and forth between raw and pseudo
431 versions of the banked registers. Update other cases to reflect
432 the changed names.
433 (rl78_return_value): Update to account for changed names of
434 raw registers.
435 (rl78_gdbarch_init): Register rl78_register_reggroup_p() and
436 rl78_register_sim_regno().
437
438 2012-02-14 Kevin Buettner <kevinb@redhat.com>
439
440 * rl78-tdep.c (rl78_skip_prologue): Make `const' the type of
441 the name parameter being passed to find_pc_partial_function().
442
443 2012-02-14 Jan Kratochvil <jan.kratochvil@redhat.com>
444
445 * MAINTAINERS: Step down from being ia64 target maintainer.
446
447 2012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
448
449 * ppc-linux-nat.c (fetch_register, store_register): Fix GCC aliasing
450 compilation warning.
451
452 2012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
453
454 Fix crash on loaded shlibs without loaded exec_bfd.
455 * exec.c (exec_files_info): Do not crash on NULL EXEC_BFD.
456 (set_section_command): Replace exec_bfd by p->bfd.
457
458 2012-02-10 Tom Tromey <tromey@redhat.com>
459
460 * linespec.c (decode_line_internal): Skip symtabs_from_filename
461 when we have a C++ qualified name.
462
463 2012-02-10 Pedro Alves <palves@redhat.com>
464
465 * inferior.c (inferior_pid_to_str): New.
466 (print_inferior, inferior_command): Use it.
467
468 2012-02-10 Pedro Alves <palves@redhat.com>
469
470 * configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of
471 the test CFLAGS.
472 * configure: Regenerate.
473
474 2012-02-10 Jan Kratochvil <jan.kratochvil@redhat.com>
475
476 * linespec.c (decode_line_internal): Fix comment correctness.
477
478 2012-02-09 Valery Khromov <valery.khromov@gmail.com>
479
480 PR gdb/12953
481 * Makefile.in (HFILES_NO_SRCDIR): Add amd64bsd-nat.h.
482 * amd64bsd-nat.c: Add support for debug registers (adapted from
483 i386bsd-nat.c).
484 [HAVE_PT_GETDBREGS] (amd64bsd_dr_get, amd64bsd_dr_set)
485 (amd64bsd_dr_set_control, amd64bsd_dr_set_addr)
486 (amd64bsd_dr_get_addr, amd64bsd_dr_get_status)
487 (amd64bsd_dr_get_control): New functions.
488 * amd64bsd-nat.h: New file (adapted from i386bsd-nat.h).
489 * amd64fbsd-nat.c: Include "amd64bsd-nat.h", "i386-nat.h".
490 [HAVE_PT_GETDBREGS] (_initialize_amd64fbsd_nat): Add hardware
491 watchpoints initialization.
492 * config/i386/fbsd64.mh (NATDEPFILES): Add i386-nat.o.
493
494 2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
495
496 * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print
497 flds_bnds.fields.
498 (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
499
500 2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
501
502 * breakpoint.c (bp_location_compare): Fix comment. Reindent the code.
503
504 2012-02-08 Joel Brobecker <brobecker@adacore.com>
505
506 * language.h (symbol_name_cmp_ftype): Renames
507 symbol_name_match_p_ftype.
508 (struct language_defn)[la_get_symbol_name_cmp]: Renames
509 la_get_symbol_name_match_p.
510 * ada-lang.c (ada_get_symbol_name_cmp): Renames
511 ada_get_symbol_name_match_p. Update comment.
512 (ada_language_defn)[la_get_symbol_name_cmp]: Update value.
513 * linespec.c (struct symbol_matcher_data)[symbol_name_cmp]:
514 Renames symbol_name_match_p. Update field type.
515 (iterate_name_matcher, iterate_over_all_matching_symtabs): Adjust.
516 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
517 opencl-lang.c, p-lang.c: Replace "la_get_symbol_name_match_p" by
518 "la_get_symbol_name_cmp" in comments.
519 * language.c: Likewise.
520
521 2012-02-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
522
523 * amd64-sol2-tdep.c (amd64_sol2_gregset_reg_offset): Correct
524 %eflags offset.
525 * i386-sol2-nat.c (amd64_sol2_gregset64_reg_offs)
526 (amd64_sol2_gregset32_reg_offs): Likewise.
527
528 2012-02-08 Joel Brobecker <brobecker@adacore.com>
529
530 * solib-darwin.c (darwin_bfd_open): Make sure that the filename
531 of the returned BFD is allocated by GDB.
532
533 2012-02-07 Tom Tromey <tromey@redhat.com>
534
535 PR python/12027:
536 * python/python-internal.h (frame_object_type): Declare.
537 * python/py-symbol.c (sympy_needs_frame): New function.
538 (sympy_value): New function.
539 (symbol_object_getset): Add "needs_frame".
540 (symbol_object_methods): Add "value".
541 * python/py-frame.c (frame_object_type): No longer static.
542
543 2012-02-07 Tom Tromey <tromey@redhat.com>
544
545 PR python/13599:
546 * python/py-symbol.c (sympy_line): New function.
547 (symbol_object_getset): Add "line".
548
549 2012-02-07 Tom Tromey <tromey@redhat.com>
550
551 * charset.c (find_charset_names): Check 'in' against NULL.
552
553 2012-02-06 Doug Evans <dje@google.com>
554
555 * gdbtypes.h (struct main_type): Change type of name,tag_name,
556 and fields.name members from char * to const char *. All uses updated.
557 (struct cplus_struct_type): Change type of fn_fieldlists.name member
558 from char * to const char *. All uses updated.
559 (type_name_no_tag): Update.
560 (lookup_unsigned_typename, lookup_signed_typename): Update.
561 * gdbtypes.c (type_name_no_tag): Change result type
562 from char * to const char *. All callers updated.
563 (lookup_unsigned_typename, lookup_signed_typename): Change type of
564 name parameter from char * to const char *.
565 * symtab.h (struct cplus_specific): Change type of demangled_name
566 member from char * to const char *. All uses updated.
567 (struct general_symbol_info): Change type of name and
568 mangled_lang.demangled_name members from char * to const char *.
569 All uses updated.
570 (symbol_get_demangled_name, symbol_natural_name): Update.
571 (symbol_demangled_name, symbol_search_name): Update.
572 * symtab.c (symbol_get_demangled_name): Change result type
573 from char * to const char *. All callers updated.
574 (symbol_natural_name, symbol_demangled_name): Ditto.
575 (symbol_search_name): Ditto.
576 (completion_list_add_name): Change type of symname,sym_text,
577 text,word parameters from char * to const char *.
578 (completion_list_objc_symbol): Change type of sym_text,
579 text,word parameters from char * to const char *.
580 * ada-lang.c (find_struct_field): Change type of name parameter
581 from char * to const char *.
582 (encoded_ordered_before): Similarly for N0,N1 parameters.
583 (old_renaming_is_invisible): Similarly for function_name parameter.
584 (ada_type_name): Change result type from char * to const char *.
585 All callers updated.
586 * ada-lang.h (ada_type_name): Update.
587 * buildsym.c (hashname): Change type of name parameter
588 from char * to const char *.
589 * buildsym.h (hashname): Update.
590 * dbxread.c (end_psymtab): Change type of include_list parameter
591 from char ** to const char **.
592 * dwarf2read.c (determine_prefix): Change result type
593 from char * to const char *. All callers updated.
594 * f-lang.c (find_common_for_function): Change type of name, funcname
595 parameters from char * to const char *.
596 * f-lang.c (find_common_for_function): Update.
597 * f-valprint.c (list_all_visible_commons): Change type of funcname
598 parameters from char * to const char *.
599 * gdbarch.sh (static_transform_name): Change type of name parameter
600 and result from char * to const char *.
601 * gdbarch.c: Regenerate.
602 * gdbarch.h: Regenerate.
603 * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type
604 of name parameter from char * to const char *.
605 * jv-lang.c (java_primitive_type_from_name): Ditto.
606 (java_demangled_signature_length): Similarly for signature parameter.
607 (java_demangled_signature_copy): Ditto.
608 (java_demangle_type_signature): Ditto.
609 * jv-lang.h (java_primitive_type_from_name): Update.
610 (java_demangle_type_signature): Update.
611 * objc-lang.c (specialcmp): Change type of a,b parameters
612 from char * to const char *.
613 * p-lang.c (is_pascal_string_type): Change type of arrayname parameter
614 from char * to const char *. All callers updated.
615 * p-lang.h (is_pascal_string_type): Update.
616 * solib-frv.c (find_canonical_descriptor_in_load_object): Change type
617 of name parameter from char * to const char *.
618 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto.
619 * utils.c (fprintf_symbol_filtered): Ditto.
620 * defs.h (fprintf_symbol_filtered): Update.
621 * sparc-tdep.h (sparc_sol2_static_transform_name): Update.
622 * stabsread.h (end_psymtab): Update.
623 * stack.c (find_frame_funname): Change type of funname parameter
624 from char ** to const char **.
625 * stack.h (find_frame_funname): Update.
626 * typeprint.c (type_print): Change type of varstring parameter
627 from char * to const char *.
628 * value.h (type_print): Update.
629 * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter
630 from char * to const char *. All callers updated.
631 (xcoff_end_psymtab): Change type of include_list parameter
632 from char ** to const char **. All callers updated.
633 (swap_sym): Similarly for name parameter. All callers updated.
634 * coffread.c (patch_type): Add (char*) cast to xfree parameter.
635 Use xstrdup.
636 (process_coff_symbol): Use xstrdup.
637 * stabsread.c (stabs_method_name_from_physname): Renamed from
638 update_method_name_from_physname. Change result type from void
639 to char *. All callers updated.
640 (read_member_functions): In has_destructor case, store name in objfile
641 obstack instead of malloc space. In !has_stub case, fix mem leak.
642
643 2012-02-06 Luca Pizzamiglio <luca.pizzamiglio@gmail.com>
644
645 * configure: Rebuild.
646 * configure.ac: Put -L../bfd and -L../libiberty at the front of
647 LDFLAGS.
648
649 2012-02-03 Kevin Buettner <kevinb@redhat.com>
650
651 * configure.tgt (rl78-*-elf): New target.
652 * rl78-tdep.c: New file.
653
654 2012-02-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
655
656 * remote.c (remote_rcmd): Use getpkt_sane to detect timeout
657 and continue the loop. Add QUIT statement.
658
659 2012-02-03 Tom Tromey <tromey@redhat.com>
660
661 PR gdb/13596:
662 * solib.h (gdb_bfd_lookup_symbol_from_symtab): Rename from
663 bfd_lookup_symbol_from_symtab.
664 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
665 gdb_bfd_lookup_symbol_from_symtab.
666
667 2012-02-03 Joel Brobecker <brobecker@adacore.com>
668
669 * mi/mi-cmd-stack.c (list_args_or_locals): For argument symbols,
670 use SYMBOL_LINKAGE_NAME to find the corresponding non-argument
671 symbol. Add assertion that sym2 is never NULL.
672
673 2012-02-02 Doug Evans <dje@google.com>
674
675 * blockframe.c (find_pc_partial_function_gnu_ifunc): Change type of
676 "name" parameter to const char ** from char **. All callers updated.
677 (find_pc_partial_function): Ditto.
678 (cache_pc_function_name): Change type to const char * from char *.
679 * symtab.h ((find_pc_partial_function_gnu_ifunc): Update.
680 (find_pc_partial_function): Update.
681 * alpha-tdep.h (struct gdbarch_tdep, member pc_in_sigtramp): Change
682 type of "name" parameter to const char * from char *.
683 All uses updated.
684 * arch-utils.c (generic_in_solib_return_trampoline): Change
685 type of "name" parameter to const char * from char *.
686 * arch-utils.h (generic_in_solib_return_trampoline): Update.
687 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Change
688 type of "name" parameter to const char * from char *.
689 * gdbarch.sh (in_solib_return_trampoline): Ditto.
690 * gdbarch.c: Regenerate.
691 * gdbarch.h: Regenerate.
692 * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Update.
693 * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Update.
694 * m32r-linux-tdep.c (m32r_linux_pc_in_sigtramp): Change
695 type of "name" parameter to const char * from char *.
696 * skip.c (skip_function_pc): Ditto.
697 * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Ditto.
698 * sparc-tdep.h (sparc_sol2_pc_in_sigtramp): Update.
699 * sparc64fbsd-tdep.c (sparc64fbsd_pc_in_sigtramp): Ditto.
700 * sparc64nbsd-tdep.c (sparc64nbsd_pc_in_sigtramp): Ditto.
701 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Ditto.
702 * sparcnbsd-tdep.c (sparc32nbsd_pc_in_sigtramp): Ditto.
703 * sparcobsd-tdep.c (sparc32obsd_pc_in_sigtramp): Ditto.
704 * nbsd-tdep.c (nbsd_pc_in_sigtramp): Similary for "func_name".
705 * nbsd-tdep.h (nbsd_pc_in_sigtramp): Update.
706
707 2012-02-02 Pedro Alves <palves@redhat.com>
708
709 * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if
710 the current inferior has no execution. Make sure the current
711 remote process matches gdb's current inferior.
712
713 2012-02-02 Tom Tromey <tromey@redhat.com>
714
715 PR gdb/13405:
716 * tui/tui-win.c (parse_scrolling_args): Don't write to possibly
717 read-only memory.
718
719 2012-02-02 Tom Tromey <tromey@redhat.com>
720
721 PR gdb/9307:
722 * symtab.c (lookup_language_this): Set block_found.
723
724 2012-02-01 Tom Tromey <tromey@redhat.com>
725
726 PR gdb/13431:
727 * jit.c (struct jit_inferior_data): Rewrite.
728 (struct jit_objfile_data): New.
729 (get_jit_objfile_data): New function.
730 (add_objfile_entry): Update.
731 (jit_read_descriptor): Return int. Replace descriptor_addr
732 argument with inf_data. Update. Don't call error.
733 (jit_breakpoint_re_set_internal): Reorder logic. Update. Look up
734 descriptor here.
735 (jit_inferior_init): Don't look up descriptor. Don't call error.
736 (jit_reset_inferior_data_and_breakpoints)
737 (jit_inferior_created_observer): Remove.
738 (jit_inferior_exit_hook): Update.
739 (jit_executable_changed_observer): Remove.
740 (jit_event_handler): Update.
741 (free_objfile_data): Reset inferior data if needed.
742 (_initialize_jit): Update.
743
744 2012-02-01 Tom Tromey <tromey@redhat.com>
745
746 * jit.c (bfd_open_from_target_memory): Move higher in file.
747
748 2012-02-01 Tristan Gingold <gingold@adacore.com>
749
750 * libunwind-frame.c (libunwind_load): Display message if dlopen
751 failed.
752
753 2012-02-01 Gary Benson <gbenson@redhat.com>
754
755 * symtab.h (symbol_name_match_p_ftype): New typedef.
756 (iterate_over_symbols): Use the above.
757 * symtab.c (iterate_over_symbols): Likewise.
758 * language.h (language_defn->la_iterate_over_symbols): Likewise.
759 * ada-lang.c (ada_iterate_over_symbols): Likewise.
760 * linespec.c (iterate_over_all_matching_symtabs): Likewise.
761 (iterate_name_matcher): Document return values.
762 (collect_one_symbol): Likewise.
763 (collect_function_symbols): Likewise.
764 (collect_symbols): Likewise.
765
766 2012-02-01 Tom Tromey <tromey@redhat.com>
767
768 * ada-lang.c (resolve_subexp): Update.
769 (ada_lookup_symbol_list): Add 'full_search' argument.
770 (ada_iterate_over_symbols): Pass 0 as full_search argument to
771 ada_lookup_symbol_list.
772 (ada_lookup_encoded_symbol): Update.
773 (get_var_value): Update.
774 * ada-exp.y (block_lookup): Update.
775 (write_var_or_type): Update.
776 (write_name_assoc): Update.
777 * ada-lang.h (ada_lookup_symbol_list): Update.
778
779 2012-01-31 Tom Tromey <tromey@redhat.com>
780
781 * language.h (struct language_defn) <la_iterate_over_symbols>: Fix
782 comment.
783
784 2012-01-31 Doug Evans <dje@google.com>
785
786 * symtab.h: Remove outdated comment.
787 (SYMBOL_MATCHES_NATURAL_NAME): Delete.
788
789 2012-02-01 Josh Matthews <josh@joshmatthews.net> (tiny change)
790
791 Fix build error in Darwin port.
792 * i386-darwin-nat.c: Include i386-nat.h.
793
794 2012-01-30 Tom Tromey <tromey@redhat.com>
795
796 PR breakpoints/13568:
797 * dwarf2read.c (dwarf_decode_macro_bytes): Add 'include_hash'
798 argument. Check for recursive includes.
799 (dwarf_decode_macros): Create an include hash.
800
801 2012-01-30 Michael Eager <eager@eagercon.com>
802
803 * configure.tgt (powerpc-*-linux*): Add glibc-tdep.o.
804 * ppc-linux-tdep.c: Include glibc-tdep.h.
805 (powerpc32_plt_stub, powerpc32_plt_stub_so): Add PLT stub templates.
806 (powerpc_linux_in_plt_stub): New function.
807 (powerpc_linux_in_dynsym_resolve_code): New function.
808 (ppc_skip_trampoline_code): New function.
809 (ppc_linux_init_abi): Use PPC specific functions rather than generic.
810 Use glibc_skip_solib_resolver.
811
812 2012-01-28 Jan Kratochvil <jan.kratochvil@redhat.com>
813
814 Code cleanup: Make 1440 bytes of data segment read-only.
815 * arch-utils.c (endian_enum): Make it const char *const [].
816 * arm-tdep.c (fp_model_strings, arm_abi_strings, arm_mode_strings):
817 Likewise.
818 * breakpoint.c (always_inserted_enums): Likewise.
819 * cli/cli-cmds.c (script_ext_enums): Likewise.
820 * cli/cli-decode.c (add_setshow_enum_cmd, complete_on_enum): Make the
821 enumlist parameter const char *const *.
822 * cli/cli-decode.h (struct cmd_list_element): Make the enums field
823 const char *const *.
824 * command.h (complete_on_enum, add_setshow_enum_cmd): Make the enumlist
825 parameter const char *const *.
826 * cris-tdep.c (cris_modes): Make it const char *const [].
827 * filesystem.c (target_file_system_kinds): Likewise.
828 * i386-tdep.c (valid_flavors, valid_conventions): Likewise.
829 * infrun.c (follow_fork_mode_kind_names, follow_exec_mode_names)
830 (can_use_displaced_stepping_enum, scheduler_enums)
831 (exec_direction_names): Likewise.
832 * language.c (_initialize_language): Make the type_or_range_names and
833 case_sensitive_names variables const char *const [].
834 * mips-tdep.c (mips_abi_strings): Make it const char *const [].
835 * python/python.c (python_excp_enums): Likewise.
836 * remote.c (interrupt_sequence_modes): Likewise.
837 * rs6000-tdep.c (powerpc_vector_strings): Likewise.
838 * serial.c (logbase_enums): Likewise.
839 * sh-tdep.c (sh_cc_enum): Likewise.
840 * stack.c (print_frame_arguments_choices, print_entry_values_choices):
841 Likewise.
842 * symtab.c (multiple_symbols_modes): Likewise.
843 * tui/tui-win.c (tui_border_kind_enums, tui_border_mode_enums):
844 Likewise.
845 * utils.c (internal_problem_modes): Likewise.
846
847 2012-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
848
849 Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
850 * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
851 result.
852
853 2012-01-27 Doug Evans <dje@google.com>
854
855 * configure.ac (with_python): Fix absolute path handling for win32.
856 * configure: Regenerate.
857
858 2012-01-26 Doug Evans <dje@google.com>
859
860 * symtab.c: Whitespace cleanup, no code changes.
861
862 * symtab.c (lookup_symbol_in_language): Improve comment.
863 (lookup_symbol_aux): Fix comment.
864
865 * psymtab.c (add_psymbol_to_list): Result is now "void".
866 * psympriv.h (add_psymbol_to_list): Update.
867
868 * dwarf2read.c (add_partial_symbol): Delete local psym, unused.
869
870 2012-01-26 Jan Kratochvil <jan.kratochvil@redhat.com>
871
872 Do not open script filenames twice.
873 * cli/cli-cmds.c (source_script_from_stream): Pass to
874 source_python_script also STREAM.
875 * python/py-auto-load.c (source_section_scripts): Pass to
876 source_python_script_for_objfile also STREAM.
877 (auto_load_objfile_script): Pass to source_python_script_for_objfile
878 also INPUT.
879 * python/python-internal.h (source_python_script_for_objfile): New
880 parameter file, rename parameter file to filename.
881 * python/python.c (python_run_simple_file): Call PyRun_SimpleFile
882 instead if !_WIN32. Update the function comment.
883 (source_python_script, source_python_script_for_objfile)
884 (source_python_script): New parameter file, rename parameter file to
885 filename. Pass FILENAME to python_run_simple_file.
886 * python/python.h (source_python_script): New parameter file, rename
887 parameter file to filename.
888
889 2012-01-26 Pedro Alves <palves@redhat.com>
890
891 * corelow.c (core_has_fake_pid): Delete.
892 (core_close): Delete references to `core_has_fake_pid'.
893 (add_to_thread_list): Adjust to mark the inferior's pid as fake.
894 (core_open): Delete references to `core_has_fake_pid'.
895 (core_pid_to_str): Adjust to check inferior->fake_pid_p instead of
896 the removed global.
897
898 2012-01-26 Joel Brobecker <brobecker@adacore.com>
899
900 * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]:
901 Remove language parameter from name_matcher. Adjust the comment.
902 * symtab.c (search_symbols_name_matches, expand_partial_symbol_name):
903 Remove language parameter.
904 * ada-lang.c (ada_expand_partial_symbol_name): Likewise.
905 * linespec.c (iterate_name_matcher): Likewise.
906 * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of
907 name_matcher. Adjust call accordingly.
908 * psymtab.c (expand_symtabs_matching_via_partial): Likewise.
909 (maintenance_check_symtabs): Adjust type of parameter "fun".
910 * psymtab.h (maintenance_check_symtabs): Likewise.
911
912 2012-01-26 Joel Brobecker <brobecker@adacore.com>
913
914 * language.h (symbol_name_match_p_ftype): New typedef.
915 (struct language_defn): Replace field la_symbol_name_compare
916 by la_get_symbol_name_match_p.
917 * ada-lang.c (ada_get_symbol_name_match_p): New function.
918 (ada_language_defn): Use it.
919 * linespec.c (struct symbol_matcher_data): New type.
920 (iterate_name_matcher): Rewrite.
921 (iterate_over_all_matching_symtabs): Pass a pointer to
922 a symbol_matcher_data struct to expand_symtabs_matching
923 instead of just the lookup name.
924 * c-lang.c, d-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
925 opencl-lang.c, p-lang.c, language.c: Delete field
926 la_symbol_name_compare, and replace by NULL for new field
927 la_get_symbol_name_match_p.
928 * symfile.h (struct quick_symbol_functions): Update comment.
929
930 2012-01-25 Tom Tromey <tromey@redhat.com>
931
932 * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before
933 dereferencing.
934
935 2012-01-24 Tom Tromey <tromey@redhat.com>
936
937 PR symtab/12406:
938 * solib.c (update_solib_list): Update the program space's
939 added_solibs and deleted_solibs fields.
940 * progspace.h (struct program_space) <added_solibs,
941 deleted_solibs>: New fields.
942 (clear_program_space_solib_cache): Declare.
943 * progspace.c (release_program_space): Call
944 clear_program_space_solib_cache.
945 (clear_program_space_solib_cache): New function.
946 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>: Call
947 bpstat_stop_status. Use handle_solib_event.
948 * breakpoint.c: Include gdb_regex.h.
949 (print_solib_event): New function.
950 (bpstat_print): Use print_solib_event.
951 (bpstat_stop_status): Add special case for bp_shlib_event.
952 (handle_solib_event): New function.
953 (bpstat_what): Use handle_solib_event.
954 (struct solib_catchpoint): New.
955 (dtor_catch_solib, insert_catch_solib, remove_catch_solib)
956 (breakpoint_hit_catch_solib, check_status_catch_solib)
957 (print_it_catch_solib, print_one_catch_solib)
958 (print_mention_catch_solib, print_recreate_catch_solib): New
959 functions.
960 (catch_solib_breakpoint_ops): New global.
961 (catch_load_or_unload, catch_load_command_1)
962 (catch_unload_command_1): New functions.
963 (internal_bkpt_check_status): Add special case for
964 bp_shlib_event.
965 (internal_bkpt_print_it): Use print_solib_event.
966 (initialize_breakpoint_ops): Initialize
967 catch_solib_breakpoint_ops.
968 (_initialize_breakpoint): Register "catch load" and "catch
969 unload".
970 * breakpoint.h (handle_solib_event): Declare.
971 * NEWS: Add entry for "catch load" and "catch unload".
972
973 2012-01-24 Tom Tromey <tromey@redhat.com>
974
975 * ada-lang.c: Include gdb_vecs.h.
976 * charset.c: Include gdb_vecs.h.
977 * tracepoint.h: Include gdb_vecs.h.
978 * gdb_vecs.h: New file.
979
980 2012-01-24 Pedro Alves <pedro@codesourcery.com>
981
982 * breakpoint.c (breakpoint_hit_catch_fork)
983 (breakpoint_hit_catch_vfork, breakpoint_hit_catch_syscall)
984 (breakpoint_hit_catch_exec): Make use of the `ws' argument.
985 * infrun.c (inferior_has_forked, inferior_has_vforked)
986 (inferior_has_execd, inferior_has_called_syscall): Delete.
987 (handle_syscall_event): Get syscall_number from the execution
988 control state's wait status.
989 (wait_for_inferior): Don't clear syscall_number.
990
991 2012-01-24 Pedro Alves <palves@redhat.com>
992
993 * breakpoint.c (bpstat_check_location, bpstat_stop_status,
994 pc_at_non_inline_function): Add `ws' parameter, and pass it down.
995 (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork)
996 (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add
997 `ws' parameter.
998 (breakpoint_hit_ranged_breakpoint): Add `ws' parameter. Return
999 false for events other than TARGET_SIGNAL_TRAP.
1000 (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit):
1001 Add `ws' parameter.
1002 (bkpt_breakpoint_hit): Add `ws' parameter. Return false for
1003 events other than TARGET_SIGNAL_TRAP.
1004 (tracepoint_breakpoint_hit): Add `ws' parameter.
1005 * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws'
1006 parameter.
1007 (bpstat_stop_status): Same.
1008 (pc_at_non_inline_function): Same.
1009 * infrun.c (handle_syscall_event, handle_inferior_event): Adjust
1010 to pass the current event's waitstatus to bpstat_stop_status
1011 and pc_at_non_inline_function.
1012
1013 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1014
1015 Code cleanup.
1016 * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM.
1017 Update the function comment for it.
1018 (source_script_with_search): Call make_cleanup_fclose for STREAM.
1019 * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose
1020 for STREAM.
1021
1022 2012-01-24 Pedro Alves <palves@redhat.com>
1023
1024 * breakpoint.c (bpstat_stop_status): Moving clearing print_it
1025 outside `bs->stop' block.
1026 (bpstat_what): Rework bp_shlib_event handling.
1027 (internal_bkpt_check_status): If the breakpoint is a
1028 bp_shlib_event, then set bs->stop and bs->print if
1029 stop_on_solib_events is set.
1030
1031 2012-01-24 Gary Benson <gbenson@redhat.com>
1032
1033 Delete #if 0'd out code.
1034 * stack.c (print_frame_label_vars): Remove.
1035 (catch_info): Likewise.
1036 (_initialize_stack): Remove "info catch" command.
1037 * NEWS: Mention the above.
1038
1039 2012-01-24 Pedro Alves <palves@redhat.com>
1040
1041 * remote.c (remote_add_inferior): New `fake_pid_p' parameter. Use
1042 it.
1043 (remote_notice_new_inferior): If the remote end doesn't support
1044 the multiprocess extensions, then the PID is fake.
1045 (add_current_inferior_and_thread): New.
1046 (remote_start_remote): Use it.
1047 (extended_remote_attach_1): Adjust.
1048 (extended_remote_create_inferior_1): Use
1049 add_current_inferior_and_thread.
1050
1051 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1052
1053 Fix watchpoints to be specific for each inferior.
1054 * breakpoint.c (watchpoint_in_thread_scope): Verify also
1055 current_program_space.
1056 * i386-nat.c (i386_inferior_data_cleanup): New.
1057 (i386_inferior_data_get): Replace variable inf_data_local by an
1058 inferior_data call.
1059 (i386_use_watchpoints): Initialize i386_inferior_data.
1060 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID
1061 specific iterate_over_lwps.
1062
1063 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1064
1065 Fix watchpoints across inferior fork.
1066 * amd64-linux-nat.c (update_debug_registers_callback): Update the
1067 comment for linux_nat_iterate_watchpoint_lwps.
1068 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
1069 linux_nat_iterate_watchpoint_lwps.
1070 (amd64_linux_prepare_to_resume): New comment on Linux kernel.
1071 * i386-linux-nat.c (update_debug_registers_callback): Update the
1072 comment for linux_nat_iterate_watchpoint_lwps.
1073 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
1074 linux_nat_iterate_watchpoint_lwps.
1075 (i386_linux_prepare_to_resume): New comment on Linux kernel.
1076 * i386-nat.c: Include inferior.h.
1077 (dr_mirror): Remove.
1078 (i386_inferior_data, struct i386_inferior_data)
1079 (i386_inferior_data_get): New.
1080 (i386_debug_reg_state): Use i386_inferior_data_get.
1081 (i386_cleanup_dregs, i386_update_inferior_debug_regs)
1082 (i386_insert_watchpoint, i386_remove_watchpoint)
1083 (i386_stopped_data_address, i386_insert_hw_breakpoint)
1084 (i386_remove_hw_breakpoint): New variable state, use
1085 i386_debug_reg_state instead of DR_MIRROR.
1086 * linux-nat.c (delete_lwp): New declaration.
1087 (num_lwps): Move here from downwards.
1088 (delete_lwp_cleanup): New.
1089 (linux_child_follow_fork): Create new child_lp, call
1090 linux_nat_new_thread and linux_nat_prepare_to_resume before calling
1091 PTRACE_DETACH.
1092 (num_lwps): Move upwards.
1093 (linux_nat_iterate_watchpoint_lwps): New.
1094 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New.
1095 (linux_nat_iterate_watchpoint_lwps_ftype): New declaration.
1096
1097 2012-01-24 Joel Brobecker <brobecker@adacore.com>
1098
1099 GDB 7.4 released.
1100
1101 2012-01-23 Pedro Alves <palves@redhat.com>
1102
1103 * top.c (caution): Rename to ...
1104 (confirm): ... this.
1105 (show_caution): Rename to ...
1106 (show_confirm): ... this.
1107 (quit_cover): Adjust.
1108 (init_main): Adjust.
1109 * top.h (caution): Rename to ...
1110 (confirm): ... this.
1111 * utils.c (internal_vproblem, defaulted_query): Adjust.
1112
1113 2012-01-23 Pedro Alves <palves@redhat.com>
1114
1115 * top.c (caution): Update comment.
1116 (execute_command): Don't consider the current value of `caution'.
1117
1118 2012-01-23 Jan Kratochvil <jan.kratochvil@redhat.com>
1119
1120 * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen.
1121
1122 2012-01-23 Ulrich Weigand <ulrich.weigand@linaro.org>
1123
1124 * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
1125 * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning.
1126 * target.c (target_fileio_pwrite): Remove buffer address from
1127 debug output.
1128 (target_fileio_pread): Likewise.
1129
1130 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
1131
1132 * NEWS: Document remote "info proc" and "generate-core-file".
1133
1134 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
1135
1136 * gdbarch.sh (find_memory_regions): New callback.
1137 * gdbarch.c, gdbarch.h: Regenerate.
1138
1139 * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions
1140 callback before falling back to target method.
1141
1142 * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove.
1143 (linux_target_install_ops): No longer install it.
1144
1145 * linux-tdep.c (linux_find_memory_regions): New function.
1146 (linux_init_abi): Install it.
1147
1148 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
1149
1150 * gdbarch.sh (make_corefile_notes): New architecture callback.
1151 * gdbarch.c: Regenerate.
1152 * gdbarch.h: Likewise.
1153
1154 * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes
1155 before target_make_corefile_notes. If NULL is returned, the
1156 target does not support core file generation.
1157
1158 * linux-nat.c: Include "linux-tdep.h".
1159 (find_signalled_thread, find_stop_signal): Remove.
1160 (linux_nat_do_thread_registers): Likewise.
1161 (struct linux_nat_corefile_thread_data): Likewise.
1162 (linux_nat_corefile_thread_callback): Likewise.
1163 (iterate_over_spus): Likewise.
1164 (struct linux_spu_corefile_data): Likewise.
1165 (linux_spu_corefile_callback): Likewise.
1166 (linux_spu_make_corefile_notes): Likewise.
1167 (linux_nat_collect_thread_registers): New function.
1168 (linux_nat_make_corefile_notes): Replace contents by call to
1169 linux_make_corefile_notes passing linux_nat_collect_thread_registers
1170 as native-only callback.
1171
1172 * linux-tdep.h: Include "bfd.h".
1173 (struct regcache): Add forward declaration.
1174 (linux_collect_thread_registers_ftype): New typedef.
1175 (linux_make_corefile_notes): Add prototype.
1176 * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h",
1177 "regset.h", and "elf-bfd.h".
1178 (find_signalled_thread, find_stop_signal): New functions.
1179 (linux_spu_make_corefile_notes): Likewise.
1180 (linux_collect_thread_registers): Likewise.
1181 (struct linux_corefile_thread_data): New data structure.
1182 (linux_corefile_thread_callback): New funcion.
1183 (linux_make_corefile_notes): Likewise.
1184 (linux_make_corefile_notes_1): Likewise.
1185 (linux_init_abi): Install it.
1186
1187 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
1188
1189 * gdbarch.sh (info_proc): New callback.
1190 * gdbarch.c, gdbarch.h: Regenerate.
1191
1192 * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback
1193 before falling back to the target info_proc callback.
1194
1195 * linux-nat.c: Do not include "cli/cli-utils.h".
1196 (linux_nat_info_proc): Remove.
1197 (linux_target_install_ops): No longer install it.
1198
1199 * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>.
1200 (read_mapping): New function.
1201 (linux_info_proc): Likewise.
1202 (linux_init_abi): Install it.
1203
1204 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
1205
1206 * defs.h (enum info_proc_what): Moved here from linux-nat.c
1207 * infcmd.c: (info_proc_cmd_1): New function.
1208 (info_proc_cmd): New function, moved here from equivalent routine
1209 orignally in linux-nat.c.
1210 (info_proc_cmd_mappings): Likewise.
1211 (info_proc_cmd_stat): Likewise.
1212 (info_proc_cmd_status): Likewise.
1213 (info_proc_cmd_cwd): Likewise.
1214 (info_proc_cmd_cmdline): Likewise.
1215 (info_proc_cmd_exe): Likewise.
1216 (info_proc_cmd_all): Likewise.
1217 (_initialize_infcmd): Install "info proc" command and subcommands.
1218
1219 * target.h (struct target_ops): Add to_info_proc.
1220 (target_info_proc): Add prototype.
1221 * target.c (target_info_proc): New function.
1222
1223 * procfs.c (procfs_info_proc): Add prototype.
1224 (info_proc_cmd): Rename into ...
1225 (procfs_info_proc): ... this. Update argument types as appropriate
1226 for a to_info_proc implementation. Handle "what" argument.
1227 (procfs_target): Install procfs_info_proc.
1228 (_initialize_procfs): No longer install "info proc" command.
1229
1230 * linux-nat.c: (enum info_proc_what): Remove.
1231 (linux_nat_info_proc_cmd_1): Rename into ...
1232 (linux_nat_info_proc): ... this. Update argument types as appropriate
1233 for a to_info_proc implementation.
1234 (linux_nat_info_proc_cmd): Remove.
1235 (linux_nat_info_proc_cmd_mappings): Likewise.
1236 (linux_nat_info_proc_cmd_stat): Likewise.
1237 (linux_nat_info_proc_cmd_status): Likewise.
1238 (linux_nat_info_proc_cmd_cwd): Likewise.
1239 (linux_nat_info_proc_cmd_cmdline): Likewise.
1240 (linux_nat_info_proc_cmd_exe): Likewise.
1241 (linux_nat_info_proc_cmd_all): Likewise.
1242 (linux_target_install_ops): Install linux_nat_info_proc.
1243 (_initialize_linux_nat): No longer install "info proc" command
1244 and subcommands.
1245
1246 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
1247
1248 * configure.ac [AC_CHECK_FUNCS]: Check for readlink.
1249 * config.in, configure: Regenerate.
1250
1251 * target.h (struct target_ops): Add to_fileio_readlink.
1252 (target_fileio_readlink): Add prototype.
1253 * target.c (target_fileio_readlink): New function.
1254
1255 * inf-child.c: Conditionally include <sys/param.h>.
1256 (inf_child_fileio_readlink): New function.
1257 (inf_child_target): Install it.
1258
1259 * remote.c (PACKET_vFile_readlink): New enum value.
1260 (remote_hostio_readlink): New function.
1261 (init_remote_ops): Install it.
1262 (_initialize_remote): Handle vFile:readlink packet type.
1263
1264 2012-01-20 Pedro Alves <palves@redhat.com>
1265 Ulrich Weigand <ulrich.weigand@linaro.org>
1266
1267 * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite.
1268 * config.in, configure: Regenerate.
1269
1270 * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite,
1271 to_fileio_pread, to_fileio_close, to_fileio_unlink.
1272 (target_fileio_open): Add prototype.
1273 (target_fileio_pwrite): Likewise.
1274 (target_fileio_pread): Likewise.
1275 (target_fileio_close): Likewise.
1276 (target_fileio_unlink): Likewise.
1277 (target_fileio_read_alloc): Likewise.
1278 (target_fileio_read_stralloc): Likewise.
1279
1280 * target.c: Include "gdb/fileio.h".
1281 (target_read_stralloc): Accept trailing, but not embedded NUL bytes.
1282 (default_fileio_target): New function.
1283 (target_fileio_open): Likewise.
1284 (target_fileio_pwrite): Likewise.
1285 (target_fileio_pread): Likewise.
1286 (target_fileio_close): Likewise.
1287 (target_fileio_unlink): Likewise.
1288 (target_fileio_close_cleanup): Likewise.
1289 (target_fileio_read_alloc_1): Likewise.
1290 (target_fileio_read_alloc): Likewise.
1291 (target_fileio_read_stralloc): Likewise.
1292
1293 * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>,
1294 <fcntl.h>, and <unistd.h>.
1295 (inf_child_fileio_open_flags_to_host): New function.
1296 (inf_child_errno_to_fileio_error): Likewise.
1297 (inf_child_fileio_open): Likewise.
1298 (inf_child_fileio_pwrite): Likewise.
1299 (inf_child_fileio_pread): Likewise.
1300 (inf_child_fileio_close): Likewise.
1301 (inf_child_fileio_unlink): Likewise.
1302 (inf_child_target): Install to_fileio routines.
1303
1304 * remote.c (init_remote_ops): Install to_fileio routines.
1305
1306 2012-01-20 Pedro Alves <palves@redhat.com>
1307 Ulrich Weigand <ulrich.weigand@linaro.org>
1308
1309 * remote.c (remote_multi_process_p): Only check for multi-process
1310 protocol feature, do not check for extended protocol.
1311 (remote_supports_multi_process): Check for extended protocol here.
1312 (set_general_process): Likewise.
1313 (extended_remote_kill): Likewise.
1314 (remote_pid_to_str): Likewise.
1315 (remote_query_supported): Always query multiprocess mode.
1316
1317 2012-01-20 Pedro Alves <palves@redhat.com>
1318 Ulrich Weigand <ulrich.weigand@linaro.org>
1319
1320 * inferior.h (struct inferior): Add fake_pid_p.
1321 * inferior.c (exit_inferior_1): Clear fake_pid_p.
1322 * remote.c (remote_start_remote): Set fake_pid_p if we have to use
1323 magic_null_ptid since the remote side doesn't provide a real PID.
1324
1325 2012-01-19 Tom Tromey <tromey@redhat.com>
1326
1327 * NEWS: Combine the two Python sections.
1328
1329 2012-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
1330
1331 * target.h (target_close): Update comment on the target's unpush state.
1332
1333 2012-01-19 Pedro Alves <palves@redhat.com>
1334
1335 * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and
1336 linux_nat_async directly instead of going through the target
1337 vector.
1338 * target.c (unpush_target): Close target after unpushing it, not
1339 before.
1340
1341 2012-01-19 Gary Benson <gbenson@redhat.com>
1342
1343 * mdebugread.c (sort_blocks): Replace integer constants with ones
1344 derived from FIRST_LOCAL_BLOCK.
1345
1346 2012-01-18 Paul Pluzhnikov <ppluzhnikov@google.com>
1347 Jan Kratochvil <jan.kratochvil@redhat.com>
1348
1349 PR gdb/9538
1350 * symfile.c (find_separate_debug_file): New function.
1351 (terminate_after_last_dir_separator): Likewise.
1352 (find_separate_debug_file_by_debuglink): Also try realpath.
1353 * configure.ac (AC_CHECK_FUNCS): Add lstat.
1354 * configure: Regenerate.
1355 * config.in: Regenerate.
1356
1357 2012-01-18 Doug Evans <dje@google.com>
1358
1359 * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete.
1360 (main.o): Remove rule.
1361 * configure.ac (BINDIR): Define with AC_DEFINE_DIR.
1362 (--with-sysroot): Rewrite.
1363 * configure: Regenerate.
1364 * config.in: Regenerate.
1365
1366 2012-01-18 Sergio Durigan Junior <sergiodj@redhat.com>
1367
1368 * parse.c (initialize_expout): New function.
1369 (reallocate_expout): Likewise.
1370 (parse_exp_in_context): Use `initialize_expout' and
1371 `reallocate_expout' when appropriate.
1372
1373 2012-01-18 Pedro Alves <palves@redhat.com>
1374
1375 * record.c (struct record_breakpoint, record_breakpoint_p)
1376 (record_breakpoints): New.
1377 (record_insert_breakpoint, record_remove_breakpoint): Manage
1378 record breakpoints list. Only remove breakpoints from the
1379 inferior if they had been inserted there in the first place.
1380
1381 2012-01-17 Doug Evans <dje@google.com>
1382
1383 * linespec.c (decode_line_internal): Don't call symtabs_from_filename
1384 if we know we don't have a file name to look for.
1385
1386 2012-01-17 Pedro Alves <palves@redhat.com>
1387
1388 * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if
1389 the frame's stop reason is UNWIND_UNAVAILABLE.
1390
1391 2012-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
1392
1393 Fix compilation error.
1394 * m2-exp.y (yyerror): Use ANSI C prototype.
1395
1396 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
1397
1398 * f-exp.y (parse_number): Convert prototype from K&R to ANSI C.
1399 (growbuf_by_size): Likewise.
1400 (yyerror): Likewise.
1401 * m2-exp.y (make_qualname): Remove function (was #if 0'ed).
1402 (modblock): Remove variable (was #if 0'ed).
1403 (parse_number): Convert prototype from K&R to ANSI C.
1404 (yyerror): Likewise.
1405 * objc-exp.y (parse_number): Likewise.
1406 (yyerror): Likewise.
1407 (yylex): Remove #if 0'ed code.
1408 * p-exp.y (uptok): Convert prototype from K&R to ANSI C.
1409 (yyerror): Likewise.
1410
1411 2012-01-16 Tom Tromey <tromey@redhat.com>
1412
1413 * NEWS: Add item.
1414 * symtab.h (compare_filenames_for_search): Declare.
1415 * symtab.c (compare_filenames_for_search): New function.
1416 (iterate_over_some_symtabs): Use it.
1417 * symfile.h (struct quick_symbol_functions)
1418 <map_symtabs_matching_filename>: Change spec.
1419 * psymtab.c (partial_map_symtabs_matching_filename): Use
1420 compare_filenames_for_search. Update for new spec.
1421 * dwarf2read.c (dw2_map_symtabs_matching_filename): Use
1422 compare_filenames_for_search. Update for new spec.
1423 * breakpoint.c (clear_command): Use compare_filenames_for_search.
1424
1425 2012-01-16 Tom Tromey <tromey@redhat.com>
1426
1427 PR python/13281:
1428 * gdbtypes.h (TYPE_FLAG_ENUM): New macro.
1429 (struct main_type) <flag_flag_enum>: New field.
1430 * dwarf2read.c (process_enumeration_scope): Detect "flag" enums.
1431 * NEWS: Add entries.
1432 * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag"
1433 enums.
1434 * python/lib/gdb/printing.py (_EnumInstance): New class.
1435 (FlagEnumerationPrinter): Likewise.
1436
1437 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
1438
1439 * breakpoint.c (create_sals_from_address_default): New function.
1440 (create_breakpoints_sal_default): Likewise.
1441 (decode_linespec_default): Likewise.
1442 (is_marker_spec): Removed.
1443 (strace_marker_p): New function.
1444 (init_breakpoint_sal): Using `strace_marker_p' instead of
1445 `is_marker_spec'.
1446 (create_breakpoint): Call method `create_sals_from_address' from
1447 breakpoint_ops, replacing code that created SALs conditionally
1448 on the type of the breakpoint. Call method `create_breakpoints_sal',
1449 replacing code that created breakpoints conditionally on the type
1450 wanted.
1451 (base_breakpoint_create_sals_from_address): New function.
1452 (base_breakpoint_create_breakpoints_sal): Likewise.
1453 (base_breakpoint_decode_linespec): Likewise.
1454 (base_breakpoint_ops): Add methods
1455 `base_breakpoint_create_sals_from_address',
1456 `base_breakpoint_create_breakpoints_sal' and
1457 `base_breakpoint_decode_linespec'.
1458 (bkpt_create_sals_from_address): New function.
1459 (bkpt_create_breakpoints_sal): Likewise.
1460 (bkpt_decode_linespec): Likewise.
1461 (tracepoint_create_sals_from_address): Likewise.
1462 (tracepoint_create_breakpoints_sal): Likewise.
1463 (tracepoint_decode_linespec): Likewise.
1464 (strace_marker_create_sals_from_address): Likewise.
1465 (strace_marker_create_breakpoints_sal): Likewise.
1466 (strace_marker_decode_linespec): Likewise.
1467 (strace_marker_breakpoint_ops): New variable.
1468 (addr_string_to_sals): Remove `marker_spec'. Call method
1469 `decode_linespec' from breakpoint_ops, replacing code that decoded
1470 an address string into a SAL. Use `strace_marker_p' instead of
1471 `marker_spec'.
1472 (strace_command): Decide whether we are dealing with a static
1473 tracepoint with marker or not. Use the appropriate breakpoint_ops.
1474 (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops.
1475 * breakpoint.h (linespec_result, linespec_sals): New forward
1476 declarations.
1477 (breakpoint_ops) <create_sals_from_address>,
1478 <create_breakpoints_sal>, <decode_linespec>: New methods.
1479
1480 2012-01-14 Doug Evans <dje@google.com>
1481
1482 * NEWS: Update text for "maint set python print-stack".
1483 It is deprecated in gdb 7.4 and deleted in 7.5.
1484
1485 2012-01-13 Eli Zaretskii <eliz@gnu.org>
1486
1487 * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before
1488 including curses.h.
1489
1490 2012-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
1491
1492 * configure: Regenerate.
1493 * config.in: Regenerate.
1494
1495 2012-01-12 Keith Seitz <keiths@redhat.com>
1496
1497 PR mi/10586
1498 * varobj.c (ANONYMOUS_STRUCT_NAME): Define.
1499 (ANONYMOUS_UNION_NAME): Define.
1500 (is_path_expr_parent): New function.
1501 (get_path_expr_parent): New function.
1502 (is_anonymous_child): New function.
1503 (create_child_with_value): If the child is anonymous and without
1504 a name, assign an object name to it.
1505 (c_describe_child): Use get_path_expr_parent to determine
1506 the parent expression.
1507 If there field represents an anonymous struct or union and
1508 has no name, set an appropriate display name and expression.
1509 (cplus_describe_child): Likewise.
1510
1511 2012-01-12 Pedro Alves <palves@redhat.com>
1512
1513 * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as
1514 available when %ebp is found to be zero (outermost).
1515
1516 2012-01-11 Andreas Tobler <andreast@fgznet.ch>
1517
1518 * common/gdb_assert.h (gdb_static_assert): Rename static_assert to
1519 an internal gdb_static_assert.
1520 * mi/mi-common.c: Rename static_assert to gdb_static_assert.
1521
1522 2012-01-11 Tom Tromey <tromey@redhat.com>
1523
1524 PR gdb/9598:
1525 * breakpoint.c (_initialize_breakpoint): Fix help for "catch
1526 catch" and "catch throw".
1527
1528 2012-01-11 Paul Hilfinger <hilfingr@adacore.com>
1529
1530 * blockframe.c (block_innermost_frame): Start search from selected
1531 frame, if present, or otherwise the current frame.
1532
1533 * c-exp.y (variable): Update innermost_block for
1534 'block COLONCOLON NAME' clause.
1535 * m2-exp.y (variable): Ditto.
1536 * objc-exp.y (variable): Ditto.
1537
1538 2012-01-10 Tom Tromey <tromey@redhat.com>
1539
1540 PR python/13199:
1541 * python/python.c (finish_python_initialization): Set sys.argv.
1542
1543 2012-01-10 Doug Evans <dje@google.com>
1544
1545 * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd". New arg
1546 "want_line_info". All callers updated.
1547 (dwarf_decode_lines_1): New function.
1548 (handle_DW_AT_stmt_list): Add function comment.
1549 New arg "want_line_info". All callers updated.
1550 (read_file_scope,read_type_unit_scope): Move comment from
1551 handle_DW_AT_stmt_list to here.
1552
1553 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
1554
1555 Fix regression after libiberty/ update for GCC PR 6057 and others.
1556 * c-exp.y (operator) <OPERATOR DELETE>
1557 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
1558 * cp-name-parser.y (fill_comp, make_operator, make_dtor)
1559 (make_builtin_type, make_name): New variable i, add gdb_assert.
1560 (operator) <OPERATOR NEW>: Update ARGS to 3.
1561 (operator) <OPERATOR DELETE>: Add trailing space.
1562 (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3.
1563 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
1564 * cp-support.c (cp_canonicalize_string): Check NULL from
1565 cp_comp_to_string, call warning and return.
1566
1567 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
1568
1569 Fix duplicate .o files after omitting libbfd.a.
1570 * Makefile.in (ALL_TARGET_OBS): Remove corelow.o.
1571 (SFILES): Add corelow.c.
1572 (COMMON_OBS): Add corelow.o.
1573 (ALLDEPFILES): Remove corelow.c.
1574 * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o.
1575 * config/alpha/alpha-osf3.mh: Likewise.
1576 * config/alpha/fbsd.mh: Likewise.
1577 * config/arm/nbsdaout.mh: Likewise.
1578 * config/arm/nbsdelf.mh: Likewise.
1579 * config/i386/i386gnu.mh: Likewise.
1580 * config/ia64/hpux.mh: Likewise.
1581 * config/ia64/linux.mh: Likewise.
1582 * config/m32r/linux.mh: Likewise.
1583 * config/m68k/linux.mh: Likewise.
1584 * config/mips/irix5.mh: Likewise.
1585 * config/mips/irix6.mh: Likewise.
1586 * config/pa/hpux.mh: Likewise.
1587 * config/pa/linux.mh: Likewise.
1588 * config/powerpc/aix.mh: Likewise.
1589 * config/sparc/linux.mh: Likewise.
1590 * config/sparc/linux64.mh: Likewise.
1591 * config/sparc/sol2.mh: Likewise.
1592 * config/vax/vax.mh: Likewise.
1593 * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu)
1594 (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*)
1595 (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*)
1596 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*)
1597 (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*)
1598 (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*)
1599 (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*)
1600 (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*)
1601 (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*)
1602 (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu)
1603 (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*)
1604 (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*)
1605 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
1606 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*)
1607 (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*)
1608 (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
1609 (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*)
1610 (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu)
1611 (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*)
1612 (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*)
1613 (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*)
1614 (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove
1615 corelow.o from gdb_target_obs.
1616 * corefile.c (core_target): Update the comment on NULL value.
1617 (core_file_command): Replace error by gdb_assert on CORE_TARGET.
1618 * corelow.c (sniff_core_bfd): Call error instead of warning on zero
1619 MATCHES. Drop YUMMY set on NULL.
1620 (core_close): Do not call exit_inferior_silent on zero PID. Do not
1621 reclaim CORE_DATA if it is already NULL.
1622
1623 2012-01-09 Doug Evans <dje@google.com>
1624
1625 * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
1626 * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
1627
1628 2012-01-09 Keith Seitz <keiths@redhat.com>
1629
1630 * breakpoint.c (wrapper.h): Don't include.
1631
1632 2012-01-09 Keith Seitz <keiths@redhat.com>
1633
1634 * Makefile.in (SFILES): Remove wrapper.c.
1635 (HFILES_NO_SRCDIR): Remove wrapper.h.
1636 (COMMON_OBS): Remove wrapper.o.
1637 * cli/cli-interp.c: Don't inlude wrapper.h.
1638 * corelow.c: Likewise.
1639 (core_open): Replace gdb_target_find_new_threads with
1640 TRY_CATCH around target_find_new_threads.
1641 * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy.
1642 * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type.
1643 * varobj.c (varobj_create): Likewise for parse_exp_1 and
1644 evaluate_expression.
1645 (varobj_set_value): Likewise for evaluate_expression and
1646 value_assign.
1647 (install_new_variable): Likewise for value_fetch_lazy.
1648 (adjust_value_for_child_access): Likewise for value_ind.
1649 (c_describe_child): Likewise for value_subscript and
1650 value_ind.
1651 (c_value_of_root): Likewise for evaluate_expression.
1652 * wrapper.c: Remove.
1653 * wrapper.h: Remove.
1654
1655 2012-01-09 Doug Evans <dje@google.com>
1656
1657 * dwarf2read.c (read_and_check_comp_unit_head): Renamed from
1658 partial_read_comp_unit_head. Replace "buffer", "buffer_size" and
1659 "abfd" args with "section". All callers updated.
1660 Error checking code moved ...
1661 (error_check_comp_unit_head): ... here. New function.
1662 (read_and_check_type_unit_head): Renamed from read_type_unit_head.
1663 Delete arg "abfd". New arg "type_offset". All callers updated.
1664 (create_debug_types_hash_table): Simplify by using
1665 read_and_check_type_unit_head.
1666
1667 * parser-defs.h (namecopy): Delete.
1668 * parse.c (namecopy, namecopy_size): Move into copy_name.
1669
1670 2012-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
1671
1672 Partially fix duplicate .o files after omitting libbfd.a.
1673 * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o.
1674 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
1675 * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o.
1676 * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o.
1677 * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o.
1678 * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o.
1679 * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o.
1680
1681 2012-01-09 Pedro Alves <palves@redhat.com>
1682
1683 * MAINTAINERS: Update my email address.
1684
1685 2012-01-08 Doug Evans <dje@google.com>
1686
1687 * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to
1688 n_type_units. Rename type_comp_units to all_type_units.
1689 All uses updated.
1690 (add_signatured_type_cu_to_table): Renamed from
1691 add_signatured_type_cu_to_list. All callers updated.
1692
1693 * gdbtypes.h (struct cplus_struct_type): Delete member
1694 nfn_fields_total. All uses removed.
1695
1696 2012-01-06 Doug Evans <dje@google.com>
1697
1698 * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard
1699 to top of file.
1700 (dwarf2_find_comp_unit): Delete.
1701 (process_psymtab_comp_unit): Make result "void".
1702 Delete args buffer, info_ptr, buffer_size, and replace with
1703 "section". All callers updated.
1704 (dwarf2_build_psymtabs_hard): Simplify.
1705
1706 2012-01-06 Sergio Durigan Junior <sergiodj@redhat.com>
1707 Thiago Jung Bauermann <bauerman@br.ibm.com>
1708
1709 * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword
1710 before `struct gdb_exception'.
1711 * breakpoint.c (update_global_location_list_nothrow)
1712 (update_breakpoint_locations, enable_breakpoint_disp): Likewise.
1713 * cp-abi.c (value_rtti_type): Likewise.
1714 * cp-support.c (cp_validate_operator): Likewise.
1715 * infrun.c (insert_exception_resume_breakpoint)
1716 (check_exception_resume, keep_going): Likewise.
1717 * mi-interp.c (mi_breakpoint_created)
1718 (mi_breakpoint_modified): Likewise.
1719 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise.
1720 * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p)
1721 (ia64_hpux_handle_dld_breakpoint_1): Likewise.
1722
1723 2012-01-05 Doug Evans <dje@google.com>
1724
1725 * dwarf2read.c (statement_prologue): Delete, unused.
1726
1727 * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int.
1728 * dwarf2loc.h (dwarf2_per_cu_addr_size): Update.
1729
1730 * dwarf2read.c (comp_unit_header): Delete, unused.
1731
1732 2012-01-05 Ulrich Weigand <uweigand@de.ibm.com>
1733
1734 * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o.
1735 * config/s390/s390.mh (NATDEPFILES): Remove corelow.o.
1736
1737 2012-01-05 Khoo Yit Phang <khooyp@cs.umd.edu>
1738
1739 * infrun.c (normal_stop): Don't skip calling the normal_stop
1740 observers if the thread was doing a multi-step, but stopped for
1741 some reason other than stepping.
1742
1743 2012-01-05 Pedro Alves <alves.ped@gmail.com>
1744
1745 * cli/cli-decode.h: Add comments.
1746 (CMD_LIST_AMBIGUOUS): Moved to command.h
1747 (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
1748 (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq)
1749 (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1)
1750 (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition)
1751 (add_com, add_com_alias, add_info, add_info_alias)
1752 (complete_on_cmdlist, complete_on_enum, help_list): Remove
1753 declarations.
1754 * command.h: Add and adjust comments.
1755 (CMD_LIST_AMBIGUOUS): Moved here.
1756 (help_cmd, help_cmd_list): Delete declarations.
1757
1758 2012-01-04 Doug Evans <dje@google.com>
1759
1760 * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd".
1761 All callers updated.
1762 (load_full_type_unit): Renamed from read_signatured_type_at_offset.
1763 Replace all arguments with "per_cu". All callers updated.
1764
1765 * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment.
1766
1767 * dwarf2read.c (init_one_comp_unit): Delete arg "objfile".
1768 New arg "per_cu". All callers updated.
1769
1770 Delete #if 0'd out code.
1771 * language.c (binop_result_type): Delete.
1772 (simple_type, ordered_type, same_type, integral_type): Delete.
1773 (numeric_type, character_type, string_type, boolean_type): Delete.
1774 (float_type, structured_type): Delete.
1775 * language.h: Update.
1776
1777 2012-01-04 Tom Tromey <tromey@redhat.com>
1778
1779 * python/py-value.c (valpy_binop): Initialize 'res_val'.
1780
1781 2012-01-04 Joel Brobecker <brobecker@adacore.com>
1782
1783 * corefile.c (close_exec_file): Delete.
1784 (reopen_exec_file): Remove commented out code that seems related
1785 to close_exec_file, which is being deleted here.
1786 * inferior.h (close_exec_file): Delete.
1787 * fork-child.c (fork_inferior): Remove call to fork_inferior.
1788
1789 2012-01-04 Joel Brobecker <brobecker@adacore.com>
1790
1791 * ada-lang.c: #include "cli/cli-utils.h".
1792 (get_selections): Use skip_spaces.
1793 (ada_get_next_arg): Use skip_spaces and skip_to_space.
1794 (catch_ada_exception_command_split): Use skip_spaces.
1795 (ada_decode_assert_location): Likewise.
1796
1797 2012-01-04 Joel Brobecker <brobecker@adacore.com>
1798
1799 * linespec.c (decode_line_internal): Check for C++ or Java
1800 compound constructs only if the current language is C, C++
1801 or Java.
1802
1803 2012-01-04 Jan Kratochvil <jan.kratochvil@redhat.com>
1804
1805 Revert:
1806 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1807 Joel Brobecker <brobecker@adacore.com>
1808 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
1809 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
1810 3 times.
1811 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
1812 fall through into AT_ENTRY_POINT.
1813 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
1814 DUMMY_ADDR with it.
1815 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
1816 PPC_INSN_SIZE skip to 3 times.
1817
1818 2012-01-04 Joel Brobecker <brobecker@adacore.com>
1819
1820 * linespec.c (add_minsym): Preserve function descriptors.
1821
1822 2012-01-04 Ulrich Weigand <uweigand@de.ibm.com>
1823
1824 * breakpoint.c (all_locations_are_pending): Consider locations
1825 in program spaces executing during startup pending as well.
1826
1827 2012-01-04 Joel Brobecker <brobecker@adacore.com>
1828
1829 Copyright year update in most files of the GDB Project.
1830
1831 2012-01-04 Joel Brobecker <brobecker@adacore.com>
1832
1833 * copyright.sh: Delete.
1834 * copyright.py: Rewrite.
1835
1836 2012-01-04 Joel Brobecker <brobecker@adacore.com>
1837
1838 * gnulib/extra/update-copyright: New file, imported from gnulib.
1839
1840 2012-01-04 Joel Brobecker <brobecker@adacore.com>
1841
1842 * README (Copyright and License Notices): New section.
1843
1844 2012-01-03 Tom Tromey <tromey@redhat.com>
1845
1846 PR python/12533:
1847 * python/py-value.c (valpy_dereference, valpy_get_address
1848 valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
1849 (valpy_getitem, valpy_call, valpy_binop, valpy_negative)
1850 (valpy_absolute, valpy_richcompare): Free intermediate values.
1851
1852 2011-01-03 Joel Brobecker <brobecker@adacore.com>
1853
1854 * ada-lang.c: Reformat the copyright notice.
1855
1856 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1857
1858 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
1859 * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*)
1860 (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*)
1861 (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o.
1862 Revert this part of:
1863 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1864 Build gdb directly from *.o files not using libgdb.a.
1865 * Makefile.in (COMMON_OBS): Remove solib-target.o.
1866
1867 2012-01-02 Joel Brobecker <brobecker@adacore.com>
1868
1869 * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c,
1870 gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c:
1871 Reformat the copyright header.
1872
1873 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1874
1875 Revert this part of:
1876 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1877 Remove the gdbtui binary.
1878 * gdb.c (main): Remove args.interpreter_p initialization.
1879 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
1880 * main.h (struct captured_main_args): Remove interpreter_p.
1881
1882 2012-01-02 Joel Brobecker <brobecker@adacore.com>
1883
1884 * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011.
1885
1886 2012-01-02 Joel Brobecker <brobecker@adacore.com>
1887
1888 * top.c (print_gdb_version): Update copyright year.
1889
1890 2012-01-02 Yao Qi <yao@codesourcery.com>
1891
1892 * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent.
1893
1894 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1895 Joel Brobecker <brobecker@adacore.com>
1896
1897 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
1898 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
1899 3 times.
1900 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
1901 fall through into AT_ENTRY_POINT.
1902 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
1903 DUMMY_ADDR with it.
1904 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
1905 PPC_INSN_SIZE skip to 3 times.
1906
1907 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1908
1909 * amd64-linux-nat.c (update_debug_registers_callback): New comment on
1910 the return value.
1911 * i386-linux-nat.c (update_debug_registers_callback): Likewise.
1912
1913 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1914
1915 Build gdb directly from *.o files not using libgdb.a.
1916 * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o.
1917 (COMMON_OBS): Remove solib-target.o.
1918 (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule.
1919 (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS).
1920 (LIBGDB_OBS, libgdb.a): Move it above.
1921 * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*)
1922 (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu)
1923 (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe)
1924 (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu)
1925 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*)
1926 (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*)
1927 (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu)
1928 (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*)
1929 (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*)
1930 (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*)
1931 (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
1932 (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*)
1933 (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*)
1934 (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*)
1935 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
1936 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*)
1937 (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*)
1938 (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
1939 (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*)
1940 (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu)
1941 (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*)
1942 (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*)
1943 (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*)
1944 (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*)
1945 (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu)
1946 (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*)
1947 (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs.
1948
1949 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1950
1951 Remove the gdbtui binary.
1952 * .gitignore (/gdbtui): Remove.
1953 * Makefile.in (TUI): Remove.
1954 (SUBDIR_TUI_OBS): Remove tui-main.o.
1955 (SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
1956 (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
1957 (tui-main.o): Remove.
1958 (all_object_files): Remove tui-main.o.
1959 * NEWS: New note for the gdbtui removal.
1960 * configure: Rebuilt.
1961 * configure.ac: No longer add all-tui, clean-tui, install-tui and
1962 uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
1963 CONFIG_UNINSTALL respectively.
1964 * gdb.c (main): Remove args.interpreter_p initialization.
1965 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
1966 * main.h (struct captured_main_args): Remove interpreter_p.
1967 * tui/tui-main.c: Remove.
1968
1969 2012-01-01 Doug Evans <dje@google.com>
1970
1971 * dwarf2read.c (dwarf2_compute_name): Simplify objfile references.
1972 (dwarf2_physname, read_import_statement): Ditto.
1973 (read_call_site_scope, dwarf2_record_block_ranges): Ditto.
1974 (process_structure_scope read_subroutine_type): Ditto.
1975 (read_typedef, load_partial_dies, read_partial_die): Ditto.
1976 (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto.
1977 (dwarf2_fetch_die_location_block): Ditto.
1978 (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto.
1979
1980 * dwarf2read.c (read_signatured_type): Delete `objfile' arg.
1981 All callers updated.
1982 (load_full_comp_unit, queue_comp_unit, process_queue): Ditto.
1983 (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto.
1984 (process_psymtab_comp_unit, load_partial_comp_unit): Ditto.
1985
1986 * dwarf2read.c (load_cu): Move assert to more useful location.
1987
1988 * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit.
1989 All callers updated.
1990
1991 * dwarf2read.c (dwarf2_per_objfile): Add comment.
1992 (dwarf2_elf_names): Minor reformat.
1993 (dwarf2_per_cu_data): Tweak comment.
1994 (dwarf2_read_section): Fix comment.
1995 (create_all_comp_units): Fix comment.
1996 (load_full_comp_unit): Fix comment.
1997 (process_full_comp_unit): Fix comment.
1998 (read_signatured_type): Fix comment.
1999
2000 For older changes see ChangeLog-2011.
2001 \f
2002 Local Variables:
2003 mode: change-log
2004 left-margin: 8
2005 fill-column: 74
2006 version-control: never
2007 coding: utf-8
2008 End:
This page took 0.074478 seconds and 5 git commands to generate.