Move make_cleanup_close to common code
[external/binutils.git] / gdb / ChangeLog
1 2015-06-10  Gary Benson <gbenson@redhat.com>
2
3         * utils.h (make_cleanup_close): Moved to common/filestuff.h.
4         * utils.c (do_close_cleanup): Moved to common/filestuff.c.
5         (make_cleanup_close): Likewise.
6         * common/filestuff.h (make_cleanup_close): Moved from utils.h.
7         * common/filestuff.c (do_close_cleanup): Moved from utils.c.
8         (make_cleanup_close): Likewise.
9
10 2015-06-03  Jon Turney  <jon.turney@dronecode.org.uk>
11
12         * windows-nat.c (thread_rec): Also ignore ERROR_INVALID_HANDLE
13         from SuspendThread().
14
15 2015-06-03  Jon Turney  <jon.turney@dronecode.org.uk>
16
17         * windows-nat.c (handle_output_debug_string): Trim trailing '\n'
18         from OutputDebugString.
19
20 2015-06-10  Walfred Tedeschi  <walfred.tedeschi@intel.com>
21                         Mircea Gherzan  <mircea.gherzan@intel.com>
22
23         * i386-tdep.c (MPX_BASE_MASK, MPX_BD_MASK, MPX_BT_MASK, MPX_BD_MASK_32,
24         MPX_BT_MASK_32): New macros.
25         (i386_mpx_set_bounds): New function that implements
26         the command "set-mpx-bound".
27         (i386_mpx_enabled): Helper function to test MPX availability.
28         (i386_mpx_bd_base): Helper function to calculate the base directory
29         address.
30         (i386_mpx_get_bt_entry): Helper function to access a bound
31         table entry.
32         (i386_mpx_print_bounds): Effectively display bound information.
33         (_initialize_i386_tdep): Add new commands to commands "set mpx" and
34         "show mpx".
35         (_initialize_i386_tdep):
36         Add "bound" to the commands "show mpx" and "set mpx" commands.
37         (mpx_set_cmdlist and mpx_show_cmdlist): List for the new prefixed "set mpx"
38         and "show mpx" commands.
39         * NEWS: List new commands for MPX support.
40
41 2015-06-09  Gary Benson <gbenson@redhat.com>
42
43         * common/fileio.h (fileio_to_host_mode): New declaration.
44         * common/fileio.c (fileio_to_host_mode): New Function.
45         * inf-child.c (inf_child_fileio_open): Process mode argument
46         with fileio_to_host_mode.
47
48 2015-06-09  Gary Benson <gbenson@redhat.com>
49
50         * common/fileio.c (fileio_mode_pack): Fix preprocessor
51         conditional.
52
53 2015-06-05  Gary Benson <gbenson@redhat.com>
54
55         * gdb_bfd.c (gdb_bfd_open): Move vgdb special case to...
56         * remote.c (remote_filesystem_is_local): ...here.
57
58 2015-06-04  Yao Qi  <yao.qi@linaro.org>
59
60         * gdbarch.c: Regenerate it.
61
62 2015-06-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
63
64         * arch-utils.c (default_infcall_munmap): New.
65         * arch-utils.h (default_infcall_munmap): New declaration.
66         * compile/compile-object-load.c (struct munmap_list, munmap_list_add)
67         (munmap_list_free, munmap_listp_free_cleanup): New.
68         (struct setup_sections_data): Add field munmap_list_headp.
69         (setup_sections): Call munmap_list_add.
70         (compile_object_load): New variable munmap_list_head, initialize
71         setup_sections_data.munmap_list_headp, return munmap_list_head.
72         * compile/compile-object-load.h (struct munmap_list): New declaration.
73         (struct compile_module): Add field munmap_list_head.
74         (munmap_list_free): New declaration.
75         * compile/compile-object-run.c (struct do_module_cleanup): Add field
76         munmap_list_head.
77         (do_module_cleanup): Call munmap_list_free.
78         (compile_object_run): Pass munmap_list_head to do_module_cleanup.
79         * gdbarch.c: Regenerate.
80         * gdbarch.h: Regenerate.
81         * gdbarch.sh (infcall_munmap): New.
82         * linux-tdep.c (linux_infcall_munmap): New.
83         (linux_init_abi): Install it.
84
85 2015-06-02  Simon Marchi  <simon.marchi@ericsson.com>
86
87         PR gdb/15564
88         * inferior.c (detach_inferior): Call exit_inferior_1 with silent = 0.
89
90 2015-06-02  Yao Qi  <yao.qi@linaro.org>
91
92         * i386-linux-nat.c: Include linux-nat.h.
93
94 2015-06-01  Andreas Schwab  <schwab@linux-m68k.org>
95             Jan Kratochvil  <jan.kratochvil@redhat.com>
96
97         PR symtab/18392
98         * dwarf2-frame-tailcall.c (pretended_chain_levels): Correct
99         assertion.
100         * dwarf2loc.c (chain_candidate): Likewise.
101
102 2015-06-01  Yao Qi  <yao.qi@linaro.org>
103
104         * arm-linux-nat.c (fetch_vfp_regs): Use PTRACE_GETREGSET.
105         (store_vfp_regs): Use PTRACE_SETREGSET.
106
107 2015-06-01  Yao Qi  <yao.qi@linaro.org>
108
109         * arm-linux-nat.c (fetch_fpregister): Use PTRACE_GETREGSET.
110         (fetch_fpregs): Likewise.
111         * arm-linux-nat.c (store_fpregister): Use PTRACE_SETREGSET.
112         (store_fpregs): Likewise.
113
114 2015-06-01  Yao Qi  <yao.qi@linaro.org>
115
116         * arm-linux-nat.c (fetch_register): Use PTRACE_GETREGSET.
117         (fetch_regs): Likewise.
118         (store_regs): Use PTRACE_SETREGSET.
119         (store_register): Likewise.
120
121 2015-06-01  Yao Qi  <yao.qi@linaro.org>
122
123         * arm-linux-nat.c (arm_linux_read_description): Check whether
124         kernel supports PTRACE_GETREGSET.
125
126 2015-06-01  Yao Qi  <yao.qi@linaro.org>
127
128         * x86-linux-nat.c (have_ptrace_getregset): Move it to ...
129         * linux-nat.c: ... here.
130         * x86-linux-nat.h (have_ptrace_getregset): Move the declaration
131         to ...
132         * linux-nat.h: ... here.
133
134 2015-06-01  Yao Qi  <yao.qi@linaro.org>
135
136         * amd64-linux-nat.c: Include "nat/linux-ptrace.h".
137         * i386-linux-nat.c: Likewise.
138         * nat/linux-ptrace.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Define.
139         * s390-linux-nat.c: Include "nat/linux-ptrace.h".
140         (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove.
141         * x86-linux-nat.c: Include "nat/linux-ptrace.h".
142         * x86-linux-nat.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove.
143
144 2015-05-30  Eli Zaretskii  <eliz@gnu.org>
145
146         * go32-nat.c (go32_xfer_memory): Fix the return value to be
147         compatible to what read_child and write_child return.  This
148         unbreaks that DJGPP build of GDB which was broken since v7.7.
149
150 2015-05-29  Martin Galvan  <martin.galvan@tallertechnologies.com>
151
152         * MAINTAINERS (Write After Approval): Add Martin Galvan.
153
154 2015-05-29  Roland McGrath  <mcgrathr@google.com>
155
156         PR gdb/18464
157         * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Use warning
158         rather than internal_error for an unrecognized value.
159
160 2015-05-29  Max Filippov  <jcmvbkbc@gmail.com>
161
162         * xtensa-tdep.c (xtensa_pseudo_register_read)
163         (xtensa_pseudo_register_write): Don't alias last pseudo register
164         to a1.
165
166 2015-05-28  Don Breazeal  <donb@codesourcery.com>
167
168         * infrun.c (follow_fork_inferior): Ensure the use of
169         process-style ptids (pid,0,0) in verbose/debug "Detaching"
170         messages.
171
172 2015-05-28  Doug Evans  <dje@google.com>
173
174         * dwarf2read.c (record_line_ftype): Remove, duplicate.
175
176 2015-05-28  Yao Qi  <yao.qi@linaro.org>
177
178         * arm-linux-nat.c (arm_linux_has_wmmx_registers): Remove.
179         (arm_linux_fetch_inferior_registers): Use
180         tdep->have_wmmx_registers instead of arm_linux_has_wmmx_registers.
181         (arm_linux_store_inferior_registers): Likewise.
182         (arm_linux_read_description): Don't set
183         arm_linux_has_wmmx_registers.
184         * arm-tdep.c (arm_gdbarch_init): Set
185         tdep->have_wmmx_registers according target descriptions.
186         * arm-tdep.h (struct gdbarch_tdep) <have_wmmx_registers>: New
187         field.
188
189 2015-05-28  Yao Qi  <yao.qi@linaro.org>
190
191         * arm-linux-nat.c (arm_linux_vfp_register_count): Remove.
192         (fetch_vfp_regs): Use vfp_register_count from gdbarch_tdep
193         instead of arm_linux_vfp_register_count.
194         (store_vfp_regs): Likewise.
195         (arm_linux_fetch_inferior_registers): Likewise.
196         (arm_linux_store_inferior_registers): Likewise.
197         (arm_linux_read_description): Don't set
198         arm_linux_vfp_register_count.
199         * arm-linux-tdep.c (arm_linux_iterate_over_regset_sections):
200         Adjust.
201         * arm-tdep.c (arm_gdbarch_init): Add assert on
202         vfp_register_count.
203         * arm-tdep.h (struct gdbarch_tdep) <have_vfp_registers>: Rename
204         field to vfp_register_count.  All users updated.
205
206 2015-05-28  Kyle Huey  <me@kylehuey.com>  (tiny patch)
207
208         * gdb/arm-tdep.c (arm_gdbarch_init): Perform arm_abi detection on
209         ELFOSABI_GNU binaries.
210
211 2015-05-27  Doug Evans  <dje@google.com>
212
213         * dwarf2read.c (lnp_state_machine): New typedef.
214         (lnp_reader_state): New typedef.
215         (dwarf_record_line_1): Renamed from dwarf_record_line.
216         All callers updated.
217         (dwarf_record_line): New function.
218         (init_lnp_state_machine): New function.
219         (check_line_address): Replace p_record_line parameter with state.
220         All callers updated.
221         (dwarf_decode_lines_1): Call dwarf_record_line, init_lnp_state_machine.
222         Update to record state in lnp_state_machine.
223
224 2015-05-27  Doug Evans  <dje@google.com>
225
226         * dwarf2read.c (record_line_ftype): New typedef.
227         (check_line_address): New function.
228         (dwarf_decode_lines_1): Call it.
229
230 2015-05-27  Doug Evans  <dje@google.com>
231
232         * NEWS: Mention "set debug dwarf-line".
233         * dwarf2read.c (dwarf_line_debug): New static global.
234         (add_include_dir): Add debug dwarf-line support.
235         (add_file_name, dwarf_record_line, dwarf_finish_line): Ditto.
236         (_initialize_dwarf2_read): New parameter "debug dwarf-line".
237
238 2015-05-27  Doug Evans  <dje@google.com>
239
240         * cp-namespace.c (cp_lookup_nested_symbol): New arg "domain".
241         All callers updated.
242         (cp_lookup_nested_symbol_1, find_symbol_in_baseclass): Ditto.
243         * cp-support.h (cp_lookup_nested_symbol): Update.
244
245 2015-05-27  Doug Evans  <dje@google.com>
246
247         PR symtab/18258
248         * block.c (block_find_symbol): New function.
249         (block_find_non_opaque_type): Ditto.
250         (block_find_non_opaque_type_preferred): Ditto.
251         * block.h (block_symbol_matcher_ftype): New typedef.
252         (block_find_symbol): Declare.
253         (block_find_non_opaque_type): Ditto.
254         (block_find_non_opaque_type_preferred): Ditto.
255         * dwarf2read.c (dw2_lookup_symbol): Call block_find_symbol.
256         * psymtab.c (psym_lookup_symbol): Ditto.
257         * symtab.c (basic_lookup_transparent_type_1): New function.
258         (basic_lookup_transparent_type): Call it.
259
260 2015-05-27  Yao Qi  <yao.qi@linaro.org>
261
262         * aarch64-tdep.c (aarch64_record_data_proc_simd_fp): Return
263         AARCH64_RECORD_UNKNOWN for unknown instruction encoding.
264
265 2015-05-27  Yao Qi  <yao.qi@linaro.org>
266
267         * aarch64-tdep.c (aarch64_record_branch_except_sys): Split lines
268         before operator &&.
269         (aarch64_record_load_store): Likewise.
270
271 2015-05-26  Doug Evans  <dje@google.com>
272
273         PR c++/18141, c++/18417.
274         * cp-support.c (cp_lookup_rtti_type): Handle the case of NAME being
275         a typedef.
276
277 2015-05-26  Doug Evans  <dje@google.com>
278
279         * NEWS: Add entries for command renamings.
280         * dwarf2read.c (dwarf_read_debug): Renamed from dwarf2_read_debug.
281         All uses updated.
282         (dwarf_die_debug): Renamed from dwarf2_die_debug.  All uses updated.
283         (dwarf_max_cache_age): Renamed from dwarf2_max_cache_age.
284         All uses updated.
285         (show_dwarf_max_cache_age): Renamed from show_dwarf2_max_cache_age.
286         All callers updated.  Fix spelling of DWARF in help text.
287         (set_dwarf_cmdlist): Renamed from set_dwarf2_cmdlist.
288         All uses updated.
289         (show_dwarf_cmdlist): Renamed from show_dwarf2_cmdlist.
290         All uses updated.
291         (set_dwarf_cmd): Renamed from set_dwarf2_cmd.  All callers updated.
292         (show_dwarf_cmd): Renamed from show_dwarf2_cmd.  All callers updated.
293         (dwarf_always_disassemble): Renamed from dwarf_always_disassemble.
294         All uses updated.
295         (show_dwarf_always_disassemble): Renamed from
296         show_dwarf2_always_disassemble.  All callers updated.
297         (_initialize_dwarf2_read): Rename "set/show dwarf2" prefix to
298         "set/show dwarf".  Rename "set/show dwarf2 max-cache-age" to
299         "set/show dwarf max-cache-age".  Rename
300         "set/show dwarf2 always-disassemble" to
301         "set/show dwarf always-disassemble".  Rename
302         "set/show debug dwarf2-read" to "set/show debug dwarf-read".  Rename
303         "set/show debug dwarf2-die" to "set/show debug dwarf-die".
304
305 2015-05-26  Doug Evans  <dje@google.com>
306
307         PR python/18438
308         * python/py-lazy-string.c (stpy_convert_to_value): Use
309         gdbpy_gdb_memory_error not PyExc_MemoryError.
310         (gdbpy_create_lazy_string_object): Ditto.
311
312 2015-05-26  Andrew Burgess  <andrew.burgess@embecosm.com>
313
314         * tui/tui-regs.c (tui_reg_next_command): Compare against NULL.
315
316 2015-05-26  Andrew Burgess  <andrew.burgess@embecosm.com>
317
318         * tui/tui-regs.c (tui_reg_prev_command): New function.
319         (_initialize_tui_regs): Add 'prev' command for 'tui reg'.
320         * reggroups.c (reggroup_prev): New function.
321         * reggroups.h (reggroup_prev): Add declaration.  Update comment.
322
323 2015-05-26  Omair Javaid  <omair.javaid@linaro.org>
324             Yao Qi  <yao.qi@linaro.org>
325
326         * aarch64-linux-tdep.c: Include linux-record.h and
327         record-full.h.
328         (struct linux_record_tdep aarch64_linux_record_tdep): Declare.
329         (aarch64_syscall): New enum.
330         (aarch64_canonicalize_syscall): New function.
331         (aarch64_all_but_pc_registers_record): New function.
332         (aarch64_linux_syscall_record): New function.
333         (aarch64_linux_init_abi): Install AArch64 process record
334         handler.  Update to handle syscall recording.
335         * aarch64-tdep.c: Include record.h and record-full.h.
336         (submask, bit, bits, REG_ALLOC, MEM_ALLOC): New macros.
337         (struct aarch64_mem_r): Define.
338         (aarch64_record_result): New enum.
339         (struct insn_decode_record): Define.
340         (insn_decode_record): New typedef.
341         (aarch64_record_data_proc_reg): New function.
342         (aarch64_record_data_proc_imm): New function.
343         (aarch64_record_branch_except_sys): New function.
344         (aarch64_record_load_store): New function.
345         (aarch64_record_data_proc_simd_fp): New function.
346         (aarch64_record_asimd_load_store): New function.
347         (aarch64_record_decode_insn_handler): New function.
348         (deallocate_reg_mem): New function.
349         (aarch64_process_record): New function.
350         * aarch64-tdep.h (struct gdbarch_tdep) <aarch64_syscall_record>:
351         New field.
352         (aarch64_process_record): New extern declaration.
353         * configure.tgt: Add linux-record.o to gdb_target_obs.
354         * linux-record.h (struct linux_record_tdep) <arg7>: New field.
355
356 2015-05-26  Omair Javaid  <omair.javaid@linaro.org>
357
358         * NEWS: Add a note on process record-replay support on aarch64*-linux*
359         targets.
360
361 2015-05-26  Martin Galvan  <martin.galvan@tallertechnologies.com>
362
363         * amd64-tdep.c: Replace in_function_epilogue_p with
364         stack_frame_destroyed_p throughout.
365         * arch-utils.c: Ditto.
366         * arch-utils.h: Ditto.
367         * arm-tdep.c: Ditto.
368         * breakpoint.c: Ditto.
369         * gdbarch.sh: Ditto.
370         * hppa-tdep.c: Ditto.
371         * i386-tdep.c: Ditto.
372         * mips-tdep.c: Ditto.
373         * nios2-tdep.c: Ditto.
374         * rs6000-tdep.c: Ditto.
375         * s390-linux-tdep.c: Ditto.
376         * score-tdep.c: Ditto.
377         * sh-tdep.c: Ditto.
378         * sparc-tdep.c: Ditto.
379         * sparc-tdep.h: Ditto.
380         * sparc64-tdep.c: Ditto.
381         * spu-tdep.c: Ditto.
382         * tic6x-tdep.c: Ditto.
383         * tilegx-tdep.c: Ditto.
384         * xstormy16-tdep.c: Ditto.
385         * gdbarch.c, gdbarch.h: Re-generated.
386
387 2015-05-22  Andrew Burgess  <andrew.burgess@embecosm.com>
388
389         * NEWS: Mention 'tui enable' and 'tui disable'.
390         * tui/tui.c (tui_enable_command): New function.
391         (tui_disable_command): New function.
392         (_initialize_tui): New function.
393
394 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
395
396         * tui/tui-regs.c (tui_reg_next_command): Use NULL not 0.
397
398 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
399
400         * tui/tui-layout.c (tui_set_layout_for_display_command): Ensure
401         buf_ptr is freed.
402
403 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
404
405         * tui/tui-layout.c (tui_layout_command): Move call to tui_enable
406         into ...
407         (tui_set_layout_for_display_command): ...here, before calling
408         tui_set_layout.  Only set the layout if gdb has not already
409         entered the TUI_FAILURE state.
410
411 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
412
413         * tui/tui-layout.c (layout_completer): New function.
414         (_initialize_tui_layout): Set completer on layout command.
415
416 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
417
418         * tui/tui-layout.c (tui_set_layout): Remove
419         tui_register_display_type parameter.  Remove all checking of this
420         parameter, and reindent function.  Update header comment.
421         (tui_set_layout_for_display_command): Rename to...
422         (tui_set_layout_by_name): ...this, and don't check for different
423         register class types, don't pass a tui_register_display_type to
424         tui_set_layout.  Update header comment.
425         (layout_names): Remove register set specific names.
426         * tui/tui-layout.h (tui_set_layout): Remove
427         tui_register_display_type parameter.
428         * tui/tui.c (tui_rl_change_windows): Don't pass a
429         tui_register_display_type to tui_set_layout.
430         (tui_rl_delete_other_windows): Likewise.
431         (tui_enable): Likewise.
432         * tui/tui-data.h (TUI_FLOAT_REGS_NAME): Remove.
433         (TUI_FLOAT_REGS_NAME_LOWER): Remove.
434         (TUI_GENERAL_REGS_NAME): Remove.
435         (TUI_GENERAL_REGS_NAME_LOWER): Remove.
436         (TUI_SPECIAL_REGS_NAME): Remove.
437         (TUI_SPECIAL_REGS_NAME_LOWER): Remove.
438         (TUI_GENERAL_SPECIAL_REGS_NAME): Remove.
439         (TUI_GENERAL_SPECIAL_REGS_NAME_LOWER): Remove.
440         (enum tui_register_display_type): Remove.
441         (struct tui_layout_def): Remove regs_display_type and
442         float_regs_display_type fields.
443         (struct tui_data_info): Remove regs_display_type field.
444         (tui_layout_command): Use new name for
445         tui_set_layout_for_display_command.
446         * tui/tui-data.c (layout_def): Don't initialise removed fields.
447         (tui_clear_win_detail): Don't initialise removed fields of
448         win_info.
449         * tui/tui-regs.c (tui_show_registers): Use new name for
450         tui_set_layout_for_display_command.
451         * tui/tui.h (tui_set_layout_for_display_command): Rename
452         declaration to...
453         (tui_set_layout_by_name): ...this.
454         * printcmd.c (display_command): Remove tui related layout call,
455         and reindent.
456
457 2015-05-20  Joel Brobecker  <brobecker@adacore.com>
458
459         * infrun.c (handle_inferior_event_1): Renames handle_inferior_event.
460         (handle_inferior_event): New function.
461
462 2015-05-20  Joel Brobecker  <brobecker@adacore.com>
463
464         * ada-lang.c (to_fixed_array_type): Rename local variable
465         typename into type_name.
466
467 2015-05-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
468
469         Fix ASAN crash for gdb.compile/compile.exp.
470         * infcall.c (call_function_by_hand_dummy): Use xstrdup for NAME.
471
472 2015-05-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
473
474         * compile/compile-c-symbols.c (convert_symbol_sym, gcc_convert_symbol)
475         (gcc_symbol_address): Change gdb_stdout to gdb_stdlog.
476         * compile/compile-object-load.c (setup_sections, compile_object_load):
477         Likewise.
478         * compile/compile.c (compile_to_object): Likewise.
479
480 2015-05-16  Doug Evans  <xdje42@gmail.com>
481
482         * NEWS: Mention support for unbuffered Guile memory ports.
483         * scm-ports.c (ioscm_memory_port): Update comments on end, size.
484         (ioscm_lseek_address): Improve overflow calculation.
485         (gdbscm_memory_port_fill_input): Add assert.
486         (gdbscm_memory_port_write): Handle unbuffered ports.
487         Handle large writes identical to Guile's fport_write.
488         (gdbscm_memory_port_seek): Fix seeking past end check.
489         (gdbscm_memory_port_close): Handle closing unbuffered port.
490         (ioscm_parse_mode_bits): Recognize "0" for unbuffered ports.
491         (ioscm_init_memory_port): Handle unbuffered ports.
492         (ioscm_reinit_memory_port): Ditto.
493         (ioscm_init_memory_port): Update size calculation.
494         (gdbscm_open_memory): Support zero sized ports.
495
496 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
497
498         * compile/compile-object-load.c (get_out_value_type): Fix uninitialized
499         variable compiler warnings.
500
501 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
502
503         * compile/compile-object-load.c (get_out_value_type): Fix returned type.
504
505 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
506             Phil Muldoon  <pmuldoon@redhat.com>
507
508         * NEWS (Changes since GDB 7.9): Add compile print.
509         * compile/compile-c-support.c (add_code_header, add_code_footer)
510         (c_compute_program): Add COMPILE_I_PRINT_ADDRESS_SCOPE and
511         COMPILE_I_PRINT_VALUE_SCOPE.
512         * compile/compile-internal.h (COMPILE_I_PRINT_OUT_ARG_TYPE)
513         (COMPILE_I_PRINT_OUT_ARG, COMPILE_I_EXPR_VAL, COMPILE_I_EXPR_PTR_TYPE):
514         New.
515         * compile/compile-object-load.c: Include block.h.
516         (get_out_value_type): New function.
517         (compile_object_load): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and
518         COMPILE_I_PRINT_VALUE_SCOPE.  Set compile_module's OUT_VALUE_ADDR and
519         OUT_VALUE_TYPE.
520         * compile/compile-object-load.h (struct compile_module): Add fields
521         out_value_addr and out_value_type.
522         * compile/compile-object-run.c: Include valprint.h and compile.h.
523         (struct do_module_cleanup): Add fields out_value_addr and
524         out_value_type.
525         (do_module_cleanup): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and
526         COMPILE_I_PRINT_VALUE_SCOPE.
527         (compile_object_run): Propagate out_value_addr and out_value_type.
528         Pass OUT_VALUE_ADDR.
529         * compile/compile.c: Include valprint.h.
530         (compile_print_value, compile_print_command): New functions.
531         (eval_compile_command): Handle failed COMPILE_I_PRINT_ADDRESS_SCOPE.
532         (_initialize_compile): Update compile code help text.  Install
533         compile_print_command.
534         * compile/compile.h (compile_print_value): New prototype.
535         * defs.h (enum compile_i_scope_types): Add
536         COMPILE_I_PRINT_ADDRESS_SCOPE and COMPILE_I_PRINT_VALUE_SCOPE.
537
538 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
539
540         * compile/compile-object-load.c (get_regs_type): Add parameter func_sym.
541         Rely on its parameter count.
542         (compile_object_load): Replace lookup_minimal_symbol_text by
543         lookup_global_symbol_from_objfile.  Verify FUNC_SYM.  Set it in the
544         return value.
545         * compile/compile-object-load.h (struct compile_module): Replace
546         func_addr by func_sym.
547         * compile/compile-object-run.c: Include block.h.
548         (compile_object_run): Reset module variable after it is freed.  Use
549         FUNC_SYM instead of FUNC_ADDR.  Rely on it.
550
551 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
552
553         * compile/compile-c-support.c (print_one_macro): Use #ifndef.
554         (generate_register_struct): Use __gdb_uintptr for TYPE_CODE_PTR.
555         (c_compute_program): Call generate_register_struct after typedefs.
556         * compile/compile-loc2c.c (push, pushf_register_address)
557         (pushf_register): Cast to GCC_UINTPTR.
558         (do_compile_dwarf_expr_to_c): Use unused attribute.  Add space after
559         type.  Use GCC_UINTPTR instead of void *.  Remove excessive cast.
560         (compile_dwarf_expr_to_c): Use GCC_UINTPTR instead of void *.
561         * compile/compile.c (_initialize_compile): Enable warnings for
562         COMPILE_ARGS.
563
564 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
565
566         * cli/cli-script.c (execute_control_command): Update
567         eval_compile_command caller.
568         * compile/compile-object-load.c (compile_object_load): Add parameters
569         scope and scope_data.  Set them.
570         * compile/compile-object-load.h (struct compile_module): Add fields
571         scope and scope_data.
572         (compile_object_load): Add parameters scope and scope_data.
573         * compile/compile-object-run.c (struct do_module_cleanup): Add fields
574         scope and scope_data.
575         (compile_object_run): Propagate the fields scope and scope_data.
576         * compile/compile.c (compile_file_command, compile_code_command):
577         Update eval_compile_command callers.
578         (eval_compile_command): Add parameter scope_data.  Pass it plus scope.
579         * compile/compile.h (eval_compile_command): Add parameter scope_data.
580         * defs.h (struct command_line): Add field scope_data.
581
582 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
583
584         * printcmd.c (struct format_data): Move it to valprint.h.
585         (print_command_parse_format, print_value): New functions from ...
586         (print_command_1): ... here.  Call them.
587         * valprint.h (struct format_data): Move it here from printcmd.c.
588         (print_command_parse_format, print_value): New declarations.
589
590 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
591
592         * compile/compile-object-load.c (compile_object_load): Add
593         COMPILE_DEBUG message.
594
595 2015-05-15  Jerome Guitton  <guitton@adacore.com>
596
597         * ada-lang.c (ada_value_ptr_subscript): Use enum position of
598         index to get element instead of enum value.
599         (ada_value_slice_from_ptr, ada_value_slice): Use enum position
600         of index to compute length, but enum values to compute bounds.
601         (ada_array_length): Use enum position of index instead of enum value.
602         (pos_atr): Move position computation to...
603         (ada_evaluate_subexp): Use enum values to compute bounds.
604         * gdbtypes.c (discrete_position): ...this new function.
605         * gdbtypes.h (discrete_position): New function declaration.
606         * valprint.c (val_print_array_elements): Call discrete_position
607         to handle array indexed by non-contiguous enumeration types.
608
609 2015-05-15  Jerome Guitton  <guitton@adacore.com>
610
611         * ada-lang.c (find_parallel_type_by_descriptive_type):
612         Go through typedefs during lookup.
613         (to_fixed_array_type): Add support for non-bit packed arrays
614         as variable-length fields.
615
616 2015-05-15  Pedro Alves  <palves@redhat.com>
617             Simon Marchi  <simon.marchi@ericsson.com>
618
619         * event-loop.c (gdb_notifier) <next_file_handler,
620         next_poll_fds_index>: New fields.
621         (get_next_file_handler_to_handle_and_advance): New function.
622         (delete_file_handler): If deleting the next file handler to
623         handle, advance to the next file handler.
624         (gdb_wait_for_event): Bail early if no event fired.  Poll file
625         handlers in round-robin fashion.
626
627 2015-05-15  Pedro Alves  <palves@redhat.com>
628
629         * linux-tdep.c (linux_find_memory_regions_full): Rename local
630         'private' to 'priv'.
631
632 2015-05-15  Pedro Alves  <palves@redhat.com>
633
634         * nat/linux-nat.h: Include "target/waitstatus.h".
635
636 2015-05-15  Yuanhui Zhang  <asmwarrior@gmail.com>
637
638         * python/py-unwind.c (struct reg_info): Move out of ...
639         (struct cached_frame_info): ... this scope.
640         (pending_frame_object_type, unwind_info_object_type): Make extern.
641
642 2015-05-15  Joel Brobecker  <brobecker@adacore.com>
643
644         * ada-lang.c (ada_value_primitive_packed_val): Make sure
645         accumSize is never negative.
646
647 2015-05-14  Patrick Palka  <patrick@parcs.ath.cx>
648
649         * tui/tui-command.c: Remove include of <ctype.h>.
650         (tui_dispatch_ctrl_char): Remove workaround for xterm terminals.
651
652 2015-05-13  Martin Galvan  <martin.galvan@tallertechnologies.com>
653
654         * dwarf2read.c (die_needs_namespace): Return 1 for
655         DW_TAG_inlined_subroutine.
656
657 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
658
659         * regcache.c (regcache_cpy_no_passthrough): New declaration.
660         (regcache_cpy_no_passthrough): Make it static, add function comment.
661         * regcache.h (regcache_dup, regcache_cpy): Reduce/update their comment.
662         (regcache_cpy_no_passthrough): Remove declaration.
663
664 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
665
666         * gdbthread.h (struct thread_control_state): Update comment for
667         proceed_to_finish.
668         * infcall.c (run_inferior_call): Update comment about
669         proceed_to_finish.
670         * infcmd.c (get_return_value): Update comment about stop_registers.
671         (finish_forward): Update comment about proceed_to_finish.
672         * infrun.c (stop_registers): Remove.
673         (clear_proceed_status, normal_stop): Remove stop_registers handling.
674         * infrun.h (stop_registers): Remove.
675
676 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
677
678         * infcall.c (struct dummy_frame_context_saver)
679         (dummy_frame_context_saver_data_free, dummy_frame_context_saver_dtor)
680         (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup)
681         (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup):
682         New.
683         (call_function_by_hand_dummy): Move discard_cleanups of
684         inf_status_cleanup before dummy_frame_push.  Call
685         dummy_frame_context_saver_setup and prepare context_saver_cleanup.
686         Use dummy_frame_context_saver_get_regs instead of stop_registers.
687         * infcall.h (struct dummy_frame_context_saver)
688         (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup)
689         (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup):
690         New declarations.
691         * infcmd.c: Include infcall.h.
692         (get_return_value): Add parameter ctx_saver, use it instead of
693         stop_registers.
694         (print_return_value): Add parameter ctx_saver, pass it.
695         (struct finish_command_continuation_args): Add field ctx_saver.
696         (finish_command_continuation): Update print_return_value caller.
697         (finish_command_continuation_free_arg): Free also ctx_saver.
698         (finish_forward): Call dummy_frame_context_saver_setup.
699         * inferior.h (struct dummy_frame_context_saver): New declaration.
700         (get_return_value): Add parameter ctx_saver.
701         * python/py-finishbreakpoint.c (bpfinishpy_pre_stop_hook): Update
702         get_return_value caller.
703
704 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
705
706         * dummy-frame.c (struct dummy_frame_dtor_list): New.
707         (struct dummy_frame): Replace dtor and dtor_data by dtor_list.
708         (remove_dummy_frame): Process dtor_list.
709         (pop_dummy_frame): Process dtor_list.
710         (register_dummy_frame_dtor): Maintain dtor_list.
711         (find_dummy_frame_dtor): Handle dtor_list.
712         * dummy-frame.h (register_dummy_frame_dtor, find_dummy_frame_dtor):
713         Update comments.
714
715 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
716
717         * compile/compile-object-run.c (do_module_cleanup): Add parameter
718         registers_valid.
719         (compile_object_run): Update do_module_cleanup caller.
720         * dummy-frame.c: Include infcall.h.
721         (struct dummy_frame): Update dtor comment.
722         (remove_dummy_frame): Call dtor.
723         (pop_dummy_frame): Update dtor caller.
724         * dummy-frame.h (dummy_frame_dtor_ftype): Add parameter
725         registers_valid.
726
727 2015-05-13  Joel Brobecker  <brobecker@adacore.com>
728
729         GDB 7.9.1 released.
730
731 2015-05-13  Joel Brobecker  <brobecker@adacore.com>
732
733         * NEWS: Create "Changes in GDB 7.9.1" section.  Move news about
734         Xmethods now being able to specify a result type to that new
735         sectioin.
736
737 2015-05-13  Patrick Palka  <patrick@parcs.ath.cx>
738
739         * tui/tui-win.c (tui_async_resize_screen): Clear win_resized
740         first before resizing the window.
741         * tui/tui.c (tui_enable): Likewise.
742
743 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
744
745         * dummy-frame.c (struct dummy_frame): Use proper typedef for dtor.
746         * dummy-frame.h (dummy_frame_dtor_ftype): Add its comment.
747         * infcall.c (call_function_by_hand_dummy): Use proper typedef for
748         dummy_dtor parameter.
749         * infcall.h: Include dummy-frame.h.
750         (call_function_by_hand_dummy_dtor_ftype): Remove.
751         (call_function_by_hand_dummy): Use proper typedef for dummy_dtor
752         parameter.
753
754 2015-05-13  Patrick Palka  <patrick@parcs.ath.cx>
755
756         PR gdb/17820
757         * top.c (history_size_setshow_var): Change type to signed.
758         Initialize to -2.  Update documentation.
759         (set_readline_history_size): Define.
760         (set_history_size_command): Use it.  Remove logic for handling
761         out-of-range sizes.
762         (init_history): Use set_readline_history_size().  Test for a
763         value of -2 instead of 0 when determining whether to set a
764         default history size.
765         (init_main): Decode the argument of the "size" command as a
766         zuinteger_unlimited.
767
768 2015-05-12  Doug Evans  <dje@google.com>
769
770         * dwarf2read.c (struct file_entry): Tweak comments.
771         (get_debug_line_section): Tweak comments.
772
773 2015-05-12  Don Breazeal  <donb@codesourcery.com>
774
775         * NEWS: Announce fork support in the RSP and support
776         for fork debugging in extended mode.
777
778 2015-05-12  Don Breazeal  <donb@codesourcery.com>
779
780         * remote.c (remote_insert_fork_catchpoint): New function.
781         (remote_remove_fork_catchpoint): New function.
782         (remote_insert_vfork_catchpoint): New function.
783         (remote_remove_vfork_catchpoint): New function.
784         (pending_fork_parent_callback): New function.
785         (remove_new_fork_child): New function.
786         (remote_update_thread_list): Call remote_notif_get_pending_events
787         and remove_new_fork_child.
788         (extended_remote_kill): Kill fork child when killing the
789         parent before follow_fork completes.
790         (init_extended_remote_ops): Initialize target vector with
791         new fork catchpoint functions.
792
793 2015-05-12  Don Breazeal  <donb@codesourcery.com>
794
795         * remote.c (remove_vfork_event_p): New function.
796         (remote_follow_fork): Add vfork event type to event checking.
797         (remote_parse_stop_reply): New stop reasons "vfork" and
798         "vforkdone" for RSP 'T' Stop Reply Packet.
799
800 2015-05-12  Don Breazeal  <donb@codesourcery.com>
801
802         * linux-nat.c (linux_nat_ptrace_options): New function.
803         (linux_init_ptrace, wait_lwp, linux_nat_filter_event):
804         Call linux_nat_ptrace_options and use different argument to
805         linux_enable_event_reporting.
806         (_initialize_linux_nat): Delete call to
807         linux_ptrace_set_additional_flags.
808         * nat/linux-ptrace.c (current_ptrace_options): Rename to
809         supported_ptrace_options.
810         (additional_flags): Delete variable.
811         (linux_check_ptrace_features): Use supported_ptrace_options.
812         (linux_test_for_tracesysgood, linux_test_for_tracefork):
813         Likewise, and remove additional_flags check.
814         (linux_enable_event_reporting): Change 'attached' argument to
815         'options'.  Use supported_ptrace_options.
816         (ptrace_supports_feature): Change comment.  Use
817         supported_ptrace_options.
818         (linux_ptrace_set_additional_flags): Delete function.
819         * nat/linux-ptrace.h (linux_ptrace_set_additional_flags):
820         Delete function prototype.
821         * remote.c (remote_fork_event_p): New function.
822         (remote_detach_pid): New function.
823         (remote_detach_1): Call remote_detach_pid, don't mourn inferior
824         if doing detach-on-fork.
825         (remote_follow_fork): New function.
826         (remote_parse_stop_reply): Handle new "T" stop reason "fork".
827         (remote_pid_to_str): Print "process" strings for pid/0/0 ptids.
828         (init_extended_remote_ops): Initialize to_follow_fork.
829
830 2015-05-12  Don Breazeal  <donb@codesourcery.com>
831
832         * nat/linux-ptrace.c (linux_check_ptrace_features): Change
833         from static to extern.
834         * nat/linux-ptrace.h (linux_check_ptrace_features): Declare.
835         * remote.c (anonymous enum): <PACKET_fork_event_feature,
836         * PACKET_vfork_event_feature>: New enumeration constants.
837         (remote_protocol_features): Add table entries for new packets.
838         (remote_query_supported): Add new feature queries to qSupported
839         packet.
840
841 2015-05-12  Gary Benson <gbenson@redhat.com>
842
843         * remote.c (remote_add_inferior): Call exec_file_locate_attach
844         for fake PIDs as well as real ones.
845         (remote_pid_to_exec_file): Send empty annex if PID is fake.
846
847 2015-05-09  Siva Chandra Reddy  <sivachandra@google.com>
848
849         * NEWS (Python Scripting): Mention the new gdb.Value methods.
850         * python/py-value.c (valpy_reference_value): New function.
851         (valpy_const_value): Likewise.
852         (value_object_methods): Add new methods.
853         * value.c (make_cv_value): New function.
854         * value.h (make_cv_value): Declare.
855
856 2015-05-08  Yao Qi  <yao@codesourcery.com>
857             Sandra Loosemore  <sandra@codesourcery.com>
858
859         * dwarf2read.c (setup_type_unit_groups): Do NULL pointer check
860         to 'lh->include_dirs' before accessing to it.
861         (psymtab_include_file_name): Likewise.
862         (dwarf_decode_lines_1): Likewise.
863         (dwarf_decode_lines): Likewise.
864         (file_file_name): Likewise.
865
866 2015-05-08  Sandra Loosemore  <sandra@codesourcery.com>
867
868         * nios2-linux-tdep.c (NIOS2_SIGRETURN_TRAMP_ADDR): Define.
869         (NIOS2_SIGRETURN_REGSAVE_OFFSET): Define.
870         (nios2_linux_rt_sigreturn_init): Adjust base address of
871         register save area.
872
873 2015-05-08  Sandra Loosemore  <sandra@codesourcery.com>
874
875         * nios2-tdep.c (nios2_breakpoint_from_pc): Revert to using
876         "trap 31" as the breakpoint instruction on all targets.
877
878 2015-05-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
879
880         * infcmd.c (print_return_value): Remove unused declaration.
881
882 2015-05-08  Joel Brobecker  <brobecker@adacore.com>
883
884         * dwarf2read.c (attr_to_dynamic_prop)
885         <DW_AT_data_member_location>: Use read_type_die isntead of
886         get_die_type.
887
888 2015-05-08  Joel Brobecker  <brobecker@adacore.com>
889
890         * ada-lang.c (ada_convert_actual): Add handling of formals
891         passed inside an aligner type.
892
893 2015-05-08  Joel Brobecker  <brobecker@adacore.com>
894
895         * copyright.py (NOT_FSF_LIST): Remove sim/erc32 entries.
896
897 2015-05-08  Siva Chandra Reddy  <sivachandra@google.com>
898
899         PR python/18291
900         * python/lib/gdb/command/xmethods.py (print_xm_info): Fix typo.
901         Print xmethod matcher status.
902
903 2015-05-08  Andreas Arnez  <arnez@linux.vnet.ibm.com>
904
905         * s390-linux-nat.c (fill_gregset): Avoid relying on the PSWA
906         register in the regcache when treating the PSWM register, and vice
907         versa.
908
909 2015-05-07  Gary Benson <gbenson@redhat.com>
910
911         * linux-thread-db.c (struct thread_db_info)
912         <td_ta_map_id2thr_p>: Remove field.
913         (try_thread_db_load_1): Remove initialization for the above.
914
915 2015-05-07  Gary Benson <gbenson@redhat.com>
916
917         * linux-thread-db.c (struct thread_db_info)
918         <td_thr_validate_p>: Remove field.
919         (try_thread_db_load_1): Remove initialization for the above.
920
921 2015-05-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
922
923         * compile/compile-object-load.c (compile_object_load): Support
924         mst_text_gnu_ifunc.
925
926 2015-05-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
927
928         * compile/compile.c (compile_to_object): Make the cmd_string parameter
929         const.  Use new variables for the const compatibility.
930         (eval_compile_command): Make the cmd_string parameter const.
931         * compile/compile.h (eval_compile_command): Make the cmd_string
932         parameter const.
933
934 2015-05-06  Joel Brobecker  <brobecker@adacore.com>
935
936         * defs.h (deprecated_init_ui_hook): Delete.  Remove associated
937         comment.
938         * top.c (deprecated_init_ui_hook): Delete.
939         (gdb_init): Remove handling of deprecated_init_ui_hook.
940         * interps.c (clear_interpreter_hooks): Remove handling of
941         deprecated_init_ui_hook.
942         * main.c (captured_main): Update comment.
943
944 2015-05-06  Joel Brobecker  <brobecker@adacore.com>
945
946         * solib.c (_initialize_solib): Add "info dll" alias creation.
947         * windows-nat.c (set_windows_aliases): Delete.
948         (_initialize_windows_nat): Remove deprecated_init_ui_hook
949         assignment.
950         * NEWS: Add news entry about "info dll" now being available
951         on all platforms.
952
953 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
954
955         * ada-lang.c (value_assign_to_component): Reformat and improve
956         documentation. Remove all trailing spaces.
957
958 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
959
960         * inline-frame.c (inline_frame_sniffer, skip_inline_frames):
961         Stop counting inlined frames as soon as an out-of-line function
962         is found.
963
964 2014-05-05  Pierre-Marie de Rodat  <derodat@adacore.com>
965
966         * dwarf2read.c (inherit_abstract_dies): Skip
967         DW_TAG_GNU_call_site dies while inheriting children of an
968         abstract DIE into a scope.
969         (read_lexical_block_scope): Inherit abstract DIE's for
970         lexical scopes.
971
972 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
973
974         * ada-valprint.c (val_print_packed_array_elements): Delete
975         variable "len".  Add a type-length check when comparing two
976         consecutive elements of the array.  Use the element's actual
977         length in call to value_contents_eq.
978         * ada-lang.c (ada_value_primitive_packed_val): Always return
979         a value whose type has been resolved.
980
981 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
982
983         * ada-lang.c (ada_value_primitive_packed_val): Recompute
984         BIT_SIZE and LEN if the size of the resolved type is smaller
985         than BIT_SIZE * HOST_CHAR_BIT.
986
987 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
988
989         * ada-lang.c (ada_value_primitive_packed_val): Use a more
990         correct address in call to value_at.  Adjust call to
991         value_address accordingly.
992
993 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
994
995         * ada-valprint.c (ada_val_print_1): Resolve TYPE before trying
996         to print it.
997
998 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
999
1000         * dwarf2loc.h (struct property_addr_info): Add "valaddr" field.
1001         * dwarf2loc.c (dwarf2_evaluate_property): Add handling of
1002         pinfo->valaddr.
1003         * gdbtypes.h (resolve_dynamic_type): Add "valaddr" parameter.
1004         * gdbtypes.c (resolve_dynamic_struct): Set pinfo.valaddr.
1005         (resolve_dynamic_type_internal): Set pinfo.valaddr.
1006         Add handling of addr_stack->valaddr.
1007         (resolve_dynamic_type): Add "valaddr" parameter.
1008         Set pinfo.valaddr field.
1009         * ada-lang.c (ada_discrete_type_high_bound): Update call to
1010         resolve_dynamic_type.
1011         (ada_discrete_type_low_bound): Likewise.
1012         * findvar.c (default_read_var_value): Likewise.
1013         * value.c (value_from_contents_and_address): Likewise.
1014
1015 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
1016
1017         * gdbtypes.c (resolve_dynamic_array): Use
1018         create_array_type_with_stride instead of create_array_type.
1019
1020 2015-04-30  DJ Delorie  <dj@redhat.com>
1021
1022         * rl78-tdep.c (rl78_analyze_prologue): Pass RL78_ISA_DEFAULT to
1023         rl78_decode_opcode
1024
1025 2015-04-29  Doug Evans  <dje@google.com>
1026
1027         PR python/18285
1028         * NEWS: Document new gdb.XMethodWorker.get_result_type method.
1029         * eval.c (evaluate_subexp_standard) <OP_FUNCALL>: Handle
1030         EVAL_AVOID_SIDE_EFFECTS for xmethods.
1031         * extension-priv.h (struct extension_language_ops)
1032         <get_xmethod_result_type>: New member.
1033         * extension.c (get_xmethod_result_type): New function.
1034         * extension.h (get_xmethod_result_type): Declare.
1035         * python/py-xmethods.c (get_result_type_method_name): New static
1036         global.
1037         (py_get_result_type_method_name): Ditto.
1038         (gdbpy_get_xmethod_result_type): New function.
1039         (gdbpy_initialize_xmethods): Initialize py_get_result_type_method_name.
1040         * python/python-internal.h (gdbpy_get_xmethod_result_type): Declare.
1041         * python/python.c (python_extension_ops): Add
1042         gdbpy_get_xmethod_result_type.
1043         * python/lib/gdb/xmethod.py (XMethodWorker): Add get_result_type.
1044         * valarith.c (value_x_binop): Handle EVAL_AVOID_SIDE_EFFECTS for
1045         xmethods.
1046         (value_x_unop): Ditto.
1047         * value.c (result_type_of_xmethod): New function.
1048         * value.h (result_type_of_xmethod): Declare.
1049
1050 2015-04-29  Gary Benson <gbenson@redhat.com>
1051
1052         * solib.c (solib_find_1): Allow fd argument to be NULL.
1053         (exec_file_find): Update comment.
1054         (solib_find): Likewise.
1055         * exec.c (exec_file_locate_attach): Use NULL as fd
1056         argument to exec_file_find to avoid having to close
1057         the opened file.
1058         * infrun.c (follow_exec): Likewise.
1059
1060 2015-04-28  Doug Evans  <dje@google.com>
1061
1062         PR python/18299
1063         * python/lib/gdb/printing.py (register_pretty_printer): Handle
1064         name or __name__ attributes.  Handle gdb module as first argument.
1065
1066 2015-04-28  Doug Evans  <dje@google.com>
1067
1068         PR python/18089
1069         * python/py-prettyprint.c (print_children): Verify result of children
1070         iterator.  Provide better error message.
1071         * python/python-internal..h (gdbpy_print_python_errors_p): Declare.
1072         * python/python.c (gdbpy_print_python_errors_p): New function.
1073
1074 2015-04-28  Doug Evans  <dje@google.com>
1075
1076         * gdbtypes.h (struct cplus_struct_type) <n_baseclasses>: Fix comment.
1077
1078 2015-04-28  Sasha Smundak  <asmundak@google.com>
1079
1080         * NEWS: Mention gdb.Type.optimized_out method.
1081         * python/py-type.c (typy_optimized_out):  New function.
1082
1083 2015-04-28  John Baldwin  <jhb@FreeBSD.org>
1084
1085         * fbsd-nat.c: Include "gdb_wait.h" instead of <sys/wait.h>.
1086
1087 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
1088
1089         * utils.c (init_page_info): Set rl_catch_sigwinch to zero.
1090         (initialize_utils): Move call of init_page_info() to ...
1091         * top.c (gdb_init): ... here.
1092
1093 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
1094
1095         * tui/tui-win.c (tui_sigwinch_handler): Remove now-stale comment.
1096         (tui_sigwinch_handler): Still update our idea of
1097         the terminal's width and height even when TUI is not active.
1098
1099 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
1100
1101         * utils.h (set_screen_width_and_height): Declare.
1102         * utils.c (set_screen_width_and_height): Define.
1103         * tui/tui-win.c (tui_update_gdb_sizes): Use it.
1104
1105 2015-04-28  Gary Benson <gbenson@redhat.com>
1106
1107         * infrun.c (solist.h): New include.
1108         (follow_exec): Use exec_file_find to prefix execd_pathname
1109         with gdb_sysroot.
1110
1111 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
1112
1113         * tui/tui-source.c (tui_set_source_content): Avoid calling
1114         strcpy() when offset is 0.
1115
1116 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
1117
1118         PR gdb/18155
1119         * tui/tui-data.c (tui_free_window): Don't free the locator
1120         window when passed an SRC_WIN or a DISASSEM_WIN.
1121
1122 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
1123
1124         * tui/tui-data.h (struct tui_win_element): Forward-declare.
1125         (tui_win_content): Move declaration.
1126         (struct tui_gen_win_info): Give 'content' field the
1127         type tui_win_content.
1128         * tui/tui-data.c (init_content_element): Remove redundant and
1129         erroneous casts.
1130         (tui_add_content_elements): Remove erroneous cast.
1131         * tui/tui-disasm.c (tui_set_disassem_content): Remove redundant
1132         casts.
1133         (tui_get_begin_asm_address): Likewise.
1134         * tui/tui-regs.c (tui_show_registers): Likewise.
1135         (tui_show_register_group): Likewise.
1136         (tui_display_registers_from): Likewise.
1137         (tui_check_register_values): Likewise.
1138         * tui/tui-source.c (tui_set_source_content): Likewise.
1139         (tui_set_source_content_nil): Likewise.
1140         (tui_source_is_displayed): Likewise.
1141         * tui/tui-stack.c (tui_show_locator_content): Likewise.
1142         (tui_set_locator_fullname): Likewise.
1143         (tui_set_locator_info): Likewise.
1144         (tui_show_frame_info): Likewise.
1145         * tui/tui-winsource.c (tui_clear_source_content): Likewise.
1146         (tui_show_source_line): Likewise.
1147         (tui_horizontal_source_scroll): Likewise.
1148         (tui_update_breakpoint_info): Likewise.
1149         (tui_set_exec_info_content): Likewise.
1150         (tui_show_exec_info_content): Likewise.
1151         (tui_alloc_source_buffer): Likewise.
1152         (tui_line_is_displayed): Likewise.
1153         (tui_addr_is_displayed): Likewise.
1154
1155 2015-04-27  John Baldwin  <jhb@FreeBSD.org>
1156
1157         * fbsd-nat.c: (fbsd_wait) [PL_FLAG_EXEC]: Report TARGET_WAITKIND_EXECD
1158         event if PL_FLAG_EXEC is set.
1159         [PL_FLAG_EXEC] (fbsd_insert_exec_catchpoint): New function.
1160         [PL_FLAG_EXEC] (fbsd_remove_exec_catchpoint): New function.
1161         (fbsd_nat_add_target) [PL_FLAG_EXEC]: Set
1162         "to_insert_exec_catchpoint" to "fbsd_insert_exec_catchpoint".
1163         Set "to_remove_exec_catchpoint" to "fbsd_remove_exec_catchpoint".
1164
1165 2015-04-27  John Baldwin  <jhb@FreeBSD.org>
1166
1167         * fbsd-nat.c: [PT_LWPINFO] New variable super_wait.
1168         [TDP_RFPPWAIT] New variable fbsd_pending_children.
1169         [TDP_RFPPWAIT] (fbsd_remember_child): New function.
1170         [TDP_RFPPWAIT] (fbsd_is_child_pending): New function.
1171         [TDP_RFPPWAIT] (fbsd_fetch_kinfo_proc): New function.
1172         [PT_LWPINFO] (fbsd_wait): New function.
1173         [TDP_RFPPWAIT] (fbsd_follow_fork): New function.
1174         [TDP_RFPPWAIT] (fbsd_insert_fork_catchpoint): New function.
1175         [TDP_RFPPWAIT] (fbsd_remove_fork_catchpoint): New function.
1176         [TDP_RFPPWAIT] (fbsd_insert_vfork_catchpoint): New function.
1177         [TDP_RFPPWAIT] (fbsd_remove_vfork_catchpoint): New function.
1178         [TDP_RFPPWAIT] (fbsd_enable_follow_fork): New function.
1179         [TDP_RFPPWAIT] (fbsd_post_startup_inferior): New function.
1180         [TDP_RFPPWAIT] (fbsd_post_attach): New function.
1181         (fbsd_nat_add_target) [PT_LWPINFO] Set "to_wait" to
1182         "fbsd_wait".
1183         [TDP_RFPPWAIT] Set "to_follow_fork" to "fbsd_follow_fork".
1184         Set "to_insert_fork_catchpoint" to "fbsd_insert_fork_catchpoint".
1185         Set "to_remove_fork_catchpoint" to "fbsd_remove_fork_catchpoint".
1186         Set "to_insert_vfork_catchpoint" to "fbsd_insert_vfork_catchpoint".
1187         Set "to_remove_vfork_catchpoint" to "fbsd_remove_vfork_catchpoint".
1188         Set "to_post_startup_inferior" to "fbsd_post_startup_inferior".
1189         Set "to_post_attach" to "fbsd_post_attach".
1190
1191 2015-04-27  John Baldwin  <jhb@FreeBSD.org>
1192
1193         * fbsd-nat.c (fbsd_pid_to_exec_file): Mark static.
1194         (fbsd_find_memory_regions): Mark static.
1195         (fbsd_nat_add_target): New function.
1196         * fbsd-nat.h: Export fbsd_nat_add_target and remove prototypes for
1197         fbsd_pid_to_exec_file and fbsd_find_memory_regions.
1198         * amd64fbsd-nat.c (_initialize_amd64fbsd_nat): Use fbsd_nat_add_target.
1199         * i386fbsd-nat.c (_initialize_i386fbsd_nat): Likewise.
1200         * ppcfbsd-nat.c (_initialize_ppcfbsd_nat): Likewise.
1201         * sparc64fbsd-nat.c (_initialize_sparc64fbsd_nat): Likewise.
1202
1203 2015-04-27  Gary Benson <gbenson@redhat.com>
1204
1205         * objfiles.c (allocate_objfile): Do not attempt to expand name
1206         if name is a "target:" filename.
1207         * auto-load.c (load_auto_scripts_for_objfile): Do not attempt
1208         to load auto-load scripts for objfiles with "target:" filenames.
1209
1210 2015-04-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1211
1212         * s390-linux-tdep.c: Include "elf/s390.h" and "elf-bfd.h".
1213         (enum s390_vector_abi_kind): New enum.
1214         (struct gdbarch_tdep)<vector_abi>: New field.
1215         (s390_effective_inner_type): Add parameter min_size.  Stop
1216         unwrapping if the inner type is smaller than min_size.
1217         (s390_function_arg_float): Adjust call to
1218         s390_effective_inner_type.
1219         (s390_function_arg_vector): New function.
1220         (s390_function_arg_integer): Adjust comment.
1221         (struct s390_arg_state)<vr>: New field.
1222         (s390_handle_arg): Add parameter 'is_unnamed'.  Pass vector
1223         arguments according to vector ABI when appropriate.
1224         (s390_push_dummy_call): Initialize the argument state's field
1225         'vr'.  Adjust calls to s390_handle_arg.
1226         (s390_register_return_value): Handle vector return values.
1227         (s390_return_value): Apply the "register" return value convention
1228         to a vector when appropriate.
1229         (s390_gdbarch_init): Initialize tdep->vector_abi.
1230         * NEWS: Announce S390 vector ABI support.
1231
1232 2015-04-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1233
1234         * s390-linux-tdep.c (s390_return_value_convention): Remove
1235         function.  Inline its logic...
1236         (s390_return_value): ...here.  Instead, move the handling of the
1237         "register" return value convention...
1238         (s390_register_return_value): ...here.  New function.
1239
1240 2015-04-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1241
1242         * s390-linux-tdep.c
1243         (is_float_singleton): Remove function.  Move the "singleton" part
1244         of the logic...
1245         (s390_effective_inner_type): ...here.  New function.
1246         (is_float_like): Remove function.  Inline its logic...
1247         (s390_function_arg_float): ...here.
1248         (is_pointer_like, is_integer_like, is_struct_like): Remove
1249         functions.  Inline their logic...
1250         (s390_function_arg_integer): ...here.
1251         (s390_function_arg_pass_by_reference): Remove function.
1252         (extend_simple_arg): Remove function.
1253         (alignment_of): Remove function.
1254         (struct s390_arg_state): New structure.
1255         (s390_handle_arg): New function.
1256         (s390_push_dummy_call): Move parameter placement logic to the new
1257         function s390_handle_arg.  Call it for calculating the stack area
1258         sizes first, and again for actually writing the parameters.
1259
1260 2015-04-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1261
1262         * s390-linux-tdep.c (is_power_of_two): Add comment.  Return
1263           false if the argument is zero.
1264
1265 2015-04-27  Pierre-Marie de Rodat  <derodat@adacore.com>
1266
1267         * ada-lang.c (template_to_static_fixed_type): Return input type
1268         when it is already fixed.  Cache the input type itself when not
1269         creating a static fixed copy.  Make it explicit that we never
1270         molestate the input type.
1271         * gdbtypes.c (resolve_dynamic_struct): Reset the
1272         TYPE_TARGET_TYPE field for resolved copies.
1273
1274 2015-04-27  Joel Brobecker  <brobecker@adacore.com>
1275
1276         * ada-lang.c (ada_is_tagged_type): Add call to ada_check_typedef.
1277         (ada_lookup_struct_elt_type): Remove calls to ada_check_typedef.
1278         (template_to_static_fixed_type): Call ada_check_typedef only
1279         when necessary.
1280
1281 2015-04-24  Andrew Burgess  <andrew.burgess@embecosm.com>
1282
1283         * cli/cli-dump.c (srec_dump_command): Add internationalization
1284         mark ups.
1285         (ihex_dump_command): Likewise.
1286         (tekhex_dump_command): Likewise.
1287         (binary_dump_command): Likewise.
1288         (binary_append_command): Likewise.
1289
1290 2015-04-24  Andrew Burgess  <andrew.burgess@embecosm.com>
1291
1292         * cli/cli-dump.c (verilog_cmdlist): New variable.
1293         (dump_verilog_memory): New function.
1294         (dump_verilog_value): New function.
1295         (verilog_dump_command): New function.
1296         (_initialize_cli_dump): Add new commands to support verilog dump
1297         format.
1298         * NEWS: Add entry for "dump verilog".
1299
1300 2015-04-24  Pierre-Marie de Rodat  <derodat@adacore.com>
1301
1302         * gdbtypes.c (print_gnat_stuff): Do not recurse on the
1303         descriptive type when there is none.
1304
1305 2015-04-23  Patrick Palka  <patrick@parcs.ath.cx>
1306
1307         * tui/tui-win.c (tui_async_resize_screen): Call
1308         rl_resize_terminal().
1309
1310 2015-04-22  Jon Turney  <jon.turney@dronecode.org.uk>
1311
1312         * windows-nat.c (handle_output_debug_string): Don't change
1313         current_event.dwThreadId.
1314         (get_windows_debug_event): Use thread_id, rather than relying on
1315         current_event.dwThreadId being changed.
1316
1317 2015-04-22  Jon Turney  <jon.turney@dronecode.org.uk>
1318
1319         * windows-nat.c (windows_continue): Report an error if
1320         ContinueDebugEvent() fails.
1321
1322 2015-04-16  Jon Turney  <jon.turney@dronecode.org.uk>
1323
1324         * windows-nat.c (windows_resume): Fix misspelling in debug output.
1325
1326 2015-04-16  Jon Turney  <jon.turney@dronecode.org.uk>
1327
1328         * windows-nat.c (get_windows_debug_event): Replace retval with
1329         thread_id throughout.  Update stale comment.
1330
1331 2015-04-16  Jon Turney  <jon.turney@dronecode.org.uk>
1332
1333         * windows-nat.c (get_windows_debug_event): Don't use ternary
1334         conditional operator.
1335
1336 2015-04-21  Pierre Muller  <muller@sourceware.org>
1337
1338         PR pascal/17815
1339         p-exp.y (yylex): Reorganize code to return the matched pattern
1340         for a field of this.
1341
1342 2015-04-21  Gary Benson <gbenson@redhat.com>
1343
1344         * common/fileio.h (fileio_to_host_openflags): New declaration.
1345         * common/fileio.c (fcntl.h): New include.
1346         (fileio_to_host_openflags): New function, factored out from...
1347         * inf-child.c (inf_child_fileio_open_flags_to_host): ...here.
1348         Single use updated.
1349
1350 2015-04-21  Kevin Buettner  <kevinb@redhat.com>
1351
1352         * rl78-tdep.c (RL78_SP_ADDR): Define.
1353         (opc_reg_to_gdb_regnum): New static function.
1354         (rl78_analyze_prologue): Recognize instructions forming slightly
1355         more interesting prologues.
1356
1357 2015-04-20  Pierre-Marie de Rodat  <derodat@adacore.com>
1358
1359         Revert:
1360         2015-04-03  Pierre-Marie de Rodat  <derodat@adacore.com>
1361         * gdbtypes.c (is_dynamic_type_internal): Remove special handling of
1362         TYPE_CODE_REF types so that they are not considered as dynamic
1363         depending on the referenced type.
1364         (resolve_dynamic_type_internal): Likewise.
1365
1366 2015-04-20  Pierre-Marie de Rodat  <derodat@adacore.com>
1367
1368         Revert:
1369         2015-04-03  Pierre-Marie de Rodat  <derodat@adacore.com>
1370         * gdbtypes.c (is_dynamic_type_internal): Remove the unused
1371         "top_level" parameter.
1372         (resolve_dynamic_type_internal): Remove the unused "top_level"
1373         parameter.  Update call to is_dynamic_type_internal.
1374         (is_dynamic_type): Update call to is_dynamic_type_internal.
1375         (resolve_dynamic_range): Update call to
1376         resolve_dynamic_type_internal.
1377         (resolve_dynamic_union): Likewise.
1378         (resolve_dynamic_struct): Likewise.
1379         (resolve_dynamic_type): Likewise.
1380
1381 2015-04-19  Gabriel Krisman Bertazi  <gabriel@krisman.be>
1382
1383         * breakpoint.c (update_dprintf_command_list): Remove duplicated
1384         xmalloc.
1385
1386 2015-04-20  Thomas Schwinge  <thomas@codesourcery.com>
1387
1388         * reply_mig_hack.awk: Robustify parsing.
1389
1390         * reply_mig_hack.awk: Don't bother to declare an intermediate
1391         function pointer variable.
1392
1393 2015-04-17  Doug Evans  <dje@google.com>
1394
1395         * solib-svr4.c (svr4_exec_displacement): Rename outer "displacement"
1396         to "exec_displacement" to avoid confusion with inner use of the name.
1397
1398 2015-04-17  Pedro Alves  <palves@redhat.com>
1399
1400         * arm-linux-nat.c (arm_linux_can_use_hw_breakpoint): Return zero
1401         if HW point of TYPE isn't supported.
1402
1403 2015-04-17  Yao Qi  <yao.qi@linaro.org>
1404             Pedro Alves  <palves@redhat.com>
1405
1406         * target.h (target_can_use_hardware_watchpoint): Update comments.
1407         Remove trailing ";".
1408
1409 2015-04-17  Gary Benson <gbenson@redhat.com>
1410
1411         * remote.c (remote_add_inferior): New argument try_open_exec.
1412         If nonzero, attempt to open the inferior's executable file as
1413         the main executable if no main executable is open already.
1414         All callers updated.
1415         * NEWS: Mention that GDB now supports automatic location and
1416         retrieval of executable + files from remote targets.
1417
1418 2015-04-17  Gary Benson <gbenson@redhat.com>
1419
1420         * target.h (TARGET_OBJECT_EXEC_FILE): New enum value.
1421         * remote.c (PACKET_qXfer_exec_file): Likewise.
1422         (remote_protocol_features): Register the
1423         "qXfer:exec-file:read" feature.
1424         (remote_xfer_partial): Handle TARGET_OBJECT_EXEC_FILE.
1425         (remote_pid_to_exec_file): New function.
1426         (init_remote_ops): Initialize to_pid_to_exec_file.
1427         (_initialize_remote): Register new "set/show remote
1428         pid-to-exec-file-packet" command.
1429         * NEWS: Announce new qXfer:exec-file:read packet.
1430
1431 2015-04-17  Gary Benson <gbenson@redhat.com>
1432
1433         * nat/linux-procfs.h (linux_proc_pid_to_exec_file):
1434         New declaration.
1435         * nat/linux-procfs.c (linux_proc_pid_to_exec_file):
1436         New function, factored out from...
1437         * linux-nat.c (linux_child_pid_to_exec_file): ...here.
1438
1439 2015-04-17  Gary Benson <gbenson@redhat.com>
1440
1441         * exec.c (solist.h): New include.
1442         (exec_file_locate_attach): Prefix absolute executable
1443         paths with gdb_sysroot if set.
1444         * NEWS: Mention that executable paths may be prepended
1445         with sysroot.
1446
1447 2015-04-17  Gary Benson <gbenson@redhat.com>
1448
1449         * solist.h (exec_file_find): New declaration.
1450         * solib.c (solib_find_1): New function, factored out from...
1451         (solib_find): ...here.
1452         (exec_file_find): New function.
1453
1454 2015-04-17  Gary Benson <gbenson@redhat.com>
1455
1456         * gdbcore.h (exec_file_locate_attach): New declaration.
1457         * exec.c (exec_file_locate_attach): New function, factored
1458         out from...
1459         * infcmd.c (attach_command_post_wait): ...here.
1460
1461 2015-04-17  Mike Frysinger  <vapier@gentoo.org>
1462
1463         * MAINTAINERS: Add myself for Blackfin/write-after-approval.
1464
1465 2015-04-16  Yao Qi  <yao.qi@linaro.org>
1466
1467         * infrun.c (maybe_software_singlestep): Declare.
1468         (displaced_step_fixup): Call maybe_software_singlestep.
1469
1470 2015-04-15  Doug Evans  <dje@google.com>
1471
1472         * psymtab.c (psym_expand_symtabs_matching): Add QUIT call.
1473
1474 2015-04-15  Doug Evans  <dje@google.com>
1475
1476         * dwarf2read.c (dw2_expand_symtabs_matching): Add some QUIT calls.
1477
1478 2015-04-15  Simon Marchi  <simon.marchi@ericsson.com>
1479
1480         * python/lib/gdb/command/unwinders.py: Add parentheses.
1481
1482 2015-04-15  Yao Qi  <yao.qi@linaro.org>
1483
1484         * arm-linux-tdep.c (arm_linux_copy_svc): Update debug message.
1485
1486 2015-04-15  Yao Qi  <yao.qi@linaro.org>
1487
1488         * arm-linux-tdep.c (arm_linux_copy_svc): Fix indentation.
1489
1490 2015-04-15  Yao Qi  <yao.qi@linaro.org>
1491
1492         * arm-linux-tdep.c (arm_linux_cleanup_svc): Use
1493         dsc->insn_size instead of 4.
1494
1495 2015-04-14  Gary Benson <gbenson@redhat.com>
1496
1497         * jit.c (mem_bfd_iovec_stat): Zero supplied buffer.
1498         * minidebug.c (lzma_stat): Likewise.
1499         * solib-spu.c (spu_bfd_iovec_stat): Likewise.
1500         * spu-linux-nat.c (spu_bfd_iovec_stat): Likewise.
1501
1502 2015-04-13  Stan Shebs  <stanshebs@google.com>
1503
1504         * MAINTAINERS: Update my email address.
1505
1506 2015-04-13  John Baldwin  <jhb@FreeBSD.org>
1507
1508         * amd64-tdep.c (amd64_target_description): New function.
1509         * amd64-tdep.h: Export amd64_target_description and tdesc_amd64.
1510         * amd64bsd-nat.c [PT_GETXSTATE_INFO]: New variable amd64bsd_xsave_len.
1511         (amd64bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle
1512         x86 extended save area.
1513         (amd64bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise.
1514         * amd64bsd-nat.h: Export amd64bsd_xsave_len.
1515         * amd64fbsd-nat.c (amd64fbsd_read_description): New function.
1516         (_initialize_amd64fbsd_nat): Set "to_read_description" to
1517         "amd64fbsd_read_description".
1518         * amd64fbsd-tdep.c (amd64fbsd_core_read_description): New function.
1519         (amd64fbsd_supply_xstateregset): New function.
1520         (amd64fbsd_collect_xstateregset): New function.
1521         Add "amd64fbsd_xstateregset".
1522         (amd64fbsd_iterate_over_regset_sections): New function.
1523         (amd64fbsd_init_abi): Set "xsave_xcr0_offset" to
1524         "I386_FBSD_XSAVE_XCR0_OFFSET".
1525         Add "iterate_over_regset_sections" gdbarch method.
1526         Add "core_read_description" gdbarch method.
1527         * i386-tdep.c (i386_target_description): New function.
1528         * i386-tdep.h: Export i386_target_description and tdesc_i386.
1529         * i386bsd-nat.c [PT_GETXSTATE_INFO]: New variable i386bsd_xsave_len.
1530         (i386bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle
1531         x86 extended save area.
1532         (i386bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise.
1533         * i386bsd-nat.h: Export i386bsd_xsave_len.
1534         * i386fbsd-nat.c (i386fbsd_read_description): New function.
1535         (_initialize_i386fbsd_nat): Set "to_read_description" to
1536         "i386fbsd_read_description".
1537         * i386fbsd-tdep.c (i386fbsd_core_read_xcr0): New function.
1538         (i386fbsd_core_read_description): New function.
1539         (i386fbsd_supply_xstateregset): New function.
1540         (i386fbsd_collect_xstateregset): New function.
1541         Add "i386fbsd_xstateregset".
1542         (i386fbsd_iterate_over_regset_sections): New function.
1543         (i386fbsd4_init_abi): Set "xsave_xcr0_offset" to
1544         "I386_FBSD_XSAVE_XCR0_OFFSET".
1545         Add "iterate_over_regset_sections" gdbarch method.
1546         Add "core_read_description" gdbarch method.
1547         * i386fbsd-tdep.h: New file.
1548
1549 2015-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
1550
1551         * NEWS (Changes since GDB 7.9): Add removed -xdb.
1552         * breakpoint.c (command_line_is_silent): Remove xdb_commands
1553         conditional.
1554         (_initialize_breakpoint): Remove xdb_commands for bc, ab, sb, db, ba
1555         and lb.
1556         * cli/cli-cmds.c (_initialize_cli_cmds): Remove xdb_commands for v and
1557         va.
1558         * cli/cli-decode.c (find_command_name_length): Remove xdb_commands
1559         conditional.
1560         * defs.h (xdb_commands): Remove declaration.
1561         * f-valprint.c (_initialize_f_valprint): Remove xdb_commands for lc.
1562         * guile/scm-cmd.c (command_classes): Remove xdb from comment.
1563         * infcmd.c (run_no_args_command, go_command): Remove.
1564         (_initialize_infcmd): Remove xdb_commands for S, go, g, R and lr.
1565         * infrun.c (xdb_handle_command): Remove.
1566         (_initialize_infrun): Remove xdb_commands for lz and z.
1567         * main.c (xdb_commands): Remove variable.
1568         (captured_main): Remove "xdb" from long_options.
1569         (print_gdb_help): Remove --xdb from help.
1570         * python/py-cmd.c (gdbpy_initialize_commands): Remove xdb from comment.
1571         * source.c (_initialize_source): Remove xdb_commands for D, ld, / and ?.
1572         * stack.c (backtrace_full_command, args_plus_locals_info)
1573         (current_frame_command): Remove.
1574         (_initialize_stack): Remove xdb_commands for t, T and l.
1575         * symtab.c (_initialize_symtab): Remove xdb_commands for lf and lg.
1576         * thread.c (_initialize_thread): Remove xdb_commands condition.
1577         * tui/tui-layout.c (tui_toggle_layout_command)
1578         (tui_toggle_split_layout_command, tui_handle_xdb_layout): Remove.
1579         (_initialize_tui_layout): Remove xdb_commands for td and ts.
1580         * tui/tui-regs.c (tui_scroll_regs_forward_command)
1581         (tui_scroll_regs_backward_command): Remove.
1582         (_initialize_tui_regs): Remove xdb_commands for fr, gr, sr, +r and -r.
1583         * tui/tui-win.c (tui_xdb_set_win_height_command): Remove.
1584         (_initialize_tui_win): Remove xdb_commands for U and w.
1585         * utils.c (pagination_on_command, pagination_off_command): Remove.
1586         (initialize_utils): Remove xdb_commands for am and sm.
1587
1588 2015-04-10  Pedro Alves  <palves@redhat.com>
1589
1590         * infrun.c (displaced_step_fixup): Switch to the event ptid
1591         earlier.  If the thread stopped for a watchpoint and the
1592         target/arch has non-continuable watchpoints, cancel the displaced
1593         step.
1594         (resume): Don't start a displaced step if in-line step-over info
1595         is valid.
1596
1597 2015-04-10  Pedro Alves  <palves@redhat.com>
1598
1599         * infrun.c (displaced_step_in_progress): New function.
1600         (do_target_resume): Advise target to report all signals if
1601         displaced stepping.
1602
1603 2015-04-10  Pedro Alves  <palves@redhat.com>
1604
1605         PR gdb/18216
1606         * infrun.c (process_event_stop_test): Don't assume a step-resume
1607         is set if tp->stepped_breakpoint is true.
1608
1609 2015-04-10  Yao Qi  <yao.qi@linaro.org>
1610
1611         * arm-tdep.c (install_alu_reg): Update comment.
1612         (thumb_copy_alu_reg): Remove local variable rn.  Update
1613         debugging message.  Use r2 instead of r1 in the modified
1614         instruction.
1615
1616 2015-04-10  Pedro Alves  <palves@redhat.com>
1617
1618         PR gdb/13858
1619         * amd64-linux-tdep.c (amd64_linux_init_abi_common): Install
1620         linux_displaced_step_location as gdbarch_displaced_step_location
1621         hook.
1622         * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
1623         * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
1624         * linux-tdep.c (linux_displaced_step_location): New function,
1625         based on ppc_linux_displaced_step_location.
1626         * linux-tdep.h (linux_displaced_step_location): New declaration.
1627         * ppc-linux-tdep.c (ppc_linux_entry_point_addr): Delete.
1628         (ppc_linux_inferior_created, ppc_linux_displaced_step_location):
1629         Delete.
1630         (ppc_linux_init_abi): Install linux_displaced_step_location as
1631         gdbarch_displaced_step_location hook, even without Cell/B.E..
1632         (_initialize_ppc_linux_tdep): Don't install
1633         ppc_linux_inferior_created as inferior_created observer.
1634         * s390-linux-tdep.c (s390_gdbarch_init): Install
1635         linux_displaced_step_location as gdbarch_displaced_step_location
1636         hook.
1637
1638 2015-04-09  Gary Benson <gbenson@redhat.com>
1639
1640         * common/common-remote-fileio.h: Rename to...
1641         * common/fileio.h: ...this.  Update all references.
1642         (remote_fileio_to_fio_error): Rename to...
1643         (host_to_fileio_error): ...this.
1644         (remote_fileio_to_be): Rename to...
1645         (host_to_bigendian): ...this.  Update all callers.
1646         (remote_fileio_to_fio_uint): Rename to...
1647         (host_to_fileio_uint): ...this.  Update all callers.
1648         (remote_fileio_to_fio_time): Rename to...
1649         (host_to_fileio_time): ...this.  Update all callers.
1650         (remote_fileio_to_fio_stat): Rename to...
1651         (host_to_fileio_stat): ...this.
1652         Update all references.
1653         * common/common-remote-fileio.c: Rename to...
1654         * common/fileio.c: ...this.  Update all references.
1655         (remote_fileio_to_fio_error): Rename to...
1656         (host_to_fileio_error): ...this.  Update all callers.
1657         (remote_fileio_mode_to_target): Rename to...
1658         (fileio_mode_pack): ...this.  Update all callers.
1659         (remote_fileio_to_fio_mode): Rename to...
1660         (host_to_fileio_mode): ...this.  Update all callers.
1661         (remote_fileio_to_fio_ulong): Rename to...
1662         (host_to_fileio_ulong): ...this.  Update all callers.
1663         (remote_fileio_to_fio_stat): Rename to...
1664         (host_to_fileio_stat): ...this.  Update all callers.
1665
1666 2015-04-09  Andy Wingo  <wingo@igalia.com>
1667
1668         * guile/scm-frame.c (gdbscm_frame_read_register): New function.
1669         (frame_functions): Bind gdbscm_frame_read_register to
1670         frame-read-register.
1671         * guile/lib/gdb.scm (frame-read-register): Export.
1672
1673 2015-04-09  Gary Benson <gbenson@redhat.com>
1674
1675         * common/common-remote-fileio.h (remote_fileio_to_fio_error):
1676         New declaration.
1677         * common/common-remote-fileio.c (remote_fileio_to_fio_error):
1678         New function, factored out the named functions below.
1679         * inf-child.c (gdb/fileio.h): Remove include.
1680         (common-remote-fileio.h): New include.
1681         (inf_child_errno_to_fileio_error): Remove function.  Update
1682         all callers to use remote_fileio_to_fio_error.
1683         * remote-fileio.c (remote_fileio_errno_to_target): Likewise.
1684
1685 2015-04-09  Andy Wingo  <wingo@igalia.com>
1686
1687         * MAINTAINERS (Write After Approval): Add Andy Wingo.
1688
1689 2015-04-09  H.J. Lu  <hongjiu.lu@intel.com>
1690
1691         * acinclude.m4: (GDB_AC_CHECK_BFD): Set ZLIBDIR with $zlibdir.
1692         Replace $zlibdir with $ZLIBDIR in LDFLAGS.
1693         * configure: Regenerated.
1694
1695 2015-04-09  Pedro Alves  <palves@redhat.com>
1696
1697         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add strtok_r.
1698         * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/strtok_r.m4.
1699         * gnulib/configure, gnulib/config.in, gnulib/aclocal.m4: Regenerate.
1700         * gnulib/import/Makefile.am: Update.
1701         * gnulib/import/Makefile.in: Update.
1702         * gnulib/import/m4/gnulib-cache.m4: Update.
1703         * gnulib/import/m4/gnulib-comp.m4: Update.
1704         * gnulib/import/m4/strtok_r.m4: New file.
1705         * gnulib/import/strtok_r.c: New file.
1706
1707 2015-04-09  Pedro Alves  <palves@redhat.com>
1708
1709         * gnulib/update-gnulib.sh (aclocal version check): Filter out
1710         "called too early to check prototype".
1711
1712 2015-04-08  Sergio Durigan Junior  <sergiodj@redhat.com>
1713
1714         PR python/16699
1715         * python/py-cmd.c (cmdpy_completer_helper): Adjust function to not
1716         use a caching mechanism.  Adjust comments and code to reflect
1717         that.  Replace 'sizeof' by 'strlen' when fetching 'wordobj'.
1718         (cmdpy_completer_handle_brkchars): Adjust call to
1719         cmdpy_completer_helper.  Call Py_XDECREF for 'resultobj'.
1720         (cmdpy_completer): Likewise.
1721
1722 2015-04-08  Yao Qi  <yao.qi@linaro.org>
1723
1724         * spu-tdep.c (spu_gdbarch_init): Don't call
1725         set_gdbarch_cannot_step_breakpoint.
1726
1727 2015-04-07  Sergio Durigan Junior  <sergiodj@redhat.com>
1728
1729         * linux-tdep.c (decode_vmflags): Initialize 'saveptr'.
1730
1731 2015-04-07  Pedro Alves  <palves@redhat.com>
1732
1733         * gdbthread.h (ALL_NON_EXITED_THREADS_SAFE): Rename to ...
1734         (ALL_THREADS_SAFE): ... this, and don't skip exited threads.
1735         (delete_exited_threads): New declaration.
1736         * infrun.c (follow_exec): Use ALL_THREADS_SAFE.
1737         * linux-nat.c (linux_nat_update_thread_list): New function.
1738         (linux_nat_add_target): Install it.
1739         * remote.c (remote_update_thread_list): Use ALL_THREADS_SAFE.
1740         * thread.c (prune_threads): Use ALL_THREADS_SAFE.
1741         (delete_exited_threads): New function.
1742
1743 2015-04-07  Pedro Alves  <pedro@codesourcery.com>
1744
1745         * infrun.c (resume) <displaced stepping debug output>: Get the
1746         leader thread's regcache, not resume_ptid's.
1747
1748 2015-04-06  Doug Evans  <xdje42@gmail.com>
1749
1750         * symtab.c (hash_symbol_entry): Hash STRUCT_DOMAIN symbols as
1751         VAR_DOMAIN.
1752         (symbol_cache_lookup): Clarify use of bsc_ptr, slot_ptr parameters.
1753         Include symbol domain in debugging output.
1754
1755 2015-04-06  Pedro Alves  <palves@redhat.com>
1756             Bernd Edlinger  <bernd.edlinger@hotmail.de>
1757
1758         * configure.ac: Remove the mingw32-specific stub-termcap.o
1759         fallback, and instead fallback to the stub termcap on all hosts.
1760         * configure: Regenerate.
1761         * stub-termcap.c [!__MINGW32__] (PC, BC, UP): Define as weak
1762         symbols.
1763
1764 2015-04-03  Pierre-Marie de Rodat  <derodat@adacore.com>
1765
1766         * gdbtypes.c (is_dynamic_type_internal): Remove the unused
1767         "top_level" parameter.
1768         (resolve_dynamic_type_internal): Remove the unused "top_level"
1769         parameter.  Update call to is_dynamic_type_internal.
1770         (is_dynamic_type): Update call to is_dynamic_type_internal.
1771         (resolve_dynamic_range): Update call to
1772         resolve_dynamic_type_internal.
1773         (resolve_dynamic_union): Likewise.
1774         (resolve_dynamic_struct): Likewise.
1775         (resolve_dynamic_type): Likewise.
1776
1777 2015-04-03  Pierre-Marie de Rodat  <derodat@adacore.com>
1778
1779         * gdbtypes.c (is_dynamic_type_internal): Remove special handling of
1780         TYPE_CODE_REF types so that they are not considered as dynamic
1781         depending on the referenced type.
1782         (resolve_dynamic_type_internal): Likewise.
1783
1784 2015-04-02  H.J. Lu  <hongjiu.lu@intel.com>
1785
1786         * Makefile.in (top_srcdir): New.
1787         * configure: Regenerated.
1788
1789 2015-04-02  Gary Benson <gbenson@redhat.com>
1790
1791         * NEWS: Announce the new default sysroot of "target:".
1792
1793 2015-04-02  Gary Benson <gbenson@redhat.com>
1794
1795         * main.c (captured_main): Set gdb_sysroot to "target:"
1796         if not otherwise set.
1797
1798 2015-04-02  Gary Benson <gbenson@redhat.com>
1799
1800         * exec.c (exec_file_attach): Support "target:" filenames.
1801
1802 2015-04-02  Gary Benson <gbenson@redhat.com>
1803
1804         * solib.c (solib_find): Strip "target:" prefix from sysroot
1805         if accessing local files.
1806
1807 2015-04-02  Gary Benson <gbenson@redhat.com>
1808
1809         * symfile.c (symfile_bfd_open): Reorder to remove duplicated
1810         checks and error messages.
1811
1812 2015-04-02  Gary Benson <gbenson@redhat.com>
1813
1814         * remote.h (REMOTE_SYSROOT_PREFIX): Remove definition.
1815         (remote_filename_p): Remove declaration.
1816         (remote_bfd_open): Likewise.
1817         * remote.c (remote_bfd_iovec_open): Remove function.
1818         (remote_bfd_iovec_close): Likewise.
1819         (remote_bfd_iovec_pread): Likewise.
1820         (remote_bfd_iovec_stat): Likewise.
1821         (remote_filename_p): Likewise.
1822         (remote_bfd_open): Likewise.
1823         * symfile.h (gdb_bfd_open_maybe_remote): Remove declaration.
1824         * symfile.c (separate_debug_file_exists): Use gdb_bfd_open.
1825         (gdb_bfd_open_maybe_remote): Remove function.
1826         (symfile_bfd_open):  Replace remote filename check with
1827         target filename check.
1828         (reread_symbols): Use gdb_bfd_open.
1829         * build-id.c (gdbcore.h): New include.
1830         (build_id_to_debug_bfd): Use gdb_bfd_open.
1831         * infcmd.c (attach_command_post_wait): Remove remote filename
1832         check.
1833         * solib.c (solib_find): Replace remote-specific handling with
1834         target-specific handling.  Update comments where necessary.
1835         (solib_bfd_open): Replace remote-specific handling with
1836         target-specific handling.
1837         (gdb_sysroot_changed): New function.
1838         (_initialize_solib): Call the above when gdb_sysroot changes.
1839         * windows-tdep.c (gdbcore.h): New include.
1840         (windows_xfer_shared_library): Use gdb_bfd_open.
1841
1842 2015-04-02  Gary Benson <gbenson@redhat.com>
1843
1844         * gdb/gdb_bfd.h (TARGET_SYSROOT_PREFIX): New definition.
1845         (is_target_filename): New declaration.
1846         (gdb_bfd_has_target_filename): Likewise.
1847         (gdb_bfd_open): Update documentation comment.
1848         * gdb_bfd.c (target.h): New include.
1849         (gdb/fileio.h): Likewise.
1850         (is_target_filename): New function.
1851         (gdb_bfd_has_target_filename): Likewise.
1852         (fileio_errno_to_host): Likewise.
1853         (gdb_bfd_iovec_fileio_open): Likewise.
1854         (gdb_bfd_iovec_fileio_pread): Likewise.
1855         (gdb_bfd_iovec_fileio_close): Likewise.
1856         (gdb_bfd_iovec_fileio_fstat): Likewise.
1857         (gdb_bfd_open): Use target fileio to access paths prefixed
1858         with "target:" where necessary.
1859
1860 2015-04-02  Gary Benson <gbenson@redhat.com>
1861
1862         * target.h (struct target_ops) <to_filesystem_is_local>:
1863         New field.
1864         (target_filesystem_is_local): New macro.
1865         * target-delegates.c: Regenerate.
1866         * remote.c (remote_filesystem_is_local): New function.
1867         (init_remote_ops): Initialize to_filesystem_is_local.
1868
1869 2015-04-02  Gary Benson <gbenson@redhat.com>
1870
1871         * target.h (struct target_ops) <to_fileio_fstat>: New field.
1872         (target_fileio_fstat): New declaration.
1873         * target.c (target_fileio_fstat): New function.
1874         * inf-child.c (inf_child_fileio_fstat): Likewise.
1875         (inf_child_target): Initialize to_fileio_fstat.
1876         * remote.c (init_remote_ops): Likewise.
1877
1878 2015-04-01  Sasha Smundak  <asmundak@google.com>
1879
1880         * Makefile.in (SUBDIR_PYTHON_OBJS): Add py-unwind.o.
1881         (SUBDIR_PYTHON_SRCS): Add py-unwind.c.
1882         (py-unwind.o): New recipe.
1883         * NEWS: mention Python frame unwinding.
1884         * data-directory/Makefile.in (PYTHON_FILE_LIST): Add
1885         gdb/unwinder.py and gdb/command/unwinder.py
1886         * python/lib/gdb/__init__.py (packages): Add frame_unwinders
1887         list.
1888         (execute_unwinders): New function.
1889         * python/lib/gdb/command/unwinders.py: New file.
1890         * python/lib/gdb/unwinder.py: New file.
1891         * python/py-objfile.c (objfile_object): Add frame_unwinders field.
1892         (objfpy_dealloc): Decrement frame_unwinders reference count.
1893         (objfpy_initialize): Create frame_unwinders list.
1894         (objfpy_get_frame_unwinders): New function.
1895         (objfpy_set_frame_unwinders): Ditto.
1896         (objfile_getset): Add frame_unwinders attribute to Objfile.
1897         * python/py-progspace.c (pspace_object): Add frame_unwinders field.
1898         (pspy_dealloc): Decrement frame_unwinders reference count.
1899         (pspy_initialize): Create frame_unwinders list.
1900         (pspy_get_frame_unwinders): New function.
1901         (pspy_set_frame_unwinders): Ditto.
1902         (pspy_getset): Add frame_unwinders attribute to gdb.Progspace.
1903         * python/py-unwind.c: New file.
1904         * python/python-internal.h (pspy_get_name_unwinders): New prototype.
1905         (objpy_get_frame_unwinders): New prototype.
1906         (gdbpy_initialize_unwind): New prototype.
1907         * python/python.c (gdbpy_apply_type_printers): Call
1908         gdbpy_initialize_unwind.
1909
1910 2015-04-01  Pedro Alves  <palves@redhat.com>
1911
1912         * infrun.c (resume): Check currently_stepping after clearing
1913         stepped_breakpoint, not before.
1914
1915 2015-04-01  Pedro Alves  <palves@redhat.com>
1916
1917         * infrun.c (print_target_wait_results): Print all the ptid
1918         elements.
1919
1920 2015-04-01  Pedro Alves  <palves@redhat.com>
1921
1922         * infrun.c (keep_going): Also discard cleanups if inserting
1923         breakpoints fails.
1924
1925 2015-04-01  Pedro Alves  <palves@redhat.com>
1926
1927         * infrun.c (wait_for_inferior): Install the
1928         finish_thread_state_cleanup cleanup across the whole function, not
1929         just around handle_inferior_event.
1930
1931 2015-04-01  Pedro Alves  <palves@redhat.com>
1932
1933         * infrun.c (resume) <step past permanent breakpoint>: Use
1934         do_target_resume.
1935
1936 2015-04-01  Pedro Alves  <palves@redhat.com>
1937
1938         * linux-nat.c (linux_handle_extended_wait): Always call set_running.
1939
1940 2015-04-01  Pierre-Marie de Rodat  <derodat@adacore.com>
1941
1942         * MAINTAINERS (Write After Approval): Add "Pierre-Marie de Rodat".
1943
1944 2015-04-01  Pedro Alves  <palves@redhat.com>
1945
1946         * linux-thread-db.c (record_thread): Readd the thread to gdb's
1947         list if it was marked exited.
1948
1949 2015-04-01  H.J. Lu  <hongjiu.lu@intel.com>
1950
1951         * configure: Regenerated.
1952
1953 2015-03-31  Sergio Durigan Junior  <sergiodj@redhat.com>
1954             Jan Kratochvil  <jan.kratochvil@redhat.com>
1955             Oleg Nesterov  <oleg@redhat.com>
1956
1957         PR corefiles/16092
1958         * linux-tdep.c: Include 'gdbcmd.h' and 'gdb_regex.h'.
1959         New enum identifying the various options of the coredump_filter
1960         file.
1961         (struct smaps_vmflags): New struct.
1962         (use_coredump_filter): New variable.
1963         (decode_vmflags): New function.
1964         (mapping_is_anonymous_p): Likewise.
1965         (dump_mapping_p): Likewise.
1966         (linux_find_memory_regions_full): New variables
1967         'coredumpfilter_name', 'coredumpfilterdata', 'pid', 'filterflags'.
1968         Removed variable 'modified'.  Read /proc/<PID>/smaps file; improve
1969         parsing of its information.  Implement memory mapping filtering
1970         based on its contents.
1971         (show_use_coredump_filter): New function.
1972         (_initialize_linux_tdep): New command 'set use-coredump-filter'.
1973         * NEWS: Mention the possibility of using the
1974         '/proc/PID/coredump_filter' file when generating a corefile.
1975         Mention new command 'set use-coredump-filter'.
1976
1977 2015-03-31  Sergio Durigan Junior  <sergiodj@redhat.com>
1978
1979         * solib-svr4.c (solib_svr4_r_ldsomap): Catch possible exception by
1980         read_memory_unsigned_integer.
1981
1982 2015-03-31  H.J. Lu  <hongjiu.lu@intel.com>
1983
1984         * Makefile.in (ZLIB): New.
1985         (ZLIBINC): Likewise.
1986         (INTERNAL_CFLAGS_BASE): Add $(ZLIBINC).
1987         (CLIBS): Add $(ZLIB).
1988         * acinclude.m4: (GDB_AC_CHECK_BFD): Add $zlibdir to LDFLAGS.
1989         Add -lz to LIBS.
1990         * gdb_bfd.c: Don't check HAVE_ZLIB_H to include <zlib.h>.
1991         * top.c (print_gdb_configuration): Remove --with-zlib and
1992         --without-zlib.
1993         * config.in: Regenerated.
1994         * configure: Likewise.
1995
1996 2015-03-31  Antoine Tremblay  <antoine.tremblay@ericsson.com>
1997
1998         * NEWS: Mention info os cpus support.
1999         * gdb/nat/linux-osdata.c (linux_xfer_osdata_cpus): New function.
2000         (struct osdata_type): Add cpus entry, reorder the entries in
2001         alphabetical order.
2002
2003 2015-03-31  Matthias Klose  <doko@ubuntu.com>
2004
2005         * compile/compile.c (compile_to_object): Allow triplets with or
2006         without vendor set.
2007
2008 2015-03-30  Doug Evans  <dje@google.com>
2009
2010         PR c++/18141
2011         * cp-namespace.c (cp_search_static_and_baseclasses): Always look for
2012         klass in VAR_DOMAIN.
2013
2014 2015-03-30  Gary Benson <gbenson@redhat.com>
2015
2016         * remote.c (remote_mourn_1): Remove function.  Update all callers
2017         to use remote_mourn.
2018         (extended_remote_mourn_1): Remove function.  Update all callers
2019         to use extended_remote_mourn.
2020         (extended_remote_attach_1): Remove function.  Update all callers
2021         to use extended_remote_attach.
2022
2023 2015-03-28  James Bowman  <james.bowman@ftdichip.com>
2024
2025         * Makefile.in (ALL_TARGET_OBS): Add ft32-tdep.o.
2026         (HFILES_NO_SRCDIR): Add ft32-tdep.h.
2027         (ALLDEPFILES): Add ft32-tdep.c.
2028         * configure.tgt: Add FT32 entry.
2029         * ft32-tdep.c: New file, FT32 target-dependent code.
2030         * ft32-tdep.h: New file, FT32 target-dependent code.
2031
2032 2015-03-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
2033
2034         Revert:
2035         2015-03-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
2036         Code cleanup.
2037         * printcmd.c (print_command_1): Move expr variable scope.
2038
2039 2015-03-27  Joel Brobecker  <brobecker@adacore.com>
2040
2041         * dtrace-probe.c (dtrace_process_dof_probe): Initialize expr to NULL.
2042
2043 2015-03-27  Andrzej Kaczmarek  <andrzej.kaczmarek@tieto.com>
2044
2045         * gdb_bfd.c (gdb_bfd_section_index): Fix off-by-one for special
2046         sections.
2047
2048 2015-03-26  Joel Brobecker  <brobecker@adacore.com>
2049
2050         * dtrace-probe.c (dtrace_process_dof_probe): Contain any
2051         exception raised while parsing the probe arguments.
2052         Force parsing to be done using the C language parser.
2053         * expression.h (parse_expression_with_language): Declare.
2054         * parse.c (parse_expression_with_language): New function.
2055
2056 2015-03-26  Jon Turney  <jon.turney@dronecode.org.uk>
2057
2058         * MAINTAINERS (Write After Approval): Add "Jon Turney".
2059
2060 2015-03-26  Andy Wingo  <wingo@igalia.com>
2061
2062         PR symtab/18148
2063         * dwarf2read.c (struct partial_die_info): Add has_const_value
2064         member.
2065         (add_partial_symbol): Don't punt on symbols that have const_value
2066         attributes.
2067         (read_partial_die): Detect DW_AT_const_value.
2068
2069 2015-03-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
2070
2071         Code cleanup.
2072         * printcmd.c (print_command_1): Move expr variable scope.
2073
2074 2015-03-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
2075
2076         Code cleanup.
2077         * printcmd.c (validate_format): Make the parameter cmdname const.
2078
2079 2015-03-26  Don Breazeal  <donb@codesourcery.com>
2080
2081         * remote.c (_initialize_remote): Update comment.
2082
2083 2015-03-26  Pedro Alves  <palves@redhat.com>
2084             Jon TURNEY  <jon.turney@dronecode.org.uk>
2085
2086         * coffread.c (coff_symfile_read): When constructing the name of an
2087         import stub symbol from import symbol for amd64, only skip the
2088         char after _imp_ if the target is underscored (like i386) and the
2089         char is indeed the target's leading char.
2090
2091 2015-03-25  Pedro Alves  <palves@redhat.com>
2092
2093         * target.h <to_async>: Replace 'callback' and 'context' parameters
2094         with boolean 'enable' parameter.
2095         (target_async): Replace CALLBACK and CONTEXT parameters with
2096         boolean ENABLE parameter.
2097         * inf-loop.c (inferior_event_handler): Adjust.
2098         * linux-nat.c (linux_nat_attach, linux_nat_resume)
2099         (linux_nat_resume): Adjust.
2100         (async_client_callback, async_client_context): Delete.
2101         (handle_target_event): Call inferior_event_handler directly.
2102         (linux_nat_async): Replace 'callback' and 'context' parameters
2103         with boolean 'enable' parameter.  Adjust.  Remove references to
2104         async_client_callback and async_client_context.
2105         (linux_nat_close): Adjust.
2106         * record-btrace.c (record_btrace_async): Replace 'callback' and
2107         'context' parameters with boolean 'enable' parameter.  Adjust.
2108         (record_btrace_resume): Adjust.
2109         * record-full.c (record_full_async): Replace 'callback' and
2110         'context' parameters with boolean 'enable' parameter.  Adjust.
2111         (record_full_resume, record_full_core_resume): Adjust.
2112         * remote.c (struct remote_state) <async_client_callback,
2113         async_client_context>: Delete fields.
2114         (remote_start_remote, extended_remote_attach_1, remote_resume)
2115         (extended_remote_create_inferior): Adjust.
2116         (remote_async_serial_handler): Call inferior_event_handler
2117         directly.
2118         (remote_async): Replace 'callback' and 'context' parameters with
2119         boolean 'enable' parameter.  Adjust.
2120         * top.c (gdb_readline_wrapper_cleanup, gdb_readline_wrapper):
2121         Adjust.
2122         * target-delegates.c: Regenerate.
2123
2124 2015-03-25  Gary Benson <gbenson@redhat.com>
2125             Pedro Alves  <palves@redhat.com>
2126
2127         * target.c (fileio_ft_t): New typedef, define object vector.
2128         (fileio_fhandles): New static variable.
2129         (is_closed_fileio_fh): New macro.
2130         (lowest_closed_fd): New static variable.
2131         (acquire_fileio_fd): New function.
2132         (release_fileio_fd): Likewise.
2133         (fileio_fd_to_fh): New macro.
2134         (target_fileio_open): Wrap the file descriptor on success.
2135         (target_fileio_pwrite): Updated to use wrapped file descriptor.
2136         (target_fileio_pread): Likewise.
2137         (target_fileio_close): Likewise.
2138
2139 2015-03-24  Pedro Alves  <palves@redhat.com>
2140
2141         * thread.c (thread_apply_all_command): Take exited threads into
2142         account.
2143
2144 2015-03-24  Pedro Alves  <palves@redhat.com>
2145
2146         * infrun.c (resume, proceed): Mention
2147         switch_back_to_stepped_thread, not switch_back_to_stepping.
2148
2149 2015-03-24  Pedro Alves  <palves@redhat.com>
2150
2151         * infrun.c (user_visible_resume_ptid): Rewrite going from
2152         most-locked to unlocked instead of the opposite.  Move comment ...
2153         * infrun.h (user_visible_resume_ptid): ... here.
2154
2155 2015-03-24  Pedro Alves  <palves@redhat.com>
2156
2157         * linux-nat.c (linux_nat_resume): Output debug logs before trying
2158         to resume the event lwp.  Use the lwp's ptid instead of the passed
2159         in (maybe wildcard) ptid.
2160         (stop_wait_callback): Tweak debug log output.
2161         (check_stopped_by_breakpoint): Tweak debug log output.  Also dump
2162         TRAP_TRACE.
2163         (linux_nat_filter_event): In debug output, distinguish a
2164         resume_stop SIGSTOP from a delayed SIGSTOP.  Output debug logs
2165         before trying to resume the lwp.
2166
2167 2015-03-24  Joel Brobecker  <brobecker@adacore.com>
2168
2169         * gdbtypes.h (struct dynamic_prop_list) <prop>: Remove
2170         pointer indirection.
2171         * gdbtypes.c (get_dyn_prop): Adjust, following change above.
2172         (add_dyn_prop, copy_dynamic_prop_list): Likewise.
2173
2174 2015-03-24  Joel Brobecker  <brobecker@adacore.com>
2175
2176         * gdbtypes.h (enum dynamic_prop_node_kind) <DYN_PROP_DATA_LOCATION>:
2177         Renames DYN_ATTR_DATA_LOCATION.
2178         (TYPE_DATA_LOCATION): Use DYN_PROP_DATA_LOCATION instead of
2179         DYN_ATTR_DATA_LOCATION.
2180         * dwarf2read.c (set_die_type): Use DYN_PROP_DATA_LOCATION
2181         instead of DYN_ATTR_DATA_LOCATION.
2182
2183 2015-03-24  Pedro Alves  <palves@redhat.com>
2184
2185         * breakpoint.c (until_break_command): Adjust call to proceed.
2186         * gdbthread.h (struct thread_control_state) <stepping_command>:
2187         New field.
2188         * infcall.c (run_inferior_call): Adjust call to proceed.
2189         * infcmd.c (run_command_1, proceed_thread_callback, continue_1):
2190         Adjust calls to proceed.
2191         (set_step_frame): Set the current thread's step_start_function
2192         here.
2193         (step_once): Adjust calls to proceed.
2194         (jump_command, signal_command, until_next_command)
2195         (finish_backward, finish_forward, proceed_after_attach_callback)
2196         (attach_command_post_wait): Adjust calls to proceed.
2197         * infrun.c (proceed_after_vfork_done): Adjust call to proceed.
2198         (do_target_resume): New function, factored out from ...
2199         (resume): ... here.  Remove 'step' parameter.  Instead, check
2200         currently_stepping to determine whether the thread should be
2201         single-stepped.
2202         (proceed): Remove 'step' parameter and don't set the thread's
2203         step_start_function here.  Adjust call to 'resume'.
2204         (handle_inferior_event): Adjust calls to 'resume'.
2205         (switch_back_to_stepped_thread): Use do_target_resume instead of
2206         'resume'.
2207         (keep_going): Adjust calls to 'resume'.
2208         * infrun.h (proceed): Remove 'step' parameter.
2209         (resume): Likewise.
2210         * windows-nat.c (do_initial_windows_stuff): Adjust call to
2211         'resume'.
2212         * mi/mi-main.c (proceed_thread): Adjust call to 'proceed'.
2213
2214 2015-03-24  Pedro Alves  <palves@redhat.com>
2215
2216         * gdbthread.h (struct thread_control_state) <stepping_command>:
2217         New field.
2218         * infcmd.c (step_once): Pass step=1 to clear_proceed_status.  Set
2219         the thread's stepping_command field.
2220         * infrun.c (resume): Check the thread's stepping_command flag to
2221         determine which threads should be resumed.  Rename 'entry_step'
2222         local to user_step.
2223         (clear_proceed_status_thread): Clear 'stepping_command'.
2224         (schedlock_applies): Change parameter type to struct thread_info
2225         pointer.  Adjust.
2226         (find_thread_needs_step_over): Remove 'step' parameter.  Adjust.
2227         (switch_back_to_stepped_thread): Adjust calls to
2228         'schedlock_applies'.
2229         (_initialize_infrun): Adjust "set scheduler-locking step" help.
2230
2231 2015-03-24  Pedro Alves  <palves@redhat.com>
2232
2233         * infrun.c (step_start_function): Delete and ...
2234         * gdbthread.h (struct thread_control_state) <step_start_function>:
2235         ... now a field here.
2236         * infrun.c (clear_proceed_status_thread): Clear the thread's
2237         step_start_function.
2238         (proceed, process_event_stop_test, print_stop_event): Adjust.
2239
2240 2015-03-24  Pedro Alves  <palves@redhat.com>
2241
2242         * infrun.c (proceed): No longer handle negative step.
2243
2244 2015-03-24  Gary Benson  <gbenson@redhat.com>
2245
2246         * nat/x86-linux.h (x86_linux_new_thread): New declaration.
2247         (x86_linux_prepare_to_resume): Likewise.
2248         * x86-linux-nat.c (x86_linux_new_thread):
2249         Moved to nat/x86-linux.c.
2250         (x86_linux_prepare_to_resume): Likewise.
2251         * nat/x86-linux.c (x86_linux_new_thread): New function.
2252         (x86_linux_prepare_to_resume): Likewise.
2253
2254 2015-03-24  Gary Benson  <gbenson@redhat.com>
2255
2256         * nat/x86-linux-dregs.h: New file.
2257         * nat/x86-linux-dregs.c: Likewise.
2258         * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux-dregs.h.
2259         (x86-linux-dregs.o): New rule.
2260         * config/i386/linux.mh (NATDEPFILES): Add x86-linux-dregs.o.
2261         * config/i386/linux64.mh (NATDEPFILES): Likewise.
2262         * x86-linux-nat.c: Include nat/x86-linux-dregs.h.
2263         (u_debugreg_offset): Moved to nat/x86-linux-dregs.c.
2264         (x86_linux_dr_get): Likewise.
2265         (x86_linux_dr_set): Likewise.
2266         (x86_linux_dr_get_addr): Likewise.
2267         (x86_linux_dr_get_control): Likewise.
2268         (x86_linux_dr_get_status): Likewise.
2269         (update_debug_registers_callback): Likewise.
2270         (x86_linux_dr_set_control): Likewise.
2271         (x86_linux_dr_set_addr): Likewise.
2272         (x86_linux_update_debug_registers): Likewise.
2273
2274 2015-03-24  Gary Benson  <gbenson@redhat.com>
2275
2276         * x86-linux-nat.c (x86_linux_update_debug_registers):
2277         New function, factored out from...
2278         (x86_linux_prepare_to_resume): ...this.
2279
2280 2015-03-24  Gary Benson  <gbenson@redhat.com>
2281
2282         * x86-linux-nat.c (x86_linux_dr_get): Update comments.
2283         (x86_linux_dr_set): Likewise.
2284         (x86_linux_dr_get_addr): Likewise.
2285         (x86_linux_dr_get_control): Likewise.
2286         (x86_linux_dr_get_status): Likewise.
2287         (update_debug_registers_callback): Likewise.
2288         (x86_linux_dr_set_control): Likewise.
2289         (x86_linux_dr_set_addr): Likewise.
2290         (x86_linux_prepare_to_resume): Likewise.
2291         (x86_linux_new_thread): Likewise.
2292
2293 2015-03-24  Gary Benson  <gbenson@redhat.com>
2294
2295         * x86-linux-nat.c (x86_linux_dr_set_addr): Update assertion.
2296         (x86_linux_new_thread): Rename argument.
2297
2298 2015-03-24  Gary Benson  <gbenson@redhat.com>
2299
2300         * nat/x86-linux.h: New file.
2301         * nat/x86-linux.c: Likewise.
2302         * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux.h.
2303         (x86-linux.o): New rule.
2304         * config/i386/linux.mh (NATDEPFILES): Add x86-linux.o.
2305         * config/i386/linux64.mh (NATDEPFILES): Likewise.
2306         * nat/linux-nat.h (struct arch_lwp_info): New forward declaration.
2307         (lwp_set_arch_private_info): New declaration.
2308         (lwp_arch_private_info): Likewise.
2309         * linux-nat.c (lwp_set_arch_private_info): New function.
2310         (lwp_arch_private_info): Likewise.
2311         * x86-linux-nat.c: Include nat/x86-linux.h.
2312         (arch_lwp_info): Removed structure.
2313         (update_debug_registers_callback):
2314         Use lwp_set_debug_registers_changed.
2315         (x86_linux_prepare_to_resume): Use lwp_debug_registers_changed
2316         and lwp_set_debug_registers_changed.
2317         (x86_linux_new_thread): Use lwp_set_debug_registers_changed.
2318
2319 2015-03-24  Gary Benson  <gbenson@redhat.com>
2320
2321         * nat/linux-nat.h (ptid_of_lwp): New declaration.
2322         (lwp_is_stopped): Likewise.
2323         (lwp_stop_reason): Likewise.
2324         * linux-nat.c (ptid_of_lwp): New function.
2325         (lwp_is_stopped): Likewise.
2326         (lwp_is_stopped_by_watchpoint): Likewise.
2327         * x86-linux-nat.c (update_debug_registers_callback):
2328         Use lwp_is_stopped.
2329         (x86_linux_prepare_to_resume): Use ptid_of_lwp and
2330         lwp_stop_reason.
2331
2332 2015-03-24  Gary Benson  <gbenson@redhat.com>
2333
2334         * linux-nat.h (linux_stop_lwp): Move declaration to...
2335         * nat/linux-nat.h (linux_stop_lwp): New declaration.
2336
2337 2015-03-24  Gary Benson  <gbenson@redhat.com>
2338
2339         * linux-nat.h: Include nat/linux-nat.h.
2340         (iterate_over_lwps): Move declaration to nat/linux-nat.h.
2341         * nat/linux-nat.h (struct lwp_info): New forward declaration.
2342         (iterate_over_lwps_ftype): New typedef.
2343         (iterate_over_lwps): New declaration.
2344         * linux-nat.h (iterate_over_lwps): Update comment.  Use
2345         iterate_over_lwps_ftype.  Update callback return value check.
2346
2347 2015-03-24  Gary Benson  <gbenson@redhat.com>
2348
2349         * x86-nat.h (x86_debug_reg_state): Move declaration to...
2350         * nat/x86-dregs.h (x86_debug_reg_state): New declaration.
2351
2352 2015-03-24  Gary Benson  <gbenson@redhat.com>
2353
2354         * nat/linux-nat.h (current_lwp_ptid): New declaration.
2355         * linux-nat.c (current_lwp_ptid): New function.
2356         * x86-linux-nat.c: Include nat/linux-nat.h.
2357         (x86_linux_dr_get_addr): Use current_lwp_ptid.
2358         (x86_linux_dr_get_control): Likewise.
2359         (x86_linux_dr_get_status): Likewise.
2360         (x86_linux_dr_set_control): Likewise.
2361         (x86_linux_dr_set_addr): Likewise.
2362
2363 2015-03-24  Antoine Tremblay  <antoine.tremblay@ericsson.com>
2364
2365         PR breakpoints/16466
2366         * breakpoint.c (create_breakpoint): Set thread on breakpoint struct.
2367
2368 2015-03-23  Joel Brobecker  <brobecker@adacore.com>
2369
2370         * ser-mingw.c (ser_windows_setparity): Fix indentation.
2371         * ser-unix.c (hardwire_setparity): Likewise.
2372
2373 2015-03-23  Yurij Grechishhev  <yurij.grechishhev@gmail.com>
2374
2375         * NEWS: Mention set/show serial parity command.
2376         * monitor.c (monitor_open): Call serial_setparity.
2377         * remote.c (remote_open_1): Likewise.
2378         * ser-base.c (ser_base_serparity): New function.
2379         * ser-base.h (ser_base_setparity): Add  declaration.
2380         * ser-go32.c (dos_ops): Set "setparity" field.
2381         * ser-mingw.c (ser_windows_raw): Do not set state.fParity and
2382         state.Parity.
2383         (ser_windows_setparity): New function.
2384         (hardwire_ops): Add ser_windows_setparity.
2385         (tty_ops): Add NULL for setparity field.
2386         (pipe_ops): Add ser_base_setparity.
2387         (tcp_ops): Likewise.
2388         * ser-pipe.c (pipe_ops): Likewise.
2389         * ser-tcp.c (tcp_ops): Likewise.
2390         * ser-unix.c (hardwire_setparity): Add declaration.
2391         (hardwire_raw): Don't reset PARENB flag.
2392         (hardwire_setparity): New function.
2393         (hardwire_ops): Add hardwire_setparity.
2394         * serial.c (serial_setparity): New function.
2395         (serial_parity): New global.
2396         (parity_none, parity_odd, parity_even, parity_enums, parity):
2397         New static globals.
2398         (set_parity): New function.
2399         (_initialize_serial): Add set/show serial parity commands.
2400         * serial.h (GDBPARITY_NONE): Define.
2401         (GDBPARITY_ODD): Define.
2402         (GDBPARITY_EVEN): Define.
2403         (serial_setparity) Add declaration.
2404         (struct serial_ops): Add setparity field.
2405         * target.h (serial_parity): Add declaration.
2406
2407 2015-03-23  Keith Seitz  <keiths@redhat.com>
2408
2409         * linespec.c (linespec_lexer_lex_keyword): Update comment.
2410
2411 2015-03-23  Keith Seitz  <keiths@redhat.com>
2412
2413         * breakpoint.c (parse_breakpoint_sals): Use
2414         linespec_lexer_lex_keyword to ascertain if the user specified
2415         a NULL location.
2416         * linespec.c [IF_KEYWORD_INDEX]: Define.
2417         (linespec_lexer_lex_keyword): Export.
2418         (struct ls_parser) <keyword_ok>: Remove.
2419         A keyword is only a keyword if not followed by another keyword.
2420         (linespec_lexer_lex_one): Remove keyword_ok handling.
2421         Add comment explaining why the parsing stream is not advanced
2422         when a keyword is seen.
2423         (parse_linespec): Remove parser->keyword_ok.
2424         * linespec.h (linespec_lexer_lex_keyword): Add declaration.
2425
2426 2015-03-23  Keith Seitz  <keiths@redhat.com>
2427
2428         PR gdb/18021
2429         * dwarf2read.c (dwarf2_add_member_fn): Issue a complaint
2430         if we find a static method with DW_AT_vtable_elem_location.
2431
2432 2015-03-21  Eli Zaretskii  <eliz@gnu.org>
2433
2434         * tui/tui-io.c (tui_expand_tabs): Reinitialize the column counter
2435         before the second loop, to avoid undefined behavior.  Reported by
2436         Anton Blanchard <anton@samba.org>.
2437
2438 2015-03-20  Keven Boell  <keven.boell@intel.com>
2439
2440         * gdbtypes.c (resolve_dynamic_type_internal): Adapt
2441         data_location usage to linked list.
2442         (resolve_dynamic_type_internal): Adapt data_location to
2443         linked list.
2444         (get_dyn_prop, add_dyn_prop, copy_dynamic_prop_list): New function.
2445         (copy_type_recursive, copy_type): Add copy of linked list.
2446         * gdbtypes.h (enum dynamic_prop_node_kind): New enum.
2447         (struct dynamic_prop_list): New struct.
2448         * dwarf2read.c (set_die_type): Set data_location data.
2449
2450 2015-03-20  Pedro Alves  <palves@redhat.com>
2451
2452         * i386-sol2-tdep.c (i386_sol2_static_transform_name): Move "p" to
2453         inner block and make it const.
2454         * machoread.c (get_archive_prefix_len): Make "lparen" const.
2455
2456 2015-03-20  Pedro Alves  <palves@redhat.com>
2457
2458         * breakpoint.c (set_breakpoint_condition): Make argument "exp" const.
2459         * breakpoint.h (set_breakpoint_condition): Update declaration.
2460
2461 2015-03-20  Pedro Alves  <palves@redhat.com>
2462
2463         * tui/tui-io.c (tui_expand_tabs): Make "s1" const.
2464
2465 2015-03-20  Pedro Alves  <palves@redhat.com>
2466
2467         * xcoffread.c (scan_xcoff_symtab): Make "p" and "q" const.
2468
2469 2015-03-20  Pedro Alves  <palves@redhat.com>
2470
2471         * remote-m32r-sdi.c (m32r_open): Make "port_str" const.
2472
2473 2015-03-20  Pedro Alves  <palves@redhat.com>
2474
2475         * nto-tdep.c (nto_find_and_open_solib): Make "endian" const.
2476         (nto_init_solib_absolute_prefix): Likewise.
2477
2478 2015-03-20  Pedro Alves  <palves@redhat.com>
2479
2480         * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Make "p" const.
2481         * spu-tdep.c (spu_gdbarch_init): Make "name" const.
2482
2483 2015-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
2484
2485         * config/djgpp/README: Remove gdb.hp.
2486
2487 2015-03-20  Yao Qi  <yao.qi@linaro.org>
2488
2489         * aarch64-tdep.c (aarch64_gdbarch_init): Don't call
2490         set_gdbarch_cannot_step_breakpoint.
2491
2492 2015-03-19  Pedro Alves  <palves@redhat.com>
2493
2494         * linux-nat.c (linux_resume_one_lwp): Rename to ...
2495         (linux_resume_one_lwp_throw): ... this.  Don't handle ESRCH here,
2496         instead call perror_with_name.
2497         (check_ptrace_stopped_lwp_gone): New function.
2498         (linux_resume_one_lwp): Reimplement as wrapper around
2499         linux_resume_one_lwp_throw that swallows errors if the LWP is
2500         gone.
2501         (resume_stopped_resumed_lwps): Try register reads in TRY/CATCH and
2502         swallows errors if the LWP is gone.  Use
2503         linux_resume_one_lwp_throw instead of linux_resume_one_lwp.
2504
2505 2015-03-19  Pedro Alves  <palves@redhat.com>
2506
2507         * linux-nat.c (status_callback): Return early if the LWP has no
2508         status pending.
2509
2510 2015-03-19  Pedro Alves  <palves@redhat.com>
2511
2512         * linux-nat.c (select_event_lwp_callback): Update comment to no
2513         longer mention SIGTRAP.
2514
2515 2015-03-18  Tristan Gingold  <gingold@adacore.com>
2516
2517         * amd64-windows-tdep.c (amd64_windows_find_unwind_info): Move
2518         redirection code to ...
2519         (amd64_windows_frame_decode_insns): ... Here.  Fix in prologue
2520         checks.  Fix SAVE_NONVOL operations.  Add debug code and comments.
2521
2522 2015-03-18  Gary Benson <gbenson@redhat.com>
2523
2524         (remote_protocol_features): Remove the "vFile:fstat" feature.
2525         (remote_hostio_fstat): Probe for "vFile:fstat" support.
2526
2527 2015-03-11  Yao Qi  <yao.qi@linaro.org>
2528
2529         PR tdep/18107
2530         * aarch64-linux-tdep.c: Include xml-syscall.h
2531         (aarch64_linux_get_syscall_number): New function.
2532         (aarch64_linux_init_abi): Call
2533         set_gdbarch_get_syscall_number.
2534         * syscalls/aarch64-linux.xml: New file.
2535
2536 2015-03-17  Yurij Grechishhev  <yurij.grechishhev@gmail.com>
2537
2538         * ser-base.h (ser_base_setstopbits): Change second argument name
2539         from "rate" to "num".
2540
2541 2015-03-17  Gary Benson <gbenson@redhat.com>
2542             Luke Allardyce <lukeallardyce@gmail.com>
2543
2544         PR gdb/18131
2545         * common/common-remote-fileio.h (sys/stat.h): New include.
2546         (stuct stat): Remove forward declaration.
2547
2548 2015-03-16  John Baldwin  <jhb@FreeBSD.org>
2549
2550         * fbsd-tdep.c (fbsd_make_corefile_notes): Fetch all target registers
2551         before writing core register notes.
2552
2553 2015-03-16  Yuanhui Zhang  <asmwarrior@gmail.com>
2554             Pedro Alves  <palves@redhat.com>
2555
2556         * gdb_curses.h (tgetnum): Mark with EXTERN_C.
2557         * stub-termcap.c (tgetent, tgetnum, tgetflag, tgetstr, tputs)
2558         (tgoto): Wrap with extern "C".
2559
2560 2015-03-16  Pedro Alves  <palves@redhat.com>
2561             Yuanhui Zhang  <asmwarrior@gmail.com>
2562
2563         * stub-termcap.c (tputs): Change prototype.
2564
2565 2015-03-16  Yuanhui Zhang  <asmwarrior@gmail.com>
2566             Pedro Alves  <palves@redhat.com>
2567
2568         * windows-nat.c (struct thread_info_struct): Rename to ...
2569         (struct windows_thread_info_struct): ... this.
2570         (thread_info): Rename to ...
2571         (windows_thread_info): ... this.
2572         All users updated.
2573
2574 2015-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
2575             Pedro Alves  <palves@redhat.com>
2576
2577         * NEWS: New Removed targets and native configurations.
2578
2579 2015-03-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
2580
2581         Remove HPUX.
2582         * Makefile.in (ALL_64_TARGET_OBS): Remove ia64-hpux-tdep.o.
2583         (ALL_TARGET_OBS): Remove hppa-hpux-tdep.o, solib-som.o and solib-pa64.o.
2584         (HFILES_NO_SRCDIR): Remove solib-som.h, inf-ttrace.h, solib-pa64.h and
2585         ia64-hpux-tdep.h, solib-ia64-hpux.h.
2586         (ALLDEPFILES): Remove hppa-hpux-tdep.c, hppa-hpux-nat.c,
2587         ia64-hpux-nat.c, ia64-hpux-tdep.c, somread.c and solib-som.c.
2588         * config/djgpp/fnchange.lst: Remove hppa-hpux-nat.c and
2589         hppa-hpux-tdep.c.
2590         * config/ia64/hpux.mh: Remove file.
2591         * config/pa/hpux.mh: Remove file.
2592         * configure: Rebuilt.
2593         * configure.ac (dlgetmodinfo, somread.o): Remove.
2594         * configure.host (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete.
2595         (ia64-*-hpux*): Remove its float format exception.
2596         * configure.tgt (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete.
2597         * hppa-hpux-nat.c: Remove file.
2598         * hppa-hpux-tdep.c: Remove file.
2599         * hppa-tdep.c (struct hppa_unwind_info, struct hppa_objfile_private):
2600         Move them here from hppa-tdep.h
2601         (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Make it static.
2602         (hppa_frame_prev_register_helper): Remove HPPA_FLAGS_REGNUM exception.
2603         * hppa-tdep.h (struct hppa_unwind_info, struct hppa_objfile_private):
2604         Move them to hppa-tdep.c.
2605         (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Remove
2606         declarations.
2607         * ia64-hpux-nat.c: Remove file.
2608         * ia64-hpux-tdep.c: Remove file.
2609         * ia64-hpux-tdep.h: Remove file.
2610         * inf-ttrace.c: Remove file.
2611         * inf-ttrace.h: Remove file.
2612         * solib-ia64-hpux.c: Remove file.
2613         * solib-ia64-hpux.h: Remove file.
2614         * solib-pa64.c: Remove file.
2615         * solib-pa64.h: Remove file.
2616         * solib-som.c: Remove file.
2617         * solib-som.h: Remove file.
2618         * somread.c: Remove file.
2619
2620 2015-03-13  John Baldwin  <jhb@FreeBSD.org>
2621
2622         * configure.ac: AC_SEARCH_LIBS(kinfo_getvmmap, util).
2623         * config.in: Regenerate.
2624         * configure: Regenerate.
2625         * fbsd-nat.c [!HAVE_KINFO_GETVMMAP] (fbsd_read_mapping): Don't
2626         define.
2627         (fbsd_find_memory_regions): Use kinfo_getvmmap to
2628         enumerate memory regions if present.
2629
2630 2015-03-13  John Baldwin  <jhb@FreeBSD.org>
2631
2632         * amd64fbsd-tdep.c (amd64fbsd_sigtramp_p): Style fixes.
2633         * i386fbsd-tdep.c: Fix style in various gdb_static_assert
2634         expressions.
2635         (i386fbsd_sigtramp_p): Likewise.
2636
2637 2015-03-12  John Baldwin  <jhb@FreeBSD.org>
2638
2639         * MAINTAINERS (Write After Approval): Add John Baldwin.
2640
2641 2015-03-12  Gary Benson <gbenson@redhat.com>
2642
2643         * solib.c (_initialize_solib): Make "set/show sysroot" use
2644         add_setshow_optional_filename_cmd so it can be restored to
2645         empty after being set.
2646
2647 2015-03-11  Sergio Durigan Junior  <sergiodj@redhat.com>
2648
2649         * Makefile.in (SFILES): New source break-catch-syscall.c.
2650         (COMMON_OBS): New object break-catch-syscall.o.
2651         * break-catch-syscall.c: New file.
2652         * breakpoint.c: Remove inclusion of "xml-syscall.h".
2653         (syscall_catchpoint_p): Move declaration to break-catch-syscall.c
2654         (struct syscall_catchpoint): Likewise.
2655         (dtor_catch_syscall): Likewise.
2656         (catch_syscall_inferior_data): Likewise.
2657         (struct catch_syscall_inferior_data): Likewise.
2658         (get_catch_syscall_inferior_data): Likewise.
2659         (catch_syscall_inferior_data_cleanup): Likewise.
2660         (insert_catch_syscall): Likewise.
2661         (remove_catch_syscall): Likewise.
2662         (breakpoint_hit_catch_syscall): Likewise.
2663         (print_it_catch_syscall): Likewise.
2664         (print_one_catch_syscall): Likewise.
2665         (print_mention_catch_syscall): Likewise.
2666         (print_recreate_catch_syscall): Likewise.
2667         (catch_syscall_breakpoint_ops): Likewise.
2668         (syscall_catchpoint_p): Likewise.
2669         (create_syscall_event_catchpoint): Likewise.
2670         (catch_syscall_split_args): Likewise.
2671         (catch_syscall_command_1): Likewise.
2672         (is_syscall_catchpoint_enabled): Likewise.
2673         (catch_syscall_enabled): Likewise.
2674         (catching_syscall_number): Likewise.
2675         (catch_syscall_completer): Likewise.
2676         (clear_syscall_counts): Likewise.
2677         (initialize_breakpoint_ops): Move initialization of syscall
2678         catchpoints to break-catch-syscall.c.
2679         (_initialize_breakpoint): Move code related to syscall catchpoints
2680         to break-catch-syscall.c.
2681
2682 2015-03-11  Sergio Durigan Junior  <sergiodj@redhat.com>
2683
2684         * breakpoint.c (breakpoint_find_if): New function.
2685         * breakpoint.h (breakpoint_find_if): New prototype.
2686
2687 2015-03-11  Gary Benson <gbenson@redhat.com>
2688
2689         * remote-fileio.h (remote_fileio_to_host_stat): New declaration.
2690         * remote-fileio.c (remote_fileio_to_host_uint): New function.
2691         (remote_fileio_to_host_ulong): Likewise.
2692         (remote_fileio_to_host_mode): Likewise.
2693         (remote_fileio_to_host_time): Likewise.
2694         (remote_fileio_to_host_stat): Likewise.
2695         * remote.c (PACKET_vFile_fstat): New enum value.
2696         (remote_protocol_features): Register the "vFile:fstat" feature.
2697         (remote_hostio_fstat): New function.
2698         (remote_bfd_iovec_stat): Use the above.
2699         (_initialize_remote): Register new "set/show remote
2700         hostio-fstat-packet" command.
2701         * symfile.c (separate_debug_file_exists): Update comment.
2702         * NEWS: Announce new vFile:fstat packet.
2703
2704 2015-03-11  Gary Benson <gbenson@redhat.com>
2705
2706         * common/common-remote-fileio.h: New file.
2707         * common/common-remote-fileio.c: Likewise.
2708         * Makefile.in (SFILES): Add common/common-remote-fileio.c.
2709         (HFILES_NO_SRCDIR): Add common/common-remote-fileio.h.
2710         (COMMON_OBS): Add common-remote-fileio.o.
2711         (common-remote-fileio.o): New rule.
2712         * remote-fileio.h (common-remote-fileio.h): New include.
2713         * remote-fileio.c (gdb/fileio.h): Do not include.
2714         (remote_fileio_to_be): Moved to common-remote-fileio.h.
2715         (remote_fileio_to_fio_uint): Likewise.
2716         (remote_fileio_to_fio_time): Likewise.
2717         (remote_fileio_mode_to_target): Moved to common-remote-fileio.c.
2718         (remote_fileio_to_fio_mode): Likewise.
2719         (remote_fileio_to_fio_ulong): Likewise.
2720         (remote_fileio_to_fio_stat): Likewise.
2721
2722 2015-03-11  Andy Wingo  <wingo@igalia.com>
2723
2724         * guile/scm-value.c (gdbscm_value_dynamic_type): Fix typo in which
2725         we were checking the cached type, not the cached dynamic type.
2726
2727 2015-03-11  Andy Wingo  <wingo@igalia.com>
2728
2729         * guile/scm-cmd.c (cmdscm_destroyer): Don't xfree the name and
2730         other strings, as these are on the GC'd heap, and will be
2731         collected along with the smob.
2732
2733 2015-03-11  Andy Wingo  <wingo@igalia.com>
2734
2735         * guile/scm-objfile.c (gdbscm_objfile_progspace): New function.
2736         (objfile_functions): Bind gdbscm_objfile_progspace to
2737         objfile-progspace.
2738         * guile/lib/gdb.scm: Add objfile-progspace to exports.
2739
2740 2015-03-11  Andy Wingo  <wingo@igalia.com>
2741
2742         * guile/guile.c (_initialize_guile): Disable automatic
2743         finalization, if Guile offers us that possibility.
2744         * guile/guile.c (call_initialize_gdb_module):
2745         * guile/scm-safe-call.c (gdbscm_with_catch): Arrange to run
2746         finalizers in appropriate places.
2747         * configure.ac (AC_TRY_LIBGUILE): Add a check for
2748         scm_set_automatic_finalization_enabled.
2749         * configure: Regenerated.
2750
2751 2015-03-11  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2752
2753         * s390-linux-tdep.c (s390_skip_prologue): Skip the prologue using
2754         SAL, if possible.
2755
2756 2015-03-11  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2757
2758         * s390-linux-nat.c (struct arch_lwp_info): New.
2759         (s390_fix_watch_points): Rename to...
2760         (s390_prepare_to_resume): ...this.  Skip the PER info update
2761         unless the watch points have changed.
2762         (s390_refresh_per_info, s390_new_thread): New functions.
2763         (s390_insert_watchpoint): Call s390_refresh_per_info instead of
2764         s390_fix_watch_points.
2765         (s390_remove_watchpoint): Likewise.
2766         (_initialize_s390_nat): Reflect renaming of s390_fix_watch_points.
2767         Register s390_prepare_to_resume.
2768
2769 2015-03-09  Pedro Alves  <palves@redhat.com>
2770
2771         Revert:
2772         2015-03-07  Pedro Alves  <palves@redhat.com>
2773         * common/gdb_socket.h: New file.
2774         * ser-tcp.c: Include gdb_socket.h.  Don't include netinet/in.h nor
2775         sys/socket.h.
2776         (net_open): Use union gdb_sockaddr_u.
2777
2778 2015-03-07  Pedro Alves  <palves@redhat.com>
2779
2780         * configure.ac (build_warnings): Move -Wmissing-prototypes
2781         -Wdeclaration-after-statement -Wmissing-parameter-type
2782         -Wold-style-declaration -Wold-style-definition to the C-specific
2783         set.
2784         * configure: Regenerate.
2785
2786 2015-03-07  Pedro Alves  <palves@redhat.com>
2787
2788         * common/gdb_socket.h: New file.
2789         * ser-tcp.c: Include gdb_socket.h.  Don't include netinet/in.h nor
2790         sys/socket.h.
2791         (net_open): Use union gdb_sockaddr_u.
2792
2793 2015-03-07  Pedro Alves  <palves@redhat.com>
2794
2795         * common/common-exceptions.c [!__cplusplus] (enum catcher_state)
2796         (exceptions_state_mc_action_iter)
2797         (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
2798         Don't define.
2799         [__cplusplus] (try_scope_depth): New global.
2800         [__cplusplus] (exception_try_scope_entry)
2801         (exception_try_scope_exit, gdb_exception_sliced_copy)
2802         (exception_rethrow): New functions.
2803         (throw_exception): In C++ mode, throw
2804         gdb_exception_RETURN_MASK_QUIT for RETURN_QUIT and
2805         gdb_exception_RETURN_MASK_ERROR for RETURN_ERROR.
2806         (throw_it): In C++ mode, use try_scope_depth.
2807         * common/common-exceptions.h [!__cplusplus]
2808         (exceptions_state_mc_action_iter)
2809         (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
2810         Don't declare.
2811         [__cplusplus] (exception_try_scope_entry)
2812         (exception_try_scope_exit, exception_rethrow): Declare.
2813         [__cplusplus] (struct exception_try_scope): New struct.
2814         [__cplusplus] (TRY, CATCH, END_CATCH): Reimplement on top of real
2815         C++ exceptions.
2816         (struct gdb_exception_RETURN_MASK_ALL)
2817         (struct gdb_exception_RETURN_MASK_ERROR)
2818         (struct gdb_exception_RETURN_MASK_QUIT): New types.
2819
2820 2015-03-07  Pedro Alves  <palves@redhat.com>
2821
2822         * main.c (handle_command_errors): Remove volatile qualifier from
2823         parameter.
2824
2825 2015-03-07  Pedro Alves  <palves@redhat.com>
2826
2827         * breakpoint.c (save_breakpoints): Adjust to avoid code between
2828         TRY and CATCH.
2829         * gdbtypes.c (safe_parse_type): Remove empty line.
2830         (types_deeply_equal):
2831         * guile/scm-frame.c (gdbscm_frame_name):
2832         * linux-thread-db.c (find_new_threads_once):
2833         * python/py-breakpoint.c (bppy_get_commands):
2834         * record-btrace.c (record_btrace_insert_breakpoint)
2835         (record_btrace_remove_breakpoint, record_btrace_start_replaying)
2836         (record_btrace_start_replaying): Adjust to avoid code between TRY
2837         and CATCH.
2838
2839 2015-03-07  Pedro Alves  <palves@redhat.com>
2840
2841         * common/common-exceptions.c (struct catcher) <exception>: No
2842         longer a pointer to volatile exception.  Now an exception value.
2843         <mask>: Delete field.
2844         (exceptions_state_mc_init): Remove all parameters.  Adjust.
2845         (exceptions_state_mc): No longer pop the catcher here.
2846         (exceptions_state_mc_catch): New function.
2847         (throw_exception): Adjust.
2848         * common/common-exceptions.h (exceptions_state_mc_init): Remove
2849         all parameters.
2850         (exceptions_state_mc_catch): Declare.
2851         (TRY_CATCH): Rename to ...
2852         (TRY): ... this.  Remove EXCEPTION and MASK parameters.
2853         (CATCH, END_CATCH): New.
2854         All callers adjusted.
2855
2856 2015-03-07  Tom Tromey  <tromey@redhat.com>
2857
2858         * top.c (quit_force): Inline and delete DO_TRY, DO_PRINT_EX.
2859
2860 2015-03-07  Pedro Alves  <palves@redhat.com>
2861
2862         * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache)
2863         (amd64_epilogue_frame_cache): Normal exception handling code.
2864         * break-catch-throw.c (check_status_exception_catchpoint)
2865         (re_set_exception_catchpoint): Ditto.
2866         * cli/cli-interp.c (safe_execute_command):
2867         * cli/cli-script.c (script_from_file): Ditto.
2868         * compile/compile-c-symbols.c (generate_c_for_for_one_variable):
2869         Ditto.
2870         * compile/compile-object-run.c (compile_object_run): Ditto.
2871         * cp-abi.c (baseclass_offset): Ditto.
2872         * cp-valprint.c (cp_print_value): Ditto.
2873         * exceptions.c (catch_exceptions_with_msg):
2874         * frame-unwind.c (frame_unwind_try_unwinder): Ditto.
2875         * frame.c (get_frame_address_in_block_if_available): Ditto.
2876         * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache)
2877         (i386_sigtramp_frame_cache): Ditto.
2878         * infcmd.c (post_create_inferior): Ditto.
2879         * linespec.c (parse_linespec, find_linespec_symbols):
2880         * p-valprint.c (pascal_object_print_value): Ditto.
2881         * parse.c (parse_expression_for_completion): Ditto.
2882         * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
2883         * remote.c (remote_get_noisy_reply): Ditto.
2884         * s390-linux-tdep.c (s390_frame_unwind_cache): Ditto.
2885         * solib-svr4.c (solib_svr4_r_map): Ditto.
2886
2887 2015-03-06  Gary Benson  <gbenson@redhat.com>
2888
2889         * common/common-utils.h (startswith): New inline function.
2890         All places where this logic was used updated to use the above.
2891
2892 2015-03-05  Pedro Alves  <palves@redhat.com>
2893
2894         PR gdb/18002
2895         * mem-break.c (default_memory_insert_breakpoint): Set shadow_len
2896         after reading the breakpoint's shadow memory.
2897
2898 2015-03-05  Mark Kettenis  <kettenis@gnu.org>
2899
2900         * hppabsd-nat.c: Remove file.
2901         * hppaobsd-nat.c: New file.
2902         * Makefile.in (ALLDEPFILES): Remove hppabsd-nat.c.  Add
2903         hppaobsd-nat.c.
2904         * config/pa/obsd.mh (NATDEPFILES): Replace hppabsd-nat.o with
2905         hppaobsd-nat.o.
2906
2907 2015-03-04  Pedro Alves  <palves@redhat.com>
2908
2909         * target.h (struct target_ops) <to_decr_pc_after_break>: Delete.
2910         (target_decr_pc_after_break): Delete declaration.
2911         * target.c (default_target_decr_pc_after_break)
2912         (target_decr_pc_after_break): Delete.
2913         * linux-nat.c (check_stopped_by_breakpoint, linux_nat_wait_1): Use
2914         gdbarch_decr_pc_after_break instead of target_decr_pc_after_break.
2915         * linux-thread-db.c (check_event): Likewise.
2916         * infrun.c (adjust_pc_after_break): Likewise.
2917         * darwin-nat.c (cancel_breakpoint): Likewise.
2918         * aix-thread.c (aix_thread_wait): Likewise.
2919         * target-delegates.c: Regenerate.
2920
2921 2015-03-04  Pedro Alves  <palves@redhat.com>
2922
2923         * linux-nat.c (save_sigtrap): Check for breakpoints before
2924         checking watchpoints.
2925         (status_callback) [USE_SIGTRAP_SIGINFO]: Don't check whether a
2926         breakpoint is inserted if relying on SIGTRAP's siginfo.si_code.
2927         (check_stopped_by_breakpoint) [USE_SIGTRAP_SIGINFO]: Decide whether
2928         a breakpoint triggered based on the SIGTRAP's siginfo.si_code.
2929         (linux_nat_stopped_by_sw_breakpoint)
2930         (linux_nat_supports_stopped_by_sw_breakpoint)
2931         (linux_nat_stopped_by_hw_breakpoint)
2932         (linux_nat_supports_stopped_by_hw_breakpoint): New functions.
2933         (linux_nat_wait_1): Don't re-increment the PC if relying on
2934         SIGTRAP's siginfo->si_code.
2935         (linux_nat_add_target): Install new target methods.
2936         * linux-thread-db.c (check_event): Don't account for breakpoint PC
2937         offset if the target already adjusted the PC.
2938         * nat/linux-ptrace.h (USE_SIGTRAP_SIGINFO): New.
2939         (GDB_ARCH_TRAP_BRKPT): New.
2940         (TRAP_HWBKPT): Define if not already defined.
2941
2942 2015-03-04  Pedro Alves  <palves@redhat.com>
2943
2944         * NEWS: Mention the new "swbreak" and "hwbreak" stop reasons.
2945         * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p>:
2946         Delete field.
2947         <stop_reason>: New field.
2948         (PACKET_swbreak_feature, PACKET_hwbreak_feature): New enum values.
2949         (packet_set_cmd_state): New function.
2950         (remote_protocol_features): Register the "swbreak" and "hwbreak"
2951         features.
2952         (remote_query_supported): If not disabled with the corresponding
2953         "set remote foo-packet" command, report support for the swbreak
2954         and hwbreak features.
2955         (struct stop_reply) <remote_stopped_by_watchpoint_p>: Delete
2956         field.
2957         <stop_reason>: New field.
2958         (remote_parse_stop_reply): Handle "swbreak" and "hwbreak".
2959         (remote_wait_as): Adjust.
2960         (remote_stopped_by_sw_breakpoint)
2961         (remote_supports_stopped_by_sw_breakpoint)
2962         (remote_stopped_by_hw_breakpoint)
2963         (remote_supports_stopped_by_hw_breakpoint): New functions.
2964         (remote_stopped_by_watchpoint): New function.
2965         (init_remote_ops): Install them.
2966         (_initialize_remote): Register new "set/show remote
2967         swbreak-feature-packet" and "set/show remote
2968         swbreak-feature-packet" commands.
2969
2970 2015-03-04  Pedro Alves  <palves@redhat.com>
2971
2972         * btrace.h: Include target/waitstatus.h.
2973         (struct btrace_thread_info) <stop_reason>: New field.
2974         * record-btrace.c (record_btrace_step_thread): Use
2975         record_check_stopped_by_breakpoint instead of breakpoint_here_p.
2976         (record_btrace_decr_pc_after_break): Delete.
2977         (record_btrace_stopped_by_sw_breakpoint)
2978         (record_btrace_supports_stopped_by_sw_breakpoint)
2979         (record_btrace_stopped_by_hw_breakpoint)
2980         (record_btrace_supports_stopped_by_hw_breakpoint): New functions.
2981         (init_record_btrace_ops): Install them.
2982         * record-full.c (record_full_hw_watchpoint): Delete and replace
2983         with ...
2984         (record_full_stop_reason): ... this throughout.
2985         (record_full_exec_insn): Adjust.
2986         (record_full_wait_1): Adjust.  No longer re-increment the PC.
2987         (record_full_wait_1): Adjust.  Use
2988         record_check_stopped_by_breakpoint instead of breakpoint_here_p.
2989         (record_full_stopped_by_watchpoint): Adjust.
2990         (record_full_stopped_by_sw_breakpoint)
2991         (record_full_supports_stopped_by_sw_breakpoint)
2992         (record_full_supports_stopped_by_sw_breakpoint)
2993         (record_full_stopped_by_hw_breakpoint)
2994         (record_full_supports_stopped_by_hw_breakpoint): New functions.
2995         (init_record_full_ops, init_record_full_core_ops): Install them.
2996         * record.c (record_check_stopped_by_breakpoint): New function.
2997         * record.h: Include target/waitstatus.h.
2998         (record_check_stopped_by_breakpoint): New declaration.
2999
3000 2015-03-04  Pedro Alves  <palves@redhat.com>
3001
3002         enum lwp_stop_reason -> enum target_stop_reason
3003         * linux-nat.c (linux_resume_one_lwp, check_stopped_by_watchpoint)
3004         (linux_nat_stopped_by_watchpoint, status_callback)
3005         (linux_nat_wait_1): Adjust.
3006         * linux-nat.h (enum lwp_stop_reason): Delete.
3007         (struct lwp_info) <stop_reason>: Now an enum target_stop_reason.
3008         * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust.
3009         * target/waitstatus.h (enum target_stop_reason): New.
3010
3011 2015-03-04  Pedro Alves  <palves@redhat.com>
3012
3013         * breakpoint.c (need_moribund_for_location_type): New function.
3014         (bpstat_stop_status): Don't skipping checking moribund locations
3015         of breakpoint types which the target tell caused a stop.
3016         (program_breakpoint_here_p): New function, factored out from ...
3017         (bp_loc_is_permanent): ... this.
3018         (update_global_location_list): Don't create a moribund location if
3019         the target supports reporting stops of the type of the removed
3020         breakpoint.
3021         * breakpoint.h (program_breakpoint_here_p): New declaration.
3022         * infrun.c (adjust_pc_after_break): Return early if the target has
3023         already adjusted the PC.  Add comments.
3024         (handle_signal_stop): If nothing explains a signal, and the target
3025         tells us the stop was caused by a software breakpoint, check if
3026         there's a breakpoint instruction in the memory.  If so, adjust the
3027         PC before presenting the stop to the user.  Otherwise, ignore the
3028         trap.  If nothing explains a signal, and the target tells us the
3029         stop was caused by a hardware breakpoint, ignore the trap.
3030         * target.h (struct target_ops) <to_stopped_by_sw_breakpoint,
3031         to_supports_stopped_by_sw_breakpoint, to_stopped_by_hw_breakpoint,
3032         to_supports_stopped_by_hw_breakpoint>: New fields.
3033         (target_stopped_by_sw_breakpoint)
3034         (target_supports_stopped_by_sw_breakpoint)
3035         (target_stopped_by_hw_breakpoint)
3036         (target_supports_stopped_by_hw_breakpoint): Define.
3037         * target-delegates.c: Regenerate.
3038
3039 2015-03-04  Pedro Alves  <palves@redhat.com>
3040
3041         * infrun.c (follow_fork_inferior): Use the whole of the
3042         inferior_ptid and pending_follow.related_pid ptids instead of
3043         building ptids from the process components.  Adjust verbose output
3044         to use target_pid_to_str.
3045         * linux-nat.c (linux_child_follow_fork): Use the whole of the
3046         inferior_ptid and pending_follow.related_pid ptids instead of
3047         building ptids from the process components.
3048
3049 2015-03-04  Mark Kettenis  <kettenis@gnu.org>
3050
3051         * inf-ptrace.c [PT_GET_PROCESS_STATE]
3052         (inf_ptrace_insert_fork_catchpoint): New function.
3053         (inf_ptrace_remove_fork_catchpoint): New function.
3054         (inf_ptrace_target) [PT_GET_PROCESS_STATE]: Install them.
3055
3056 2015-03-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3057
3058         * s390-linux-tdep.c (s390_register_name): Return empty string
3059         instead of NULL for registers that shouldn't be visible.
3060
3061 2015-03-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3062
3063         * s390-linux-tdep.c (s390_gdbarch_init): Use the correct syscall
3064         XML file for 64-bit targets.
3065
3066 2015-03-03  Simon Marchi  <simon.marchi@ericsson.com>
3067
3068         * target.h (find_default_create_inferior): Remove declaration.
3069         (find_default_attach): Likewise.
3070
3071 2015-03-03  Pedro Alves  <palves@redhat.com>
3072
3073         * inf-ptrace.c (inf_ptrace_resume): Remove spurious whitespace.
3074         Use ptid_get_pid to get the overall process id when resuming all
3075         threads.
3076
3077 2015-03-03  Pedro Alves  <palves@redhat.com>
3078
3079         * i386-linux-nat.c (i386_linux_resume): Get the ptrace PID out of
3080         the lwp field of ptid.  Pass the full ptid to get_thread_regcache.
3081         * inf-ptrace.c (get_ptrace_pid): New function.
3082         (inf_ptrace_resume): Use it.
3083         * linux-nat.c (linux_resume_one_lwp): Pass the LWP's ptid ummodified
3084         to the lower layer.
3085
3086 2015-03-03  Markus Metzger  <markus.t.metzger@intel.com>
3087
3088         * nat/linux-btrace.c: Include sys/utsname.h.
3089         (linux_determine_kernel_ptr_bits): New.
3090         (linux_enable_bts): Call linux_determine_kernel_ptr_bits.
3091         * x86-linux-nat.c (x86_linux_enable_btrace): Do not overwrite non-zero
3092         ptr_bits.
3093
3094 2015-03-03  Markus Metzger  <markus.t.metzger@intel.com>
3095
3096         * btrace.c (ftrace_update_function): Treat return as tailcall for
3097         "_dl_runtime_resolve".
3098
3099 2015-03-03  Markus Metzger  <markus.t.metzger@intel.com>
3100
3101         * btrace.h (btrace_function) <lbegin, lend>: Remove.
3102         * btrace.c (ftrace_debug): Do not print the line range.
3103         (ftrace_skip_file, ftrace_update_lines): Remove.
3104         (ftrace_new_function): Remove lbegin and lend initialization.
3105         (btrace_compute_ftrace_bts): Remove call to ftrace_update_lines.
3106         * record-btrace.c (btrace_compute_src_line_range): New.
3107         (btrace_call_history_src_line): Call btrace_compute_src_line_range.
3108
3109 2015-03-02  Pedro Alves  <palves@redhat.com>
3110
3111         * infrun.c (follow_exec): Delete all threads of the process except
3112         the event thread.  Extended comments.
3113
3114 2015-03-02  Joel Brobecker  <brobecker@adacore.com>
3115
3116         * contrib/ari/gdb_ari.sh: Reinstate checks for "true" and "false".
3117
3118 2015-03-02  Joel Brobecker  <brobecker@adacore.com>
3119
3120         * utils.h: Remove <stdbool.h> #include.
3121         (producer_is_gcc): Change return type to "int".
3122         * utils.c (producer_is_gcc): Change return type to int.
3123         Return 1 instead of true, and 0 instead of false.
3124         Adjust function documentation accordingly.
3125
3126 2015-03-02  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3127
3128         * s390-linux-nat.c (have_regset_vxrs): New static variable.
3129         (s390_linux_fetch_inferior_registers): Handle vector registers, if
3130         present.
3131         (s390_linux_store_inferior_registers): Likewise.
3132         (s390_get_hwcap): Remove function.  Embed its logic...
3133         (s390_read_description): ...here.  Yield a target description with
3134         vector registers if applicable.
3135         * s390-linux-tdep.c: Include "features/s390-vx-linux64.c",
3136         "features/s390-tevx-linux64.c", "features/s390x-vx-linux64.c", and
3137         "features/s390x-tevx-linux64.c".
3138         (struct gdbarch_tdep) <v0_full_regnum>: New field.
3139         (s390_dwarf_regmap): Add vector registers.  Remove bogus entries
3140         for "GNU/Linux-specific registers".
3141         (s390_dwarf_reg_r0l): New enum value.
3142         (s390_dwarf_reg_to_regnum): Support vector registers.
3143         (s390_adjust_frame_regnum): Adjust pseudo DWARF register numbers
3144         of GPR lower halves.
3145         (regnum_is_vxr_full): New function.
3146         (s390_register_name): New function.
3147         (s390_pseudo_register_name): Handle v0-v15, which are composed of
3148         f0-f15 and v0l-v15l.
3149         (s390_pseudo_register_type): Likewise.
3150         (s390_pseudo_register_read): Likewise.
3151         (s390_pseudo_register_write): Likewise.
3152         (s390_value_from_register): Account for the fact that values are
3153         placed left-justified in vector registers.
3154         (s390_pseudo_register_reggroup_p): Add pseudo registers v0-v15 to
3155         the vector reggroup and omit them from the general reggroup.
3156         (s390_regmap_vxrs_low, s390_regmap_vxrs_high): New register maps.
3157         (s390_vxrs_low_regset, s390_vxrs_high_regset): New regsets.
3158         (s390_iterate_over_regset_sections): Add iterations for the two
3159         new vector regsets.
3160         (s390_core_read_description): Yield a target description with
3161         vector registers if applicable.
3162         (s390_gdbarch_init): Handle target descriptions with vector
3163         registers.  Add "register_name" gdbarch method.
3164         (_initialize_s390_tdep): Call new tdesc initialization functions.
3165         * s390-linux-tdep.h (HWCAP_S390_VX): New macro.
3166         (S390_V0_LOWER_REGNUM, S390_V1_LOWER_REGNUM, S390_V2_LOWER_REGNUM)
3167         (S390_V3_LOWER_REGNUM, S390_V4_LOWER_REGNUM, S390_V5_LOWER_REGNUM)
3168         (S390_V6_LOWER_REGNUM, S390_V7_LOWER_REGNUM, S390_V8_LOWER_REGNUM)
3169         (S390_V9_LOWER_REGNUM, S390_V10_LOWER_REGNUM)
3170         (S390_V11_LOWER_REGNUM, S390_V12_LOWER_REGNUM)
3171         (S390_V13_LOWER_REGNUM, S390_V14_LOWER_REGNUM)
3172         (S390_V15_LOWER_REGNUM, S390_V16_REGNUM, S390_V17_REGNUM)
3173         (S390_V18_REGNUM, S390_V19_REGNUM, S390_V20_REGNUM)
3174         (S390_V21_REGNUM, S390_V22_REGNUM, S390_V23_REGNUM)
3175         (S390_V24_REGNUM, S390_V25_REGNUM, S390_V26_REGNUM)
3176         (S390_V27_REGNUM, S390_V28_REGNUM, S390_V29_REGNUM)
3177         (S390_V30_REGNUM, S390_V31_REGNUM): New macros.
3178         (S390_NUM_REGS): Adjust value.
3179         (s390_vxrs_low_regset, s390_vxrs_high_regset): Declare.
3180         (tdesc_s390_vx_linux64, tdesc_s390_tevx_linux64)
3181         (tdesc_s390x_vx_linux64, tdesc_s390x_tevx_linux64): Likewise.
3182         * NEWS: Announce S/390 vector register support.
3183
3184 2015-03-02  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3185
3186         * features/s390-tevx-linux64.xml: New file.
3187         * features/s390-vx-linux64.xml: New file.
3188         * features/s390-vx.xml: New file.
3189         * features/s390x-tevx-linux64.xml: New file.
3190         * features/s390x-vx-linux64.xml: New file.
3191         * features/Makefile (WHICH): Add s390-vx-linux64,
3192         s390x-vx-linux64, s390-tevx-linux64, and s390x-tevx-linux64.
3193         (s390-vx-linux64-expedite, s390-tevx-linux64-expedite)
3194         (s390x-vx-linux64-expedite, s390x-tevx-linux64-expedite): New
3195         macros.
3196         * features/s390-tevx-linux64.c: New generated file.
3197         * features/s390-vx-linux64.c: Likewise.
3198         * features/s390x-tevx-linux64.c: Likewise.
3199         * features/s390x-vx-linux64.c: Likewise.
3200         * regformats/s390-tevx-linux64.dat: Likewise.
3201         * regformats/s390-vx-linux64.dat: Likewise.
3202         * regformats/s390x-tevx-linux64.dat: Likewise.
3203         * regformats/s390x-vx-linux64.dat: Likewise.
3204
3205 2015-02-28  Doug Evans  <xdje42@gmail.com>
3206
3207         * symtab.h (struct symtab) <next>: Fix comment.
3208
3209 2015-02-27  Simon Marchi  <simon.marchi@ericsson.com>
3210
3211         * python/python.c (python_GdbModuleDef): Rename GdbMethods to
3212         python_GdbMethods.
3213
3214 2015-02-27  Pedro Alves  <palves@redhat.com>
3215
3216         * dtrace-probe.c (dtrace_probe_ops): Make extern.
3217
3218 2015-02-27  Pedro Alves  <palves@redhat.com>
3219
3220         * common/common-exceptions.h (exception_none): Declare.
3221         * common/common-exceptions.c (exception_none): Moved from
3222         exceptions.c.
3223         (exceptions_state_mc_init): Use exception_none.
3224         * exceptions.c (exception_none): Move to
3225         common/common-exceptions.c.
3226         * exceptions.h (exception_none): Move to
3227         common/common-exceptions.h.
3228
3229 2015-02-27  Pedro Alves  <palves@redhat.com>
3230
3231         * main.c (catch_command_errors, catch_command_errors_const):
3232         Remove 'mask' argument.  Adjust.
3233         (captured_main): Adjust callers.
3234
3235 2015-02-27  Pedro Alves  <palves@redhat.com>
3236
3237         * python/python-internal.h: Include "extension-priv.h".
3238
3239 2015-02-27  Pedro Alves  <palves@redhat.com>
3240
3241         * breakpoint.h (enum print_stop_action): Move further up in the
3242         file.
3243
3244 2015-02-27  Pedro Alves  <palves@redhat.com>
3245
3246         * gdbarch.sh: Include regcache.h.
3247         * gdbarch.h: Regenerate.
3248
3249 2015-02-27  Pedro Alves  <palves@redhat.com>
3250
3251         * arm-tdep.c (decode_insn) <arm_handle_insn, thumb_handle_insn>:
3252         Remove duplicate const.
3253         * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Remove
3254         duplicate const.
3255
3256 2015-02-27  Pedro Alves  <palves@redhat.com>
3257
3258         * cp-valprint.c (vtbl_ptr_name): Use EXPORTED_CONST.
3259         * guile/guile.c (extension_language_guile): Use EXPORTED_CONST.
3260         * features/feature_to_c.sh: Tag the generated xml_builtin array
3261         with extern const in C++ mode.
3262
3263 2015-02-27  Tom Tromey  <tromey@redhat.com>
3264
3265         * minidebug.c (struct lzma_stream): Rename to ...
3266         (struct gdb_lzma_stream): ... this.
3267         (lzma_open, lzma_pread, lzma_close, lzma_stat): Adjust.
3268
3269 2015-02-27  Pedro Alves  <palves@redhat.com>
3270
3271         * mi/mi-cmd-stack.c (mi_apply_ext_lang_frame_filter): New
3272         function.
3273         (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
3274         (mi_cmd_stack_list_variables): Use it.
3275
3276 2015-02-27  Pedro Alves  <palves@redhat.com>
3277
3278         * x86-linux-nat.c (u_debugreg_offset): New function.
3279         (x86_linux_dr_get, x86_linux_dr_set): Use it.
3280
3281 2015-02-27  Pedro Alves  <palves@redhat.com>
3282
3283         * nat/x86-dregs.h (enum target_hw_bp_type): Remove forward
3284         declaration.
3285         Include break-common.h.
3286
3287 2015-02-27  Tom Tromey  <tromey@redhat.com>
3288             Pedro Alves <palves@redhat.com>
3289
3290         * arm-tdep.c (set_fp_model_sfunc, arm_set_abi): Use 'int' for
3291         local used to iterate over enums.
3292         * completer.c (signal_completer): Likewise.
3293         * i386-tdep.c (i386_stap_parse_special_token): Likewise.
3294         * rs6000-tdep.c (powerpc_set_vector_abi): Likewise.
3295         * tui/tui-data.c (tui_next_win, tui_prev_win): Likewise.
3296         * tui/tui-layout.c (next_layout, prev_layout): Likewise.
3297         * tui/tui-win.c (tui_refresh_all_win, tui_rehighlight_all)
3298         (tui_resize_all, tui_set_focus_command, tui_all_windows_info): Likewise.
3299         * tui-wingeneral.c (tui_refresh_all):  Likewise.
3300
3301 2015-02-27  Pedro Alves  <palves@redhat.com>
3302
3303         * target.h: Include "infrun.h".
3304
3305 2015-02-27  Pedro Alves  <palves@redhat.com>
3306
3307         * gdb_proc_service.h: Wrap with EXTERN_C_PUSH/EXTERN_C_POP.
3308
3309 2015-02-27  Pedro Alves  <palves@redhat.com>
3310
3311         * common/agent.h (IPA_SYM_EXPORTED_NAME): New.
3312         (IPA_SYM): Use it.
3313         * common/common-defs.h (EXTERN_C_PUSH, EXTERN_C_POP): New macros.
3314
3315 2015-02-27  Pedro Alves  <palves@redhat.com>
3316
3317         * cli-out.c (_rl_erase_entire_line): Move declaration out of
3318         cli_mld_erase_entire_line, and make it extern "C".
3319         * common/common-defs.h (EXTERN_C): New.
3320         * completer.c (_rl_completion_prefix_display_length)
3321         (_rl_print_completions_horizontally, QSFUNC): Move declarations
3322         out of gdb_display_match_list_1.
3323         (_rl_qsort_string_compare): Move declaration out of
3324         gdb_display_match_list_1, and make it extern "C".
3325         * defs.h (re_comp): Use EXTERN_C.
3326         * maint.c (_mcleanup): Move declaration out of mcleanup_wrapper,
3327         and make it extern "C".
3328         (monstartup): Move declaration out of maintenance_set_profile_cmd,
3329         and make it extern "C".
3330         (main): Move declaration out of maintenance_set_profile_cmd.
3331         * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string): Use
3332         EXTERN_C.
3333
3334 2015-02-27  Pedro Alves  <palves@redhat.com>
3335
3336         * python/python.c (GdbMethods): Rename to ...
3337         (python_GdbMethods): ... this and make extern.
3338         (GdbModuleDef): Rename to ...
3339         (python_GdbModuleDef): ... this and make extern.
3340
3341 2015-02-27  Pedro Alves  <palves@redhat.com>
3342
3343         * record-btrace.c (set_record_btrace_cmdlist)
3344         (show_record_btrace_cmdlist): Remove redefinitions.
3345
3346 2015-02-27  Tom Tromey  <tromey@redhat.com>
3347             Pedro Alves  <palves@redhat.com>
3348
3349         * dwarf2-frame.c (enum cfa_how_kind, struct
3350         dwarf2_frame_state_reg_info): Move out of struct
3351         dwarf2_frame_state.
3352         * dwarf2read.c (struct tu_stats): Move out of struct
3353         dwarf2_per_objfile.
3354         (struct file_entry): Move out of struct line_header.
3355         (struct nextfield, struct nextfnfield, struct fnfieldlist, struct
3356         typedef_field_list): Move out of struct field_info.
3357         * gdbtypes.h (enum dynamic_prop_kind, union dynamic_prop_data):
3358         Move out of struct dynamic_prop.
3359         (union type_owner, union field_location, struct field, struct
3360         range_bounds, union type_specific): Move out of struct main_type.
3361         (struct fn_fieldlist, struct fn_field, struct typedef_field)
3362         (VOFFSET_STATIC): Move out of struct cplus_struct_type.
3363         (struct call_site_target, union call_site_parameter_u, struct
3364         call_site_parameter): Move out of struct call_site.
3365         * m32c-tdep.c (enum m32c_prologue_kind): Move out of struct
3366         m32c_prologue.
3367         (enum srcdest_kind): Move out of struct srcdest.
3368         * main.c (enum cmdarg_kind): Move out of struct cmdarg.
3369         * prologue-value.h (enum prologue_value_kind): Move out of struct
3370         prologue_value.
3371         * s390-linux-tdep.c (enum s390_abi_kind): Move out of struct
3372         gdbarch_tdep.
3373         * stabsread.c (struct nextfield, struct next_fnfieldlist): Move
3374         out of struct field_info.
3375         * symfile.h (struct other_sections): Move out of struct
3376         section_addr_info.
3377         * symtab.c (struct symbol_cache_slot): Move out struct
3378         block_symbol_cache.
3379         * target-descriptions.c (enum tdesc_type_kind): Move out of
3380         typedef struct tdesc_type.
3381         * tui/tui-data.h (enum tui_line_or_address_kind): Move out of
3382         struct tui_line_or_address.
3383         * value.c (enum internalvar_kind, union internalvar_data): Move
3384         out of struct internalvar.
3385         * xtensa-tdep.h (struct ctype_cache): Move out of struct
3386         gdbarch_tdep.
3387
3388 2015-02-27  Tom Tromey  <tromey@redhat.com>
3389             Pedro Alves  <palves@redhat.com>
3390
3391         Rename symbols whose names are reserved C++ keywords throughout.
3392
3393 2015-02-27  Pedro Alves  <palves@redhat.com>
3394
3395         * Makefile.in (COMPILER): New, get it from autoconf.
3396         (COMPILE.pre, CC_LD): Use COMPILER.
3397         (CXX): Get from autoconf instead.
3398         (CXX_FOR_TARGET): Default to g++ instead of gcc.
3399         * acinclude.m4: Include build-with-cxx.m4.
3400         * build-with-cxx.m4: New file.
3401         * configure.ac: Call AC_PROG_CXX and GDB_AC_BUILD_WITH_CXX.
3402         Disable -Werror by default if building in C++ mode.
3403         (build_warnings): Add -Wno-sign-compare, -Wno-write-strings and
3404         -Wno-narrowing in C++ mode.  Only enable -Wpointer-sign in C mode.
3405         Run supported-warning-flags tests with the C++ compiler.
3406         Save/restore CXXFLAGS too.
3407         * configure: Regenerate.
3408
3409 2015-02-27  Pedro Alves  <palves@redhat.com>
3410
3411         * libiberty.m4: New file.
3412         * acinclude.m4: Include libiberty.m4.
3413         * configure.ac: Call libiberty_INIT.
3414         * config.in, configure: Regenerate.
3415
3416 2015-02-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3417
3418         * s390-linux-tdep.c (s390_gcc_target_options): Not just handle
3419         31-bit targets, but 64-bit targets as well.
3420         (s390_gnu_triplet_regexp): New function.
3421         (s390_gdbarch_init): Set the gcc_target_options gdbarch method for
3422         64-bit targets as well.  Set the gnu_triplet_regexp gdbarch
3423         method.
3424
3425 2015-02-27  Jon TURNEY  <jon.turney@dronecode.org.uk>  (tiny patch)
3426
3427         * windows-nat.c (CONTEXT_DEBUGGER): Remove.
3428         (CONTEXT_DEBUGGER_DR): Add CONTEXT_SEGMENTS.  Incorporate flags
3429         from CONTEXT_DEBUGGER.
3430
3431 2015-02-26  Doug Evans  <dje@google.com>
3432
3433         * gdbtypes.c (internal_type_vptr_fieldno): Add missing call to
3434         CHECK_TYPEDEF.
3435         (set_type_vptr_fieldno): Ditto.
3436         (internal_type_vptr_basetype, set_type_vptr_basetype): Ditto.
3437         * gnu-v3-abi.c (gnuv3_dynamic_class): Ditto.
3438
3439 2015-02-26  Pedro Alves  <palves@redhat.com>
3440
3441         * auto-load.h (file_is_auto_load_safe): Add ATTRIBUTE_PRINTF.
3442         * complaints.c (vcomplaint): Pass argument FMT directly to
3443         printf-like functions instead of complaint->fmt.
3444         * ctf.c (ctf_save_write_metadata): Add ATTRIBUTE_PRINTF.
3445         * darwin-nat.c (inferior_debug): Add ATTRIBUTE_PRINTF.
3446         * compile/compile-loc2c.c (pushf, unary, binary): Add
3447         ATTRIBUTE_PRINTF.
3448         (do_compile_dwarf_expr_to_c): Pass string literal as format string
3449         to pushf.
3450         (BINARY): Pass string literal as format string to 'binary'.
3451         * compile/compile-object-load.c (link_callbacks_einfo): Add
3452         ATTRIBUTE_PRINTF.
3453         * guile/guile-internal.h (gdbscm_printf): Add ATTRIBUTE_PRINTF.
3454
3455 2015-02-26  Pedro Alves  <palves@redhat.com>
3456
3457         * windows-termcap.c: Rename to ...
3458         * stub-termcap.c: ... this.  Adjust header line.
3459         * Makefile.in (SFILES): Refer to stub-termcap.c instead of
3460         windows-termcap.c.
3461         * configure: Regenerate.
3462         * configure.ac: Refer to stub-termcap.o instead of
3463         windows-termcap.o.
3464         * gdb_curses.h: Mention stub-termcap.c instead of
3465         windows-termcap.c.
3466
3467 2015-02-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
3468
3469         * compile/compile-c-symbols.c (convert_one_symbol, convert_symbol_bmsym)
3470         (gcc_symbol_address): Call gnu_ifunc_resolve_addr.
3471
3472 2015-02-26  Antoine Tremblay  <antoine.tremblay@ericsson.com>
3473
3474         * gdb/infcmd.c (print_return_value): use type_to_string to print type.
3475
3476 2015-02-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
3477
3478         * elfread.c (elf_read_minimal_symbols): Use bfd_alloc for
3479         bfd_canonicalize_symtab.
3480
3481 2015-02-25  John Baldwin  <jhb@FreeBSD.org>
3482
3483         * amd64fbsd-nat.c: Include sys/user.h.
3484         (_initialize_amd64fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl
3485         instead of KERN_PS_STRINGS to locate the signal trampoline.
3486         * i386fbsd-nat.c: Include sys/user.h.
3487         (_initialize_i386fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl
3488         instead of KERN_PS_STRINGS to locate the signal trampoline.
3489         * amd64fbsd-tdep.c (amd64fbsd_sigtramp_code): New.
3490         (amd64fbsd_sigtramp_p): New.
3491         (amd64fbsd_sigtramp_start_addr, amd64fbsd_sigtramp_end_addr): No
3492         longer set default values.
3493         (amd64fbsd_init_abi): Set "sigtramp_p" to "amd64fbsd_sigtramp_p".
3494         * i386fbsd-tdep.c (i386fbsd_sigtramp_start)
3495         (i386fbsd_sigtramp_middle, i386fbsd_sigtramp_end)
3496         (i386fbsd_freebsd4_sigtramp_start)
3497         (i386fbsd_freebsd4_sigtramp_middle)
3498         (i386fbsd_freebsd4_sigtramp_end, i386fbsd_osigtramp_start)
3499         (i386fbsd_osigtramp_middle, i386fbsd_osigtramp_end): New.
3500         (i386fbsd_sigtramp_p): New.
3501         (i386fbsd_sigtramp_start_addr, i386fbsd_sigtramp_end_addr): No
3502         longer set default values.
3503         (i386fbsd_init_abi): Set "sigtramp_p" to "i386fbsd_sigtramp_p".
3504
3505 2015-02-25  John Baldwin  <jhb@freebsd.org>
3506
3507         * amd64fbsd-tdep.c (amd64fbsd_sigcontext_addr): Use
3508         get_frame_register instead of frame_unwind_register_unsigned.
3509
3510 2015-02-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
3511
3512         PR build/18033
3513         * compile/compile-c-support.c (c_compute_program): Change // comment.
3514         * compile/compile-object-load.c (setup_sections): Change // comment.
3515
3516 2015-02-26  Joel Brobecker  <brobecker@adacore.com>
3517
3518         PR build/18033:
3519         * iq2000-tdep.c (iq2000_frame_cache): Delete C++-style comment.
3520
3521 2015-02-23  Pedro Alves  <palves@redhat.com>
3522
3523         * remote.c (skip_to_semicolon): New function.
3524         (remote_parse_stop_reply) <T stop reply>: Use it.  Don't
3525         special case the stop reasons that look like hex numbers
3526         upfront.  Instead handle real register numbers after matching
3527         all the known stop reasons.
3528
3529 2015-02-21  Doug Evans  <dje@google.com>
3530
3531         PR c++/17976, symtab/17821
3532         * cp-namespace.c (cp_search_static_and_baseclasses): New parameter
3533         is_in_anonymous.  All callers updated.
3534         (find_symbol_in_baseclass): Ditto.
3535         (cp_lookup_nested_symbol_1): Ditto.  Don't search all static blocks
3536         for symbols in an anonymous namespace.
3537         * dwarf2read.c (namespace_name): Don't call dwarf2_name, fetch
3538         DW_AT_name directly.
3539         (dwarf2_name): Convert missing namespace name to
3540         CP_ANONYMOUS_NAMESPACE_STR.
3541
3542 2015-02-20  Pedro Alves  <palves@redhat.com>
3543
3544         * linux-nat.c (linux_handle_extended_wait): Call
3545         thread_db_notice_clone whenever a new clone LWP is detected.
3546         (linux_stop_and_wait_all_lwps, linux_unstop_all_lwps): New
3547         functions.
3548         * linux-nat.h (thread_db_attach_lwp): Delete declaration.
3549         (thread_db_notice_clone, linux_stop_and_wait_all_lwps)
3550         (linux_unstop_all_lwps): Declare.
3551         * linux-thread-db.c (struct thread_get_info_inout): Delete.
3552         (thread_get_info_callback): Delete.
3553         (thread_from_lwp): Use td_thr_get_info and record_thread.
3554         (thread_db_attach_lwp): Delete.
3555         (thread_db_notice_clone): New function.
3556         (try_thread_db_load_1): If /proc is mounted and shows the
3557         process'es task list, walk over all LWPs and call thread_from_lwp
3558         instead of relying on td_ta_thr_iter.
3559         (attach_thread): Don't call check_thread_signals here.  Split the
3560         tail part of the function (which adds the thread to the core GDB
3561         thread list) to ...
3562         (record_thread): ... this function.  Call check_thread_signals
3563         here.
3564         (thread_db_wait): Don't call thread_db_find_new_threads_1.  Always
3565         call thread_from_lwp.
3566         (thread_db_update_thread_list): Rename to ...
3567         (thread_db_update_thread_list_org): ... this.
3568         (thread_db_update_thread_list): New function.
3569         (thread_db_find_thread_from_tid): Delete.
3570         (thread_db_get_ada_task_ptid): Simplify.
3571         * nat/linux-procfs.c: Include <sys/stat.h>.
3572         (linux_proc_task_list_dir_exists): New function.
3573         * nat/linux-procfs.h (linux_proc_task_list_dir_exists): Declare.
3574
3575 2015-02-20  Pedro Alves  <palves@redhat.com>
3576
3577         * linux-nat.c (lin_lwp_attach_lwp): No longer special case the
3578         main LWP.  Handle the case of waitpid returning 0 if we're already
3579         attached to the LWP.  Don't set the LWP's last_resume_kind to
3580         resume_stop if we already knew about the LWP.
3581         (linux_nat_filter_event): Add debug logs.
3582
3583 2015-02-20  Pedro Alves  <palves@redhat.com>
3584
3585         * target.h (forward_target_decr_pc_after_break): Delete
3586         declaration.
3587
3588 2015-02-20  Pedro Alves  <palves@redhat.com>
3589
3590         PR threads/18006
3591         * linux-thread-db.c (thread_get_info_callback): Return early if
3592         the thread's lwp id is -1.
3593
3594 2015-02-20  Joel Brobecker  <brobecker@adacore.com>
3595
3596         GDB 7.9 released.
3597
3598 2015-02-19  Steve Ellcey  <sellcey@imgtec.com>
3599
3600         * dtrace-probe.c (dtrace_process_dof_probe): Initialize arg.expr.
3601         (dtrace_get_probes) Change type of variable 'dof'.
3602
3603 2015-02-19  Antoine Tremblay  <antoine.tremblay@ericsson.com>
3604
3605         PR breakpoints/16812
3606         * linux-nat.c (linux_nat_filter_event): Report SIGTRAP,SIGILL,SIGSEGV.
3607         * nat/linux-ptrace.c (linux_wstatus_maybe_breakpoint): Add.
3608         * nat/linux-ptrace.h: Add linux_wstatus_maybe_breakpoint.
3609
3610 2015-02-19  David Taylor  <dtaylor@emc.com>
3611
3612         * common/ax.def (setv): Fix consumed entry in setv DEFOP.
3613
3614 2015-02-18  Patrick Palka  <patrick@parcs.ath.cx>
3615
3616         * tui/tui-io.c (tui_handle_resize_during_io): Remove this
3617         function.
3618         (tui_putc): Don't call tui_handle_resize_during_io.
3619         (tui_getc): Likewise.
3620         (tui_mld_getc): Likewise.
3621         * tui/tui-win.c: Include event-loop.h and tui/tui-io.h.
3622         (tui_sigwinch_token): New static variable.
3623         (tui_initialize_win): Adjust documentation.  Set
3624         tui_sigwinch_token.
3625         (tui_async_resize_screen): New asynchronous callback.
3626         (tui_sigwinch_handler): Adjust documentation.  Asynchronously
3627         invoke tui_async_resize_screen.
3628
3629 2015-02-18  Jose E. Marchesi  <jose.marchesi@oracle.com>
3630
3631         * configure: Regenerated.
3632         * configure.ac: Use GDB_AC_TRANSFORM.
3633         * Makefile.in (aclocal_m4_deps): Added transform.m4.
3634         * acinclude.m4: sinclude transform.m4.
3635         * transform.m4: New file.
3636         (GDB_AC_TRANSFORM): New macro.
3637
3638 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
3639
3640         * NEWS: Announce the support for DTrace SDT probes.
3641
3642 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
3643
3644         * amd64-linux-tdep.c: Include "parser-defs.h" and "user-regs.h".
3645         (amd64_dtrace_parse_probe_argument): New function.
3646         (amd64_dtrace_probe_is_enabled): Likewise.
3647         (amd64_dtrace_enable_probe): Likewise.
3648         (amd64_dtrace_disable_probe): Likewise.
3649         (amd64_linux_init_abi): Register the
3650         `gdbarch_dtrace_probe_argument', `gdbarch_dtrace_enable_probe',
3651         `gdbarch_dtrace_disable_probe' and
3652         `gdbarch_dtrace_probe_is_enabled' hooks.
3653         (amd64_dtrace_disabled_probe_sequence_1): New constant.
3654         (amd64_dtrace_disabled_probe_sequence_2): Likewise.
3655         (amd64_dtrace_enable_probe_sequence): Likewise.
3656         (amd64_dtrace_disable_probe_sequence): Likewise.
3657
3658 2015-01-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
3659
3660         * breakpoint.c (BREAK_ARGS_HELP): Help string updated to mention
3661         the -probe-dtrace new vpossible value for PROBE_MODIFIER.
3662         * configure.ac (CONFIG_OBS): dtrace-probe.o added if BFD can
3663         handle ELF files.
3664         * Makefile.in (SFILES): dtrace-probe.c added.
3665         * configure: Regenerate.
3666         * dtrace-probe.c: New file.
3667         (SHT_SUNW_dof): New constant.
3668         (dtrace_probe_type): New enum.
3669         (dtrace_probe_arg): New struct.
3670         (dtrace_probe_arg_s): New typedef.
3671         (struct dtrace_probe_enabler): New struct.
3672         (dtrace_probe_enabler_s): New typedef.
3673         (dtrace_probe): New struct.
3674         (dtrace_probe_is_linespec): New function.
3675         (dtrace_dof_sect_type): New enum.
3676         (dtrace_dof_dofh_ident): Likewise.
3677         (dtrace_dof_encoding): Likewise.
3678         (DTRACE_DOF_ENCODE_LSB): Likewise.
3679         (DTRACE_DOF_ENCODE_MSB): Likewise.
3680         (dtrace_dof_hdr): New struct.
3681         (dtrace_dof_sect): Likewise.
3682         (dtrace_dof_provider): Likewise.
3683         (dtrace_dof_probe): Likewise.
3684         (DOF_UINT): New macro.
3685         (DTRACE_DOF_PTR): Likewise.
3686         (DTRACE_DOF_SECT): Likewise.
3687         (dtrace_process_dof_probe): New function.
3688         (dtrace_process_dof): Likewise.
3689         (dtrace_build_arg_exprs): Likewise.
3690         (dtrace_get_arg): Likewise.
3691         (dtrace_get_probes): Likewise.
3692         (dtrace_get_probe_argument_count): Likewise.
3693         (dtrace_can_evaluate_probe_arguments): Likewise.
3694         (dtrace_evaluate_probe_argument): Likewise.
3695         (dtrace_compile_to_ax): Likewise.
3696         (dtrace_probe_destroy): Likewise.
3697         (dtrace_gen_info_probes_table_header): Likewise.
3698         (dtrace_gen_info_probes_table_values): Likewise.
3699         (dtrace_probe_is_enabled): Likewise.
3700         (dtrace_probe_ops): New variable.
3701         (info_probes_dtrace_command): New function.
3702         (_initialize_dtrace_probe): Likewise.
3703         (dtrace_type_name): Likewise.
3704
3705 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
3706
3707         * gdbarch.sh (dtrace_parse_probe_argument): New.
3708         (dtrace_probe_is_enabled): Likewise.
3709         (dtrace_enable_probe): Likewise.
3710         (dtrace_disable_probe): Likewise.
3711         * gdbarch.c: Regenerate.
3712         * gdbarch.h: Regenerate.
3713
3714 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
3715
3716         * stap-probe.c (stap_probe_ops): Add NULLs in the static
3717         stap_probe_ops for `enable_probe' and `disable_probe'.
3718         * probe.c (enable_probes_command): New function.
3719         (disable_probes_command): Likewise.
3720         (_initialize_probe): Define the cli commands `enable probe' and
3721         `disable probe'.
3722         (parse_probe_linespec): New function.
3723         (info_probes_for_ops): Use parse_probe_linespec.
3724         * probe.h (probe_ops): New hooks `enable_probe' and
3725         `disable_probe'.
3726
3727 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
3728
3729         * probe.c (compute_probe_arg): Moved from stap-probe.c
3730         (compile_probe_arg): Likewise.
3731         (probe_funcs): Likewise.
3732         * stap-probe.c (compute_probe_arg): Moved to probe.c.
3733         (compile_probe_arg): Likewise.
3734         (probe_funcs): Likewise.
3735
3736 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
3737
3738         * probe.c (print_ui_out_not_applicables): New function.
3739         (exists_probe_with_pops): Likewise.
3740         (info_probes_for_ops): Do not include column headers for probe
3741         types for which no probe has been actually found on any object.
3742         Also invoke `print_ui_out_not_applicables' in order to match the
3743         column rows with the header when probes of several types are
3744         listed.
3745         Print the "Type" column.
3746         * probe.h (probe_ops): Added a new probe operation `type_name'.
3747         * stap-probe.c (stap_probe_ops): Add `stap_type_name'.
3748         (stap_type_name): New function.
3749
3750 2015-02-17  Patrick Palka  <patrick@parcs.ath.cx>
3751
3752         * tui/tui-io.c (tui_getc): Don't call key_is_command_char.
3753         (key_is_command_char): Delete.
3754
3755 2015-02-17  Pedro Alves  <palves@redhat.com>
3756
3757         * tui/tui.c (tui_enable): Resize windows before anything
3758         might show a window.
3759
3760 2015-02-17  Max Ostapenko  <m.ostapenko@partner.samsung.com>
3761
3762         PR gdb/17984
3763         * aarch64-linux-nat.c: Don't include features/aarch64.c anymore.
3764         (aarch64_linux_read_description): Remove initialize_tdesc_aarch64
3765         call.
3766         * aarch64-tdep.h (tdesc_aarch64): Declare.
3767
3768 2015-02-12  Mark Wielaard  <mjw@redhat.com>
3769
3770         * contrib/ari/gdb_ari.sh: Remove checks for "true" and "false".
3771
3772 2015-02-13  Doug Evans  <dje@google.com>
3773
3774         * cp-namespace.c (cp_basic_lookup_symbol): Rename parameter
3775         anonymous_namespace to is_in_anonymous for consistency with the rest
3776         of the file.
3777         (cp_lookup_bare_symbol): Fix typo in comment.
3778         (cp_search_static_and_baseclasses): Ditto.
3779         (search_symbol_list): Use vertical space in comment better.
3780         (reset_directive_searched): Ditto. Fix typo.
3781         (cp_lookup_nested_symbol_1): Clarify contents of NESTED_NAME parameter.
3782
3783 2015-02-13  Yao Qi  <yao.qi@arm.com>
3784
3785         * MAINTAINERS: Update my email address.
3786
3787 2015-02-12  Doug Evans  <dje@google.com>
3788
3789         * symtab.c (completion_list_add_name): Fix memory leak.
3790
3791 2015-02-12  Doug Evans  <dje@google.com>
3792
3793         * completer.c (complete_line): Remove incorrect comment.
3794
3795 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
3796
3797         * python/py-framefilter.c (py_print_single_arg, enumerate_locals)
3798         (py_print_frame): Use RETURN_MASK_ERROR.
3799
3800 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
3801
3802         * python/py-framefilter.c (py_print_frame): Mention RETURN_QUIT in
3803         function comment.  Wrap all function that can throw in cleanups.
3804         (gdbpy_apply_frame_filter): Wrap all function that can throw in
3805         cleanups.
3806
3807 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
3808
3809         * python/py-framefilter.c (py_print_frame): Substitute goto error.
3810         Remove the error label.
3811
3812 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
3813
3814         * python/py-framefilter.c (py_print_frame): Put conditional code paths
3815         with goto first, indent the former else codepath left.  Put variable
3816         'elided' to a new inner block.
3817
3818 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
3819
3820         * python/py-framefilter.c (py_print_frame): Whitespacing fixes.
3821
3822 2015-02-11  Pedro Alves  <palves@redhat.com>
3823
3824         * xcoffread.c (within_function): Delete.
3825
3826 2015-02-11  Tom Tromey  <tromey@redhat.com>
3827             Pedro Alves <palves@redhat.com>
3828
3829         * breakpoint.c (base_breakpoint_ops): Delete.
3830         * dwarf2loc.c (dwarf_expr_ctx_funcs): Make extern.
3831         * elfread.c (elf_sym_fns_gdb_index, elf_sym_fns_lazy_psyms): Make extern.
3832         * guile/guile.c (guile_extension_script_ops, guile_extension_ops): Make extern.
3833         * ppcnbsd-tdep.c (ppcnbsd2_sigtramp): Make extern.
3834         * python/py-arch.c (arch_object_type): Make extern.
3835         * python/py-block.c (block_syms_iterator_object_type): Make extern.
3836         * python/py-bpevent.c (breakpoint_event_object_type): Make extern.
3837         * python/py-cmd.c (cmdpy_object_type): Make extern.
3838         * python/py-continueevent.c (continue_event_object_type)
3839         * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Remove 'qual'
3840         parameter.  Update all callers.
3841         * python/py-evtregistry.c (eventregistry_object_type): Make extern.
3842         * python/py-exitedevent.c (exited_event_object_type): Make extern.
3843         * python/py-finishbreakpoint.c (finish_breakpoint_object_type): Make extern.
3844         * python/py-function.c (fnpy_object_type): Make extern.
3845         * python/py-inferior.c (inferior_object_type, membuf_object_type): Make extern.
3846         * python/py-infevents.c (call_pre_event_object_type)
3847         (inferior_call_post_event_object_type).
3848         (memory_changed_event_object_type): Make extern.
3849         * python/py-infthread.c (thread_object_type): Make extern.
3850         * python/py-lazy-string.c (lazy_string_object_type): Make extern.
3851         * python/py-linetable.c (linetable_entry_object_type)
3852         (linetable_object_type, ltpy_iterator_object_type): Make extern.
3853         * python/py-newobjfileevent.c (new_objfile_event_object_type)
3854         (clear_objfiles_event_object_type): Make extern.
3855         * python/py-objfile.c (objfile_object_type): Make extern.
3856         * python/py-param.c (parmpy_object_type): Make extern.
3857         * python/py-progspace.c (pspace_object_type): Make extern.
3858         * python/py-signalevent.c (signal_event_object_type): Make extern.
3859         * python/py-symtab.c (symtab_object_type, sal_object_type): Make extern.
3860         * python/py-type.c (type_object_type, field_object_type)
3861         (type_iterator_object_type): Make extern.
3862         * python/python.c (python_extension_script_ops)
3863         (python_extension_ops): Make extern.
3864         * stap-probe.c (stap_probe_ops): Make extern.
3865
3866 2015-02-11  Pedro Alves  <pedro@codesourcery.com>
3867
3868         * infrun.c (adjust_pc_after_break): Don't adjust the PC just
3869         because the event thread is not the current thread.
3870
3871 2015-02-11  Doug Evans  <xdje42@gmail.com>
3872
3873         * gdbtypes.c (internal_type_self_type): If TYPE_SPECIFIC_FIELD hasn't
3874         been initialized yet, return NULL.
3875
3876 2015-02-11  Doug Evans  <dje@google.com>
3877
3878         * symfile.h (new_symfile_objfile): Delete.
3879         * symfile.c (finish_new_objfile): Renamed from new_symfile_objfile.
3880         All callers updated.
3881
3882 2015-02-11  Patrick Palka  <patrick@parcs.ath.cx>
3883
3884         * tui/tui-io.c (tui_handle_resize_during_io): Call
3885         tui_update_gdb_sizes() after resizing the screen.
3886         * tui/tui.c (tui_enable): Resize the terminal before
3887         calling tui_update_gdb_sizes().
3888
3889 2015-02-11  Patrick Palka  <patrick@parcs.ath.cx>
3890
3891         * tui/tui-io.c (tui_getc): Move cursor to the end of the command
3892         line before printing a newline.
3893
3894 2015-02-11  Mark Wielaard  <mjw@redhat.com>
3895
3896         * utils.c (producer_is_gcc): Return true or false.
3897
3898 2015-02-10  Mark Wielaard  <mjw@redhat.com>
3899
3900         * utils.h (producer_is_gcc): Change return type to bool. Add major
3901         argument.
3902         * utils.c (producer_is_gcc): Likewise.
3903         (producer_is_gcc_ge_4): Adjust producer_is_gcc call.
3904         * dwarf2read.c (check_producer): Likewise.
3905
3906 2015-02-10  Pedro Alves  <palves@redhat.com>
3907
3908         * infrun.c (displaced_step_fixup): Switch to the event thread
3909         before calling gdbarch_displaced_step_fixup.
3910
3911 2015-02-10  Antoine Tremblay <antoine.tremblay@ericsson.com>
3912
3913         * MAINTAINERS (Write After Approval): Add Antoine Tremblay.
3914
3915 2015-02-10  Simon Marchi  <simon.marchi@ericsson.com>
3916
3917         * ada-varobj.c (ada_name_of_child): Constify parent.
3918         (ada_path_expr_of_child): Same.
3919         (ada_value_of_child): Same.
3920         (ada_type_of_child): Same.
3921         * c-varobj.c (c_is_path_expr_parent): Same.
3922         (c_describe_child): Same.
3923         (c_name_of_child): Same.
3924         (c_value_of_child): Same.
3925         (c_type_of_child): Same.
3926         (cplus_number_of_children): Same.
3927         (cplus_describe_child): Constify var.
3928         (cplus_name_of_child): Constify parent.
3929         (cplus_value_of_child): Same.
3930         (cplus_type_of_child): Same.
3931         * jv-varobj.c (java_name_of_child): Same.
3932         (java_value_of_child): Same.
3933         (java_type_of_child): Same.
3934         * varobj.c (value_of_child): Same.
3935         (varobj_default_is_path_expr_parent): Constify var, parent and return
3936         value.
3937         (varobj_get_path_expr): Constify var, modify path_expr through
3938         mutable_var.
3939         (install_new_value): Constify parent.
3940         (value_of_child): Constify parent.
3941         * varobj.h (struct varobj): Constify parent.
3942         (struct lang_varobj_ops): Constify name_of_child, value_of_child and
3943         type_of_child.
3944         (varobj_get_path_expr): Constify var.
3945         (varobj_get_path_expr_parent): Constify var and return value.
3946
3947 2015-02-10  Luis Machado  <lgustavo@codesourcery.com>
3948
3949         * arm-tdep.c (arm_prologue_unwind_stop_reason): New function.
3950         (arm_prologue_this_id): Move PC and SP limit checks to
3951         arm_prologue_unwind_stop_reason.
3952         (arm_prologue_unwind) <stop_reason> : Set to
3953         arm_prologue_unwind_stop_reason.
3954
3955 2015-02-09  Mark Wielaard  <mjw@redhat.com>
3956
3957         * dwarf2read.c (set_cu_language): Recognize DW_LANG_Fortran03 and
3958         DW_LANG_Fortran08 as language_fortran.
3959
3960 2015-02-09  Sergio Durigan Junior  <sergiodj@redhat.com>
3961
3962         PR remote/17946
3963         * gdb/remote.c (remote_parse_stop_reply): Fix wrong comparison
3964         of pointer against char.
3965
3966 2015-02-09  Mark Wielaard  <mjw@redhat.com>
3967
3968         * c-typeprint.c (cp_type_print_method_args): Handle '_Atomic'.
3969         (c_type_print_modifier): Likewise.
3970         * dwarf2read.c (read_tag_atomic_type): New function.
3971         (read_type_die_1): Handle DW_TAG_atomic_type.
3972         * gdbtypes.c (make_atomic_type): New function.
3973         (recursive_dump_type): Handle TYPE_ATOMIC.
3974         * gdbtypes.h (enum type_flag_values): Renumber.
3975         (enum type_instance_flag_value): Add TYPE_INSTANCE_FLAG_ATOMIC.
3976         (TYPE_ATOMIC): New macro.
3977         (make_atomic_type): Declare.
3978
3979 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
3980
3981         * btrace.c (ftrace_find_call): Skip gaps.
3982         (ftrace_new_function): Initialize level.
3983         (ftrace_new_call, ftrace_new_tailcall, ftrace_new_return)
3984         (ftrace_new_switch): Update
3985         level computation.
3986         (ftrace_new_gap): New.
3987         (ftrace_update_function): Create new function after gap.
3988         (btrace_compute_ftrace_bts): Create gap on error.
3989         (btrace_stitch_bts): Update parameters.  Clear trace if it
3990         becomes empty.
3991         (btrace_stitch_trace): Update parameters.  Update callers.
3992         (btrace_clear): Reset the number of gaps.
3993         (btrace_insn_get): Return NULL if the iterator points to a gap.
3994         (btrace_insn_number): Return zero if the iterator points to a gap.
3995         (btrace_insn_end): Allow gaps at the end.
3996         (btrace_insn_next, btrace_insn_prev, btrace_insn_cmp): Handle gaps.
3997         (btrace_find_insn_by_number): Assert that the found iterator does
3998         not point to a gap.
3999         (btrace_call_next, btrace_call_prev): Assert that the last function
4000         is not a gap.
4001         * btrace.h (btrace_bts_error): New.
4002         (btrace_function): Update comment.
4003         (btrace_function) <insn, insn_offset, number>: Update comment.
4004         (btrace_function) <errcode>: New.
4005         (btrace_thread_info) <ngaps>: New.
4006         (btrace_thread_info) <replay>: Update comment.
4007         (btrace_insn_get): Update comment.
4008         * record-btrace.c (btrace_ui_out_decode_error): New.
4009         (record_btrace_info): Print number of gaps.
4010         (btrace_insn_history, btrace_call_history): Call
4011         btrace_ui_out_decode_error for gaps.
4012         (record_btrace_step_thread, record_btrace_start_replaying): Skip gaps.
4013
4014 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
4015
4016         * common/btrace-common.h (btrace_cpu_vendor, btrace_cpu): New.
4017         * nat/linux-btrace.c: (btrace_this_cpu): New.
4018         (cpu_supports_bts): Call btrace_this_cpu.
4019         (intel_supports_bts): Add cpu parameter.
4020
4021 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
4022
4023         * btrace.h (btrace_insn_class): New.
4024         (btrace_insn) <size, iclass>: New.
4025         * btrace.c (ftrace_find_call): Update parameters.  Update users.
4026         Use instruction classification.
4027         (ftrace_new_return): Update parameters.  Update users.
4028         (ftrace_update_function): Update parameters.  Update users.  Use
4029         instruction classification.
4030         (ftrace_update_insns): Update parameters.  Update users.
4031         (ftrace_classify_insn): New.
4032         (btrace_compute_ftrace_bts): Fill in new btrace_insn fields.  Add
4033         TRY_CATCH around call to gdb_insn_length.
4034
4035 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
4036
4037         * btrace.c (btrace_compute_ftrace_bts, btrace_compute_ftrace):
4038         Update parameters.  Update users.
4039
4040 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
4041
4042         * btrace.c (parse_xml_btrace_conf_bts): Add size.
4043         (btrace_conf_bts_attributes): New.
4044         (btrace_conf_children): Add attributes.
4045         * common/btrace-common.h (btrace_config_bts): New.
4046         (btrace_config)<bts>: New.
4047         (btrace_config): Update comment.
4048         * nat/linux-btrace.c (linux_enable_btrace, linux_enable_bts):
4049         Use config.
4050         * features/btrace-conf.dtd: Increment version.  Add size
4051         attribute to bts element.
4052         * record-btrace.c (set_record_btrace_bts_cmdlist,
4053         show_record_btrace_bts_cmdlist): New.
4054         (record_btrace_adjust_size, record_btrace_print_bts_conf,
4055         record_btrace_print_conf, cmd_set_record_btrace_bts,
4056         cmd_show_record_btrace_bts): New.
4057         (record_btrace_info): Call record_btrace_print_conf.
4058         (_initialize_record_btrace): Add commands.
4059         * remote.c: Add PACKET_Qbtrace_conf_bts_size enum.
4060         (remote_protocol_features): Add Qbtrace-conf:bts:size packet.
4061         (btrace_sync_conf): Synchronize bts size.
4062         (_initialize_remote): Add Qbtrace-conf:bts:size packet.
4063         * NEWS: Announce new commands and new packets.
4064
4065 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
4066
4067         * Makefile.in (XMLFILES): Add btrace-conf.dtd.
4068         * x86-linux-nat.c (x86_linux_enable_btrace): Update parameters.
4069         (x86_linux_btrace_conf): New.
4070         (x86_linux_create_target): Initialize to_btrace_conf.
4071         * nat/linux-btrace.c (linux_enable_btrace): Update parameters.
4072         Check format.  Split into this and ...
4073         (linux_enable_bts): ... this.
4074         (linux_btrace_conf): New.
4075         (perf_event_skip_record): Renamed into ...
4076         (perf_event_skip_bts_record): ... this.  Updated users.
4077         (linux_disable_btrace): Split into this and ...
4078         (linux_disable_bts): ... this.
4079         (linux_read_btrace): Check format.
4080         * nat/linux-btrace.h (linux_enable_btrace): Update parameters.
4081         (linux_btrace_conf): New.
4082         (btrace_target_info)<ptid>: Moved.
4083         (btrace_target_info)<conf>: New.
4084         (btrace_target_info): Split into this and ...
4085         (btrace_tinfo_bts): ... this.  Updated users.
4086         * btrace.c (btrace_enable): Update parameters.
4087         (btrace_conf, parse_xml_btrace_conf_bts, parse_xml_btrace_conf)
4088         (btrace_conf_children, btrace_conf_attributes)
4089         (btrace_conf_elements): New.
4090         * btrace.h (btrace_enable): Update parameters.
4091         (btrace_conf, parse_xml_btrace_conf): New.
4092         * common/btrace-common.h (btrace_config): New.
4093         * feature/btrace-conf.dtd: New.
4094         * record-btrace.c (record_btrace_conf): New.
4095         (record_btrace_cmdlist): New.
4096         (record_btrace_enable_warn, record_btrace_open): Pass
4097         &record_btrace_conf.
4098         (record_btrace_info): Print recording format.
4099         (cmd_record_btrace_bts_start): New.
4100         (cmd_record_btrace_start): Call cmd_record_btrace_bts_start.
4101         (_initialize_record_btrace): Add "record btrace bts" subcommand.
4102         Add "record bts" alias command.
4103         * remote.c (remote_state)<btrace_config>: New.
4104         (remote_btrace_reset, PACKET_qXfer_btrace_conf): New.
4105         (remote_protocol_features): Add qXfer:btrace-conf:read.
4106         (remote_open_1): Call remote_btrace_reset.
4107         (remote_xfer_partial): Handle TARGET_OBJECT_BTRACE_CONF.
4108         (btrace_target_info)<conf>: New.
4109         (btrace_sync_conf, btrace_read_config): New.
4110         (remote_enable_btrace): Update parameters.  Call btrace_sync_conf and
4111         btrace_read_conf.
4112         (remote_btrace_conf): New.
4113         (init_remote_ops): Initialize to_btrace_conf.
4114         (_initialize_remote): Add qXfer:btrace-conf packet.
4115         * target.c (target_enable_btrace): Update parameters.
4116         (target_btrace_conf): New.
4117         * target.h (target_enable_btrace): Update parameters.
4118         (target_btrace_conf): New.
4119         (target_object)<TARGET_OBJECT_BTRACE_CONF>: New.
4120         (target_ops)<to_enable_btrace>: Update parameters and comment.
4121         (target_ops)<to_btrace_conf>: New.
4122         * target-delegates: Regenerate.
4123         * target-debug.h (target_debug_print_const_struct_btrace_config_p)
4124         (target_debug_print_const_struct_btrace_target_info_p): New.
4125         * NEWS: Announce new command and new packet.
4126
4127 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
4128
4129         * nat/linux-btrace.h (perf_event_buffer): New.
4130         (btrace_target_info) <buffer, size, data_head>: Replace with ...
4131         <bts>: ... this.
4132         * nat/linux-btrace.c (perf_event_header, perf_event_mmap_size)
4133         (perf_event_buffer_size, perf_event_buffer_begin)
4134         (perf_event_buffer_end, linux_btrace_has_changed): Removed.
4135         Updated users.
4136         (perf_event_new_data): New.
4137
4138 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
4139
4140         * btrace.c (btrace_enable): Pass BTRACE_FORMAT_BTS.
4141         * record-btrace.c (record_btrace_open): Remove call to
4142         target_supports_btrace.
4143         * remote.c (remote_supports_btrace): Update parameters.
4144         * target.c (target_supports_btrace): Update parameters.
4145         * target.h (to_supports_btrace, target_supports_btrace): Update
4146         parameters.
4147         * target-delegates.c: Regenerate.
4148         * target-debug.h (target_debug_print_enum_btrace_format): New.
4149         * nat/linux-btrace.c
4150         (kernel_supports_btrace): Rename into ...
4151         (kernel_supports_bts): ... this.  Update users.  Update warning text.
4152         (intel_supports_btrace): Rename into ...
4153         (intel_supports_bts): ... this.  Update users.
4154         (cpu_supports_btrace): Rename into ...
4155         (cpu_supports_bts): ... this.  Update users.
4156         (linux_supports_btrace): Update parameters.  Split into this and ...
4157         (linux_supports_bts): ... this.
4158         * nat/linux-btrace.h (linux_supports_btrace): Update parameters.
4159
4160 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
4161
4162         * Makefile.in (SFILES): Add common/btrace-common.c.
4163         (COMMON_OBS): Add common/btrace-common.o.
4164         (btrace-common.o): Add build rules.
4165         * btrace.c (parse_xml_btrace): Update parameters.
4166         (parse_xml_btrace_block): Set format field.
4167         (btrace_add_pc, btrace_fetch): Use struct btrace_data.
4168         (do_btrace_data_cleanup, make_cleanup_btrace_data): New.
4169         (btrace_compute_ftrace): Split into this and...
4170         (btrace_compute_ftrace_bts): ...this.
4171         (btrace_stitch_trace): Split into this and...
4172         (btrace_stitch_bts): ...this.
4173         * btrace.h (parse_xml_btrace): Update parameters.
4174         (make_cleanup_btrace_data): New.
4175         * common/btrace-common.c: New.
4176         * common/btrace-common.h: Include common-defs.h.
4177         (btrace_block_s): Update comment.
4178         (btrace_format): New.
4179         (btrace_format_string): New.
4180         (btrace_data_bts): New.
4181         (btrace_data): New.
4182         (btrace_data_init, btrace_data_fini, btrace_data_empty): New.
4183         * remote.c (remote_read_btrace): Update parameters.
4184         * target.c (target_read_btrace): Update parameters.
4185         * target.h (target_read_btrace): Update parameters.
4186         (target_ops)<to_read_btrace>: Update parameters.
4187         * x86-linux-nat.c (x86_linux_read_btrace): Update parameters.
4188         * target-delegates.c: Regenerate.
4189         * target-debug (target_debug_print_struct_btrace_data_p): New.
4190         * nat/linux-btrace.c (linux_read_btrace): Split into this and...
4191         (linux_read_bts): ...this.
4192         * nat/linux-btrace.h (linux_read_btrace): Update parameters.
4193
4194 2015-02-06  Doug Evans  <dje@google.com>
4195
4196         * remote-m32r-sdi.c: Include symfile.h.
4197
4198 2015-02-06  Doug Evans  <dje@google.com>
4199
4200         * symtab.h (clear_symtab_users, deduce_language_from_filename): Move
4201         * symfile.h (clear_symtab_users, deduce_language_from_filename): ...
4202         to here.
4203
4204 2015-02-06  Pedro Alves  <palves@redhat.com>
4205
4206         * linux-thread-db.c (find_new_threads_callback): Add debug output.
4207
4208 2015-02-06  Simon Marchi  <simon.marchi@ericsson.com>
4209
4210         PR gdb/15678
4211         * breakpoint.c (map_breakpoint_numbers): Check for empty args string.
4212         (enable_count_command): Check args for NULL value.
4213
4214 2015-02-05  Doug Evans  <xdje42@gmail.com>
4215
4216         * guile/scm-frame.c: Fix spelling errors in a comment.
4217
4218 2015-02-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
4219
4220         * python/python-internal.h (Py_hash_t): Define it for Python <3.2.
4221         * python/py-value.c (valpy_fetch_lazy): Use it.  Remove cast to the
4222         return type.
4223
4224 2015-02-04  Pedro Alves  <palves@redhat.com>
4225
4226         * linux-nat.c (handle_extended_wait): Don't resume LWPs here.
4227         (wait_lwp): Don't call wait_lwp if linux_handle_extended_wait
4228         returns true.
4229         (resume_stopped_resumed_lwps): Don't check whether the thread is
4230         marked as executing.
4231         (linux_nat_wait_1): Use resume_stopped_resumed_lwps.
4232
4233 2015-02-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4234
4235         * regset.h (struct regset): Add flags field.
4236         (REGSET_VARIABLE_SIZE): New value for a regset's flags field.
4237         * corelow.c (get_core_register_section): Add warning if the size
4238         exceeds the requested size and the regset does not have the
4239         REGSET_VARIABLE_SIZE flag set.
4240         * alphanbsd-tdep.c (alphanbsd_gregset): Add REGSET_VARIABLE_SIZE
4241         flag.
4242         * armbsd-tdep.c (armbsd_gregset): Likewise.
4243         * hppa-hpux-tdep.c (hppa_hpux_regset): Likewise.
4244         * hppaobsd-tdep.c (hppaobsd_gregset): Likewise.
4245         * m68kbsd-tdep.c (m68kbsd_gregset): Likewise.
4246         * mipsnbsd-tdep.c (mipsnbsd_gregset): Likewise.
4247
4248 2015-02-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4249
4250         * amd64-linux-tdep.c (amd64_linux_iterate_over_regset_sections):
4251         For ".reg-xstate", explicitly specify the requested section size
4252         via X86_XSTATE_SIZE instead of just 0 on input and
4253         X86_XSTATE_MAX_SIZE on output.
4254         * i386-linux-tdep.c (i386_linux_iterate_over_regset_sections):
4255         Likewise.
4256
4257 2015-02-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4258
4259         PR corefiles/17808:
4260         * gdbarch.sh (iterate_over_regset_sections_cb): Document this
4261         function type, particularly its SIZE parameter.
4262         * gdbarch.h: Regenerate.
4263         * amd64-tdep.c (amd64_supply_fpregset): In gdb_assert, compare
4264         actual against required size using ">=" instead of "==".
4265         (amd64_collect_fpregset): Likewise.
4266         * i386-tdep.c (i386_supply_gregset): Likewise.
4267         (i386_collect_gregset): Likewise.
4268         (i386_supply_fpregset): Likewise.
4269         (i386_collect_fpregset): Likewise.
4270         * mips-linux-tdep.c (mips_supply_gregset_wrapper): Likewise.
4271         (mips_fill_gregset_wrapper): Likewise.
4272         (mips_supply_fpregset_wrapper): Likewise.
4273         (mips_fill_fpregset_wrapper): Likewise.
4274         (mips64_supply_gregset_wrapper): Likewise.
4275         (mips64_fill_gregset_wrapper): Likewise.
4276         (mips64_supply_fpregset_wrapper): Likewise.
4277         (mips64_fill_fpregset_wrapper): Likewise.
4278         * mn10300-linux-tdep.c (am33_supply_gregset_method): Likewise.
4279         (am33_supply_fpregset_method): Likewise.
4280         (am33_collect_gregset_method): Likewise.
4281         (am33_collect_fpregset_method): Likewise.
4282
4283 2015-02-04  Doug Evans  <dje@google.com>
4284             Pedro Alves  <palves@redhat.com>
4285             Eli Zaretskii  <eliz@gnu.org>
4286
4287         PR tui/17810
4288         * tui/tui-command.c (tui_refresh_cmd_win): New function.
4289         * tui/tui-command.c (tui_refresh_cmd_win): Declare.
4290         * tui/tui-file.c: #include tui/tui-command.h.
4291         (tui_file_fputs): Refresh command window if stream is not gdb_stdout.
4292         (tui_file_flush): Refresh command window if stream is gdb_stdout.
4293         * tui/tui-io.c (tui_puts): Remove calls to wrefresh, fflush.
4294
4295 2015-02-04  Pedro Alves  <palves@redhat.com>
4296
4297         Fix build breakage.
4298         * event-loop.c (gdb_do_one_event): Add default switch case.
4299
4300 2015-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
4301
4302         Filter out inferior gcc option -fpreprocessed.
4303         * compile/compile.c (filter_args): New function.
4304         (get_args): Use it.
4305
4306 2015-02-03  Pedro Alves  <palves@redhat.com>
4307
4308         * event-loop.c: Don't declare nor define a queue type for
4309         gdb_event_p.
4310         (event_queue): Delete.
4311         (create_event, create_file_event, gdb_event_xfree)
4312         (initialize_event_loop, process_event): Delete.
4313         (gdb_do_one_event): Return as soon as one event is handled.
4314         (handle_file_event): Change prototype.  Used the passed in
4315         file_handler pointer and ready_mask instead of looping over all
4316         file handlers.
4317         (gdb_wait_for_event): Update the poll/select timeouts before
4318         blocking.  Run event handlers directly instead of queueing events.
4319         Return as soon as one event is handled.
4320         (struct async_event_handler_data): Delete.
4321         (invoke_async_event_handler): Delete.
4322         (check_async_event_handlers): Change return type to int.  Run
4323         event handlers directly instead of queueing events.  Return as
4324         soon as one event is handled.
4325         (handle_timer_event): Delete.
4326         (update_wait_timeout): New function, factored out from
4327         poll_timers.
4328         (poll_timers): Reimplement.
4329         * event-loop.h (initialize_event_loop): Delete declaration.
4330         * top.c (gdb_init): Don't call initialize_event_loop.
4331
4332 2015-02-03  Pedro Alves  <palves@redhat.com>
4333
4334         * event-loop.c (clear_async_event_handler): New function.
4335         * event-loop.h (clear_async_event_handler): New declaration.
4336         * record-btrace.c (record_btrace_async): New function.
4337         (init_record_btrace_ops): Install record_btrace_async.
4338         * record-full.c (record_full_async): New function.
4339         (record_full_resume): Don't mark the async event source here.
4340         (init_record_full_ops): Install record_full_async.
4341         (record_full_core_resume): Don't mark the async event source here.
4342         (init_record_full_core_ops): Install record_full_async.
4343         * remote.c (remote_async): Mark and clear the async stop reply
4344         queue event-loop token as appropriate.
4345
4346 2015-02-03  Pedro Alves  <palves@redhat.com>
4347
4348         * linux-nat.c (linux_child_follow_fork, linux_nat_wait_1): Use
4349         target_is_async_p instead of target_can_async.
4350         (linux_nat_wait): Use target_is_async_p instead of
4351         target_can_async.  Don't enable async here.
4352         * remote.c (interrupt_query, remote_wait, putpkt_binary): Use
4353         target_is_async_p instead of target_can_async.
4354
4355 2015-02-02  Simon Marchi  <simon.marchi@ericsson.com>
4356
4357         * varobj.h (lang_varobj_ops): Mention which return values need
4358         to be freed.
4359
4360 2015-02-02  Joel Brobecker  <brobecker@adacore.com>
4361
4362         * dwarf2loc.c (dwarf2_evaluate_property): Add i18n marker.
4363
4364 2015-02-02  Joel Brobecker  <brobecker@adacore.com>
4365
4366         PR gdb/17856:
4367         * ada-lang.c (ada_lookup_symbol_list_worker): Do not re-cache
4368         results found in the cache.
4369
4370 2015-02-02  Joel Brobecker  <brobecker@adacore.com>
4371
4372         PR gdb/17854:
4373         * ada-lang.c (ada_get_symbol_cache): Set pspace_data->sym_cache
4374         when allocating a new one.
4375
4376 2015-02-01  Tom Tromey  <tom@tromey.com>
4377
4378         * MAINTAINERS: Remove myself.
4379
4380 2015-01-31  Doug Evans  <xdje42@gmail.com>
4381
4382         * dwarf2read.c (process_structure_scope): Update setting of
4383         TYPE_VPTR_BASETYPE, TYPE_VPTR_FIELDNO.
4384         * gdbtypes.c (internal_type_vptr_fieldno): New function.
4385         (set_type_vptr_fieldno): New function.
4386         (internal_type_vptr_basetype): New function.
4387         (set_type_vptr_basetype): New function.
4388         (get_vptr_fieldno): Update setting of TYPE_VPTR_FIELDNO,
4389         TYPE_VPTR_BASETYPE.
4390         (allocate_cplus_struct_type): Initialize vptr_fieldno.
4391         (recursive_dump_type): Printing of vptr_fieldno, vptr_basetype ...
4392         (print_cplus_stuff): ... moved here.
4393         (copy_type_recursive): Don't copy TYPE_VPTR_BASETYPE.
4394         * gdbtypes.h (struct main_type): Members vptr_fieldno, vptr_basetype
4395         moved to ...
4396         (struct cplus_struct_type): ... here.  All uses updated.
4397         (TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE): Rewrite.
4398         (internal_type_vptr_fieldno, set_type_vptr_fieldno): Declare.
4399         (internal_type_vptr_basetype, set_type_vptr_basetype): Declare.
4400         * stabsread.c (read_tilde_fields): Update setting of
4401         TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE.
4402
4403 2015-01-31  Doug Evans  <xdje42@gmail.com>
4404
4405         * cp-valprint.c (cp_find_class_member): Rename parameter domain_p
4406         to self_p.
4407         (cp_print_class_member): Rename local domain to self_type.
4408         * dwarf2read.c (quirk_gcc_member_function_pointer): Rename local
4409         domain_type to self_type.
4410         (set_die_type) <need_gnat_info>: Handle
4411         TYPE_CODE_METHODPTR, TYPE_CODE_MEMBERPTR, TYPE_CODE_METHOD.
4412         * gdb-gdb.py (StructMainTypePrettyPrinter): Handle
4413         TYPE_SPECIFIC_SELF_TYPE.
4414         * gdbtypes.c (internal_type_self_type): New function.
4415         (set_type_self_type): New function.
4416         (smash_to_memberptr_type): Rename parameter domain to self_type.
4417         Update setting of TYPE_SELF_TYPE.
4418         (smash_to_methodptr_type): Update setting of TYPE_SELF_TYPE.
4419         (smash_to_method_type): Rename parameter domain to self_type.
4420         Update setting of TYPE_SELF_TYPE.
4421         (check_stub_method): Call smash_to_method_type.
4422         (recursive_dump_type): Handle TYPE_SPECIFIC_SELF_TYPE.
4423         (copy_type_recursive): Ditto.
4424         * gdbtypes.h (enum type_specific_kind): New value
4425         TYPE_SPECIFIC_SELF_TYPE.
4426         (struct main_type) <type_specific>: New member self_type.
4427         (struct cplus_struct_type) <fn_field.type>: Update comment.
4428         (TYPE_SELF_TYPE): Rewrite.
4429         (internal_type_self_type, set_type_self_type): Declare.
4430         * gnu-v3-abi.c (gnuv3_print_method_ptr): Rename local domain to
4431         self_type.
4432         (gnuv3_method_ptr_to_value): Rename local domain_type to self_type.
4433         * m2-typeprint.c (m2_range): Replace TYPE_SELF_TYPE with
4434         TYPE_TARGET_TYPE.
4435         * stabsread.c (read_member_functions): Mark methods with
4436         TYPE_CODE_METHOD, not TYPE_CODE_FUNC.  Update setting of
4437         TYPE_SELF_TYPE.
4438
4439 2015-01-31  Doug Evans  <xdje42@gmail.com>
4440
4441         * gdbtypes.h (TYPE_SELF_TYPE): Renamed from TYPE_DOMAIN_TYPE.
4442         All uses updated.
4443
4444 2015-01-31  Doug Evans  <xdje42@gmail.com>
4445
4446         * gnu-v3-abi.c (gnuv3_dynamic_class): Assert only passed structs
4447         or unions.  Return zero if union.
4448         (gnuv3_get_vtable): Call check_typedef.  Assert only passed structs.
4449         (gnuv3_rtti_type): Pass already-check_typedef'd value to
4450         gnuv3_get_vtable.
4451         (compute_vtable_size): Assert only passed structs.
4452         (gnuv3_print_vtable): Don't call gnuv3_get_vtable for non-structs.
4453
4454 2015-01-31  Doug Evans  <xdje42@gmail.com>
4455
4456         * gdbtypes.c (copy_type_recursive): Handle all TYPE_SPECIFIC_FIELD
4457         kinds.
4458
4459 2015-01-31  Gary Benson <gbenson@redhat.com>
4460             Doug Evans  <dje@google.com>
4461
4462         PR cli/9007
4463         PR cli/11920
4464         PR cli/15548
4465         * cli/cli-cmds.c (complete_command): Notify user if max-completions
4466         reached.
4467         * common/common-exceptions.h (enum errors)
4468         <MAX_COMPLETIONS_REACHED_ERROR>: New value.
4469         * completer.h (get_max_completions_reached_message): New declaration.
4470         (max_completions): Likewise.
4471         (completion_tracker_t): New typedef.
4472         (new_completion_tracker): New declaration.
4473         (make_cleanup_free_completion_tracker): Likewise.
4474         (maybe_add_completion_enum): New enum.
4475         (maybe_add_completion): New declaration.
4476         (throw_max_completions_reached_error): Likewise.
4477         * completer.c (max_completions): New global variable.
4478         (new_completion_tracker): New function.
4479         (free_completion_tracker): Likewise.
4480         (make_cleanup_free_completion_tracker): Likewise.
4481         (maybe_add_completions): Likewise.
4482         (throw_max_completions_reached_error): Likewise.
4483         (complete_line): Remove duplicates and limit result to max_completions
4484         entries.
4485         (get_max_completions_reached_message): New function.
4486         (gdb_display_match_list): Handle max_completions.
4487         (_initialize_completer): New declaration and function.
4488         * symtab.c: Include completer.h.
4489         (completion_tracker): New static variable.
4490         (completion_list_add_name): Call maybe_add_completion.
4491         (default_make_symbol_completion_list_break_on_1): Renamed from
4492         default_make_symbol_completion_list_break_on.  Maintain
4493         completion_tracker across calls to completion_list_add_name.
4494         (default_make_symbol_completion_list_break_on): New function.
4495         * top.c (init_main): Set rl_completion_display_matches_hook.
4496         * tui/tui-io.c: Include completer.h.
4497         (tui_old_rl_display_matches_hook): New static global.
4498         (tui_rl_display_match_list): Notify user if max-completions reached.
4499         (tui_setup_io): Save/restore rl_completion_display_matches_hook.
4500         * NEWS (New Options): Mention set/show max-completions.
4501
4502 2015-01-31  Gary Benson  <gbenson@redhat.com>
4503
4504         * symtab.c (struct add_name_data) <code>: New field.
4505         Updated comments.
4506         (add_symtab_completions): New function.
4507         (symtab_expansion_callback): Likewise.
4508         (default_make_symbol_completion_list_break_on): Set datum.code.
4509         Move minimal symbol scan before calling expand_symtabs_matching.
4510         Scan known primary symtabs for externs and statics before calling
4511         expand_symtabs_matching.  Pass symtab_expansion_callback as
4512         expansion_notify argument to expand_symtabs_matching.  Do not scan
4513         primary symtabs for externs and statics after calling
4514         expand_symtabs_matching.
4515
4516 2015-01-31  Gary Benson  <gbenson@redhat.com>
4517
4518         * symfile.h (expand_symtabs_exp_notify_ftype): New typedef.
4519         (struct quick_symbol_functions) <expand_symtabs_matching>:
4520         New argument expansion_notify.  All uses updated.
4521         (expand_symtabs_matching): New argument expansion_notify.
4522         All uses updated.
4523         * symfile-debug.c (debug_qf_expand_symtabs_matching):
4524         Also print expansion notify.
4525         * symtab.c (expand_symtabs_matching_via_partial): Call
4526         expansion_notify whenever a partial symbol table is expanded.
4527         * dwarf2read.c (dw2_expand_symtabs_matching): Call
4528         expansion_notify whenever a symbol table is instantiated.
4529
4530 2015-01-31  Doug Evans  <xdje42@gmail.com>
4531
4532         * cli-out.c: #include completer.h, readline/readline.h.
4533         (cli_mld_crlf, cli_mld_putch, cli_mld_puts): New functions.
4534         (cli_mld_flush, cld_mld_erase_entire_line): Ditto.
4535         (cli_mld_beep, cli_mld_read_key, cli_display_match_list): Ditto.
4536         * cli-out.h (cli_display_match_list): Declare.
4537         * completer.c (MB_INVALIDCH, MB_NULLWCH): New macros.
4538         (ELLIPSIS_LEN): Ditto.
4539         (gdb_get_y_or_n, gdb_display_match_list_pager): New functions.
4540         (gdb_path_isdir, gdb_printable_part, gdb_fnwidth): Ditto.
4541         (gdb_fnprint, gdb_print_filename): Ditto.
4542         (gdb_complete_get_screenwidth, gdb_display_match_list_1): Ditto.
4543         (gdb_display_match_list): Ditto.
4544         * completer.h (mld_crlf_ftype, mld_putch_ftype): New typedefs.
4545         (mld_puts_ftype, mld_flush_ftype, mld_erase_entire_line_ftype): Ditto.
4546         (mld_beep_ftype, mld_read_key_ftype): Ditto.
4547         (match_list_displayer): New struct.
4548         (gdb_display_match_list): Declare.
4549         * top.c (init_main): Set rl_completion_display_matches_hook.
4550         * tui/tui-io.c: #include completer.h.
4551         (printable_part, PUTX, print_filename, get_y_or_n): Delete.
4552         (tui_mld_crlf, tui_mld_putch, tui_mld_puts): New functions.
4553         (tui_mld_flush, tui_mld_erase_entire_line, tui_mld_beep): Ditto.
4554         (tui_mld_getc, tui_mld_read_key): Ditto.
4555         (tui_rl_display_match_list): Rewrite.
4556         (tui_handle_resize_during_io): New arg for_completion.  All callers
4557         updated.
4558
4559 2015-01-31  Doug Evans  <xdje42@gmail.com>
4560
4561         Add symbol lookup cache.
4562         * NEWS: Document new options and commands.
4563         * symtab.c (symbol_cache_key): New static global.
4564         (DEFAULT_SYMBOL_CACHE_SIZE, MAX_SYMBOL_CACHE_SIZE): New macros.
4565         (SYMBOL_LOOKUP_FAILED): New macro.
4566         (symbol_cache_slot_state): New enum.
4567         (block_symbol_cache): New struct.
4568         (symbol_cache): New struct.
4569         (new_symbol_cache_size, symbol_cache_size): New static globals.
4570         (hash_symbol_entry, eq_symbol_entry): New functions.
4571         (symbol_cache_byte_size, resize_symbol_cache): New functions.
4572         (make_symbol_cache, free_symbol_cache): New functions.
4573         (get_symbol_cache, symbol_cache_cleanup): New function.
4574         (set_symbol_cache_size, set_symbol_cache_size_handler): New functions.
4575         (symbol_cache_lookup, symbol_cache_clear_slot): New function.
4576         (symbol_cache_mark_found, symbol_cache_mark_not_found): New functions.
4577         (symbol_cache_flush, symbol_cache_dump): New functions.
4578         (maintenance_print_symbol_cache): New function.
4579         (maintenance_flush_symbol_cache): New function.
4580         (symbol_cache_stats): New function.
4581         (maintenance_print_symbol_cache_statistics): New function.
4582         (symtab_new_objfile_observer): New function.
4583         (symtab_free_objfile_observer): New function.
4584         (lookup_static_symbol, lookup_global_symbol): Use symbol cache.
4585         (_initialize_symtab): Init symbol_cache_key.  New parameter
4586         maint symbol-cache-size.  New maint commands print symbol-cache,
4587         print symbol-cache-statistics, flush-symbol-cache.
4588         Install new_objfile, free_objfile observers.
4589
4590 2015-01-31  Joel Brobecker  <brobecker@adacore.com>
4591
4592         PR symtab/17855
4593         * symfile.c (clear_symtab_users): Move call to breakpoint_re_set
4594         to end.
4595
4596 2015-01-31  Doug Evans  <xdje42@gmail.com>
4597
4598         * NEWS: Mention inlined scripts in .debug_gdb_scripts section.
4599         * auto-load.c: #include ctype.h.
4600         (struct auto_load_pspace_info): Replace member loaded_scripts with
4601         new members loaded_script_files, loaded_script_texts.
4602         (auto_load_pspace_data_cleanup): Update.
4603         (init_loaded_scripts_info): Update.
4604         (get_auto_load_pspace_data_for_loading): Update.
4605         (maybe_add_script_file): Renamed from maybe_add_script.  All callers
4606         updated.
4607         (maybe_add_script_text): New function.
4608         (clear_section_scripts): Update.
4609         (source_script_file, execute_script_contents): New functions.
4610         (source_section_scripts): Add support for
4611         SECTION_SCRIPT_ID_PYTHON_TEXT, SECTION_SCRIPT_ID_GUILE_TEXT.
4612         (print_scripts): New function.
4613         (auto_load_info_scripts): Also print inlined scripts.
4614         (maybe_print_unsupported_script_warning): Renamed from
4615         unsupported_script_warning_print.  All callers updated.
4616         (maybe_print_script_not_found_warning): Renamed from
4617         script_not_found_warning_print.  All callers updated.
4618         * extension-priv.h (struct extension_language_script_ops): New member
4619         objfile_script_executor.
4620         * extension.c (ext_lang_objfile_script_executor): New function.
4621         * extension.h (objfile_script_executor_func): New typedef.
4622         (ext_lang_objfile_script_executor): Declare.
4623         * guile/guile-internal.h (gdbscm_execute_objfile_script): Declare.
4624         * guile/guile.c (guile_extension_script_ops): Update.
4625         * guile/scm-objfile.c (gdbscm_execute_objfile_script): New function.
4626         * python/python.c (python_extension_script_ops): Update.
4627         (gdbpy_execute_objfile_script): New function.
4628
4629 2015-01-31  Eli Zaretskii  <eliz@gnu.org>
4630
4631         * tui/tui-io.c (tui_expand_tabs): New function.
4632         (tui_puts, tui_redisplay_readline): Expand TABs into the
4633         appropriate number of spaces.
4634         * tui/tui-regs.c: Include tui-io.h.
4635         (tui_register_format): Call tui_expand_tabs to expand TABs into
4636         the appropriate number of spaces.
4637         * tui/tui-io.h: Add prototype for tui_expand_tabs.
4638
4639 2015-01-30  Doug Evans  <dje@google.com>
4640
4641         * NEWS: "info source" command now display producer string if present.
4642         * source.c (source_info): Print producer string if present.
4643
4644 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
4645
4646         * varobj.c (varobj_delete): Fix comment.
4647
4648 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
4649
4650         * varobj.c (create_child): Modify comment.
4651
4652 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
4653
4654         * ada-varobj.c (ada_number_of_children): Constify struct varobj *
4655         parameter.
4656         (ada_name_of_variable): Same.
4657         (ada_path_expr_of_child): Same.
4658         (ada_value_of_variable): Same.
4659         (ada_value_is_changeable_p): Same.
4660         (ada_value_has_mutated): Same.
4661         * c-varobj.c (varobj_is_anonymous_child): Same.
4662         (c_is_path_expr_parent): Same.
4663         (c_number_of_children): Same.
4664         (c_name_of_variable): Same.
4665         (c_path_expr_of_child): Same.
4666         (get_type): Same.
4667         (c_value_of_variable): Same.
4668         (cplus_number_of_children): Same.
4669         (cplus_name_of_variable): Same.
4670         (cplus_path_expr_of_child): Same.
4671         (cplus_value_of_variable): Same.
4672         * jv-varobj.c (java_number_of_children): Same.
4673         (java_name_of_variable): Same.
4674         (java_path_expr_of_child): Same.
4675         (java_value_of_variable): Same.
4676         * varobj.c (number_of_children): Same.
4677         (name_of_variable): Same.
4678         (is_root_p): Same.
4679         (varobj_ensure_python_env): Same.
4680         (varobj_get_objname): Same.
4681         (varobj_get_expression): Same.
4682         (varobj_get_display_format): Same.
4683         (varobj_get_display_hint): Same.
4684         (varobj_has_more): Same.
4685         (varobj_get_thread_id): Same.
4686         (varobj_get_frozen): Same.
4687         (dynamic_varobj_has_child_method): Same.
4688         (varobj_get_gdb_type): Same.
4689         (is_path_expr_parent): Same.
4690         (varobj_default_is_path_expr_parent): Same.
4691         (varobj_get_language): Same.
4692         (varobj_get_attributes): Same.
4693         (varobj_is_dynamic_p): Same.
4694         (varobj_get_child_range): Same.
4695         (varobj_value_has_mutated): Same.
4696         (varobj_get_value_type): Same.
4697         (number_of_children): Same.
4698         (name_of_variable): Same.
4699         (check_scope): Same.
4700         (varobj_editable_p): Same.
4701         (varobj_value_is_changeable_p): Same.
4702         (varobj_floating_p): Same.
4703         (varobj_default_value_is_changeable_p): Same.
4704
4705 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
4706
4707         * varobj.c (varobj_get_path_expr): Set var->path_expr.
4708         * c-varobj.c (c_path_expr_of_child): Set local var instead of
4709         child->path_expr.
4710         (cplus_path_expr_of_child): Same.
4711
4712 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
4713
4714         * mi-cmd-var.c (print_varobj): Free varobj_get_expression
4715         result.
4716         (mi_cmd_var_info_expression): Same.
4717         * varobj.c (varobj_get_expression): Mention in the comment that
4718         the result must by freed by the caller.
4719
4720 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
4721
4722         * mi/mi-cmd-var.c (mi_cmd_var_info_type): Free result of
4723         varobj_get_type.
4724         (varobj_update_one): Same.
4725         * varobj.c (update_type_if_necessary): Free curr_type_str and
4726         new_type_str.
4727         (varobj_get_type): Specify in comment that the result needs to be
4728         freed by the caller.
4729
4730 2015-01-29  Doug Evans  <dje@google.com>
4731
4732         PR symtab/17890
4733         * dwarf2read.c (dwarf_decode_line_header): Punt if version > 4.
4734
4735 2015-01-25  Mark Wielaard  <mjw@redhat.com>
4736
4737         * dwarf2read.c (checkproducer): Call producer_is_gcc.
4738         * utils.c (producer_is_gcc_ge_4): Likewise.
4739         (producer_is_gcc): New function.
4740         * utils.h (producer_is_gcc): New declaration.
4741
4742 2015-01-29  Joel Brobecker  <brobecker@adacore.com>
4743
4744         * gdbtypes.h (struct dynamic_prop): New PROP_ADDR_OFFSET enum
4745         kind.
4746         * gdbtypes.c (resolve_dynamic_type_internal): Replace "addr"
4747         parameter by "addr_stack" parameter.
4748         (resolve_dynamic_range): Replace "addr" parameter by
4749         "stack_addr" parameter.  Update function documentation.
4750         Update code accordingly.
4751         (resolve_dynamic_array, resolve_dynamic_union)
4752         (resolve_dynamic_struct, resolve_dynamic_type_internal): Likewise.
4753         (resolve_dynamic_type): Update code, following the changes made
4754         to resolve_dynamic_type_internal's interface.
4755         * dwarf2loc.h (struct property_addr_info): New.
4756         (dwarf2_evaluate_property): Replace "address" parameter
4757         by "addr_stack" parameter.  Adjust function documentation.
4758         (struct dwarf2_offset_baton): New.
4759         (struct dwarf2_property_baton): Update documentation of
4760         field "referenced_type" to be more general. New field
4761         "offset_info" in union data field.
4762         * dwarf2loc.c (dwarf2_evaluate_property): Replace "address"
4763         parameter by "addr_stack" parameter.  Adjust code accordingly.
4764         Add support for PROP_ADDR_OFFSET properties.
4765         * dwarf2read.c (attr_to_dynamic_prop): Add support for
4766         DW_AT_data_member_location attributes as well.  Use case
4767         statements instead of if/else condition.
4768
4769 2015-01-29  Joel Brobecker  <brobecker@adacore.com>
4770
4771         * ada-varobj.c (ada_varobj_get_array_number_of_children):
4772         Return zero if PARENT_VALUE is NULL and parent_type's
4773         range type is dynamic.
4774
4775 2015-01-29  Joel Brobecker  <brobecker@adacore.com>
4776
4777         * gdbtypes.c (is_dynamic_type_internal) <TYPE_CODE_RANGE>: Return
4778         nonzero if the type's subtype is dynamic.
4779         (resolve_dynamic_range): Also resolve the range's subtype.
4780
4781 2015-01-29  Alexander Klimov  <alserkli@inbox.ru>  (tiny patch)
4782
4783         Pushed by Joel Brobecker  <brobecker@adacore.com>.
4784         * symfile.c (unmap_overlay_command): Initialize sec to NULL.
4785
4786 2015-01-27  Doug Evans  <dje@google.com>
4787
4788         * NEWS: Mention gdb.Objfile.username.
4789         * python/py-objfile.c (objfpy_get_username): New function.
4790         (objfile_getset): Add "username".
4791
4792 2015-01-24  Mark Wielaard  <mjw@redhat.com>
4793
4794         * stack.c (return_command): Markup warning message with _.
4795
4796 2015-01-24  Doug Evans  <xdje42@gmail.com>
4797
4798         * gdbtypes.h (TYPE_TYPE_SPECIFIC): Delete.
4799
4800 2015-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
4801
4802         Fix 100x slowdown regression on DWZ files.
4803         * dwarf2read.c (struct dwarf2_per_objfile): Add line_header_hash.
4804         (struct line_header): Add offset and offset_in_dwz.
4805         (dwarf_decode_lines): Add parameter decode_mapping to the declaration.
4806         (free_line_header_voidp): New declaration.
4807         (line_header_hash, line_header_hash_voidp, line_header_eq_voidp): New
4808         functions.
4809         (dwarf2_build_include_psymtabs): Update dwarf_decode_lines caller.
4810         (handle_DW_AT_stmt_list): Use line_header_hash.
4811         (free_line_header_voidp): New function.
4812         (dwarf_decode_line_header): Initialize offset and offset_in_dwz.
4813         (dwarf_decode_lines): New parameter decode_mapping, use it.
4814         (dwarf2_free_objfile): Free line_header_hash.
4815
4816 2015-01-23  Simon Marchi  <simon.marchi@ericsson.com>
4817
4818         PR gdb/17416
4819         * valops.c (value_rtti_indirect_type): Catch exception thrown by
4820         value_ind.
4821
4822 2015-01-15  Mark Wielaard  <mjw@redhat.com>
4823
4824         * dwarf2read.c (read_subroutine_type): Set TYPE_NO_RETURN from
4825         DW_AT_noreturn.
4826         * gdbtypes.h (struct func_type): Add is_noreturn field flag. Make
4827         calling_convention an 8 bit bit field.
4828         (TYPE_NO_RETURN): New macro.
4829         * infcmd.c (finish_command): Query if function does not return
4830         normally.
4831         * stack.c (return_command): Likewise.
4832
4833 2015-01-23  Pedro Alves  <palves@redhat.com>
4834
4835         * linux-nat.c (linux_is_async_p): New macro.
4836         (linux_nat_is_async_p):
4837         (linux_nat_terminal_inferior): Check whether the target can async
4838         instead of whether it is already async.
4839         (linux_nat_terminal_ours): Don't check whether the target is
4840         async.
4841         (linux_async_pipe): Use linux_is_async_p.
4842
4843 2015-01-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
4844
4845         * NEWS (Changes since GDB 7.9): Add 'thread apply all' option
4846         '-ascending'.
4847         * thread.c (tp_array_compar_ascending, tp_array_compar): New.
4848         (thread_apply_all_command): Parse CMD for tp_array_compar_ascending.
4849         Sort tp_array using tp_array_compar.
4850         (_initialize_thread): Extend thread_apply_all_command help.
4851
4852 2015-01-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
4853
4854         * corelow.c (core_open): Call also thread_command.
4855         * gdbthread.h (thread_command): New prototype moved from ...
4856         * thread.c (thread_command): ... here.
4857         (thread_command): Make it global.
4858
4859 2015-01-22  Pedro Alves  <palves@redhat.com>
4860
4861         * configure.ac [*mingw32*]: Check $curses_found instead of
4862         $prefer_curses.
4863         * configure: Regenerate.
4864         * windows-termcap.c: Remove HAVE_CURSES_H, HAVE_NCURSES_H and
4865         HAVE_NCURSES_NCURSES_H checks.
4866
4867 2015-01-22  Eli Zaretskii  <eliz@gnu.org>
4868
4869         * tui/tui.c (tui_enable) [__MINGW32__]: If the call to 'newterm'
4870         fails with the 1st arg NULL, try again with "unknown".  Don't test
4871         the "cup" capability: it isn't supported by the Windows port of
4872         ncurses, but the Windows console driver is still capable of
4873         supporting TUI.
4874
4875 2015-01-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
4876
4877         * compile/compile.c (_initialize_compile): Use -fPIE for compile_args.
4878
4879 2015-01-22  Eli Zaretskii  <eliz@gnu.org>
4880
4881         * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
4882         (ALLDEPFILES): Remove irix5-nat.c.  These two are part of the
4883         reason that "make TAGS" is broken.
4884
4885 2015-01-22  Chen Gang  <gang.chen.5i5j@gmail.com>
4886
4887         * hppa-tdep.c (inst_saves_gr): Fix logical working flow issues
4888         and check additional store instructions.
4889
4890 2015-01-21  Wei-cheng Wang  <cole945@gmail.com>
4891
4892         * MAINTAINERS (Write After Approval): Add "Wei-cheng Wang".
4893
4894 2015-01-21  Wei-cheng Wang  <cole945@gmail.com>
4895
4896         * ppc-linux-tdep.c (ppc_skip_trampoline_code,
4897         ppc_canonicalize_syscall, ppc_linux_syscall_record,
4898         ppc_linux_record_signal, ppc_init_linux_record_tdep): Add comments.
4899         * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
4900         * rs6000-tdep.c (rs6000_epilogue_frame_cache,
4901         rs6000_epilogue_frame_this_id, rs6000_epilogue_frame_prev_register,
4902         rs6000_epilogue_frame_sniffer, ppc_record_vsr, ppc_process_record_op4,
4903         ppc_process_record_op19, ppc_process_record_op31,
4904         ppc_process_record_op59, ppc_process_record_op60,
4905         ppc_process_record_op63): Likewise.
4906
4907 2015-01-20  Joel Brobecker  <brobecker@adacore.com>
4908
4909         * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string)
4910         (linux_ptrace_test_ret_to_nx): Use safe_strerror instead of
4911         strerror.
4912
4913 2015-01-20  Wei-cheng Wang  <cole945@gmail.com>
4914
4915         * rs6000-tdep.c (ppc_process_record_op4, ppc_process_record_op19,
4916         ppc_process_record_op31, ppc_process_record_op59,
4917         ppc_process_record_op60, ppc_process_record_op63,
4918         ppc_process_record): Fix -Wformat warning.
4919         * rs6000-tdep.c (rs6000_epilogue_frame_cache, ppc_process_record_op60):
4920         Remove unused variables.
4921
4922 2015-01-20  Chen Gang  <gang.chen.5i5j@gmail.com>
4923
4924         * MAINTAINERS (Write After Approval): Add "Chen Gang".
4925
4926 2015-01-19  Eli Zaretskii  <eliz@gnu.org>
4927
4928         * configure.ac [*mingw32*]: Only add windows-termcap.o to
4929         CONFIG_OBS if not building with a curses library.
4930         * configure: Regenerate.
4931
4932         * windows-termcap.c: Include defs.h.  Make the whole body empty if
4933         either one of HAVE_CURSES_H or HAVE_NCURSES_H or
4934         HAVE_NCURSES_NCURSES_H is defined.
4935
4936 2015-01-19  Joel Brobecker  <brobecker@adacore.com>
4937
4938         * rs6000-tdep.c (rs6000_gdbarch_init): Move divide operator
4939         from end of line to start of next line.
4940
4941 2015-01-17  Wei-cheng Wang  <cole945@gmail.com>
4942
4943         * ppc-linux-tdep.c (ppc_skip_trampoline_code):
4944         Scan PLT stub backward for reverse debugging.
4945         * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
4946
4947 2015-01-17  Wei-cheng Wang  <cole945@gmail.com>
4948             Ulrich Weigand  <uweigand@de.ibm.com>
4949
4950         * configure.tgt (powerpc*-*-linux): Add linux-record.o to
4951         gdb_target_obs.
4952         (ppc_linux_record_tdep, ppc64_linux_record_tdep): New for linux syscall
4953         record.
4954         (ppc_canonicalize_syscall, ppc_linux_syscall_record,
4955         ppc_linux_record_signal, ppc_init_linux_record_tdep): New functions.
4956         (ppc_linux_init_abi): Set process_record, process_record_signal.
4957         * ppc-tdep.h (struct gdbarch_tdep): Add ppc_syscall_record and
4958         ppc_linux_record_tdep to gdbarch_tdep.
4959         (ppc_process_record): New declaration.
4960         * rs6000-tdep.c (ppc_record_vsr, ppc_process_record_op4,
4961         ppc_process_record_op19, ppc_process_record_op31,
4962         ppc_process_record_op59, ppc_process_record_op60,
4963         ppc_process_record_op63, ppc_process_record): New functions.
4964
4965 2015-01-17  Wei-cheng Wang  <cole945@gmail.com>
4966
4967         * rs6000-tdep.c (rs6000_in_function_epilogue_p): Rename to
4968         rs6000_in_function_epilogue_frame_p and add an argument
4969         for frame_info.
4970         (rs6000_epilogue_frame_cache, rs6000_epilogue_frame_this_id,
4971         rs6000_epilogue_frame_prev_register, rs6000_epilogue_frame_sniffer):
4972         New functions.
4973         (rs6000_epilogue_frame_unwind): New.
4974         (rs6000_gdbarch_init): Append epilogue unwinder.
4975
4976 2015-01-16  Sergio Durigan Junior  <sergiodj@redhat.com>
4977
4978         * nat/linux-personality.c: Replace "#ifndef
4979         HAVE_DECL_ADDR_NO_RANDOMIZE" by "#if
4980         !HAVE_DECL_ADDR_NO_RANDOMIZE", fixing a regression in RHEL-5
4981         systems.
4982
4983 2015-01-16  Eli Zaretskii  <eliz@gnu.org>
4984
4985         * tui/tui-win.c (tui_rehighlight_all, tui_set_var_cmd): New
4986         functions.
4987         (_initialize_tui_win) <border-kind, border-mode>:
4988         <active-border-mode>: Use tui_set_var_cmd as the "set" function.
4989         (tui_set_tab_width_command): Fix the commentary.
4990
4991         * tui/tui-win.h: Add prototype for tui_rehighlight_all.
4992
4993         * tui/tui-win.c (tui_scroll_left_command, tui_scroll_right_command):
4994         Doc fix.
4995         (tui_set_tab_width_command): Delete and recreate the source and
4996         the disassembly windows, to show the effect of the changed tab
4997         size immediately.
4998
4999         * tui/tui-data.h (LINE_PREFIX): Make shorter
5000         (MAX_PID_WIDTH): Enlarge from 14 to 19, to leave enough space for
5001         "Thread NNNNN.XXXX" thread ID notation on Windows.
5002
5003 2015-01-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
5004
5005         Fix gcc-5 compilation.
5006         * hppa-tdep.c (inst_saves_gr): Fix parentheses typo.
5007
5008 2015-01-15  Sergio Durigan Junior  <sergiodj@redhat.com>
5009
5010         * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-personality.h.
5011         (linux-personality.o): New rule.
5012         * common/common-defs.h: Include <stdint.h>.
5013         * config/aarch64/linux.mh (NATDEPFILES): Include
5014         linux-personality.o.
5015         * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
5016         * config/arm/linux.mh (NATDEPFILES): Likewise.
5017         * config/i386/linux64.mh (NATDEPFILES): Likewise.
5018         * config/i386/linux.mh (NATDEPFILES): Likewise.
5019         * config/ia64/linux.mh (NATDEPFILES): Likewise.
5020         * config/m32r/linux.mh (NATDEPFILES): Likewise.
5021         * config/m68k/linux.mh (NATDEPFILES): Likewise.
5022         * config/mips/linux.mh (NATDEPFILES): Likewise.
5023         * config/pa/linux.mh (NATDEPFILES): Likewise.
5024         * config/powerpc/linux.mh (NATDEPFILES): Likewise.
5025         * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
5026         * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
5027         * config/s390/linux.mh (NATDEPFILES): Likewise.
5028         * config/sparc/linux64.mh (NATDEPFILES): Likewise.
5029         * config/sparc/linux.mh (NATDEPFILES): Likewise.
5030         * config/tilegx/linux.mh (NATDEPFILES): Likewise.
5031         * config/xtensa/linux.mh (NATDEPFILES): Likewise.
5032         * defs.h: Remove #include <stdint.h> (moved to
5033         common/common-defs.h).
5034         * linux-nat.c: Include nat/linux-personality.h.  Remove #include
5035         <sys/personality.h>; do not define ADDR_NO_RANDOMIZE (moved to
5036         nat/linux-personality.c).
5037         (linux_nat_create_inferior): Remove code to disable address space
5038         randomization (moved to nat/linux-personality.c).  Create cleanup
5039         to disable address space randomization.
5040         * nat/linux-personality.c: New file.
5041         * nat/linux-personality.h: Likewise.
5042
5043 2015-01-15  Sergio Durigan Junior  <sergiodj@redhat.com>
5044
5045         * Makefile.in (ALLDEPFILES): Including common/mingw-strerror.c and
5046         common/posix-strerror.c.
5047         (posix-strerror.o): New rule.
5048         (mingw-strerror.o): Likewise.
5049         * common/common-utils.h (safe_strerror): Move prototype to here,
5050         from utils.h.
5051         * common/common.host: New file.
5052         * common/mingw-strerror.c: Likewise.
5053         * common/posix-strerror.c: Likewise.
5054         * configure: Regenerated.
5055         * configure.ac: Source common/common.host.  Add variable
5056         common_host_obs to gdb_host_obs.
5057         * contrib/ari/gdb_ari.sh: Mention gdb/common/mingw-strerror.c and
5058         gdb/common/posix-strerror.c when warning about the use of
5059         strerror.
5060         * mingw-hdep.c (safe_strerror): Remove definition; move it to
5061         common/mingw-strerror.c.
5062         * posix-hdep.c (safe_strerror): Remove definition; move it to
5063         common/posix-hdep.c.
5064         * utils.h (safe_strerror): Remove prototype; move to
5065         common/common-utils.h.
5066
5067 2015-01-15  Joel Brobecker  <brobecker@adacore.com>
5068
5069         GDB 7.8.2 released.
5070
5071 2015-01-15  Joel Brobecker  <brobecker@adacore.com>
5072
5073         * ada-lang.c (ada_array_bound_from_type): Ignore array's parallel
5074         ___XA type if the array has already been fixed.
5075
5076 2015-01-14  Yao Qi  <yao@codesourcery.com>
5077
5078         * Makefile.in (ppc-linux.o): New rule.
5079         * config/powerpc/ppc64-linux.mh (NATDEPFILES): Add ppc-linux.o.
5080         * configure.ac: AC_CHECK_FUNCS(getauxval).
5081         * config.in: Re-generated.
5082         * configure: Re-generated.
5083         * nat/ppc-linux.h [__powerpc64__] (ppc64_64bit_inferior_p):
5084         Declare.
5085         * nat/ppc-linux.c: New file.
5086         * ppc-linux-nat.c (ppc_linux_target_wordsize) [__powerpc64__]:
5087         Call ppc64_64bit_inferior_p.
5088
5089 2015-01-14  Yao Qi  <yao@codesourcery.com>
5090
5091         * ppc-linux-nat.c (PT_ORIG_R3, PT_TRAP): Move to
5092         nat/ppc-linux.h.
5093         (PPC_FEATURE_CELL, PPC_FEATURE_BOOKE): Likewise.
5094         (PPC_FEATURE_HAS_DFP): Likewise.
5095         (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Likewise.
5096         (PTRACE_GETVSXREGS, PTRACE_SETVSXREGS): Likewise.
5097         (PTRACE_GETEVRREGS, PTRACE_SETEVRREGS): Likewise.
5098         Include "nat/ppc-linux.h".
5099         * nat/ppc-linux.h: New file.
5100         * Makefile.in (HFILES_NO_SRCDIR): Add nat/ppc-linux.h.
5101
5102 2015-01-14  Pedro Alves  <palves@redhat.com>
5103
5104         PR gdb/17525
5105         * breakpoint.c: Include "interps.h".
5106         (bpstat_do_actions_1): Also check whether the interpreter is
5107         async.
5108
5109 2015-01-14  Pedro Alves  <palves@redhat.com>
5110
5111         PR cli/17828
5112         * infrun.c (reinstall_readline_callback_handler_cleanup): Don't
5113         reinstall if the interpreter is sync.
5114
5115 2015-01-13  Doug Evans  <dje@google.com>
5116
5117         * objfiles.c (objfile_filename): New function.
5118         * objfiles.h (objfile_filename): Declare it.
5119         (objfile_name): Add function comment.
5120         * python/py-objfile.c (objfpy_lookup_objfile_by_name): Try both the
5121         bfd file name (which may be realpath'd), and the original name.
5122
5123 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
5124
5125         * NEWS: Create a new section for the next release branch.
5126         Rename the section of the current branch, now that it has
5127         been cut.
5128
5129 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
5130
5131         GDB 7.9 branch created (92fc2e6978d9a7c8324c7e851dbee59e22ec7a37):
5132         * version.in: Bump version to 7.9.50.DATE-cvs.
5133
5134 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
5135
5136         * nat/linux-procfs.c (linux_proc_attach_tgid_threads):
5137         Remove trailing new-line in argument of call to warning.
5138
5139 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
5140
5141         * linux-nat.c (attach_proc_task_lwp_callback): Remove trailing
5142         new-line in argument of call to "warning".
5143
5144 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
5145
5146         * ada-lang.c (ada_lookup_symbol_nonlocal): If name not found
5147         in static block, then try searching for primitive types.
5148
5149 2015-01-12  Patrick Palka  <patrick@parcs.ath.cx>
5150
5151         * top.h (gdb_add_history): Declare.
5152         * top.c (command_count): New variable.
5153         (gdb_add_history): New function.
5154         (gdb_safe_append_history): New static function.
5155         (quit_force): Call it.
5156         (command_line_input): Use gdb_add_history instead of
5157         add_history.
5158         * event-top.c (command_line_handler): Likewise.
5159
5160 2015-01-12  James Clarke  <jrtc27@jrtc27.com>  (tiny patch)
5161
5162         PR gdb/17046
5163         * darwin-nat.c: Replace <machine/setjmp.h> #include by
5164         <setjmp.h> #include.
5165
5166 2015-01-11  Doug Evans  <xdje42@gmail.com>
5167
5168         * dwarf2read.c (compute_delayed_physnames): Use TYPE_FN_FIELD_PHYSNAME.
5169
5170 2015-01-11  Doug Evans  <xdje42@gmail.com>
5171
5172         PR gdb/15830
5173         * NEWS: The "maint demangle" command is renamed as "demangle".
5174         * demangle.c: #include cli/cli-utils.h, language.h.
5175         (demangle_command): New function.
5176         (_initialize_demangle): Add new command "demangle".
5177         * maint.c (maintenance_demangle): Stub out.
5178         (_initialize_maint_cmds): Update help text for "maint demangle",
5179         and mark as deprecated.
5180
5181 2015-01-11  Mark Kettenis  <kettenis@gnu.org>
5182
5183         * inf-ptrace.c (inf_ptrace_follow_fork): Adjust now that
5184         inferior_thread is a function.
5185
5186 2015-01-09  Patrick Palka  <patrick@parcs.ath.cx>
5187
5188         * Makefile.in (.y.c): Don't munge yacc's #line
5189         directives.
5190
5191 2015-01-09  Patrick Palka  <patrick@parcs.ath.cx>
5192
5193         * utils.c (defaulted_query): Rewrite to use gdb_readline_wrapper
5194         to prompt for input.
5195         * tui/tui-hooks.c (tui_query_hook): Remove.
5196         (tui_install_hooks): Don't set deprecated_query_hook.
5197         * tui/tui-io.c (tui_redisplay_readline): Fix off-by-one error in
5198         height calculation.  Always update the command window's cur_line.
5199
5200 2015-01-09  Pedro Alves  <palves@redhat.com>
5201
5202         * breakpoint.c (hardware_breakpoint_inserted_here_p): New
5203         function.
5204         * breakpoint.h (hardware_breakpoint_inserted_here_p): New
5205         declaration.
5206         * linux-nat.c (linux_nat_status_is_event): Move higher up in file.
5207         (linux_resume_one_lwp): Store the thread's PC.  Adjust to clear
5208         stop_reason.
5209         (check_stopped_by_watchpoint): New function.
5210         (save_sigtrap): Reimplement.
5211         (linux_nat_stopped_by_watchpoint): Adjust.
5212         (linux_nat_lp_status_is_event): Delete.
5213         (stop_wait_callback): Only call save_sigtrap after storing the
5214         pending status.
5215         (status_callback): If the thread had been stopped for a breakpoint
5216         that has since been removed, discard the event and resume the LWP.
5217         (count_events_callback, select_event_lwp_callback): Use
5218         lwp_status_pending_p instead of linux_nat_lp_status_is_event.
5219         (cancel_breakpoint): Rename to ...
5220         (check_stopped_by_breakpoint): ... this.  Record whether the LWP
5221         stopped for a software breakpoint or hardware breakpoint.
5222         (select_event_lwp): Only give preference to the stepping LWP in
5223         all-stop mode.  Adjust comments.
5224         (stop_and_resume_callback): Remove references to new_pending_p.
5225         (linux_nat_filter_event): Likewise.  Leave exit events of the
5226         leader thread pending here.  Handle signal short circuiting here.
5227         Only call save_sigtrap after storing the pending waitstatus.
5228         (linux_nat_wait_1): Remove 'retry' label.  Remove references to
5229         new_pending.  Don't handle leaving events the caller is not
5230         interested in pending here, nor handle signal short-circuiting
5231         here.  Also give equal priority to all LWPs that have had events
5232         in non-stop mode.  If reporting a software breakpoint event,
5233         unadjust the LWP's PC.
5234         * linux-nat.h (enum lwp_stop_reason): New.
5235         (struct lwp_info) <stop_pc>: New field.
5236         (struct lwp_info) <stopped_by_watchpoint>: Delete field.
5237         (struct lwp_info) <stop_reason>: New field.
5238         * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust.
5239
5240 2015-01-09  Pedro Alves  <palves@redhat.com>
5241
5242         * linux-nat.c (linux_handle_extended_wait) <PTRACE_EVENT_EXEC>:
5243         Set the LWP's 'resumed' flag.
5244
5245 2015-01-09  Pedro Alves  <palves@redhat.com>
5246
5247         * linux-nat.c (linux_resume_one_lwp): New function.
5248         (resume_lwp): Use lwp_status_pending_p and linux_resume_one_lwp.
5249         (linux_nat_resume): Use lwp_status_pending_p and
5250         linux_resume_one_lwp.
5251         (linux_handle_syscall_trap): Use linux_resume_one_lwp.
5252         (linux_handle_extended_wait): Use linux_resume_one_lwp.
5253         (status_callback, running_callback): Use lwp_status_pending_p.
5254         (lwp_status_pending_p): New function.
5255         (stop_and_resume_callback): Use lwp_status_pending_p.
5256         (linux_nat_filter_event): Use linux_resume_one_lwp.
5257         (linux_nat_wait_1): Always use status_callback to look for an LWP
5258         with a pending status.  Use linux_resume_one_lwp.
5259         (resume_stopped_resumed_lwps): Use lwp_status_pending_p and
5260         linux_resume_one_lwp.
5261
5262 2015-01-09  Pedro Alves  <palves@redhat.com>
5263
5264         * breakpoint.c (bp_location_inserted_here_p): New function,
5265         factored out from ...
5266         (breakpoint_inserted_here_p): ... here.  Use
5267         ALL_BP_LOCATIONS_AT_ADDR.
5268         (software_breakpoint_inserted_here_p): Use
5269         bp_location_inserted_here_p and ALL_BP_LOCATIONS_AT_ADDR.
5270
5271 2014-01-09  Pedro Alves  <palves@redhat.com>
5272
5273         Skip enabling event reporting if the kernel supports
5274         PTRACE_EVENT_CLONE.
5275         * linux-thread-db.c: Include "nat/linux-ptrace.h".
5276         (thread_db_use_events): New function.
5277         (try_thread_db_load_1): Check thread_db_use_events before enabling
5278         event reporting.
5279         (update_thread_state): New function.
5280         (attach_thread): Use it.  Check thread_db_use_events before
5281         enabling event reporting.
5282         (thread_db_detach): Check thread_db_use_events before disabling
5283         event reporting.
5284         (find_new_threads_callback): Check thread_db_use_events before
5285         enabling event reporting.  Update the thread's state if not using
5286         libthread_db events.
5287
5288 2015-01-09  Pedro Alves  <palves@redhat.com>
5289
5290         * linux-nat.c (lin_lwp_attach_lwp): Assert that the lwp id we're
5291         about to wait for is > 0.
5292         * linux-thread-db.c (find_new_threads_callback): Ignore thread if
5293         the kernel thread ID is -1.
5294
5295 2015-01-09  Pedro Alves  <palves@redhat.com>
5296
5297         * linux-nat.c (attach_proc_task_lwp_callback): New function.
5298         (linux_nat_attach): Use linux_proc_attach_tgid_threads.
5299         (wait_lwp, linux_nat_filter_event): If not set yet, set the lwp's
5300         ptrace option flags.
5301         * linux-nat.h (struct lwp_info) <must_set_ptrace_flags>: New
5302         field.
5303         * nat/linux-procfs.c: Include <dirent.h>.
5304         (linux_proc_get_int): New parameter "warn".  Handle it.
5305         (linux_proc_get_tgid): Adjust.
5306         (linux_proc_get_tracerpid): Rename to ...
5307         (linux_proc_get_tracerpid_nowarn): ... this.
5308         (linux_proc_pid_get_state): New function, factored out from
5309         (linux_proc_pid_has_state): ... this.  Add new parameter "warn"
5310         and handle it.
5311         (linux_proc_pid_is_gone): New function.
5312         (linux_proc_pid_is_stopped): Adjust.
5313         (linux_proc_pid_is_zombie_maybe_warn)
5314         (linux_proc_pid_is_zombie_nowarn): New functions.
5315         (linux_proc_pid_is_zombie): Use
5316         linux_proc_pid_is_zombie_maybe_warn.
5317         (linux_proc_attach_tgid_threads): New function.
5318         * nat/linux-procfs.h (linux_proc_get_tgid): Update comment.
5319         (linux_proc_get_tracerpid): Rename to ...
5320         (linux_proc_get_tracerpid_nowarn): ... this, and update comment.
5321         (linux_proc_pid_is_gone): New declaration.
5322         (linux_proc_pid_is_zombie): Update comment.
5323         (linux_proc_pid_is_zombie_nowarn): New declaration.
5324         (linux_proc_attach_lwp_func): New typedef.
5325         (linux_proc_attach_tgid_threads): New declaration.
5326         * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason): Adjust to
5327         use nowarn functions.
5328         (linux_ptrace_attach_fail_reason_string): Move here from
5329         gdbserver/linux-low.c and rename.
5330         (ptrace_supports_feature): If the current ptrace options are not
5331         known yet, check them now, instead of asserting.
5332         * nat/linux-ptrace.h (linux_ptrace_attach_fail_reason_string):
5333         Declare.
5334
5335 2015-01-09  Pedro Alves  <palves@redhat.com>
5336
5337         * linux-thread-db.c (thread_db_find_new_threads_silently)
5338         (try_thread_db_load_1, try_thread_db_load, thread_db_load_search)
5339         (find_new_threads_once): Print debug output on gdb_stdlog.
5340
5341 2015-01-09  Chen Gang  <gang.chen.5i5j@gmail.com>
5342             Pedro Alves  <palves@redhat.com>
5343
5344         * compile/compile.c: Include "gdb_wait.h".
5345         (do_rmdir): Check return value, and free 'zap'.
5346
5347 2015-01-08  Pedro Alves  <palves@redhat.com>
5348             Yao Qi  <yao@codesourcery.com>
5349
5350         * dwarf2loc.c (indirect_pieced_value): Don't call
5351         gdb_sign_extend.  Call extract_signed_integer instead.
5352         * utils.c (gdb_sign_extend): Remove.
5353         * utils.h (gdb_sign_extend): Remove declaration.
5354
5355 2015-01-07  Pierre Muller  <muller@sourceware.org>
5356
5357         PR symtab/17811
5358         * stabsread.c (define_symbol): Set language for C++ special symbols.
5359
5360 2015-01-07  Patrick Palka  <patrick@parcs.ath.cx>
5361
5362         * inflow.c (initial_gdb_ttystate): Tweak comment.
5363
5364 2015-01-07  Joel Brobecker  <brobecker@adacore.com>
5365
5366         * inflow.c (set_initial_gdb_ttystate): Add empty line after
5367         comment documenting function.
5368
5369 2015-01-07  Patrick Palka  <patrick@parcs.ath.cx>
5370
5371         * terminal.h (set_initial_gdb_ttystate): Declare.
5372         * inflow.c (initial_gdb_ttystate): New static variable.
5373         (set_initial_gdb_ttystate): New setter.
5374         (child_terminal_init_with_pgrp): Copy initial_gdb_ttystate
5375         instead of our current terminal state.
5376         * top.c (gdb_init): Call set_initial_gdb_ttystate.
5377
5378 2015-01-07  Joel Brobecker  <brobecker@adacore.com>
5379
5380         * guile/scm-type.c (tyscm_array_1): Add comment.
5381         * python/py-type.c (typy_array_1): Add comment.
5382
5383 2015-01-06  Joel Brobecker  <brobecker@adacore.com>
5384
5385         * guile/scm-type.c (tyscm_array_1): Do not raise out-of-range
5386         error if N2 is equal to N1 - 1.
5387
5388 2015-01-06  Joel Brobecker  <brobecker@adacore.com>
5389
5390         * python/py-type.c (typy_array_1): Do not raise negative-length
5391         exception if N2 is equal to N1 - 1.
5392
5393 2015-01-03  Doug Evans  <xdje42@gmail.com>
5394
5395         * c-exp.y: Whitespace cleanup.
5396         (classify_inner_name): Remove extra ;.
5397
5398 2015-01-02  Maciej W. Rozycki  <macro@codesourcery.com>
5399
5400         * mips-tdep.c (mips32_scan_prologue): Keep the extracted stack
5401         offset signed.
5402
5403 2015-01-02  Doug Evans  <dje@google.com>
5404
5405         * dwarf2read.c (setup_type_unit_groups): Remove outdated comment.
5406
5407 2015-01-02  Doug Evans  <dje@google.com>
5408
5409         * symtab.h (struct symbol): Fix typo in comment.
5410
5411 2015-01-01  Joel Brobecker  <brobecker@adacore.com>
5412
5413         Update year range in copyright notice of all files.
5414
5415 2015-01-01  Joel Brobecker  <brobecker@adacore.com>
5416
5417         * top.c (print_gdb_version): Update copyright year to 2015.
5418
5419 2015-01-01  Joel Brobecker  <brobecker@adacore.com>
5420
5421         * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2014.
5422
5423 For older changes see ChangeLog-2014.
5424 \f
5425 Local Variables:
5426 mode: change-log
5427 left-margin: 8
5428 fill-column: 74
5429 version-control: never
5430 coding: utf-8
5431 End: