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