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