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