gdb/linux-record: Remove size_siginfo
[external/binutils.git] / gdb / ChangeLog
1 2015-10-30  Marcin Koƛcielnicki  <koriakin@0x04.net>
2
3         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Remove size_siginfo.
4         * amd64-linux-tdep.c (amd64_linux_init_abi): Remove size_siginfo.
5         (amd64_x32_linux_init_abi): Remove size_siginfo.
6         * arm-linux-tdep.c (arm_linux_init_abi): Remove size_siginfo.
7         * i386-linux-tdep.c (i386_linux_init_abi): Remove size_siginfo.
8         * linux-record.c (record_linux_system_call): Change size_siginfo
9         to size_siginfo_t.
10         * linux-record.h (struct linux_record_tdep): Remove size_siginfo.
11         * ppc-linux-tdep.c (ppc_init_linux_record_tdep): Remove size_siginfo.
12
13 2015-10-29  Pedro Alves  <palves@redhat.com>
14
15         * mdebugread.c (add_data_symbol): New function, factored out from
16         ...
17         (parse_symbol): ... here.  Delete 'theclass' local.
18
19 2015-10-29  Simon Marchi  <simon.marchi@polymtl.ca>
20
21         * jit.c (jit_target_read_impl): Add cast.
22
23 2015-10-29  Simon Marchi  <simon.marchi@polymtl.ca>
24
25         * jit.c (jit_reader_load): Add cast.
26
27 2015-10-29  Simon Marchi  <simon.marchi@polymtl.ca>
28
29         * dwarf2read.c (partial_die_full_name): Add cast.
30
31 2015-10-29  Pedro Alves  <palves@redhat.com>
32
33         * common/vec.h (DEF_VEC_FUNC_P) [iterate]: Cast 0 to type T.
34
35 2015-10-29  Pedro Alves  <palves@redhat.com>
36
37         * guile/scm-frame.c (gdbscm_unwind_stop_reason_string): Add cast.
38
39 2015-10-29  Eli Zaretskii  <eliz@gnu.org>
40
41         * utils.c (init_page_info): Disable paging if INSIDE_EMACS is set
42         in the environment.
43
44 2015-10-29  Pedro Alves  <palves@redhat.com>
45
46         * gnu-v2-abi.c (gnuv2_is_destructor_name)
47         (gnuv2_is_constructor_name): Add casts.
48
49 2015-10-29  Pedro Alves  <palves@redhat.com>
50
51         * common/common-exceptions.c (exception_none): Add cast.
52
53 2015-10-29  Pedro Alves  <palves@redhat.com>
54
55         * compile/compile-c-types.c (struct type_map_instance)
56         <gcc_type>: Rename to gcc_type_handle.
57         (insert_type, convert_type): Adjust.
58
59 2015-10-29  Pedro Alves  <palves@redhat.com>
60
61         * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Don't
62         assume that "break" breaks out of a TRY/CATCH.
63         * python/py-framefilter.c (py_print_single_arg): Don't assume
64         "continue" breaks out of a TRY/CATCH.
65         * python/py-value.c (valpy_binop_throw): New function, factored
66         out from ...
67         (valpy_binop): ... this.
68         (valpy_richcompare_throw): New function, factored
69         out from ...
70         (valpy_richcompare): ... this.
71         * solib.c (solib_read_symbols): Don't assume "break" breaks out
72         of a TRY/CATCH.
73         * common/common-exceptions.h [USE_RAW_CXX_TRY]
74         <TRY/CATCH/END_CATCH>: Define as 1-1 wrappers around try/catch.
75
76 2015-10-28  Simon Dardis  <Simon.Dardis@imgtec.com>
77
78         * mips-linux-tdep.c (mips_linux_in_dynsym_stub): Recognise 'or'
79         as move along with [d]addu.
80
81 2015-10-28  Yao Qi  <yao.qi@linaro.org>
82
83         * aarch64-tdep.c (aarch64_software_single_step): Pass 1 to
84         aarch64_decode_insn.
85
86 2015-10-27  Pedro Alves  <palves@redhat.com>
87
88         * common/print-utils.c (host_address_to_string): Rename to ...
89         (host_address_to_string_1): ... this.
90         * common/print-utils.h (host_address_to_string): Reimplement as
91         wrapper around host_address_to_string_1.
92         * utils.c (gdb_print_host_address): Rename to ...
93         (gdb_print_host_address_1): ... this.
94         * utils.h (gdb_print_host_address): Reimplement as wrapper macro
95         around  host_address_to_string_1.
96
97 2015-10-27  Pedro Alves  <palves@redhat.com>
98
99         * alpha-tdep.c (alpha_read_insn): Always pass TARGET_XFER_E_IO to
100         memory_error.  Rename local 'status' to 'res'.
101         * c-lang.c (c_get_string): Always pass TARGET_XFER_E_IO to
102         memory_error.
103         * corefile.c (read_stack, read_code, write_memory): Always pass
104         TARGET_XFER_E_IO to memory_error.
105         * disasm.c (dis_asm_memory_error): Always pass TARGET_XFER_E_IO to
106         memory_error.  Rename parameter 'status' to 'err'.
107         (dump_insns): Rename local 'status' to 'err'.
108         * mips-tdep.c (mips_fetch_instruction): Rename parameter 'statusp'
109         to 'errp'.  Rename local 'status' to 'err'.  Always pass
110         TARGET_XFER_E_IO to memory_error.
111         (mips_breakpoint_from_pc): Rename local 'status' to 'err'.
112         * target.c (target_read_memory, target_read_raw_memory)
113         (target_read_stack, target_read_code, target_write_memory)
114         (target_write_raw_memory): Return -1 on error instead of
115         TARGET_XFER_E_IO.
116         * valprint.c (val_print_string): Rename local 'errcode' to 'err'.
117         Always pass TARGET_XFER_E_IO to memory_error.  Update comment.
118
119 2015-10-27  Simon Marchi  <simon.marchi@polymtl.ca>
120
121         * guile/guile-internal.h (gdbscm_with_guile): Change return
122         types to const char *.
123         * guile/scm-safe-call.c (gdbscm_with_guile): Likewise.
124         (struct c_data) <func>: Likewise.
125         (struct c_data) <result>: Change type to const char *.
126         (scscm_eval_scheme_string): Change return type to
127         const char *.
128         (scscm_source_scheme_script): Likewise.
129         (gdbscm_safe_eval_string): Change type of result variable to
130         const char * and remove cast.
131         (gdbscm_safe_source_script): Likewise.
132         * guile/scm-disasm.c (gdbscm_disasm_read_memory_worker):
133         Change return type to const char *.
134         (gdbscm_disasm_read_memory): Change type of status to
135         const char *.
136
137 2015-10-27  Pedro Alves  <palves@redhat.com>
138
139         * source.c (openp): New local 'last_errno'.  Use it to
140         save/restore errno.
141
142 2015-10-27  Pedro Alves  <palves@redhat.com>
143
144         * psymtab.c (dump_psymtab_addrmap_1): Add casts.
145
146 2015-10-27  Simon Marchi  <simon.marchi@polymtl.ca>
147
148         * ctf.c (SET_ENUM_FIELD): New macro.
149         (ctf_read_status): Use it.
150         (ctf_read_tp): Use it.
151
152 2015-10-27  Simon Marchi  <simon.marchi@polymtl.ca>
153
154         * guile/scm-breakpoint.c (gdbscm_set_breakpoint_stop_x): Add
155         scm_t_dynwind_flags casts.
156         * guile/scm-cmd.c (gdbscm_parse_command_name): Likewise.
157         * guile/scm-ports.c (gdbscm_open_memory): Likewise.
158         * guile/scm-value.c (gdbscm_value_to_string): Likewise.
159
160 2015-10-27  Simon Marchi  <simon.marchi@polymtl.ca>
161
162         * ax.h (ax_raw_byte): New declaration.
163         * ax-general.c (ax_raw_byte): New function.
164         (ax_simple): Use ax_raw_byte.
165         * ax-gdb.c (gen_printf): Likewise.
166
167 2015-10-27  Simon Marchi  <simon.marchi@polymtl.ca>
168
169         * ada-lang.h (GROW_VECT): Add cast.
170
171 2015-10-26  Doug Evans  <xdje42@gmail.com>
172
173         * symtab.h (struct general_symbol_info> <ada_mangled>: Update comment.
174
175 2015-10-26  Simon Marchi  <simon.marchi@polymtl.ca>
176
177         * target.c (memory_xfer_partial): Change type of buf to gdb_byte
178         pointer.
179         (simple_search_memory): Cast return of memmem.
180
181 2015-10-26  Simon Marchi  <simon.marchi@polymtl.ca>
182
183         * stap-probe.c (handle_stap_probe): Add (const char *) casts.
184
185 2015-10-26  Simon Marchi  <simon.marchi@polymtl.ca>
186
187         * ctf.c (ctf_xfer_partial): Return TARGET_XFER_E_IO instead of
188         -1 on error.
189
190 2015-10-26  Doug Evans  <dje@google.com>
191
192         PR symtab/17391
193         * dwarf2-frame.c (dwarf2_restore_rule): Call dwarf_reg_to_regnum
194         instead of gdbarch_dwarf2_reg_to_regnum.
195         (dwarf2_frame_cache): Ditto.
196         (read_addr_from_reg): Call dwarf_reg_to_regnum_or_error instead of
197         gdbarch_dwarf2_reg_to_regnum.
198         (get_reg_value): Ditto.
199         (dwarf2_fetch_cfa_info): Ditto.
200         (dwarf2_frame_prev_register): Ditto.
201         * dwarf2loc.c: #include "complaints.h".
202         (dwarf_expr_read_addr_from_reg): Call dwarf_reg_to_regnum_or_error
203         instead of gdbarch_dwarf2_reg_to_regnum.
204         (dwarf_expr_get_reg_value): Ditto.
205         (read_pieced_value): Ditto.
206         (write_pieced_value): Ditto.
207         (dwarf2_evaluate_loc_desc_full): Ditto.
208         (dwarf_reg_to_regnum): New function.
209         (throw_bad_regnum_error): New function.
210         (dwarf_reg_to_regnum_or_error): Renamed from
211         dwarf2_reg_to_regnum_or_errorChange to take a ULONGEST regnum.
212         All callers updated.  Call throw_bad_regnum_error.
213         (locexpr_regname): Improve text of bad register number.
214         * dwarf2loc.h (dwarf_reg_to_regnum): Declare.
215         (dwarf_reg_to_regnum_or_error): Update prototype.
216         * dwarf2expr.c: #include "dwarf2loc.h".
217         (dwarf_block_to_sp_offset): Call dwarf_reg_to_regnum instead of
218         gdbarch_dwarf2_reg_to_regnum.
219         * gdbarch.sh (dwarf2_reg_to_regnum): Add comment.
220         * gdbarch.h: Regenerate.
221         * amd64-tdep.c (amd64_dwarf_reg_to_regnum): Remove warning for bad
222         register.
223         * avr-tdep.c (avr_dwarf_reg_to_regnum): Ditto.
224         * cris-tdep.c (cris_dwarf2_reg_to_regnum): Ditto.
225         * bfin-tdep.c (bfin_reg_to_regnum): Fix error checking.
226         * hppa-linux-tdep.c (hppa_dwarf_reg_to_regnum): Improve error checking.
227         Remove warning for bad register.
228         * hppa-tdep.c (hppa64_dwarf_reg_to_regnum): Ditto.
229         * i386-tdep.c (i386_svr4_dwarf_reg_to_regnum): Renamed from
230         i386_svr4_reg_to_regnum.  Return -1 for bad registers.
231         (i386_svr4_reg_to_regnum): New function.
232         (i386_gdbarch_init): Update call to set_gdbarch_dwarf2_reg_to_regnum.
233         * microblaze-tdep.c (microblaze_dwarf2_reg_to_regnum): Don't assert
234         on bad registers, return -1.
235         * msp430-tdep.c (msp430_dwarf2_reg_to_regnum): Improve error checking.
236         Remove warning for bad register.
237         * nios2-tdep.c: Add static assert for NIOS2_NUM_REGS.
238         (nios2_dwarf_reg_to_regnum): Fix off-by-one error.
239         Remove warning for bad register.  Return -1 for bad register.
240         * rl78-tdep.c (rl78_dwarf_reg_to_regnum): Don't flag an internal error
241         for bad register, return -1.
242         * rx-tdep.c (rx_dwarf_reg_to_regnum): Ditto.
243         * m68k-tdep.c (m68k_dwarf_reg_to_regnum): Fix error result.
244         * mep-tdep.c (mep_debug_reg_to_regnum): Ditto.
245         * mips-tdep.c (mips_stab_reg_to_regnum): Ditto.
246         (mips_dwarf_dwarf2_ecoff_reg_to_regnum): Ditto.
247         * mn10300-tdep.c (mn10300_dwarf2_reg_to_regnum): Remove warning
248         for bad regs.
249         * xtensa-tdep.c (xtensa_reg_to_regnum): Remove internal error for
250         bad regs.  Fix error result.
251         * stabsread.c (stab_reg_to_regnum): Watch for negative regno.
252         (reg_value_complaint): Update complaint text.
253         * mdebugread.c (reg_value_complaint): New function.
254         (mdebug_reg_to_regnum): Rewrite to watch for bad reg numbers.
255
256 2015-10-26  Doug Evans  <dje@google.com>
257
258         PR python/18938
259         * cli/cli-cmds (source_script_fron_sctream): New arg file_to_open.
260         All callers updated.
261
262 2015-10-26  Doug Evans  <dje@google.com>
263
264         * psymtab.c (struct dump_psymtab_addrmap_data): Define.
265         (dump_psymtab_addrmap_1, dump_psymtab_addrmap): New functions.
266         (maintenance_print_psymbols): Print address map.
267
268 2015-10-26  Doug Evans  <dje@google.com>
269
270         * nat/linux-nat.h (__SIGRTMIN): Move here from gdbserver/linux-low.c.
271
272 2015-10-26  Doug Evans  <dje@google.com>
273
274         * common/gdb_wait.h (W_STOPCODE): Define, moved here from
275         gdbserver/linux-low.c.
276         (WSETSTOP): Simplify.
277
278 2015-10-26  Doug Evans  <dje@google.com>
279
280         * linux-thread-db.c (find_new_threads_callback): Ditto.
281         (thread_db_pid_to_str): Ditto.
282
283 2015-10-26  Simon Marchi  <simon.marchi@polymtl.ca>
284
285         * guile/scm-ports.c (ioscm_make_gdb_stdio_port): Do not pass a
286         local char array to scm_mode_bits, use a cast instead.
287
288 2015-10-26  Simon Marchi  <simon.marchi@ericsson.com>
289
290         * tui/tui-data.c (tui_alloc_content): Don't check xmalloc
291         result.  Change type of element_block_ptr.  Change allocation to
292         use XNEWVEC.
293
294 2015-10-26  Luis Machado  <lgustavo@codesourcery.com>
295
296         * record-full.c (record_full_message_wrapper_safe): Pass empty string to
297         catch_errors call instead of NULL.
298
299 2015-10-26  Simon Marchi  <simon.marchi@polymtl.ca>
300
301         * guile/scm-ports.c (ioscm_make_gdb_stdio_port): Pass non-const
302         char pointer to scm_mode_bits.
303
304 2015-10-26  Simon Marchi  <simon.marchi@polymtl.ca>
305
306         * symtab.c (default_make_symbol_completion_list_break_on_1): Add
307         cast.
308
309 2015-10-26  Simon Marchi  <simon.marchi@polymtl.ca>
310
311         * guile/scm-ports.c (gdbscm_memory_port_write): Declare new
312         "data" local variable and use it.
313
314 2015-10-26  Simon Marchi  <simon.marchi@polymtl.ca>
315
316         * guile/scm-symbol.c (gdbscm_lookup_global_symbol): Add
317         domain_enum cast.
318         (gdbscm_lookup_symbol): Likewise.
319
320 2015-10-25  Iain Buclaw  <ibuclaw@gdcproject.org>
321
322         * d-exp.y: Remove an obsolete comment and propagate the block
323         information to the produced expression.
324
325 2015-10-24  Simon Marchi  <simon.marchi@polymtl.ca>
326
327         * tui/tui-data.c (tui_add_to_source_windows): Remove void *
328         cast.
329         (tui_add_content_elements): Likewise.
330
331 2015-10-24  Simon Marchi  <simon.marchi@polymtl.ca>
332
333         * cli/cli-setshow.c (do_set_command): Constify p.
334
335 2015-10-24  Simon Marchi  <simon.marchi@polymtl.ca>
336
337         * nat/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Replace
338         (void *) cast with (gdb_byte *).
339
340 2015-10-24  Simon Marchi  <simon.marchi@polymtl.ca>
341
342         * proc-service.c (ps_pdread): Add cast.
343
344 2015-10-24  Simon Marchi  <simon.marchi@polymtl.ca>
345
346         * sparc64-tdep.c (sparc64_store_arguments): Split assignment of
347         valbuf.
348
349 2015-10-24  Simon Marchi  <simon.marchi@polymtl.ca>
350
351         * ia64-tdep.c (ia64_pseudo_register_write): Remove cast.
352         (ia64_push_dummy_call): Remove cast and change type of "to" to
353         array of gdb_byte.
354
355 2015-10-23  Simon Marchi  <simon.marchi@polymtl.ca>
356
357         * linux-btrace.c (linux_enable_pt): Add cast to mmap return.
358
359 2015-10-23  Simon Marchi  <simon.marchi@ericsson.com>
360
361         * observer.h (observer_${event}_notification_stub): Add cast.
362
363 2015-10-23  Yao Qi  <yao.qi@linaro.org>
364
365         * aarch64-tdep.c (aarch64_displaced_step_copy_insn): Set
366         dsd.insn_count to zero.
367
368 2015-10-22  Pedro Alves  <palves@redhat.com>
369
370         * infrun.c (stop_after_trap): Delete.
371         (clear_proceed_status, handle_signal_stop, struct
372         infcall_control_state, save_infcall_control_state)
373         (restore_infcall_control_state): Remove references to
374         stop_after_trap.
375
376 2015-10-22  Simon Marchi  <simon.marchi@ericsson.com>
377
378         * python/python.c (_initialize_python): Add cast.
379
380 2015-10-22  Simon Marchi  <simon.marchi@ericsson.com>
381
382         * nto-tdep.c (nto_inferior_data): Add cast.
383
384 2015-10-22  Pedro Alves  <palves@redhat.com>
385
386         * windows-nat.c (do_initial_windows_stuff): Rewrite loop using
387         windows_wait and windows_resume directly instead of
388         wait_for_inferior and resume.
389
390 2015-10-22  Simon Marchi  <simon.marchi@polymtl.ca>
391
392         * xtensa-tdep.h (XTREG): Add casts.
393         (XTREG_END): Likewise.
394
395 2015-10-22  Simon Marchi  <simon.marchi@polymtl.ca>
396
397         * solib-spu.c (spu_bfd_iovec_pread): Add (gdb_byte *) cast.
398
399 2015-10-22  Simon Marchi  <simon.marchi@polymtl.ca>
400
401         * rs6000-tdep.c (variants): Add (enum bfd_architecture) cast.
402
403 2015-10-22  Simon Marchi  <simon.marchi@polymtl.ca>
404
405         * mips-linux-tdep.c (mips64_linux_get_longjmp_target): Change type of
406         buf to gdb_byte*.
407         (supply_32bit_reg): Add cast.
408         (mips64_fill_gregset): Likewise.
409
410 2015-10-21  Simon Marchi  <simon.marchi@polymtl.ca>
411
412         PR python/18073
413         * python/py-type.c (typy_get_composite): Allow returning a
414         function type.
415
416 2015-10-21  Keven Boell  <keven.boell@intel.com>
417
418         * dwarf2read.c (set_die_type): Add read of
419         DW_AT_allocated and DW_AT_associated.
420         * f-typeprint.c: New include of typeprint.h
421         (f_print_type): Add check for allocated/associated
422         status of type.
423         (f_type_print_varspec_suffix): Add check for
424         * gdbtypes.c (create_array_type_with_stride):
425         Add check for valid data location of type in
426         case allocated or associated attributes are set.
427         Length of an array should be only calculated if
428         allocated or associated is resolved as true.
429         (is_dynamic_type_internal): Add check for allocated/
430         associated.
431         (resolve_dynamic_array): Evaluate allocated/associated
432         properties.
433         * gdbtypes.h (enum dynamic_prop_node_kind): <DYN_PROP_ALLOCATED>
434         <DYN_PROP_ASSOCIATED>: New enums.
435         (TYPE_ALLOCATED_PROP, TYPE_ASSOCIATED_PROP): New macros.
436         (type_not_allocated): New function.
437         (type_not_associated): New function.
438         * valarith.c (value_subscripted_rvalue): Add check for
439         allocated/associated.
440         * valprint.c: New include of typeprint.h.
441         (valprint_check_validity): Add check for allocated/associated.
442         (value_check_printable): Add check for allocated/
443         associated.
444         * typeprint.h (val_print_not_allocated): New function.
445         (val_print_not_associated): New function.
446         * typeprint.c (val_print_not_allocated): New function.
447         (val_print_not_associated): New function.
448
449 2015-10-21  Antoine Tremblay  <antoine.tremblay@ericsson.com>
450
451         * Makefile.in: Add arm.c/o.
452         * arch/arm.c: New file.
453         * arch/arm.h: (IS_THUMB_ADDR): Move macro from arm-tdep.c.
454         (MAKE_THUMB_ADDR): Likewise.
455         (UNMAKE_THUMB_ADDR): Likewise.
456         * arm-tdep.c (int thumb_insn_size): Move to arm.c.
457         (IS_THUMB_ADDR): Move to arm.h.
458         (MAKE_THUMB_ADDR): Likewise.
459         (UNMAKE_THUMB_ADDR): Likewise.
460         * configure.tgt: Add arm.o to all ARM configs.
461
462 2015-10-21  Yao Qi  <yao.qi@linaro.org>
463
464         * lib/range-stepping-support.exp (exec_cmd_expect_vCont_count):
465         Remove argument exp_vCont_s.
466         * gdb.base/range-stepping.exp: Callers updated.
467         * gdb.trace/range-stepping.exp: Likewise.
468
469 2015-10-21  Aleksandar Ristovski  <aristovski@qnx.com>
470
471         * gdb/nto-tdep.c (QNX_NOTE_NAME, QNX_INFO_SECT_NAME): New defines.
472         (nto_sniff_abi_note_section): New function.
473         (nto_elf_osabi_sniffer): Use new function to recognize nto specific
474         binary.
475
476 2015-10-21  Aleksandar Ristovski  <aristovski@qnx.com>
477
478         * nto-procfs.c (procfs_wait): Set stopped_flags nad stopped_pc.
479         (procfs_stopped_by_watchpoint): Use flags stored in inferior data.
480         * nto-tdep.c (nto_new_inferior_data_reg): New definition.
481         (nto_new_inferior_data, nto_inferior_data_cleanup, nto_inferior_data):
482         New functions.
483         (_initialize_nto_tdep): New forward declaration, new function.
484         * nto-tdep.h (struct nto_inferior_data): New struct.
485         (nto_inferior_data): New function declaration.
486
487 2015-10-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
488
489         * findvar.c (address_from_register): Check REGNUM validity.
490
491 2015-10-20  Aleksandar Ristovski  <aristovski@qnx.com>
492
493         * gdb/nto-procfs.c (procfs_pid_to_exec_file): New function.
494         (init_procfs_targets): Wire new function.
495
496 2015-10-20  Aleksandar Ristovski  <aristovski@qnx.com>
497
498         * nto-procfs.c (sys/auxv.h): Include.
499         (procfs_xfer_partial): Implement TARGET_OBJECT_AUXV.
500         * nto-tdep.c (nto_read_auxv_from_initial_stack): New function.
501         * nto-tdep.h (nto_read_auxv_from_initial_stack): New declaration.
502
503 2015-10-20  Aleksandar Ristovski  <aristovski@qnx.com>
504
505         * nto-procfs.c (nto_procfs_path): Rename to...
506         (nodestr): ... this, and change type.
507         (nto_node): Use new variable and logic accordingly.
508         (procfs_open_1): Use new variable name. Use local buffer to construct
509         procfrs path.
510         (procfs_pidlist): Use NODESTR to construct procfs path.
511         (procfs_files_info): Use NODESTR to output meaningful text.
512         (do_attach): Construct procfs using NODESTR.
513         (procfs_create_inferior): Compare pointer to NULL.
514
515 2015-10-19  Josh Stone  <jistone@redhat.com>
516
517         * linux-nat.c (linux_handle_syscall_trap): Always update entry/
518         return state, even when not actively catching syscalls at all.
519         (linux_handle_extended_wait): Mark syscall_state like an entry.
520         (wait_lwp): Set syscall_state ignored for other traps.
521         (linux_nat_filter_event): Likewise.
522
523 2015-10-19  Luis Machado  <lgustavo@codesourcery.com>
524
525         * remote.c (remote_wait_as): Set rs->waiting_for_stop_reply to 0
526         when handling 'E', 'T', 'S', 'X' and 'W' packets.
527         Do not set rs->waiting_for_stop_reply back to 1.
528
529 2015-10-16  Aleksandar Ristovski  <aristovski@qnx.com>
530
531         * nto-procfs.c (common/filestuff.h): Include.
532         (procfs_can_use_hw_breakpoint): Fix enum name.
533         (procfs_open_1): Fix compiler warning.
534         (procfs_pidlist): Make static.
535         (procfs_meminfo): Make static, fix type name, add missing argument.
536         (procfs_store_registers): Make static.
537         (procfs_thread_info): Remove unused function.
538         (_initialize_procfs): Forward declare.
539
540 2015-10-16  Yao Qi  <yao.qi@arm.com>
541
542         * MAINTAINERS: Update my email address.
543
544 2015-10-15  Yao Qi  <yao.qi@linaro.org>
545
546         * aarch64-linux-nat.c (aarch64_linux_insert_hw_breakpoint):
547         Call gdbarch_breakpoint_from_pc to instruction length.
548         (aarch64_linux_remove_hw_breakpoint): Likewise.
549         * common/common-regcache.h (regcache_register_size): Declare.
550         * nat/aarch64-linux-hw-point.c: Include "common-regcache.h".
551         (aarch64_point_is_aligned): Set alignment to 2 for breakpoint if
552         the process is 32bit, otherwise set alignment to 4.
553         (aarch64_handle_breakpoint): Update comments.
554         * regcache.c (regcache_register_size): New function.
555
556 2015-10-15  Aleksandar Ristovski  <aristovski@qnx.com>
557
558         * gdbarch.sh (core_regset_section): Remove.
559         * gdbarch.h: Regenerate.
560
561 2015-10-14  Yao Qi  <yao.qi@linaro.org>
562
563         * arch/aarch64-insn.h (struct aarch64_memory_operand): Move enum
564         out of it.
565         (enum aarch64_memory_operand_type): New.
566
567 2015-10-13  David Edelsohn  <dje.gcc@gmail.com>
568
569         * xcoffread.c (dwarf2_xcoff_names): Add .dwmac and .dwpbtyp.
570
571 2015-10-13  Pedro Alves  <palves@redhat.com>
572
573         * ada-lang.c (ada_enum_name): Constify local.
574         * ada-typeprint.c (print_range_bound): Constify locals.
575         * c-varobj.c (c_describe_child): Likewise.
576         * cli/cli-setshow.c (do_set_command): Likewise.
577         * gdb_vecs.c (delim_string_to_char_ptr_vec_append): Likewise.
578         * dwarf2read.c (find_file_and_directory): Likewise.
579         (anonymous_struct_prefix, dwarf2_name): Likewise.
580         * gnu-v3-abi.c (gnuv3_rtti_type): Likewise.
581         * go-lang.c (unpack_mangled_go_symbol): Likewise.
582         * jv-typeprint.c (java_type_print_base): Likewise.
583         * ser-tcp.c (net_open): Likewise.
584         * symfile.c (deduce_language_from_filename): Likewise.
585         * symtab.c (gdb_mangle_name): Likewise.
586         * tui/tui-io.c (tui_redisplay_readline): Likewise.
587
588 2015-10-13  Pedro Alves  <palves@redhat.com>
589
590         * infrun.c (restore_execution_direction): New function.
591         (fetch_inferior_event): Use it instead of
592         make_cleanup_restore_integer.
593         (execution_direction): Change type to enum
594         exec_direction_kind.
595         * infrun.h (execution_direction): Likewise.
596
597 2015-10-13  Pedro Alves  <palves@redhat.com>
598
599         * ada-lang.c (ada_value_primitive_packed_val): Constify
600         locals.  Use value_contents_writeable.  Remove casts.
601
602 2015-10-13  Pedro Alves  <palves@redhat.com>
603
604         * ada-lang.c (ada_value_primitive_packed_val): Add casts to malloc
605         and alloca calls.
606
607 2015-10-13  Simon Marchi  <simon.marchi@polymtl.ca>
608
609         * lm32-tdep.c (lm32_push_dummy_call): Replace call to
610         write_memory with write_memory_unsigned_integer.
611
612 2015-10-13  Simon Marchi  <simon.marchi@polymtl.ca>
613
614         * solib-dsbt.c (cmp_name): Constify arguments.
615         * solib-frv.c (cmp_name): Likewise.
616         * solib-svr4.c (svr4_create_solib_event_breakpoints): Likewise.
617         * solib.c (gdb_bfd_lookup_symbol_from_symtab): Likewise.
618         (bfd_lookup_symbol_from_dyn_symtab): Likewise.
619         (gdb_bfd_lookup_symbol): Likewise.
620         * solib.h (gdb_bfd_lookup_symbol): Likewise.
621         (gdb_bfd_lookup_symbol_from_symtab): Likewise.
622
623 2015-10-12  Andrew Burgess  <andrew.burgess@embecosm.com>
624
625         * stack.c (parse_frame_specification): Remove message parameter,
626         replace with fixed string in function body, update function
627         comment.
628         (frame_info): Remove message to parse_frame_specification.
629         (select_frame_command): Likewise.
630
631 2015-10-12  Andrew Burgess  <andrew.burgess@embecosm.com>
632
633         * stack.c (parse_frame_specification): Delete.
634         (parse_frame_specification_1): Rename to
635         parse_frame_specification.
636         (frame_info): Use parse_frame_specification.
637         (select_frame_command): Likewise.
638         (return_command): Use select_frame and print_stack_frame rather
639         than frame_command and select_frame_command.
640         (func_command): Use get_current_frame rather than
641         parse_frame_specification.
642
643 2015-10-12  Andrew Burgess  <andrew.burgess@embecosm.com>
644
645         * stack.c (func_command): Return early when there is no ARG
646         string.
647
648 2015-10-12  Andrew Burgess  <andrew.burgess@embecosm.com>
649
650         * stack.c: Include safe-ctype.h not ctype.h.
651         (parse_frame_specification): Use ISSPACE not isspace.
652         (backtrace_command): Use TOLOWER not tolower.
653
654 2015-10-12  Simon Marchi  <simon.marchi@polymtl.ca>
655
656         * mep-tdep.c (current_me_module): Add cast.
657         (mep_gdbarch_init): Likewise.
658
659 2015-10-12  Simon Marchi  <simon.marchi@polymtl.ca>
660
661         * m32c-tdep.c (m32c_move_reg_t): Replace with...
662         (m32c_write_reg_t): ...this and...
663         (m32c_read_reg_t): ...this.
664         (struct m32c_reg): Update types of read and write.
665         (m32c_raw_read): Change declaration type to m32c_read_reg_t and
666         adjust definition.
667         (m32c_banked_read): Likewise.
668         (m32c_sb_read): Likewise.
669         (m32c_part_read): Likewise.
670         (m32c_cat_read): Likewise.
671         (m32c_r3r2r1r0_read): Likewise.
672         (m32c_raw_write): Change declaration type to m32c_write_reg_t
673         and adjust definition.
674         (m32c_banked_write): Likewise.
675         (m32c_sb_write): Likewise.
676         (m32c_part_write): Likewise.
677         (m32c_cat_write): Likewise.
678         (m32c_r3r2r1r0_write): Likewise.
679
680 2015-10-12  Simon Marchi  <simon.marchi@polymtl.ca>
681
682         * aarch64-linux-tdep.c (aarch64_linux_syscall_record): Add cast.
683
684 2015-10-12  Simon Marchi  <simon.marchi@polymtl.ca>
685
686         * aarch64-linux-tdep.c (aarch64_canonicalize_syscall): Return
687         gdb_sys_no_syscall instead of -1.
688
689 2015-10-12  Yao Qi  <yao.qi@linaro.org>
690
691         * NEWS: Mention the change.
692
693 2015-10-12  Yao Qi  <yao.qi@linaro.org>
694
695         * arch/aarch64-insn.c (emit_load_store): Rename to ...
696         (aarch64_emit_load_store): ... it.  All callers updated.
697
698 2015-10-12  Yao Qi  <yao.qi@linaro.org>
699
700         * arch/aarch64-insn.c (emit_insn): Rename to ...
701         (aarch64_emit_insn): ... it.  All callers updated.
702
703 2015-10-12  Yao Qi  <yao.qi@linaro.org>
704
705         * aarch64-linux-tdep.c: Include arch-utils.h.
706         (aarch64_linux_init_abi): Call set_gdbarch_max_insn_length,
707         set_gdbarch_displaced_step_copy_insn,
708         set_gdbarch_displaced_step_fixup,
709         set_gdbarch_displaced_step_free_closure,
710         set_gdbarch_displaced_step_location,
711         and set_gdbarch_displaced_step_hw_singlestep.
712         * aarch64-tdep.c (struct displaced_step_closure): New.
713         (struct aarch64_displaced_step_data): New.
714         (aarch64_displaced_step_b): New function.
715         (aarch64_displaced_step_b_cond): Likewise.
716         (aarch64_register): Likewise.
717         (aarch64_displaced_step_cb): Likewise.
718         (aarch64_displaced_step_tb): Likewise.
719         (aarch64_displaced_step_adr): Likewise.
720         (aarch64_displaced_step_ldr_literal): Likewise.
721         (aarch64_displaced_step_others): Likewise.
722         (aarch64_displaced_step_copy_insn): Likewise.
723         (aarch64_displaced_step_fixup): Likewise.
724         (aarch64_displaced_step_hw_singlestep): Likewise.
725         * aarch64-tdep.h (DISPLACED_MODIFIED_INSNS): New macro.
726         (aarch64_displaced_step_copy_insn): Declare.
727         (aarch64_displaced_step_fixup): Declare.
728         (aarch64_displaced_step_hw_singlestep): Declare.
729         * arch/aarch64-insn.c (emit_insn): Moved from
730         gdbserver/linux-aarch64-low.c.
731         (emit_load_store): Likewise.
732         * arch/aarch64-insn.h (enum aarch64_opcodes): Moved from
733         gdbserver/linux-aarch64-low.c.
734         (struct aarch64_register): Likewise.
735         (struct aarch64_memory_operand): Likewise.
736         (ENCODE): Likewise.
737         (can_encode_int32): New macro.
738         (emit_b, emit_bcond, emit_cb, emit_ldr, emit_ldrsw): Likewise.
739         (emit_tb, emit_nop): Likewise.
740         (emit_insn): Declare.
741         (emit_load_store): Declare.
742
743 2015-10-12  Yao Qi  <yao.qi@linaro.org>
744
745         * arch/aarch64-insn.c (aarch64_decode_ldr_literal): Moved from
746         gdbserver/linux-aarch64-low.c.
747         (aarch64_relocate_instruction): Likewise.
748         * arch/aarch64-insn.h (aarch64_decode_ldr_literal): Declare.
749         (struct aarch64_insn_data): Moved from
750         gdbserver/linux-aarch64-low.c.
751         (struct aarch64_insn_visitor): Likewise.
752         (aarch64_relocate_instruction): Declare.
753
754 2015-10-12  Pierre-Marie de Rodat  <derodat@adacore.com>
755
756         * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT>: If
757         EVAL_AVOID_SIDE_EFFECTS mode, forward the VALUE_LVAL attribute
758         to the returned value.
759
760 2015-10-09  Joel Brobecker  <brobecker@adacore.com>
761
762         * ada-lang.c (ada_unpack_from_contents): Add guard that unpacked
763         is large enough for BIT_SIZE.  Update function comment.
764
765 2015-10-09  Joel Brobecker  <brobecker@adacore.com>
766
767         * ada-lang.c (ada_value_primitive_packed_val): Move
768         src_len variable to local block where used.  Override
769         BIT_SIZE if bigger than size of resolved type.
770
771 2015-10-09  Joel Brobecker  <brobecker@adacore.com>
772
773         * gdbtypes.h (is_scalar_type): Add extern declaration.
774         * gdbtypes.c (is_scalar_type): Make non-static.
775         * ada-lang.c (ada_value_primitive_packed_val): Use is_scalar_type
776         to compute IS_SCALAR instead of doing it ourselves.
777
778 2015-10-09  Joel Brobecker  <brobecker@adacore.com>
779
780         * ada-lang.c (ada_value_primitive_packed_val): Rework handling
781         of case where TYPE is dynamic.
782
783 2015-10-09  Joel Brobecker  <brobecker@adacore.com>
784
785         * ada-lang.c (ada_unpack_from_contents): New function,
786         extracted from ada_value_primitive_packed_val.
787         (ada_value_primitive_packed_val): Replace extracted out code
788         by call to ada_unpack_from_contents.
789
790 2015-10-09  Joel Brobecker  <brobecker@adacore.com>
791
792         * ada-lang.c (ada_value_primitive_packed_val): Reorder local
793         variable declarations.
794
795 2015-10-09  Joel Brobecker  <brobecker@adacore.com>
796
797         * ada-lang.c (ada_value_primitive_packed_val): Change the type
798         of local variables src and unpacked to "gdb_type *" instead of
799         "unsigned char *".
800
801 2015-10-09  Joel Brobecker  <brobecker@adacore.com>
802
803         * ada-lang.c (ada_value_primitive_packed_val): Make the name
804         of various local variables more explicit and consistent.
805         No real code change otherwise.
806
807 2015-10-09  Simon Marchi  <simon.marchi@ericsson.com>
808
809         * i386-tdep.h (struct gdbarch_tdep): Change type of
810         register_reggroup_p to gdbarch_register_reggroup_p_ftype.
811
812 2015-10-09  Simon Marchi  <simon.marchi@ericsson.com>
813
814         * cris-tdep.c (struct instruction_environment): Change type of
815         byte_order to enum bfd_endian.
816
817 2015-10-09  Simon Marchi  <simon.marchi@ericsson.com>
818
819         * arm-linux-tdep.c (arm_canonicalize_syscall): Add
820         enum gdb_syscall casts.
821
822 2015-10-09  Simon Marchi  <simon.marchi@ericsson.com>
823
824         * aarch64-tdep.c (stack_item_t): Change type of data to gdb_byte*.
825         * arm-tdep.c (struct stack_item): Likewise.
826         (push_stack_item): Add gdb_byte* cast.
827         * avr-tdep.c (struct stack_item): Change type of data to gdb_byte*.
828         (push_stack_item): Add gdb_byte* cast.
829         * cli/cli-dump.c (dump_memory_to_file): Change type of buf to gdb_byte*
830         and add cast.
831         * cris-tdep.c (struct stack_item): Change type of data to gdb_byte*.
832         (push_stack_item): Add gdb_byte* cast.
833         * gcore.c (gcore_copy_callback): Change type of memhunk to gdb_byte* and
834         add cast.
835         * gdbtypes.h (print_scalar_formatted): Change type of first parameter to
836         gdb_byte*.
837         * h8300-tdep.c (h8300_extract_return_value): Change type of valbuf to
838         gdb_byte* and remove unnecessary cast.
839         (h8300h_extract_return_value): Likewise.
840         (h8300_store_return_value): Change type of valbuf to gdb_byte*.
841         (h8300h_store_return_value): Likewise.
842         * iq2000-tdep.c (iq2000_extract_return_value): Change type of valbuf to
843         gdb_byte* and remove unnecessary cast.
844         * jit.c (jit_reader_try_read_symtab): Change type of gdb_mem to gdb_byte*
845         and add cast.
846         * m32r-tdep.c (m32r_store_return_value): Change type of valbuf to
847         gdb_byte* and remove unnecessary cast.
848         (m32r_extract_return_value): Change type of dst to gdb_byte* and remove
849         valbuf.
850         * mep-tdep.c (mep_pseudo_cr32_read): Change type of buf to gdb_byte*.
851         (mep_pseudo_cr64_read): Likewise.
852         (mep_pseudo_csr_write): Likewise.
853         (mep_pseudo_cr32_write): Likewise.
854         (mep_pseudo_cr64_write): Likewise.
855         * mi/mi-main.c (mi_cmd_data_write_memory): Change type of buffer to
856         gdb_byte* and add cast.
857         * moxie-tdep.c (moxie_store_return_value): Change type of valbuf to
858         gdb_byte* and remove unnecessary cast.
859         (moxie_extract_return_value): Change type of dst to gdb_byte* and remove
860         valbuf.
861         * p-valprint.c (print_scalar_formatted): Change type of valaddr to
862         gdb_byte*.
863         * printcmd.c (void): Likewise.
864         * python/py-inferior.c (infpy_read_memory): Change type of buffer to
865         gdb_byte* and add cast.
866         (infpy_write_memory): Likewise.
867         (infpy_search_memory): Likewise.
868         * regcache.c (regcache_raw_write_signed): Change type of buf to gdb_byte*
869         and add cast.
870         (regcache_raw_write_unsigned): Likewise.
871         (regcache_cooked_write_signed): Likewise.
872         (regcache_cooked_write_unsigned): Likewise.
873         * sh64-tdep.c (h64_extract_return_value): Change type of valbuf to
874         gdb_byte*.
875
876 2015-10-09  Simon Marchi  <simon.marchi@ericsson.com>
877
878         * fbsd-tdep.c (fbsd_collect_regset_section_cb): Add cast.
879         * linux-tdep.c (linux_collect_regset_section_cb_data): Likewise.
880
881 2015-10-09  Eli Zaretskii  <eliz@gnu.org>
882
883         * stack.c (print_stack_frame):
884         * utils.c (printchar): Fix typos in commentary.
885
886 2015-10-08  Iain Buclaw  <ibuclaw@gdcproject.org>
887
888         * d-exp.y: (UnaryExpression): Support `type.sizeof' expressions.
889         (PostfixExpression): Support `expr.sizeof' expressions.
890         (PrimaryExpression): Support `typeof(expr)' expressions.
891
892 2015-10-08  Maciej W. Rozycki  <macro@imgtec.com>
893
894         * MAINTAINERS: Update my email address.
895
896 2015-10-08  Markus Metzger  <markus.t.metzger@intel.com>
897
898         * record-btrace.c (record_btrace_resume): Fix void return.
899
900 2015-10-07  Yao Qi  <yao.qi@linaro.org>
901
902         * aarch64-tdep.c: Include opcode/aarch64.h.
903         (submask): Move it above.
904         (bit): Likewise.
905         (bits): Likewise.
906         (aarch64_software_single_step): Call aarch64_decode_insn.
907         Decode instruction by aarch64_inst instead of using
908         aarch64_decode_bcond and decode_masked_match.
909
910 2015-10-06  Pitchumani Sivanupandi  <pitchumani.s@atmel.com>
911
912         * cli/cli-dump.c (restore_command): Parse load_offset (bias) as address
913         only when the file is binary.
914
915 2015-10-02  James Bowman  <james.bowman@ftdichip.com>
916
917         * ft32-tdep.c (ft32_analyze_prologue): Add function prolog
918         subroutine handling.
919
920 2015-10-01  Simon Marchi  <simon.marchi@ericsson.com>
921
922         * common/vec.h (VEC_OP (T,cleanup)): Add pointer cast.
923
924 2015-09-30  Doug Evans  <dje@google.com>
925
926         * dwarf2read.c (setup_type_unit_groups): Add comment.
927
928 2015-09-30  Pedro Alves  <palves@redhat.com>
929
930         * linux-nat.c (linux_nat_always_non_stop_p): Always return 1.
931         * x86-linux-nat.c (x86_linux_always_non_stop_p): Delete.
932         (x86_linux_create_target): Don't install
933         x86_linux_always_non_stop_p.
934
935 2015-09-30  Don Breazeal  <donb@codesourcery.com>
936
937         * remote.c (remote_parse_stop_reply): Call strprefix instead
938         of strncmp.
939
940 2015-09-30  Simon Marchi  <simon.marchi@ericsson.com>
941
942         * gdbarch.sh (struct gdbarch_info): Change tdep_info's type to void *.
943         * gdbarch.h: Regenerate.
944         * i386-tdep.c (i386_gdbarch_init): Remove cast to
945         struct gdbarch_tdep_info *.
946         * mips-tdep.c (mips_gdbarch_init): Likewise.
947         * ppc-linux-tdep (ppu2spu_sniffer): Likewise.
948         * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
949         * spu-multiarch.c (spu_gdbarch): Likewise.
950
951 2015-09-30  Kevin Buettner  <kevinb@redhat.com>
952
953         * infcmd.c (finish_command_fsm_should_stop): Don't attempt to
954         record a NULL value.
955
956 2015-09-29  Kevin Buettner  <kevinb@redhat.com>
957
958         * msp430-tdep.c (msp430_push_dummy_call): Treat reference, struct,
959         and union arguments the same as pointer arguments when determining
960         size of argument.
961
962 2015-09-29  James Bowman  <james.bowman@ftdichip.com>
963
964         * ft32-tdep.c: #include "opcode/ft32.h".
965         Delete local macros IS_PUSH, PUSH_REG, IS_LINK, LINK_SIZE.
966         (ft32_analyze_prologue): Use FT32_* macros.
967
968 2015-09-28  Simon Marchi  <simon.marchi@ericsson.com>
969
970         * cli/cli-script.c (read_next_line): Fix stdout -> stdin in
971         comment.
972
973 2015-09-28  Doug Evans  <dje@google.com>
974
975         * MAINTAINERS: Add Iain Buclaw as D language maintainer.
976
977 2015-09-28  Doug Evans  <dje@google.com>
978
979         * common/filestuff.c (make_cleanup_close): Update comment.
980
981 2015-09-26  Simon Marchi  <simon.marchi@polymtl.ca>
982
983         * btrace.c (parse_xml_btrace_block): Fix cast of
984         xml_find_attribute's return value.
985         * memory-map.c (memory_map_start_memory): Likewise.
986         * solib-svr4.c (library_list_start_library): Likewise.
987         * solib-target.c (library_list_start_segment): Likewise.
988         (library_list_start_section): Likewise.
989         * tracepoint.c (traceframe_info_start_memory): Likewise.
990
991 2015-09-26  Iain Buclaw  <ibuclaw@gdcproject.org>
992
993         * d-namespace.c (d_lookup_symbol): New arg langdef.
994         All callers updated.  Support looking up symbol as a primitive type.
995         (lookup_module_scope): New arg langdef.  All callers updated.
996         Call d_lookup_symbol directly for simple bare symbols.
997
998 2015-09-25  Simon Marchi  <simon.marchi@ericsson.com>
999
1000         * macrocmd.c (print_macro_callback): Add cast(s).
1001         * macrotab.c (macro_bcache_str): Likewise.
1002         (new_macro_definition): Likewise.
1003         * main.c (captured_main): Likewise.
1004         * maint.c (print_bfd_section_info): Likewise.
1005         * mdebugread.c (mdebug_build_psymtabs): Likewise.
1006         (basic_type): Likewise.
1007         * memattr.c (mem_region_cmp): Likewise.
1008         * memory-map.c (memory_map_start_memory): Likewise.
1009         (memory_map_end_memory): Likewise.
1010         (memory_map_start_property): Likewise.
1011         (memory_map_end_property): Likewise.
1012         (clear_result): Likewise.
1013         * memrange.c (compare_mem_ranges): Likewise.
1014         * mep-tdep.c (mep_analyze_frame_prologue): Likewise.
1015         * mi/mi-cmd-var.c (mi_cmd_var_update_iter): Likewise.
1016         * mi/mi-console.c (mi_console_file_delete): Likewise.
1017         (mi_console_file_fputs): Likewise.
1018         (mi_console_raw_packet): Likewise.
1019         (mi_console_file_flush): Likewise.
1020         (mi_console_set_raw): Likewise.
1021         * mi/mi-interp.c (mi_interpreter_resume): Likewise.
1022         (mi_new_thread): Likewise.
1023         (mi_thread_exit): Likewise.
1024         (mi_record_changed): Likewise.
1025         (mi_inferior_added): Likewise.
1026         (mi_inferior_appeared): Likewise.
1027         (mi_inferior_exit): Likewise.
1028         (mi_inferior_removed): Likewise.
1029         (mi_interp_data): Likewise.
1030         (mi_on_normal_stop): Likewise.
1031         (mi_traceframe_changed): Likewise.
1032         (mi_tsv_created): Likewise.
1033         (mi_tsv_deleted): Likewise.
1034         (mi_tsv_modified): Likewise.
1035         (mi_breakpoint_created): Likewise.
1036         (mi_breakpoint_deleted): Likewise.
1037         (mi_breakpoint_modified): Likewise.
1038         (mi_output_running_pid): Likewise.
1039         (mi_inferior_count): Likewise.
1040         (mi_solib_loaded): Likewise.
1041         (mi_solib_unloaded): Likewise.
1042         (mi_command_param_changed): Likewise.
1043         (mi_memory_changed): Likewise.
1044         (report_initial_inferior): Likewise.
1045         (mi_ui_out): Likewise.
1046         (mi_set_logging): Likewise.
1047         * mi/mi-main.c (collect_cores): Likewise.
1048         (print_one_inferior): Likewise.
1049         (free_vector_of_ints): Likewise.
1050         (free_splay_tree): Likewise.
1051         (mi_execute_command): Likewise.
1052         * mi/mi-out.c (mi_table_body): Likewise.
1053         (mi_table_end): Likewise.
1054         (mi_table_header): Likewise.
1055         (mi_begin): Likewise.
1056         (mi_end): Likewise.
1057         (mi_field_int): Likewise.
1058         (mi_field_string): Likewise.
1059         (mi_field_fmt): Likewise.
1060         (mi_flush): Likewise.
1061         (mi_redirect): Likewise.
1062         (field_separator): Likewise.
1063         (mi_open): Likewise.
1064         (mi_close): Likewise.
1065         (mi_out_buffered): Likewise.
1066         (mi_out_rewind): Likewise.
1067         (mi_out_put): Likewise.
1068         (mi_version): Likewise.
1069         (mi_out_data_dtor): Likewise.
1070         * mi/mi-parse.c (mi_parse_cleanup): Likewise.
1071         * microblaze-tdep.c (microblaze_frame_cache): Likewise.
1072         * minidebug.c (lzma_open): Likewise.
1073         (lzma_pread): Likewise.
1074         (lzma_close): Likewise.
1075         (lzma_stat): Likewise.
1076         * mips-linux-tdep.c (mips_linux_init_abi): Likewise.
1077         * mips-sde-tdep.c (mips_sde_frame_cache): Likewise.
1078         (mips_sde_elf_osabi_sniff_abi_tag_sections): Likewise.
1079         * mips-tdep.c (mips_insn16_frame_cache): Likewise.
1080         (mips_micro_frame_cache): Likewise.
1081         (mips_insn32_frame_cache): Likewise.
1082         (mips_stub_frame_cache): Likewise.
1083         (gdb_print_insn_mips): Likewise.
1084         (value_of_mips_user_reg): Likewise.
1085         (mips_gdbarch_init): Likewise.
1086         * mips64obsd-tdep.c (mips64obsd_supply_gregset): Likewise.
1087         * mipsnbsd-tdep.c (mipsnbsd_supply_fpregset): Likewise.
1088         (mipsnbsd_supply_gregset): Likewise.
1089         * mn10300-linux-tdep.c (am33_supply_fpregset_method): Likewise.
1090         (am33_collect_gregset_method): Likewise.
1091         (am33_collect_fpregset_method): Likewise.
1092         * mn10300-tdep.c (mn10300_analyze_frame_prologue): Likewise.
1093         * moxie-tdep.c (moxie_frame_cache): Likewise.
1094         * msp430-tdep.c (msp430_get_opcode_byte): Likewise.
1095         (msp430_analyze_frame_prologue): Likewise.
1096         * mt-tdep.c (mt_frame_unwind_cache): Likewise.
1097         * nios2-linux-tdep.c (nios2_supply_gregset): Likewise.
1098         (nios2_collect_gregset): Likewise.
1099         * nios2-tdep.c (nios2_frame_unwind_cache): Likewise.
1100         (nios2_stub_frame_cache): Likewise.
1101         * objc-lang.c (find_methods): Likewise.
1102         * objfiles.c (objfiles_pspace_data_cleanup): Likewise.
1103         (get_objfile_pspace_data): Likewise.
1104         (get_objfile_bfd_data): Likewise.
1105         (objfile_bfd_data_free): Likewise.
1106         (add_to_objfile_sections): Likewise.
1107         (do_free_objfile_cleanup): Likewise.
1108         (resume_section_map_updates_cleanup): Likewise.
1109         * opencl-lang.c (builtin_opencl_type): Likewise.
1110         * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Likewise.
1111         * osdata.c (osdata_start_osdata): Likewise.
1112         (osdata_start_item): Likewise.
1113         (osdata_start_column): Likewise.
1114         (osdata_end_column): Likewise.
1115         (clear_parsing_data): Likewise.
1116         (osdata_free_cleanup): Likewise.
1117         * parse.c (type_stack_cleanup): Likewise.
1118         (exp_uses_objfile_iter): Likewise.
1119         * ppc-linux-tdep.c (ppc_linux_supply_gregset): Likewise.
1120         (ppc_linux_collect_gregset): Likewise.
1121         (ppu2spu_prev_arch): Likewise.
1122         (ppu2spu_this_id): Likewise.
1123         (ppu2spu_prev_register): Likewise.
1124         (ppu2spu_unwind_register): Likewise.
1125         (ppu2spu_sniffer): Likewise.
1126         (ppu2spu_dealloc_cache): Likewise.
1127         (ppc_linux_init_abi): Likewise.
1128         * ppcfbsd-tdep.c (ppcfbsd_sigtramp_frame_cache): Likewise.
1129         * ppcobsd-tdep.c (ppcobsd_sigtramp_frame_cache): Likewise.
1130         * progspace.c (restore_program_space): Likewise.
1131         * psymtab.c (find_pc_sect_psymtab): Likewise.
1132         (compare_psymbols): Likewise.
1133         (psymbol_bcache_full): Likewise.
1134         (allocate_psymtab): Likewise.
1135         (discard_psymtabs_upto): Likewise.
1136         * python/py-block.c (set_block): Likewise.
1137         (del_objfile_blocks): Likewise.
1138         * python/py-breakpoint.c (build_bp_list): Likewise.
1139         * python/py-inferior.c (inferior_to_inferior_object): Likewise.
1140         (build_inferior_list): Likewise.
1141         (py_free_inferior): Likewise.
1142         * python/py-objfile.c (py_free_objfile): Likewise.
1143         (objfile_to_objfile_object): Likewise.
1144         * python/py-prettyprint.c (py_restore_tstate): Likewise.
1145         * python/py-progspace.c (py_free_pspace): Likewise.
1146         (pspace_to_pspace_object): Likewise.
1147         * python/py-symbol.c (set_symbol): Likewise.
1148         (del_objfile_symbols): Likewise.
1149         * python/py-symtab.c (set_sal): Likewise.
1150         (set_symtab): Likewise.
1151         (del_objfile_symtab): Likewise.
1152         (del_objfile_sal): Likewise.
1153         * python/py-type.c (save_objfile_types): Likewise.
1154         (set_type): Likewise.
1155         * python/py-unwind.c (pyuw_prev_register): Likewise.
1156         (pyuw_on_new_gdbarch): Likewise.
1157         * python/py-utils.c (py_decref): Likewise.
1158         (py_xdecref): Likewise.
1159         (gdb_py_generic_dict): Likewise.
1160         * python/py-xmethods.c (gdbpy_free_xmethod_worker_data): Likewise.
1161         (gdbpy_clone_xmethod_worker_data): Likewise.
1162         (gdbpy_get_xmethod_arg_types): Likewise.
1163         (gdbpy_get_xmethod_result_type): Likewise.
1164         (gdbpy_invoke_xmethod): Likewise.
1165         * python/python.c (gdbpy_apply_type_printers): Likewise.
1166         (gdbpy_free_type_printers): Likewise.
1167         * record-btrace.c (record_btrace_disable_callback): Likewise.
1168         (bfcache_hash): Likewise.
1169         (bfcache_eq): Likewise.
1170         (btrace_get_frame_function): Likewise.
1171         (record_btrace_frame_unwind_stop_reason): Likewise.
1172         (record_btrace_frame_this_id): Likewise.
1173         (record_btrace_frame_prev_register): Likewise.
1174         (record_btrace_frame_dealloc_cache): Likewise.
1175         * record-full.c (record_full_message_wrapper): Likewise.
1176         (record_full_save_cleanups): Likewise.
1177         * regcache.c (regcache_descr): Likewise.
1178         (do_regcache_xfree): Likewise.
1179         (do_regcache_invalidate): Likewise.
1180         (do_cooked_read): Likewise.
1181         (regcache_transfer_regset): Likewise.
1182         * reggroups.c (reggroup_add): Likewise.
1183         (reggroup_next): Likewise.
1184         (reggroup_prev): Likewise.
1185         * remote-fileio.c (do_remote_fileio_request): Likewise.
1186         * remote-notif.c (remote_async_get_pending_events_handler): Likewise.
1187         (do_notif_event_xfree): Likewise.
1188         * remote.c (get_remote_arch_state): Likewise.
1189         (remote_pspace_data_cleanup): Likewise.
1190         (get_remote_exec_file): Likewise.
1191         (set_pspace_remote_exec_file): Likewise.
1192         (compare_pnums): Likewise.
1193         (clear_threads_listing_context): Likewise.
1194         (remote_newthread_step): Likewise.
1195         (start_thread): Likewise.
1196         (end_thread): Likewise.
1197         (remove_child_of_pending_fork): Likewise.
1198         (remove_stop_reply_for_inferior): Likewise.
1199         (remove_stop_reply_of_remote_state): Likewise.
1200         (remote_notif_remove_once_on_match): Likewise.
1201         (stop_reply_match_ptid_and_ws): Likewise.
1202         (kill_child_of_pending_fork): Likewise.
1203         (register_remote_g_packet_guess): Likewise.
1204         (remote_read_description_p): Likewise.
1205         (remote_read_description): Likewise.
1206         (free_actions_list_cleanup_wrapper): Likewise.
1207         (remote_async_serial_handler): Likewise.
1208         * rl78-tdep.c (rl78_get_opcode_byte): Likewise.
1209         (rl78_analyze_frame_prologue): Likewise.
1210         * rs6000-tdep.c (ppc_supply_gregset): Likewise.
1211         (ppc_supply_fpregset): Likewise.
1212         (ppc_supply_vsxregset): Likewise.
1213         (ppc_supply_vrregset): Likewise.
1214         (ppc_collect_gregset): Likewise.
1215         (ppc_collect_fpregset): Likewise.
1216         (ppc_collect_vsxregset): Likewise.
1217         (ppc_collect_vrregset): Likewise.
1218         (e500_move_ev_register): Likewise.
1219         (do_regcache_raw_write): Likewise.
1220         (rs6000_frame_cache): Likewise.
1221         (rs6000_epilogue_frame_cache): Likewise.
1222         (rs6000_gdbarch_init): Likewise.
1223         * rx-tdep.c (rx_get_opcode_byte): Likewise.
1224         (rx_analyze_frame_prologue): Likewise.
1225         (rx_frame_type): Likewise.
1226         (rx_frame_sniffer_common): Likewise.
1227         * s390-linux-tdep.c (s390_check_for_saved): Likewise.
1228         (s390_frame_unwind_cache): Likewise.
1229         (s390_stub_frame_unwind_cache): Likewise.
1230         (s390_sigtramp_frame_unwind_cache): Likewise.
1231         * score-tdep.c (score_make_prologue_cache): Likewise.
1232         * sentinel-frame.c (sentinel_frame_prev_register): Likewise.
1233         (sentinel_frame_prev_arch): Likewise.
1234         * ser-base.c (fd_event): Likewise.
1235         (push_event): Likewise.
1236         (ser_base_write): Likewise.
1237         * ser-pipe.c (pipe_close): Likewise.
1238         * serial.c (serial_write): Likewise.
1239         * sh-tdep.c (sh_frame_cache): Likewise.
1240         (sh_stub_this_id): Likewise.
1241         * sh64-tdep.c (sh64_frame_cache): Likewise.
1242         * solib-aix.c (get_solib_aix_inferior_data): Likewise.
1243         (library_list_start_library): Likewise.
1244         (library_list_start_list): Likewise.
1245         (solib_aix_free_library_list): Likewise.
1246         * solib-darwin.c (get_darwin_info): Likewise.
1247         * solib-dsbt.c (get_dsbt_info): Likewise.
1248         * solib-spu.c (append_ocl_sos): Likewise.
1249         * solib-svr4.c (svr4_pspace_data_cleanup): Likewise.
1250         (get_svr4_info): Likewise.
1251         (library_list_start_library): Likewise.
1252         (svr4_library_list_start_list): Likewise.
1253         (hash_probe_and_action): Likewise.
1254         (equal_probe_and_action): Likewise.
1255         (svr4_update_solib_event_breakpoint): Likewise.
1256         (set_solib_svr4_fetch_link_map_offsets): Likewise.
1257         (svr4_fetch_link_map_offsets): Likewise.
1258         (svr4_have_link_map_offsets): Likewise.
1259         * solib-target.c (library_list_start_segment): Likewise.
1260         (library_list_start_section): Likewise.
1261         (library_list_start_library): Likewise.
1262         (library_list_end_library): Likewise.
1263         (library_list_start_list): Likewise.
1264         (solib_target_free_library_list): Likewise.
1265         * solib.c (solib_ops): Likewise.
1266         (set_solib_ops): Likewise.
1267         * sparc-sol2-tdep.c (sparc32_sol2_sigtramp_frame_cache): Likewise.
1268         * sparc-tdep.c (sparc_frame_cache): Likewise.
1269         (sparc32_frame_cache): Likewise.
1270         (sparc32_supply_gregset): Likewise.
1271         (sparc32_collect_gregset): Likewise.
1272         (sparc32_supply_fpregset): Likewise.
1273         (sparc32_collect_fpregset): Likewise.
1274         * sparc64-sol2-tdep.c (sparc64_sol2_sigtramp_frame_cache): Likewise.
1275         * sparc64-tdep.c (sparc64_supply_gregset): Likewise.
1276         (sparc64_collect_gregset): Likewise.
1277         (sparc64_supply_fpregset): Likewise.
1278         (sparc64_collect_fpregset): Likewise.
1279         * sparc64fbsd-tdep.c (sparc64fbsd_sigtramp_frame_cache): Likewise.
1280         * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_frame_cache): Likewise.
1281         * sparc64obsd-tdep.c (sparc64obsd_frame_cache): Likewise.
1282         (sparc64obsd_trapframe_cache): Likewise.
1283         * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_frame_cache): Likewise.
1284         * sparcobsd-tdep.c (sparc32obsd_sigtramp_frame_cache): Likewise.
1285         * spu-multiarch.c (spu_gdbarch): Likewise.
1286         * spu-tdep.c (spu_frame_unwind_cache): Likewise.
1287         (spu2ppu_prev_arch): Likewise.
1288         (spu2ppu_this_id): Likewise.
1289         (spu2ppu_prev_register): Likewise.
1290         (spu2ppu_dealloc_cache): Likewise.
1291         (spu_dis_asm_print_address): Likewise.
1292         (gdb_print_insn_spu): Likewise.
1293         (spu_get_overlay_table): Likewise.
1294         * stabsread.c (rs6000_builtin_type): Likewise.
1295         * stack.c (do_print_variable_and_value): Likewise.
1296         * stap-probe.c (get_stap_base_address_1): Likewise.
1297         * symfile-debug.c (debug_qf_has_symbols): Likewise.
1298         (debug_qf_find_last_source_symtab): Likewise.
1299         (debug_qf_forget_cached_source_info): Likewise.
1300         (debug_qf_map_symtabs_matching_filename): Likewise.
1301         (debug_qf_lookup_symbol): Likewise.
1302         (debug_qf_print_stats): Likewise.
1303         (debug_qf_dump): Likewise.
1304         (debug_qf_relocate): Likewise.
1305         (debug_qf_expand_symtabs_for_function): Likewise.
1306         (debug_qf_expand_all_symtabs): Likewise.
1307         (debug_qf_expand_symtabs_with_fullname): Likewise.
1308         (debug_qf_map_matching_symbols): Likewise.
1309         (debug_qf_expand_symtabs_matching): Likewise.
1310         (debug_qf_find_pc_sect_compunit_symtab): Likewise.
1311         (debug_qf_map_symbol_filenames): Likewise.
1312         (debug_sym_get_probes): Likewise.
1313         (debug_sym_new_init): Likewise.
1314         (debug_sym_init): Likewise.
1315         (debug_sym_read): Likewise.
1316         (debug_sym_read_psymbols): Likewise.
1317         (debug_sym_finish): Likewise.
1318         (debug_sym_offsets): Likewise.
1319         (debug_sym_read_linetable): Likewise.
1320         (debug_sym_relocate): Likewise.
1321         (uninstall_symfile_debug_logging): Likewise.
1322         * symfile-mem.c (symbol_file_add_from_memory_wrapper): Likewise.
1323         * symfile.c (place_section): Likewise.
1324         (add_section_size_callback): Likewise.
1325         (load_progress): Likewise.
1326         (load_section_callback): Likewise.
1327         (clear_memory_write_data): Likewise.
1328         (allocate_symtab): Likewise.
1329         * symmisc.c (maintenance_expand_file_matcher): Likewise.
1330         * symtab.c (lookup_symtab_callback): Likewise.
1331         (hash_demangled_name_entry): Likewise.
1332         (eq_demangled_name_entry): Likewise.
1333         (get_symbol_cache): Likewise.
1334         (symbol_cache_cleanup): Likewise.
1335         (set_symbol_cache_size): Likewise.
1336         (symbol_cache_flush): Likewise.
1337         (maintenance_print_symbol_cache): Likewise.
1338         (maintenance_print_symbol_cache_statistics): Likewise.
1339         (delete_filename_seen_cache): Likewise.
1340         (output_partial_symbol_filename): Likewise.
1341         (search_symbols_file_matches): Likewise.
1342         (search_symbols_name_matches): Likewise.
1343         (do_free_completion_list): Likewise.
1344         (maybe_add_partial_symtab_filename): Likewise.
1345         (get_main_info): Likewise.
1346         (main_info_cleanup): Likewise.
1347         * target-dcache.c (target_dcache_cleanup): Likewise.
1348         (target_dcache_init_p): Likewise.
1349         (target_dcache_invalidate): Likewise.
1350         (target_dcache_get): Likewise.
1351         (target_dcache_get_or_init): Likewise.
1352         * target-descriptions.c (target_find_description): Likewise.
1353         (tdesc_find_type): Likewise.
1354         (tdesc_data_cleanup): Likewise.
1355         (tdesc_find_arch_register): Likewise.
1356         (tdesc_register_name): Likewise.
1357         (tdesc_register_type): Likewise.
1358         (tdesc_register_reggroup_p): Likewise.
1359         (set_tdesc_pseudo_register_name): Likewise.
1360         (set_tdesc_pseudo_register_type): Likewise.
1361         (set_tdesc_pseudo_register_reggroup_p): Likewise.
1362         (tdesc_use_registers): Likewise.
1363         (free_target_description): Likewise.
1364         * target-memory.c (compare_block_starting_address): Likewise.
1365         (cleanup_request_data): Likewise.
1366         (cleanup_write_requests_vector): Likewise.
1367         * target.c (open_target): Likewise.
1368         (cleanup_restore_target_terminal): Likewise.
1369         (free_memory_read_result_vector): Likewise.
1370         * thread.c (disable_thread_stack_temporaries): Likewise.
1371         (finish_thread_state_cleanup): Likewise.
1372         (do_restore_current_thread_cleanup): Likewise.
1373         (restore_current_thread_cleanup_dtor): Likewise.
1374         (set_thread_refcount): Likewise.
1375         (tp_array_compar): Likewise.
1376         (do_captured_thread_select): Likewise.
1377         * tic6x-tdep.c (tic6x_frame_unwind_cache): Likewise.
1378         (tic6x_stub_this_id): Likewise.
1379         * tilegx-tdep.c (tilegx_frame_cache): Likewise.
1380         * top.c (do_restore_instream_cleanup): Likewise.
1381         (gdb_readline_wrapper_cleanup): Likewise.
1382         (kill_or_detach): Likewise.
1383         (print_inferior_quit_action): Likewise.
1384         * tracefile-tfile.c (match_blocktype): Likewise.
1385         (build_traceframe_info): Likewise.
1386         * tracefile.c (trace_file_writer_xfree): Likewise.
1387         * tracepoint.c (memrange_cmp): Likewise.
1388         (do_collect_symbol): Likewise.
1389         (do_clear_collection_list): Likewise.
1390         (do_restore_current_traceframe_cleanup): Likewise.
1391         (restore_current_traceframe_cleanup_dtor): Likewise.
1392         (free_current_marker): Likewise.
1393         (traceframe_info_start_memory): Likewise.
1394         (traceframe_info_start_tvar): Likewise.
1395         (free_result): Likewise.
1396         * tramp-frame.c (tramp_frame_cache): Likewise.
1397         * tui/tui-file.c (tui_file_delete): Likewise.
1398         (tui_fileopen): Likewise.
1399         (tui_sfileopen): Likewise.
1400         (tui_file_isatty): Likewise.
1401         (tui_file_rewind): Likewise.
1402         (tui_file_put): Likewise.
1403         (tui_file_fputs): Likewise.
1404         (tui_file_get_strbuf): Likewise.
1405         (tui_file_adjust_strbuf): Likewise.
1406         (tui_file_flush): Likewise.
1407         * tui/tui-layout.c (make_command_window): Likewise.
1408         (make_data_window): Likewise.
1409         (show_source_disasm_command): Likewise.
1410         (show_data): Likewise.
1411         (make_source_or_disasm_window): Likewise.
1412         (show_source_or_disasm_and_command): Likewise.
1413         * tui/tui-out.c (tui_field_int): Likewise.
1414         (tui_field_string): Likewise.
1415         (tui_field_fmt): Likewise.
1416         (tui_text): Likewise.
1417         * typeprint.c (hash_typedef_field): Likewise.
1418         (eq_typedef_field): Likewise.
1419         (do_free_typedef_hash): Likewise.
1420         (copy_typedef_hash_element): Likewise.
1421         (do_free_global_table): Likewise.
1422         (find_global_typedef): Likewise.
1423         (find_typedef_in_hash): Likewise.
1424         * ui-file.c (ui_file_write_for_put): Likewise.
1425         (do_ui_file_xstrdup): Likewise.
1426         (mem_file_delete): Likewise.
1427         (mem_file_rewind): Likewise.
1428         (mem_file_put): Likewise.
1429         (mem_file_write): Likewise.
1430         (stdio_file_delete): Likewise.
1431         (stdio_file_flush): Likewise.
1432         (stdio_file_read): Likewise.
1433         (stdio_file_write): Likewise.
1434         (stdio_file_write_async_safe): Likewise.
1435         (stdio_file_fputs): Likewise.
1436         (stdio_file_isatty): Likewise.
1437         (stdio_file_fseek): Likewise.
1438         (tee_file_delete): Likewise.
1439         (tee_file_flush): Likewise.
1440         (tee_file_write): Likewise.
1441         (tee_file_fputs): Likewise.
1442         (tee_file_isatty): Likewise.
1443         * ui-out.c (do_cleanup_table_end): Likewise.
1444         (do_cleanup_end): Likewise.
1445         * user-regs.c (user_reg_add): Likewise.
1446         (user_reg_map_name_to_regnum): Likewise.
1447         (usernum_to_user_reg): Likewise.
1448         (maintenance_print_user_registers): Likewise.
1449         * utils.c (do_bfd_close_cleanup): Likewise.
1450         (do_fclose_cleanup): Likewise.
1451         (do_obstack_free): Likewise.
1452         (do_ui_file_delete): Likewise.
1453         (do_ui_out_redirect_pop): Likewise.
1454         (do_free_section_addr_info): Likewise.
1455         (restore_integer): Likewise.
1456         (do_unpush_target): Likewise.
1457         (do_htab_delete_cleanup): Likewise.
1458         (do_restore_ui_file): Likewise.
1459         (do_value_free): Likewise.
1460         (do_free_so): Likewise.
1461         (free_current_contents): Likewise.
1462         (do_regfree_cleanup): Likewise.
1463         (core_addr_hash): Likewise.
1464         (core_addr_eq): Likewise.
1465         (do_free_char_ptr_vec): Likewise.
1466         * v850-tdep.c (v850_frame_cache): Likewise.
1467         * varobj.c (do_free_variable_cleanup): Likewise.
1468         * vax-tdep.c (vax_supply_gregset): Likewise.
1469         (vax_frame_cache): Likewise.
1470         * vaxobsd-tdep.c (vaxobsd_sigtramp_frame_cache): Likewise.
1471         * xml-support.c (gdb_xml_body_text): Likewise.
1472         (gdb_xml_values_cleanup): Likewise.
1473         (gdb_xml_start_element): Likewise.
1474         (gdb_xml_start_element_wrapper): Likewise.
1475         (gdb_xml_end_element): Likewise.
1476         (gdb_xml_end_element_wrapper): Likewise.
1477         (gdb_xml_cleanup): Likewise.
1478         (gdb_xml_fetch_external_entity): Likewise.
1479         (gdb_xml_parse_attr_enum): Likewise.
1480         (xinclude_start_include): Likewise.
1481         (xinclude_end_include): Likewise.
1482         (xml_xinclude_default): Likewise.
1483         (xml_xinclude_start_doctype): Likewise.
1484         (xml_xinclude_end_doctype): Likewise.
1485         (xml_xinclude_cleanup): Likewise.
1486         (xml_fetch_content_from_file): Likewise.
1487         * xml-syscall.c (free_syscalls_info): Likewise.
1488         (syscall_start_syscall): Likewise.
1489         * xml-tdesc.c (tdesc_end_arch): Likewise.
1490         (tdesc_end_osabi): Likewise.
1491         (tdesc_end_compatible): Likewise.
1492         (tdesc_start_target): Likewise.
1493         (tdesc_start_feature): Likewise.
1494         (tdesc_start_reg): Likewise.
1495         (tdesc_start_union): Likewise.
1496         (tdesc_start_struct): Likewise.
1497         (tdesc_start_flags): Likewise.
1498         (tdesc_start_field): Likewise.
1499         (tdesc_start_vector): Likewise.
1500         (fetch_available_features_from_target): Likewise.
1501         * xstormy16-tdep.c (xstormy16_frame_cache): Likewise.
1502         * xtensa-tdep.c (xtensa_supply_gregset): Likewise.
1503         (xtensa_frame_cache): Likewise.
1504         (xtensa_frame_prev_register): Likewise.
1505         (xtensa_extract_return_value): Likewise.
1506
1507 2015-09-25  Simon Marchi  <simon.marchi@ericsson.com>
1508
1509         * aarch64-tdep.c (aarch64_make_prologue_cache): Add cast(s).
1510         (aarch64_make_stub_cache): Likewise.
1511         (value_of_aarch64_user_reg): Likewise.
1512         * ada-lang.c (ada_inferior_data_cleanup): Likewise.
1513         (get_ada_inferior_data): Likewise.
1514         (get_ada_pspace_data): Likewise.
1515         (ada_pspace_data_cleanup): Likewise.
1516         (ada_complete_symbol_matcher): Likewise.
1517         (ada_exc_search_name_matches): Likewise.
1518         * ada-tasks.c (get_ada_tasks_pspace_data): Likewise.
1519         (get_ada_tasks_inferior_data): Likewise.
1520         * addrmap.c (addrmap_mutable_foreach_worker): Likewise.
1521         (splay_obstack_alloc): Likewise.
1522         (splay_obstack_free): Likewise.
1523         * alpha-linux-tdep.c (alpha_linux_supply_gregset): Likewise.
1524         (alpha_linux_collect_gregset): Likewise.
1525         (alpha_linux_supply_fpregset): Likewise.
1526         (alpha_linux_collect_fpregset): Likewise.
1527         * alpha-mdebug-tdep.c (alpha_mdebug_frame_unwind_cache): Likewise.
1528         * alpha-tdep.c (alpha_lds): Likewise.
1529         (alpha_sts): Likewise.
1530         (alpha_sigtramp_frame_unwind_cache): Likewise.
1531         (alpha_heuristic_frame_unwind_cache): Likewise.
1532         (alpha_supply_int_regs): Likewise.
1533         (alpha_fill_int_regs): Likewise.
1534         (alpha_supply_fp_regs): Likewise.
1535         (alpha_fill_fp_regs): Likewise.
1536         * alphanbsd-tdep.c (alphanbsd_supply_fpregset): Likewise.
1537         (alphanbsd_aout_supply_gregset): Likewise.
1538         (alphanbsd_supply_gregset): Likewise.
1539         * amd64-linux-tdep.c (amd64_linux_init_abi): Likewise.
1540         (amd64_x32_linux_init_abi): Likewise.
1541         * amd64-nat.c (amd64_supply_native_gregset): Likewise.
1542         (amd64_collect_native_gregset): Likewise.
1543         * amd64-tdep.c (amd64_frame_cache): Likewise.
1544         (amd64_sigtramp_frame_cache): Likewise.
1545         (amd64_epilogue_frame_cache): Likewise.
1546         (amd64_supply_fxsave): Likewise.
1547         (amd64_supply_xsave): Likewise.
1548         (amd64_collect_fxsave): Likewise.
1549         (amd64_collect_xsave): Likewise.
1550         * amd64-windows-tdep.c (amd64_windows_frame_cache): Likewise.
1551         * amd64obsd-tdep.c (amd64obsd_trapframe_cache): Likewise.
1552         * arm-linux-tdep.c (arm_linux_supply_gregset): Likewise.
1553         (arm_linux_collect_gregset): Likewise.
1554         (arm_linux_supply_nwfpe): Likewise.
1555         (arm_linux_collect_nwfpe): Likewise.
1556         (arm_linux_supply_vfp): Likewise.
1557         (arm_linux_collect_vfp): Likewise.
1558         * arm-tdep.c (arm_find_mapping_symbol): Likewise.
1559         (arm_prologue_unwind_stop_reason): Likewise.
1560         (arm_prologue_this_id): Likewise.
1561         (arm_prologue_prev_register): Likewise.
1562         (arm_exidx_data_free): Likewise.
1563         (arm_find_exidx_entry): Likewise.
1564         (arm_stub_this_id): Likewise.
1565         (arm_m_exception_this_id): Likewise.
1566         (arm_m_exception_prev_register): Likewise.
1567         (arm_normal_frame_base): Likewise.
1568         (gdb_print_insn_arm): Likewise.
1569         (arm_objfile_data_free): Likewise.
1570         (arm_record_special_symbol): Likewise.
1571         (value_of_arm_user_reg): Likewise.
1572         * armbsd-tdep.c (armbsd_supply_fpregset): Likewise.
1573         (armbsd_supply_gregset): Likewise.
1574         * auto-load.c (auto_load_pspace_data_cleanup): Likewise.
1575         (get_auto_load_pspace_data): Likewise.
1576         (hash_loaded_script_entry): Likewise.
1577         (eq_loaded_script_entry): Likewise.
1578         (clear_section_scripts): Likewise.
1579         (collect_matching_scripts): Likewise.
1580         * auxv.c (auxv_inferior_data_cleanup): Likewise.
1581         (get_auxv_inferior_data): Likewise.
1582         * avr-tdep.c (avr_frame_unwind_cache): Likewise.
1583         * ax-general.c (do_free_agent_expr_cleanup): Likewise.
1584         * bfd-target.c (target_bfd_xfer_partial): Likewise.
1585         (target_bfd_xclose): Likewise.
1586         (target_bfd_get_section_table): Likewise.
1587         * bfin-tdep.c (bfin_frame_cache): Likewise.
1588         * block.c (find_block_in_blockvector): Likewise.
1589         (call_site_for_pc): Likewise.
1590         (block_find_non_opaque_type_preferred): Likewise.
1591         * break-catch-sig.c (signal_catchpoint_insert_location): Likewise.
1592         (signal_catchpoint_remove_location): Likewise.
1593         (signal_catchpoint_breakpoint_hit): Likewise.
1594         (signal_catchpoint_print_one): Likewise.
1595         (signal_catchpoint_print_mention): Likewise.
1596         (signal_catchpoint_print_recreate): Likewise.
1597         * break-catch-syscall.c (get_catch_syscall_inferior_data): Likewise.
1598         * breakpoint.c (do_cleanup_counted_command_line): Likewise.
1599         (bp_location_compare_addrs): Likewise.
1600         (get_first_locp_gte_addr): Likewise.
1601         (check_tracepoint_command): Likewise.
1602         (do_map_commands_command): Likewise.
1603         (get_breakpoint_objfile_data): Likewise.
1604         (free_breakpoint_probes): Likewise.
1605         (do_captured_breakpoint_query): Likewise.
1606         (compare_breakpoints): Likewise.
1607         (bp_location_compare): Likewise.
1608         (bpstat_remove_breakpoint_callback): Likewise.
1609         (do_delete_breakpoint_cleanup): Likewise.
1610         * bsd-uthread.c (bsd_uthread_set_supply_uthread): Likewise.
1611         (bsd_uthread_set_collect_uthread): Likewise.
1612         (bsd_uthread_activate): Likewise.
1613         (bsd_uthread_fetch_registers): Likewise.
1614         (bsd_uthread_store_registers): Likewise.
1615         * btrace.c (check_xml_btrace_version): Likewise.
1616         (parse_xml_btrace_block): Likewise.
1617         (parse_xml_btrace_pt_config_cpu): Likewise.
1618         (parse_xml_btrace_pt_raw): Likewise.
1619         (parse_xml_btrace_pt): Likewise.
1620         (parse_xml_btrace_conf_bts): Likewise.
1621         (parse_xml_btrace_conf_pt): Likewise.
1622         (do_btrace_data_cleanup): Likewise.
1623         * c-typeprint.c (find_typedef_for_canonicalize): Likewise.
1624         * charset.c (cleanup_iconv): Likewise.
1625         (do_cleanup_iterator): Likewise.
1626         * cli-out.c (cli_uiout_dtor): Likewise.
1627         (cli_table_begin): Likewise.
1628         (cli_table_body): Likewise.
1629         (cli_table_end): Likewise.
1630         (cli_table_header): Likewise.
1631         (cli_begin): Likewise.
1632         (cli_end): Likewise.
1633         (cli_field_int): Likewise.
1634         (cli_field_skip): Likewise.
1635         (cli_field_string): Likewise.
1636         (cli_field_fmt): Likewise.
1637         (cli_spaces): Likewise.
1638         (cli_text): Likewise.
1639         (cli_message): Likewise.
1640         (cli_wrap_hint): Likewise.
1641         (cli_flush): Likewise.
1642         (cli_redirect): Likewise.
1643         (out_field_fmt): Likewise.
1644         (field_separator): Likewise.
1645         (cli_out_set_stream): Likewise.
1646         * cli/cli-cmds.c (compare_symtabs): Likewise.
1647         * cli/cli-dump.c (call_dump_func): Likewise.
1648         (restore_section_callback): Likewise.
1649         * cli/cli-script.c (clear_hook_in_cleanup): Likewise.
1650         (do_restore_user_call_depth): Likewise.
1651         (do_free_command_lines_cleanup): Likewise.
1652         * coff-pe-read.c (get_section_vmas): Likewise.
1653         (pe_as16): Likewise.
1654         (pe_as32): Likewise.
1655         * coffread.c (coff_symfile_read): Likewise.
1656         * common/agent.c (agent_look_up_symbols): Likewise.
1657         * common/filestuff.c (do_close_cleanup): Likewise.
1658         * common/format.c (free_format_pieces_cleanup): Likewise.
1659         * common/vec.c (vec_o_reserve): Likewise.
1660         * compile/compile-c-support.c (print_one_macro): Likewise.
1661         * compile/compile-c-symbols.c (hash_symbol_error): Likewise.
1662         (eq_symbol_error): Likewise.
1663         (del_symbol_error): Likewise.
1664         (error_symbol_once): Likewise.
1665         (gcc_convert_symbol): Likewise.
1666         (gcc_symbol_address): Likewise.
1667         (hash_symname): Likewise.
1668         (eq_symname): Likewise.
1669         * compile/compile-c-types.c (hash_type_map_instance): Likewise.
1670         (eq_type_map_instance): Likewise.
1671         (insert_type): Likewise.
1672         (convert_type): Likewise.
1673         * compile/compile-object-load.c (munmap_listp_free_cleanup): Likewise.
1674         (setup_sections): Likewise.
1675         (link_hash_table_free): Likewise.
1676         (copy_sections): Likewise.
1677         * compile/compile-object-run.c (do_module_cleanup): Likewise.
1678         * compile/compile.c (compile_print_value): Likewise.
1679         (do_rmdir): Likewise.
1680         (cleanup_compile_instance): Likewise.
1681         (cleanup_unlink_file): Likewise.
1682         * completer.c (free_completion_tracker): Likewise.
1683         * corelow.c (add_to_spuid_list): Likewise.
1684         * cp-namespace.c (reset_directive_searched): Likewise.
1685         * cp-support.c (reset_directive_searched): Likewise.
1686         * cris-tdep.c (cris_sigtramp_frame_unwind_cache): Likewise.
1687         (cris_frame_unwind_cache): Likewise.
1688         * d-lang.c (builtin_d_type): Likewise.
1689         * d-namespace.c (reset_directive_searched): Likewise.
1690         * dbxread.c (dbx_free_symfile_info): Likewise.
1691         (do_free_bincl_list_cleanup): Likewise.
1692         * disasm.c (hash_dis_line_entry): Likewise.
1693         (eq_dis_line_entry): Likewise.
1694         (dis_asm_print_address): Likewise.
1695         (fprintf_disasm): Likewise.
1696         (do_ui_file_delete): Likewise.
1697         * doublest.c (convert_floatformat_to_doublest): Likewise.
1698         * dummy-frame.c (pop_dummy_frame_bpt): Likewise.
1699         (dummy_frame_prev_register): Likewise.
1700         (dummy_frame_this_id): Likewise.
1701         * dwarf2-frame-tailcall.c (cache_hash): Likewise.
1702         (cache_eq): Likewise.
1703         (cache_find): Likewise.
1704         (tailcall_frame_this_id): Likewise.
1705         (dwarf2_tailcall_prev_register_first): Likewise.
1706         (tailcall_frame_prev_register): Likewise.
1707         (tailcall_frame_dealloc_cache): Likewise.
1708         (tailcall_frame_prev_arch): Likewise.
1709         * dwarf2-frame.c (dwarf2_frame_state_free): Likewise.
1710         (dwarf2_frame_set_init_reg): Likewise.
1711         (dwarf2_frame_init_reg): Likewise.
1712         (dwarf2_frame_set_signal_frame_p): Likewise.
1713         (dwarf2_frame_signal_frame_p): Likewise.
1714         (dwarf2_frame_set_adjust_regnum): Likewise.
1715         (dwarf2_frame_adjust_regnum): Likewise.
1716         (clear_pointer_cleanup): Likewise.
1717         (dwarf2_frame_cache): Likewise.
1718         (find_cie): Likewise.
1719         (dwarf2_frame_find_fde): Likewise.
1720         * dwarf2expr.c (dwarf_expr_address_type): Likewise.
1721         (free_dwarf_expr_context_cleanup): Likewise.
1722         * dwarf2loc.c (locexpr_find_frame_base_location): Likewise.
1723         (locexpr_get_frame_base): Likewise.
1724         (loclist_find_frame_base_location): Likewise.
1725         (loclist_get_frame_base): Likewise.
1726         (dwarf_expr_dwarf_call): Likewise.
1727         (dwarf_expr_get_base_type): Likewise.
1728         (dwarf_expr_push_dwarf_reg_entry_value): Likewise.
1729         (dwarf_expr_get_obj_addr): Likewise.
1730         (entry_data_value_coerce_ref): Likewise.
1731         (entry_data_value_copy_closure): Likewise.
1732         (entry_data_value_free_closure): Likewise.
1733         (get_frame_address_in_block_wrapper): Likewise.
1734         (dwarf2_evaluate_property): Likewise.
1735         (dwarf2_compile_property_to_c): Likewise.
1736         (needs_frame_read_addr_from_reg): Likewise.
1737         (needs_frame_get_reg_value): Likewise.
1738         (needs_frame_frame_base): Likewise.
1739         (needs_frame_frame_cfa): Likewise.
1740         (needs_frame_tls_address): Likewise.
1741         (needs_frame_dwarf_call): Likewise.
1742         (needs_dwarf_reg_entry_value): Likewise.
1743         (get_ax_pc): Likewise.
1744         (locexpr_read_variable): Likewise.
1745         (locexpr_read_variable_at_entry): Likewise.
1746         (locexpr_read_needs_frame): Likewise.
1747         (locexpr_describe_location): Likewise.
1748         (locexpr_tracepoint_var_ref): Likewise.
1749         (locexpr_generate_c_location): Likewise.
1750         (loclist_read_variable): Likewise.
1751         (loclist_read_variable_at_entry): Likewise.
1752         (loclist_describe_location): Likewise.
1753         (loclist_tracepoint_var_ref): Likewise.
1754         (loclist_generate_c_location): Likewise.
1755         * dwarf2read.c (line_header_hash_voidp): Likewise.
1756         (line_header_eq_voidp): Likewise.
1757         (dwarf2_has_info): Likewise.
1758         (dwarf2_get_section_info): Likewise.
1759         (locate_dwz_sections): Likewise.
1760         (hash_file_name_entry): Likewise.
1761         (eq_file_name_entry): Likewise.
1762         (delete_file_name_entry): Likewise.
1763         (dw2_setup): Likewise.
1764         (dw2_get_file_names_reader): Likewise.
1765         (dw2_find_pc_sect_compunit_symtab): Likewise.
1766         (hash_signatured_type): Likewise.
1767         (eq_signatured_type): Likewise.
1768         (add_signatured_type_cu_to_table): Likewise.
1769         (create_debug_types_hash_table): Likewise.
1770         (lookup_dwo_signatured_type): Likewise.
1771         (lookup_dwp_signatured_type): Likewise.
1772         (lookup_signatured_type): Likewise.
1773         (hash_type_unit_group): Likewise.
1774         (eq_type_unit_group): Likewise.
1775         (get_type_unit_group): Likewise.
1776         (process_psymtab_comp_unit_reader): Likewise.
1777         (sort_tu_by_abbrev_offset): Likewise.
1778         (process_skeletonless_type_unit): Likewise.
1779         (psymtabs_addrmap_cleanup): Likewise.
1780         (dwarf2_read_symtab): Likewise.
1781         (psymtab_to_symtab_1): Likewise.
1782         (die_hash): Likewise.
1783         (die_eq): Likewise.
1784         (load_full_comp_unit_reader): Likewise.
1785         (reset_die_in_process): Likewise.
1786         (free_cu_line_header): Likewise.
1787         (handle_DW_AT_stmt_list): Likewise.
1788         (hash_dwo_file): Likewise.
1789         (eq_dwo_file): Likewise.
1790         (hash_dwo_unit): Likewise.
1791         (eq_dwo_unit): Likewise.
1792         (create_dwo_cu_reader): Likewise.
1793         (create_dwo_unit_in_dwp_v1): Likewise.
1794         (create_dwo_unit_in_dwp_v2): Likewise.
1795         (lookup_dwo_unit_in_dwp): Likewise.
1796         (dwarf2_locate_dwo_sections): Likewise.
1797         (dwarf2_locate_common_dwp_sections): Likewise.
1798         (dwarf2_locate_v2_dwp_sections): Likewise.
1799         (hash_dwp_loaded_cutus): Likewise.
1800         (eq_dwp_loaded_cutus): Likewise.
1801         (lookup_dwo_cutu): Likewise.
1802         (abbrev_table_free_cleanup): Likewise.
1803         (dwarf2_free_abbrev_table): Likewise.
1804         (find_partial_die_in_comp_unit): Likewise.
1805         (free_line_header_voidp): Likewise.
1806         (follow_die_offset): Likewise.
1807         (follow_die_sig_1): Likewise.
1808         (free_heap_comp_unit): Likewise.
1809         (free_stack_comp_unit): Likewise.
1810         (dwarf2_free_objfile): Likewise.
1811         (per_cu_offset_and_type_hash): Likewise.
1812         (per_cu_offset_and_type_eq): Likewise.
1813         (get_die_type_at_offset): Likewise.
1814         (partial_die_hash): Likewise.
1815         (partial_die_eq): Likewise.
1816         (dwarf2_per_objfile_free): Likewise.
1817         (hash_strtab_entry): Likewise.
1818         (eq_strtab_entry): Likewise.
1819         (add_string): Likewise.
1820         (hash_symtab_entry): Likewise.
1821         (eq_symtab_entry): Likewise.
1822         (delete_symtab_entry): Likewise.
1823         (cleanup_mapped_symtab): Likewise.
1824         (add_indices_to_cpool): Likewise.
1825         (hash_psymtab_cu_index): Likewise.
1826         (eq_psymtab_cu_index): Likewise.
1827         (add_address_entry_worker): Likewise.
1828         (unlink_if_set): Likewise.
1829         (write_one_signatured_type): Likewise.
1830         (save_gdb_index_command): Likewise.
1831         * elfread.c (elf_symtab_read): Likewise.
1832         (elf_gnu_ifunc_cache_hash): Likewise.
1833         (elf_gnu_ifunc_cache_eq): Likewise.
1834         (elf_gnu_ifunc_record_cache): Likewise.
1835         (elf_gnu_ifunc_resolve_by_cache): Likewise.
1836         (elf_get_probes): Likewise.
1837         (probe_key_free): Likewise.
1838         * f-lang.c (builtin_f_type): Likewise.
1839         * frame-base.c (frame_base_append_sniffer): Likewise.
1840         (frame_base_set_default): Likewise.
1841         (frame_base_find_by_frame): Likewise.
1842         * frame-unwind.c (frame_unwind_prepend_unwinder): Likewise.
1843         (frame_unwind_append_unwinder): Likewise.
1844         (frame_unwind_find_by_frame): Likewise.
1845         * frame.c (frame_addr_hash): Likewise.
1846         (frame_addr_hash_eq): Likewise.
1847         (frame_stash_find): Likewise.
1848         (do_frame_register_read): Likewise.
1849         (unwind_to_current_frame): Likewise.
1850         (frame_cleanup_after_sniffer): Likewise.
1851         * frv-linux-tdep.c (frv_linux_sigtramp_frame_cache): Likewise.
1852         * frv-tdep.c (frv_frame_unwind_cache): Likewise.
1853         * ft32-tdep.c (ft32_frame_cache): Likewise.
1854         * gcore.c (do_bfd_delete_cleanup): Likewise.
1855         (gcore_create_callback): Likewise.
1856         * gdb_bfd.c (hash_bfd): Likewise.
1857         (eq_bfd): Likewise.
1858         (gdb_bfd_open): Likewise.
1859         (free_one_bfd_section): Likewise.
1860         (gdb_bfd_ref): Likewise.
1861         (gdb_bfd_unref): Likewise.
1862         (get_section_descriptor): Likewise.
1863         (gdb_bfd_map_section): Likewise.
1864         (gdb_bfd_crc): Likewise.
1865         (gdb_bfd_mark_parent): Likewise.
1866         (gdb_bfd_record_inclusion): Likewise.
1867         (gdb_bfd_requires_relocations): Likewise.
1868         (print_one_bfd): Likewise.
1869         * gdbtypes.c (type_pair_hash): Likewise.
1870         (type_pair_eq): Likewise.
1871         (builtin_type): Likewise.
1872         (objfile_type): Likewise.
1873         * gnu-v3-abi.c (vtable_ptrdiff_type): Likewise.
1874         (vtable_address_point_offset): Likewise.
1875         (gnuv3_get_vtable): Likewise.
1876         (hash_value_and_voffset): Likewise.
1877         (eq_value_and_voffset): Likewise.
1878         (compare_value_and_voffset): Likewise.
1879         (compute_vtable_size): Likewise.
1880         (gnuv3_get_typeid_type): Likewise.
1881         * go-lang.c (builtin_go_type): Likewise.
1882         * guile/scm-block.c (bkscm_hash_block_smob): Likewise.
1883         (bkscm_eq_block_smob): Likewise.
1884         (bkscm_objfile_block_map): Likewise.
1885         (bkscm_del_objfile_blocks): Likewise.
1886         * guile/scm-breakpoint.c (bpscm_build_bp_list): Likewise.
1887         * guile/scm-disasm.c (gdbscm_disasm_read_memory_worker): Likewise.
1888         (gdbscm_disasm_print_address): Likewise.
1889         * guile/scm-frame.c (frscm_hash_frame_smob): Likewise.
1890         (frscm_eq_frame_smob): Likewise.
1891         (frscm_inferior_frame_map): Likewise.
1892         (frscm_del_inferior_frames): Likewise.
1893         * guile/scm-gsmob.c (gdbscm_add_objfile_ref): Likewise.
1894         * guile/scm-objfile.c (ofscm_handle_objfile_deleted): Likewise.
1895         (ofscm_objfile_smob_from_objfile): Likewise.
1896         * guile/scm-ports.c (ioscm_write): Likewise.
1897         (ioscm_file_port_delete): Likewise.
1898         (ioscm_file_port_rewind): Likewise.
1899         (ioscm_file_port_put): Likewise.
1900         (ioscm_file_port_write): Likewise.
1901         * guile/scm-progspace.c (psscm_handle_pspace_deleted): Likewise.
1902         (psscm_pspace_smob_from_pspace): Likewise.
1903         * guile/scm-safe-call.c (scscm_recording_pre_unwind_handler): Likewise.
1904         (scscm_recording_unwind_handler): Likewise.
1905         (gdbscm_with_catch): Likewise.
1906         (scscm_call_0_body): Likewise.
1907         (scscm_call_1_body): Likewise.
1908         (scscm_call_2_body): Likewise.
1909         (scscm_call_3_body): Likewise.
1910         (scscm_call_4_body): Likewise.
1911         (scscm_apply_1_body): Likewise.
1912         (scscm_eval_scheme_string): Likewise.
1913         (gdbscm_safe_eval_string): Likewise.
1914         (scscm_source_scheme_script): Likewise.
1915         (gdbscm_safe_source_script): Likewise.
1916         * guile/scm-string.c (gdbscm_call_scm_to_stringn): Likewise.
1917         (gdbscm_call_scm_from_stringn): Likewise.
1918         * guile/scm-symbol.c (syscm_hash_symbol_smob): Likewise.
1919         (syscm_eq_symbol_smob): Likewise.
1920         (syscm_get_symbol_map): Likewise.
1921         (syscm_del_objfile_symbols): Likewise.
1922         * guile/scm-symtab.c (stscm_hash_symtab_smob): Likewise.
1923         (stscm_eq_symtab_smob): Likewise.
1924         (stscm_objfile_symtab_map): Likewise.
1925         (stscm_del_objfile_symtabs): Likewise.
1926         * guile/scm-type.c (tyscm_hash_type_smob): Likewise.
1927         (tyscm_eq_type_smob): Likewise.
1928         (tyscm_type_map): Likewise.
1929         (tyscm_copy_type_recursive): Likewise.
1930         (save_objfile_types): Likewise.
1931         * guile/scm-utils.c (extract_arg): Likewise.
1932         * h8300-tdep.c (h8300_frame_cache): Likewise.
1933         * hppa-linux-tdep.c (hppa_linux_sigtramp_frame_unwind_cache): Likewise.
1934         * hppa-tdep.c (compare_unwind_entries): Likewise.
1935         (find_unwind_entry): Likewise.
1936         (hppa_frame_cache): Likewise.
1937         (hppa_stub_frame_unwind_cache): Likewise.
1938         * hppanbsd-tdep.c (hppanbsd_supply_gregset): Likewise.
1939         * hppaobsd-tdep.c (hppaobsd_supply_gregset): Likewise.
1940         (hppaobsd_supply_fpregset): Likewise.
1941         * i386-cygwin-tdep.c (core_process_module_section): Likewise.
1942         * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
1943         * i386-tdep.c (i386_frame_cache): Likewise.
1944         (i386_epilogue_frame_cache): Likewise.
1945         (i386_sigtramp_frame_cache): Likewise.
1946         (i386_supply_gregset): Likewise.
1947         (i386_collect_gregset): Likewise.
1948         (i386_gdbarch_init): Likewise.
1949         * i386obsd-tdep.c (i386obsd_aout_supply_regset): Likewise.
1950         (i386obsd_trapframe_cache): Likewise.
1951         * i387-tdep.c (i387_supply_fsave): Likewise.
1952         (i387_collect_fsave): Likewise.
1953         (i387_supply_fxsave): Likewise.
1954         (i387_collect_fxsave): Likewise.
1955         (i387_supply_xsave): Likewise.
1956         (i387_collect_xsave): Likewise.
1957         * ia64-tdep.c (ia64_frame_cache): Likewise.
1958         (ia64_sigtramp_frame_cache): Likewise.
1959         * infcmd.c (attach_command_continuation): Likewise.
1960         (attach_command_continuation_free_args): Likewise.
1961         * inferior.c (restore_inferior): Likewise.
1962         (delete_thread_of_inferior): Likewise.
1963         * inflow.c (inflow_inferior_data_cleanup): Likewise.
1964         (get_inflow_inferior_data): Likewise.
1965         (inflow_inferior_exit): Likewise.
1966         * infrun.c (displaced_step_clear_cleanup): Likewise.
1967         (restore_current_uiout_cleanup): Likewise.
1968         (release_stop_context_cleanup): Likewise.
1969         (do_restore_infcall_suspend_state_cleanup): Likewise.
1970         (do_restore_infcall_control_state_cleanup): Likewise.
1971         (restore_inferior_ptid): Likewise.
1972         * inline-frame.c (block_starting_point_at): Likewise.
1973         * iq2000-tdep.c (iq2000_frame_cache): Likewise.
1974         * jit.c (get_jit_objfile_data): Likewise.
1975         (get_jit_program_space_data): Likewise.
1976         (jit_object_close_impl): Likewise.
1977         (jit_find_objf_with_entry_addr): Likewise.
1978         (jit_breakpoint_deleted): Likewise.
1979         (jit_unwind_reg_set_impl): Likewise.
1980         (jit_unwind_reg_get_impl): Likewise.
1981         (jit_dealloc_cache): Likewise.
1982         (jit_frame_sniffer): Likewise.
1983         (jit_frame_prev_register): Likewise.
1984         (jit_prepend_unwinder): Likewise.
1985         (jit_inferior_exit_hook): Likewise.
1986         (free_objfile_data): Likewise.
1987         * jv-lang.c (jv_per_objfile_free): Likewise.
1988         (get_dynamics_objfile): Likewise.
1989         (get_java_class_symtab): Likewise.
1990         (builtin_java_type): Likewise.
1991         * language.c (language_string_char_type): Likewise.
1992         (language_bool_type): Likewise.
1993         (language_lookup_primitive_type): Likewise.
1994         (language_lookup_primitive_type_as_symbol): Likewise.
1995         * linespec.c (hash_address_entry): Likewise.
1996         (eq_address_entry): Likewise.
1997         (iterate_inline_only): Likewise.
1998         (iterate_name_matcher): Likewise.
1999         (decode_line_2_compare_items): Likewise.
2000         (collect_one_symbol): Likewise.
2001         (compare_symbols): Likewise.
2002         (compare_msymbols): Likewise.
2003         (add_symtabs_to_list): Likewise.
2004         (collect_symbols): Likewise.
2005         (compare_msyms): Likewise.
2006         (add_minsym): Likewise.
2007         (cleanup_linespec_result): Likewise.
2008         * linux-fork.c (inferior_call_waitpid_cleanup): Likewise.
2009         * linux-nat.c (delete_lwp_cleanup): Likewise.
2010         (count_events_callback): Likewise.
2011         (select_event_lwp_callback): Likewise.
2012         (resume_stopped_resumed_lwps): Likewise.
2013         * linux-tdep.c (get_linux_gdbarch_data): Likewise.
2014         (invalidate_linux_cache_inf): Likewise.
2015         (get_linux_inferior_data): Likewise.
2016         (linux_find_memory_regions_thunk): Likewise.
2017         (linux_make_mappings_callback): Likewise.
2018         (linux_corefile_thread_callback): Likewise.
2019         (find_mapping_size): Likewise.
2020         * linux-thread-db.c (find_new_threads_callback): Likewise.
2021         * lm32-tdep.c (lm32_frame_cache): Likewise.
2022         * m2-lang.c (builtin_m2_type): Likewise.
2023         * m32c-tdep.c (m32c_analyze_frame_prologue): Likewise.
2024         * m32r-linux-tdep.c (m32r_linux_sigtramp_frame_cache): Likewise.
2025         (m32r_linux_supply_gregset): Likewise.
2026         (m32r_linux_collect_gregset): Likewise.
2027         * m32r-tdep.c (m32r_frame_unwind_cache): Likewise.
2028         * m68hc11-tdep.c (m68hc11_frame_unwind_cache): Likewise.
2029         * m68k-tdep.c (m68k_frame_cache): Likewise.
2030         * m68kbsd-tdep.c (m68kbsd_supply_fpregset): Likewise.
2031         (m68kbsd_supply_gregset): Likewise.
2032         * m68klinux-tdep.c (m68k_linux_sigtramp_frame_cache): Likewise.
2033         * m88k-tdep.c (m88k_frame_cache): Likewise.
2034         (m88k_supply_gregset): Likewise.
2035
2036 2015-09-25  Simon Marchi  <simon.marchi@ericsson.com>
2037
2038         * aarch64-linux-tdep.c (aarch64_stap_parse_special_token): Add cast
2039         to allocation result assignment.
2040         * ada-exp.y (write_object_renaming): Likewise.
2041         (write_ambiguous_var): Likewise.
2042         (ada_nget_field_index): Likewise.
2043         (write_var_or_type): Likewise.
2044         * ada-lang.c (ada_decode_symbol): Likewise.
2045         (ada_value_assign): Likewise.
2046         (value_pointer): Likewise.
2047         (cache_symbol): Likewise.
2048         (add_nonlocal_symbols): Likewise.
2049         (ada_name_for_lookup): Likewise.
2050         (symbol_completion_add): Likewise.
2051         (ada_to_fixed_type_1): Likewise.
2052         (ada_get_next_arg): Likewise.
2053         (defns_collected): Likewise.
2054         * ada-lex.l (processId): Likewise.
2055         (processString): Likewise.
2056         * ada-tasks.c (read_known_tasks_array): Likewise.
2057         (read_known_tasks_list): Likewise.
2058         * ada-typeprint.c (decoded_type_name): Likewise.
2059         * addrmap.c (addrmap_mutable_create_fixed): Likewise.
2060         * amd64-tdep.c (amd64_push_arguments): Likewise.
2061         (amd64_displaced_step_copy_insn): Likewise.
2062         (amd64_classify_insn_at): Likewise.
2063         (amd64_relocate_instruction): Likewise.
2064         * amd64obsd-tdep.c (amd64obsd_sigtramp_p): Likewise.
2065         * arch-utils.c (simple_displaced_step_copy_insn): Likewise.
2066         (initialize_current_architecture): Likewise.
2067         * arm-linux-tdep.c (arm_stap_parse_special_token): Likewise.
2068         * arm-symbian-tdep.c (arm_symbian_osabi_sniffer): Likewise.
2069         * arm-tdep.c (arm_exidx_new_objfile): Likewise.
2070         (arm_push_dummy_call): Likewise.
2071         (extend_buffer_earlier): Likewise.
2072         (arm_adjust_breakpoint_address): Likewise.
2073         (arm_skip_stub): Likewise.
2074         * auto-load.c (filename_is_in_pattern): Likewise.
2075         (maybe_add_script_file): Likewise.
2076         (maybe_add_script_text): Likewise.
2077         (auto_load_objfile_script_1): Likewise.
2078         * auxv.c (ld_so_xfer_auxv): Likewise.
2079         * ax-general.c (new_agent_expr): Likewise.
2080         (grow_expr): Likewise.
2081         (ax_reg_mask): Likewise.
2082         * bcache.c (bcache_full): Likewise.
2083         * breakpoint.c (program_breakpoint_here_p): Likewise.
2084         * btrace.c (parse_xml_raw): Likewise.
2085         * build-id.c (build_id_to_debug_bfd): Likewise.
2086         * buildsym.c (end_symtab_with_blockvector): Likewise.
2087         * c-exp.y (string_exp): Likewise.
2088         (qualified_name): Likewise.
2089         (write_destructor_name): Likewise.
2090         (operator_stoken): Likewise.
2091         (parse_number): Likewise.
2092         (scan_macro_expansion): Likewise.
2093         (yylex): Likewise.
2094         (c_print_token): Likewise.
2095         * c-lang.c (c_get_string): Likewise.
2096         (emit_numeric_character): Likewise.
2097         * charset.c (wchar_iterate): Likewise.
2098         * cli/cli-cmds.c (complete_command): Likewise.
2099         (make_command): Likewise.
2100         * cli/cli-dump.c (restore_section_callback): Likewise.
2101         (restore_binary_file): Likewise.
2102         * cli/cli-interp.c (cli_interpreter_exec): Likewise.
2103         * cli/cli-script.c (execute_control_command): Likewise.
2104         * cli/cli-setshow.c (do_set_command): Likewise.
2105         * coff-pe-read.c (add_pe_forwarded_sym): Likewise.
2106         (read_pe_exported_syms): Likewise.
2107         * coffread.c (coff_read_struct_type): Likewise.
2108         (coff_read_enum_type): Likewise.
2109         * common/btrace-common.c (btrace_data_append): Likewise.
2110         * common/buffer.c (buffer_grow): Likewise.
2111         * common/filestuff.c (gdb_fopen_cloexec): Likewise.
2112         * common/format.c (parse_format_string): Likewise.
2113         * common/gdb_vecs.c (delim_string_to_char_ptr_vec_append): Likewise.
2114         * common/xml-utils.c (xml_escape_text): Likewise.
2115         * compile/compile-object-load.c (copy_sections): Likewise.
2116         (compile_object_load): Likewise.
2117         * compile/compile-object-run.c (compile_object_run): Likewise.
2118         * completer.c (filename_completer): Likewise.
2119         * corefile.c (read_memory_typed_address): Likewise.
2120         (write_memory_unsigned_integer): Likewise.
2121         (write_memory_signed_integer): Likewise.
2122         (complete_set_gnutarget): Likewise.
2123         * corelow.c (get_core_register_section): Likewise.
2124         * cp-name-parser.y (d_grab): Likewise.
2125         (allocate_info): Likewise.
2126         (cp_new_demangle_parse_info): Likewise.
2127         * cp-namespace.c (cp_scan_for_anonymous_namespaces): Likewise.
2128         (cp_lookup_symbol_in_namespace): Likewise.
2129         (lookup_namespace_scope): Likewise.
2130         (find_symbol_in_baseclass): Likewise.
2131         (cp_lookup_nested_symbol): Likewise.
2132         (cp_lookup_transparent_type_loop): Likewise.
2133         * cp-support.c (copy_string_to_obstack): Likewise.
2134         (make_symbol_overload_list): Likewise.
2135         (make_symbol_overload_list_namespace): Likewise.
2136         (make_symbol_overload_list_adl_namespace): Likewise.
2137         (first_component_command): Likewise.
2138         * cp-valprint.c (cp_print_value): Likewise.
2139         * ctf.c (ctf_xfer_partial): Likewise.
2140         * d-exp.y (StringExp): Likewise.
2141         * d-namespace.c (d_lookup_symbol_in_module): Likewise.
2142         (lookup_module_scope): Likewise.
2143         (find_symbol_in_baseclass): Likewise.
2144         (d_lookup_nested_symbol): Likewise.
2145         * dbxread.c (find_stab_function_addr): Likewise.
2146         (read_dbx_symtab): Likewise.
2147         (dbx_end_psymtab): Likewise.
2148         (cp_set_block_scope): Likewise.
2149         * dcache.c (dcache_alloc): Likewise.
2150         * demangle.c (_initialize_demangler): Likewise.
2151         * dicos-tdep.c (dicos_load_module_p): Likewise.
2152         * dictionary.c (dict_create_hashed_expandable): Likewise.
2153         (dict_create_linear_expandable): Likewise.
2154         (expand_hashtable): Likewise.
2155         (add_symbol_linear_expandable): Likewise.
2156         * dwarf2-frame.c (add_cie): Likewise.
2157         (add_fde): Likewise.
2158         (dwarf2_build_frame_info): Likewise.
2159         * dwarf2expr.c (dwarf_expr_grow_stack): Likewise.
2160         (dwarf_expr_fetch_address): Likewise.
2161         (add_piece): Likewise.
2162         (execute_stack_op): Likewise.
2163         * dwarf2loc.c (chain_candidate): Likewise.
2164         (dwarf_entry_parameter_to_value): Likewise.
2165         (read_pieced_value): Likewise.
2166         (write_pieced_value): Likewise.
2167         * dwarf2read.c (dwarf2_read_section): Likewise.
2168         (add_type_unit): Likewise.
2169         (read_comp_units_from_section): Likewise.
2170         (fixup_go_packaging): Likewise.
2171         (dwarf2_compute_name): Likewise.
2172         (dwarf2_physname): Likewise.
2173         (create_dwo_unit_in_dwp_v1): Likewise.
2174         (create_dwo_unit_in_dwp_v2): Likewise.
2175         (read_func_scope): Likewise.
2176         (read_call_site_scope): Likewise.
2177         (dwarf2_attach_fields_to_type): Likewise.
2178         (process_structure_scope): Likewise.
2179         (mark_common_block_symbol_computed): Likewise.
2180         (read_common_block): Likewise.
2181         (abbrev_table_read_table): Likewise.
2182         (guess_partial_die_structure_name): Likewise.
2183         (fixup_partial_die): Likewise.
2184         (add_file_name): Likewise.
2185         (dwarf2_const_value_data): Likewise.
2186         (dwarf2_const_value_attr): Likewise.
2187         (build_error_marker_type): Likewise.
2188         (guess_full_die_structure_name): Likewise.
2189         (anonymous_struct_prefix): Likewise.
2190         (typename_concat): Likewise.
2191         (dwarf2_canonicalize_name): Likewise.
2192         (dwarf2_name): Likewise.
2193         (write_constant_as_bytes): Likewise.
2194         (dwarf2_fetch_constant_bytes): Likewise.
2195         (copy_string): Likewise.
2196         (parse_macro_definition): Likewise.
2197         * elfread.c (elf_symfile_segments): Likewise.
2198         (elf_rel_plt_read): Likewise.
2199         (elf_gnu_ifunc_resolve_by_cache): Likewise.
2200         (elf_gnu_ifunc_resolve_by_got): Likewise.
2201         (elf_read_minimal_symbols): Likewise.
2202         (elf_gnu_ifunc_record_cache): Likewise.
2203         * event-top.c (top_level_prompt): Likewise.
2204         (command_line_handler): Likewise.
2205         * exec.c (resize_section_table): Likewise.
2206         * expprint.c (print_subexp_standard): Likewise.
2207         * fbsd-tdep.c (fbsd_collect_regset_section_cb): Likewise.
2208         * findcmd.c (parse_find_args): Likewise.
2209         * findvar.c (address_from_register): Likewise.
2210         * frame.c (get_prev_frame_always): Likewise.
2211         * gdb_bfd.c (gdb_bfd_ref): Likewise.
2212         (get_section_descriptor): Likewise.
2213         * gdb_obstack.c (obconcat): Likewise.
2214         (obstack_strdup): Likewise.
2215         * gdbtypes.c (lookup_function_type_with_arguments): Likewise.
2216         (create_set_type): Likewise.
2217         (lookup_unsigned_typename): Likewise.
2218         (lookup_signed_typename): Likewise.
2219         (resolve_dynamic_union): Likewise.
2220         (resolve_dynamic_struct): Likewise.
2221         (add_dyn_prop): Likewise.
2222         (copy_dynamic_prop_list): Likewise.
2223         (arch_flags_type): Likewise.
2224         (append_composite_type_field_raw): Likewise.
2225         * gdbtypes.h (INIT_FUNC_SPECIFIC): Likewise.
2226         * gnu-v3-abi.c (gnuv3_rtti_type): Likewise.
2227         * go-exp.y (string_exp): Likewise.
2228         * go-lang.c (go_demangle): Likewise.
2229         * guile/guile.c (compute_scheme_string): Likewise.
2230         * guile/scm-cmd.c (gdbscm_parse_command_name): Likewise.
2231         (gdbscm_canonicalize_command_name): Likewise.
2232         * guile/scm-ports.c (ioscm_init_stdio_buffers): Likewise.
2233         (ioscm_init_memory_port): Likewise.
2234         (ioscm_reinit_memory_port): Likewise.
2235         * guile/scm-utils.c (gdbscm_gc_xstrdup): Likewise.
2236         (gdbscm_gc_dup_argv): Likewise.
2237         * h8300-tdep.c (h8300_push_dummy_call): Likewise.
2238         * hppa-tdep.c (internalize_unwinds): Likewise.
2239         (read_unwind_info): Likewise.
2240         * i386-cygwin-tdep.c (core_process_module_section): Likewise.
2241         (windows_core_xfer_shared_libraries): Likewise.
2242         * i386-tdep.c (i386_displaced_step_copy_insn): Likewise.
2243         (i386_stap_parse_special_token_triplet): Likewise.
2244         (i386_stap_parse_special_token_three_arg_disp): Likewise.
2245         * i386obsd-tdep.c (i386obsd_sigtramp_p): Likewise.
2246         * inf-child.c (inf_child_fileio_readlink): Likewise.
2247         * inf-ptrace.c (inf_ptrace_fetch_register): Likewise.
2248         (inf_ptrace_store_register): Likewise.
2249         * infrun.c (follow_exec): Likewise.
2250         (displaced_step_prepare_throw): Likewise.
2251         (save_stop_context): Likewise.
2252         (save_infcall_suspend_state): Likewise.
2253         * jit.c (jit_read_descriptor): Likewise.
2254         (jit_read_code_entry): Likewise.
2255         (jit_symtab_line_mapping_add_impl): Likewise.
2256         (finalize_symtab): Likewise.
2257         (jit_unwind_reg_get_impl): Likewise.
2258         * jv-exp.y (QualifiedName): Likewise.
2259         * jv-lang.c (get_java_utf8_name): Likewise.
2260         (type_from_class): Likewise.
2261         (java_demangle_type_signature): Likewise.
2262         (java_class_name_from_physname): Likewise.
2263         * jv-typeprint.c (java_type_print_base): Likewise.
2264         * jv-valprint.c (java_value_print): Likewise.
2265         * language.c (add_language): Likewise.
2266         * linespec.c (add_sal_to_sals_basic): Likewise.
2267         (add_sal_to_sals): Likewise.
2268         (decode_objc): Likewise.
2269         (find_linespec_symbols): Likewise.
2270         * linux-fork.c (fork_save_infrun_state): Likewise.
2271         * linux-nat.c (linux_nat_detach): Likewise.
2272         (linux_nat_fileio_readlink): Likewise.
2273         * linux-record.c (record_linux_sockaddr): Likewise.
2274         (record_linux_msghdr): Likewise.
2275         (Do): Likewise.
2276         * linux-tdep.c (linux_core_info_proc_mappings): Likewise.
2277         (linux_collect_regset_section_cb): Likewise.
2278         (linux_get_siginfo_data): Likewise.
2279         * linux-thread-db.c (try_thread_db_load_from_pdir_1): Likewise.
2280         (try_thread_db_load_from_dir): Likewise.
2281         (thread_db_load_search): Likewise.
2282         (info_auto_load_libthread_db): Likewise.
2283         * m32c-tdep.c (m32c_m16c_address_to_pointer): Likewise.
2284         (m32c_m16c_pointer_to_address): Likewise.
2285         * m68hc11-tdep.c (m68hc11_pseudo_register_write): Likewise.
2286         * m68k-tdep.c (m68k_get_longjmp_target): Likewise.
2287         * machoread.c (macho_check_dsym): Likewise.
2288         * macroexp.c (resize_buffer): Likewise.
2289         (gather_arguments): Likewise.
2290         (maybe_expand): Likewise.
2291         * macrotab.c (new_macro_key): Likewise.
2292         (new_source_file): Likewise.
2293         (new_macro_definition): Likewise.
2294         * mdebugread.c (parse_symbol): Likewise.
2295         (parse_type): Likewise.
2296         (parse_partial_symbols): Likewise.
2297         (psymtab_to_symtab_1): Likewise.
2298         * mem-break.c (default_memory_insert_breakpoint): Likewise.
2299         * mi/mi-cmd-break.c (mi_argv_to_format): Likewise.
2300         * mi/mi-main.c (mi_cmd_data_read_memory): Likewise.
2301         (mi_cmd_data_read_memory_bytes): Likewise.
2302         (mi_cmd_data_write_memory_bytes): Likewise.
2303         (mi_cmd_trace_frame_collected): Likewise.
2304         * mi/mi-parse.c (mi_parse_argv): Likewise.
2305         (mi_parse): Likewise.
2306         * minidebug.c (lzma_open): Likewise.
2307         (lzma_pread): Likewise.
2308         * mips-tdep.c (mips_read_fp_register_single): Likewise.
2309         (mips_print_fp_register): Likewise.
2310         * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Likewise.
2311         * mipsread.c (read_alphacoff_dynamic_symtab): Likewise.
2312         * mt-tdep.c (mt_register_name): Likewise.
2313         (mt_registers_info): Likewise.
2314         (mt_push_dummy_call): Likewise.
2315         * namespace.c (add_using_directive): Likewise.
2316         * nat/linux-btrace.c (perf_event_read): Likewise.
2317         (linux_enable_bts): Likewise.
2318         * nat/linux-osdata.c (linux_common_core_of_thread): Likewise.
2319         * nat/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Likewise.
2320         * nto-tdep.c (nto_find_and_open_solib): Likewise.
2321         (nto_parse_redirection): Likewise.
2322         * objc-lang.c (objc_demangle): Likewise.
2323         (find_methods): Likewise.
2324         * objfiles.c (get_objfile_bfd_data): Likewise.
2325         (set_objfile_main_name): Likewise.
2326         (allocate_objfile): Likewise.
2327         (objfile_relocate): Likewise.
2328         (update_section_map): Likewise.
2329         * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Likewise.
2330         * p-exp.y (exp): Likewise.
2331         (yylex): Likewise.
2332         * p-valprint.c (pascal_object_print_value): Likewise.
2333         * parse.c (initialize_expout): Likewise.
2334         (mark_completion_tag): Likewise.
2335         (copy_name): Likewise.
2336         (parse_float): Likewise.
2337         (type_stack_reserve): Likewise.
2338         * ppc-linux-tdep.c (ppc_stap_parse_special_token): Likewise.
2339         (ppu2spu_prev_register): Likewise.
2340         * ppc-ravenscar-thread.c (supply_register_at_address): Likewise.
2341         * printcmd.c (printf_wide_c_string): Likewise.
2342         (printf_pointer): Likewise.
2343         * probe.c (parse_probes): Likewise.
2344         * python/py-cmd.c (gdbpy_parse_command_name): Likewise.
2345         (cmdpy_init): Likewise.
2346         * python/py-gdb-readline.c (gdbpy_readline_wrapper): Likewise.
2347         * python/py-symtab.c (set_sal): Likewise.
2348         * python/py-unwind.c (pyuw_sniffer): Likewise.
2349         * python/python.c (python_interactive_command): Likewise.
2350         (compute_python_string): Likewise.
2351         * ravenscar-thread.c (get_running_thread_id): Likewise.
2352         * record-full.c (record_full_exec_insn): Likewise.
2353         (record_full_core_open_1): Likewise.
2354         * regcache.c (regcache_raw_read_signed): Likewise.
2355         (regcache_raw_read_unsigned): Likewise.
2356         (regcache_cooked_read_signed): Likewise.
2357         (regcache_cooked_read_unsigned): Likewise.
2358         * remote-fileio.c (remote_fileio_func_open): Likewise.
2359         (remote_fileio_func_rename): Likewise.
2360         (remote_fileio_func_unlink): Likewise.
2361         (remote_fileio_func_stat): Likewise.
2362         (remote_fileio_func_system): Likewise.
2363         * remote-mips.c (mips_xfer_memory): Likewise.
2364         (mips_load_srec): Likewise.
2365         (pmon_end_download): Likewise.
2366         * remote.c (new_remote_state): Likewise.
2367         (map_regcache_remote_table): Likewise.
2368         (remote_register_number_and_offset): Likewise.
2369         (init_remote_state): Likewise.
2370         (get_memory_packet_size): Likewise.
2371         (remote_pass_signals): Likewise.
2372         (remote_program_signals): Likewise.
2373         (remote_start_remote): Likewise.
2374         (remote_check_symbols): Likewise.
2375         (remote_query_supported): Likewise.
2376         (extended_remote_attach): Likewise.
2377         (process_g_packet): Likewise.
2378         (store_registers_using_G): Likewise.
2379         (putpkt_binary): Likewise.
2380         (read_frame): Likewise.
2381         (compare_sections_command): Likewise.
2382         (remote_hostio_pread): Likewise.
2383         (remote_hostio_readlink): Likewise.
2384         (remote_file_put): Likewise.
2385         (remote_file_get): Likewise.
2386         (remote_pid_to_exec_file): Likewise.
2387         (_initialize_remote): Likewise.
2388         * rs6000-aix-tdep.c (rs6000_aix_ld_info_to_xml): Likewise.
2389         (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
2390         * rs6000-tdep.c (ppc_displaced_step_copy_insn): Likewise.
2391         (bfd_uses_spe_extensions): Likewise.
2392         * s390-linux-tdep.c (s390_displaced_step_copy_insn): Likewise.
2393         * score-tdep.c (score7_malloc_and_get_memblock): Likewise.
2394         * solib-dsbt.c (decode_loadmap): Likewise.
2395         (fetch_loadmap): Likewise.
2396         (scan_dyntag): Likewise.
2397         (enable_break): Likewise.
2398         (dsbt_relocate_main_executable): Likewise.
2399         * solib-frv.c (fetch_loadmap): Likewise.
2400         (enable_break2): Likewise.
2401         (frv_relocate_main_executable): Likewise.
2402         * solib-spu.c (spu_relocate_main_executable): Likewise.
2403         (spu_bfd_open): Likewise.
2404         * solib-svr4.c (lm_info_read): Likewise.
2405         (read_program_header): Likewise.
2406         (find_program_interpreter): Likewise.
2407         (scan_dyntag): Likewise.
2408         (elf_locate_base): Likewise.
2409         (open_symbol_file_object): Likewise.
2410         (read_program_headers_from_bfd): Likewise.
2411         (svr4_relocate_main_executable): Likewise.
2412         * solib-target.c (solib_target_relocate_section_addresses): Likewise.
2413         * solib.c (solib_find_1): Likewise.
2414         (exec_file_find): Likewise.
2415         (solib_find): Likewise.
2416         * source.c (openp): Likewise.
2417         (print_source_lines_base): Likewise.
2418         (forward_search_command): Likewise.
2419         * sparc-ravenscar-thread.c (supply_register_at_address): Likewise.
2420         * spu-tdep.c (spu2ppu_prev_register): Likewise.
2421         (spu_get_overlay_table): Likewise.
2422         * stabsread.c (patch_block_stabs): Likewise.
2423         (define_symbol): Likewise.
2424         (again:): Likewise.
2425         (read_member_functions): Likewise.
2426         (read_one_struct_field): Likewise.
2427         (read_enum_type): Likewise.
2428         (common_block_start): Likewise.
2429         * stack.c (read_frame_arg): Likewise.
2430         (backtrace_command): Likewise.
2431         * stap-probe.c (stap_parse_register_operand): Likewise.
2432         * symfile.c (syms_from_objfile_1): Likewise.
2433         (find_separate_debug_file): Likewise.
2434         (load_command): Likewise.
2435         (load_progress): Likewise.
2436         (load_section_callback): Likewise.
2437         (reread_symbols): Likewise.
2438         (add_filename_language): Likewise.
2439         (allocate_compunit_symtab): Likewise.
2440         (read_target_long_array): Likewise.
2441         (simple_read_overlay_table): Likewise.
2442         * symtab.c (symbol_set_names): Likewise.
2443         (resize_symbol_cache): Likewise.
2444         (rbreak_command): Likewise.
2445         (completion_list_add_name): Likewise.
2446         (completion_list_objc_symbol): Likewise.
2447         (add_filename_to_list): Likewise.
2448         * target-descriptions.c (maint_print_c_tdesc_cmd): Likewise.
2449         * target-memory.c (target_write_memory_blocks): Likewise.
2450         * target.c (target_read_string): Likewise.
2451         (read_whatever_is_readable): Likewise.
2452         (target_read_alloc_1): Likewise.
2453         (simple_search_memory): Likewise.
2454         (target_fileio_read_alloc_1): Likewise.
2455         * tilegx-tdep.c (tilegx_push_dummy_call): Likewise.
2456         * top.c (command_line_input): Likewise.
2457         * tracefile-tfile.c (tfile_fetch_registers): Likewise.
2458         * tracefile.c (tracefile_fetch_registers): Likewise.
2459         * tracepoint.c (add_memrange): Likewise.
2460         (init_collection_list): Likewise.
2461         (add_aexpr): Likewise.
2462         (trace_dump_actions): Likewise.
2463         (parse_trace_status): Likewise.
2464         (parse_tracepoint_definition): Likewise.
2465         (parse_tsv_definition): Likewise.
2466         (parse_static_tracepoint_marker_definition): Likewise.
2467         * tui/tui-file.c (tui_sfileopen): Likewise.
2468         (tui_file_adjust_strbuf): Likewise.
2469         * tui/tui-io.c (tui_expand_tabs): Likewise.
2470         * tui/tui-source.c (tui_set_source_content): Likewise.
2471         * typeprint.c (find_global_typedef): Likewise.
2472         * ui-file.c (do_ui_file_xstrdup): Likewise.
2473         (ui_file_obsavestring): Likewise.
2474         (mem_file_write): Likewise.
2475         * utils.c (make_hex_string): Likewise.
2476         (get_regcomp_error): Likewise.
2477         (puts_filtered_tabular): Likewise.
2478         (gdb_realpath_keepfile): Likewise.
2479         (ldirname): Likewise.
2480         (gdb_bfd_errmsg): Likewise.
2481         (substitute_path_component): Likewise.
2482         * valops.c (search_struct_method): Likewise.
2483         (find_oload_champ_namespace_loop): Likewise.
2484         * valprint.c (print_decimal_chars): Likewise.
2485         (read_string): Likewise.
2486         (generic_emit_char): Likewise.
2487         * varobj.c (varobj_delete): Likewise.
2488         (varobj_value_get_print_value): Likewise.
2489         * vaxobsd-tdep.c (vaxobsd_sigtramp_sniffer): Likewise.
2490         * windows-tdep.c (display_one_tib): Likewise.
2491         * xcoffread.c (read_xcoff_symtab): Likewise.
2492         (process_xcoff_symbol): Likewise.
2493         (swap_sym): Likewise.
2494         (scan_xcoff_symtab): Likewise.
2495         (xcoff_initial_scan): Likewise.
2496         * xml-support.c (gdb_xml_end_element): Likewise.
2497         (xml_process_xincludes): Likewise.
2498         (xml_fetch_content_from_file): Likewise.
2499         * xml-syscall.c (xml_list_of_syscalls): Likewise.
2500         * xstormy16-tdep.c (xstormy16_push_dummy_call): Likewise.
2501
2502 2015-09-23  James Bowman  <james.bowman@ftdichip.com>
2503
2504         * ft32-tdep.c (ft32_register_type): Return gdbarch_tdep (gdbarch)->pc_type
2505         instead of builtin_func_ptr.
2506         (ft32_pointer_to_address): New function.
2507         (ft32_address_class_type_flags): New function.
2508         (ft32_address_class_type_flags_to_name): New function.
2509         (ft32_address_class_name_to_type_flags): New function.
2510         (ft32_gdbarch_init): Set tdep->pc_type.  Call
2511         set_gdbarch_pointer_to_address,
2512         set_gdbarch_address_class_type_flags
2513         set_gdbarch_address_class_name_to_type_flags,
2514         and set_gdbarch_address_class_type_flags_to_name.
2515         * ft32-tdep.h (struct gdbarch_tdep) <pc_type>: New field.
2516
2517 2015-09-23  Pierre-Marie de Rodat  <derodat@adacore.com>
2518
2519         * ada-lang.c (ada_evaluate_subexp) <OP_FUNCALL>: When the input
2520         value is a reference, actually dereference it in order to get
2521         the underlying value.
2522
2523 2015-09-22  Simon Marchi  <simon.marchi@ericsson.com>
2524
2525         * stap-probe.c (handle_stap_probe): Remove unnecessary cast.
2526
2527 2015-09-21  Simon Marchi  <simon.marchi@ericsson.com>
2528
2529         * cli/cli-setshow.c (cmd_show_list): Constify a variable.
2530         * linespec.c (linespec_lexer_lex_string): Same.
2531
2532 2015-09-21  Pierre Langlois  <pierre.langlois@arm.com>
2533
2534         * NEWS: Mention support for fast tracepoints on aarch64-linux.
2535
2536 2015-09-21  Pierre Langlois  <pierre.langlois@arm.com>
2537
2538         * aarch64-tdep.c (aarch64_analyze_prologue): New is_adrp
2539         variable.  Call aarch64_decode_adr instead of
2540         aarch64_decode_adrp.
2541         * arch/aarch64-insn.h (aarch64_decode_adrp): Delete.
2542         (aarch64_decode_adr): New function declaration.
2543         * arch/aarch64-insn.c (aarch64_decode_adrp): Delete.
2544         (aarch64_decode_adr): New function, factored out from
2545         aarch64_decode_adrp to decode both adr and adrp instructions.
2546
2547 2015-09-21  Pierre Langlois  <pierre.langlois@arm.com>
2548
2549         * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-insn.o.
2550         (HFILES_NO_SRCDIR): Add arch/aarch64-insn.h.
2551         (aarch64-insn.o): New rule.
2552         * configure.tgt (aarch64*-*-elf): Add aarch64-insn.o.
2553         (aarch64*-*-linux*): Likewise.
2554         * arch/aarch64-insn.c: New file.
2555         * arch/aarch64-insn.h: New file.
2556         * aarch64-tdep.c: Include arch/aarch64-insn.h.
2557         (aarch64_debug): Move to arch/aarch64-insn.c.  Declare in
2558         arch/aarch64-insn.h.
2559         (decode_add_sub_imm): Rename to ...
2560         (aarch64_decode_add_sub_imm): ... this.
2561         (decode_adrp): Rename to ...
2562         (aarch64_decode_adrp): ... this.  Move to arch/aarch64-insn.c.
2563         Declare in arch/aarch64-insn.h.
2564         (decode_b): Rename to ...
2565         (aarch64_decode_b): ... this.  Move to arch/aarch64-insn.c.
2566         Declare in arch/aarch64-insn.h.
2567         (decode_bcond): Rename to ...
2568         (aarch64_decode_bcond): ... this.  Move to arch/aarch64-insn.c.
2569         Declare in arch/aarch64-insn.h.
2570         (decode_br): Rename to ...
2571         (aarch64_decode_br): ... this.
2572         (decode_cb): Rename to ...
2573         (aarch64_decode_cb): ... this.  Move to arch/aarch64-insn.c.
2574         Declare in arch/aarch64-insn.h.
2575         (decode_eret): Rename to ...
2576         (aarch64_decode_eret): ... this.
2577         (decode_movz): Rename to ...
2578         (aarch64_decode_movz): ... this.
2579         (decode_orr_shifted_register_x): Rename to ...
2580         (aarch64_decode_orr_shifted_register_x): ... this.
2581         (decode_ret): Rename to ...
2582         (aarch64_decode_ret): ... this.
2583         (decode_stp_offset): Rename to ...
2584         (aarch64_decode_stp_offset): ... this.
2585         (decode_stp_offset_wb): Rename to ...
2586         (aarch64_decode_stp_offset_wb): ... this.
2587         (decode_stur): Rename to ...
2588         (aarch64_decode_stur): ... this.
2589         (decode_tb): Rename to ...
2590         (aarch64_decode_tb): ... this.  Move to arch/aarch64-insn.c.
2591         Declare in arch/aarch64-insn.h.
2592         (aarch64_analyze_prologue): Adjust calls to renamed functions.
2593
2594 2015-09-20  Doug Evans  <xdje42@gmail.com>
2595
2596         * dwarf2read.c (add_partial_symbol): Remove outdated comments.
2597
2598 2015-09-20  Doug Evans  <xdje42@gmail.com>
2599
2600         * dwarf2read.c (dwarf2_compute_name): Add FIXME.  Don't use a local
2601         variable name that collides with a parameter.
2602
2603 2015-09-20  Joel Brobecker  <brobecker@adacore.com>
2604
2605         * dwarf2loc.c (locexpr_get_frame_base): Renames
2606         block_op_get_frame_base.
2607         (dwarf2_block_frame_base_locexpr_funcs): Replace reference to
2608         block_op_get_frame_base by reference to locexpr_get_frame_base.
2609         (loclist_get_frame_base): New function, near identical copy of
2610         locexpr_get_frame_base.
2611         (dwarf2_block_frame_base_loclist_funcs): Replace reference to
2612         block_op_get_frame_base by reference to loclist_get_frame_base.
2613
2614 2015-09-19  Doug Evans  <xdje42@gmail.com>
2615
2616         * ravenscar-thread.c (ravenscar_inferior_created): Replace
2617         current_inferior ()->gdbarch with its wrapper target_gdbarch.
2618
2619 2015-09-18  Doug Evans  <xdje42@gmail.com>
2620
2621         * linux-thread-db.c (record_thread): Return the created thread.
2622         (thread_from_lwp): Likewise.
2623         (thread_db_get_thread_local_address): Update.
2624
2625 2015-09-18  Doug Evans  <xdje42@gmail.com>
2626
2627         * symtab.h (general_symbol_info) <mangled_lang>: Delete struct,
2628         move only member demangled_name up.  All uses updated.
2629
2630 2015-09-18  Doug Evans  <xdje42@gmail.com>
2631
2632         * findvar.c (default_read_var_value) <LOC_UNRESOLVED>: Include the
2633         kind of minimal symbol in the error message.
2634         * objfiles.c (objfile_flavour_name): New function.
2635         * objfiles.h (objfile_flavour_name): Declare.
2636
2637 2015-09-18  Yao Qi  <yao.qi@linaro.org>
2638
2639         * nat/aarch64-linux.c: Include elf/common.h,
2640         nat/gdb_ptrace.h, asm/ptrace.h and sys/uio.h.
2641         (aarch64_ps_get_thread_area): New function.
2642         * nat/aarch64-linux.h: Include gdb_proc_service.h.
2643         (aarch64_ps_get_thread_area): Declare.
2644         * aarch64-linux-nat.c (ps_get_thread_area): Call
2645         aarch64_ps_get_thread_area.
2646
2647 2015-09-18  Markus Metzger  <markus.t.metzger@intel.com>
2648
2649         * record-btrace.c (record_btrace_resume): Honour scheduler-locking.
2650
2651 2015-09-18  Markus Metzger  <markus.t.metzger@intel.com>
2652
2653         * NEWS: Announce new scheduler-locking mode.
2654         * infrun.c (schedlock_replay): New.
2655         (scheduler_enums): Add schedlock_replay.
2656         (scheduler_mode): Change default to schedlock_replay.
2657         (user_visible_resume_ptid): Handle schedlock_replay.
2658         (clear_proceed_status_thread): Stop replaying if resumed thread is
2659         not replaying.
2660         (schedlock_applies): Handle schedlock_replay.
2661         (_initialize_infrun): Document new scheduler-locking mode.
2662         * record-btrace.c (record_btrace_resume): Remove code to stop other
2663         threads when not replaying the resumed thread.
2664
2665 2015-09-18  Markus Metzger  <markus.t.metzger@intel.com>
2666
2667         * record-btrace.c ((record_btrace_will_replay): New.
2668         (init_record_btrace_ops): Initialize to_record_will_replay.
2669         * record-full.c ((record_full_will_replay): New.
2670         (init_record_full_ops): Initialize to_record_will_replay.
2671         * target-delegates.c: Regenerated.
2672         * target.c (target_record_will_replay): New.
2673         * target.h (struct target_ops) <to_record_will_replay>: New.
2674         (target_record_will_replay): New.
2675
2676 2015-09-18  Markus Metzger  <markus.t.metzger@intel.com>
2677
2678         * record-btrace.c (record_btrace_resume): Call
2679         target_record_stop_replaying.
2680         (record_btrace_stop_replaying_all): New.
2681         (init_record_btrace_ops): Initialize to_record_stop_replaying.
2682         * record-full.c (record_full_stop_replaying): New.
2683         (init_record_full_ops ): Initialize to_record_stop_replaying.
2684         * target-delegates.c: Regenerated.
2685         * target.c (target_record_stop_replaying): New.
2686         * target.h (struct target_ops) <to_record_stop_replaying>: New.
2687         (target_record_stop_replaying): New.
2688
2689 2015-09-18  Markus Metzger  <markus.t.metzger@intel.com>
2690
2691         * record-btrace.c (record_btrace_xfer_partial)
2692         (record_btrace_store_registers, record_btrace_prepare_to_store):
2693         Call record_btrace_is_replaying with inferior_ptid instead of
2694         minus_one_ptid.
2695         (record_btrace_store_registers): Change error message.
2696
2697 2015-09-18  Markus Metzger  <markus.t.metzger@intel.com>
2698
2699         * record-btrace.c (record_btrace_is_replaying): Add ptid argument.
2700         Update users to pass minus_one_ptid.
2701         * record-full.c (record_full_is_replaying): Add ptid argument (ignored).
2702         * record.c (cmd_record_delete): Pass inferior_ptid to
2703         target_record_is_replaying.
2704         * target-delegates.c: Regenerated.
2705         * target.c (target_record_is_replaying): Add ptid argument.
2706         * target.h (struct target_ops) <to_record_is_replaying>: Add ptid
2707         argument.
2708         (target_record_is_replaying): Add ptid argument.
2709
2710 2015-09-18  Markus Metzger  <markus.t.metzger@intel.com>
2711
2712         * record-btrace.c (record_btrace_open): Remove non_stop check.
2713         * NEWS: Announce that record btrace supports non-stop mode.
2714
2715 2015-09-18  Markus Metzger  <markus.t.metzger@intel.com>
2716
2717         * infrun.c (handle_inferior_event_1): Switch to the eventing thread
2718         in the TARKET_WAITKIND_NO_HISTORY case.
2719
2720 2015-09-18  Markus Metzger  <markus.t.metzger@intel.com>
2721
2722         * record-btrace.c (record_btrace_maybe_mark_async_event): New.
2723         (record_btrace_wait): Call record_btrace_maybe_mark_async_event.
2724
2725 2015-09-18  Markus Metzger  <markus.t.metzger@intel.com>
2726
2727         * record-btrace.c (get_thread_current_frame): New.
2728         (record_btrace_start_replaying): Call get_thread_current_frame.
2729
2730 2015-09-18  Markus Metzger  <markus.t.metzger@intel.com>
2731
2732         * record-btrace.c (record_btrace_resume_thread): A move request
2733         overwrites a previous move request.
2734         (record_btrace_find_resume_thread): Removed.
2735         (record_btrace_resume): Resume all requested threads.
2736
2737 2015-09-18  Markus Metzger  <markus.t.metzger@intel.com>
2738
2739         * record-btrace.c: Include vec.h.
2740         (record_btrace_find_thread_to_move): Removed.
2741         (btrace_step_no_resumed, btrace_step_again)
2742         (record_btrace_stop_replaying_at_end): New.
2743         (record_btrace_cancel_resume): Call record_btrace_stop_replaying_at_end.
2744         (record_btrace_single_step_forward): Remove calls to
2745         record_btrace_stop_replaying.
2746         (record_btrace_step_thread): Do only one step for BTHR_CONT and
2747         BTHR_RCONT.  Keep threads at the end of their history moving.
2748         (record_btrace_wait): Call record_btrace_step_thread for all threads
2749         until one reports an event.  Call record_btrace_stop_replaying_at_end
2750         for the eventing thread.
2751
2752 2015-09-18  Markus Metzger  <markus.t.metzger@intel.com>
2753
2754         * record-btrace.c (record_btrace_single_step_forward): Return
2755         NO_HISTORY if a step brings us to the end of the execution history.
2756
2757 2015-09-18  Markus Metzger  <markus.t.metzger@intel.com>
2758
2759         * record-btrace.c (record_btrace_step_thread): Move breakpoint check
2760         to ...
2761         (record_btrace_single_step_forward): ... here and
2762         (record_btrace_single_step_backward): ... here.
2763
2764 2015-09-18  Markus Metzger  <markus.t.metzger@intel.com>
2765
2766         * record-btrace.c (btrace_step_spurious)
2767         (record_btrace_single_step_forward)
2768         (record_btrace_single_step_backward): New.
2769         (record_btrace_step_thread): Call record_btrace_single_step_forward
2770         and record_btrace_single_step_backward.
2771
2772 2015-09-18  Markus Metzger  <markus.t.metzger@intel.com>
2773
2774         * record-btrace.c (record_btrace_replay_at_breakpoint): New.
2775         (record_btrace_step_thread): Call record_btrace_replay_at_breakpoint.
2776
2777 2015-09-18  Markus Metzger  <markus.t.metzger@intel.com>
2778
2779         * record-btrace.c (btrace_thread_flag_to_str)
2780         (record_btrace_cancel_resume): New.
2781         (record_btrace_step_thread): Call btrace_thread_flag_to_str.
2782         (record_btrace_resume): Print execution direction.
2783         (record_btrace_resume_thread): Call btrace_thread_flag_to_str.
2784         (record_btrace_wait): Call record_btrace_cancel_resume.
2785
2786 2015-09-18  Markus Metzger  <markus.t.metzger@intel.com>
2787
2788         * btrace.h (enum btrace_thread_flag) <BTHR_STOP>: New.
2789         * record-btrace (record_btrace_resume_thread): Clear BTHR_STOP.
2790         (record_btrace_find_thread_to_move): Also accept threads that have
2791         BTHR_STOP set.
2792         (btrace_step_stopped_on_request, record_btrace_stop): New.
2793         (record_btrace_step_thread): Support BTHR_STOP.
2794         (record_btrace_wait): Also clear BTHR_STOP when stopping other threads.
2795         (init_record_btrace_ops): Initialize to_stop.
2796
2797 2015-09-18  Markus Metzger  <markus.t.metzger@intel.com>
2798
2799         * record-btrace.c (record_btrace_wait): Replace non_stop check with
2800         target_is_non_stop_p ().
2801
2802 2015-09-15  Pierre-Marie de Rodat  <derodat@adacore.com>
2803
2804         * ada-typeprint.c (print_array_type): Do not describe arrays as
2805         packed when they embed dynamic elements.
2806
2807 2015-09-15  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
2808
2809         * symtab.h (address_class): Document that TLS variables
2810         are handled by LOC_UNRESOLVED.
2811         * findvar.c (default_read_var_value): Don't relocate TLS variables.
2812         * printcmd.c (address_info): Don't relocate TLS variables.
2813
2814 2015-09-15  Pierre Langlois  <pierre.langlois@arm.com>
2815
2816         * aarch64-tdep.c (decode_add_sub_imm): Use debug_printf.
2817         (decode_adrp): Likewise.
2818         (decode_b): Likewise.
2819         (decode_bcond): Likewise.
2820         (decode_br): Likewise.
2821         (decode_cb): Likewise.
2822         (decode_eret): Likewise.
2823         (decode_movz): Likewise.
2824         (decode_orr_shifted_register_x): Likewise.
2825         (decode_ret): Likewise.
2826         (decode_stp_offset): Likewise.
2827         (decode_stp_offset_wb): Likewise.
2828         (decode_stur): Likewise.
2829         (decode_tb): Likewise.
2830         (aarch64_analyze_prologue): Likewise.
2831         (pass_in_x): Likewise.
2832         (pass_in_v): Likewise.
2833         (pass_on_stack): Likewise.
2834         (aarch64_push_dummy_call): Likewise.
2835         (aarch64_extract_return_value): Likewise.
2836         (aarch64_store_return_value): Likewise.
2837         (aarch64_return_value): Likewise.
2838         (aarch64_record_asimd_load_store): Likewise.
2839         (aarch64_record_load_store): Likewise.
2840         (aarch64_record_data_proc_simd_fp): Likewise.
2841
2842 2015-09-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
2843
2844         * linespec.c (minsym_found): Call gdbarch_skip_entrypoint.
2845         * ppc64-tdep.c (ppc64_skip_trampoline_code): Rename to ...
2846         (ppc64_skip_trampoline_code_1): ... here.
2847         (ppc64_skip_trampoline_code): New wrapper function.
2848         * symtab.c (find_function_start_sal): Call gdbarch_skip_entrypoint.
2849
2850 2015-09-15  Yao Qi  <yao.qi@linaro.org>
2851
2852         * aarch64-linux-nat.c (aarch64_linux_can_do_single_step): New
2853         function.
2854         (_initialize_aarch64_linux_nat): Install it to to_can_do_single_step.
2855         * arm-linux-tdep.c (arm_linux_software_single_step): Return 0
2856         if target_can_do_single_step returns 1.
2857         * remote.c (struct vCont_action_support) <s, S>: New fields.
2858         (PACKET_vContSupported): New enum.
2859         (remote_protocol_features): New element for vContSupported.
2860         (remote_query_supported): Append "vContSupported+".
2861         (remote_vcont_probe): Remove support_s and support_S, use
2862         rs->supports_vCont.s and rs->supports_vCont.S instead.  Disable
2863         vCont packet if c and C actions are not supported.
2864         (remote_can_do_single_step): New function.
2865         (init_remote_ops): Install it to to_can_do_single_step.
2866         (_initialize_remote): Call add_packet_config_cmd.
2867         * target.h (struct target_ops) <to_can_do_single_step>: New field.
2868         (target_can_do_single_step): New macro.
2869         * target-delegates.c: Re-generated.
2870
2871 2015-09-15  Yao Qi  <yao.qi@linaro.org>
2872
2873         * aarch64-linux-nat.c (aarch64_linux_siginfo_fixup): New function.
2874         (_initialize_aarch64_linux_nat): Call linux_nat_set_siginfo_fixup.
2875         * nat/aarch64-linux.c (aarch64_compat_siginfo_from_siginfo):
2876         New function.
2877         (aarch64_siginfo_from_compat_siginfo): New function.
2878         * nat/aarch64-linux.h: Include signal.h.
2879         (compat_int_t, compat_uptr_t, compat_time_t): Typedef.
2880         (compat_timer_t, compat_clock_t): Likewise.
2881         (struct compat_timeval): New.
2882         (union compat_sigval): New.
2883         (struct compat_siginfo): New.
2884         (cpt_si_pid, cpt_si_uid, cpt_si_timerid): New macros.
2885         (cpt_si_overrun, cpt_si_status, cpt_si_utime): Likewise.
2886         (cpt_si_stime, cpt_si_ptr, cpt_si_addr): Likewise.
2887         (cpt_si_band, cpt_si_fd): Likewise.
2888
2889 2015-09-14  Pedro Alves  <palves@redhat.com>
2890
2891         * infrun.c (current_stop_id): New global.
2892         (get_stop_id, new_stop_id): New functions.
2893         (fetch_inferior_event): Handle normal_stop proceeding the target.
2894         (struct stop_context): New.
2895         (save_stop_context, release_stop_context_cleanup)
2896         (stop_context_changed): New functions.
2897         (normal_stop): Return true if the hook-stop changes the stop
2898         context.
2899         * infrun.h (get_stop_id): Declare.
2900         (normal_stop): Now returns int.  Add documentation.
2901
2902 2015-09-14  Pierre-Marie de Rodat  <derodat@adacore.com>
2903
2904         * ada-lang.c (ada_value_ptr_subscript): Update the heading
2905         comment.  Handle packed arrays.
2906
2907 2015-09-14  Pedro Alves  <palves@redhat.com>
2908
2909         * NEWS (Changes in GDB 7.10, New commands>: Remove duplicate
2910         mention of maint set/show target-non-stop.
2911
2912 2015-09-11  Don Breazeal  <donb@codesourcery.com>
2913
2914         * NEWS: Announce new remote packets for the exec-events
2915         feature and the exec-events feature and associated commands.
2916
2917 2015-09-11  Don Breazeal  <donb@codesourcery.com>
2918
2919         * remote.c (remote_exec_event_p): New function.
2920         (remote_insert_exec_catchpoint): New function.
2921         (remote_remove_exec_catchpoint): New function.
2922         (init_extended_remote_ops): Initialize extended_remote_ops
2923         members to_insert_exec_catchpoint and
2924         to_remove_exec_catchpoint.
2925
2926 2015-09-11  Don Breazeal  <donb@codesourcery.com>
2927             Luis Machado  <lgustavo@codesourcery.com>
2928
2929         * infrun.c (follow_exec): Use process-style ptid for
2930         exec message.  Call add_inferior_with_spaces and
2931         target_follow_exec.
2932         * nat/linux-ptrace.c (linux_supports_traceexec): New function.
2933         * nat/linux-ptrace.h (linux_supports_traceexec): Declare.
2934         * remote.c (remote_pspace_data): New static variable.
2935         (remote_pspace_data_cleanup): New function.
2936         (get_remote_exec_file): New function.
2937         (set_remote_exec_file_1): New function.
2938         (set_remote_exec_file): New function.
2939         (show_remote_exec_file): New function.
2940         (remote_exec_file): Delete static variable.
2941         (anonymous enum) <PACKET_exec_event_feature>: New
2942         enumeration constant.
2943         (remote_protocol_features): Add entry for exec-events feature.
2944         (remote_query_supported): Add client side of qSupported query
2945         for exec-events feature.
2946         (remote_follow_exec): New function.
2947         (remote_parse_stop_reply): Handle 'exec' stop reason.
2948         (extended_remote_run, extended_remote_create_inferior): Call
2949         get_remote_exec_file and set_remote_exec_file_1.
2950         (init_extended_remote_ops) <to_follow_exec>: Initialize new
2951         member.
2952         (_initialize_remote): Call
2953         register_program_space_data_with_cleanup.  Call
2954         add_packet_config_cmd for remote exec-events feature.
2955         Modify call to add_setshow_string_noescape_cmd for exec-file
2956         to use new functions set_remote_exec_file and
2957         show_remote_exec_file.
2958         * target-debug.h, target-delegates.c: Regenerated.
2959         * target.c (target_follow_exec): New function.
2960         * target.h (struct target_ops) <to_follow_exec>: New member.
2961         (target_follow_exec): Declare new function.
2962
2963 2015-09-11  Pierre Langlois  <pierre.langlois@arm.com>
2964
2965         * aarch64-tdep.c (decode_cb): Move up comment describing the
2966         encoding.
2967         (decode_tb): Fix a typo in comment above the function.  Move up
2968         comment describing the encoding.
2969
2970 2015-09-11  Pierre Langlois  <pierre.langlois@arm.com>
2971
2972         * aarch64-tdep.c (decode_bcond): Fix incorrect mask.
2973
2974 2015-09-11  Mihail-Marian Nistor  <mihail.nistor@freescale.com>
2975
2976         PR gdb/18947
2977         * aarch64-linux-tdep.c: (aarch64_linux_init_abi): Install
2978         glibc_skip_solib_resolver as gdbarch_skip_solib_resolver callback.
2979
2980 2015-09-10  Simon Marchi  <simon.marchi@ericsson.com>
2981
2982         * ada-lang.c (scan_discrim_bound): Factor out arithmetic
2983         operations.
2984
2985 2015-09-10  Simon Marchi  <simon.marchi@ericsson.com>
2986
2987         * ada-lang.c (ada_search_struct_field): Constify parameters
2988         and/or variables..
2989         (xget_renaming_scope): Likewise.
2990         (ada_is_redundant_range_encoding): Likewise.
2991         (scan_discrim_bound): Likewise.
2992         (to_fixed_range_type): Likewise.
2993
2994 2015-09-10  Yao Qi  <yao.qi@linaro.org>
2995
2996         * breakpoint.c (download_tracepoint_locations): New local
2997         can_download_tracepoint.  Check the result of
2998         target_can_download_tracepoint and save it in
2999         can_download_tracepoint if there are tracepoints to download.
3000         * linux-nat.h (enum tribool): Move it to ...
3001         * common/common-types.h: ... here.
3002
3003 2015-09-09  Pedro Alves  <palves@redhat.com>
3004
3005         * inf-loop.c (inferior_event_handler): Delete INF_TIMER case.
3006         * target.h (enum inferior_event_type) <INF_TIMER>: Delete.
3007
3008 2015-09-09  Pedro Alves  <palves@redhat.com>
3009
3010         * continuations.c (add_continuation, restore_thread_cleanup)
3011         (do_all_continuations_ptid, do_all_continuations_thread_callback)
3012         (do_all_continuations_thread, do_all_continuations)
3013         (discard_all_continuations_thread_callback)
3014         (discard_all_continuations_thread, discard_all_continuations)
3015         (add_intermediate_continuation)
3016         (do_all_intermediate_continuations_thread_callback)
3017         (do_all_intermediate_continuations_thread)
3018         (do_all_intermediate_continuations)
3019         (discard_all_intermediate_continuations_thread_callback)
3020         (discard_all_intermediate_continuations_thread)
3021         (discard_all_intermediate_continuations): Delete.
3022         * continuations.h (add_continuation, do_all_continuations)
3023         (do_all_continuations_thread, discard_all_continuations)
3024         (discard_all_continuations_thread, add_intermediate_continuation)
3025         (do_all_intermediate_continuations)
3026         (do_all_intermediate_continuations_thread)
3027         (discard_all_intermediate_continuations)
3028         (discard_all_intermediate_continuations_thread): Delete
3029         declarations.
3030         * event-top.c (stdin_event_handler): Delete references to
3031         continuations.
3032         * gdbthread.h (struct thread_info): Delete continuations and
3033         intermediate_continuations fields.
3034         * inf-loop.c (inferior_event_handler): Remove references to
3035         continuations.
3036         * infrun.c (infrun_thread_stop_requested_callback): Remove
3037         references to continuations.
3038         * target.h (enum inferior_event_type) <INF_EXEC_CONTINUE>: Delete.
3039         * thread.c: Don't include "continuations.h".
3040         (clear_thread_inferior_resources): Remove references to
3041         continuations.
3042
3043 2015-09-09  Pedro Alves  <palves@redhat.com>
3044
3045         * infcall.c (struct dummy_frame_context_saver): Delete.
3046         (dummy_frame_context_saver_free, dummy_frame_context_saver_dtor)
3047         (dummy_frame_context_saver_drop)
3048         (dummy_frame_context_saver_cleanup)
3049         (dummy_frame_context_saver_get_regs)
3050         (dummy_frame_context_saver_setup): Delete.
3051         * infcall.h (dummy_frame_context_saver_drop)
3052         (dummy_frame_context_saver_cleanup)
3053         (dummy_frame_context_saver_get_regs, dummy_frame_context_saver):
3054         Delete.
3055         (get_return_value): Remove 'ctx_saver' paremeter.  Adjust.
3056         * inferior.h (get_return_value): Remove 'ctx_saver' paremeter.
3057         * python/py-finishbreakpoint.c (bpfinishpy_pre_stop_hook): Adjust.
3058
3059 2015-09-09  Pedro Alves  <palves@redhat.com>
3060
3061         * breakpoint.c: Include "thread-fsm.h".
3062         (struct until_break_command_continuation_args): Delete.
3063         (struct until_break_fsm): New.
3064         (until_break_fsm_ops): New global.
3065         (new_until_break_fsm, until_break_fsm_should_stop): New functions.
3066         (until_break_command_continuation): Delete.
3067         (until_break_fsm_clean_up): New function.
3068         (until_break_fsm_async_reply_reason): New function.
3069         (until_break_command): Adjust to create an until_break_fsm instead
3070         of a continuation.
3071         (momentary_bkpt_print_it): No longer print MI's async-stop-reason
3072         here.
3073         * infcmd.c (struct until_next_fsm): New.
3074         (until_next_fsm_ops): New global.
3075         (new_until_next_fsm, until_next_fsm_should_stop): New function.
3076         (until_next_continuation): Delete.
3077         (until_next_fsm_clean_up, until_next_fsm_async_reply_reason): New
3078         functions.
3079         (until_next_command): Adjust to create a new until_next_fsm
3080         instead of a continuation.
3081
3082 2015-09-09  Pedro Alves  <palves@redhat.com>
3083
3084         * infcall.c: Include thread_fsm.h.
3085         (struct call_return_meta_info): New.
3086         (get_call_return_value): New function, factored out from
3087         call_function_by_hand_dummy.
3088         (struct call_thread_fsm): New.
3089         (call_thread_fsm_ops): New global.
3090         (new_call_thread_fsm, call_thread_fsm_should_stop)
3091         (call_thread_fsm_should_notify_stop): New functions.
3092         (run_inferior_call): Add 'sm' parameter.  Associate the FSM with
3093         the thread.
3094         (call_function_by_hand_dummy): Create a new call_thread_fsm
3095         instance, associate it with the thread, and wait for the FSM to
3096         finish.  If finished successfully, fetch the function's result
3097         value out of the FSM.
3098         * infrun.c (fetch_inferior_event): If the FSM says the stop
3099         shouldn't be notified, don't call normal_stop.
3100         (maybe_remove_breakpoints): New function, factored out from ...
3101         (normal_stop): ... here.  Simplify.
3102         * infrun.h (maybe_remove_breakpoints): Declare.
3103         * thread-fsm.c (thread_fsm_should_notify_stop): New function.
3104         (thread-fsm.h) <struct thread_fsm_ops>: New field.
3105         (thread_fsm_should_notify_stop): Declare.
3106
3107 2015-09-09  Pedro Alves  <palves@redhat.com>
3108
3109         * Makefile.in (COMMON_OBS): Add thread-fsm.o.
3110         * breakpoint.c (handle_jit_event): Print debug output.
3111         (bpstat_what): Split event callback handling to ...
3112         (bpstat_run_callbacks): ... this new function.
3113         (momentary_bkpt_print_it): No longer handle bp_finish here.
3114         * breakpoint.h (bpstat_run_callbacks): Declare.
3115         * gdbthread.h (struct thread_info) <step_multi>: Delete field.
3116         <thread_fsm>: New field.
3117         (thread_cancel_execution_command): Declare.
3118         * infcmd.c: Include thread-fsm.h.
3119         (struct step_command_fsm): New.
3120         (step_command_fsm_ops): New global.
3121         (new_step_command_fsm, step_command_fsm_prepare): New functions.
3122         (step_1): Adjust to use step_command_fsm_prepare and
3123         prepare_one_step.
3124         (struct step_1_continuation_args): Delete.
3125         (step_1_continuation): Delete.
3126         (step_command_fsm_should_stop): New function.
3127         (step_once): Delete.
3128         (step_command_fsm_clean_up, step_command_fsm_async_reply_reason)
3129         (prepare_one_step): New function, based on step_once.
3130         (until_next_command): Remove step_multi reference.
3131         (struct return_value_info): New.
3132         (print_return_value): Rename to ...
3133         (print_return_value_1): ... this.  New struct return_value_info
3134         parameter.  Adjust.
3135         (print_return_value): Reimplement as wrapper around
3136         print_return_value_1.
3137         (struct finish_command_fsm): New.
3138         (finish_command_continuation): Delete.
3139         (finish_command_fsm_ops): New global.
3140         (new_finish_command_fsm, finish_command_fsm_should_stop): New
3141         functions.
3142         (finish_command_fsm_clean_up, finish_command_fsm_return_value):
3143         New.
3144         (finish_command_continuation_free_arg): Delete.
3145         (finish_command_fsm_async_reply_reason): New.
3146         (finish_backward, finish_forward): Change symbol parameter to a
3147         finish_command_fsm.  Adjust.
3148         (finish_command): Create a finish_command_fsm.  Adjust.
3149         * infrun.c: Include "thread-fsm.h".
3150         (clear_proceed_status_thread): Delete the thread's FSM.
3151         (infrun_thread_stop_requested_callback): Cancel the thread's
3152         execution command.
3153         (clean_up_just_stopped_threads_fsms): New function.
3154         (fetch_inferior_event): Handle the event_thread's should_stop
3155         method saying the command isn't done yet.
3156         (process_event_stop_test): Run breakpoint callbacks here.
3157         (print_stop_event): Rename to ...
3158         (print_stop_location): ... this.
3159         (restore_current_uiout_cleanup): New function.
3160         (print_stop_event): Reimplement.
3161         (normal_stop): No longer notify the end_stepping_range observers
3162         here handle "step N" nor "finish" here.  No longer call
3163         print_stop_event here.
3164         * infrun.h (struct return_value_info): Forward declare.
3165         (print_return_value): Declare.
3166         (print_stop_event): Change prototype.
3167         * thread-fsm.c: New file.
3168         * thread-fsm.h: New file.
3169         * thread.c: Include "thread-fsm.h".
3170         (thread_cancel_execution_command): New function.
3171         (clear_thread_inferior_resources): Call it.
3172         * cli/cli-interp.c (cli_on_normal_stop): New function.
3173         (cli_interpreter_init): Install cli_on_normal_stop as normal_stop
3174         observer.
3175         * mi/mi-interp.c: Include "thread-fsm.h".
3176         (restore_current_uiout_cleanup): Delete.
3177         (mi_on_normal_stop): If the thread has an FSM associated, and it
3178         finished, ask it for the async-reply-reason to print.  Always call
3179         print_stop_event here, regardless of the top-level interpreter.
3180         Check bpstat_what to tell whether an asynchronous breakpoint hit
3181         triggered.
3182         * tui/tui-interp.c (tui_on_normal_stop): New function.
3183         (tui_init): Install tui_on_normal_stop as normal_stop observer.
3184
3185 2015-09-09  Pedro Alves  <palves@redhat.com>
3186
3187         * breakpoint.c (bpstat_do_actions_1, until_break_command): Don't
3188         check whether the target can async.
3189         * inf-loop.c (inferior_event_handler): Only call target_async if
3190         the target can async.
3191         * infcall.c: Include top.h and interps.h.
3192         (run_inferior_call): For the interpreter to sync mode while
3193         running the infcall.  Call wait_sync_command_done instead of
3194         wait_for_inferior plus normal_stop.
3195         * infcmd.c (prepare_execution_command): Don't check whether the
3196         target can async when running in the foreground.
3197         (step_1): Delete synchronous case handling.
3198         (step_once): Always install a continuation, even in sync mode.
3199         (until_next_command, finish_forward): Don't check whether the
3200         target can async.
3201         (attach_command_post_wait, notice_new_inferior): Always install a
3202         continuation, even in sync mode.
3203         * infrun.c (mark_infrun_async_event_handler): New function.
3204         (proceed): In sync mode, mark infrun's event source instead of
3205         waiting for events here.
3206         (fetch_inferior_event): If the target can't async, do a blocking
3207         wait.
3208         (prepare_to_wait): In sync mode, mark infrun's event source.
3209         (infrun_async_inferior_event_handler): No longer bail out if the
3210         target can't async.
3211         * infrun.h (mark_infrun_async_event_handler): New declaration.
3212         * linux-nat.c (linux_nat_wait_1): Remove calls to
3213         set_sigint_trap/clear_sigint_trap.
3214         (linux_nat_terminal_inferior): No longer check whether the target
3215         can async.
3216         * mi/mi-interp.c (mi_on_sync_execution_done): Update and simplify
3217         comment.
3218         (mi_execute_command_input_handler): No longer check whether the
3219         target is async.  Update and simplify comment.
3220         * target.c (default_target_wait): New function.
3221         * target.h (struct target_ops) <to_wait>: Now defaults to
3222         default_target_wait.
3223         (default_target_wait): Declare.
3224         * top.c (wait_sync_command_done): New function, factored out from
3225         ...
3226         (maybe_wait_sync_command_done): ... this.
3227         * top.h (wait_sync_command_done): Declare.
3228         * target-delegates.c: Regenerate.
3229
3230 2015-09-09  Markus Metzger  <markus.t.metzger@intel.com>
3231
3232         * nat/linux-btrace.h (struct btrace_target_info) <ptr_bits>: Remove.
3233         * nat/linux-btrace.c: Include filestuff.h and inttypes.h.
3234         Remove include of sys/utsname.h.
3235         (linux_determine_kernel_ptr_bits): Remove.
3236         (linux_determine_kernel_start): New.
3237         (perf_event_is_kernel_addr): Remove tinfo argument.  Update users.
3238         Update check.
3239         (perf_event_skip_bts_record): Remove tinfo argument.  Update users.
3240         (linux_enable_bts, linux_enable_pt): Remove tinfo->ptr_bits
3241         initialization.
3242         * x86-linux-nat.c (x86_linux_enable_btrace): Remove ptr_bits
3243         assignment.
3244
3245 2015-09-07  Pedro Alves  <palves@redhat.com>
3246
3247         * guile/guile-internal.h (as_a_scm_t_subr): New.
3248         * guile/guile.c (misc_guile_functions): Use it.
3249         * guile/scm-arch.c (arch_functions): Use it.
3250         * guile/scm-block.c (block_functions, gdbscm_initialize_blocks):
3251         Use it.
3252         * guile/scm-breakpoint.c (breakpoint_functions): Use it.
3253         * guile/scm-cmd.c (command_functions): Use it.
3254         * guile/scm-disasm.c (disasm_functions): Use it.
3255         * guile/scm-exception.c (exception_functions)
3256         (private_exception_functions): Use it.
3257         * guile/scm-frame.c (frame_functions)
3258         * guile/scm-gsmob.c (gsmob_functions): Use it.
3259         * guile/scm-iterator.c (iterator_functions): Use it.
3260         * guile/scm-lazy-string.c (lazy_string_functions): Use it.
3261         * guile/scm-math.c (math_functions): Use it.
3262         * guile/scm-objfile.c (objfile_functions): Use it.
3263         * guile/scm-param.c (parameter_functions): Use it.
3264         * guile/scm-ports.c (port_functions, private_port_functions): Use
3265         it.
3266         * guile/scm-pretty-print.c (pretty_printer_functions): Use it.
3267         * guile/scm-progspace.c (pspace_functions): Use it.
3268         * guile/scm-string.c (string_functions): Use it.
3269         * guile/scm-symbol.c (symbol_functions): Use it.
3270         * guile/scm-symtab.c (symtab_functions): Use it.
3271         * guile/scm-type.c (type_functions, gdbscm_initialize_types): Use
3272         it.
3273         * guile/scm-value.c (value_functions): Use it.
3274
3275 2015-09-04  Andrew Burgess  <andrew.burgess@embecosm.com>
3276
3277         * tui/tui-data.c (win_with_focus): Remove cast of NULL pointer.
3278         (tui_next_win): Likewise.
3279         (tui_prev_win): Likewise.
3280         (tui_partial_win_by_name): Likewise.
3281         (tui_init_generic_part): Likewise.
3282         (init_content_element): Likewise.
3283         (tui_del_window): Likewise.
3284         (tui_free_window): Likewise.
3285         (tui_del_data_windows): Likewise.
3286         (tui_free_data_content): Likewise.
3287         * tui/tui-layout.c (make_source_or_disasm_window): Likewise.
3288         * tui/tui-regs.c (tui_show_register_group): Likewise.
3289         * tui/tui-win.c (tui_resize_all): Likewise.
3290         (tui_set_focus): Likewise.
3291         (tui_set_win_height): Likewise.
3292         (make_invisible_and_set_new_height): Likewise.
3293         * tui/tui-windata.c (tui_delete_data_content_windows): Likewise.
3294         * tui/tui-wingeneral.c (make_visible): Likewise.
3295
3296 2015-09-04  Andrew Burgess  <andrew.burgess@embecosm.com>
3297
3298         * cli/cli-decode.c (find_cmd): Remove cast of NULL pointer.
3299
3300 2015-09-04  Andrew Burgess  <andrew.burgess@embecosm.com>
3301
3302         * c-valprint.c (print_unpacked_pointer): Remove cast of NULL
3303         pointer.
3304         * dbxread.c (dbx_end_psymtab): Likewise.
3305         * gnu-nat.c (gnu_write_inferior): Likewise.
3306         * mdebugread.c (cross_ref): Likewise.
3307         * p-valprint.c (pascal_val_print): Likewise.
3308         * xcoffread.c (xcoff_end_psymtab): Likewise.
3309
3310 2015-09-04  Yao Qi  <yao.qi@linaro.org>
3311
3312         * NEWS: Mention the aarch64 multi-arch debugging support.
3313
3314 2015-09-03  Pierre-Marie de Rodat  <derodat@adacore.com>
3315
3316         * ada-lang.c (ada_language_arch_info): Create a TYPE_CODE_CHAR
3317         type instead of a TYPE_CODE_INT one for the string_char_type
3318         and the ada_primitive_type_char types.
3319
3320 2015-09-03  Yao Qi  <yao.qi@linaro.org>
3321
3322         * aarch64-linux-nat.c (aarch64_linux_region_ok_for_hw_watchpoint):
3323         Move code to aarch64_linux_region_ok_for_watchpoint.  Call
3324         aarch64_linux_region_ok_for_watchpoint.
3325         * nat/aarch64-linux-hw-point.c (aarch64_linux_region_ok_for_watchpoint):
3326         New function.
3327         * nat/aarch64-linux-hw-point.h (aarch64_linux_region_ok_for_watchpoint):
3328         Declare it.
3329
3330 2015-09-02  Patrick Palka  <patrick@parcs.ath.cx>
3331
3332         * gdb_obstack.h (obstack_strdup): Declare.
3333         * gdb_obstack.c (obstack_strdup): Define.
3334         * gdbarch.sh (gdbarch_obstack_strdup): Declare and define.
3335         * gdbarch.c: Regenerate.
3336         * gdbarch.h: Regenerate.
3337         * gdbtypes.c (arch_type): Use gdbarch_obstack_strdup.
3338
3339 2015-09-02  Patrick Palka  <patrick@parcs.ath.cx>
3340
3341         * gdbtypes.c (copy_type_recursive): Update documentation.
3342
3343 2015-09-01  Sergio Durigan Junior  <sergiodj@redhat.com>
3344
3345         * solib-svr4.c (solib_event_probe_action): Initialize 'probe_argc'
3346         as zero.
3347
3348 2015-09-01  Sergio Durigan Junior  <sergiodj@redhat.com>
3349
3350         * solib-svr4.c (svr4_handle_solib_event): Initialize 'val' as NULL
3351
3352 2015-09-01  Sergio Durigan Junior  <sergiodj@redhat.com>
3353
3354         * solib-svr4.c (solib_event_probe_action): Call
3355         get_probe_argument_count using TRY...CATCH.
3356         (svr4_handle_solib_event): Likewise, for evaluate_probe_argument.
3357
3358 2015-09-01  Sergio Durigan Junior  <sergiodj@redhat.com>
3359
3360         * probe.h (struct probe_ops) <get_probe_argument_count,
3361         evaluate_probe_argument, enable_probe, disable_probe>: Mention in
3362         the comment that the function can throw an exception.
3363         (get_probe_argument_count): Likewise.
3364         (evaluate_probe_argument): Likewise.
3365         * stap-probe.c (stap_get_opcode): Call error instead of
3366         internal_error.
3367         (stap_get_expected_argument_type): Likewise.  Add argument
3368         'probe'.  Improve error message by mentioning the probe's name.
3369         (stap_parse_probe_arguments): Adjust call to
3370         stap_get_expected_argument_type.
3371         (stap_get_arg): Add comment.  Assert that 'probe->args_parsed' is
3372         not zero.  Call internal_error if GDB requests an argument but the
3373         probe has no arguments.
3374
3375 2015-09-01  Pierre-Marie de Rodat  <derodat@adacore.com>
3376
3377         * ada-lang.c (ada_resolve_function): Do not ask the user what
3378         match to use when in completion mode.
3379
3380 2015-08-31  Andrew Burgess  <andrew.burgess@embecosm.com>
3381
3382         * tui/tui-data.c (tui_win_name): Make local variable const, remove
3383         cast of NULL.
3384
3385 2015-08-31  Max Filippov  <jcmvbkbc@gmail.com>
3386
3387         * xtensa-tdep.h (XTENSA_GDBARCH_TDEP_INSTANTIATE): Initialize
3388         call_abi using XSHAL_ABI macro.
3389
3390 2015-08-29  Doug Evans  <xdje42@gmail.com>
3391
3392         * symtab.h (struct symbol): Tweak comment.
3393
3394 2015-08-29  Patrick Palka  <patrick@parcs.ath.cx>
3395
3396         * gdbtypes.c (alloc_type_arch): Allocate the type on the given
3397         gdbarch obstack instead of on the heap.  Update commentary
3398         accordingly.
3399
3400 2015-08-28  Joel Brobecker  <brobecker@adacore.com>
3401
3402         GDB 7.10 released.
3403
3404 2015-08-28  Simon Marchi  <simon.marchi@ericsson.com>
3405
3406         * NEWS: Update entry about non-8-bits addressable memory.
3407
3408 2015-08-28  Ulrich Weigand  <uweigand@de.ibm.com>
3409
3410         Revert:
3411         2014-11-06  Doug Evans  <xdje42@gmail.com>
3412         * solib.c (solib_global_lookup): Fetch arch from objfile,
3413         not target_gdbarch.
3414
3415 2015-08-27  Ulrich Weigand  <uweigand@de.ibm.com>
3416
3417         * ppc-linux-tdep.c (ppc_linux_spe_context_lookup): Do not
3418         attempt to relocate a TLS variable offset.
3419
3420 2015-08-27  Ulrich Weigand  <uweigand@de.ibm.com>
3421
3422         * spu-multiarch.c (parse_spufs_run): Bail out if inferior is not
3423         registered yet.  Set inferior_ptid while calling target_read_memory.
3424
3425 2015-08-27  Ulrich Weigand  <uweigand@de.ibm.com>
3426
3427         * nat/linux-ptrace.h (GDB_ARCH_TRAP_BRKPT): Replace by ...
3428         (GDB_ARCH_IS_TRAP_BRKPT): ... this.  Add __powerpc__ case.
3429         * linux-nat.c (check_stopped_by_breakpoint): Use
3430         GDB_ARCH_IS_TRAP_BRKPT instead of GDB_ARCH_TRAP_BRKPT.
3431
3432 2015-08-27  Ulrich Weigand  <uweigand@de.ibm.com>
3433
3434         * linux-thread-db.c (thread_db_get_thread_local_address): If the
3435         thread was not yet discovered, use thread_from_lwp instead of
3436         calling thread_db_find_new_threads_1.
3437
3438 2015-08-27  Simon Marchi  <simon.marchi@ericsson.com>
3439
3440         * m88k-tdep.c (m88k_analyze_prologue): Fix inverted allocation
3441         statements.
3442
3443 2015-08-27  Simon Marchi  <simon.marchi@ericsson.com>
3444
3445         * NEWS: Document support for non-8-bits addressable memory.
3446
3447 2015-08-27  Pedro Alves  <palves@redhat.com>
3448
3449         * configure.ac: Remove AC_TYPE_SIGNAL call.
3450         * configure, config.in: Regenerate.
3451
3452 2015-08-27  Pedro Alves  <palves@redhat.com>
3453
3454         * cp-support.c (gdb_demangle): Use sighandler_t.  Remove cast.
3455         * extension-priv.h: Include signal.h.
3456         (struct signal_handler) <handler>: Change type to sighandler_t.
3457         * extension.c (install_gdb_sigint_handler): Use sighandler_t.
3458         * inflow.c (sigint_ours, sigquit_ours): Change type to
3459         sighandler_t.
3460         (child_terminal_inferior): Remove casts.
3461         (child_terminal_ours_1, new_tty): Use sighandler_t.  Remove casts.
3462         (osig): Change type to sighandler_t.
3463         * nto-procfs.c (ofunc): Change type to sighandler_t.
3464         (procfs_wait): Remove casts.
3465         * remote-m32r-sdi.c (m32r_wait, m32r_load): Use sighandler_t.
3466         * remote-sim.c (gdbsim_wait): Use sighandler_t.
3467         * utils.c (wait_to_die_with_timeout): Use sighandler_t.
3468
3469 2015-08-27  Pedro Alves  <palves@redhat.com>
3470
3471         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add signal-h.
3472         * gnulib/aclocal.m4: Renegerate.
3473         * gnulib/config.in: Renegerate.
3474         * gnulib/configure: Renegerate.
3475         * gnulib/import/Makefile.am: Update.
3476         * gnulib/import/Makefile.in: Regenerate.
3477         * gnulib/import/m4/gnulib-cache.m4: Update.
3478         * gnulib/import/m4/gnulib-comp.m4: Update.
3479         * gnulib/import/m4/signal_h.m4: New file.
3480         * gnulib/import/signal.in.h: New file.
3481
3482 2015-08-27  Pedro Alves  <palves@redhat.com>
3483
3484         * remote.c (DEFAULT_MAX_MEMORY_PACKET_SIZE)
3485         (MIN_MEMORY_PACKET_SIZE): New.
3486         (MAX_REMOTE_PACKET_SIZE, MIN_REMOTE_PACKET_SIZE): Delete.
3487         (get_memory_packet_size): Adjust.  No longer limit the max packet
3488         size.
3489         (set_memory_packet_size): Adjust, and remove dead code.
3490         (remote_check_symbols): Use xmalloc and a cleanup instead of
3491         alloca.
3492         (remote_packet_size): No longer cap the packet size.
3493         (putpkt_binary): Use xmalloc and a cleanup instead of alloca.
3494
3495 2015-08-26  Luis Machado  <lgustavo@codesourcery.com>
3496
3497         * compile/compile.c (compile_to_object): Mention language in
3498         error message.
3499
3500 2015-08-26  Patrick Palka  <patrick@parcs.ath.cx>
3501
3502         * target.c (target_pre_inferior): Unset attach_flag.
3503
3504 2015-08-26  Simon Marchi  <simon.marchi@ericsson.com>
3505
3506         * gdbarch.sh (append_name): Fix type in XRESIZEVEC.
3507         * gdbarch.c: Re-generate.
3508
3509 2015-08-26  Simon Marchi  <simon.marchi@ericsson.com>
3510
3511         * aarch64-linux-nat.c (aarch64_add_process): Replace xmalloc-family
3512         function with the XNEW-family equivalent.
3513         * aarch64-tdep.c (aarch64_gdbarch_init): Likewise.
3514         * ada-exp.y (write_ambiguous_var): Likewise.
3515         * ada-lang.c (resolve_subexp): Likewise.
3516         (user_select_syms): Likewise.
3517         (assign_aggregate): Likewise.
3518         (ada_evaluate_subexp): Likewise.
3519         (cache_symbol): Likewise.
3520         * addrmap.c (allocate_key): Likewise.
3521         (addrmap_create_mutable): Likewise.
3522         * aix-thread.c (sync_threadlists): Likewise.
3523         * alpha-tdep.c (alpha_push_dummy_call): Likewise.
3524         (alpha_gdbarch_init): Likewise.
3525         * amd64-windows-tdep.c (amd64_windows_push_arguments): Likewise.
3526         * arm-linux-nat.c (arm_linux_add_process): Likewise.
3527         * arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Likewise.
3528         * arm-tdep.c (push_stack_item): Likewise.
3529         (arm_displaced_step_copy_insn): Likewise.
3530         (arm_gdbarch_init): Likewise.
3531         (_initialize_arm_tdep): Likewise.
3532         * avr-tdep.c (push_stack_item): Likewise.
3533         * ax-general.c (new_agent_expr): Likewise.
3534         * block.c (block_initialize_namespace): Likewise.
3535         * breakpoint.c (alloc_counted_command_line): Likewise.
3536         (update_dprintf_command_list): Likewise.
3537         (parse_breakpoint_sals): Likewise.
3538         (decode_static_tracepoint_spec): Likewise.
3539         (until_break_command): Likewise.
3540         (clear_command): Likewise.
3541         (update_global_location_list): Likewise.
3542         (get_breakpoint_objfile_data) Likewise.
3543         * btrace.c (ftrace_new_function): Likewise.
3544         (btrace_set_insn_history): Likewise.
3545         (btrace_set_call_history): Likewise.
3546         * buildsym.c (add_symbol_to_list): Likewise.
3547         (record_pending_block): Likewise.
3548         (start_subfile): Likewise.
3549         (start_buildsym_compunit): Likewise.
3550         (push_subfile): Likewise.
3551         (end_symtab_get_static_block): Likewise.
3552         (buildsym_init): Likewise.
3553         * cli/cli-cmds.c (source_command): Likewise.
3554         * cli/cli-decode.c (add_cmd): Likewise.
3555         * cli/cli-script.c (build_command_line): Likewise.
3556         (setup_user_args): Likewise.
3557         (realloc_body_list): Likewise.
3558         (process_next_line): Likewise.
3559         (copy_command_lines): Likewise.
3560         * cli/cli-setshow.c (do_set_command): Likewise.
3561         * coff-pe-read.c (read_pe_exported_syms): Likewise.
3562         * coffread.c (coff_locate_sections): Likewise.
3563         (coff_symtab_read): Likewise.
3564         (coff_read_struct_type): Likewise.
3565         * common/cleanups.c (make_my_cleanup2): Likewise.
3566         * common/common-exceptions.c (throw_it): Likewise.
3567         * common/filestuff.c (make_cleanup_close): Likewise.
3568         * common/format.c (parse_format_string): Likewise.
3569         * common/queue.h (DEFINE_QUEUE_P): Likewise.
3570         * compile/compile-object-load.c (munmap_list_add): Likewise.
3571         (compile_object_load): Likewise.
3572         * compile/compile-object-run.c (compile_object_run): Likewise.
3573         * compile/compile.c (append_args): Likewise.
3574         * corefile.c (specify_exec_file_hook): Likewise.
3575         * cp-support.c (make_symbol_overload_list): Likewise.
3576         * cris-tdep.c (push_stack_item): Likewise.
3577         (cris_gdbarch_init): Likewise.
3578         * ctf.c (ctf_trace_file_writer_new): Likewise.
3579         * dbxread.c (init_header_files): Likewise.
3580         (add_new_header_file): Likewise.
3581         (init_bincl_list): Likewise.
3582         (dbx_end_psymtab): Likewise.
3583         (start_psymtab): Likewise.
3584         (dbx_end_psymtab): Likewise.
3585         * dcache.c (dcache_init): Likewise.
3586         * dictionary.c (dict_create_hashed): Likewise.
3587         (dict_create_hashed_expandable): Likewise.
3588         (dict_create_linear): Likewise.
3589         (dict_create_linear_expandable): Likewise.
3590         * dtrace-probe.c (dtrace_process_dof_probe): Likewise.
3591         * dummy-frame.c (register_dummy_frame_dtor): Likewise.
3592         * dwarf2-frame-tailcall.c (cache_new_ref1): Likewise.
3593         * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
3594         (decode_frame_entry_1): Likewise.
3595         * dwarf2expr.c (new_dwarf_expr_context): Likewise.
3596         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Likewise.
3597         * dwarf2read.c (dwarf2_has_info): Likewise.
3598         (create_signatured_type_table_from_index): Likewise.
3599         (dwarf2_read_index): Likewise.
3600         (dw2_get_file_names_reader): Likewise.
3601         (create_all_type_units): Likewise.
3602         (read_cutu_die_from_dwo): Likewise.
3603         (init_tu_and_read_dwo_dies): Likewise.
3604         (init_cutu_and_read_dies): Likewise.
3605         (create_all_comp_units): Likewise.
3606         (queue_comp_unit): Likewise.
3607         (inherit_abstract_dies): Likewise.
3608         (read_call_site_scope): Likewise.
3609         (dwarf2_add_field): Likewise.
3610         (dwarf2_add_typedef): Likewise.
3611         (dwarf2_add_member_fn): Likewise.
3612         (attr_to_dynamic_prop): Likewise.
3613         (abbrev_table_alloc_abbrev): Likewise.
3614         (abbrev_table_read_table): Likewise.
3615         (add_include_dir): Likewise.
3616         (add_file_name): Likewise.
3617         (dwarf_decode_line_header): Likewise.
3618         (dwarf2_const_value_attr): Likewise.
3619         (dwarf_alloc_block): Likewise.
3620         (parse_macro_definition): Likewise.
3621         (set_die_type): Likewise.
3622         (write_psymtabs_to_index): Likewise.
3623         (create_cus_from_index): Likewise.
3624         (dwarf2_create_include_psymtab): Likewise.
3625         (process_psymtab_comp_unit_reader): Likewise.
3626         (build_type_psymtab_dependencies): Likewise.
3627         (read_comp_units_from_section): Likewise.
3628         (compute_compunit_symtab_includes): Likewise.
3629         (create_dwo_unit_in_dwp_v1): Likewise.
3630         (create_dwo_unit_in_dwp_v2): Likewise.
3631         (read_func_scope): Likewise.
3632         (process_structure_scope): Likewise.
3633         (mark_common_block_symbol_computed): Likewise.
3634         (load_partial_dies): Likewise.
3635         (dwarf2_symbol_mark_computed): Likewise.
3636         * elfread.c (elf_symfile_segments): Likewise.
3637         (elf_read_minimal_symbols): Likewise.
3638         * environ.c (make_environ): Likewise.
3639         * eval.c (evaluate_subexp_standard): Likewise.
3640         * event-loop.c (create_file_handler): Likewise.
3641         (create_async_signal_handler): Likewise.
3642         (create_async_event_handler): Likewise.
3643         (create_timer): Likewise.
3644         * exec.c (build_section_table): Likewise.
3645         * fbsd-nat.c (fbsd_remember_child): Likewise.
3646         * fork-child.c (fork_inferior): Likewise.
3647         * frv-tdep.c (new_variant): Likewise.
3648         * gdbarch.sh (gdbarch_alloc): Likewise.
3649         (append_name): Likewise.
3650         * gdbtypes.c (rank_function): Likewise.
3651         (copy_type_recursive): Likewise.
3652         (add_dyn_prop): Likewise.
3653         * gnu-nat.c (make_proc): Likewise.
3654         (make_inf): Likewise.
3655         (gnu_write_inferior): Likewise.
3656         * gnu-v3-abi.c (build_gdb_vtable_type): Likewise.
3657         (build_std_type_info_type): Likewise.
3658         * guile/scm-param.c (compute_enum_list): Likewise.
3659         * guile/scm-utils.c (gdbscm_parse_function_args): Likewise.
3660         * guile/scm-value.c (gdbscm_value_call): Likewise.
3661         * h8300-tdep.c (h8300_gdbarch_init): Likewise.
3662         * hppa-tdep.c (hppa_init_objfile_priv_data): Likewise.
3663         (read_unwind_info): Likewise.
3664         * ia64-tdep.c (ia64_gdbarch_init): Likewise.
3665         * infcall.c (dummy_frame_context_saver_setup): Likewise.
3666         (call_function_by_hand_dummy): Likewise.
3667         * infcmd.c (step_once): Likewise.
3668         (finish_forward): Likewise.
3669         (attach_command): Likewise.
3670         (notice_new_inferior): Likewise.
3671         * inferior.c (add_inferior_silent): Likewise.
3672         * infrun.c (add_displaced_stepping_state): Likewise.
3673         (save_infcall_control_state): Likewise.
3674         (save_inferior_ptid): Likewise.
3675         (_initialize_infrun): Likewise.
3676         * jit.c (bfd_open_from_target_memory): Likewise.
3677         (jit_gdbarch_data_init): Likewise.
3678         * language.c (add_language): Likewise.
3679         * linespec.c (decode_line_2): Likewise.
3680         * linux-nat.c (add_to_pid_list): Likewise.
3681         (add_initial_lwp): Likewise.
3682         * linux-thread-db.c (add_thread_db_info): Likewise.
3683         (record_thread): Likewise.
3684         (info_auto_load_libthread_db): Likewise.
3685         * m32c-tdep.c (m32c_gdbarch_init): Likewise.
3686         * m68hc11-tdep.c (m68hc11_gdbarch_init): Likewise.
3687         * m68k-tdep.c (m68k_gdbarch_init): Likewise.
3688         * m88k-tdep.c (m88k_analyze_prologue): Likewise.
3689         * macrocmd.c (macro_define_command): Likewise.
3690         * macroexp.c (gather_arguments): Likewise.
3691         * macroscope.c (sal_macro_scope): Likewise.
3692         * macrotab.c (new_macro_table): Likewise.
3693         * mdebugread.c (push_parse_stack): Likewise.
3694         (parse_partial_symbols): Likewise.
3695         (parse_symbol): Likewise.
3696         (psymtab_to_symtab_1): Likewise.
3697         (new_block): Likewise.
3698         (new_psymtab): Likewise.
3699         (mdebug_build_psymtabs): Likewise.
3700         (add_pending): Likewise.
3701         (elfmdebug_build_psymtabs): Likewise.
3702         * mep-tdep.c (mep_gdbarch_init): Likewise.
3703         * mi/mi-main.c (mi_execute_command): Likewise.
3704         * mi/mi-parse.c (mi_parse_argv): Likewise.
3705         * minidebug.c (lzma_open): Likewise.
3706         * minsyms.c (terminate_minimal_symbol_table): Likewise.
3707         * mips-linux-nat.c (mips_linux_insert_watchpoint): Likewise.
3708         * mips-tdep.c (mips_gdbarch_init): Likewise.
3709         * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
3710         * msp430-tdep.c (msp430_gdbarch_init): Likewise.
3711         * mt-tdep.c (mt_registers_info): Likewise.
3712         * nat/aarch64-linux.c (aarch64_linux_new_thread): Likewise.
3713         * nat/linux-btrace.c (linux_enable_bts): Likewise.
3714         (linux_enable_pt): Likewise.
3715         * nat/linux-osdata.c (linux_xfer_osdata_processes): Likewise.
3716         (linux_xfer_osdata_processgroups): Likewise.
3717         * nios2-tdep.c (nios2_gdbarch_init): Likewise.
3718         * nto-procfs.c (procfs_meminfo): Likewise.
3719         * objc-lang.c (start_msglist): Likewise.
3720         (selectors_info): Likewise.
3721         (classes_info): Likewise.
3722         (find_methods): Likewise.
3723         * objfiles.c (allocate_objfile): Likewise.
3724         (update_section_map): Likewise.
3725         * osabi.c (gdbarch_register_osabi): Likewise.
3726         (gdbarch_register_osabi_sniffer): Likewise.
3727         * parse.c (start_arglist): Likewise.
3728         * ppc-linux-nat.c (hwdebug_find_thread_points_by_tid): Likewise.
3729         (hwdebug_insert_point): Likewise.
3730         * printcmd.c (display_command): Likewise.
3731         (ui_printf): Likewise.
3732         * procfs.c (create_procinfo): Likewise.
3733         (load_syscalls): Likewise.
3734         (proc_get_LDT_entry): Likewise.
3735         (proc_update_threads): Likewise.
3736         * prologue-value.c (make_pv_area): Likewise.
3737         (pv_area_store): Likewise.
3738         * psymtab.c (extend_psymbol_list): Likewise.
3739         (init_psymbol_list): Likewise.
3740         (allocate_psymtab): Likewise.
3741         * python/py-inferior.c (add_thread_object): Likewise.
3742         * python/py-param.c (compute_enum_values): Likewise.
3743         * python/py-value.c (valpy_call): Likewise.
3744         * python/py-varobj.c (py_varobj_iter_next): Likewise.
3745         * python/python.c (ensure_python_env): Likewise.
3746         * record-btrace.c (record_btrace_start_replaying): Likewise.
3747         * record-full.c (record_full_reg_alloc): Likewise.
3748         (record_full_mem_alloc): Likewise.
3749         (record_full_end_alloc): Likewise.
3750         (record_full_core_xfer_partial): Likewise.
3751         * regcache.c (get_thread_arch_aspace_regcache): Likewise.
3752         * remote-fileio.c (remote_fileio_init_fd_map): Likewise.
3753         * remote-notif.c (remote_notif_state_allocate): Likewise.
3754         * remote.c (demand_private_info): Likewise.
3755         (remote_notif_stop_alloc_reply): Likewise.
3756         (remote_enable_btrace): Likewise.
3757         * reverse.c (save_bookmark_command): Likewise.
3758         * rl78-tdep.c (rl78_gdbarch_init): Likewise.
3759         * rx-tdep.c (rx_gdbarch_init): Likewise.
3760         * s390-linux-nat.c (s390_insert_watchpoint): Likewise.
3761         * ser-go32.c (dos_get_tty_state): Likewise.
3762         (dos_copy_tty_state): Likewise.
3763         * ser-mingw.c (ser_windows_open): Likewise.
3764         (ser_console_wait_handle): Likewise.
3765         (ser_console_get_tty_state): Likewise.
3766         (make_pipe_state): Likewise.
3767         (net_windows_open): Likewise.
3768         * ser-unix.c (hardwire_get_tty_state): Likewise.
3769         (hardwire_copy_tty_state): Likewise.
3770         * solib-aix.c (solib_aix_new_lm_info): Likewise.
3771         * solib-dsbt.c (dsbt_current_sos): Likewise.
3772         (dsbt_relocate_main_executable): Likewise.
3773         * solib-frv.c (frv_current_sos): Likewise.
3774         (frv_relocate_main_executable): Likewise.
3775         * solib-spu.c (spu_bfd_fopen): Likewise.
3776         * solib-svr4.c (lm_info_read): Likewise.
3777         (svr4_copy_library_list): Likewise.
3778         (svr4_default_sos): Likewise.
3779         * source.c (find_source_lines): Likewise.
3780         (line_info): Likewise.
3781         (add_substitute_path_rule): Likewise.
3782         * spu-linux-nat.c (spu_bfd_open): Likewise.
3783         * spu-tdep.c (info_spu_dma_cmdlist): Likewise.
3784         * stabsread.c (dbx_lookup_type): Likewise.
3785         (read_type): Likewise.
3786         (read_member_functions): Likewise.
3787         (read_struct_fields): Likewise.
3788         (read_baseclasses): Likewise.
3789         (read_args): Likewise.
3790         (_initialize_stabsread): Likewise.
3791         * stack.c (func_command): Likewise.
3792         * stap-probe.c (handle_stap_probe): Likewise.
3793         * symfile.c (addrs_section_sort): Likewise.
3794         (addr_info_make_relative): Likewise.
3795         (load_section_callback): Likewise.
3796         (add_symbol_file_command): Likewise.
3797         (init_filename_language_table): Likewise.
3798         * symtab.c (create_filename_seen_cache): Likewise.
3799         (sort_search_symbols_remove_dups): Likewise.
3800         (search_symbols): Likewise.
3801         * target.c (make_cleanup_restore_target_terminal): Likewise.
3802         * thread.c (new_thread): Likewise.
3803         (enable_thread_stack_temporaries): Likewise.
3804         (make_cleanup_restore_current_thread): Likewise.
3805         (thread_apply_all_command): Likewise.
3806         * tic6x-tdep.c (tic6x_gdbarch_init): Likewise.
3807         * top.c (gdb_readline_wrapper): Likewise.
3808         * tracefile-tfile.c (tfile_trace_file_writer_new): Likewise.
3809         * tracepoint.c (trace_find_line_command): Likewise.
3810         (all_tracepoint_actions_and_cleanup): Likewise.
3811         (make_cleanup_restore_current_traceframe): Likewise.
3812         (get_uploaded_tp): Likewise.
3813         (get_uploaded_tsv): Likewise.
3814         * tui/tui-data.c (tui_alloc_generic_win_info): Likewise.
3815         (tui_alloc_win_info): Likewise.
3816         (tui_alloc_content): Likewise.
3817         (tui_add_content_elements): Likewise.
3818         * tui/tui-disasm.c (tui_find_disassembly_address): Likewise.
3819         (tui_set_disassem_content): Likewise.
3820         * ui-file.c (ui_file_new): Likewise.
3821         (stdio_file_new): Likewise.
3822         (tee_file_new): Likewise.
3823         * utils.c (make_cleanup_restore_integer): Likewise.
3824         (add_internal_problem_command): Likewise.
3825         * v850-tdep.c (v850_gdbarch_init): Likewise.
3826         * valops.c (find_oload_champ): Likewise.
3827         * value.c (allocate_value_lazy): Likewise.
3828         (record_latest_value): Likewise.
3829         (create_internalvar): Likewise.
3830         * varobj.c (install_variable): Likewise.
3831         (new_variable): Likewise.
3832         (new_root_variable): Likewise.
3833         (cppush): Likewise.
3834         (_initialize_varobj): Likewise.
3835         * windows-nat.c (windows_make_so): Likewise.
3836         * x86-nat.c (x86_add_process): Likewise.
3837         * xcoffread.c (arrange_linetable): Likewise.
3838         (allocate_include_entry): Likewise.
3839         (process_linenos): Likewise.
3840         (SYMBOL_DUP): Likewise.
3841         (xcoff_start_psymtab): Likewise.
3842         (xcoff_end_psymtab): Likewise.
3843         * xml-support.c (gdb_xml_parse_attr_ulongest): Likewise.
3844         * xtensa-tdep.c (xtensa_register_type): Likewise.
3845         * gdbarch.c: Regenerate.
3846         * gdbarch.h: Regenerate.
3847
3848 2015-08-25  Don Breazeal  <donb@codesourcery.com>
3849
3850         * infrun.c (follow_exec): Re-order operations for
3851         handling follow-exec-mode "new".
3852         (handle_inferior_event_1): Assign ecs->event_thread
3853         to the current thread.
3854         * remote.c (get_remote_arch_state): Add an assertion.
3855
3856 2015-08-26  Pedro Alves  <palves@redhat.com>
3857
3858         * MAINTAINERS: Add Markus Metzger as btrace maintainer.
3859
3860 2015-08-25  Pedro Alves  <palves@redhat.com>
3861
3862         PR gdb/18804
3863         * defs.h (maybe_quit): Declare.
3864         (QUIT): Now calls maybe_quit.
3865         * event-loop.c (clear_async_signal_handler)
3866         (async_signal_handler_is_marked): New functions.
3867         * event-loop.h (async_signal_handler_is_marked)
3868         (clear_async_signal_handler): New declarations.
3869         * remote.c (remote_check_pending_interrupt): New function.
3870         (interrupt_query): Use make_cleanup_restore_target_terminal.  No
3871         longer check whether the target is async.  If waiting for a stop
3872         reply, and a Ctrl-C as been sent to the target, offer to
3873         disconnect, and throw TARGET_CLOSE_ERROR instead of a quit.
3874         Otherwise do not disconnect and throw a quit.
3875         (_initialize_remote): Install remote_check_pending_interrupt as
3876         to_check_pending_interrupt.
3877         * target.c (target_check_pending_interrupt): New function.
3878         * target.h (struct target_ops) <to_check_pending_interrupt>: New
3879         field.
3880         (target_check_pending_interrupt): New declaration.
3881         * utils.c (maybe_quit): New function.
3882         * target-delegates.c: Regenerate.
3883
3884 2015-08-25  Yao Qi  <yao.qi@linaro.org>
3885
3886         * nat/aarch64-linux-hw-point.c (debug_reg_change_callback):
3887         Rename local variable pid to tid, and get lwpid of lwp.  Update
3888         debug output.
3889
3890 2015-08-25  Pierre-Marie de Rodat  <derodat@adacore.com>
3891
3892         * ada-lang.c (ada_read_var_value): Add a var_block argument
3893         and pass it to default_read_var_value.
3894         * block.c (block_static_link): New accessor.
3895         * block.h (block_static_link): Declare it.
3896         * buildsym.c (finish_block_internal): Add a static_link
3897         argument.  If there is a static link, associate it to the new
3898         block.
3899         (finish_block): Add a static link argument and pass it to
3900         finish_block_internal.
3901         (end_symtab_get_static_block): Update calls to finish_block and
3902         to finish_block_internal.
3903         (end_symtab_with_blockvector): Update call to
3904         finish_block_internal.
3905         * buildsym.h: Forward-declare struct dynamic_prop.
3906         (struct context_stack): Add a static_link field.
3907         (finish_block): Add a static link argument.
3908         * c-exp.y: Remove an obsolete comment (evaluation of variables
3909         already start from the selected frame, and now they climb *up*
3910         the call stack) and propagate the block information to the
3911         produced expression.
3912         * d-exp.y: Likewise.
3913         * f-exp.y: Likewise.
3914         * go-exp.y: Likewise.
3915         * jv-exp.y: Likewise.
3916         * m2-exp.y: Likewise.
3917         * p-exp.y: Likewise.
3918         * coffread.c (coff_symtab_read): Update calls to finish_block.
3919         * dbxread.c (process_one_symbol): Likewise.
3920         * xcoffread.c (read_xcoff_symtab): Likewise.
3921         * compile/compile-c-symbols.c (convert_one_symbol): Promote the
3922         "sym" parameter to struct block_symbol, update its uses and pass
3923         its block to calls to read_var_value.
3924         (convert_symbol_sym): Update the calls to convert_one_symbol.
3925         * compile/compile-loc2c.c (do_compile_dwarf_expr_to_c): Update
3926         call to read_var_value.
3927         * dwarf2loc.c (block_op_get_frame_base): New.
3928         (dwarf2_block_frame_base_locexpr_funcs): Implement the
3929         get_frame_base method.
3930         (dwarf2_block_frame_base_loclist_funcs): Likewise.
3931         (dwarf2locexpr_baton_eval): Add a frame argument and use it
3932         instead of the selected frame in order to evaluate the
3933         expression.
3934         (dwarf2_evaluate_property): Add a frame argument.  Update call
3935         to dwarf2_locexpr_baton_eval to provide a frame in available and
3936         to handle the absence of address stack.
3937         * dwarf2loc.h (dwarf2_evaluate_property): Add a frame argument.
3938         * dwarf2read.c (attr_to_dynamic_prop): Add a forward
3939         declaration.
3940         (read_func_scope): Record any available static link description.
3941         Update call to finish_block.
3942         (read_lexical_block_scope): Update call to finish_block.
3943         * findvar.c (follow_static_link): New.
3944         (get_hosting_frame): New.
3945         (default_read_var_value): Add a var_block argument.  Use
3946         get_hosting_frame to handle non-local references.
3947         (read_var_value): Add a var_block argument and pass it to the
3948         LA_READ_VAR_VALUE method.
3949         * gdbtypes.c (resolve_dynamic_range): Update calls to
3950         dwarf2_evaluate_property.
3951         (resolve_dynamic_type_internal): Likewise.
3952         * guile/scm-frame.c (gdbscm_frame_read_var): Update call to
3953         read_var_value, passing it the block coming from symbol lookup.
3954         * guile/scm-symbol.c (gdbscm_symbol_value): Update call to
3955         read_var_value (TODO).
3956         * infcmd.c (finish_command_continuation): Update call to
3957         read_var_value, passing it the block coming from symbol lookup.
3958         * infrun.c (insert_exception_resume_breakpoint): Likewise.
3959         * language.h (struct language_defn): Add a var_block argument to
3960         the LA_READ_VAR_VALUE method.
3961         * objfiles.c (struct static_link_htab_entry): New.
3962         (static_link_htab_entry_hash): New.
3963         (static_link_htab_entry_eq): New.
3964         (objfile_register_static_link): New.
3965         (objfile_lookup_static_link): New.
3966         (free_objfile): Free the STATIC_LINKS hashed map if needed.
3967         * objfiles.h: Include hashtab.h.
3968         (struct objfile): Add a static_links field.
3969         (objfile_register_static_link): New.
3970         (objfile_lookup_static_link): New.
3971         * printcmd.c (print_variable_and_value): Update call to
3972         read_var_value.
3973         * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
3974         * python/py-frame.c (frapy_read_var): Update call to
3975         read_var_value, passing it the block coming from symbol lookup.
3976         * python/py-framefilter.c (extract_sym): Add a sym_block
3977         parameter and set the pointed value to NULL (TODO).
3978         (enumerate_args): Update call to extract_sym.
3979         (enumerate_locals): Update calls to extract_sym and to
3980         read_var_value.
3981         * python/py-symbol.c (sympy_value): Update call to
3982         read_var_value (TODO).
3983         * stack.c (read_frame_local): Update call to read_var_value.
3984         (read_frame_arg): Likewise.
3985         (return_command): Likewise.
3986         * symtab.h (struct symbol_block_ops): Add a get_frame_base
3987         method.
3988         (struct symbol): Add a block field.
3989         (SYMBOL_BLOCK): New accessor.
3990         * valops.c (value_of_variable): Remove frame/block handling and
3991         pass the block argument to read_var_value, which does this job
3992         now.
3993         (value_struct_elt_for_reference): Update calls to
3994         read_var_value.
3995         (value_of_this): Pass the block found to read_var_value.
3996         * value.h (read_var_value): Add a var_block argument.
3997         (default_read_var_value): Likewise.
3998
3999 2015-08-25  Yao Qi  <yao.qi@linaro.org>
4000
4001         * aarch64-linux-nat.c (aarch64_linux_new_thread): Move it to ...
4002         * nat/aarch64-linux.c (aarch64_linux_new_thread): ... here.
4003         * nat/aarch64-linux.h (aarch64_linux_new_thread): Declare.
4004
4005 2015-08-25  Yao Qi  <yao.qi@linaro.org>
4006
4007         * Makefile.in (aarch64-liunx.o): New rule.
4008         (HFILES_NO_SRCDIR): Add aarch64-linux.h.
4009         * config/aarch64/linux.mh (NAT_FILE): Add aarch64-linux.o.
4010         * aarch64-linux-nat.c: Include nat/aarch64-linux.h.
4011         * aarch64-linux-nat.c (aarch64_get_debug_reg_state): Make it
4012         extern.
4013         (aarch64_linux_prepare_to_resume): Move it nat/aarch64-linux.c.
4014         * nat/aarch64-linux-hw-point.h (aarch64_debug_reg_state): Declare
4015         * nat/aarch64-linux.c: New file.
4016         * nat/aarch64-linux.h: New file.
4017
4018 2015-08-25  Yao Qi  <yao.qi@linaro.org>
4019
4020         * aarch64-linux-nat.c (aarch64_linux_prepare_to_resume): Use
4021         lwp_arch_private_info and ptid_of_lwp.
4022
4023 2015-08-25  Yao Qi  <yao.qi@linaro.org>
4024
4025         * aarch64-linux-nat.c (struct arch64_dr_update_callback_param):
4026         Move it to nat/aarch64-linux-hw-point.c.
4027         (debug_reg_change_callback): Likewise.
4028         (aarch64_notify_debug_reg_change): :Likewise.
4029         * nat/aarch64-linux-hw-point.c: Include nat/linux-nat.h.
4030         (aarch64_dr_update_callback_param): New.
4031         (debug_reg_change_callback): New function.
4032         (aarch64_notify_debug_reg_change): Likewise.
4033         * nat/aarch64-linux-hw-point.h (aarch64_notify_debug_reg_change):
4034         Remove the declaration.
4035
4036 2015-08-25  Yao Qi  <yao.qi@linaro.org>
4037
4038         * aarch64-linux-nat.c (aarch64_notify_debug_reg_change):
4039         Call current_lwp_ptid.
4040
4041 2015-08-25  Yao Qi  <yao.qi@linaro.org>
4042
4043         * aarch64-linux-nat.c (debug_reg_change_callback): Use
4044         debug_printf.
4045
4046 2015-08-25  Yao Qi  <yao.qi@linaro.org>
4047
4048         * aarch64-linux-nat.c (debug_reg_change_callback): Call
4049         ptid_get_pid rather than ptid_get_lwp.
4050
4051 2015-08-24  Pedro Alves  <palves@redhat.com>
4052
4053         * NEWS (New commands): Mention set/show remote
4054         multiprocess-extensions-packet.
4055         * remote.c (remote_query_supported): Only tell the server to use
4056         the multiprocess extensions if the user hasn't force-disabled them
4057         with "set remote multiprocess-extensions-packet off".
4058
4059 2015-08-24  Pedro Alves  <palves@redhat.com>
4060
4061         * gnulib/update-gnulib.sh (GNULIB_COMMIT_SHA1): Set to
4062         1029a8112290f6eee9d7878a391c49db42c999bd.
4063         * gnulib/configure, gnulib/config.in, gnulib/aclocal.m4:
4064         Regenerate.
4065         * gnulib/import/Makefile.am: Update.
4066         * gnulib/import/Makefile.in: Update.
4067         * gnulib/import/alloca.in.h: Update.
4068         * gnulib/import/basename-lgpl.c: Update.
4069         * gnulib/import/canonicalize-lgpl.c: Update.
4070         * gnulib/import/config.charset: Update.
4071         * gnulib/import/dirent.in.h: Update.
4072         * gnulib/import/dirfd.c: Update.
4073         * gnulib/import/dirname-lgpl.c: Update.
4074         * gnulib/import/dirname.h: Update.
4075         * gnulib/import/dosname.h: Update.
4076         * gnulib/import/errno.in.h: Update.
4077         * gnulib/import/extra/snippet/arg-nonnull.h: Update.
4078         * gnulib/import/extra/snippet/c++defs.h: Update.
4079         * gnulib/import/extra/snippet/warn-on-use.h: Update.
4080         * gnulib/import/extra/update-copyright: Update.
4081         * gnulib/import/float+.h: Update.
4082         * gnulib/import/float.c: Update.
4083         * gnulib/import/float.in.h: Update.
4084         * gnulib/import/fnmatch.c: Update.
4085         * gnulib/import/fnmatch.in.h: Update.
4086         * gnulib/import/fnmatch_loop.c: Update.
4087         * gnulib/import/fpucw.h: Update.
4088         * gnulib/import/frexp.c: Update.
4089         * gnulib/import/frexpl.c: Update.
4090         * gnulib/import/gettimeofday.c: Update.
4091         * gnulib/import/inttypes.in.h: Update.
4092         * gnulib/import/isnan.c: Update.
4093         * gnulib/import/isnand-nolibm.h: Update.
4094         * gnulib/import/isnand.c: Update.
4095         * gnulib/import/isnanl-nolibm.h: Update.
4096         * gnulib/import/isnanl.c: Update.
4097         * gnulib/import/itold.c: Update.
4098         * gnulib/import/localcharset.c: Update.
4099         * gnulib/import/localcharset.h: Update.
4100         * gnulib/import/lstat.c: Update.
4101         * gnulib/import/m4/00gnulib.m4: Update.
4102         * gnulib/import/m4/absolute-header.m4: Update.
4103         * gnulib/import/m4/alloca.m4: Update.
4104         * gnulib/import/m4/canonicalize.m4: Update.
4105         * gnulib/import/m4/codeset.m4: Update.
4106         * gnulib/import/m4/configmake.m4: Update.
4107         * gnulib/import/m4/dirent_h.m4: Update.
4108         * gnulib/import/m4/dirfd.m4: Update.
4109         * gnulib/import/m4/dirname.m4: Update.
4110         * gnulib/import/m4/double-slash-root.m4: Update.
4111         * gnulib/import/m4/eealloc.m4: Update.
4112         * gnulib/import/m4/errno_h.m4: Update.
4113         * gnulib/import/m4/exponentd.m4: Update.
4114         * gnulib/import/m4/exponentl.m4: Update.
4115         * gnulib/import/m4/extensions.m4: Update.
4116         * gnulib/import/m4/extern-inline.m4: Update.
4117         * gnulib/import/m4/fcntl-o.m4: Update.
4118         * gnulib/import/m4/float_h.m4: Update.
4119         * gnulib/import/m4/fnmatch.m4: Update.
4120         * gnulib/import/m4/fpieee.m4: Update.
4121         * gnulib/import/m4/frexp.m4: Update.
4122         * gnulib/import/m4/frexpl.m4: Update.
4123         * gnulib/import/m4/gettimeofday.m4: Update.
4124         * gnulib/import/m4/glibc21.m4: Update.
4125         * gnulib/import/m4/gnulib-cache.m4: Update.
4126         * gnulib/import/m4/gnulib-common.m4: Update.
4127         * gnulib/import/m4/gnulib-comp.m4: Update.
4128         * gnulib/import/m4/gnulib-tool.m4: Update.
4129         * gnulib/import/m4/include_next.m4: Update.
4130         * gnulib/import/m4/inttypes-pri.m4: Update.
4131         * gnulib/import/m4/inttypes.m4: Update.
4132         * gnulib/import/m4/isnand.m4: Update.
4133         * gnulib/import/m4/isnanl.m4: Update.
4134         * gnulib/import/m4/largefile.m4: Update.
4135         * gnulib/import/m4/localcharset.m4: Update.
4136         * gnulib/import/m4/locale-fr.m4: Update.
4137         * gnulib/import/m4/locale-ja.m4: Update.
4138         * gnulib/import/m4/locale-zh.m4: Update.
4139         * gnulib/import/m4/longlong.m4: Update.
4140         * gnulib/import/m4/lstat.m4: Update.
4141         * gnulib/import/m4/malloc.m4: Update.
4142         * gnulib/import/m4/malloca.m4: Update.
4143         * gnulib/import/m4/math_h.m4: Update.
4144         * gnulib/import/m4/mbrtowc.m4: Update.
4145         * gnulib/import/m4/mbsinit.m4: Update.
4146         * gnulib/import/m4/mbsrtowcs.m4: Update.
4147         * gnulib/import/m4/mbstate_t.m4: Update.
4148         * gnulib/import/m4/memchr.m4: Update.
4149         * gnulib/import/m4/memmem.m4: Update.
4150         * gnulib/import/m4/mmap-anon.m4: Update.
4151         * gnulib/import/m4/multiarch.m4: Update.
4152         * gnulib/import/m4/nocrash.m4: Update.
4153         * gnulib/import/m4/off_t.m4: Update.
4154         * gnulib/import/m4/pathmax.m4: Update.
4155         * gnulib/import/m4/readlink.m4: Update.
4156         * gnulib/import/m4/rename.m4: Update.
4157         * gnulib/import/m4/rmdir.m4: Update.
4158         * gnulib/import/m4/ssize_t.m4: Update.
4159         * gnulib/import/m4/stat.m4: Update.
4160         * gnulib/import/m4/stdbool.m4: Update.
4161         * gnulib/import/m4/stddef_h.m4: Update.
4162         * gnulib/import/m4/stdint.m4: Update.
4163         * gnulib/import/m4/stdio_h.m4: Update.
4164         * gnulib/import/m4/stdlib_h.m4: Update.
4165         * gnulib/import/m4/string_h.m4: Update.
4166         * gnulib/import/m4/strstr.m4: Update.
4167         * gnulib/import/m4/strtok_r.m4: Update.
4168         * gnulib/import/m4/sys_socket_h.m4: Update.
4169         * gnulib/import/m4/sys_stat_h.m4: Update.
4170         * gnulib/import/m4/sys_time_h.m4: Update.
4171         * gnulib/import/m4/sys_types_h.m4: Update.
4172         * gnulib/import/m4/time_h.m4: Update.
4173         * gnulib/import/m4/unistd_h.m4: Update.
4174         * gnulib/import/m4/warn-on-use.m4: Update.
4175         * gnulib/import/m4/wchar_h.m4: Update.
4176         * gnulib/import/m4/wchar_t.m4: Update.
4177         * gnulib/import/m4/wctype_h.m4: Update.
4178         * gnulib/import/m4/wint_t.m4: Update.
4179         * gnulib/import/malloc.c: Update.
4180         * gnulib/import/malloca.c: Update.
4181         * gnulib/import/malloca.h: Update.
4182         * gnulib/import/math.in.h: Update.
4183         * gnulib/import/mbrtowc.c: Update.
4184         * gnulib/import/mbsinit.c: Update.
4185         * gnulib/import/mbsrtowcs-impl.h: Update.
4186         * gnulib/import/mbsrtowcs-state.c: Update.
4187         * gnulib/import/mbsrtowcs.c: Update.
4188         * gnulib/import/memchr.c: Update.
4189         * gnulib/import/memmem.c: Update.
4190         * gnulib/import/pathmax.h: Update.
4191         * gnulib/import/readlink.c: Update.
4192         * gnulib/import/ref-add.sin: Update.
4193         * gnulib/import/ref-del.sin: Update.
4194         * gnulib/import/rename.c: Update.
4195         * gnulib/import/rmdir.c: Update.
4196         * gnulib/import/same-inode.h: Update.
4197         * gnulib/import/stat.c: Update.
4198         * gnulib/import/stdbool.in.h: Update.
4199         * gnulib/import/stddef.in.h: Update.
4200         * gnulib/import/stdint.in.h: Update.
4201         * gnulib/import/stdio.c: Update.
4202         * gnulib/import/stdio.in.h: Update.
4203         * gnulib/import/stdlib.in.h: Update.
4204         * gnulib/import/str-two-way.h: Update.
4205         * gnulib/import/streq.h: Update.
4206         * gnulib/import/string.in.h: Update.
4207         * gnulib/import/stripslash.c: Update.
4208         * gnulib/import/strnlen1.c: Update.
4209         * gnulib/import/strnlen1.h: Update.
4210         * gnulib/import/strstr.c: Update.
4211         * gnulib/import/strtok_r.c: Update.
4212         * gnulib/import/sys_stat.in.h: Update.
4213         * gnulib/import/sys_time.in.h: Update.
4214         * gnulib/import/sys_types.in.h: Update.
4215         * gnulib/import/time.in.h: Update.
4216         * gnulib/import/unistd.in.h: Update.
4217         * gnulib/import/verify.h: Update.
4218         * gnulib/import/wchar.in.h: Update.
4219         * gnulib/import/wctype.in.h: Update.
4220         * gnulib/import/gettimeofday.c: New file.
4221         * gnulib/import/m4/absolute-header.m4: New file.
4222         * gnulib/import/m4/gettimeofday.m4: New file.
4223         * gnulib/import/m4/sys_socket_h.m4: New file.
4224         * gnulib/import/m4/sys_time_h.m4: New file.
4225         * gnulib/import/stdio.c: Delete file.
4226         * gnulib/import/sys_time.in.h: New file.
4227
4228 2015-08-24  Pedro Alves  <palves@redhat.com>
4229
4230         * Makefile.in (HFILES_NO_SRCDIR): Add common/gdb_sys_time.h.
4231         * common/gdb_sys_time.h: New file.
4232         * event-loop.c: Include gdb_sys_time.h instead of sys/time.h.
4233         * gdb_select.h: Likewise.
4234         * gdb_usleep.c: Likewise.
4235         * maint.c: Likewise.
4236         * mi/mi-main.c: Likewise.
4237         * mi/mi-parse.h: Likewise.
4238         * remote-fileio.c: Likewise.
4239         * remote-m32r-sdi.c: Likewise.
4240         * remote.c: Likewise.
4241         * ser-base.c: Likewise.
4242         * ser-pipe.c: Likewise.
4243         * ser-tcp.c: Likewise.
4244         * ser-unix.c: Likewise.
4245         * symfile.c: Likewise.
4246         * symfile.c: Likewise.  Rename OSIZE to SIZE throughout.
4247         * target-memory.c: Include gdb_sys_time.h instead of sys/time.h.
4248         * utils.c: Likewise.
4249
4250 2015-08-24  Pedro Alves  <palves@redhat.com>
4251
4252         * NEWS: Mention removed support for the various ROM monitors.
4253         * Makefile.in (ALL_TARGET_OBS): Remove dbug-rom.o, dink32-rom.o,
4254         ppcbug-rom.o, m32r-rom.o, dsrec.o and monitor.o from gdb_target_obs.
4255         * configure.tgt (h8300-*-*): Remove monitor.o and m32r-rom.o from
4256         gdb_target_obs.
4257         (m68*-*-*): Remove monitor.o dbug-rom.o and dsrec.o from
4258         gdb_target_obs.
4259         (microblaze*-linux-*): Remove microblaze-rom.o, monitor.o and
4260         dsrec.o from gdb_target_obs.
4261         (microblaze*-*-*): Remove microblaze-rom.o, monitor.o and dsrec.o
4262         from gdb_target_obs.
4263         (powerpc-*-lynx*178): Remove monitor.o and dsrec.o from
4264         gdb_target_obs.
4265         (powerpc*-*-*): Remove monitor.o, dsrec.o, ppcbug-rom.o and
4266         dink32-rom.o from gdb_target_obs.
4267         (sh*-*-linux*): Remove monitor.o and dsrec.o from gdb_target_obs.
4268         (sh*): Remove monitor.o and dsrec.o from gdb_target_obs.
4269         * dbug-rom.c, dink32-rom.c, dsrec.c, m32r-rom.c, microblaze-rom.c,
4270         monitor.c, monitor.h, ppcbug-rom.c, srec.h: Delete files.
4271
4272 2015-08-21  Pedro Alves  <palves@redhat.com>
4273
4274         * frame.c (null_frame_id): Explicitly zero-initialize.
4275
4276 2015-08-21  Tom Tromey  <tromey@redhat.com>
4277
4278         * dwarf2read.c (struct dwarf2_section_info): Rename field
4279         'asection' to 'section'.
4280         (dwarf2_has_info, get_section_bfd_owner, get_section_bfd_section)
4281         (dwarf2_locate_sections, dwarf2_locate_sections)
4282         (locate_dwz_sections, locate_v1_virtual_dwo_sections)
4283         (dwarf2_locate_dwo_sections, dwarf2_locate_dwo_sections)
4284         (dwarf2_locate_v2_dwp_sections): Adjust.
4285
4286 2015-08-21  Patrick Palka  <patrick@parcs.ath.cx>
4287
4288         * top.h (gdb_in_secondary_prompt_p): Declare.
4289         * top.c (gdb_secondary_prompt_depth): Define.
4290         (gdb_in_secondary_prompt_p): Define.
4291         (gdb_readline_wrapper_cleanup): Decrement
4292         gdb_secondary_prompt_depth.
4293         (gdb_readline_wrapper): Increment gdb_secondary_prompt_depth.
4294         * tui/tui-io.c (tui_getc): Don't clear the prompt line if we
4295         are in a secondary prompt.
4296
4297 2015-08-21  Patrick Palka  <patrick@parcs.ath.cx>
4298
4299         * tui/tui-io.c (tui_getc): Use tui_putc instead of waddch to
4300         emit the newline.
4301
4302 2015-08-21  Gary Benson  <gbenson@redhat.com>
4303
4304         * gdb_bfd.c (gdb_bfd_iovec_fileio_pread): Add QUIT call.
4305
4306 2015-08-21  Gary Benson  <gbenson@redhat.com>
4307
4308         * target.h (struct target_ops) <to_fileio_open>: New argument
4309         warn_if_slow.  Update comment.  All implementations updated.
4310         (target_fileio_open_warn_if_slow): New declaration.
4311         * target.c (target_fileio_open): Renamed as...
4312         (target_fileio_open_1): ...this.  New argument warn_if_slow.
4313         Pass warn_if_slow to implementation.  Update debug printing.
4314         (target_fileio_open): New function.
4315         (target_fileio_open_warn_if_slow): Likewise.
4316         * gdb_bfd.c (gdb_bfd_iovec_fileio_open): Use new function
4317         target_fileio_open_warn_if_slow.
4318
4319 2015-08-21  Gary Benson  <gbenson@redhat.com>
4320
4321         * nat/linux-namespaces.c (linux_mntns_access_fs):
4322         Do not overwrite old_chain.
4323
4324 2015-08-20  Max Filippov  <jcmvbkbc@gmail.com>
4325
4326         * arch/xtensa.h: New file.
4327         * xtensa-linux-nat.c (gdb_proc_service.h): New #include.
4328         (ps_get_thread_area): New function.
4329         * xtensa-linux-tdep.c (xtensa_linux_init_abi): Add call to
4330         set_gdbarch_fetch_tls_load_module_address to enable TLS support.
4331         * xtensa-tdep.c (osabi.h): New #include.
4332         (xtensa_gdbarch_init): Call gdbarch_init_osabi to register
4333         xtensa-specific hooks.
4334         * xtensa-tdep.h (struct xtensa_elf_gregset_t): Add threadptr
4335         member and move the structure to arch/xtensa.h.
4336
4337 2015-08-21  Pedro Alves  <palves@redhat.com>
4338
4339         * remote.c (struct readahead_cache): New.
4340         (struct remote_state) <readahead_cache>: New field.
4341         (remote_open_1): Invalidate the cache.
4342         (readahead_cache_invalidate, readahead_cache_invalidate_fd): New
4343         functions.
4344         (remote_hostio_pwrite): Invalidate the readahead cache.
4345         (remote_hostio_pread): Rename to ...
4346         (remote_hostio_pread_vFile): ... this.
4347         (remote_hostio_pread_from_cache): New function.
4348         (remote_hostio_pread): Reimplement.
4349         (remote_hostio_close): Invalidate the readahead cache.
4350
4351 2015-08-21  Marcin Cieƛlak <saper@saper.info>  (tiny patch)
4352
4353         PR build/18843
4354         * procfs.c: Include "filestuff.h".
4355
4356 2015-08-21  Patrick Palka  <patrick@parcs.ath.cx>
4357
4358         * tui/tui-data.h (tui_command_info): Remove fields cur_line and
4359         curch.
4360         * tui/tui-data.c (tui_clear_win_detail) [CMD_WIN]: Don't set
4361         cur_line or curch, instead call wmove().
4362         (init_win_info) [CMD_WIN]: Likewise.
4363         * tui/tui-io.c (tui_puts): Likewise. Don't read cur_line,
4364         instead call getcury().
4365         (tui_redisplay_readline): Don't set cur_line or curch.
4366         (tui_mld_erase_entire_line): Don't read cur_line, instead call
4367         getcury().
4368         (tui_cont_sig): Remove call to wmove.
4369         (tui_getc): Don't read cur_line or curch, instead call getcury()
4370         or getyx().  Don't set curch.
4371         * tui/tui-win.c (make_visible_with_new_height) [CMD_WIN]: Don't
4372         set cur_line or curch.  Always move cursor to (0,0).
4373
4374 2015-08-20  Pedro Alves  <palves@redhat.com>
4375
4376         * infrun.c (print_target_wait_results): Make extern.
4377         * infrun.h (print_target_wait_results): Declare.
4378         * remote.c (set_stop_requested_callback): Delete.
4379         (process_initial_stop_replies): New function.
4380         (remote_start_remote): Use it.
4381         (stop_reply_queue_length): New function.
4382
4383 2015-08-20  Pedro Alves  <palves@redhat.com>
4384
4385         * dwarf2read.c (process_full_comp_unit): To tell whether
4386         start_subfile managed to deduce a language, test for
4387         language_unknown instead of language_c.
4388
4389 2015-08-20  Pierre-Marie de Rodat  <derodat@adacore.com>
4390
4391         * ada-lex.l: Reset the start condition to INITIAL in the rule that
4392         matches attributes.
4393
4394 2015-08-19  Kevin Buettner  <kevinb@redhat.com>
4395
4396         * dwarf2read.c (dwarf2_string_attr): New function.
4397         (lookup_dwo_unit, process_psymtab_comp_unit_reader)
4398         (dwarf2_compute_name, dwarf2_physname, find_file_and_directory)
4399         (read_call_site_scope, namespace_name, guess_full_die_structure_name)
4400         (anonymous_struct_prefix, prepare_one_comp_unit): Use
4401         dwarf2_string_attr in place of dwarf2_attr and DW_STRING.
4402
4403 2015-08-18  Doug Evans  <dje@google.com>
4404             Adrian Sendroiu <adrian.sendroiu@freescale.com>
4405
4406         PR mi/18833
4407         * cli/cli-logging.c (pop_output_files): Don't restore redirection
4408         if MI-like.
4409         * mi/mi-out.c: #include "vec.h".
4410         (ui_filep): New type.
4411         (DEV_VEC_P (ui_filep)): New type.
4412         (struct ui_out_data) <buffer, original_buffer>: Delete.
4413         (struct ui_out_data) <streams>: New member.
4414         (mi_ui_out_impl): Add data_destroy field.
4415         (mi_field_string, mi_field_fmt): Update.
4416         (mi_flush, mi_redirect, field_separator): Update.
4417         (mi_open, mi_close): Update.
4418         (mi_out_buffered, mi_out_rewind, mi_out_put): Update.
4419         (mi_out_data_ctor, mi_out_data_dtor): New functions.
4420         (mi_out_new): Call mi_out_data_ctor.
4421
4422 2015-08-18  Sandra Loosemore  <sandra@codesourcery.com>
4423
4424         * remote.c (strprefix): New.
4425         (remote_parse_stop_reply): Use strprefix instead of strncmp
4426         to ensure exact match of keyword.
4427
4428 2015-08-18  Andrew Burgess  <andrew.burgess@embecosm.com>
4429
4430         * gdb_bfd.c (debug_bfd_cache): New variable.
4431         (show_bfd_cache_debug): New function.
4432         (gdb_bfd_open): Add debug logging.
4433         (gdb_bfd_ref): Likewise.
4434         (gdb_bfd_unref): Likewise.
4435         (_initialize_gdb_bfd): Add new set/show command.
4436         * NEWS: Mention new command.
4437
4438 2015-08-18  Andrew Burgess  <andrew.burgess@embecosm.com>
4439
4440         * gdb_bfd.c (bfd_sharing): New variable.
4441         (show_bfd_sharing): New function.
4442         (gdb_bfd_open): Check bfd_sharing variable.
4443         (_initialize_gdb_bfd): Add new set/show command.
4444         * NEWS: Mention new command.
4445
4446 2015-08-18  Andrew Burgess  <andrew.burgess@embecosm.com>
4447
4448         * gdb_bfd.c (struct gdb_bfd_data): Add size, inode, and device id
4449         field.
4450         (struct gdb_bfd_cache_search): Likewise.
4451         (eq_bfd): Compare the size, inode, and device id fields.
4452         (gdb_bfd_open): Initialise the size, inode, and device id fields.
4453         (gdb_bfd_ref): Likewise.
4454         (gdb_bfd_unref): Likewise.
4455
4456 2015-08-18  Pedro Alves  <palves@redhat.com>
4457
4458         * linux-nat.c (linux_nat_always_non_stop_p): If the linux_ops
4459         target implements to_always_non_stop_p, call it.
4460         * x86-linux-nat.c (x86_linux_always_non_stop_p): New function.
4461         (x86_linux_create_target): Install it as to_always_non_stop_p
4462         method.
4463
4464 2015-08-17  Doug Evans  <dje@google.com>
4465
4466         * ui-out.c (default_ui_out_impl): Add comment.
4467
4468 2015-08-17  Iain Buclaw  <ibuclaw@gdcproject.org>
4469
4470         * d-exp.y (type_aggregate_p): New function.
4471         (PrimaryExpression : TypeExp '.' IdentifierExp): Use it.
4472         (classify_inner_name): Likewise.
4473         * d-namespace.c (d_lookup_nested_symbol): Handle TYPE_CODE_ENUM.
4474
4475 2015-08-15  Doug Evans  <xdje42@gmail.com>
4476
4477         * psymtab.c (add_psymbol_to_bcache): Remove "val" arg.  All callers
4478         updated.
4479         (add_psymbol_to_list): Ditto.
4480
4481 2015-08-15  Doug Evans  <xdje42@gmail.com>
4482
4483         * dbxread.c (dbx_end_psymtab): Renamed from end_psymtab.  All callers
4484         updated.  Call end_psymtab_common.
4485         * dwarf2read.c (process_psymtab_comp_unit_reader): Call
4486         end_psymtab_common.
4487         (build_type_psymtabs_reader): Ditto.
4488         * psympriv.h (sort_pst_symbols): Delete.
4489         (end_psymtab_common): Declare.
4490         * psymtab.c (sort_pst_symbols): Make static.
4491         (end_psymtab_common): New function.
4492         * xcoffread.c (xcoff_end_psymtab): Call end_psymtab_common.
4493
4494 2015-08-15  Doug Evans  <xdje42@gmail.com>
4495
4496         * defs.h (LANGUAGE_BITS): Define.
4497         * psympriv.h (partial_symbol) <domain>: Use SYMBOL_DOMAIN_BITS.
4498         (partial_symbol) <aclass>: Use SYMBOL_ACLASS_BITS.
4499         * symtab.h (general_symbol_info> <language>: Usage LANGUAGE_BITS.
4500         (minimal_symbol_type): Add nr_minsym_types.
4501         (MINSYM_TYPE_BITS): Define.
4502         (minimal_symbol) <type>: Use MINSYM_TYPE_BITS.
4503         (domain_enum_tag): Add NR_DOMAINS.
4504         (SYMBOL_DOMAIN_BITS): Change from 4 to 3.
4505         (SYMBOL_ACLASS_BITS): Define from 6 to 5.
4506
4507 2015-08-15  Doug Evans  <xdje42@gmail.com>
4508
4509         * objfiles.h: Whitespace cleanup.
4510         * psympriv.h: Whitespace cleanup.
4511         * psymtab.c: Whitespace/coding convention cleanup.
4512
4513 2015-08-15  Patrick Palka  <patrick@parcs.ath.cx>
4514
4515         * inferior.c (detach_inferior_command): Don't call
4516         any_thread_of_process when pid is 0.
4517         (kill_inferior_command): Likewise.
4518
4519 2015-08-14  Doug Evans  <xdje42@gmail.com>
4520
4521         PR gdb/11833
4522         * NEWS: Document new /s modifier for the disassemble command.
4523         * cli/cli-cmds.c (disassemble_command): Add support for /s.
4524         (_initialize_cli_cmds): Update online docs of disassemble command.
4525         * disasm.c: #include "source.h".
4526         (struct deprecated_dis_line_entry): Renamed from dis_line_entry.
4527         All uses updated.
4528         (dis_line_entry): New struct.
4529         (hash_dis_line_entry, eq_dis_line_entry): New functions.
4530         (allocate_dis_line_table): New functions.
4531         (maybe_add_dis_line_entry, line_has_code_p): New functions.
4532         (dump_insns): New arg end_pc.  All callers updated.
4533         (do_mixed_source_and_assembly_deprecated): Renamed from
4534         do_mixed_source_and_assembly.  All callers updated.
4535         (do_mixed_source_and_assembly): New function.
4536         (gdb_disassembly): Handle /s (DISASSEMBLY_SOURCE).
4537         * disasm.h (DISASSEMBLY_SOURCE_DEPRECATED): Renamed from
4538         DISASSEMBLY_SOURCE.  All uses updated.
4539         (DISASSEMBLY_SOURCE): New macro.
4540         * mi/mi-cmd-disas.c (mi_cmd_disassemble): New modes 4,5.
4541
4542 2015-08-14  Keith Seitz  <keiths@redhat.com>
4543
4544         * d-exp.y (PrimaryExpression : TypeExp '.' IdentifierExp): Rename
4545         `typename' to `type_name' to avoid C++ reserved word.
4546
4547 2015-08-14  Keith Seitz  <keiths@redhat.com>
4548
4549         * location.c (EL_TYPE, EL_LINESPEC, EL_PROBE, EL_ADDRESS)
4550         (EL_EXPLICIT, EL_STRING): Change macro parameter to "P" to
4551         silence ARI errors.
4552
4553 2015-08-14  Iain Buclaw  <ibuclaw@gdcproject.org>
4554
4555         * d-exp.y (PrimaryExpression : TypeExp '.' IdentifierExp): Use
4556         xstrprintf instead of malloc and sprintf.
4557         (PrimaryExpression : IdentifierExp): Avoid operator at end of line.
4558         (lex_one_token): Likewise.
4559
4560 2015-08-14  Matthew Fortune  <matthew.fortune@imgtec.com>
4561
4562         * solib-svr4.c (read_program_header): Add base_addr argument to
4563         report the runtime address of the segment.
4564         (find_program_interpreter): Update read_program_header call to pass
4565         a NULL pointer for the new argument.
4566         (scan_dyntag): Add ptr_addr argument to report the runtime address
4567         of the tag payload.
4568         (scan_dyntag_auxv): Likewise and use thew new base_addr argument of
4569         read_program_header to get the base address of the dynamic segment.
4570         (elf_locate_base): Update uses of scan_dyntag, scan_dyntag_auxv and
4571         read_program_header.
4572         (elf_locate_base): Scan for and handle DT_MIPS_RLD_MAP_REL.
4573
4574 2015-08-14  Matthew Fortune  <matthew.fortune@imgtec.com>
4575
4576         * MAINTAINERS (Write After Approval): Add Matthew Fortune.
4577
4578 2015-08-13  Iain Buclaw  <ibuclaw@gdcproject.org>
4579
4580         * d-exp.y (%union): Add voidval.
4581         (%token): Add UNKNOWN_NAME as a token to represent an unclassified
4582         name in the lexing stage.
4583         (PostfixExpression): Move symbol completion handling in grammar here
4584         from PrimaryExpression.
4585         (PrimaryExpression): Move routines to handle resolving identifier
4586         tokens in the grammar here from push_expression_name.
4587         (IdentifierExp): Remove the handling of alternating '.' and identifier
4588         tokens.
4589         (TypeExp): Allow TypeExp to be wrapped in parenthesis in the grammar.
4590         (BasicType): Remove C-style typename rules.
4591         (d_type_from_name, d_module_from_name, push_variable)
4592         (push_fieldnames, push_type_name, push_module_name)
4593         (push_expression_name): Remove.
4594         (lex_one_token): Rename from yylex.  Replace pstate with par_state.
4595         (token_and_value): New type.
4596         (token_fifo, popping, name_obstack): New globals.
4597         (classify_name): New function.
4598         (classify_inner_name): Likewise.
4599         (yylex): Likewise.
4600         (d_parse): Initialize token_fifo, popping and name_obstack.
4601
4602 2015-08-13  Iain Buclaw  <ibuclaw@gdcproject.org>
4603
4604         * Makefile.in (SFILES): Add d-namespace.c.
4605         (COMMON_OBS): Add d-namespace.o.
4606         * d-lang.c (d_language_defn): Use d_lookup_symbol_nonlocal as the
4607         la_lookup_symbol_nonlocal callback function pointer.
4608         * d-lang.h (d_lookup_symbol_nonlocal): New declaration.
4609         (d_lookup_nested_symbol): New declaration.
4610         * d-namespace.c: New file.
4611
4612 2015-08-13  Pedro Alves  <palves@redhat.com>
4613
4614         * python/py-unwind.c (pyuw_sniffer): Install the invalidate
4615         cleanup after the decref cleanup, not before.
4616
4617 2015-08-13  Pierre-Marie de Rodat  <derodat@adacore.com>
4618
4619         * ada-lang.c: Include namespace.h
4620         (aux_add_nonlocal_symbols): Fix a function name in comment.
4621         (ada_add_block_renamings): New.
4622         (add_nonlocal_symbols): Add global renamings handling.
4623         (ada_lookup_symbol_list_worker): Move the symbol lookup part
4624         to...
4625         (ada_add_all_symbols): ... this new function.
4626         (ada_add_block_symbols): Try to match the input name against the
4627         "using directives list", perform a recursive symbol lookup on
4628         the matched declarations.
4629         * block.h (struct block): Move the_namespace to top-level as
4630         namespace_info. Remove the language_specific field.
4631         (BLOCK_NAMESPACE): Update access to the namespace_info field.
4632         * buildsym.h (using_directives): Rename into...
4633         (local_using_directives): ... this.
4634         (global_using_directives): New.
4635         (struct context_stack): Rename the using_directives field into
4636         local_using_directives.
4637         * buildsym.c (finish_block_internal): Deal with the proper
4638         using directives repository (local or global).
4639         (prepare_for_building): Reset local_using_directives. Assert
4640         that there is no pending global using directive.
4641         (reset_symtab_globals): Reset global_using_directives and
4642         local_using_directives.
4643         (end_symtab_get_static_block): Don't ignore symtabs that have
4644         only using directives.
4645         (push_context): Update references to local_using_directives.
4646         (buildsym_init): Do not reset using_directives.
4647         * cp-support.c: Include namespace.h.
4648         * cp-support.h (struct using_direct): Move to namespace.h.
4649         (cp_add_using_directives): Move to namespace.h.
4650         * cp-namespace.c: Include namespace.h
4651         (cp_add_using_directive): Move to namespace.c, rename it to
4652         add_using_directive, add a "using_directives" argument and use
4653         it as the pending using directives repository.  All callers
4654         updated.
4655         * dwarf2read.c (using_directives): New.
4656         (read_import_statement): Call using_directives.
4657         (read_func_scope): Update references to local_using_directives.
4658         (read_lexical_block_scope): Likewise.
4659         (read_namespace): Update the heading comment, call
4660         using_directives.
4661         * namespace.h: New file.
4662         * namespace.c: New file.
4663         * Makefile.in (SFILES): Add namespace.c.
4664         (COMMON_OBS): Add namespace.o
4665
4666 2015-08-12  Joel Brobecker  <brobecker@adacore.com>
4667
4668         * amd64-tdep.c (amd64_displaced_step_fixup): Fix the mask used to
4669         compute RETADDR.
4670
4671 2015-08-12  Keith Seitz  <keiths@redhat.com>
4672
4673         * break-catch-throw.c (re_set_exception_catchpoint) Rename
4674         reserved C++ keyword "explicit" to "explicit_loc".
4675         * breakpoint.c (create_overlay_event_breakpoint)
4676         (create_longjmp_master_breakpoint)
4677         (create_std_terminate_master_breakpoint)
4678         (create_exception_master_breakpoint, update_static_tracepoint):
4679         Rename reserved C++ keyword "explicit" to "explicit_loc".
4680         * completer.c (collect_explicit_location_matches)
4681         (explicit_location_completer): Rename reserved C++ keyword
4682         "explicit" to "explicit_loc".
4683         * linespec.c (struct linespec) <explicit>: Rename to "explicit_loc".
4684         (canonicalize_linespec, create_sals_line_offset)
4685         (convert_linespec_to_sals, convert_explicit_location_to_sals)
4686         (event_location_to_sals, decode_objc): Rename reserved C++ keyword
4687         "explicit" to "explicit_loc".
4688         * location.c (struct event_location) <explicit>: Rename to
4689         "explicit_loc".
4690         (initialize_explicit_location, new_explicit_location)
4691         (explicit_location_to_string_internal, explicit_location_to_linespec):
4692         Rename reserved C++ keyword "explicit" to "explicit_loc".
4693         * location.h (explicit_location_to_string)
4694         (explicit_location_to_linespec, initialize_explicit_location)
4695         (new_explicit_location): Rename reserved C++ keyword "explicit"
4696         to "explicit_loc".
4697         * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Rename reserved C++
4698         keyword "explicit" to "explicit_loc".
4699
4700 2015-08-12  Keith Seitz  <keiths@redhat.com>
4701
4702         * python/python.c (gdbpy_decode_line): Initialize `location' to NULL
4703         and only call decode_line_1 when it is non-NULL.
4704
4705 2015-08-12  Luis Machado  <lgustavo@codesourcery.com>
4706
4707         * breakpoint.c (bp_loc_is_permanent): Return 0 when breakpoint
4708         location address is not meaningful.
4709         (breakpoint_address_is_meaningful): Update comment.
4710
4711 2015-08-11  Keith Seitz  <keiths@redhat.com>
4712
4713         * NEWS: Mention explicit locations.
4714         * breakpoint.c [LOCATION_HELP_STRING]: New macro.
4715         [BREAK_ARGS_HELP]: Use LOCATION_HELP_STRING.
4716         (_initialize_breakpoint): Update documentation for
4717         "clear", "break", "trace", "strace", "ftrace", and "dprintf".
4718
4719 2015-08-11  Keith Seitz  <keiths@redhat.com>
4720
4721         * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Add support for
4722         explicit locations, options "--source", "--function",
4723         "--label", and "--line".
4724
4725 2015-08-11  Keith Seitz  <keiths@redhat.com>
4726
4727         * completer.c: Include location.h.
4728         (enum match_type): New enum.
4729         (location_completer): Rename to ...
4730         (linespec_completer): ... this.
4731         (collect_explicit_location_matches, backup_text_ptr)
4732         (explicit_location_completer): New functions.
4733         (location_completer): "New" function; handle linespec
4734         and explicit location completions.
4735         (complete_line_internal): Remove all location completer-specific
4736         handling.
4737         * linespec.c (linespec_lexer_lex_keyword, is_ada_operator)
4738         (find_toplevel_char): Export.
4739         (linespec_parse_line_offset): Export.
4740         Issue error if STRING is not numerical.
4741         (gdb_get_linespec_parser_quote_characters): New function.
4742         * linespec.h (linespec_parse_line_offset): Declare.
4743         (get_gdb_linespec_parser_quote_characters): Declare.
4744         (is_ada_operator): Declare.
4745         (find_toplevel_char): Declare.
4746         (linespec_lexer_lex_keyword): Declare.
4747         * location.c (explicit_to_event_location): New function.
4748         (explicit_location_lex_one): New function.
4749         (string_to_explicit_location): New function.
4750         (string_to_event_location): Handle explicit locations.
4751         * location.h (explicit_to_event_location): Declare.
4752         (string_to_explicit_location): Declare.
4753
4754 2015-08-11  Keith Seitz  <keiths@redhat.com>
4755
4756         * break-catch-throw.c (re_set_exception_catchpoint): Convert
4757         linespec into explicit location.
4758         * breakpoint.c (create_overlay_breakpoint)
4759         (create_longjmp_master_breakpoint)
4760         (create_std_terminate_master_breakpoint)
4761         (create_exception_master_breakpoint): Convert linespec into explicit
4762         location.
4763         (update_static_tracepoint): Convert linespec into explicit location.
4764         * linespec.c (enum offset_relative_sign, struct line_offset): Move
4765         location.h.
4766         (struct linespec) <expression, expr_pc, source_filename>
4767         <function_name, label_name, line_offset>: Replace with ...
4768         <explicit>: ... this.
4769         <is_linespec>: New member.
4770         (PARSER_EXPLICIT): New accessor macro.
4771         (undefined_label_error): New function.
4772         (source_file_not_found_error): New function.
4773         (linespec_parse_basic): The parser result is now an explicit location.
4774         Use PARSER_EXPLICIT to access it.
4775         Use undefined_label_error.
4776         (canonicalize_linespec): Convert canonical linespec into explicit
4777         location.
4778         Move string representation of location to explicit_location_to_linespec
4779         and use it and explicit_location_to_string to save string
4780         representations of the canonical location.
4781         (create_sals_line_offset, convert_linespec_to_sals): `ls' contains an
4782         explicit location.  Update all references.
4783         (convert_explicit_location_to_sals): New function.
4784         (parse_linespec): Use PARSER_EXPLICIT to access the parser
4785         result's explicit location.
4786         (linespec_state_constructor): Initialize is_linespec.
4787         Use PARSER_EXPLICIT.
4788         (linespec_parser_delete): Use PARSER_EXPLICIT to access the parser's
4789         result.
4790         (event_location_to_sals): For linespec locations, set is_linespec.
4791         Handle explicit locations.
4792         (decode_objc): 'ls' contains an explicit location now. Update all
4793         references.
4794         (symtabs_from_filename): Use source_file_not_found_error.
4795         * location.c (struct event_location.u) <explicit>: New member.
4796         (initialize_explicit_location): New function.
4797         (initialize_event_location): Initialize explicit locations.
4798         (new_explicit_location, get_explicit_location)
4799         (get_explicit_location_const): New functions.
4800         (explicit_to_string_internal): New function; most of contents moved
4801         from canonicalize_linespec.
4802         (explicit_location_to_string): New function.
4803         (explicit_location_to_linespec): New function.
4804         (copy_event_location, delete_event_location)
4805         (event_location_to_string_const, event_location_empty_p): Handle
4806         explicit locations.
4807         * location.h (enum offset_relative_sign, struct line_offset): Move
4808         here from linespec.h.
4809         (enum event_location_type): Add EXPLICIT_LOCATION.
4810         (struct explicit_location): New structure.
4811         (explicit_location_to_string): Declare.
4812         (explicit_location_to_linespec): Declare.
4813         (new_explicit_location, get_explicit_locationp
4814         (get_explicit_location_const, initialize_explicit_location): Declare.
4815
4816 2015-08-11  Keith Seitz  <keiths@redhat.com>
4817
4818         * break-catch-throw.c (re_set_exception_catchpoint): Convert
4819         linespec for stap probe to probe location.
4820         * breakpoint.c (create_longjmp_master_breakpoint)
4821         (create_exception_master_breakpoint): Likewise.
4822         (break_command_1): Remove local variable `arg_cp'.
4823         Check location type to set appropriate breakpoint ops methods.
4824         (trace_command): Likewise.
4825         * linespec.c (event_location_to_sals): Assert on probe locations.
4826         * location.c (EL_PROBE): Add macro definition.
4827         (new_probe_location, get_probe_location): New functions.
4828         (copy_event_location, delete_event_location, event_location_to_string)
4829         (string_to_event_location, event_location_empty_p): Handle probe
4830         locations.
4831         * location.h (enum event_location_type): Add PROBE_LOCATION.
4832         (new_probe_location, get_probe_location): Declare.
4833         * probe.c (parse_probes): Assert that LOCATION is a probe location.
4834         Convert linespec into probe location.
4835
4836 2015-08-11  Keith Seitz  <keiths@redhat.com>
4837
4838         * breakpoint.c (create_thread_event_breakpoint, init_breakpoint_sal):
4839         Convert linespec to address location.
4840         * linespec.c (canonicalize_linespec): Do not handle address
4841         locations here.
4842         (convert_address_location_to_sals): New function; contents moved
4843         from ...
4844         (convert_linespc_to_sals): ... here.
4845         (parse_linespec): Remove address locations from linespec grammar.
4846         Remove handling of address locations.
4847         (linespec_lex_to_end): Remove handling of address linespecs.
4848         (event_location_to_sals): Handle ADDRESS_LOCATION.
4849         (linespec_expression_to_pc): Export.
4850         * linespec.h (linespec_expression_to_pc): Add declaration.
4851         * location.c (struct event_location.u) <address>: New member.
4852         (new_address_location, get_address_location): New functions.
4853         (copy_event_location, delete_event_location, event_location_to_string)
4854         (string_to_event_location, event_location_empty_p): Handle address
4855         locations.
4856         * location.h (enum event_location_type): Add ADDRESS_LOCATION.
4857         (new_address_location, get_address_location): Declare.
4858         * python/py-finishbreakpoint.c (bpfinishpy_init): Convert linespec
4859         to address location.
4860         * spu-tdep.c (spu_catch_start): Likewise.
4861
4862 2015-08-11  Keith Seitz  <keiths@redhat.com>
4863
4864         * ax-gdb.c: Include location.h.
4865         (agent_command_1) Use linespec location instead of address
4866         string.
4867         * break-catch-throw.c: Include location.h.
4868         (re_set_exception_catchpoint): Use linespec locations instead
4869         of address strings.
4870         * breakpoint.c: Include location.h.
4871         (create_overlay_event_breakpoint, create_longjmp_master_breakpoint)
4872         (create_std_terminate_master_breakpoint)
4873         (create_exception_master_breakpoint, update_breakpoints_after_exec):
4874         Use linespec location instead of address string.
4875         (print_breakpoint_location):  Use locations and
4876         event_location_to_string.
4877         Print extra_string for pending locations for non-MI streams.
4878         (print_one_breakpoint_location): Use locations and
4879         event_location_to_string.
4880         (init_raw_breakpoint_without_location): Initialize b->location.
4881         (create_thread_event_breakpoint): Use linespec location instead of
4882         address string.
4883         (init_breakpoint_sal): Likewise.
4884         Only save extra_string if it is non-NULL and not the empty string.
4885         Use event_location_to_string instead of `addr_string'.
4886         Constify `p' and `endp'.
4887         Use skip_spaces_const/skip_space_const instead of non-const versions.
4888         Copy the location into the breakpoint.
4889         If LOCATION is NULL, save the breakpoint address as a linespec location
4890         instead of an address string.
4891         (create_breakpoint_sal): Change `addr_string' parameter to a struct
4892         event_location. All uses updated.
4893         (create_breakpoints_sal): Likewise for local variable `addr_string'.
4894         (parse_breakpoint_sals): Use locations instead of address strings.
4895         Remove check for empty linespec with conditional.
4896         Refactor.
4897         (decode_static_tracepoint_spec): Make argument const and update
4898         function.
4899         (create_breakpoint): Change `arg' to a struct event_location and
4900         rename.
4901         Remove `copy_arg' and `addr_start'.
4902         If EXTRA_STRING is empty, set it to NULL.
4903         Don't populate `canonical' for pending breakpoints.
4904         Pass `extra_string' to find_condition_and_thread.
4905         Clear `extra_string' if `rest' was NULL.
4906         Do not error with "garbage after location" if setting a dprintf
4907         breakpoint.
4908         Copy the location into the breakpoint instead of an address string.
4909         (break_command_1): Use string_to_event_location and pass this to
4910         create_breakpoint instead of an address string.
4911         Check against `arg_cp' for a probe linespec.
4912         (dprintf_command): Use string_to_event_location and pass this to
4913         create_breakpoint instead of an address string.
4914         Throw an exception if no format string was specified.
4915         (print_recreate_ranged_breakpoint): Use event_location_to_string
4916         instead of address strings.
4917         (break_range_command, until_break_command)
4918         (init_ada_exception_breakpoint): Use locations instead
4919         of address strings.
4920         (say_where): Print out extra_string for pending locations.
4921         (base_breakpoint_dtor): Delete `location' and `location_range_end' of
4922         the breakpoint.
4923         (base_breakpoint_create_sals_from_location): Use struct event_location
4924         instead of address string.
4925         Remove `addr_start' and `copy_arg' parameters.
4926         (base_breakpoint_decode_location): Use struct event_location instead of
4927         address string.
4928         (bkpt_re_set): Use locations instead of address strings.
4929         Use event_location_empty_p to check for unset location.
4930         (bkpt_print_recreate): Use event_location_to_string instead of
4931         an address string.
4932         Print out extra_string for pending locations.
4933         (bkpt_create_sals_from_location, bkpt_decode_location)
4934         (bkpt_probe_create_sals_from_location): Use struct event_location
4935         instead of address string.
4936         (bkpt_probe_decode_location): Use struct event_location instead of
4937         address string.
4938         (tracepoint_print_recreate): Use event_location_to_string to
4939         recreate the tracepoint.
4940         (tracepoint_create_sals_from_location, tracepoint_decode_location)
4941         (tracepoint_probe_create_sals_from_location)
4942         (tracepoint_probe_decode_location): Use struct event_location
4943         instead of address string.
4944         (dprintf_print_recreate): Use event_location_to_string to recreate
4945         the dprintf.
4946         (dprintf_re_set): Remove check for valid/missing format string.
4947         (strace_marker_create_sals_from_location)
4948         (strace_marker_create_breakpoints_sal, strace_marker_decode_location)
4949         (update_static_tracepoint): Use struct event_location instead of
4950         address string.
4951         (location_to_sals): Likewise.
4952         Pass `extra_string' to find_condition_and_thread.
4953         For newly resolved pending breakpoint locations, clear the location's
4954         string representation.
4955         Assert that the breakpoint's condition string is NULL when
4956         condition_not_parsed.
4957         (breakpoint_re_set_default, create_sals_from_location_default)
4958         (decode_location_default, trace_command, ftrace_command)
4959         (strace_command, create_tracepoint_from_upload): Use locations
4960         instead of address strings.
4961         * breakpoint.h (struct breakpoint_ops) <create_sals_from_location>:
4962         Use struct event_location instead of address string.
4963         Update all uses.
4964         <decode_location>: Likewise.
4965         (struct breakpoint) <addr_string>: Change to struct event_location
4966         and rename `location'.
4967         <addr_string_range_end>: Change to struct event_location and rename
4968         `location_range_end'.
4969         (create_breakpoint): Use struct event_location instead of address
4970         string.
4971         * cli/cli-cmds.c: Include location.h.
4972         (edit_command, list_command): Use locations instead of address strings.
4973         * elfread.c: Include location.h.
4974         (elf_gnu_ifunc_resolver_return_stop): Use event_location_to_string.
4975         * guile/scm-breakpoint.c: Include location.h.
4976         (bpscm_print_breakpoint_smob): Use event_location_to_string.
4977         (gdbscm_register_breakpoint): Use locations instead of address
4978         strings.
4979         * linespec.c: Include location.h.
4980         (struct ls_parser) <stream>: Change to const char *.
4981         (PARSER_STREAM): Update.
4982         (lionespec_lexer_lex_keyword): According to find_condition_and_thread,
4983         keywords must be followed by whitespace.
4984         (canonicalize_linespec): Save a linespec location into `canonical'.
4985         Save a canonical linespec into `canonical'.
4986         (parse_linespec): Change `argptr' to const char * and rename `arg'.
4987         All uses updated.
4988         Update function description.
4989         (linespec_parser_new): Initialize `parser'.
4990         Update initialization of  parsing stream.
4991         (event_location_to_sals): New function.
4992         (decode_line_full): Change `argptr' to a struct event_location and
4993         rename it `location'.
4994         Use locations instead of address strings.
4995         Call event_location_to_sals instead of parse_linespec.
4996         (decode_line_1): Likewise.
4997         (decode_line_with_current_source, decode_line_with_last_displayed)
4998         Use locations instead of address strings.
4999         (decode_objc): Likewise.
5000         Change `argptr' to const char * and rename `arg'.
5001         (destroy_linespec_result): Delete the linespec result's location
5002         instead of freeing the address string.
5003         * linespec.h (struct linespec_result) <addr_string>: Change to
5004         struct event_location and rename to ...
5005         <location>: ... this.
5006         (decode_line_1, decode_line_full): Change `argptr' to struct
5007         event_location.  All callers updated.
5008         * mi/mi-cmd-break.c: Include language.h, location.h, and linespec.h.
5009         (mi_cmd_break_insert_1): Use locations instead of address strings.
5010         Throw an error if there was "garbage" at the end of the specified
5011         linespec.
5012         * probe.c: Include location.h.
5013         (parse_probes): Change `argptr' to struct event_location.
5014         Use event locations instead of address strings.
5015         * probe.h (parse_probes): Change `argptr' to struct event_location.
5016         * python/py-breakpoint.c: Include location.h.
5017         (bppy_get_location): Constify local variable `str'.
5018         Use event_location_to_string.
5019         (bppy_init): Use locations instead of address strings.
5020         * python/py-finishbreakpoint.c: Include location.h.
5021         (bpfinishpy_init): Remove local variable `addr_str'.
5022         Use locations instead of address strings.
5023         * python/python.c: Include location.h.
5024         (gdbpy_decode_line): Use locations instead of address strings.
5025         * remote.c: Include location.h.
5026         (remote_download_tracepoint): Use locations instead of address
5027         strings.
5028         * spu-tdep.c: Include location.h.
5029         (spu_catch_start): Remove local variable `buf'.
5030         Use locations instead of address strings.
5031         * tracepoint.c: Include location.h.
5032         (scope_info): Use locations instead of address strings.
5033         (encode_source_string): Constify parameter `src'.
5034         * tracepoint.h (encode_source_string): Likewise.
5035
5036 2015-08-11  Keith Seitz  <keiths@redhat.com>
5037
5038         * Makefile.in (SFILES): Add location.c.
5039         (HFILES_NO_SRCDIR): Add location.h.
5040         (COMMON_OBS): Add location.o.
5041         * linespec.c (linespec_lex_to_end): New function.
5042         * linespec.h (linespec_lex_to_end): Declare.
5043         * location.c: New file.
5044         * location.h: New file.
5045
5046 2015-08-11  Keith Seitz  <keiths@redhat.com>
5047
5048         * breakpoint.h (struct breakpoint_ops) <create_sals_from_address>:
5049         Renamed to create_sals_from_location.
5050         <decode_linespec>: Renamed to decode_location.
5051         Update all callers.
5052         * breakpoint.c (create_sals_from_address_default): Renamed to ...
5053         (create_sals_from_location_default): ... this.
5054         (addr_string_to_sals): Renamed to ...
5055         (location_to_sals): ... this.
5056         (decode_linespec_default): Renamed to ...
5057         (decode_location_default): ... this.
5058         (base_breakpoint_create_sals_from_address): Renamed to ...
5059         (base_breakpoint_create_sals_from_location): ... this.
5060         (bkpt_create_sals_from_address): Renamed to ...
5061         (bkpt_create_sals_from_location): ... this.
5062         (bkpt_decode_linespec): Renamed to ...
5063         (bkpt_decode_location): ... this.
5064         (bkpt_probe_create_sals_from_address): Renamed to ...
5065         (bkpt_probe_create_sals_from_location): ... this.
5066         (tracepoint_create_sals_from_address): Renamed to ...
5067         (tracepoint_create_sals_from_location): ... this.
5068         (tracepoint_decode_linespec): Renamed to ...
5069         (tracepoint_decode_location): ... this.
5070         (tracepoint_probe_create_sals_from_address): Renamed to ...
5071         (tracepoint_probe_create_sals_from_location): ... this.
5072         (tracepoint_probe_decode_linespec): Renamed to ...
5073         (tracepoint_probe_decode_location): ... this.
5074         (strace_marker_create_sals_from_address): Renamed to ...
5075         (strace_marker_create_sals_from_location): ... this.
5076         (decode_linespec_default): Renamed to ...
5077         (decode_location_default): ... this.
5078
5079 2015-08-10  Doug Evans  <dje@google.com>
5080             Keith Seitz  <keiths@redhat.com>
5081
5082         PR gdb/17960
5083         * symtab.c (make_file_symbol_completion_list_1): Renamed from
5084         make_file_symbol_completion_list and made static.
5085         (make_file_symbol_completion_list): New function.
5086
5087 2015-08-10  Joel Brobecker  <brobecker@adacore.com>
5088
5089         * infrun.c (follow_fork, displaced_step_prepare, resume): Remove
5090         trailing new-line at end of warning message.
5091         (proceed): Add i18n marker to error messages.
5092
5093 2015-08-07  Pedro Alves  <palves@redhat.com>
5094
5095         * linux-nat.c (linux_nat_always_non_stop_p): Return 1.
5096
5097 2015-08-07  Pedro Alves  <palves@redhat.com>
5098
5099         * s390-linux-tdep.c (is_non_branch_ril)
5100         (s390_displaced_step_copy_insn): New functions.
5101         (s390_displaced_step_fixup): Update comment.
5102         (s390_gdbarch_init): Install s390_displaced_step_copy_insn as
5103         gdbarch_displaced_step_copy_insn hook.
5104
5105 2015-08-07  Pedro Alves  <palves@redhat.com>
5106
5107         * infrun.c (displaced_step_prepare_throw): Return -1 if
5108         gdbarch_displaced_step_copy_insn returns NULL.  Update intro
5109         comment.
5110         * rs6000-tdep.c (LWARX_MASK, LWARX_INSTRUCTION, LDARX_INSTRUCTION)
5111         (STWCX_MASK, STWCX_INSTRUCTION, STDCX_INSTRUCTION): Move higher up
5112         in file.
5113         (ppc_displaced_step_copy_insn): New function.
5114         (ppc_displaced_step_fixup): Update comment.
5115         (rs6000_gdbarch_init): Install ppc_displaced_step_copy_insn as
5116         gdbarch_displaced_step_copy_insn hook.
5117         * gdbarch.sh (displaced_step_copy_insn): Document what happens on
5118         NULL return.
5119         * gdbarch.h: Regenerate.
5120
5121 2015-08-07  Pedro Alves  <palves@redhat.com>
5122
5123         * inferior.h (struct inferior) <displaced_stepping_failed>: New
5124         field.
5125         * infrun.c (use_displaced_stepping_now_p): New parameter 'inf'.
5126         Return false if dispaced stepping failed before.
5127         (resume): Pass the current inferior to
5128         use_displaced_stepping_now_p.  Wrap displaced_step_prepare in
5129         TRY/CATCH.  If we get a MEMORY_ERROR, set the inferior's
5130         displaced_stepping_failed flag, and fall back to an in-line
5131         step-over.
5132
5133 2015-08-07  Pedro Alves  <palves@redhat.com>
5134
5135         * darwin-nat.c (darwin_stop): Rename to ...
5136         (darwin_interrupt): ... this.
5137         (_initialize_darwin_inferior): Adjust.
5138         * gnu-nat.c (gnu_stop): Delete.
5139         (gnu_target): Don't install gnu_stop.
5140         * inf-ptrace.c (inf_ptrace_stop): Rename to ...
5141         (inf_ptrace_interrupt): ... this.
5142         (inf_ptrace_target): Adjust.
5143         * infcmd.c (interrupt_target_1): Use target_interrupt instead of
5144         target_stop.
5145         * linux-nat (linux_nat_stop): Rename to ...
5146         (linux_nat_interrupt): ... this.
5147         (linux_nat_stop): Reimplement.
5148         (linux_nat_add_target): Install linux_nat_interrupt.
5149         * nto-procfs.c (nto_interrupt_twice): Rename to ...
5150         (nto_handle_sigint_twice): ... this.
5151         (nto_interrupt): Rename to ...
5152         (nto_handle_sigint): ... this.  Call target_interrupt instead of
5153         target_stop.
5154         (procfs_wait): Adjust.
5155         (procfs_stop): Rename to ...
5156         (procfs_interrupt): ... this.
5157         (init_procfs_targets): Adjust.
5158         * procfs.c (procfs_stop): Rename to ...
5159         (procfs_interrupt): ... this.
5160         (procfs_target): Adjust.
5161         * remote-m32r-sdi.c (m32r_stop): Rename to ...
5162         (m32r_interrupt): ... this.
5163         (init_m32r_ops): Adjust.
5164         * remote-sim.c (gdbsim_stop_inferior): Rename to ...
5165         (gdbsim_interrupt_inferior): ... this.
5166         (gdbsim_stop): Rename to ...
5167         (gdbsim_interrupt): ... this.
5168         (gdbsim_cntrl_c): Adjust.
5169         (init_gdbsim_ops): Adjust.
5170         * remote.c (sync_remote_interrupt): Adjust comments.
5171         (remote_stop_as): Rename to ...
5172         (remote_interrupt_as): ... this.
5173         (remote_stop): Adjust comment.
5174         (remote_interrupt): New function.
5175         (init_remote_ops): Install remote_interrupt.
5176         * target.c (target_interrupt): New function.
5177         * target.h (struct target_ops) <to_interrupt>: New field.
5178         (target_interrupt): New declaration.
5179         * windows-nat.c (windows_stop): Rename to ...
5180         (windows_interrupt): ... this.
5181         * target-delegates.c: Regenerate.
5182
5183 2015-08-07  Pedro Alves  <palves@redhat.com>
5184
5185         * signal-while-stepping-over-bp-other-thread.exp: Expect "restart
5186         threads" as alternative to "switching back to stepped thread".
5187
5188 2015-08-07  Pedro Alves  <palves@redhat.com>
5189
5190         * NEWS: Mention "maint set/show target-non-stop".
5191         * breakpoint.c (update_global_location_list): Check
5192         target_is_non_stop_p instead of non_stop.
5193         * infcmd.c (attach_command_post_wait, attach_command): Likewise.
5194         * infrun.c (show_can_use_displaced_stepping)
5195         (can_use_displaced_stepping_p, start_step_over_inferior):
5196         Likewise.
5197         (internal_resume_ptid): New function.
5198         (resume): Use it.
5199         (proceed): Check target_is_non_stop_p instead of non_stop.  If in
5200         all-stop mode but the target is always in non-stop mode, start all
5201         the other threads that are implicitly resumed too.
5202         (for_each_just_stopped_thread, fetch_inferior_event)
5203         (adjust_pc_after_break, stop_all_threads): Check
5204         target_is_non_stop_p instead of non_stop.
5205         (handle_inferior_event): Likewise.  Handle detach-fork in all-stop
5206         with the target always in non-stop mode.
5207         (handle_signal_stop) <random signal>: Check target_is_non_stop_p
5208         instead of non_stop.
5209         (switch_back_to_stepped_thread): Check target_is_non_stop_p
5210         instead of non_stop.
5211         (keep_going_stepped_thread): Use internal_resume_ptid.
5212         (stop_waiting): If in all-stop mode, and the target is in non-stop
5213         mode, stop all threads.
5214         (keep_going_pass): Likewise, when starting a new in-line step-over
5215         sequence.
5216         * linux-nat.c (get_pending_status, select_event_lwp)
5217         (linux_nat_filter_event, linux_nat_wait_1, linux_nat_wait): Check
5218         target_is_non_stop_p instead of non_stop.
5219         (linux_nat_always_non_stop_p): New function.
5220         (linux_nat_stop): Check target_is_non_stop_p instead of non_stop.
5221         (linux_nat_add_target): Install linux_nat_always_non_stop_p.
5222         * target-delegates.c: Regenerate.
5223         * target.c (target_is_non_stop_p): New function.
5224         (target_non_stop_enabled, target_non_stop_enabled_1): New globals.
5225         (maint_set_target_non_stop_command)
5226         (maint_show_target_non_stop_command): New functions.
5227         (_initilize_target): Install "maint set/show target-non-stop"
5228         commands.
5229         * target.h (struct target_ops) <to_always_non_stop_p>: New field.
5230         (target_non_stop_enabled): New declaration.
5231         (target_is_non_stop_p): New declaration.
5232
5233 2015-08-07  Pedro Alves  <pedro@codesourcery.com>
5234
5235         * breakpoint.c (breakpoints_should_be_inserted_now): If any thread
5236         has a pending status, return true.
5237         * gdbthread.h: Include target/waitstatus.h.
5238         (struct thread_suspend_state) <stop_reason, waitstatus_pending_p,
5239         stop_pc>: New fields.
5240         (struct thread_info) <resumed>: New field.
5241         (set_resumed): Declare.
5242         * infrun.c: Include "event-loop.h".
5243         (infrun_async_inferior_event_token, infrun_is_async): New globals.
5244         (infrun_async): New function.
5245         (clear_step_over_info): Add debug output.
5246         (displaced_step_in_progress_any_inferior): New function.
5247         (displaced_step_fixup): New returns int.
5248         (start_step_over): Handle in-line step-overs too.  Assert the
5249         thread is marked resumed.
5250         (resume_cleanups): Clear the thread's resumed flag.
5251         (resume): Set the thread's resumed flag.  Return early if the
5252         thread has a pending status.  Allow stepping a breakpoint with no
5253         signal.
5254         (proceed): Adjust to check 'resumed' instead of 'executing'.
5255         (clear_proceed_status_thread): If the thread has a pending status,
5256         and that status is a finished step, discard the pending status.
5257         (clear_proceed_status): Don't clear step_over_info here.
5258         (random_pending_event_thread, do_target_wait): New functions.
5259         (prepare_for_detach, wait_for_inferior, fetch_inferior_event): Use
5260         do_target_wait.
5261         (wait_one): New function.
5262         (THREAD_STOPPED_BY): New macro.
5263         (thread_stopped_by_watchpoint, thread_stopped_by_sw_breakpoint)
5264         (thread_stopped_by_hw_breakpoint): New functions.
5265         (switch_to_thread_cleanup, save_waitstatus, stop_all_threads): New
5266         functions.
5267         (handle_inferior_event): Also call set_resumed(false) on all
5268         threads implicitly stopped by the event.
5269         (restart_threads, resumed_thread_with_pending_status): New
5270         functions.
5271         (finish_step_over): If we were doing an in-line step-over before,
5272         and no longer are after trying to start a new step-over, restart
5273         all threads.  If we have multiple threads with pending events,
5274         save the current event and go through the event loop again.
5275         (handle_signal_stop): Return early if finish_step_over returns
5276         false.
5277         <random signal>: If we get a signal while stepping over a
5278         breakpoint in-line in non-stop mode, restart all threads.  Clear
5279         step_over_info before delivering the signal.
5280         (keep_going_stepped_thread): Use internal_error instead of
5281         gdb_assert.  Mark the thread as resumed.
5282         (keep_going_pass_signal): Assert the thread isn't already resumed.
5283         If some other thread is doing an in-line step-over, defer the
5284         resume.  If we just started a new in-line step-over, stop all
5285         threads.  Don't clear step_over_info.
5286         (infrun_async_inferior_event_handler): New function.
5287         (_initialize_infrun): Create async event handler with
5288         infrun_async_inferior_event_handler as callback.
5289         (infrun_async): New declaration.
5290         * target.c (target_async): New function.
5291         * target.h (target_async): Declare macro and readd as function
5292         declaration.
5293         * target/waitstatus.h (enum target_stop_reason)
5294         <TARGET_STOPPED_BY_SINGLE_STEP>: New value.
5295         * thread.c (new_thread): Clear the new waitstatus field.
5296         (set_resumed): New function.
5297
5298 2015-08-07  Pedro Alves  <palves@redhat.com>
5299
5300         * infrun.c (keep_going_stepped_thread): New function, factored out
5301         from ...
5302         (switch_back_to_stepped_thread): ... here.
5303
5304 2015-08-07  Pedro Alves  <palves@redhat.com>
5305
5306         * infrun.c (currently_stepping): Extend intro comment.
5307         * target.h (target_resume): Extend intro comment.
5308
5309 2015-08-07  Pedro Alves  <palves@redhat.com>
5310
5311         * infrun.c (switch_back_to_stepped_thread): Use ecs->ptid instead
5312         of inferior_ptid.  If the stepped thread vanished, return 0
5313         instead of resuming here.  Use reset_ecs.  Print the prev_pc and
5314         the current stop_pc in log message.  Clear trap_expected if the
5315         thread advanced.  Don't pass currently_stepping to
5316         do_target_resume.
5317
5318 2015-08-07  Pedro Alves  <palves@redhat.com>
5319
5320         * gdbthread.h (struct thread_info) <prev_pc>: Extend comment.
5321         * infrun.c (struct execution_control_state): Move higher up in the
5322         file.
5323         (reset_ecs): New function.
5324         (start_step_over): Now returns int.  Rewrite to use
5325         keep_going_pass_signal instead of manually starting a displaced step.
5326         (resume): Don't call set_running here.  If displaced stepping
5327         can't start now, clear trap_expected.
5328         (find_thread_needs_step_over): Delete function.
5329         (proceed): Set up finish_thread_state_cleanup.  Call set_running.
5330         If the current thread needs a step over, push it in the step-over
5331         chain.  Don't set insert breakpoints nor call resume directly
5332         here.  Instead rewrite to use start_step_over and
5333         keep_going_pass_signal.
5334         (finish_step_over): New function.
5335         (handle_signal_stop): Call finish_step_over instead of
5336         start_step_over.
5337         (switch_back_to_stepped_thread): If the event thread needs another
5338         step-over do that first.  Use start_step_over.
5339         (keep_going_pass_signal): New function, factored out from ...
5340         (keep_going): ... here.
5341         (_initialize_infrun): Comment moved here.
5342         * thread.c (set_running_thread): New function.
5343         (set_running, finish_thread_state): Use set_running_thread.
5344
5345 2015-08-07  Pedro Alves  <palves@redhat.com>
5346
5347         * gdbthread.h (struct thread_info) <step_over_prev,
5348         step_over_next>: New fields.
5349         (thread_step_over_chain_enqueue, thread_step_over_chain_remove)
5350         (thread_step_over_chain_next, thread_is_in_step_over_chain): New
5351         declarations.
5352         * infrun.c (struct displaced_step_request): Delete.
5353         (struct displaced_step_inferior_state) <step_request_queue>:
5354         Delete field.
5355         (displaced_step_prepare): Assert that trap_expected is set.  Use
5356         thread_step_over_chain_enqueue.  Split starting a new displaced
5357         step to ...
5358         (start_step_over): ... this new function.
5359         (resume): Assert the thread isn't waiting for a step over already.
5360         (proceed): Assert the thread isn't waiting for a step over
5361         already.
5362         (infrun_thread_stop_requested): Adjust to remove threads from the
5363         embedded step-over chain.
5364         (handle_inferior_event) <fork/vfork>: Call start_step_over after
5365         displaced_step_fixup.
5366         (handle_signal_stop): Call start_step_over after
5367         displaced_step_fixup.
5368         * infrun.h (step_over_queue_head): New declaration.
5369         * thread.c (step_over_chain_enqueue, step_over_chain_remove)
5370         (thread_step_over_chain_next, thread_is_in_step_over_chain)
5371         (thread_step_over_chain_enqueue)
5372         (thread_step_over_chain_remove): New functions.
5373         (delete_thread_1): Remove thread from the step-over chain.
5374
5375 2015-08-07  Pedro Alves  <palves@redhat.com>
5376
5377         * infrun.c (thread_still_needs_step_over): Rename to ...
5378         (thread_still_needs_step_over_bp): ... this.
5379         (enum step_over_what): New.
5380         (thread_still_needs_step_over): Reimplement.
5381
5382 2015-08-07  Pedro Alves  <palves@redhat.com>
5383
5384         * remote.c (remote_wait_as): If not waiting for a stop reply,
5385         return TARGET_WAITKIND_NO_RESUMED.  If TARGET_WNOHANG is
5386         requested, don't block waiting forever.
5387
5388 2015-08-07  Pedro Alves  <pedro@codesourcery.com>
5389
5390         * infrun.c (adjust_pc_after_break): Now takes thread_info and
5391         waitstatus pointers instead of an ecs.  Adjust.
5392         (handle_inferior_event): Adjust caller.
5393
5394 2015-08-07  Pedro Alves  <palves@redhat.com>
5395
5396         * infrun.c (handle_inferior_event): If we get
5397         TARGET_WAITKIND_SIGNALLED or TARGET_WAITKIND_EXITED in non-stop
5398         mode, mark all threads of the exiting process as not-executing.
5399         (normal_stop): If we get TARGET_WAITKIND_SIGNALLED or
5400         TARGET_WAITKIND_EXITED in non-stop mode, finish all threads of the
5401         exiting process, if inferior_ptid still points at a process.
5402         * thread.c (struct current_thread_cleanup) <next>: New field.
5403         (current_thread_cleanup_chain): New global.
5404         (restore_current_thread_ptid_changed): New function.
5405         (restore_current_thread_cleanup_dtor): Remove the cleanup from the
5406         current_thread_cleanup_chain list.
5407         (make_cleanup_restore_current_thread): Add the cleanup data to the
5408         current_thread_cleanup_chain list.
5409         (_initialize_thread): Install restore_current_thread_ptid_changed
5410         as thread_ptid_changed observer.
5411
5412 2015-08-07  Joel Brobecker  <brobecker@adacore.com>
5413
5414         * dtrace-probe.c (dtrace_process_dof): Ignore the objfile's DOF
5415         data if a DTRACE_DOF_SECT_TYPE_PROVIDER section is found to be
5416         smaller than expected.
5417
5418 2015-08-07  Andrew Burgess  <andrew.burgess@embecosm.com>
5419
5420         * stack.c (get_frame_language): Moved ...
5421         * frame.c (get_frame_language): ... to here.
5422         * language.h (get_frame_language): Declaration moved to frame.h.
5423         * frame.h: Add language.h include, for language enum.
5424         (get_frame_language): Declaration moved from language.h.
5425         * language.c: Add frame.h include.
5426         * top.c: Add frame.h include.
5427         * symtab.h (struct obj_section): Declare.
5428         (struct cmd_list_element): Declare.
5429
5430 2015-08-07  Andrew Burgess  <andrew.burgess@embecosm.com>
5431
5432         * language.c (show_language_command): Find selected frame before
5433         asking for the language of that frame.
5434         (set_language_command): Likewise.
5435         * language.h (get_frame_language): Add frame parameter.
5436         * stack.c (get_frame_language): Add frame parameter, assert
5437         parameter is not NULL, update comment and reindent.
5438         * top.c (check_frame_language_change): Pass the selected frame
5439         into get_frame_language.
5440
5441 2015-08-07  Markus Metzger  <markus.t.metzger@intel.com>
5442
5443         * btrace.c (btrace_compute_ftrace_bts): Clear insn flags.
5444         (pt_btrace_insn_flags): New.
5445         (ftrace_add_pt): Call pt_btrace_insn_flags.
5446         * btrace.h (btrace_insn_flag): New.
5447         (btrace_insn) <flags>: New.
5448         * record-btrace.c (btrace_insn_history): Print insn prefix.
5449         * NEWS: Announce it.
5450
5451 2015-08-07  Markus Metzger  <markus.t.metzger@intel.com>
5452
5453         * configure.ac: Check for PERF_ATTR_SIZE_VER5 in linux/perf_event.h
5454         * configure: Regenerate.
5455
5456 2015-08-06  Yaakov Selkowitz  <yselkowi@redhat.com>
5457
5458         * Makefile.in (LIBICONV): Define.
5459         (CLIBS): Add LIBICONV.
5460         * acinclude.m4: Use config/iconv.m4 instead of custom AM_ICONV.
5461         * configure: Regenerate.
5462
5463 2015-08-06  Simon Marchi  <simon.marchi@ericsson.com>
5464             Pedro Alves  <palves@redhat.com>
5465
5466         * arm-tdep.c (set_fp_model_sfunc): Add cast from integer to enum.
5467         (arm_set_abi): Likewise.
5468         * ax-general.c (ax_print): Likewise.
5469         * c-exp.y (exp : string_exp): Likewise.
5470         * compile/compile-loc2c.c (compute_stack_depth_worker): Likewise.
5471         (do_compile_dwarf_expr_to_c): Likewise.
5472         * cp-name-parser.y (demangler_special : DEMANGLER_SPECIAL start):
5473         Likewise.
5474         * dwarf2expr.c (execute_stack_op): Likewise.
5475         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Likewise.
5476         (disassemble_dwarf_expression): Likewise.
5477         * dwarf2read.c (dwarf2_add_member_fn): Likewise.
5478         (read_array_order): Likewise.
5479         (abbrev_table_read_table): Likewise.
5480         (read_attribute_value): Likewise.
5481         (skip_unknown_opcode): Likewise.
5482         (dwarf_decode_macro_bytes): Likewise.
5483         (dwarf_decode_macros): Likewise.
5484         * eval.c (value_f90_subarray): Likewise.
5485         * guile/scm-param.c (gdbscm_make_parameter): Likewise.
5486         * i386-linux-tdep.c (i386_canonicalize_syscall): Likewise.
5487         * infrun.c (handle_command): Likewise.
5488         * memory-map.c (memory_map_start_memory): Likewise.
5489         * osabi.c (set_osabi): Likewise.
5490         * parse.c (operator_length_standard): Likewise.
5491         * ppc-linux-tdep.c (ppc_canonicalize_syscall): Likewise, and use
5492         single return point.
5493         * python/py-frame.c (gdbpy_frame_stop_reason_string): Likewise.
5494         * python/py-symbol.c (gdbpy_lookup_symbol): Likewise.
5495         (gdbpy_lookup_global_symbol): Likewise.
5496         * record-full.c (record_full_restore): Likewise.
5497         * regcache.c (regcache_register_status): Likewise.
5498         (regcache_raw_read): Likewise.
5499         (regcache_cooked_read): Likewise.
5500         * rs6000-tdep.c (powerpc_set_vector_abi): Likewise.
5501         * symtab.c (initialize_ordinary_address_classes): Likewise.
5502         * target-debug.h (target_debug_print_signals): Likewise.
5503         * utils.c (do_restore_current_language): Likewise.
5504
5505 2015-08-06  Clem Dickey  <clemd@acm.org>
5506
5507         PR python/17136
5508         * python/lib/gdb/command/type_printers.py (InfoTypePrinter): Fix typo.
5509
5510 2015-08-06  Simon Marchi  <simon.marchi@ericsson.com>
5511
5512         * complaints.c (enum complaint_series): Add newlines and remove
5513         out of date comment.
5514         (struct complaints) <series>: Change type to enum
5515         complaint_series and remove out of date comment.
5516         (symfile_complaint_hook): Use equivalent enum value
5517         ISOLATED_MESSAGE instead of 0.
5518
5519 2015-08-06  Pedro Alves  <palves@redhat.com>
5520
5521         * nat/linux-waitpid.c (my_waitpid): Only print *status if waitpid
5522         returned > 0.
5523
5524 2015-08-06  Pierre Langlois  <pierre.langlois@arm.com>
5525
5526         * common/agent.c (symbol_list) <required>: Remove.
5527
5528 2015-08-06  Pedro Alves  <palves@redhat.com>
5529
5530         * target/waitstatus.h (enum target_stop_reason)
5531         <TARGET_STOPPED_BY_SINGLE_STEP>: New value.
5532
5533 2015-08-05  Pedro Alves  <palves@redhat.com>
5534             Joel Brobecker  <brobecker@adacore.com>
5535
5536         * breakpoint.c (bpstat_what) <bp_longjmp, bp_longjmp_call_dummy>
5537         <bp_exception, bp_longjmp_resume, bp_exception_resume>: Handle the
5538         case where BS->STOP is not set.
5539
5540 2015-08-05  Ulrich Weigand  <uweigand@de.ibm.com>
5541
5542         * nat/gdb_thread_db.h: Add copyright header.
5543         Protect against multiple inclusion.
5544
5545 2015-08-05  Yao Qi  <yao.qi@linaro.org>
5546
5547         * aarch64-linux-nat.c (get_thread_id): Remove.
5548         (debug_reg_change_callback): Call ptid_get_lwp instead of
5549         get_thread_id.
5550         (fetch_gregs_from_thread): Likewise.
5551         (store_gregs_to_thread): Likewise.
5552         (fetch_fpregs_from_thread): Likewise.
5553         (store_fpregs_to_thread): Likewise.
5554         (aarch64_linux_get_debug_reg_capacity): Likewise.
5555         * arm-linux-nat.c (get_thread_id): Remove.
5556         (GET_THREAD_ID): Update macro to use ptid_get_lwp.
5557         * xtensa-linux-nat.c (get_thread_id): Remove.
5558         (GET_THREAD_ID): Update macro to use ptid_get_lwp.
5559         * arm-linux-nat.c (get_thread_id): Remove.
5560         (GET_THREAD_ID): Remove.
5561         (fetch_fpregs): Call ptid_get_lwp instead of GET_THREAD_ID.
5562         (store_fpregs, fetch_regs, store_regs): Likewise.
5563         (fetch_wmmx_regs, store_wmmx_regs): Likewise.
5564         (fetch_vfp_regs, store_vfp_regs): Likewise.
5565         (arm_linux_read_description): Likewise.
5566         (arm_linux_get_hwbp_cap): Likewise.
5567         * xtensa-linux-nat.c (get_thread_id): Remove.
5568         (GET_THREAD_ID): Remove.
5569         (fetch_gregs, store_gregs): Call ptid_get_lwp instead of
5570         GET_THREAD_ID.
5571
5572 2015-08-04  Ciro Santilli  <ciro.santilli@gmail.com>  (obvious patch)
5573
5574         * python/py-linetable.c: Fix case of Linetable to LineTable
5575         in docstrings and code comments.
5576         * python/py-symtab.c: Same.
5577
5578 2015-08-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
5579
5580         * infcmd.c (signal_command): Call do_cleanups for args_chain.
5581
5582 2015-08-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
5583
5584         PR gdb/18767
5585         * infcmd.c (attach_command): Move ARGS_CHAIN cleanup after last ARGS
5586         use.
5587
5588 2015-08-04  Pedro Alves  <palves@redhat.com>
5589
5590         * nat/gdb_thread_db.h (td_init_ftype, td_ta_new_ftype)
5591         (td_ta_map_lwp2thr_ftype, td_ta_thr_iter_ftype)
5592         (td_ta_event_addr_ftype, td_ta_set_event_ftype)
5593         (td_ta_clear_event_ftype, td_ta_event_getmsg_ftype)
5594         (td_thr_validate_ftype, td_thr_get_info_ftype)
5595         (td_thr_event_enable_ftype, td_thr_tls_get_addr_ftype)
5596         (td_thr_tlsbase_ftype, td_symbol_list_ftype, td_ta_delete_ftype):
5597         New typedefs.
5598         * linux-thread-db.c (struct thread_db_info): Use new typedefs.
5599         (try_thread_db_load_1): Define TDB_VERBOSE_DLSYM, TDB_DLSYM , CHK
5600         local macros and use them instead of verbose_dlsym and dlsym
5601         calls.
5602
5603 2015-08-03  Sandra Loosemore  <sandra@codesourcery.com>
5604
5605         * nios2-tdep.h: Include opcode/nios2.h here.
5606         (NIOS2_CDX_OPCODE_SIZE): New.
5607         (struct gdbarch_tdep): Add OP parameter to syscall_next_pc.
5608         * nios2-tdep.c: Don't include opcode/nios2.h here.
5609         (nios2_fetch_insn): For R2, try reading 2-byte instruction if
5610         4-byte read fails.
5611         (nios2_match_add, nios2_match_sub): Add cases for R2 encodings.
5612         (nios2_match_addi, nios2_match_orhi): Likewise.
5613         (nios2_match_stw, nios2_match_ldw): Likewise.
5614         (nios2_match_rdctl): Likewise.
5615         (nios2_match_stwm, nios2_match_ldwm): New.
5616         (nios2_match_branch): Add cases for R2 encodings.
5617         (nios2_match_jmpi, nios2_match_calli): Likewise.
5618         (nios2_match_jmpr, nios2_match_callr): Likewise.
5619         (nios2_match_break, nios2_match_trap): Likewise.
5620         (nios2_in_epilogue_p): Add R2 support.
5621         (nios2_analyze_prologue): Update comments.  Recognize R2 CDX
5622         prologues.
5623         (nios2_breakpoint_from_pc): Handle R2 instructions.
5624         (nios2_get_next_pc): Likewise.  Adjust call to
5625         tdep->syscall_next_pc.
5626         * nios2-linux-tdep.c (nios2_r1_linux_rt_sigreturn_tramp_frame):
5627         Renamed from nios2_linux_rt_sigreturn_tramp_frame.  Use
5628         instruction field macros instead of literal hex values.
5629         (nios2_r2_linux_rt_sigreturn_tramp_frame): New.
5630         (nios2_linux_syscall_next_pc): Adjust signature to pass OP.
5631         Use size field from OP instead of assuming all instructions
5632         are the same size.
5633         (nios2_linux_init_abi): Register appropriate unwinder for mach.
5634
5635 2015-08-03  Ulrich Weigand  <uweigand@de.ibm.com>
5636
5637         * cp-namespace.c (cp_lookup_symbol_via_imports): Fix uninitialized
5638         variable warning with some compilers.
5639
5640 2015-08-03  Yao Qi  <yao.qi@linaro.org>
5641
5642         * arm-linux-nat.c (arm_linux_get_hwbp_type): Capitalize "type"
5643         in comment.  Replace "rw" with "type".
5644         (arm_linux_remove_watchpoint): Change type of "rw" to
5645         "enum target_hw_bp_type".
5646
5647 2015-08-02  Pierre-Marie de Rodat  <derodat@adacore.com>
5648
5649         * alpha-mdebug-tdep.c (find_proc_desc): Update call to
5650         lookup_symbol.
5651         * ft32-tdep.c (ft32_skip_prologue): Likewise.
5652         * moxie-tdep.c (moxie_skip_prologue): Likewise.
5653         * mt-tdep.c (mt_skip_prologue): Likewise.
5654         * xstormy16-tdep.c (xstormy16_skip_prologue): Likewise.
5655
5656 2015-08-01  Pierre-Marie de Rodat  <derodat@adacore.com>
5657
5658         * ada-exp.y (write_object_renaming): Replace struct
5659         ada_symbol_info with struct block_symbol.  Update field
5660         references accordingly.
5661         (block_lookup, select_possible_type_sym): Likewise.
5662         (find_primitive_type): Likewise.  Also update call to
5663         ada_lookup_symbol to extract the symbol itself.
5664         (write_var_or_type, write_name_assoc): Likewise.
5665         * ada-lang.h (struct ada_symbol_info): Remove.
5666         (ada_lookup_symbol_list): Replace struct ada_symbol_info with
5667         struct block_symbol.
5668         (ada_lookup_encoded_symbol, user_select_syms): Likewise.
5669         (ada_lookup_symbol): Return struct block_symbol instead of a
5670         mere symbol.
5671         * ada-lang.c (defns_collected): Replace struct ada_symbol_info
5672         with struct block_symbol.
5673         (resolve_subexp, ada_resolve_function, sort_choices,
5674         user_select_syms, is_nonfunction, add_defn_to_vec,
5675         num_defns_collected, defns_collected,
5676         symbols_are_identical_enums, remove_extra_symbols,
5677         remove_irrelevant_renamings, add_lookup_symbol_list_worker,
5678         ada_lookup_symbol_list, ada_iterate_over_symbols,
5679         ada_lookup_encoded_symbol, get_var_value): Likewise.
5680         (ada_lookup_symbol): Return a block_symbol instead of a mere
5681         symbol.  Replace struct ada_symbol_info with struct
5682         block_symbol.
5683         (ada_lookup_symbol_nonlocal): Likewise.
5684         (standard_lookup): Make block passing explicit through
5685         lookup_symbol_in_language.
5686         * ada-tasks.c (get_tcb_types_info): Update the calls to
5687         lookup_symbol_in_language to extract the mere symbol out of the
5688         returned value.
5689         (ada_tasks_inferior_data_sniffer): Likewise.
5690         * ax-gdb.c (gen_static_field): Likewise for the call to
5691         lookup_symbol.
5692         (gen_maybe_namespace_elt): Deal with struct block_symbol from
5693         lookup functions.
5694         (gen_expr): Likewise.
5695         * c-exp.y: Likewise.  Remove uses of block_found.
5696         (lex_one_token, classify_inner_name, c_print_token): Likewise.
5697         (classify_name): Likewise.  Rename the "sym" local variable to
5698         "bsym".
5699         * c-valprint.c (print_unpacked_pointer): Likewise.
5700         * compile/compile-c-symbols.c (convert_symbol_sym): Promote the
5701         "sym" parameter from struct symbol * to struct block_symbol.
5702         Use it to remove uses of block_found.  Deal with struct
5703         block_symbol from lookup functions.
5704         (gcc_convert_symbol): Likewise.  Update the call to
5705         convert_symbol_sym.
5706         * compile/compile-object-load.c (compile_object_load): Deal with
5707         struct block_symbol from lookup functions.
5708         * cp-namespace.c (cp_lookup_nested_symbol_1,
5709         cp_lookup_nested_symbol, cp_lookup_bare_symbol,
5710         cp_search_static_and_baseclasses,
5711         cp_lookup_symbol_in_namespace, cp_lookup_symbol_via_imports,
5712         cp_lookup_symbol_imports_or_template,
5713         cp_lookup_symbol_via_all_imports, cp_lookup_symbol_namespace,
5714         lookup_namespace_scope, cp_lookup_nonlocal,
5715         find_symbol_in_baseclass): Return struct block_symbol instead of
5716         mere symbols and deal with struct block_symbol from lookup
5717         functions.
5718         * cp-support.c (inspect_type, replace_typedefs,
5719         cp_lookup_rtti_type): Deal with struct block_symbol from
5720         lookup functions.
5721         * cp-support.h (cp_lookup_symbol_nonlocal,
5722         cp_lookup_symbol_from_namespace,
5723         cp_lookup_symbol_imports_or_template, cp_lookup_nested_symbol):
5724         Return struct block_symbol instead of mere symbols.
5725         * d-exp.y (d_type_from_name, d_module_from_name, push_variable,
5726         push_module_name):
5727         Deal with struct block_symbol from lookup functions.  Remove
5728         uses of block_found.
5729         * eval.c (evaluate_subexp_standard): Update call to
5730         cp_lookup_symbol_namespace.
5731         * f-exp.y: Deal with struct block_symbol from lookup functions.
5732         Remove uses of block_found.
5733         (yylex): Likewise.
5734         * gdbtypes.c (lookup_typename, lookup_struct, lookup_union,
5735         lookup_enum, lookup_template_type, check_typedef): Deal with
5736         struct block_symbol from lookup functions.
5737         * guile/scm-frame.c (gdbscm_frame_read_var): Likewise.
5738         * guile/scm-symbol.c (gdbscm_lookup_symbol): Likewise.
5739         (gdbscm_lookup_global_symbol): Likewise.
5740         * gnu-v3-abi.c (gnuv3_get_typeid_type): Likewise.
5741         * go-exp.y: Likewise.  Remove uses of block_found.
5742         (package_name_p, classify_packaged_name, classify_name):
5743         Likewise.
5744         * infrun.c (insert_exception_resume_breakpoint): Likewise.
5745         * jv-exp.y (push_variable): Likewise.
5746         * jv-lang.c (java_lookup_class, get_java_object_type): Likewise.
5747         * language.c (language_bool_type): Likewise.
5748         * language.h (struct language_defn): Update
5749         la_lookup_symbol_nonlocal to return a struct block_symbol rather
5750         than a mere symbol.
5751         * linespec.c (find_label_symbols): Deal with struct block_symbol
5752         from lookup functions.
5753         * m2-exp.y: Likewise.  Remove uses of block_found.
5754         (yylex): Likewise.
5755         * mi/mi-cmd-stack.c (list_args_or_locals): Likewise.
5756         * objc-lang.c (lookup_struct_typedef, find_imps): Likewise.
5757         * p-exp.y: Likewise.  Remove uses of block_found.
5758         (yylex): Likewise.
5759         * p-valprint.c (pascal_val_print): Likewise.
5760         * parse.c (write_dollar_variable): Likewise.  Remove uses of
5761         block_found.
5762         * parser-defs.h (struct symtoken): Turn the SYM field into a
5763         struct block_symbol.
5764         * printcmd.c (address_info): Deal with struct block_symbol from
5765         lookup functions.
5766         * python/py-frame.c (frapy_read_var): Likewise.
5767         * python/py-symbol.c (gdbpy_lookup_symbol,
5768         gdbpy_lookup_global_symbol): Likewise.
5769         * skip.c (skip_function_command): Likewise.
5770         * solib-darwin.c (darwin_lookup_lib_symbol): Return a struct
5771         block_symbol instead of a mere symbol.
5772         * solib-spu.c (spu_lookup_lib_symbol): Likewise.
5773         * solib-svr4.c (elf_lookup_lib_symbol): Likewise.
5774         * solib.c (solib_global_lookup): Likewise.
5775         * solist.h (solib_global_lookup): Likewise.
5776         (struct target_so_ops): Update lookup_lib_global_symbol to
5777         return a struct block_symbol rather than a mere symbol.
5778         * source.c (select_source_symtab): Deal with struct block_symbol
5779         from lookup functions.
5780         * stack.c (print_frame_args, iterate_over_block_arg_vars):
5781         Likewise.
5782         * symfile.c (set_initial_language): Likewise.
5783         * symtab.c (SYMBOL_LOOKUP_FAILED): Turn into a struct
5784         block_symbol.
5785         (SYMBOL_LOOKUP_FAILED_P): New predicate as a macro.
5786         (struct symbol_cache_slot): Turn the FOUND field into a struct
5787         block_symbol.
5788         (block_found): Remove.
5789         (eq_symbol_entry): Update to deal with struct block_symbol in
5790         cache slots.
5791         (symbol_cache_lookup): Return a struct block_symbol rather than
5792         a mere symbol.
5793         (symbol_cache_mark_found): Add a BLOCK parameter to fill
5794         appropriately the cache slots.  Update callers.
5795         (symbol_cache_dump): Update cache slots handling to the type
5796         change.
5797         (lookup_symbol_in_language, lookup_symbol, lookup_language_this,
5798         lookup_symbol_aux, lookup_local_symbol,
5799         lookup_symbol_in_objfile, lookup_global_symbol_from_objfile,
5800         lookup_symbol_in_objfile_symtabs,
5801         lookup_symbol_in_objfile_from_linkage_name,
5802         lookup_symbol_via_quick_fns, basic_lookup_symbol_nonlocal,
5803         lookup_symbol_in_static_block, lookup_static_symbol,
5804         lookup_global_symbol):
5805         Return a struct block_symbol rather than a mere symbol.  Deal
5806         with struct block_symbol from other lookup functions.  Remove
5807         uses of block_found.
5808         (lookup_symbol_in_block): Remove uses of block_found.
5809         (struct global_sym_lookup_data): Turn the RESULT field into a
5810         struct block_symbol.
5811         (lookup_symbol_global_iterator_cb): Update references to the
5812         RESULT field.
5813         (search_symbols): Deal with struct block_symbol from lookup
5814         functions.
5815         * symtab.h (struct block_symbol): New structure.
5816         (block_found): Remove.
5817         (lookup_symbol_in_language, lookup_symbol,
5818         basic_lookup_symbol_nonlocal, lookup_symbol_in_static_block,
5819         lookup_static_symbol, lookup_global_symbol, lookup_language_this,
5820         lookup_global_symbol_from_objfile): Return a struct block_symbol
5821         rather than just a mere symbol.  Update comments to remove
5822         mentions of block_found.
5823         * valops.c (find_function_in_inferior,
5824         value_struct_elt_for_reference, value_maybe_namespace_elt,
5825         value_of_this):  Deal with struct block_symbol from lookup
5826         functions.
5827         * value.c (value_static_field, value_fn_field): Likewise.
5828
5829 2015-07-31  Simon Marchi  <simon.marchi@ericsson.com>
5830
5831         * remote-m32r-sdi.c (m32r_remove_watchpoint): Use enum type
5832         instead of integer.
5833
5834 2015-07-31  Simon Marchi  <simon.marchi@ericsson.com>
5835             Pedro Alves  <palves@redhat.com>
5836
5837         * aarch64-linux-nat.c (aarch64_linux_can_use_hw_breakpoint): Use enum
5838         type or value instead of integer.
5839         (aarch64_linux_insert_watchpoint): Likewise.
5840         (aarch64_linux_remove_watchpoint): Likewise.
5841         * ada-lang.c (ada_op_print_tab): Likewise.
5842         * amd64-linux-tdep.c (amd64_canonicalize_syscall): Likewise.
5843         (amd64_linux_syscall_record_common): Likewise.
5844         * arch-utils.c (target_byte_order_user): Likewise.
5845         (default_byte_order): Likewise.
5846         * arm-linux-nat.c (arm_linux_can_use_hw_breakpoint): Likewise.
5847         (arm_linux_get_hwbp_type): Likewise.
5848         (arm_linux_hw_watchpoint_initialize): Likewise.
5849         (arm_linux_insert_watchpoint): Likewise.
5850         * arm-linux-tdep.c (arm_canonicalize_syscall): Likewise.
5851         (arm_linux_syscall_record): Likewise.
5852         * breakpoint.c (update_watchpoint): Likewise.
5853         (breakpoint_here_p): Likewise.
5854         (bpstat_print): Likewise.
5855         (enable_breakpoint_disp): Likewise.
5856         * c-lang.c (c_op_print_tab): Likewise.
5857         * cli/cli-decode.c (add_info_alias): Likewise.
5858         * d-lang.c (d_op_print_tab): Likewise.
5859         * eval.c (evaluate_subexp_standard): Likewise.
5860         * f-exp.y (dot_ops): Likewise.
5861         (f77_keywords): Likewise.
5862         * f-lang.c (f_op_print_tab): Likewise.
5863         * go-lang.c (go_op_print_tab): Likewise.
5864         * guile/scm-breakpoint.c (gdbscm_make_breakpoint): Likewise.
5865         * guile/scm-cmd.c (gdbscm_make_command): Likewise.
5866         * guile/scm-param.c (gdbscm_make_parameter): Likewise.
5867         * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer): Likewise.
5868         * guile/scm-string.c (struct scm_to_stringn_data): Likewise.
5869         (struct scm_from_stringn_data): Likewise.
5870         * i386-linux-tdep.c (i386_canonicalize_syscall): Likewise.
5871         * ia64-linux-nat.c (ia64_linux_insert_watchpoint): Likewise.
5872         (ia64_linux_remove_watchpoint): Likewise.
5873         (ia64_linux_can_use_hw_breakpoint): Likewise.
5874         * infrun.c (print_stop_event): Likewise.
5875         * jv-lang.c (java_op_print_tab): Likewise.
5876         * linux-nat.c (linux_proc_xfer_partial): Likewise.
5877         * linux-nat.h (struct lwp_info): Likewise.
5878         * linux-thread-db.c (enable_thread_event): Likewise.
5879         * m2-lang.c (m2_op_print_tab): Likewise.
5880         * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Likewise.
5881         (mi_cmd_stack_list_variables): Likewise.
5882         * mi/mi-main.c (mi_cmd_trace_frame_collected): Likewise.
5883         * mi/mi-out.c (mi_table_begin): Likewise.
5884         (mi_table_header): Likewise.
5885         * mips-linux-nat.c (mips_linux_can_use_hw_breakpoint): Likewise.
5886         (mips_linux_insert_watchpoint): Likewise.
5887         (mips_linux_remove_watchpoint): Likewise.
5888         * nat/mips-linux-watch.c (mips_linux_watch_type_to_irw): Likewise.
5889         * nat/mips-linux-watch.h (struct mips_watchpoint): Likewise.
5890         (mips_linux_watch_type_to_irw): Likewise.
5891         * nto-procfs.c (procfs_can_use_hw_breakpoint): Likewise.
5892         (procfs_insert_hw_watchpoint): Likewise.
5893         (procfs_remove_hw_watchpoint): Likewise.
5894         (procfs_hw_watchpoint): Likewise.
5895         (procfs_can_use_hw_breakpoint): Likewise.
5896         (procfs_remove_hw_watchpoint): Likewise.
5897         (procfs_insert_hw_watchpoint): Likewise.
5898         * p-lang.c (pascal_op_print_tab): Likewise.
5899         * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): Likewise.
5900         * ppc-linux-tdep.c (ppu2spu_unwind_register): Likewise.
5901         * ppc-sysv-tdep.c (get_decimal_float_return_value): Likewise.
5902         * procfs.c (procfs_can_use_hw_breakpoint): Likewise.
5903         (procfs_insert_watchpoint): Likewise.
5904         (procfs_remove_watchpoint): Likewise.
5905         * psymtab.c (recursively_search_psymtabs): Likewise.
5906         * remote-m32r-sdi.c (m32r_can_use_hw_watchpoint): Likewise.
5907         (m32r_insert_watchpoint): Likewise.
5908         * remote-mips.c (mips_can_use_watchpoint): Likewise.
5909         (mips_insert_watchpoint): Likewise.
5910         (mips_remove_watchpoint): Likewise.
5911         * remote.c (watchpoint_to_Z_packet): Likewise.
5912         (remote_insert_watchpoint): Likewise.
5913         (remote_remove_watchpoint): Likewise.
5914         (remote_check_watch_resources): Likewise.
5915         * s390-linux-nat.c (s390_insert_watchpoint): Likewise.
5916         (s390_remove_watchpoint): Likewise.
5917         (s390_can_use_hw_breakpoint): Likewise.
5918         * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
5919         * spu-linux-nat.c (spu_can_use_hw_breakpoint): Likewise.
5920         * target.h (struct target_ops): Likewise.
5921         * tilegx-tdep.c (tilegx_analyze_prologue): Likewise.
5922         * ui-out.c (struct ui_out_hdr): Likewise.
5923         (append_header_to_list): Likewise.
5924         (get_next_header): Likewise.
5925         (verify_field): Likewise.
5926         (ui_out_begin): Likewise.
5927         (ui_out_field_int): Likewise.
5928         (ui_out_field_fmt_int): Likewise.
5929         (ui_out_field_skip): Likewise.
5930         (ui_out_field_string): Likewise.
5931         (ui_out_field_fmt): Likewise.
5932         * varobj.c (new_variable): Likewise.
5933         * x86-nat.c (x86_insert_watchpoint): Likewise.
5934         (x86_remove_watchpoint): Likewise.
5935         (x86_can_use_hw_breakpoint): Likewise.
5936         * xtensa-tdep.h (struct gdbarch_tdep): Likewise.
5937         * inflow.c (enum gdb_has_a_terminal_flag_enum): Add name to
5938         previously anonymous enumeration type..
5939         * linux-record.h (enum gdb_syscall): Add gdb_sys_no_syscall
5940         value.
5941         * target-debug.h (target_debug_print_enum_target_hw_bp_type): New.
5942         (target_debug_print_enum_bptype): New.
5943         * target-delegates.c: Regenerate.
5944
5945 2015-07-30  Sandra Loosemore  <sandra@codesourcery.com>
5946
5947         * nios2-tdep.c (nios2_analyze_prologue): Do what the comment
5948         already says and disallow non-stack memory writes in the prologue.
5949
5950 2015-07-30  Sandra Loosemore  <sandra@codesourcery.com>
5951
5952         * nios2-tdep.c (nios2_analyze_prologue): Update comments to
5953         reflect how current GCC emits stack overflow checks.  Match
5954         both trap and break instructions for backward compatbility.
5955         Disallow other trap and break instructions in the prologue.
5956
5957 2015-07-30  Pedro Alves  <palves@redhat.com>
5958
5959         PR threads/18600
5960         * linux-nat.c (wait_lwp): Report to the core when thread group
5961         leader exits.
5962
5963 2015-07-30  Pedro Alves  <palves@redhat.com>
5964             Simon Marchi  <simon.marchi@ericsson.com>
5965
5966         PR threads/18600
5967         * linux-nat.c (linux_handle_extended_wait): On CLONE event, always
5968         mark the new thread as resumed.  Remove STOPPING parameter.
5969         (wait_lwp): Adjust call to linux_handle_extended_wait.
5970         (linux_nat_filter_event): Adjust call to
5971         linux_handle_extended_wait.
5972         (resume_stopped_resumed_lwps): Add debug output.
5973
5974 2015-07-30  Pierre Langlois  <pierre.langlois@arm.com>
5975
5976         * arch-utils.c (default_fast_tracepoint_valid_at): Remove unused
5977         isize argument.
5978         * arch-utils.h (default_fast_tracepoint_valid_at): Likewise.
5979         * breakpoint.c (check_fast_tracepoint_sals): Adjust call to
5980         gdbarch_fast_tracepoint_valid_at.
5981         * gdbarch.sh (fast_tracepoint_valid_at): Remove isize argument.
5982         * gdbarch.h: Regenerate.
5983         * gdbarch.c: Regenerate.
5984         * i386-tdep.c (i386_fast_tracepoint_valid_at): Remove isize
5985         argument.  Do not set it.
5986         * remote.c (remote_download_tracepoint): Adjust call to
5987         gdbarch_fast_tracepoint_valid_at.  Call gdb_insn_length to get
5988         the instruction length.
5989
5990 2015-07-30  Yao Qi  <yao.qi@linaro.org>
5991
5992         * arm-tdep.h (enum gdb_regnum): Move it to ...
5993         * arch/arm.h: ... here.  New file.
5994         * Makefile.in (HFILES_NO_SRCDIR): Add arch/arm.h.
5995
5996 2015-07-30  Pierre Langlois  <pierre.langlois@arm.com>
5997
5998         * aarch64-tdep.c (decode_b): Rename link argument to is_bl.
5999         Change its type to int *.
6000         (decode_br): Rename link argument to is_blr.  Change its type to
6001         int *.
6002         (decode_cb): Rename op argument to is_cbnz.  Change its type to
6003         int *.
6004         (decode_tb): Rename op argument to is_tbnz.  Change its type to
6005         int *.  Set is_tbnz to either 1 or 0.
6006         (aarch64_analyze_prologue): Change type of is_link to int.  Add
6007         new variables is_cbnz and is_tbnz.  Adjust call to
6008         aarch64_decode_cb and aarch64_decode_tb.
6009
6010 2015-07-29  Simon Marchi  <simon.marchi@ericsson.com>
6011
6012         * mips-linux-nat.c (write_watchpoint_regs): Add NULL as ptrace's 4th
6013         parameter.
6014         (mips_linux_new_thread): Likewise.
6015         * nat/mips-linux-watch.c (mips_linux_read_watch_registers): Likewise.
6016
6017 2015-07-29  Patrick Palka  <patrick@parcs.ath.cx>
6018
6019         * top.c: Include "tui/tui.h".
6020         (undo_terminal_modifications_before_exit): New static function.
6021         (quit_force): Use it.
6022
6023 2015-07-29  Patrick Palka  <patrick@parcs.ath.cx>
6024
6025         * target.c (terminal_state): Initialize to terminal_is_ours.
6026
6027 2015-07-29  Yao Qi  <yao.qi@linaro.org>
6028
6029         PR record/18691
6030         * dcache.c (dcache_read_memory_partial): Call
6031         raw_memory_xfer_partial.
6032         * target.c (raw_memory_xfer_partial): Make it non-static.
6033         * target.h (raw_memory_xfer_partial): Declare.
6034
6035 2015-07-28  Simon Marchi  <simon.marchi@ericsson.com>
6036
6037         * c-valprint.c (c_val_print_array): Consider addressable memory
6038         unit size.
6039         (c_val_print_ptr): Likewise.
6040         (c_val_print_int): Likewise.
6041         * findvar.c (read_frame_register_value): Likewise.
6042         * valarith.c (find_size_for_pointer_math): Likewise.
6043         (value_ptrdiff): Likewise.
6044         (value_subscripted_rvalue): Likewise.
6045         * valops.c (read_value_memory): Likewise (and rename variables).
6046         (value_assign): Likewise.
6047         (value_repeat): Likewise.
6048         (value_array): Likewise.
6049         (value_slice): Likewise.
6050         * valprint.c (generic_val_print_ptr): Likewise.
6051         (generic_val_print_enum): Likewise.
6052         (generic_val_print_bool): Likewise.
6053         (generic_val_print_int): Likewise.
6054         (generic_val_print_char): Likewise.
6055         (generic_val_print_float): Likewise.
6056         (generic_val_print_decfloat): Likewise.
6057         (generic_val_print_complex): Likewise.
6058         (val_print_scalar_formatted): Likewise.
6059         (val_print_array_elements): Likewise.
6060         * value.c (set_value_parent): Likewise.
6061         (value_contents_copy_raw): Likewise.
6062         (set_internalvar_component): Likewise.
6063         (value_primitive_field): Likewise.
6064         (value_fetch_lazy): Likewise.
6065         * value.h (read_value_memory): Update comment.
6066
6067 2015-07-28  Simon Marchi  <simon.marchi@ericsson.com>
6068
6069         * value.c (get_value_arch): New function.
6070         * value.h (get_value_arch): New declaration.
6071
6072 2015-07-28  Simon Marchi  <simon.marchi@ericsson.com>
6073
6074         * value.c (struct value): Update comments.
6075
6076 2015-07-28  Simon Marchi  <simon.marchi@ericsson.com>
6077
6078         * gdbtypes.c (type_length_units): New function.
6079         * gdbtypes.h (type_length_units): New declaration.
6080         (struct type) <length>: Update comment.
6081
6082 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
6083
6084         * valprint.c (generic_val_print): Factor out complex
6085         printing code to ...
6086         (generic_val_print_complex): ... this new function.
6087
6088 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
6089
6090         * valprint.c (generic_val_print): Factor out decfloat
6091         printing code to ...
6092         (generic_val_print_decfloat): ... this new function.
6093
6094 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
6095
6096         * valprint.c (generic_val_print): Factor out float
6097         printing code to ...
6098         (generic_val_print_float): ... this new function.
6099
6100 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
6101
6102         * valprint.c (generic_val_print): Factor out char
6103         printing code to ...
6104         (generic_val_print_char): ... this new function.
6105
6106 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
6107
6108         * valprint.c (generic_val_print): Factor out integer
6109         printing code to ...
6110         (generic_val_print_int): ... this new function.
6111
6112 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
6113
6114         * valprint.c (generic_val_print): Factor out bool
6115         printing code to ...
6116         (generic_val_print_bool): ... this new function.
6117
6118 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
6119
6120         * valprint.c (generic_val_print): Factor out function/method
6121         printing code to ...
6122         (generic_val_print_func): ... this new function.
6123
6124 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
6125
6126         * valprint.c (generic_val_print): Factor out flags
6127         printing code to ...
6128         (generic_val_print_flags): ... this new function.
6129
6130 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
6131
6132         * valprint.c (generic_val_print): Factor out enum
6133         printing code to ...
6134         (generic_val_print_enum): ... this new function.
6135
6136 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
6137
6138         * valprint.c (generic_val_print): Factor out reference
6139         printing code to ...
6140         (generic_val_print_ref): ... this new function.
6141
6142 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
6143
6144         * valprint.c (generic_val_print): Factor out memberptr
6145         printing code to ...
6146         (generic_val_print_memberptr): ... this new function.
6147
6148 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
6149
6150         * valprint.c (generic_val_print): Factor out pointer
6151         printing code to ...
6152         (generic_val_print_ptr): ... this new function.
6153
6154 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
6155
6156         * valprint.c (generic_val_print): Factor out array
6157         printing code to ...
6158         (generic_val_print_array): ... this new function.
6159
6160 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
6161
6162         * valprint.c (generic_val_print): Factor out
6163         print_unpacked_pointer code to ...
6164         (print_unpacked_pointer): ... this new function.
6165
6166 2015-07-27  Patrick Palka  <patrick@parcs.ath.cx>
6167
6168         * event-top.c (handle_sigterm): Don't inspect
6169         target_can_async_p.  Always set the quit flag and always mark
6170         the async signal handler.
6171
6172 2015-07-27  Yao Qi  <yao.qi@linaro.org>
6173
6174         * Makefile.in (REMOTE_EXAMPLES): Remove it.
6175
6176 2015-07-25  Kevin Buettner  <kevinb@redhat.com>
6177
6178         * remote.c (read_ptid): Return null_ptid when no thread id
6179         is found.
6180         (remote_current_thread): Add log warning for malformed
6181         qC reply.
6182         (remote_start_remote): Add log warning when current thread
6183         not found.
6184
6185 2015-07-24  Pedro Alves  <palves@redhat.com>
6186
6187         * s390-linux-nat.c (fetch_regs, store_regs, fetch_fpregs)
6188         (s390_stopped_by_watchpoint, s390_prepare_to_resume): Pass 0 as
6189         forth argument to ptrace PTRACE_PEEKUSR_AREA/PTRACE_POKEUSR_AREA.
6190
6191 2015-07-24  Pedro Alves  <palves@redhat.com>
6192
6193         PR gdb/18717
6194         * linux-nat.c (linux_nat_filter_event): Don't assert that the lwp
6195         is resumed, and extend the debug log.
6196
6197 2015-07-24  Pedro Alves  <palves@redhat.com>
6198
6199         * fork-child.c (fork_inferior): Print argv[0] instead of exec_file.
6200
6201 2015-07-24  Pedro Alves  <palves@redhat.com>
6202
6203         * aarch64-linux-nat.c: Include nat/gdb_ptrace.h instead of
6204         sys/ptrace.h.
6205         * alpha-linux-nat.c: Likewise.
6206         * amd64-linux-nat.c: Likewise.
6207         * arm-linux-nat.c: Likewise.
6208         * hppa-linux-nat.c: Likewise.
6209         * i386-linux-nat.c: Likewise.
6210         * ia64-linux-nat.c: Likewise.
6211         * linux-fork.c: Likewise.
6212         * linux-nat.c: Likewise.
6213         * m32r-linux-nat.c: Likewise.
6214         * m68klinux-nat.c: Likewise.
6215         * mips-linux-nat.c: Likewise.
6216         * nat/linux-btrace.c: Likewise.
6217         * nat/linux-ptrace.c: Likewise.
6218         * nat/linux-ptrace.h
6219         * nat/mips-linux-watch.c: Likewise.
6220         * nat/x86-linux-dregs.c: Likewise.
6221         * ppc-linux-nat.c: Likewise.
6222         * s390-linux-nat.c: Likewise.
6223         * spu-linux-nat.c: Likewise.
6224         * tilegx-linux-nat.c: Likewise.
6225         * x86-linux-nat.c: Likewise.
6226         * xtensa-linux-nat.c: Likewise.
6227
6228 2015-07-24  Pedro Alves  <palves@redhat.com>
6229
6230         * ptrace.m4 (ptrace tests): Test in C++ mode.  Try with 'enum
6231         __ptrace_request as first parameter type instead of int.
6232         (PTRACE_TYPE_ARG1): Define.
6233         * nat/gdb_ptrace.h [!PTRACE_TYPE_ARG5] (ptrace): Define as wrapper
6234         that casts first argument to PTRACE_TYPE_ARG1.
6235         * config.in: Regenerate.
6236         * configure: Regenerate.
6237
6238 2015-07-24  Pedro Alves  <palves@redhat.com>
6239
6240         * gdb_ptrace.h: Move ...
6241         * nat/gdb_ptrace.h: ... here.
6242         * inf-ptrace.c: Adjust.
6243
6244 2015-07-24  Pedro Alves  <palves@redhat.com>
6245
6246         * acinclude.m4: Include ptrace.m4.
6247         * configure.ac: Call GDB_AC_PTRACE and move ptrace checks ...
6248         * ptrace.m4: ... to this new file.
6249
6250 2015-07-23  Doug Evans  <dje@google.com>
6251
6252         * dwarf2read.c (dwarf2_per_cu_data): Add comment.
6253         (load_cu): Handle dummy CUs.
6254         (dw2_do_instantiate_symtab, process_queuef): Ditto.
6255         (dwarf2_fetch_die_loc_sect_off, dwarf2_fetch_constant_bytes): Ditto.
6256
6257 2015-07-23  Ciro Santilli  <ciro.santilli@gmail.com>  (tiny patch)
6258
6259         * py-linetable.c (ltpy_get_all_source_lines): Adjust function
6260         documentation to say that it returns a list rather than
6261         a FrozenSet.
6262         (linetable_object_methods): Update the docstring of the
6263         "source_line" entry.
6264
6265 2015-07-23  Pierre-Marie de Rodat  <derodat@adacore.com>
6266
6267         * gdbtypes.c (resolve_dynamic_array): Pass the peeled element
6268         type to the recursive call instead of the original (maybe
6269         TYPE_CODE_TYPEDEF) type.
6270
6271 2015-07-23  Yao Qi  <yao.qi@linaro.org>
6272
6273         * aarch64-linux-nat.c (aarch64_linux_can_use_hw_breakpoint): If
6274         TYPE is watchpoint, return zero if aarch64_num_wp_regs is zero.
6275         If TYPE is breakpoint, return zero if arch64_num_bp_regs is zero.
6276
6277 2015-07-21  Yao Qi  <yao.qi@linaro.org>
6278
6279         * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
6280         Move it to nat/aarch64-linux-hw-point.c.
6281         (aarch64_linux_child_post_startup_inferior): Update.
6282         * nat/aarch64-linux-hw-point.c (aarch64_linux_get_debug_reg_capacity):
6283         New function.
6284         * nat/aarch64-linux-hw-point.h (aarch64_linux_get_debug_reg_capacity):
6285         Declare it.
6286
6287 2015-07-21  Markus Metzger  <markus.t.metzger@intel.com>
6288
6289         * common/btrace-common.c (btrace_data_append): Change case label.
6290
6291 2015-07-20  Yao Qi  <yao.qi@linaro.org>
6292
6293         * nat/aarch64-linux-hw-point.c (aarch64_handle_unaligned_watchpoint):
6294         Re-indent the code.
6295         * nat/aarch64-linux-hw-point.h: Use ULONGEST rather than
6296         "unsigned long long".
6297
6298 2015-07-18  Kevin Buettner  <kevinb@redhat.com>
6299
6300         * dwarf2read.c (dwarf2_locate_sections): Allow has_section_at_zero
6301         to be set for SEC_ALLOC sections too.
6302
6303 2015-07-17  Yao Qi  <yao.qi@linaro.org>
6304
6305         * Makefile.in (HFILES_NO_SRCDIR): Add
6306         nat/aarch64-linux-hw-point.h.
6307         (aarch64-linux-hw-point.o): New rule.
6308         * nat/aarch64-linux-hw-point.h: New file.
6309         * nat/aarch64-linux-hw-point.c: New file.
6310         * aarch64-linux-nat.c: Include nat/aarch64-linux-hw-point.h.
6311         (AARCH64_HBP_MAX_NUM): Move to nat/aarch64-linux-hw-point.h.
6312         (AARCH64_HWP_MAX_NUM, AARCH64_HBP_ALIGNMENT): Likewise.
6313         (AARCH64_HWP_ALIGNMENT): Likewise.
6314         (AARCH64_HWP_MAX_LEN_PER_REG): Likewise.
6315         (AARCH64_DEBUG_NUM_SLOTS, AARCH64_DEBUG_ARCH): Likewise.
6316         (AARCH64_DEBUG_ARCH_V8, DR_MARK_ALL_CHANGED): Likewise.
6317         (DR_MARK_N_CHANGED, DR_CLEAR_CHANGED): Likewise.
6318         (DR_HAS_CHANGED, DR_N_HAS_CHANGE): Likewise.
6319         (aarch64_num_bp_regs, aarch64_num_wp_regs): Likewise.
6320         (struct aarch64_debug_reg_state): Likewise.
6321         (struct arch_lwp_info): Likewise.
6322         (aarch64_linux_set_debug_regs): Likewise.
6323         (aarch64_notify_debug_reg_change): Remove static.
6324         (aarch64_align_watchpoint): Likewise.
6325         (DR_CONTROL_ENABLED, DR_CONTROL_LENGTH): Likewise.
6326         (aarch64_watchpoint_length): Likewise.
6327         (aarch64_point_encode_ctrl_reg): Likewise
6328         (aarch64_point_is_aligned): Likewise.
6329         (aarch64_dr_state_insert_one_point): Likewise.
6330         (aarch64_dr_state_remove_one_point): Likewise.
6331         (aarch64_handle_breakpoint): Likewise.
6332         (aarch64_handle_aligned_watchpoint): Likewise.
6333         (aarch64_handle_unaligned_watchpoint): Likewise.
6334         (aarch64_handle_watchpoint): Likewise.
6335         * config/aarch64/linux.mh (NAT_FILE): Add
6336         aarch64-linux-hw-point.o.
6337
6338 2015-07-17  Yao Qi  <yao.qi@linaro.org>
6339
6340         * aarch64-linux-nat.c (aarch64_handle_breakpoint): Add argument
6341         state and don't call aarch64_get_debug_reg_state.  All callers
6342         update.
6343         (aarch64_linux_insert_hw_breakpoint): Call
6344         aarch64_get_debug_reg_state earlier.
6345         (aarch64_linux_remove_hw_breakpoint): Likewise.
6346         (aarch64_handle_aligned_watchpoint): Add argument state and
6347         don't call aarch64_get_debug_reg_state.  All callers update.
6348         (aarch64_handle_unaligned_watchpoint): Likewise.
6349         (aarch64_handle_watchpoint): Add argument state.
6350         (aarch64_linux_insert_watchpoint): Call aarch64_get_debug_reg_state
6351         earlier.
6352         (aarch64_linux_remove_watchpoint): Likewise.
6353
6354 2015-07-17  Yao Qi  <yao.qi@linaro.org>
6355
6356         * aarch64-linux-nat.c (aarch64_show_debug_reg_state): Use
6357         debug_printf.
6358         (aarch64_handle_unaligned_watchpoint): Likewise.
6359
6360 2015-07-17  Yao Qi  <yao.qi@linaro.org>
6361
6362         * aarch64-linux-nat.c (aarch64_dr_state_insert_one_point): Change
6363         argument type's type to 'enum target_hw_bp_type'.
6364         (aarch64_dr_state_remove_one_point): Likewise.
6365         (aarch64_handle_breakpoint): Likewise.
6366         (aarch64_linux_insert_hw_breakpoint): Likewise.
6367         (aarch64_linux_remove_hw_breakpoint): Likewise.
6368         (aarch64_handle_aligned_watchpoint): Likewise.
6369
6370 2015-07-17  Yao Qi  <yao.qi@linaro.org>
6371
6372         * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity): Call
6373         ptid_get_pid instead of get_thread_id.
6374
6375 2015-07-17  Yao Qi  <yao.qi@linaro.org>
6376
6377         * remote.c (get_current_thread): Initialise ptid to null_ptid.
6378         (add_current_inferior_and_thread): Don't initialise ptid.
6379
6380 2015-07-16  Pierre Langlois  <pierre.langlois@arm.com>
6381
6382         * aarch64-tdep.c (aarch64_pseudo_read_value): Mark S register as
6383         unavailable if invalid.
6384
6385 2015-07-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
6386
6387         Revert the previous 6 commits:
6388         Create empty nat/linux-maps.[ch] and common/target-utils.[ch].
6389         Move gdb_regex* to common/
6390         Prepare linux_find_memory_regions_full & co. for move
6391         Move linux_find_memory_regions_full & co.
6392         gdbserver build-id attribute generator
6393         Validate symbol file using build-id
6394
6395 2015-07-15  Aleksandar Ristovski  <aristovski@qnx.com
6396             Jan Kratochvil  <jan.kratochvil@redhat.com>
6397
6398         Validate symbol file using build-id.
6399         * NEWS (Changes since GDB 7.10): Add 'set validate-build-id'
6400         and 'show validate-build-id'.  Add build-id attribute.
6401         * solib-darwin.c (_initialize_darwin_solib): Assign validate value.
6402         * solib-dsbt.c (_initialize_dsbt_solib): Ditto.
6403         * solib-frv.c (_initialize_frv_solib): Ditto.
6404         * solib-spu.c (set_spu_solib_ops): Ditto.
6405         * solib-svr4.c: Include rsp-low.h.
6406         (NOTE_GNU_BUILD_ID_NAME): New define.
6407         (svr4_validate): New function.
6408         (svr4_copy_library_list): Duplicate field build_id.
6409         (library_list_start_library): Parse 'build-id' attribute.
6410         (svr4_library_attributes): Add 'build-id' attribute.
6411         (_initialize_svr4_solib): Assign validate value.
6412         * solib-target.c (solib.h): Include.
6413         (_initialize_solib_target): Assign validate value.
6414         * solib.c (validate_build_id, show_validate_build_id): New.
6415         (solib_map_sections): Use ops->validate.
6416         (clear_so): Free build_id.
6417         (default_solib_validate): New function.
6418         (_initialize_solib): Add "validate-build-id".
6419         * solib.h (default_solib_validate): New declaration.
6420         * solist.h (struct so_list): New fields 'build_idsz' and 'build_id'.
6421         (target_so_ops): New field 'validate'.
6422
6423 2015-07-15  Aleksandar Ristovski  <aristovski@qnx.com
6424             Jan Kratochvil  <jan.kratochvil@redhat.com>
6425
6426         gdbserver build-id attribute generator.
6427         * features/library-list-svr4.dtd (library-list-svr4): New
6428         'build-id' attribute.
6429
6430 2015-07-15  Aleksandar Ristovski  <aristovski@qnx.com
6431             Jan Kratochvil  <jan.kratochvil@redhat.com>
6432
6433         Move linux_find_memory_regions_full & co.
6434         * linux-tdep.c (nat/linux-maps.h): Include.
6435         (gdb_regex.h): Remove the include.
6436         (enum filterflags, struct smaps_vmflags, read_mapping, decode_vmflags)
6437         (mapping_is_anonymous_p, dump_mapping_p): Moved to nat/linux-maps.c.
6438         (linux_find_memory_region_ftype): Moved typedef to nat/linux-maps.h.
6439         (linux_find_memory_regions_full): Moved definition to nat/linux-maps.c.
6440         * nat/linux-maps.c: Include ctype.h, target/target-utils.h, gdb_regex.h
6441         and target/target.h.
6442         (struct smaps_vmflags, read_mapping, decode_vmflags)
6443         (mapping_is_anonymous_p, dump_mapping_p): Move from linux-tdep.c.
6444         (linux_find_memory_regions_full): Move from linux-tdep.c.
6445         * nat/linux-maps.h (read_mapping): New declaration.
6446         (linux_find_memory_region_ftype, enum filterflags): Moved from
6447         linux-tdep.c.
6448         (linux_find_memory_regions_full): New declaration.
6449         * target.c (target/target-utils.h): Include.
6450         (read_alloc_pread_ftype): Moved typedef to target/target-utils.h.
6451         (read_alloc, read_stralloc_func_ftype, read_stralloc): Moved
6452         definitions to target/target-utils.c.
6453         * target.h (target_fileio_read_stralloc): Move it to target/target.h.
6454         * target/target-utils.c (read_alloc, read_stralloc): Move definitions
6455         from target.c.
6456         * target/target-utils.h (read_alloc_pread_ftype): New typedef.
6457         (read_alloc): New declaration.
6458         (read_stralloc_func_ftype): New typedef.
6459         (read_stralloc): New declaration.
6460         * target/target.h (target_fileio_read_stralloc): Move it from target.h.
6461
6462 2015-07-15  Aleksandar Ristovski  <aristovski@qnx.com
6463             Jan Kratochvil  <jan.kratochvil@redhat.com>
6464
6465         Prepare linux_find_memory_regions_full & co. for move.
6466         * linux-tdep.c (linux_find_memory_region_ftype): Comment.
6467         (linux_find_memory_regions_full): Change signature and prepare
6468         for moving to linux-maps.
6469         (linux_find_memory_regions_data): Rename field 'obfd' to 'data'.
6470         (linux_find_memory_regions_thunk): New.
6471         (linux_find_memory_regions_thunk): Use 'data' field instead of 'obfd'.
6472         (linux_find_memory_regions_gdb): New.
6473         (linux_find_memory_regions): Rename argument 'obfd' to 'func_data'.
6474         (linux_make_mappings_corefile_notes): Use
6475         linux_find_memory_regions_gdb.
6476         * target.c (read_alloc_pread_ftype): New typedef.
6477         (target_fileio_read_alloc_1_pread): New function.
6478         (read_alloc): Refactor from target_fileio_read_alloc_1.
6479         (read_stralloc_func_ftype): New typedef.
6480         (target_fileio_read_alloc_1): New implementation. Use read_alloc.
6481         (read_stralloc): Refactored from target_fileio_read_stralloc.
6482         (target_fileio_read_stralloc): New implementation, use read_stralloc.
6483
6484 2015-07-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
6485
6486         * Makefile.in (HFILES_NO_SRCDIR): Change gdb_regex.h to
6487         common/gdb_regex.h.
6488         (COMMON_OBS): Add gdb_regex.o.
6489         (gdb_regex.o): New.
6490         * common/common.m4 (GDB_AC_COMMON): Add gdb_use_included_regex,
6491         --without-included-regex and USE_INCLUDED_REGEX.
6492         * common/gdb_regex.c: New file from utils.c functions.
6493         * common/gdb_regex.h: Move it here from gdb_regex.h, update include
6494         file wrapping define name.
6495         * configure: Rebuilt.
6496         * configure.ac (gdb_use_included_regex, --without-included-regex)
6497         (USE_INCLUDED_REGEX): Move them to common/common.m4.
6498         * gdb_regex.h: Move it to common/gdb_regex.h.
6499         * utils.c: Remove include gdb_regex.h.
6500         (do_regfree_cleanup, make_regfree_cleanup, get_regcomp_error)
6501         (compile_rx_or_error): Move them to common/gdb_regex.c.
6502
6503 2015-07-15  Aleksandar Ristovski  <aristovski@qnx.com
6504             Jan Kratochvil  <jan.kratochvil@redhat.com>
6505
6506         Create empty nat/linux-maps.[ch] and common/target-utils.[ch].
6507         * Makefile.in (HFILES_NO_SRCDIR); Add nat/linux-maps.h,
6508         common/target-utils.h.
6509         (COMMON_OBS): Add target-utils.o.
6510         (linux-maps.o, target-utils.o): New.
6511         * target/target-utils.c: New file.
6512         * target/target-utils.h: New file.
6513         * config/i386/linux.mh (NATDEPFILES): Add linux-maps.o.
6514         * config/i386/linux64.mh (NATDEPFILES): Ditto.
6515         * nat/linux-maps.c: New file.
6516         * nat/linux-maps.h: New file.
6517
6518 2015-07-15  Markus Metzger  <markus.t.metzger@intel.com>
6519             Pedro Alves <palves@redhat.com>
6520
6521         * nat/linux-btrace.c (perf_event_read): Change the type of DATA_HEAD.
6522         (perf_event_read_all): Change the type of SIZE and DATA_HEAD.
6523         (perf_event_read_bts): Change the type of SIZE and READ.
6524         (linux_enable_bts): Change the type of SIZE, PAGES, DATA_SIZE,
6525         and DATA_OFFSET.  Move DATA_SIZE declaration.  Restrict the buffer size
6526         to UINT_MAX.  Check for overflows when using DATA_HEAD from the perf
6527         mmap page.
6528         (linux_enable_pt): Change the type of PAGES and SIZE.  Restrict the
6529         buffer size to UINT_MAX.
6530         (linux_read_bts): Change the type of BUFFER_SIZE, SIZE, DATA_HEAD, and
6531         DATA_TAIL.
6532         * nat/linux-btrace.h (struct perf_event_buffer)<size, data_head>
6533         <last_head>: Change type.
6534         * common/btrace-common.h (struct btrace_dat_pt) <size>: Change type.
6535         * common/btrace-common.c (btrace_data_append): Change the type of
6536         SIZE.
6537         * btrace.c (parse_xml_raw): Change the type of SIZE.  Change oddness
6538         check.
6539
6540 2015-07-14  Simon Marchi  <simon.marchi@ericsson.com>
6541
6542         * gdbtypes.h (CHECK_TYPEDEF): Remove.
6543         * aarch64-tdep.c (aarch64_return_in_memory): Replace CHECK_TYPEDEF
6544         with check_typedef.
6545         * ada-lang.c (decode_constrained_packed_array_type): Likewise.
6546         (ada_array_length): Likewise.
6547         (find_parallel_type_by_descriptive_type): Likewise.
6548         (ada_check_typedef): Likewise.
6549         * arm-tdep.c (arm_return_in_memory): Likewise.
6550         * ax-gdb.c (gen_trace_static_fields): Likewise.
6551         (gen_struct_ref_recursive): Likewise.
6552         * c-exp.y (exp : SIZEOF '(' type ')' %prec UNARY): Likewise.
6553         (variable: block COLONCOLON name): Likewise.
6554         (qualified_name: TYPENAME COLONCOLON name): Likewise.
6555         * c-lang.c (classify_type): Likewise.
6556         * c-typeprint.c (c_print_type): Likewise.
6557         (c_print_typedef): Likewise.
6558         (c_type_print_base): Likewise.
6559         * c-valprint.c (c_val_print): Likewise.
6560         * compile/compile-c-types.c (convert_type): Likewise.
6561         * compile/compile-object-load.c (get_out_value_type): Likewise.
6562         * completer.c (add_struct_fields): Likewise.
6563         (expression_completer): Likewise.
6564         * cp-namespace.c (cp_find_type_baseclass_by_name): Likewise.
6565         (cp_lookup_nested_symbol_1): Likewise.
6566         (cp_lookup_nested_symbol): Likewise.
6567         * cp-valprint.c (cp_print_value_fields): Likewise.
6568         (cp_print_static_field): Likewise.
6569         * d-valprint.c (d_val_print): Likewise.
6570         * eval.c (evaluate_subexp_standard): Likewise.
6571         (evaluate_subexp_for_sizeof): Likewise.
6572         * f-exp.y (exp : SIZEOF '(' type ')' %prec UNARY): Likewise.
6573         * f-typeprint.c (f_type_print_base): Likewise.
6574         * f-valprint.c (f_val_print): Likewise.
6575         * gdbtypes.c (get_discrete_bounds): Likewise.
6576         (create_array_type_with_stride): Likewise.
6577         (type_name_no_tag_or_error): Likewise.
6578         (lookup_struct_elt_type): Likewise.
6579         (get_unsigned_type_max): Likewise.
6580         (internal_type_vptr_fieldno): Likewise.
6581         (set_type_vptr_fieldno): Likewise.
6582         (internal_type_vptr_basetype): Likewise.
6583         (set_type_vptr_basetype): Likewise.
6584         (get_vptr_fieldno): Likewise.
6585         (is_integral_type): Likewise.
6586         (is_scalar_type): Likewise.
6587         (is_scalar_type_recursive): Likewise.
6588         (distance_to_ancestor): Likewise.
6589         (is_unique_ancestor_worker): Likewise.
6590         (check_types_equal): Likewise.
6591         * gnu-v2-abi.c (gnuv2_value_rtti_type): Likewise.
6592
6593 2015-07-14  Iain Buclaw  <ibuclaw@gdcproject.org>
6594
6595         * dwarf2read.c (find_slot_in_mapped_hash): Extend language support to
6596         also test for language_d.
6597         (dwarf2_compute_name): Likewise.
6598         (read_func_scope): Likewise.
6599         (read_structure_type): Likewise.
6600         (new_symbol_full): Likewise.
6601         (determine_prefix): Likewise.
6602         (read_import_statement): Use dot as the separator for language_d.
6603         (typename_concat): Likewise, but don't prefix the D main function.
6604
6605 2015-07-14  Peter Bergner  <bergner@vnet.ibm.com>
6606
6607         * nat/linux-namespaces.c (setns): Rename from this ...
6608         (do_setns): ... to this.  Support calling setns if it exists.
6609         (mnsh_handle_setns): Call do_setns.
6610
6611 2015-07-13  Yao Qi  <yao.qi@linaro.org>
6612
6613         * exec.c (exec_file_attach): Add period at the end of error
6614         message.
6615
6616 2015-07-13  Andrew Burgess  <andrew.burgess@embecosm.com>
6617
6618         * tui/tui-win.c (window_name_completer): New function.
6619         (focus_completer): Call window_name_completer.  All old content
6620         moved into window_name_completer.
6621         (winheight_completer): New function.
6622         (_initialize_tui_win): Rename variable.  Add completer to
6623         winheight command.  Update doc string on winheight.
6624
6625 2015-07-12  Sandra Loosemore  <sandra@codesourcery.com>
6626
6627         * nios2-linux-tdep.c (_initialize_nios2_linux_tdep): Register
6628         all nios2 mach variants.
6629
6630 2015-07-10  Kevin Buettner  <kevinb@redhat.com>
6631
6632         * rx-tdep.c (rx_get_opcode_byte): Use target_read_code instead
6633         of target_read_memory.
6634
6635 2015-07-10  Andrew Burgess  <andrew.burgess@embecosm.com>
6636
6637         * tui/tui-win.c (tui_set_win_height): Use a cleanup to free the
6638         string copy.
6639         (parse_scrolling_args): Likewise.
6640
6641 2015-07-10  Andrew Burgess  <andrew.burgess@embecosm.com>
6642
6643         * tui/tui-win.c (focus_completer): Don't duplicate the tui window
6644         names in this function.
6645
6646 2015-07-10  Andrew Burgess  <andrew.burgess@embecosm.com>
6647
6648         * tui/tui-data.h (SRC_NAME): Convert to lower case.
6649         (CMD_NAME): Likewise.
6650         (DATA_NAME): Likewise.
6651         (DISASSEM_NAME): Likewise.
6652         * tui/tui-win.c (tui_set_focus): Window names are now lower case.
6653         (tui_set_win_height): Likewise.
6654         (parse_scrolling_args): Likewise.
6655
6656 2015-07-10  Markus Metzger  <markus.t.metzger@intel.com>
6657
6658         * record-btrace.c (record_btrace_goto_begin)
6659         (record_btrace_goto_end, record_btrace_goto): Move call to
6660         print_stack_frame ...
6661         (record_btrace_set_replay): ... here.  Set stop_pc.
6662         * record-full.c (record_full_goto_entry): Set stop_pc.
6663
6664 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
6665
6666         * NEWS: Mention support for tracepoints on aarch64-linux.
6667
6668 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
6669
6670         * linux-aarch64-low.c (aarch64_supports_tracepoints): New
6671         function.  Return 1.
6672         (the_low_target): Install it.
6673
6674 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
6675
6676         * gdb.trace/backtrace.exp: Set registers for aarch64 target.
6677         * gdb.trace/collection.exp: Likewise.
6678         * gdb.trace/mi-trace-frame-collected.exp: Likewise.
6679         * gdb.trace/mi-trace-unavailable.exp: Likewise.
6680         * gdb.trace/report.exp: Likewise.
6681         * gdb.trace/trace-break.exp: Likewise.
6682         * gdb.trace/unavailable.exp: Likewise.
6683         * gdb.trace/while-dyn.exp: Likewise.
6684
6685 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
6686
6687         * aarch64-tdep.c: Add ax.h and ax-gdb.h includes.
6688         (aarch64_gen_return_address): New function.
6689         (aarch64_gdbarch_init): Hook it.
6690
6691 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
6692
6693         * aarch64-tdep.c (aarch64_make_stub_cache): Set available_p and
6694         swallow NOT_AVAILABLE_ERROR.
6695         (aarch64_stub_this_id): Call frame_id_build_unavailable_stack if
6696         available_p is not set.
6697         (aarch64_stub_frame_unwind_stop_reason): New function.
6698         (aarch64_stub_unwind): Install it.
6699
6700 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
6701
6702         * aarch64-tdep.c (aarch64_prologue_cache) <available_p>: New
6703         field.
6704         (aarch64_make_prologue_cache_1): New function, factored out from
6705         aarch64_make_prologue_cache.  Do not allocate cache.  Set
6706         available_p.
6707         (aarch64_make_prologue_cache): Reimplement wrapping
6708         aarch64_make_prologue_cache_1, and swallowing
6709         NOT_AVAILABLE_ERROR.
6710         (aarch64_prologue_frame_unwind_stop_reason): New function.
6711         Return UNWIND_UNAVAILABLE if available_p is not set.
6712         (aarch64_prologue_unwind): Install it.
6713         (aarch64_prologue_this_id): Move prev_pc and prev_sp limit
6714         checks into aarch64_prologue_frame_unwind_stop_reason.  Call
6715         frame_id_build_unavailable_stack if available_p is not set.
6716
6717 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
6718
6719         * aarch64-tdep.c (aarch64_prologue_cache) <func, prev_pc>: New
6720         fields.
6721         (aarch64_scan_prologue): Set prev_pc.
6722         (aarch64_make_prologue_cache): Set func.
6723         (aarch64_make_stub_cache): Set prev_pc.
6724         (aarch64_prologue_this_id): Remove local variables id, pc and
6725         func.  Read prev_pc and func from cache.
6726         (aarch64_stub_this_id): Read prev_pc from cache.
6727
6728 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
6729
6730         * aarch64-tdep.c (aarch64_make_stub_cache): Update comment.  New
6731         argument this_cache.  Remove unused local variables reg and
6732         unwound_fp.  Return early if this_cache is already set.  Set
6733         this_cache.
6734         (aarch64_stub_this_id): Update call to aarch64_make_stub_cache.
6735
6736 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
6737
6738         * aarch64-tdep.c (aarch64_make_prologue_cache): Update comment.
6739         New argument this_cache.  Return early if this_cache is already
6740         set.  Set this_cache.
6741         (aarch64_prologue_this_id): Update call to
6742         aarch64_make_prologue_cache.
6743         (aarch64_prologue_prev_register): Likewise.
6744         (aarch64_normal_frame_base): Likewise.
6745
6746 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
6747
6748         * c-valprint.c (c_val_print): Factor out memberptr printing code
6749         from c_val_print to ...
6750         (c_val_print_memberptr): ... this new function.
6751
6752 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
6753
6754         * c-valprint.c (c_val_print): Factor out int printing code to ...
6755         (c_val_print_int): ... this new function.
6756
6757 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
6758
6759         * c-valprint.c (c_val_print): Factor out struct and union
6760         printing code to ...
6761         (c_val_print_struct): ... this new function ...
6762         (c_val_print_union): ... and this new function.
6763
6764 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
6765
6766         * c-valprint.c (c_val_print): Factor out pointer printing code
6767         to ...
6768         (c_val_print_ptr): ... this new function.
6769
6770 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
6771
6772         * c-valprint.c (c_valprint): Factor our array printing code from
6773         c_val_print to ...
6774         (c_val_print_array): ... this new function.
6775
6776 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
6777
6778         * c-valprint.c (c_val_print): Factor out pointer printing code
6779         to ...
6780         (print_unpacked_pointer): ... this new function.
6781
6782 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
6783
6784         * c-valprint.c (c_val_print): Remove an assignment to i and move
6785         its declaration.
6786
6787 2015-07-09  Yao Qi  <yao.qi@linaro.org>
6788
6789         * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity): Add
6790         argument ptid.  Update comments.  Caller update.
6791
6792 2015-07-09  Markus Metzger  <markus.t.metzger@intel.com>
6793
6794         * btrace.c (pt_print_packet): Print stop, vmcs, tma, mtc, cyc, and
6795         mnt packets.
6796
6797 2015-07-09  Markus Metzger  <markus.t.metzger@intel.com>
6798
6799         * btrace.c (btrace_pt_readmem_callback): Change type of PC argument.
6800
6801 2015-07-08  Simon Marchi  <simon.marchi@ericsson.com>
6802
6803         * progspace.c (delete_program_space): Add missing spaces.
6804
6805 2015-07-08  Simon Marchi  <simon.marchi@ericsson.com>
6806
6807         * inferior.c (delete_inferior_1): Rename to ...
6808         (delete_inferior): ..., remove 'silent' parameter, delete
6809         program space when unused and remove call to prune_program_spaces.
6810         Remove the old, unused, delete_inferior.
6811         (delete_inferior_silent): Remove.
6812         (prune_inferiors): Change call from delete_inferior_1 to
6813         delete_inferior and remove 'silent' parameter. Remove call to
6814         prune_program_spaces.
6815         (remove_inferior_command): Idem.
6816         * inferior.h (delete_inferior_1): Rename to...
6817         (delete_inferior): ..., remove 'silent' parameter and remove the
6818         original delete_inferior.
6819         (delete_inferior_silent): Remove.
6820         * mi/mi-main.c (mi_cmd_remove_inferior): Change call from
6821         delete_inferior_1 to delete_inferior and remove 'silent'
6822         parameter.
6823         * progspace.c (prune_program_spaces): Remove.
6824         (pspace_empty_p): Rename to...
6825         (program_space_empty_p): ... and make non-static.
6826         (delete_program_space): New.
6827         * progspace.h (prune_program_spaces): Remove declaration.
6828         (program_space_empty_p): New declaration.
6829         (delete_program_space): New declaration.
6830         * monitor.c (monitor_close): Replace call to
6831         delete_thread_silent and delete_inferior_silent with
6832         discard_all_inferiors.
6833
6834 2015-07-08  Patrick Palka  <patrick@parcs.ath.cx>
6835
6836         * defs.h (deprecated_register_changed_hook): Remove prototype.
6837         * interps.c (clear_iterpreter_hooks): Remove reference to
6838         deprecated_register_changed_hook.
6839         * top.c (deprecated_register_changed_hook): Remove prototype.
6840         * valops.c (value_assign): Remove reference to
6841         deprecated_register_changed_hook.
6842         * tui/tui-hooks.c (tui_register_changed): Add parameter "frame".
6843         Add comment documenting the function.
6844         (tui_register_changed_observer): Define.
6845         (tui_install_hooks): Remove reference to
6846         deprecated_register_changed_hook.  Set
6847         tui_register_changed_observer.
6848         (tui_remove_hooks): Remove reference to
6849         deprecated_register_changed_hook.  Unset
6850         tui_register_changed_observer.
6851
6852 2015-07-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
6853
6854         PR compile/18484
6855         * compile/compile-c-types.c (insert_type): Change gdb_assert to error.
6856
6857 2015-07-08  Robert O'Callahan  <robert@ocallahan.org>
6858
6859         PR exp/18617
6860         * ax-gdb.c (gen_conversion): Extend to 'to' bits, not 'from'.
6861
6862 2015-07-08  Markus Metzger  <markus.t.metzger@intel.com>
6863
6864         * MAINTAINERS (Write After Approval): Add Markus T. Metzger.
6865
6866 2015-07-08  Markus Metzger  <markus.t.metzger@intel.com>
6867
6868         * nat/linux-btrace.c (kernel_supports_bts, kernel_supports_pt):
6869         Use safe_strerror() instead of strerror().
6870
6871 2015-07-07  Yao Qi  <yao.qi@linaro.org>
6872
6873         * features/arm-with-m-fpa-layout.xml: Set architecture to arm.
6874         * features/arm-with-m-fpa-layout.c: Regenerated.
6875         * features/arm-with-m-vfp-d16.xml: Likewise.
6876         * features/arm-with-m-vfp-d16.c: Regenerated.
6877         * features/arm-with-m.xml: Likewise.
6878         * features/arm-with-m.c: Regenerated.
6879         * features/arm-with-neon.xml: Likewise.
6880         * features/arm-with-neon.c: Regenerated.
6881         * features/arm-with-vfpv2.xml: Likewise.
6882         * features/arm-with-vfpv2.c: Regenerated.
6883         * features/arm-with-vfpv3.xml: Likewise.
6884         * features/arm-with-vfpv3.c: Regenerated.
6885
6886 2015-07-07  Yao Qi  <yao.qi@linaro.org>
6887
6888         * aarch32-linux-nat.h (VFP_REGS_SIZE): New macro, moved from
6889         arm-linux-nat.c.
6890         * aarch64-linux-nat.c: Include aarch32-linux-nat.h and
6891         elf/external.h.
6892         (fetch_gregs_from_thread): Call aarch32_gp_regcache_supply
6893         if target is 32-bit.
6894         (store_gregs_to_thread): Call aarch32_gp_regcache_collect
6895         if target is 32-bit.
6896         (fetch_fpregs_from_thread): Call aarch32_vfp_regcache_supply
6897         if target is 32-bit.
6898         (store_fpregs_to_thread): Call aarch32_vfp_regcache_collect
6899         if target is 32-bit.
6900         (tdesc_arm_with_vfpv3, tdesc_arm_with_neon): Declare.
6901         (aarch64_linux_read_description): Return the right target
6902         description.
6903         * arm-linux-nat.c (VFP_REGS_SIZE): Moved to aarch32-linux-nat.h.
6904         * config/aarch64/linux.mh (NATDEPFILES): Add aarch32-linux-nat.o.
6905         * configure.tgt (aarch64*-*-linux*): Add arm-tdep.o and
6906         arm-linux-tdep.o.
6907
6908 2015-07-07  Yao Qi  <yao.qi@linaro.org>
6909
6910         * aarch32-linux-nat.c: New file.
6911         * aarch32-linux-nat.h: New file.
6912         * arm-linux-nat.c: Include aarch32-linux-nat.h.
6913         (fetch_regs): Move code to aarch32-linux-nat.c.  Call
6914         aarch32_gp_regcache_supply.
6915         (store_regs): Move code to aarch32-linux-nat.c.  Call
6916         aarch32_gp_regcache_collect.
6917         (fetch_vfp_regs): Move code to aarch32-linux-nat.c.  Call
6918         aarch32_vfp_regcache_supply.
6919         (store_vfp_regs): Move code to aarch32-linux-nat.c.  Call
6920         aarch32_vfp_regcache_collect.
6921         * config/arm/linux.mh (NATDEPFILES): Add aarch32-linux-nat.o.
6922
6923 2015-07-07  Yao Qi  <yao.qi@linaro.org>
6924
6925         * arm-linux-nat.c (store_fpregister): Remove.
6926         (store_register): Likewise.
6927         (fetch_fpregister): Likewise.
6928         (fetch_register): Likewise.
6929         (arm_linux_store_inferior_registers): Call store_regs and
6930         store_fpregs instead.
6931         (arm_linux_fetch_inferior_registers): Call fetch_fpregs and
6932         fetch_regs instead.
6933
6934 2015-07-06  Andrew Burgess  <andrew.burgess@embecosm.com>
6935
6936         * doc/gdb.texinfo (TUI): Restructure documentation on TUI layout
6937         and focus commands.
6938
6939 2015-07-06  Joel Brobecker  <brobecker@adacore.com>
6940
6941         * NEWS: Create a new section for the next release branch.
6942         Rename the section of the current branch, now that it has
6943         been cut.
6944
6945 2015-07-06  Joel Brobecker  <brobecker@adacore.com>
6946
6947         GDB 7.10 branch created (66c4b3e8a628a207bc6aafef6af0c4128195f56e):
6948         * version.in: Bump version to 7.10.50.DATE-cvs.
6949
6950 2015-07-06  Luis Machado  <lgustavo@codesourcery.com>
6951
6952         * breakpoint.c (remove_breakpoint_1): Don't handle permanent
6953         breakpoints in a special way.
6954         (remove_breakpoint): Likewise.
6955         (mark_breakpoints_out): Likewise.
6956
6957 2015-07-06  Andrew Burgess  <andrew.burgess@embecosm.com>
6958
6959         * doc/gdb.texinfo (TUI): Add comma after @xref.
6960
6961 2015-07-06  Andrew Burgess  <andrew.burgess@embecosm.com>
6962
6963         * tui/tui-win.c (tui_set_focus): Use structure member 'generic'
6964         instead of casting the structure type.
6965
6966 2015-07-06  Simon Marchi  <simon.marchi@ericsson.com>
6967
6968         * valops.c (search_struct_field): Remove OFFSET parameter.
6969         (value_cast_structs): Adjust calls to search_struct_field.
6970         (value_struct_elt): Same.
6971         (find_overload_match): Same.
6972
6973 2015-07-06  Simon Marchi  <simon.marchi@ericsson.com>
6974
6975         * value.c (value_fetch_lazy): Update comment, change return
6976         value to void.
6977         * value.h (value_fetch_lazy): Change return value to void.
6978
6979 2015-07-06  Andrew Burgess  <andrew.burgess@embecosm.com>
6980
6981         * tui/tui-data.c (tui_partial_win_by_name): Window name is const.
6982         (tui_win_name): Make parameter and result const.
6983         * tui/tui-data.h (tui_win_name): Make parameter and result const.
6984
6985 2015-07-06  Patrick Palka  <patrick@parcs.ath.cx>
6986
6987         * i386-tdep.c (i386_mpx_info_bounds): Don't call error, instead
6988         use printf_unfiltered.
6989         (set_mpx_cmd): Add missing trailing space to command string
6990         literal.
6991         (_initialize_i386_tdep): Give the "mpx" prefix command its
6992         correct name.
6993
6994 2015-07-02  Kevin Buettner  <kevinb@redhat.com>
6995
6996         * rx-tdep.c (RX_USP_REGNUM, RX_BPC_REGNUM): New constants.
6997         (enum rx_frame_type): New.
6998         (struct rx_prologue): Add new field `frame_type'.
6999         (rx_analyze_prologue): Add `frame_type' parameter. Cache this
7000         parameter in the prologue struct.  Add code for recording
7001         locations of PC and PSW for fast interrupt and exception frames.
7002         (rx_skip_prologue): Adjust call to rx_analyze_prologue.
7003         (rx_analyze_frame_prologue): Add `frame_type' parameter.
7004         (rx_frame_type): New function.
7005         (rx_frame_base): Fetch frame type and pass it to rx_analyze_prologue.
7006         (rx_frame_this_id): Rename parameter `this_prologue_cache' to
7007         `this_cache'.
7008         (rx_frame_prev_register): Rename parameter `this_prologue_cache' to
7009         `this_cache'.  Add cases for RX_FRAME_TYPE_EXCEPTION and
7010         RX_FRAME_TYPE_FAST_INTERRUPT.
7011         (normal_frame_p, exception_frame_p, rx_frame_sniffer_common)
7012         (rx_frame_sniffer, rx_exception_sniffer): New functions.
7013         (rx_frame_unwind): Use rx_frame_sniffer instead of
7014         default_frame_sniffer.
7015         (rx_frame_unwind): New unwinder.
7016         (rx_gdbarch_init): Register new unwinder.
7017
7018 2015-07-02  Kevin Buettner  <kevinb@redhat.com>
7019
7020         * rx-tdep.c (RX_BPSW_REGNUM, RX_FPSW_REGNUM): New constants.
7021         (struct gdbarch_tdep): Add fields rx_psw_type and rx_fpsw_type.
7022         (rx_register_type): Add cases for RX_PSW_REGNUM, RX_BPSW_REGNUM,
7023         and RX_FPSW_REGNUM.
7024         (rx_gdbarch_init): Initialize PSW, BPSW, and FPSW flags types.
7025
7026 2015-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
7027
7028         Fix GCC false warning.
7029         * s390-linux-tdep.c (s390_handle_arg): Initialize VAL.
7030
7031 2015-07-02  Yao Qi  <yao.qi@linaro.org>
7032
7033         * aarch64-linux-nat.c (aarch64_linux_insert_hw_breakpoint): Fix
7034         typo in the debugging message.
7035
7036 2015-07-02  Markus Metzger  <markus.t.metzger@intel.com>
7037
7038         * btrace.c: Include gdbcmd.h, cli/cli-utils.h, and ctype.h.
7039         (maint_btrace_cmdlist, maint_btrace_set_cmdlist)
7040         (maint_btrace_show_cmdlist, maint_btrace_pt_set_cmdlist)
7041         (maint_btrace_pt_show_cmdlist, maint_btrace_pt_skip_pad)
7042         (btrace_maint_clear): New.
7043         (btrace_fetch, btrace_clear): Call btrace_maint_clear.
7044         (pt_print_packet, btrace_maint_decode_pt)
7045         (btrace_maint_update_pt_packets, btrace_maint_update_packets)
7046         (btrace_maint_print_packets, get_uint, get_context_size, no_chunk)
7047         (maint_btrace_packet_history_cmd)
7048         (maint_btrace_clear_packet_history_cmd, maint_btrace_clear_cmd)
7049         (maint_btrace_cmd, maint_btrace_set_cmd, maint_btrace_show_cmd)
7050         (maint_btrace_pt_set_cmd, maint_btrace_pt_show_cmd)
7051         (maint_info_btrace_cmd, _initialize_btrace): New.
7052         * btrace.h (btrace_pt_packet, btrace_pt_packet_s)
7053         (btrace_maint_packet_history, btrace_maint_info): New.
7054         (btrace_thread_info) <maint>: New.
7055         * NEWS: Announce it.
7056
7057 2015-07-02  Markus Metzger  <markus.t.metzger@intel.com>
7058
7059         * btrace.c (btrace_fetch): Append the new trace data.
7060         (btrace_clear): Clear the stored trace data.
7061         * btrace.h (btrace_thread_info) <data>: New.
7062         * common/btrace-common.h (btrace_data_clear)
7063         (btrace_data_append): New.
7064         * common/btrace-common.c (btrace_data_clear)
7065         (btrace_data_append): New.
7066
7067 2015-07-02  Markus Metzger  <markus.t.metzger@intel.com>
7068
7069         * nat/linux-btrace.c (linux_enable_bts): Check for
7070         PERF_ATTR_SIZE_VER5.
7071         Check for data_offset and data_size fields.  Use them.
7072
7073 2015-07-02  Markus Metzger  <markus.t.metzger@intel.com>
7074
7075         * NEWS: Announce new commands "record btrace pt" and "record pt".
7076         Announce new options "set|show record btrace pt buffer-size".
7077         * btrace.c: Include "rsp-low.h".
7078         Include "inttypes.h".
7079         (btrace_add_pc): Add forward declaration.
7080         (pt_reclassify_insn, ftrace_add_pt, btrace_pt_readmem_callback)
7081         (pt_translate_cpu_vendor, btrace_finalize_ftrace_pt)
7082         (btrace_compute_ftrace_pt): New.
7083         (btrace_compute_ftrace): Support BTRACE_FORMAT_PT.
7084         (check_xml_btrace_version): Update version check.
7085         (parse_xml_raw, parse_xml_btrace_pt_config_cpu)
7086         (parse_xml_btrace_pt_raw, parse_xml_btrace_pt)
7087         (btrace_pt_config_cpu_attributes, btrace_pt_config_children)
7088         (btrace_pt_children): New.
7089         (btrace_children): Add support for "pt".
7090         (parse_xml_btrace_conf_pt, btrace_conf_pt_attributes): New.
7091         (btrace_conf_children): Add support for "pt".
7092         * btrace.h: Include "intel-pt.h".
7093         (btrace_pt_error): New.
7094         * common/btrace-common.c (btrace_format_string, btrace_data_fini)
7095         (btrace_data_empty): Support BTRACE_FORMAT_PT.
7096         * common/btrace-common.h (btrace_format): Add BTRACE_FORMAT_PT.
7097         (struct btrace_config_pt): New.
7098         (struct btrace_config)<pt>: New.
7099         (struct btrace_data_pt_config, struct btrace_data_pt): New.
7100         (struct btrace_data)<pt>: New.
7101         * features/btrace-conf.dtd (btrace-conf)<pt>: New.
7102         (pt): New.
7103         * features/btrace.dtd (btrace)<pt>: New.
7104         (pt, pt-config, cpu): New.
7105         * nat/linux-btrace.c (perf_event_read, perf_event_read_all)
7106         (perf_event_pt_event_type, kernel_supports_pt)
7107         (linux_supports_pt): New.
7108         (linux_supports_btrace): Support BTRACE_FORMAT_PT.
7109         (linux_enable_bts): Free tinfo on error.
7110         (linux_enable_pt): New.
7111         (linux_enable_btrace): Support BTRACE_FORMAT_PT.
7112         (linux_disable_pt): New.
7113         (linux_disable_btrace): Support BTRACE_FORMAT_PT.
7114         (linux_fill_btrace_pt_config, linux_read_pt): New.
7115         (linux_read_btrace): Support BTRACE_FORMAT_PT.
7116         * nat/linux-btrace.h (struct btrace_tinfo_pt): New.
7117         (struct btrace_target_info)<pt>: New.
7118         * record-btrace.c (set_record_btrace_pt_cmdlist)
7119         (show_record_btrace_pt_cmdlist): New.
7120         (record_btrace_print_pt_conf): New.
7121         (record_btrace_print_conf): Support BTRACE_FORMAT_PT.
7122         (btrace_ui_out_decode_error): Support BTRACE_FORMAT_PT.
7123         (cmd_record_btrace_pt_start): New.
7124         (cmd_record_btrace_start): Support BTRACE_FORMAT_PT.
7125         (cmd_set_record_btrace_pt, cmd_show_record_btrace_pt): New.
7126         (_initialize_record_btrace): Add new commands.
7127         * remote.c (PACKET_Qbtrace_pt, PACKET_Qbtrace_conf_pt_size): New.
7128         (remote_protocol_features): Add "Qbtrace:pt".
7129         Add "Qbtrace-conf:pt:size".
7130         (remote_supports_btrace): Support BTRACE_FORMAT_PT.
7131         (btrace_sync_conf): Support PACKET_Qbtrace_conf_pt_size.
7132         (remote_enable_btrace): Support BTRACE_FORMAT_PT.
7133         (_initialize_remote): Add new commands.
7134
7135 2015-07-02  Markus Metzger  <markus.t.metzger@intel.com>
7136
7137         * configure.ac: check for libipt
7138         * configure: Regenerate.
7139         * config.in: Regenerate.
7140         * Makefile.in (LIBIPT): New.
7141         (CLIBS): Add $LIBIPT.
7142         * NEWS: document new configure options
7143
7144 2015-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
7145
7146         * compile/compile-object-load.c (compile_object_load): Replace debug
7147         message "lookup undefined ELF symbol" by 3 more specific messages.
7148
7149 2015-07-01  Kevin Buettner  <kevinb@redhat.com>
7150
7151         * rl78-tdep.c (struct gdbarch_tdep): Add new field, rl78_psw_type.
7152         (rl78_register_type): Add case for RL78_PSW_REGNUM.
7153         (rl78_gdbarch_init): Initialize rl78_psw_type.
7154
7155 2015-07-01  Patrick Palka  <patrick@parcs.ath.cx>
7156
7157         * tui/tui-hooks.c (tui_refresh_frame_and_register_information):
7158         Update commentary.  Always refresh the registers when frame
7159         information has changed.
7160         * tui/tui-stack.c (tui_show_frame_info): Update commentary.
7161         Change return type to int.  Return 1 if frame information has
7162         changed, 0 otherwise.
7163         (tui_before_prompt): Update commentary.
7164         * tui/tui-stack.h (tui_show_frame_info): Change return type to
7165         int.
7166
7167 2015-06-30  Patrick Palka  <patrick@parcs.ath.cx>
7168
7169         PR tui/13378
7170         * frame.c (select_frame): Remove reference to
7171         deprecated_selected_frame_level_changed_hook.
7172         * frame.h (deprecated_selected_frame_level_changed_hook): Remove
7173         declaration.
7174         * stack.c (deprecated_selected_frame_level_changed_hook):
7175         Likewise.
7176         * tui/tui-hooks.c (tui_selected_frame_level_changed_hook):
7177         Rename to ...
7178         (tui_refresh_frame_and_register_information): ... this.  Bail
7179         out if there is no stack.  Don't update register information
7180         unless registers_too_p is true.
7181         (tui_print_frame_info_listing_hook): Rename to ...
7182         (tui_dummy_print_frame_info_listing_hook): ... this.
7183         (tui_before_prompt): New function.
7184         (tui_normal_stop): New function.
7185         (tui_before_prompt_observer): New observer.
7186         (tui_normal_stop_observer): New observer.
7187         (tui_install_hooks): Set
7188         deprecated_print_frame_info_listing_hook to
7189         tui_dummy_print_frame_info_listing_hook.  Register
7190         tui_before_prompt_observer to call tui_before_prompt and
7191         tui_normal_stop_observer to call tui_normal_stop.  Remove
7192         reference to deprecated_selected_frame_level_changed_hook.
7193         (tui_remove_hooks): Detach and unset tui_before_prompt_observer
7194         and tui_normal_stop_observer.  Remove reference to
7195         deprecated_selected_frame_level_changed_hook.
7196
7197 2015-06-30  Patrick Palka  <patrick@parcs.ath.cx>
7198
7199         PR tui/13378
7200         * tui/tui-stack.c (tui_set_locator_info): Change prototype to
7201         return an int instead of void.  Return whether the locator
7202         window has changed.
7203         (tui_show_frame_info): If the locator info has not changed, then
7204         bail out early to avoid refreshing the windows.
7205
7206 2015-06-30  Patrick Palka  <patrick@parcs.ath.cx>
7207
7208         * tui/tui-stack.c (tui_set_locator_info): Explicitly pass
7209         LOCATOR_WIN to tui_alloc_content.
7210
7211 2015-06-30  Yao Qi  <yao.qi@linaro.org>
7212
7213         PR tdep/18605
7214         * arm-tdep.c (arm_get_next_pc_raw): Break for media
7215         instructions.
7216
7217 2015-06-29  Kevin Buettner  <kevinb@redhat.com>
7218
7219         * rx-tdep.c (RX_PSW_REGNUM): New enum constant.
7220         (rx_dwarf_reg_to_regnum): New function.
7221         (rx_gdbarch_init): Register rx_dwarf_reg_to_regnum.  Use dwarf2
7222         unwinding.
7223
7224 2015-06-29  Pedro Alves  <palves@redhat.com>
7225
7226         PR threads/18127
7227         * infcall.c (run_inferior_call): On infcall success, if the thread
7228         was marked stopped before, reset it back to stopped.
7229         * infrun.c (resume): Don't suppress the set_running calls when
7230         doing an infcall.
7231         (normal_stop): Only discard the finish_thread_state cleanup if the
7232         infcall succeeded.
7233
7234 2015-06-29  Pierre Langlois  <pierre.langlois@arm.com>
7235
7236         * MAINTAINERS (Write After Approval): Update my email address.
7237
7238 2015-06-26  Keith Seitz  <keiths@redhat.com>
7239             Doug Evans  <dje@google.com>
7240
7241         PR 16253
7242         * block.c (block_lookup_symbol): For non-function blocks,
7243         continue to search for a symbol with an exact domain match
7244         Otherwise, return any previously found "best domain" symbol.
7245         (block_lookup_symbol_primary): Likewise.
7246
7247 2015-06-26  Patrick Palka  <patrick@parcs.ath.cx>
7248
7249         * NEWS: Mention the new option "history remove-duplicates".
7250         * top.c (history_remove_duplicates): New static variable.
7251         (show_history_remove_duplicates): New static function.
7252         (gdb_add_history): Conditionally remove duplicate history
7253         entries.
7254         (init_main): Add "history remove-duplicates" option.
7255
7256 2015-06-26  Patrick Palka  <patrick@parcs.ath.cx>
7257
7258         * tui/tui-win.c (focus_completer): New static function.
7259         (_initialize_tui_win): Set the completion function of the
7260         "focus" command to focus_completer.
7261
7262 2015-06-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
7263
7264         * linespec.c (minsym_found): Reset sal.PC for COMPUNIT_LOCATIONS_VALID
7265         and language_asm..
7266         * symtab.c (find_function_start_sal): Likewise.
7267
7268 2015-06-25  Gary Benson  <gbenson@redhat.com>
7269
7270         * solib.c (solib_find_1): Set local variable sysroot to NULL if
7271         it is the empty string after trailing slashes have been stripped.
7272
7273 2015-06-25  Gary Benson  <gbenson@redhat.com>
7274
7275         * exec.c (exec_file_locate_attach): Remove gdb_sysroot NULL check.
7276         * infrun.c (follow_exec): Likewise.
7277         * remote.c (remote_filesystem_is_local): Likewise.
7278         * solib.c (solib_find_1): Likewise.
7279
7280 2015-06-24  Keith Seitz  <keiths@redhat.com>
7281
7282         * build-id.c (build_id_to_debug_bfd): Add cleanup to free
7283         return value from lrealpath.
7284
7285 2015-06-24  Mike Frysinger  <vapier@gentoo.org>
7286
7287         * remote-sim.c (gdbsim_open): Move sysroot update to the top.
7288
7289 2015-06-24  Mike Frysinger  <vapier@gentoo.org>
7290
7291         * remote-sim.c: Include gdb_bfd.h.
7292         (gdbsim_open): Declare new local sysroot pointing to gdb_sysroot.
7293         Skip TARGET_SYSROOT_PREFIX in gdb_sysroot when it is active.
7294
7295 2015-06-24  Yao Qi  <yao.qi@linaro.org>
7296
7297         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Don't call
7298         set_gdbarch_get_siginfo_type.
7299         * amd64-linux-tdep.c (amd64_linux_init_abi_common): Likewise.
7300         * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
7301         * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
7302         * m68klinux-tdep.c (m68k_linux_init_abi): Likewise.
7303         * ppc-linux-tdep.c (ppc_linux_init_abi): Likewise.
7304         * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
7305         * tilegx-linux-tdep.c (tilegx_linux_init_abi): Likewise.
7306         * linux-tdep.c (linux_get_siginfo_type): Change it to static.
7307         (linux_init_abi): Call set_gdbarch_get_siginfo_type.
7308         * linux-tdep.h (linux_get_siginfo_type): Remove the declaration.
7309
7310 2015-06-24  Gary Benson  <gbenson@redhat.com>
7311
7312         * common/buffer.c (stdint.h): Do not include.
7313         * common/print-utils.c (stdint.h): Likewise.
7314         * compile/compile-c-symbols.c (gdb_assert.h): Likewise.
7315         * compile/compile-c-types.c (gdb_assert.h): Likewise.
7316         * ft32-tdep.c (gdb_assert.h): Likewise.
7317         * guile/scm-utils.c (stdint.h): Likewise.
7318         * i386-linux-tdep.c (stdint.h): Likewise.
7319         * i386-tdep.c (stdint.h): Likewise.
7320         * nat/linux-btrace.c (stdint.h): Likewise.
7321         * nat/linux-btrace.h (stdint.h): Likewise.
7322         * nat/linux-ptrace.c (stdint.h): Likewise.
7323         * nat/mips-linux-watch.h (stdint.h): Likewise.
7324         * ppc-linux-nat.c (stdint.h): Likewise.
7325         * python/python-internal.h (stdint.h): Likewise.
7326         * stub-termcap.c (stdlib.h): Likewise.
7327         * target/target.h (stdint.h): Likewise.
7328         * xtensa-linux-nat.c (stdint.h): Likewise.
7329
7330 2015-06-23  Patrick Palka  <patrick@parcs.ath.cx>
7331
7332         * top.c (init_history): Look at errno after calling strtol to
7333         properly map large GDBHISTSIZE values to infinity.
7334
7335 2015-06-23  Doug Evans  <dje@google.com>
7336
7337         * inferior.h (struct inferior_suspend_state): Delete, unused.
7338         All references deleted.
7339
7340 2015-06-23  Mike Frysinger  <vapier@gentoo.org>
7341
7342         * microblaze-tdep.c (microblaze_push_dummy_code): Delete.
7343         (microblaze_push_dummy_call): Likewise.
7344         (microblaze_gdbarch_init): Delete calls to set_gdbarch_push_dummy_code
7345         and set_gdbarch_push_dummy_call.
7346
7347 2015-06-23  Yao Qi  <yao.qi@linaro.org>
7348
7349         * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers):
7350         Check whether have_ptrace_getregset is TRIBOOL_TRUE explicitly.
7351         (amd64_linux_store_inferior_registers): Likewise.
7352         * arm-linux-nat.c (fetch_fpregister): Likewise.
7353         (fetch_fpregs, store_fpregister): Likewise.
7354         (store_fpregister, store_fpregs): Likewise.
7355         (fetch_register, fetch_regs): Likewise.
7356         (store_register, store_regs): Likewise.
7357         (fetch_vfp_regs, store_vfp_regs): Likewise.
7358         (arm_linux_read_description): Check have_ptrace_getregset is
7359         TRIBOOL_UNKNOWN.  Set have_ptrace_getregset to TRIBOOL_TRUE
7360         or TRIBOOL_FALSE.
7361         * i386-linux-nat.c (fetch_xstateregs): Check
7362         have_ptrace_getregset is not TRIBOOL_TRUE.
7363         (store_xstateregs): Likewise.
7364         * linux-nat.c (have_ptrace_getregset): Change its type to
7365         enum tribool.
7366         * linux-nat.h (tribool): New enum.
7367         * x86-linux-nat.c (x86_linux_read_description): Use enum tribool.
7368         Check whether have_ptrace_getregset is TRIBOOL_TRUE.
7369
7370 2015-06-19  Doug Evans  <dje@google.com>
7371
7372         * NEWS: Mention Sun's version of stabs is no longer supported.
7373         * elfread.c (free_elfinfo): Delete.  All uses updated.
7374         (elfstab_offset_sections): Delete.  All uses updated.
7375         * gdb-stabs.h (stab_section_info): Delete.  All uses updated.
7376         * psympriv.h (partial_symtab) <section_offsets>: Delete.
7377         All uses updated.
7378         * psymtab.c (start_psymtab_common): Delete arg section_offsets.
7379         All callers updated.
7380
7381 2015-06-18  Simon Marchi  <simon.marchi@ericsson.com>
7382
7383         * common/rsp-low.c (needs_escaping): New.
7384         (remote_escape_output): Add unit_size parameter. Refactor to
7385         support multi-byte addressable units.  Rename parameters.
7386         * common/rsp-low.h (remote_escape_output): Add unit_size
7387         parameter and rename others. Update doc.
7388         * remote.c (align_for_efficient_write): New.
7389         (remote_write_bytes_aux): Add unit_size parameter and use it.
7390         Rename some variables.  Update doc.
7391         (remote_xfer_partial): Get unit size and use it.
7392         (remote_read_bytes_1): Add unit_size parameter and use it.
7393         Rename some variables. Update doc.
7394         (remote_write_bytes): Same.
7395         (remote_xfer_live_readonly_partial): Same.
7396         (remote_read_bytes): Same.
7397         (remote_flash_write): Update call to remote_write_bytes_aux.
7398         (remote_write_qxfer): Update call to remote_escape_output.
7399         (remote_search_memory): Same.
7400         (remote_hostio_pwrite): Same.
7401
7402 2015-06-17  Luis Machado  <lgustavo@codesourcery.com>
7403
7404         * breakpoint.c (add_location_to_breakpoint): Don't mark permanent
7405         locations as inserted.
7406         Update and expand comment about permanent locations.
7407         (bp_loc_is_permanent): Don't return 0 for bp_call_dummy.
7408         Move comment to add_location_to_breakpoint.
7409         (update_global_location_list): Don't error out if a permanent
7410         breakpoint is not marked inserted.
7411         Don't error out if a non-permanent breakpoint location is inserted on
7412         top of a permanent breakpoint.
7413
7414 2015-06-17  Luis Machado  <lgustavo@codesourcery.com>
7415
7416         * breakpoint.c (make_breakpoint_permanent): Remove unused
7417         function.
7418         * breakpoint.h (make_breakpoint_permanent): Remove declaration.
7419
7420 2015-06-17  Patrick Palka  <patrick@parcs.ath.cx>
7421
7422         PR gdb/16999
7423         * NEWS: Mention new GDBHISTSIZE behavior.
7424         * top.c (init_history): For null or out-of-range GDBHISTSIZE,
7425         set history size to unlimited.  Ignore non-numeric GDBHISTSIZE.
7426
7427 2015-06-17  Patrick Palka  <patrick@parcs.ath.cx>
7428
7429         * NEWS: Mention that GDBHISTSIZE is read instead of HISTSIZE.
7430         * top.c (init_history): Read from GDBHISTSIZE instead of
7431         HISTSIZE.
7432         (init_main): Refer to GDBHISTSIZE instead of HISTSIZE.
7433
7434 2015-06-17  Patrick Palka  <patrick@parcs.ath.cx>
7435
7436         * top.c (gdb_safe_append_history): Do not call
7437         history_truncate_file if the history is not stifled.
7438
7439 2015-06-17  Andreas Arnez  <arnez@linux.vnet.ibm.com>
7440
7441         * syscalls/s390-linux.xml: Add syscalls 344 through 354.
7442         * syscalls/s390x-linux.xml: Likewise.
7443
7444 2015-06-16  Michael Eager  <eager@eagercon.com>
7445
7446         * nat/linux-namespaces.c (MSG_CMSG_CLOEXEC): Define if not defined.
7447
7448 2015-06-16  Patrick Palka  <patrick@parcs.ath.cx>
7449
7450         * tui/tui-hooks.c (tui_selected_frame_level_changed_hook): Call
7451         target_terminal_ours_for_output() before calling
7452         tui_show_frame_info(), and restore the original terminal
7453         settings afterwards.
7454
7455 2015-06-16  Martin Simmons  <martin@lispworks.com>  (tiny patch)
7456
7457         * arm-linux-nat.c: Include nat/linux-ptrace.h.
7458
7459 2015-06-15  Simon Marchi  <simon.marchi@ericsson.com>
7460
7461         * mi/mi-main.c (mi_cmd_data_read_memory_bytes): Consider addressable
7462         memory unit size.
7463         (mi_cmd_data_write_memory_bytes): Same.
7464
7465 2015-06-15  Simon Marchi  <simon.marchi@ericsson.com>
7466
7467         * corefile.c (write_memory): Update doc.
7468         * gdbcore.h (write_memory): Same.
7469
7470 2015-06-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
7471
7472         * linux-tdep.c (enum filterflags): Make it from anonymous enum.
7473         (dump_mapping_p): Use it for parameter filterflags.
7474         (linux_find_memory_regions_full): Use it for variable filterflags.
7475
7476 2015-06-15  Aleksandar Ristovski  <aristovski@qnx.com
7477             Jan Kratochvil  <jan.kratochvil@redhat.com>
7478
7479         Merge multiple hex conversions.
7480         * monitor.c: Include rsp-low.h.
7481         (fromhex): Remove definition.
7482
7483 2015-06-15  Aleksandar Ristovski  <aristovski@qnx.com
7484             Jan Kratochvil  <jan.kratochvil@redhat.com>
7485
7486         Move utility functions to common/.
7487         * cli/cli-utils.c (skip_spaces, skip_spaces_const, skip_to_space_const):
7488         Move defs to common/common-utils.c.
7489         * cli/cli-utils.h (skip_spaces, skip_spaces_const, skip_to_space)
7490         (skip_to_space_const): Move decls to common/common-utils.h.
7491         * common/common-defs.h: Move include of common-types.h before
7492         common-utils.h.
7493         * common/common-utils.c: Include host-defs.h and ctype.h.
7494         (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int, strtoulst): Move
7495         from utils.c.
7496         (skip_spaces, skip_spaces_const, skip_to_space_const): Move from
7497         cli/cli-utils.c.
7498         * common/common-utils.h (strtoulst): Move decl from utils.h.
7499         (skip_spaces, skip_spaces_const, skip_to_space, skip_to_space_const):
7500         Move from cli/cli-utils.h.
7501         * common/host-defs.h: Include limits.h.
7502         (TARGET_CHAR_BIT, HOST_CHAR_BIT): Moved from defs.h.
7503         (skip_spaces, skip_spaces_const): Move decls from cli/cli-utils.h.
7504         * defs.h (TARGET_CHAR_BIT, HOST_CHAR_BIT): Move to
7505         common/common-utils.h.
7506         * utils.c (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int)
7507         (strtoulst): Move to common/common-utils.c.
7508         * utils.h (strtoulst): Moved decl to common/common-utils.h.
7509
7510 2015-06-15  Yao Qi  <yao.qi@linaro.org>
7511
7512         * data-directory/Makefile.in (SYSCALLS_FILES): Add aarch64-linux.xml.
7513
7514 2015-06-10  Jon Turney  <jon.turney@dronecode.org.uk>
7515
7516         * build-id.c: Don't include elf-bfd.h.
7517         (build_id_bfd_get): Use bfd_build_id.
7518         (build_id_verify): Ditto.
7519         * build-id.h: Ditto.
7520         (find_separate_debug_file_by_buildid): Ditto.
7521         * python/py-objfile.c: Don't include elf-bfd.h.
7522         (objfpy_get_build_id) Use bfd_build_id.
7523         (objfpy_build_id_matches, objfpy_lookup_objfile_by_build_id): Ditto.
7524         * coffread.c: Include build-id.h.
7525         (coff_symfile_read): Try find_separate_debug_file_by_buildid.
7526
7527 2015-06-03  Jon Turney  <jon.turney@dronecode.org.uk>
7528
7529         * windows-nat.c (do_windows_fetch_inferior_registers)
7530         (handle_output_debug_string): Replace __COPY_CONTEXT_SIZE
7531         conditional with __CYGWIN__.
7532
7533 2015-06-13  Andrew Burgess  <andrew.burgess@embecosm.com>
7534
7535         * completer.c: Add arch-utils.h include.
7536         (enum reg_completer_targets): New enum.
7537         (reg_or_group_completer_1): New function containing old
7538         reg_or_group_completer, add and use new parameter to control what
7539         is completed on.  Use get_current_arch rather than architecture of
7540         currently selected frame.
7541         (reg_or_group_completer): Call new reg_or_group_completer_1.
7542         (reggroup_completer): Call new reg_or_group_completer_1.
7543         * completer.h (reggroup_completer): Add declaration.
7544         * tui/tui-regs.c: Add 'completer.h' include.
7545         (tui_reg_next_command): Renamed to...
7546         (tui_reg_next): ...this.  Adjust parameters and return rather than
7547         display new group.
7548         (tui_reg_prev_command): Renamed to...
7549         (tui_reg_prev): ...this.  Adjust parameters and return rather than
7550         display new group.
7551         (tui_reg_float_command): Delete.
7552         (tui_reg_general_command): Delete.
7553         (tui_reg_system_command): Delete.
7554         (tui_reg_command): Rewrite to perform switching of register group.
7555         Add header comment.
7556         (tuireglist): Remove.
7557         (tui_reggroup_completer): New function.
7558         (_initialize_tui_regs): Remove 'tui reg' sub-commands, update
7559         creation of 'tui reg' command.
7560         * NEWS: Add comment about 'tui reg' changes.
7561
7562 2015-06-12  Simon Marchi  <simon.marchi@ericsson.com>
7563
7564         * target.c (target_read): Consider addressable unit size when
7565         reading from a memory object.
7566         (read_memory_robust): Same.
7567         (read_whatever_is_readable): Same.
7568         (target_write_with_progress): Consider addressable unit size
7569         when writing to a memory object.
7570         * target.h (target_read): Update documentation.
7571         (target_write): Add documentation.
7572
7573 2015-06-12  Simon Marchi  <simon.marchi@ericsson.com>
7574
7575         * arch-utils.h (default_addressable_memory_unit_size): New.
7576         * arch-utils.c (default_addressable_memory_unit_size): New.
7577         * gdbarch.sh (addressable_memory_unit_size): New.
7578         * gdbarch.h: Re-generate.
7579         * gdbarch.c: Re-generate.
7580
7581 2015-06-12  Simon Marchi  <simon.marchi@ericsson.com>
7582
7583         * target.c (target_read): Rename variables and use
7584         TARGET_XFER_E_IO.
7585         (target_read_with_progress): Same.
7586         (read_memory_robust): Constify parameters and rename
7587         variables.
7588         (read_whatever_is_readable): Constify parameters,
7589         rename variables, adjust formatting.
7590         * target.h (read_memory_robust): Constify parameters.
7591
7592 2015-06-12  Ulrich Weigand  <uweigand@de.ibm.com>
7593
7594         * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value_base): Handle short
7595         synthetic (non-AltiVec) vector types.
7596         (ppc64_sysv_abi_return_value): Likewise.
7597
7598 2015-06-12  Antoine Tremblay  <antoine.tremblay@ericsson.com>
7599
7600         PR breakpoints/16465
7601         * breakpoint.c (create_breakpoint): Save extra_string for
7602         pending breakpoints.
7603
7604 2015-06-10  Walfred Tedeschi  <walfred.tedeschi@intel.com>
7605
7606         * i386-tdep.c (i386_mpx_get_bt_entry): Add a cast for mpx_bd_mask
7607         and bt_mask to CORE_ADDR.
7608
7609 2015-06-11  Gary Benson <gbenson@redhat.com>
7610
7611         * nat/linux-namespaces.c (mnsh_send_message): Use pulongest.
7612         (mnsh_recv_message): Likewise.
7613
7614 2015-06-11  Walfred Tedeschi  <walfred.tedeschi@intel.com>
7615
7616         * i386-tdep.c (i386_mpx_print_bounds): use of LONGEST instead of
7617         long long int and plongest instead of %ll.
7618
7619 2015-06-11  Gary Benson <gbenson@redhat.com>
7620
7621         * nat/linux-namespaces.c (gdb_wait.h): New include.
7622         (sys/wait.h): Do not include.
7623
7624 2015-06-10  Simon Marchi  <simon.marchi@ericsson.com>
7625
7626         * dwarf2read.c (dwarf_record_line): Call dwarf_record_line if
7627         end_sequence is true.
7628
7629 2015-06-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
7630
7631         Code cleanup.
7632         * solib-target.c (library_list_start_list): Use explicit NULL
7633         comparison.
7634
7635 2015-06-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
7636
7637         * solib-target.c (library_list_start_list): Do not dereference
7638         variable version in its initialization.  Make the VERSION check handle
7639         NULL.
7640         (library_list_attributes): Make "version" GDB_XML_AF_OPTIONAL.
7641
7642 2015-06-10  Gary Benson <gbenson@redhat.com>
7643
7644         * NEWS: Announce support for direct access of executable and
7645         shared library files when attaching to inferiors in containers
7646         on GNU/Linux systems.
7647
7648 2015-06-10  Gary Benson <gbenson@redhat.com>
7649
7650         * remote.c (struct remote_state) <fs_pid>: New field.
7651         (new_remote_state): Initialize the above.
7652         (PACKET_vFile_setfs): New enum value.
7653         (remote_hostio_set_filesystem): New function.
7654         (remote_hostio_open): Call the above.
7655         (remote_hostio_unlink): Likewise.
7656         (remote_hostio_readlink): Likewise.
7657         (_initialize_remote): Register new "set/show remote
7658         hostio-setfs-packet" command.
7659         * NEWS: Announce new vFile:setfs packet.
7660
7661 2015-06-10  Gary Benson <gbenson@redhat.com>
7662
7663         * linux-nat.c (nat/linux-namespaces.h): New include.
7664         (fileio.h): Likewise.
7665         (linux_nat_filesystem_is_local): New function.
7666         (linux_nat_fileio_pid_of): Likewise.
7667         (linux_nat_fileio_open): Likewise.
7668         (linux_nat_fileio_readlink): Likewise.
7669         (linux_nat_fileio_unlink): Likewise.
7670         (linux_nat_add_target): Initialize to_filesystem_is_local,
7671         to_fileio_open, to_fileio_readlink and to_fileio_unlink.
7672         (_initialize_linux_nat): New "set/show debug linux-namespaces"
7673         commands.
7674         * NEWS: Mention new "set/show debug linux-namespaces" commands.
7675
7676 2015-06-10  Gary Benson <gbenson@redhat.com>
7677
7678         * target.h (struct inferior): New forward declaration.
7679         (struct target_ops) <to_filesystem_is_local>: Update comment.
7680         (struct target_ops) <to_fileio_open>: New argument inf.
7681         Update comment.  All implementations updated.
7682         (struct target_ops) <to_fileio_unlink>: Likewise.
7683         (struct target_ops) <to_fileio_readlink>: Likewise.
7684         (target_filesystem_is_local): Update comment.
7685         (target_fileio_open): New argument inf.  Update comment.
7686         (target_fileio_unlink): Likewise.
7687         (target_fileio_readlink): Likewise.
7688         (target_fileio_read_alloc): Likewise.
7689         (target_fileio_read_stralloc): Likewise.
7690         * target.c (target_fileio_open): New argument inf.
7691         Pass inf to implementation.  Update debug printing.
7692         (target_fileio_unlink): Likewise.
7693         (target_fileio_readlink): Likewise.
7694         (target_fileio_read_alloc_1): New argument inf. Pass inf
7695         to target_fileio_open.
7696         (target_fileio_read_alloc): New argument inf. Pass inf to
7697         target_fileio_read_alloc_1.
7698         (target_fileio_read_stralloc): Likewise.
7699         * gdb_bfd.c (inferior.h): New include.
7700         (gdb_bfd_iovec_fileio_open): Replace unused "open_closure"
7701         argument with new argument "inferior".  Pass inferior to
7702         target_fileio_open.
7703         (gdb_bfd_open): Supply inferior argument to
7704         gdb_bfd_iovec_fileio_open.
7705         * linux-tdep.c (linux_info_proc): Supply inf argument to
7706         relevant target_fileio calls.
7707         (linux_find_memory_regions_full): Likewise.
7708         (linux_fill_prpsinfo): Likewise.
7709         * remote.c (remote_filesystem_is_local): Supply inf
7710         argument to remote_hostio_open.
7711         (remote_file_put): Likewise.
7712         (remote_file_get): Likewise.
7713         (remote_file_delete): Supply inf argument to
7714         remote_hostio_unlink.
7715
7716 2015-06-10  Gary Benson <gbenson@redhat.com>
7717
7718         * inf-child.c (inf_child_fileio_open): Replace comment.
7719         (inf_child_fileio_pwrite): Likewise.
7720         (inf_child_fileio_pread): Likewise.
7721         (inf_child_fileio_fstat): Insert blank line before comment.
7722         (inf_child_fileio_close): Replace comment.
7723         (inf_child_fileio_unlink): Likewise.
7724         (inf_child_fileio_readlink): Likewise.
7725         * remote.c (remote_hostio_open): Likewise.
7726         (remote_hostio_pread): Likewise.
7727         (remote_hostio_pwrite): Likewise.
7728         (remote_hostio_close): Likewise.
7729         (remote_hostio_unlink): Likewise.
7730         (remote_hostio_readlink): Likewise.
7731         (remote_hostio_fstat): Likewise.
7732         (remote_filesystem_is_local): Likewise.
7733         * target.c (target_fileio_open): Likewise.
7734         (target_fileio_pwrite): Likewise.
7735         (target_fileio_pread): Likewise.
7736         (target_fileio_fstat): Insert blank line before comment.
7737         (target_fileio_close): Replace comment.
7738         (target_fileio_unlink): Likewise.
7739         (target_fileio_readlink): Likewise.
7740         (target_fileio_read_alloc): Likewise.
7741         (target_fileio_read_stralloc): Likewise.
7742
7743 2015-06-10  Gary Benson <gbenson@redhat.com>
7744
7745         * linux-thread-db.c (nat/linux-namespaces.h): New include.
7746         (check_pid_namespace_match): Use linux_ns_same rather than
7747         linux_proc_pid_get_ns to spot PID namespace mismatches.
7748         * nat/linux-procfs.h (linux_proc_pid_get_ns): Remove.
7749         * nat/linux-procfs.c (linux_proc_pid_get_ns): Likewise.
7750
7751 2015-06-10  Gary Benson <gbenson@redhat.com>
7752
7753         * configure.ac (AC_CHECK_FUNCS): Add setns.
7754         * config.in: Regenerate.
7755         * configure: Likewise.
7756         * nat/linux-namespaces.h: New file.
7757         * nat/linux-namespaces.c: Likewise.
7758         * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-namespaces.h.
7759         (linux-namespaces.o): New rule.
7760         * config/aarch64/linux.mh (NATDEPFILES): Add linux-namespaces.o.
7761         * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
7762         * config/arm/linux.mh (NATDEPFILES): Likewise.
7763         * config/i386/linux.mh (NATDEPFILES): Likewise.
7764         * config/i386/linux64.mh (NATDEPFILES): Likewise.
7765         * config/ia64/linux.mh (NATDEPFILES): Likewise.
7766         * config/m32r/linux.mh (NATDEPFILES): Likewise.
7767         * config/m68k/linux.mh (NATDEPFILES): Likewise.
7768         * config/mips/linux.mh (NATDEPFILES): Likewise.
7769         * config/pa/linux.mh (NATDEPFILES): Likewise.
7770         * config/powerpc/linux.mh (NATDEPFILES): Likewise.
7771         * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
7772         * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
7773         * config/s390/linux.mh (NATDEPFILES): Likewise.
7774         * config/sparc/linux.mh (NATDEPFILES): Likewise.
7775         * config/sparc/linux64.mh (NATDEPFILES): Likewise.
7776         * config/tilegx/linux.mh (NATDEPFILES): Likewise.
7777         * config/xtensa/linux.mh (NATDEPFILES): Likewise.
7778
7779 2015-06-10  Gary Benson <gbenson@redhat.com>
7780
7781         * utils.h (make_cleanup_close): Moved to common/filestuff.h.
7782         * utils.c (do_close_cleanup): Moved to common/filestuff.c.
7783         (make_cleanup_close): Likewise.
7784         * common/filestuff.h (make_cleanup_close): Moved from utils.h.
7785         * common/filestuff.c (do_close_cleanup): Moved from utils.c.
7786         (make_cleanup_close): Likewise.
7787
7788 2015-06-03  Jon Turney  <jon.turney@dronecode.org.uk>
7789
7790         * windows-nat.c (thread_rec): Also ignore ERROR_INVALID_HANDLE
7791         from SuspendThread().
7792
7793 2015-06-03  Jon Turney  <jon.turney@dronecode.org.uk>
7794
7795         * windows-nat.c (handle_output_debug_string): Trim trailing '\n'
7796         from OutputDebugString.
7797
7798 2015-06-10  Walfred Tedeschi  <walfred.tedeschi@intel.com>
7799                         Mircea Gherzan  <mircea.gherzan@intel.com>
7800
7801         * i386-tdep.c (MPX_BASE_MASK, MPX_BD_MASK, MPX_BT_MASK, MPX_BD_MASK_32,
7802         MPX_BT_MASK_32): New macros.
7803         (i386_mpx_set_bounds): New function that implements
7804         the command "set-mpx-bound".
7805         (i386_mpx_enabled): Helper function to test MPX availability.
7806         (i386_mpx_bd_base): Helper function to calculate the base directory
7807         address.
7808         (i386_mpx_get_bt_entry): Helper function to access a bound
7809         table entry.
7810         (i386_mpx_print_bounds): Effectively display bound information.
7811         (_initialize_i386_tdep): Add new commands to commands "set mpx" and
7812         "show mpx".
7813         (_initialize_i386_tdep):
7814         Add "bound" to the commands "show mpx" and "set mpx" commands.
7815         (mpx_set_cmdlist and mpx_show_cmdlist): List for the new prefixed "set mpx"
7816         and "show mpx" commands.
7817         * NEWS: List new commands for MPX support.
7818
7819 2015-06-09  Gary Benson <gbenson@redhat.com>
7820
7821         * common/fileio.h (fileio_to_host_mode): New declaration.
7822         * common/fileio.c (fileio_to_host_mode): New Function.
7823         * inf-child.c (inf_child_fileio_open): Process mode argument
7824         with fileio_to_host_mode.
7825
7826 2015-06-09  Gary Benson <gbenson@redhat.com>
7827
7828         * common/fileio.c (fileio_mode_pack): Fix preprocessor
7829         conditional.
7830
7831 2015-06-05  Gary Benson <gbenson@redhat.com>
7832
7833         * gdb_bfd.c (gdb_bfd_open): Move vgdb special case to...
7834         * remote.c (remote_filesystem_is_local): ...here.
7835
7836 2015-06-04  Yao Qi  <yao.qi@linaro.org>
7837
7838         * gdbarch.c: Regenerate it.
7839
7840 2015-06-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7841
7842         * arch-utils.c (default_infcall_munmap): New.
7843         * arch-utils.h (default_infcall_munmap): New declaration.
7844         * compile/compile-object-load.c (struct munmap_list, munmap_list_add)
7845         (munmap_list_free, munmap_listp_free_cleanup): New.
7846         (struct setup_sections_data): Add field munmap_list_headp.
7847         (setup_sections): Call munmap_list_add.
7848         (compile_object_load): New variable munmap_list_head, initialize
7849         setup_sections_data.munmap_list_headp, return munmap_list_head.
7850         * compile/compile-object-load.h (struct munmap_list): New declaration.
7851         (struct compile_module): Add field munmap_list_head.
7852         (munmap_list_free): New declaration.
7853         * compile/compile-object-run.c (struct do_module_cleanup): Add field
7854         munmap_list_head.
7855         (do_module_cleanup): Call munmap_list_free.
7856         (compile_object_run): Pass munmap_list_head to do_module_cleanup.
7857         * gdbarch.c: Regenerate.
7858         * gdbarch.h: Regenerate.
7859         * gdbarch.sh (infcall_munmap): New.
7860         * linux-tdep.c (linux_infcall_munmap): New.
7861         (linux_init_abi): Install it.
7862
7863 2015-06-02  Simon Marchi  <simon.marchi@ericsson.com>
7864
7865         PR gdb/15564
7866         * inferior.c (detach_inferior): Call exit_inferior_1 with silent = 0.
7867
7868 2015-06-02  Yao Qi  <yao.qi@linaro.org>
7869
7870         * i386-linux-nat.c: Include linux-nat.h.
7871
7872 2015-06-01  Andreas Schwab  <schwab@linux-m68k.org>
7873             Jan Kratochvil  <jan.kratochvil@redhat.com>
7874
7875         PR symtab/18392
7876         * dwarf2-frame-tailcall.c (pretended_chain_levels): Correct
7877         assertion.
7878         * dwarf2loc.c (chain_candidate): Likewise.
7879
7880 2015-06-01  Yao Qi  <yao.qi@linaro.org>
7881
7882         * arm-linux-nat.c (fetch_vfp_regs): Use PTRACE_GETREGSET.
7883         (store_vfp_regs): Use PTRACE_SETREGSET.
7884
7885 2015-06-01  Yao Qi  <yao.qi@linaro.org>
7886
7887         * arm-linux-nat.c (fetch_fpregister): Use PTRACE_GETREGSET.
7888         (fetch_fpregs): Likewise.
7889         * arm-linux-nat.c (store_fpregister): Use PTRACE_SETREGSET.
7890         (store_fpregs): Likewise.
7891
7892 2015-06-01  Yao Qi  <yao.qi@linaro.org>
7893
7894         * arm-linux-nat.c (fetch_register): Use PTRACE_GETREGSET.
7895         (fetch_regs): Likewise.
7896         (store_regs): Use PTRACE_SETREGSET.
7897         (store_register): Likewise.
7898
7899 2015-06-01  Yao Qi  <yao.qi@linaro.org>
7900
7901         * arm-linux-nat.c (arm_linux_read_description): Check whether
7902         kernel supports PTRACE_GETREGSET.
7903
7904 2015-06-01  Yao Qi  <yao.qi@linaro.org>
7905
7906         * x86-linux-nat.c (have_ptrace_getregset): Move it to ...
7907         * linux-nat.c: ... here.
7908         * x86-linux-nat.h (have_ptrace_getregset): Move the declaration
7909         to ...
7910         * linux-nat.h: ... here.
7911
7912 2015-06-01  Yao Qi  <yao.qi@linaro.org>
7913
7914         * amd64-linux-nat.c: Include "nat/linux-ptrace.h".
7915         * i386-linux-nat.c: Likewise.
7916         * nat/linux-ptrace.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Define.
7917         * s390-linux-nat.c: Include "nat/linux-ptrace.h".
7918         (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove.
7919         * x86-linux-nat.c: Include "nat/linux-ptrace.h".
7920         * x86-linux-nat.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove.
7921
7922 2015-05-30  Eli Zaretskii  <eliz@gnu.org>
7923
7924         * go32-nat.c (go32_xfer_memory): Fix the return value to be
7925         compatible to what read_child and write_child return.  This
7926         unbreaks that DJGPP build of GDB which was broken since v7.7.
7927
7928 2015-05-29  Martin Galvan  <martin.galvan@tallertechnologies.com>
7929
7930         * MAINTAINERS (Write After Approval): Add Martin Galvan.
7931
7932 2015-05-29  Roland McGrath  <mcgrathr@google.com>
7933
7934         PR gdb/18464
7935         * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Use warning
7936         rather than internal_error for an unrecognized value.
7937
7938 2015-05-29  Max Filippov  <jcmvbkbc@gmail.com>
7939
7940         * xtensa-tdep.c (xtensa_pseudo_register_read)
7941         (xtensa_pseudo_register_write): Don't alias last pseudo register
7942         to a1.
7943
7944 2015-05-28  Don Breazeal  <donb@codesourcery.com>
7945
7946         * infrun.c (follow_fork_inferior): Ensure the use of
7947         process-style ptids (pid,0,0) in verbose/debug "Detaching"
7948         messages.
7949
7950 2015-05-28  Doug Evans  <dje@google.com>
7951
7952         * dwarf2read.c (record_line_ftype): Remove, duplicate.
7953
7954 2015-05-28  Yao Qi  <yao.qi@linaro.org>
7955
7956         * arm-linux-nat.c (arm_linux_has_wmmx_registers): Remove.
7957         (arm_linux_fetch_inferior_registers): Use
7958         tdep->have_wmmx_registers instead of arm_linux_has_wmmx_registers.
7959         (arm_linux_store_inferior_registers): Likewise.
7960         (arm_linux_read_description): Don't set
7961         arm_linux_has_wmmx_registers.
7962         * arm-tdep.c (arm_gdbarch_init): Set
7963         tdep->have_wmmx_registers according target descriptions.
7964         * arm-tdep.h (struct gdbarch_tdep) <have_wmmx_registers>: New
7965         field.
7966
7967 2015-05-28  Yao Qi  <yao.qi@linaro.org>
7968
7969         * arm-linux-nat.c (arm_linux_vfp_register_count): Remove.
7970         (fetch_vfp_regs): Use vfp_register_count from gdbarch_tdep
7971         instead of arm_linux_vfp_register_count.
7972         (store_vfp_regs): Likewise.
7973         (arm_linux_fetch_inferior_registers): Likewise.
7974         (arm_linux_store_inferior_registers): Likewise.
7975         (arm_linux_read_description): Don't set
7976         arm_linux_vfp_register_count.
7977         * arm-linux-tdep.c (arm_linux_iterate_over_regset_sections):
7978         Adjust.
7979         * arm-tdep.c (arm_gdbarch_init): Add assert on
7980         vfp_register_count.
7981         * arm-tdep.h (struct gdbarch_tdep) <have_vfp_registers>: Rename
7982         field to vfp_register_count.  All users updated.
7983
7984 2015-05-28  Kyle Huey  <me@kylehuey.com>  (tiny patch)
7985
7986         * gdb/arm-tdep.c (arm_gdbarch_init): Perform arm_abi detection on
7987         ELFOSABI_GNU binaries.
7988
7989 2015-05-27  Doug Evans  <dje@google.com>
7990
7991         * dwarf2read.c (lnp_state_machine): New typedef.
7992         (lnp_reader_state): New typedef.
7993         (dwarf_record_line_1): Renamed from dwarf_record_line.
7994         All callers updated.
7995         (dwarf_record_line): New function.
7996         (init_lnp_state_machine): New function.
7997         (check_line_address): Replace p_record_line parameter with state.
7998         All callers updated.
7999         (dwarf_decode_lines_1): Call dwarf_record_line, init_lnp_state_machine.
8000         Update to record state in lnp_state_machine.
8001
8002 2015-05-27  Doug Evans  <dje@google.com>
8003
8004         * dwarf2read.c (record_line_ftype): New typedef.
8005         (check_line_address): New function.
8006         (dwarf_decode_lines_1): Call it.
8007
8008 2015-05-27  Doug Evans  <dje@google.com>
8009
8010         * NEWS: Mention "set debug dwarf-line".
8011         * dwarf2read.c (dwarf_line_debug): New static global.
8012         (add_include_dir): Add debug dwarf-line support.
8013         (add_file_name, dwarf_record_line, dwarf_finish_line): Ditto.
8014         (_initialize_dwarf2_read): New parameter "debug dwarf-line".
8015
8016 2015-05-27  Doug Evans  <dje@google.com>
8017
8018         * cp-namespace.c (cp_lookup_nested_symbol): New arg "domain".
8019         All callers updated.
8020         (cp_lookup_nested_symbol_1, find_symbol_in_baseclass): Ditto.
8021         * cp-support.h (cp_lookup_nested_symbol): Update.
8022
8023 2015-05-27  Doug Evans  <dje@google.com>
8024
8025         PR symtab/18258
8026         * block.c (block_find_symbol): New function.
8027         (block_find_non_opaque_type): Ditto.
8028         (block_find_non_opaque_type_preferred): Ditto.
8029         * block.h (block_symbol_matcher_ftype): New typedef.
8030         (block_find_symbol): Declare.
8031         (block_find_non_opaque_type): Ditto.
8032         (block_find_non_opaque_type_preferred): Ditto.
8033         * dwarf2read.c (dw2_lookup_symbol): Call block_find_symbol.
8034         * psymtab.c (psym_lookup_symbol): Ditto.
8035         * symtab.c (basic_lookup_transparent_type_1): New function.
8036         (basic_lookup_transparent_type): Call it.
8037
8038 2015-05-27  Yao Qi  <yao.qi@linaro.org>
8039
8040         * aarch64-tdep.c (aarch64_record_data_proc_simd_fp): Return
8041         AARCH64_RECORD_UNKNOWN for unknown instruction encoding.
8042
8043 2015-05-27  Yao Qi  <yao.qi@linaro.org>
8044
8045         * aarch64-tdep.c (aarch64_record_branch_except_sys): Split lines
8046         before operator &&.
8047         (aarch64_record_load_store): Likewise.
8048
8049 2015-05-26  Doug Evans  <dje@google.com>
8050
8051         PR c++/18141, c++/18417.
8052         * cp-support.c (cp_lookup_rtti_type): Handle the case of NAME being
8053         a typedef.
8054
8055 2015-05-26  Doug Evans  <dje@google.com>
8056
8057         * NEWS: Add entries for command renamings.
8058         * dwarf2read.c (dwarf_read_debug): Renamed from dwarf2_read_debug.
8059         All uses updated.
8060         (dwarf_die_debug): Renamed from dwarf2_die_debug.  All uses updated.
8061         (dwarf_max_cache_age): Renamed from dwarf2_max_cache_age.
8062         All uses updated.
8063         (show_dwarf_max_cache_age): Renamed from show_dwarf2_max_cache_age.
8064         All callers updated.  Fix spelling of DWARF in help text.
8065         (set_dwarf_cmdlist): Renamed from set_dwarf2_cmdlist.
8066         All uses updated.
8067         (show_dwarf_cmdlist): Renamed from show_dwarf2_cmdlist.
8068         All uses updated.
8069         (set_dwarf_cmd): Renamed from set_dwarf2_cmd.  All callers updated.
8070         (show_dwarf_cmd): Renamed from show_dwarf2_cmd.  All callers updated.
8071         (dwarf_always_disassemble): Renamed from dwarf_always_disassemble.
8072         All uses updated.
8073         (show_dwarf_always_disassemble): Renamed from
8074         show_dwarf2_always_disassemble.  All callers updated.
8075         (_initialize_dwarf2_read): Rename "set/show dwarf2" prefix to
8076         "set/show dwarf".  Rename "set/show dwarf2 max-cache-age" to
8077         "set/show dwarf max-cache-age".  Rename
8078         "set/show dwarf2 always-disassemble" to
8079         "set/show dwarf always-disassemble".  Rename
8080         "set/show debug dwarf2-read" to "set/show debug dwarf-read".  Rename
8081         "set/show debug dwarf2-die" to "set/show debug dwarf-die".
8082
8083 2015-05-26  Doug Evans  <dje@google.com>
8084
8085         PR python/18438
8086         * python/py-lazy-string.c (stpy_convert_to_value): Use
8087         gdbpy_gdb_memory_error not PyExc_MemoryError.
8088         (gdbpy_create_lazy_string_object): Ditto.
8089
8090 2015-05-26  Andrew Burgess  <andrew.burgess@embecosm.com>
8091
8092         * tui/tui-regs.c (tui_reg_next_command): Compare against NULL.
8093
8094 2015-05-26  Andrew Burgess  <andrew.burgess@embecosm.com>
8095
8096         * tui/tui-regs.c (tui_reg_prev_command): New function.
8097         (_initialize_tui_regs): Add 'prev' command for 'tui reg'.
8098         * reggroups.c (reggroup_prev): New function.
8099         * reggroups.h (reggroup_prev): Add declaration.  Update comment.
8100
8101 2015-05-26  Omair Javaid  <omair.javaid@linaro.org>
8102             Yao Qi  <yao.qi@linaro.org>
8103
8104         * aarch64-linux-tdep.c: Include linux-record.h and
8105         record-full.h.
8106         (struct linux_record_tdep aarch64_linux_record_tdep): Declare.
8107         (aarch64_syscall): New enum.
8108         (aarch64_canonicalize_syscall): New function.
8109         (aarch64_all_but_pc_registers_record): New function.
8110         (aarch64_linux_syscall_record): New function.
8111         (aarch64_linux_init_abi): Install AArch64 process record
8112         handler.  Update to handle syscall recording.
8113         * aarch64-tdep.c: Include record.h and record-full.h.
8114         (submask, bit, bits, REG_ALLOC, MEM_ALLOC): New macros.
8115         (struct aarch64_mem_r): Define.
8116         (aarch64_record_result): New enum.
8117         (struct insn_decode_record): Define.
8118         (insn_decode_record): New typedef.
8119         (aarch64_record_data_proc_reg): New function.
8120         (aarch64_record_data_proc_imm): New function.
8121         (aarch64_record_branch_except_sys): New function.
8122         (aarch64_record_load_store): New function.
8123         (aarch64_record_data_proc_simd_fp): New function.
8124         (aarch64_record_asimd_load_store): New function.
8125         (aarch64_record_decode_insn_handler): New function.
8126         (deallocate_reg_mem): New function.
8127         (aarch64_process_record): New function.
8128         * aarch64-tdep.h (struct gdbarch_tdep) <aarch64_syscall_record>:
8129         New field.
8130         (aarch64_process_record): New extern declaration.
8131         * configure.tgt: Add linux-record.o to gdb_target_obs.
8132         * linux-record.h (struct linux_record_tdep) <arg7>: New field.
8133
8134 2015-05-26  Omair Javaid  <omair.javaid@linaro.org>
8135
8136         * NEWS: Add a note on process record-replay support on aarch64*-linux*
8137         targets.
8138
8139 2015-05-26  Martin Galvan  <martin.galvan@tallertechnologies.com>
8140
8141         * amd64-tdep.c: Replace in_function_epilogue_p with
8142         stack_frame_destroyed_p throughout.
8143         * arch-utils.c: Ditto.
8144         * arch-utils.h: Ditto.
8145         * arm-tdep.c: Ditto.
8146         * breakpoint.c: Ditto.
8147         * gdbarch.sh: Ditto.
8148         * hppa-tdep.c: Ditto.
8149         * i386-tdep.c: Ditto.
8150         * mips-tdep.c: Ditto.
8151         * nios2-tdep.c: Ditto.
8152         * rs6000-tdep.c: Ditto.
8153         * s390-linux-tdep.c: Ditto.
8154         * score-tdep.c: Ditto.
8155         * sh-tdep.c: Ditto.
8156         * sparc-tdep.c: Ditto.
8157         * sparc-tdep.h: Ditto.
8158         * sparc64-tdep.c: Ditto.
8159         * spu-tdep.c: Ditto.
8160         * tic6x-tdep.c: Ditto.
8161         * tilegx-tdep.c: Ditto.
8162         * xstormy16-tdep.c: Ditto.
8163         * gdbarch.c, gdbarch.h: Re-generated.
8164
8165 2015-05-22  Andrew Burgess  <andrew.burgess@embecosm.com>
8166
8167         * NEWS: Mention 'tui enable' and 'tui disable'.
8168         * tui/tui.c (tui_enable_command): New function.
8169         (tui_disable_command): New function.
8170         (_initialize_tui): New function.
8171
8172 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
8173
8174         * tui/tui-regs.c (tui_reg_next_command): Use NULL not 0.
8175
8176 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
8177
8178         * tui/tui-layout.c (tui_set_layout_for_display_command): Ensure
8179         buf_ptr is freed.
8180
8181 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
8182
8183         * tui/tui-layout.c (tui_layout_command): Move call to tui_enable
8184         into ...
8185         (tui_set_layout_for_display_command): ...here, before calling
8186         tui_set_layout.  Only set the layout if gdb has not already
8187         entered the TUI_FAILURE state.
8188
8189 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
8190
8191         * tui/tui-layout.c (layout_completer): New function.
8192         (_initialize_tui_layout): Set completer on layout command.
8193
8194 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
8195
8196         * tui/tui-layout.c (tui_set_layout): Remove
8197         tui_register_display_type parameter.  Remove all checking of this
8198         parameter, and reindent function.  Update header comment.
8199         (tui_set_layout_for_display_command): Rename to...
8200         (tui_set_layout_by_name): ...this, and don't check for different
8201         register class types, don't pass a tui_register_display_type to
8202         tui_set_layout.  Update header comment.
8203         (layout_names): Remove register set specific names.
8204         * tui/tui-layout.h (tui_set_layout): Remove
8205         tui_register_display_type parameter.
8206         * tui/tui.c (tui_rl_change_windows): Don't pass a
8207         tui_register_display_type to tui_set_layout.
8208         (tui_rl_delete_other_windows): Likewise.
8209         (tui_enable): Likewise.
8210         * tui/tui-data.h (TUI_FLOAT_REGS_NAME): Remove.
8211         (TUI_FLOAT_REGS_NAME_LOWER): Remove.
8212         (TUI_GENERAL_REGS_NAME): Remove.
8213         (TUI_GENERAL_REGS_NAME_LOWER): Remove.
8214         (TUI_SPECIAL_REGS_NAME): Remove.
8215         (TUI_SPECIAL_REGS_NAME_LOWER): Remove.
8216         (TUI_GENERAL_SPECIAL_REGS_NAME): Remove.
8217         (TUI_GENERAL_SPECIAL_REGS_NAME_LOWER): Remove.
8218         (enum tui_register_display_type): Remove.
8219         (struct tui_layout_def): Remove regs_display_type and
8220         float_regs_display_type fields.
8221         (struct tui_data_info): Remove regs_display_type field.
8222         (tui_layout_command): Use new name for
8223         tui_set_layout_for_display_command.
8224         * tui/tui-data.c (layout_def): Don't initialise removed fields.
8225         (tui_clear_win_detail): Don't initialise removed fields of
8226         win_info.
8227         * tui/tui-regs.c (tui_show_registers): Use new name for
8228         tui_set_layout_for_display_command.
8229         * tui/tui.h (tui_set_layout_for_display_command): Rename
8230         declaration to...
8231         (tui_set_layout_by_name): ...this.
8232         * printcmd.c (display_command): Remove tui related layout call,
8233         and reindent.
8234
8235 2015-05-20  Joel Brobecker  <brobecker@adacore.com>
8236
8237         * infrun.c (handle_inferior_event_1): Renames handle_inferior_event.
8238         (handle_inferior_event): New function.
8239
8240 2015-05-20  Joel Brobecker  <brobecker@adacore.com>
8241
8242         * ada-lang.c (to_fixed_array_type): Rename local variable
8243         typename into type_name.
8244
8245 2015-05-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
8246
8247         Fix ASAN crash for gdb.compile/compile.exp.
8248         * infcall.c (call_function_by_hand_dummy): Use xstrdup for NAME.
8249
8250 2015-05-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
8251
8252         * compile/compile-c-symbols.c (convert_symbol_sym, gcc_convert_symbol)
8253         (gcc_symbol_address): Change gdb_stdout to gdb_stdlog.
8254         * compile/compile-object-load.c (setup_sections, compile_object_load):
8255         Likewise.
8256         * compile/compile.c (compile_to_object): Likewise.
8257
8258 2015-05-16  Doug Evans  <xdje42@gmail.com>
8259
8260         * NEWS: Mention support for unbuffered Guile memory ports.
8261         * scm-ports.c (ioscm_memory_port): Update comments on end, size.
8262         (ioscm_lseek_address): Improve overflow calculation.
8263         (gdbscm_memory_port_fill_input): Add assert.
8264         (gdbscm_memory_port_write): Handle unbuffered ports.
8265         Handle large writes identical to Guile's fport_write.
8266         (gdbscm_memory_port_seek): Fix seeking past end check.
8267         (gdbscm_memory_port_close): Handle closing unbuffered port.
8268         (ioscm_parse_mode_bits): Recognize "0" for unbuffered ports.
8269         (ioscm_init_memory_port): Handle unbuffered ports.
8270         (ioscm_reinit_memory_port): Ditto.
8271         (ioscm_init_memory_port): Update size calculation.
8272         (gdbscm_open_memory): Support zero sized ports.
8273
8274 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
8275
8276         * compile/compile-object-load.c (get_out_value_type): Fix uninitialized
8277         variable compiler warnings.
8278
8279 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
8280
8281         * compile/compile-object-load.c (get_out_value_type): Fix returned type.
8282
8283 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
8284             Phil Muldoon  <pmuldoon@redhat.com>
8285
8286         * NEWS (Changes since GDB 7.9): Add compile print.
8287         * compile/compile-c-support.c (add_code_header, add_code_footer)
8288         (c_compute_program): Add COMPILE_I_PRINT_ADDRESS_SCOPE and
8289         COMPILE_I_PRINT_VALUE_SCOPE.
8290         * compile/compile-internal.h (COMPILE_I_PRINT_OUT_ARG_TYPE)
8291         (COMPILE_I_PRINT_OUT_ARG, COMPILE_I_EXPR_VAL, COMPILE_I_EXPR_PTR_TYPE):
8292         New.
8293         * compile/compile-object-load.c: Include block.h.
8294         (get_out_value_type): New function.
8295         (compile_object_load): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and
8296         COMPILE_I_PRINT_VALUE_SCOPE.  Set compile_module's OUT_VALUE_ADDR and
8297         OUT_VALUE_TYPE.
8298         * compile/compile-object-load.h (struct compile_module): Add fields
8299         out_value_addr and out_value_type.
8300         * compile/compile-object-run.c: Include valprint.h and compile.h.
8301         (struct do_module_cleanup): Add fields out_value_addr and
8302         out_value_type.
8303         (do_module_cleanup): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and
8304         COMPILE_I_PRINT_VALUE_SCOPE.
8305         (compile_object_run): Propagate out_value_addr and out_value_type.
8306         Pass OUT_VALUE_ADDR.
8307         * compile/compile.c: Include valprint.h.
8308         (compile_print_value, compile_print_command): New functions.
8309         (eval_compile_command): Handle failed COMPILE_I_PRINT_ADDRESS_SCOPE.
8310         (_initialize_compile): Update compile code help text.  Install
8311         compile_print_command.
8312         * compile/compile.h (compile_print_value): New prototype.
8313         * defs.h (enum compile_i_scope_types): Add
8314         COMPILE_I_PRINT_ADDRESS_SCOPE and COMPILE_I_PRINT_VALUE_SCOPE.
8315
8316 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
8317
8318         * compile/compile-object-load.c (get_regs_type): Add parameter func_sym.
8319         Rely on its parameter count.
8320         (compile_object_load): Replace lookup_minimal_symbol_text by
8321         lookup_global_symbol_from_objfile.  Verify FUNC_SYM.  Set it in the
8322         return value.
8323         * compile/compile-object-load.h (struct compile_module): Replace
8324         func_addr by func_sym.
8325         * compile/compile-object-run.c: Include block.h.
8326         (compile_object_run): Reset module variable after it is freed.  Use
8327         FUNC_SYM instead of FUNC_ADDR.  Rely on it.
8328
8329 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
8330
8331         * compile/compile-c-support.c (print_one_macro): Use #ifndef.
8332         (generate_register_struct): Use __gdb_uintptr for TYPE_CODE_PTR.
8333         (c_compute_program): Call generate_register_struct after typedefs.
8334         * compile/compile-loc2c.c (push, pushf_register_address)
8335         (pushf_register): Cast to GCC_UINTPTR.
8336         (do_compile_dwarf_expr_to_c): Use unused attribute.  Add space after
8337         type.  Use GCC_UINTPTR instead of void *.  Remove excessive cast.
8338         (compile_dwarf_expr_to_c): Use GCC_UINTPTR instead of void *.
8339         * compile/compile.c (_initialize_compile): Enable warnings for
8340         COMPILE_ARGS.
8341
8342 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
8343
8344         * cli/cli-script.c (execute_control_command): Update
8345         eval_compile_command caller.
8346         * compile/compile-object-load.c (compile_object_load): Add parameters
8347         scope and scope_data.  Set them.
8348         * compile/compile-object-load.h (struct compile_module): Add fields
8349         scope and scope_data.
8350         (compile_object_load): Add parameters scope and scope_data.
8351         * compile/compile-object-run.c (struct do_module_cleanup): Add fields
8352         scope and scope_data.
8353         (compile_object_run): Propagate the fields scope and scope_data.
8354         * compile/compile.c (compile_file_command, compile_code_command):
8355         Update eval_compile_command callers.
8356         (eval_compile_command): Add parameter scope_data.  Pass it plus scope.
8357         * compile/compile.h (eval_compile_command): Add parameter scope_data.
8358         * defs.h (struct command_line): Add field scope_data.
8359
8360 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
8361
8362         * printcmd.c (struct format_data): Move it to valprint.h.
8363         (print_command_parse_format, print_value): New functions from ...
8364         (print_command_1): ... here.  Call them.
8365         * valprint.h (struct format_data): Move it here from printcmd.c.
8366         (print_command_parse_format, print_value): New declarations.
8367
8368 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
8369
8370         * compile/compile-object-load.c (compile_object_load): Add
8371         COMPILE_DEBUG message.
8372
8373 2015-05-15  Jerome Guitton  <guitton@adacore.com>
8374
8375         * ada-lang.c (ada_value_ptr_subscript): Use enum position of
8376         index to get element instead of enum value.
8377         (ada_value_slice_from_ptr, ada_value_slice): Use enum position
8378         of index to compute length, but enum values to compute bounds.
8379         (ada_array_length): Use enum position of index instead of enum value.
8380         (pos_atr): Move position computation to...
8381         (ada_evaluate_subexp): Use enum values to compute bounds.
8382         * gdbtypes.c (discrete_position): ...this new function.
8383         * gdbtypes.h (discrete_position): New function declaration.
8384         * valprint.c (val_print_array_elements): Call discrete_position
8385         to handle array indexed by non-contiguous enumeration types.
8386
8387 2015-05-15  Jerome Guitton  <guitton@adacore.com>
8388
8389         * ada-lang.c (find_parallel_type_by_descriptive_type):
8390         Go through typedefs during lookup.
8391         (to_fixed_array_type): Add support for non-bit packed arrays
8392         as variable-length fields.
8393
8394 2015-05-15  Pedro Alves  <palves@redhat.com>
8395             Simon Marchi  <simon.marchi@ericsson.com>
8396
8397         * event-loop.c (gdb_notifier) <next_file_handler,
8398         next_poll_fds_index>: New fields.
8399         (get_next_file_handler_to_handle_and_advance): New function.
8400         (delete_file_handler): If deleting the next file handler to
8401         handle, advance to the next file handler.
8402         (gdb_wait_for_event): Bail early if no event fired.  Poll file
8403         handlers in round-robin fashion.
8404
8405 2015-05-15  Pedro Alves  <palves@redhat.com>
8406
8407         * linux-tdep.c (linux_find_memory_regions_full): Rename local
8408         'private' to 'priv'.
8409
8410 2015-05-15  Pedro Alves  <palves@redhat.com>
8411
8412         * nat/linux-nat.h: Include "target/waitstatus.h".
8413
8414 2015-05-15  Yuanhui Zhang  <asmwarrior@gmail.com>
8415
8416         * python/py-unwind.c (struct reg_info): Move out of ...
8417         (struct cached_frame_info): ... this scope.
8418         (pending_frame_object_type, unwind_info_object_type): Make extern.
8419
8420 2015-05-15  Joel Brobecker  <brobecker@adacore.com>
8421
8422         * ada-lang.c (ada_value_primitive_packed_val): Make sure
8423         accumSize is never negative.
8424
8425 2015-05-14  Patrick Palka  <patrick@parcs.ath.cx>
8426
8427         * tui/tui-command.c: Remove include of <ctype.h>.
8428         (tui_dispatch_ctrl_char): Remove workaround for xterm terminals.
8429
8430 2015-05-13  Martin Galvan  <martin.galvan@tallertechnologies.com>
8431
8432         * dwarf2read.c (die_needs_namespace): Return 1 for
8433         DW_TAG_inlined_subroutine.
8434
8435 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
8436
8437         * regcache.c (regcache_cpy_no_passthrough): New declaration.
8438         (regcache_cpy_no_passthrough): Make it static, add function comment.
8439         * regcache.h (regcache_dup, regcache_cpy): Reduce/update their comment.
8440         (regcache_cpy_no_passthrough): Remove declaration.
8441
8442 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
8443
8444         * gdbthread.h (struct thread_control_state): Update comment for
8445         proceed_to_finish.
8446         * infcall.c (run_inferior_call): Update comment about
8447         proceed_to_finish.
8448         * infcmd.c (get_return_value): Update comment about stop_registers.
8449         (finish_forward): Update comment about proceed_to_finish.
8450         * infrun.c (stop_registers): Remove.
8451         (clear_proceed_status, normal_stop): Remove stop_registers handling.
8452         * infrun.h (stop_registers): Remove.
8453
8454 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
8455
8456         * infcall.c (struct dummy_frame_context_saver)
8457         (dummy_frame_context_saver_data_free, dummy_frame_context_saver_dtor)
8458         (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup)
8459         (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup):
8460         New.
8461         (call_function_by_hand_dummy): Move discard_cleanups of
8462         inf_status_cleanup before dummy_frame_push.  Call
8463         dummy_frame_context_saver_setup and prepare context_saver_cleanup.
8464         Use dummy_frame_context_saver_get_regs instead of stop_registers.
8465         * infcall.h (struct dummy_frame_context_saver)
8466         (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup)
8467         (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup):
8468         New declarations.
8469         * infcmd.c: Include infcall.h.
8470         (get_return_value): Add parameter ctx_saver, use it instead of
8471         stop_registers.
8472         (print_return_value): Add parameter ctx_saver, pass it.
8473         (struct finish_command_continuation_args): Add field ctx_saver.
8474         (finish_command_continuation): Update print_return_value caller.
8475         (finish_command_continuation_free_arg): Free also ctx_saver.
8476         (finish_forward): Call dummy_frame_context_saver_setup.
8477         * inferior.h (struct dummy_frame_context_saver): New declaration.
8478         (get_return_value): Add parameter ctx_saver.
8479         * python/py-finishbreakpoint.c (bpfinishpy_pre_stop_hook): Update
8480         get_return_value caller.
8481
8482 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
8483
8484         * dummy-frame.c (struct dummy_frame_dtor_list): New.
8485         (struct dummy_frame): Replace dtor and dtor_data by dtor_list.
8486         (remove_dummy_frame): Process dtor_list.
8487         (pop_dummy_frame): Process dtor_list.
8488         (register_dummy_frame_dtor): Maintain dtor_list.
8489         (find_dummy_frame_dtor): Handle dtor_list.
8490         * dummy-frame.h (register_dummy_frame_dtor, find_dummy_frame_dtor):
8491         Update comments.
8492
8493 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
8494
8495         * compile/compile-object-run.c (do_module_cleanup): Add parameter
8496         registers_valid.
8497         (compile_object_run): Update do_module_cleanup caller.
8498         * dummy-frame.c: Include infcall.h.
8499         (struct dummy_frame): Update dtor comment.
8500         (remove_dummy_frame): Call dtor.
8501         (pop_dummy_frame): Update dtor caller.
8502         * dummy-frame.h (dummy_frame_dtor_ftype): Add parameter
8503         registers_valid.
8504
8505 2015-05-13  Joel Brobecker  <brobecker@adacore.com>
8506
8507         GDB 7.9.1 released.
8508
8509 2015-05-13  Joel Brobecker  <brobecker@adacore.com>
8510
8511         * NEWS: Create "Changes in GDB 7.9.1" section.  Move news about
8512         Xmethods now being able to specify a result type to that new
8513         sectioin.
8514
8515 2015-05-13  Patrick Palka  <patrick@parcs.ath.cx>
8516
8517         * tui/tui-win.c (tui_async_resize_screen): Clear win_resized
8518         first before resizing the window.
8519         * tui/tui.c (tui_enable): Likewise.
8520
8521 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
8522
8523         * dummy-frame.c (struct dummy_frame): Use proper typedef for dtor.
8524         * dummy-frame.h (dummy_frame_dtor_ftype): Add its comment.
8525         * infcall.c (call_function_by_hand_dummy): Use proper typedef for
8526         dummy_dtor parameter.
8527         * infcall.h: Include dummy-frame.h.
8528         (call_function_by_hand_dummy_dtor_ftype): Remove.
8529         (call_function_by_hand_dummy): Use proper typedef for dummy_dtor
8530         parameter.
8531
8532 2015-05-13  Patrick Palka  <patrick@parcs.ath.cx>
8533
8534         PR gdb/17820
8535         * top.c (history_size_setshow_var): Change type to signed.
8536         Initialize to -2.  Update documentation.
8537         (set_readline_history_size): Define.
8538         (set_history_size_command): Use it.  Remove logic for handling
8539         out-of-range sizes.
8540         (init_history): Use set_readline_history_size().  Test for a
8541         value of -2 instead of 0 when determining whether to set a
8542         default history size.
8543         (init_main): Decode the argument of the "size" command as a
8544         zuinteger_unlimited.
8545
8546 2015-05-12  Doug Evans  <dje@google.com>
8547
8548         * dwarf2read.c (struct file_entry): Tweak comments.
8549         (get_debug_line_section): Tweak comments.
8550
8551 2015-05-12  Don Breazeal  <donb@codesourcery.com>
8552
8553         * NEWS: Announce fork support in the RSP and support
8554         for fork debugging in extended mode.
8555
8556 2015-05-12  Don Breazeal  <donb@codesourcery.com>
8557
8558         * remote.c (remote_insert_fork_catchpoint): New function.
8559         (remote_remove_fork_catchpoint): New function.
8560         (remote_insert_vfork_catchpoint): New function.
8561         (remote_remove_vfork_catchpoint): New function.
8562         (pending_fork_parent_callback): New function.
8563         (remove_new_fork_child): New function.
8564         (remote_update_thread_list): Call remote_notif_get_pending_events
8565         and remove_new_fork_child.
8566         (extended_remote_kill): Kill fork child when killing the
8567         parent before follow_fork completes.
8568         (init_extended_remote_ops): Initialize target vector with
8569         new fork catchpoint functions.
8570
8571 2015-05-12  Don Breazeal  <donb@codesourcery.com>
8572
8573         * remote.c (remove_vfork_event_p): New function.
8574         (remote_follow_fork): Add vfork event type to event checking.
8575         (remote_parse_stop_reply): New stop reasons "vfork" and
8576         "vforkdone" for RSP 'T' Stop Reply Packet.
8577
8578 2015-05-12  Don Breazeal  <donb@codesourcery.com>
8579
8580         * linux-nat.c (linux_nat_ptrace_options): New function.
8581         (linux_init_ptrace, wait_lwp, linux_nat_filter_event):
8582         Call linux_nat_ptrace_options and use different argument to
8583         linux_enable_event_reporting.
8584         (_initialize_linux_nat): Delete call to
8585         linux_ptrace_set_additional_flags.
8586         * nat/linux-ptrace.c (current_ptrace_options): Rename to
8587         supported_ptrace_options.
8588         (additional_flags): Delete variable.
8589         (linux_check_ptrace_features): Use supported_ptrace_options.
8590         (linux_test_for_tracesysgood, linux_test_for_tracefork):
8591         Likewise, and remove additional_flags check.
8592         (linux_enable_event_reporting): Change 'attached' argument to
8593         'options'.  Use supported_ptrace_options.
8594         (ptrace_supports_feature): Change comment.  Use
8595         supported_ptrace_options.
8596         (linux_ptrace_set_additional_flags): Delete function.
8597         * nat/linux-ptrace.h (linux_ptrace_set_additional_flags):
8598         Delete function prototype.
8599         * remote.c (remote_fork_event_p): New function.
8600         (remote_detach_pid): New function.
8601         (remote_detach_1): Call remote_detach_pid, don't mourn inferior
8602         if doing detach-on-fork.
8603         (remote_follow_fork): New function.
8604         (remote_parse_stop_reply): Handle new "T" stop reason "fork".
8605         (remote_pid_to_str): Print "process" strings for pid/0/0 ptids.
8606         (init_extended_remote_ops): Initialize to_follow_fork.
8607
8608 2015-05-12  Don Breazeal  <donb@codesourcery.com>
8609
8610         * nat/linux-ptrace.c (linux_check_ptrace_features): Change
8611         from static to extern.
8612         * nat/linux-ptrace.h (linux_check_ptrace_features): Declare.
8613         * remote.c (anonymous enum): <PACKET_fork_event_feature,
8614         * PACKET_vfork_event_feature>: New enumeration constants.
8615         (remote_protocol_features): Add table entries for new packets.
8616         (remote_query_supported): Add new feature queries to qSupported
8617         packet.
8618
8619 2015-05-12  Gary Benson <gbenson@redhat.com>
8620
8621         * remote.c (remote_add_inferior): Call exec_file_locate_attach
8622         for fake PIDs as well as real ones.
8623         (remote_pid_to_exec_file): Send empty annex if PID is fake.
8624
8625 2015-05-09  Siva Chandra Reddy  <sivachandra@google.com>
8626
8627         * NEWS (Python Scripting): Mention the new gdb.Value methods.
8628         * python/py-value.c (valpy_reference_value): New function.
8629         (valpy_const_value): Likewise.
8630         (value_object_methods): Add new methods.
8631         * value.c (make_cv_value): New function.
8632         * value.h (make_cv_value): Declare.
8633
8634 2015-05-08  Yao Qi  <yao@codesourcery.com>
8635             Sandra Loosemore  <sandra@codesourcery.com>
8636
8637         * dwarf2read.c (setup_type_unit_groups): Do NULL pointer check
8638         to 'lh->include_dirs' before accessing to it.
8639         (psymtab_include_file_name): Likewise.
8640         (dwarf_decode_lines_1): Likewise.
8641         (dwarf_decode_lines): Likewise.
8642         (file_file_name): Likewise.
8643
8644 2015-05-08  Sandra Loosemore  <sandra@codesourcery.com>
8645
8646         * nios2-linux-tdep.c (NIOS2_SIGRETURN_TRAMP_ADDR): Define.
8647         (NIOS2_SIGRETURN_REGSAVE_OFFSET): Define.
8648         (nios2_linux_rt_sigreturn_init): Adjust base address of
8649         register save area.
8650
8651 2015-05-08  Sandra Loosemore  <sandra@codesourcery.com>
8652
8653         * nios2-tdep.c (nios2_breakpoint_from_pc): Revert to using
8654         "trap 31" as the breakpoint instruction on all targets.
8655
8656 2015-05-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
8657
8658         * infcmd.c (print_return_value): Remove unused declaration.
8659
8660 2015-05-08  Joel Brobecker  <brobecker@adacore.com>
8661
8662         * dwarf2read.c (attr_to_dynamic_prop)
8663         <DW_AT_data_member_location>: Use read_type_die isntead of
8664         get_die_type.
8665
8666 2015-05-08  Joel Brobecker  <brobecker@adacore.com>
8667
8668         * ada-lang.c (ada_convert_actual): Add handling of formals
8669         passed inside an aligner type.
8670
8671 2015-05-08  Joel Brobecker  <brobecker@adacore.com>
8672
8673         * copyright.py (NOT_FSF_LIST): Remove sim/erc32 entries.
8674
8675 2015-05-08  Siva Chandra Reddy  <sivachandra@google.com>
8676
8677         PR python/18291
8678         * python/lib/gdb/command/xmethods.py (print_xm_info): Fix typo.
8679         Print xmethod matcher status.
8680
8681 2015-05-08  Andreas Arnez  <arnez@linux.vnet.ibm.com>
8682
8683         * s390-linux-nat.c (fill_gregset): Avoid relying on the PSWA
8684         register in the regcache when treating the PSWM register, and vice
8685         versa.
8686
8687 2015-05-07  Gary Benson <gbenson@redhat.com>
8688
8689         * linux-thread-db.c (struct thread_db_info)
8690         <td_ta_map_id2thr_p>: Remove field.
8691         (try_thread_db_load_1): Remove initialization for the above.
8692
8693 2015-05-07  Gary Benson <gbenson@redhat.com>
8694
8695         * linux-thread-db.c (struct thread_db_info)
8696         <td_thr_validate_p>: Remove field.
8697         (try_thread_db_load_1): Remove initialization for the above.
8698
8699 2015-05-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
8700
8701         * compile/compile-object-load.c (compile_object_load): Support
8702         mst_text_gnu_ifunc.
8703
8704 2015-05-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
8705
8706         * compile/compile.c (compile_to_object): Make the cmd_string parameter
8707         const.  Use new variables for the const compatibility.
8708         (eval_compile_command): Make the cmd_string parameter const.
8709         * compile/compile.h (eval_compile_command): Make the cmd_string
8710         parameter const.
8711
8712 2015-05-06  Joel Brobecker  <brobecker@adacore.com>
8713
8714         * defs.h (deprecated_init_ui_hook): Delete.  Remove associated
8715         comment.
8716         * top.c (deprecated_init_ui_hook): Delete.
8717         (gdb_init): Remove handling of deprecated_init_ui_hook.
8718         * interps.c (clear_interpreter_hooks): Remove handling of
8719         deprecated_init_ui_hook.
8720         * main.c (captured_main): Update comment.
8721
8722 2015-05-06  Joel Brobecker  <brobecker@adacore.com>
8723
8724         * solib.c (_initialize_solib): Add "info dll" alias creation.
8725         * windows-nat.c (set_windows_aliases): Delete.
8726         (_initialize_windows_nat): Remove deprecated_init_ui_hook
8727         assignment.
8728         * NEWS: Add news entry about "info dll" now being available
8729         on all platforms.
8730
8731 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
8732
8733         * ada-lang.c (value_assign_to_component): Reformat and improve
8734         documentation. Remove all trailing spaces.
8735
8736 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
8737
8738         * inline-frame.c (inline_frame_sniffer, skip_inline_frames):
8739         Stop counting inlined frames as soon as an out-of-line function
8740         is found.
8741
8742 2014-05-05  Pierre-Marie de Rodat  <derodat@adacore.com>
8743
8744         * dwarf2read.c (inherit_abstract_dies): Skip
8745         DW_TAG_GNU_call_site dies while inheriting children of an
8746         abstract DIE into a scope.
8747         (read_lexical_block_scope): Inherit abstract DIE's for
8748         lexical scopes.
8749
8750 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
8751
8752         * ada-valprint.c (val_print_packed_array_elements): Delete
8753         variable "len".  Add a type-length check when comparing two
8754         consecutive elements of the array.  Use the element's actual
8755         length in call to value_contents_eq.
8756         * ada-lang.c (ada_value_primitive_packed_val): Always return
8757         a value whose type has been resolved.
8758
8759 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
8760
8761         * ada-lang.c (ada_value_primitive_packed_val): Recompute
8762         BIT_SIZE and LEN if the size of the resolved type is smaller
8763         than BIT_SIZE * HOST_CHAR_BIT.
8764
8765 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
8766
8767         * ada-lang.c (ada_value_primitive_packed_val): Use a more
8768         correct address in call to value_at.  Adjust call to
8769         value_address accordingly.
8770
8771 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
8772
8773         * ada-valprint.c (ada_val_print_1): Resolve TYPE before trying
8774         to print it.
8775
8776 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
8777
8778         * dwarf2loc.h (struct property_addr_info): Add "valaddr" field.
8779         * dwarf2loc.c (dwarf2_evaluate_property): Add handling of
8780         pinfo->valaddr.
8781         * gdbtypes.h (resolve_dynamic_type): Add "valaddr" parameter.
8782         * gdbtypes.c (resolve_dynamic_struct): Set pinfo.valaddr.
8783         (resolve_dynamic_type_internal): Set pinfo.valaddr.
8784         Add handling of addr_stack->valaddr.
8785         (resolve_dynamic_type): Add "valaddr" parameter.
8786         Set pinfo.valaddr field.
8787         * ada-lang.c (ada_discrete_type_high_bound): Update call to
8788         resolve_dynamic_type.
8789         (ada_discrete_type_low_bound): Likewise.
8790         * findvar.c (default_read_var_value): Likewise.
8791         * value.c (value_from_contents_and_address): Likewise.
8792
8793 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
8794
8795         * gdbtypes.c (resolve_dynamic_array): Use
8796         create_array_type_with_stride instead of create_array_type.
8797
8798 2015-04-30  DJ Delorie  <dj@redhat.com>
8799
8800         * rl78-tdep.c (rl78_analyze_prologue): Pass RL78_ISA_DEFAULT to
8801         rl78_decode_opcode
8802
8803 2015-04-29  Doug Evans  <dje@google.com>
8804
8805         PR python/18285
8806         * NEWS: Document new gdb.XMethodWorker.get_result_type method.
8807         * eval.c (evaluate_subexp_standard) <OP_FUNCALL>: Handle
8808         EVAL_AVOID_SIDE_EFFECTS for xmethods.
8809         * extension-priv.h (struct extension_language_ops)
8810         <get_xmethod_result_type>: New member.
8811         * extension.c (get_xmethod_result_type): New function.
8812         * extension.h (get_xmethod_result_type): Declare.
8813         * python/py-xmethods.c (get_result_type_method_name): New static
8814         global.
8815         (py_get_result_type_method_name): Ditto.
8816         (gdbpy_get_xmethod_result_type): New function.
8817         (gdbpy_initialize_xmethods): Initialize py_get_result_type_method_name.
8818         * python/python-internal.h (gdbpy_get_xmethod_result_type): Declare.
8819         * python/python.c (python_extension_ops): Add
8820         gdbpy_get_xmethod_result_type.
8821         * python/lib/gdb/xmethod.py (XMethodWorker): Add get_result_type.
8822         * valarith.c (value_x_binop): Handle EVAL_AVOID_SIDE_EFFECTS for
8823         xmethods.
8824         (value_x_unop): Ditto.
8825         * value.c (result_type_of_xmethod): New function.
8826         * value.h (result_type_of_xmethod): Declare.
8827
8828 2015-04-29  Gary Benson <gbenson@redhat.com>
8829
8830         * solib.c (solib_find_1): Allow fd argument to be NULL.
8831         (exec_file_find): Update comment.
8832         (solib_find): Likewise.
8833         * exec.c (exec_file_locate_attach): Use NULL as fd
8834         argument to exec_file_find to avoid having to close
8835         the opened file.
8836         * infrun.c (follow_exec): Likewise.
8837
8838 2015-04-28  Doug Evans  <dje@google.com>
8839
8840         PR python/18299
8841         * python/lib/gdb/printing.py (register_pretty_printer): Handle
8842         name or __name__ attributes.  Handle gdb module as first argument.
8843
8844 2015-04-28  Doug Evans  <dje@google.com>
8845
8846         PR python/18089
8847         * python/py-prettyprint.c (print_children): Verify result of children
8848         iterator.  Provide better error message.
8849         * python/python-internal..h (gdbpy_print_python_errors_p): Declare.
8850         * python/python.c (gdbpy_print_python_errors_p): New function.
8851
8852 2015-04-28  Doug Evans  <dje@google.com>
8853
8854         * gdbtypes.h (struct cplus_struct_type) <n_baseclasses>: Fix comment.
8855
8856 2015-04-28  Sasha Smundak  <asmundak@google.com>
8857
8858         * NEWS: Mention gdb.Type.optimized_out method.
8859         * python/py-type.c (typy_optimized_out):  New function.
8860
8861 2015-04-28  John Baldwin  <jhb@FreeBSD.org>
8862
8863         * fbsd-nat.c: Include "gdb_wait.h" instead of <sys/wait.h>.
8864
8865 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
8866
8867         * utils.c (init_page_info): Set rl_catch_sigwinch to zero.
8868         (initialize_utils): Move call of init_page_info() to ...
8869         * top.c (gdb_init): ... here.
8870
8871 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
8872
8873         * tui/tui-win.c (tui_sigwinch_handler): Remove now-stale comment.
8874         (tui_sigwinch_handler): Still update our idea of
8875         the terminal's width and height even when TUI is not active.
8876
8877 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
8878
8879         * utils.h (set_screen_width_and_height): Declare.
8880         * utils.c (set_screen_width_and_height): Define.
8881         * tui/tui-win.c (tui_update_gdb_sizes): Use it.
8882
8883 2015-04-28  Gary Benson <gbenson@redhat.com>
8884
8885         * infrun.c (solist.h): New include.
8886         (follow_exec): Use exec_file_find to prefix execd_pathname
8887         with gdb_sysroot.
8888
8889 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
8890
8891         * tui/tui-source.c (tui_set_source_content): Avoid calling
8892         strcpy() when offset is 0.
8893
8894 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
8895
8896         PR gdb/18155
8897         * tui/tui-data.c (tui_free_window): Don't free the locator
8898         window when passed an SRC_WIN or a DISASSEM_WIN.
8899
8900 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
8901
8902         * tui/tui-data.h (struct tui_win_element): Forward-declare.
8903         (tui_win_content): Move declaration.
8904         (struct tui_gen_win_info): Give 'content' field the
8905         type tui_win_content.
8906         * tui/tui-data.c (init_content_element): Remove redundant and
8907         erroneous casts.
8908         (tui_add_content_elements): Remove erroneous cast.
8909         * tui/tui-disasm.c (tui_set_disassem_content): Remove redundant
8910         casts.
8911         (tui_get_begin_asm_address): Likewise.
8912         * tui/tui-regs.c (tui_show_registers): Likewise.
8913         (tui_show_register_group): Likewise.
8914         (tui_display_registers_from): Likewise.
8915         (tui_check_register_values): Likewise.
8916         * tui/tui-source.c (tui_set_source_content): Likewise.
8917         (tui_set_source_content_nil): Likewise.
8918         (tui_source_is_displayed): Likewise.
8919         * tui/tui-stack.c (tui_show_locator_content): Likewise.
8920         (tui_set_locator_fullname): Likewise.
8921         (tui_set_locator_info): Likewise.
8922         (tui_show_frame_info): Likewise.
8923         * tui/tui-winsource.c (tui_clear_source_content): Likewise.
8924         (tui_show_source_line): Likewise.
8925         (tui_horizontal_source_scroll): Likewise.
8926         (tui_update_breakpoint_info): Likewise.
8927         (tui_set_exec_info_content): Likewise.
8928         (tui_show_exec_info_content): Likewise.
8929         (tui_alloc_source_buffer): Likewise.
8930         (tui_line_is_displayed): Likewise.
8931         (tui_addr_is_displayed): Likewise.
8932
8933 2015-04-27  John Baldwin  <jhb@FreeBSD.org>
8934
8935         * fbsd-nat.c: (fbsd_wait) [PL_FLAG_EXEC]: Report TARGET_WAITKIND_EXECD
8936         event if PL_FLAG_EXEC is set.
8937         [PL_FLAG_EXEC] (fbsd_insert_exec_catchpoint): New function.
8938         [PL_FLAG_EXEC] (fbsd_remove_exec_catchpoint): New function.
8939         (fbsd_nat_add_target) [PL_FLAG_EXEC]: Set
8940         "to_insert_exec_catchpoint" to "fbsd_insert_exec_catchpoint".
8941         Set "to_remove_exec_catchpoint" to "fbsd_remove_exec_catchpoint".
8942
8943 2015-04-27  John Baldwin  <jhb@FreeBSD.org>
8944
8945         * fbsd-nat.c: [PT_LWPINFO] New variable super_wait.
8946         [TDP_RFPPWAIT] New variable fbsd_pending_children.
8947         [TDP_RFPPWAIT] (fbsd_remember_child): New function.
8948         [TDP_RFPPWAIT] (fbsd_is_child_pending): New function.
8949         [TDP_RFPPWAIT] (fbsd_fetch_kinfo_proc): New function.
8950         [PT_LWPINFO] (fbsd_wait): New function.
8951         [TDP_RFPPWAIT] (fbsd_follow_fork): New function.
8952         [TDP_RFPPWAIT] (fbsd_insert_fork_catchpoint): New function.
8953         [TDP_RFPPWAIT] (fbsd_remove_fork_catchpoint): New function.
8954         [TDP_RFPPWAIT] (fbsd_insert_vfork_catchpoint): New function.
8955         [TDP_RFPPWAIT] (fbsd_remove_vfork_catchpoint): New function.
8956         [TDP_RFPPWAIT] (fbsd_enable_follow_fork): New function.
8957         [TDP_RFPPWAIT] (fbsd_post_startup_inferior): New function.
8958         [TDP_RFPPWAIT] (fbsd_post_attach): New function.
8959         (fbsd_nat_add_target) [PT_LWPINFO] Set "to_wait" to
8960         "fbsd_wait".
8961         [TDP_RFPPWAIT] Set "to_follow_fork" to "fbsd_follow_fork".
8962         Set "to_insert_fork_catchpoint" to "fbsd_insert_fork_catchpoint".
8963         Set "to_remove_fork_catchpoint" to "fbsd_remove_fork_catchpoint".
8964         Set "to_insert_vfork_catchpoint" to "fbsd_insert_vfork_catchpoint".
8965         Set "to_remove_vfork_catchpoint" to "fbsd_remove_vfork_catchpoint".
8966         Set "to_post_startup_inferior" to "fbsd_post_startup_inferior".
8967         Set "to_post_attach" to "fbsd_post_attach".
8968
8969 2015-04-27  John Baldwin  <jhb@FreeBSD.org>
8970
8971         * fbsd-nat.c (fbsd_pid_to_exec_file): Mark static.
8972         (fbsd_find_memory_regions): Mark static.
8973         (fbsd_nat_add_target): New function.
8974         * fbsd-nat.h: Export fbsd_nat_add_target and remove prototypes for
8975         fbsd_pid_to_exec_file and fbsd_find_memory_regions.
8976         * amd64fbsd-nat.c (_initialize_amd64fbsd_nat): Use fbsd_nat_add_target.
8977         * i386fbsd-nat.c (_initialize_i386fbsd_nat): Likewise.
8978         * ppcfbsd-nat.c (_initialize_ppcfbsd_nat): Likewise.
8979         * sparc64fbsd-nat.c (_initialize_sparc64fbsd_nat): Likewise.
8980
8981 2015-04-27  Gary Benson <gbenson@redhat.com>
8982
8983         * objfiles.c (allocate_objfile): Do not attempt to expand name
8984         if name is a "target:" filename.
8985         * auto-load.c (load_auto_scripts_for_objfile): Do not attempt
8986         to load auto-load scripts for objfiles with "target:" filenames.
8987
8988 2015-04-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
8989
8990         * s390-linux-tdep.c: Include "elf/s390.h" and "elf-bfd.h".
8991         (enum s390_vector_abi_kind): New enum.
8992         (struct gdbarch_tdep)<vector_abi>: New field.
8993         (s390_effective_inner_type): Add parameter min_size.  Stop
8994         unwrapping if the inner type is smaller than min_size.
8995         (s390_function_arg_float): Adjust call to
8996         s390_effective_inner_type.
8997         (s390_function_arg_vector): New function.
8998         (s390_function_arg_integer): Adjust comment.
8999         (struct s390_arg_state)<vr>: New field.
9000         (s390_handle_arg): Add parameter 'is_unnamed'.  Pass vector
9001         arguments according to vector ABI when appropriate.
9002         (s390_push_dummy_call): Initialize the argument state's field
9003         'vr'.  Adjust calls to s390_handle_arg.
9004         (s390_register_return_value): Handle vector return values.
9005         (s390_return_value): Apply the "register" return value convention
9006         to a vector when appropriate.
9007         (s390_gdbarch_init): Initialize tdep->vector_abi.
9008         * NEWS: Announce S390 vector ABI support.
9009
9010 2015-04-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
9011
9012         * s390-linux-tdep.c (s390_return_value_convention): Remove
9013         function.  Inline its logic...
9014         (s390_return_value): ...here.  Instead, move the handling of the
9015         "register" return value convention...
9016         (s390_register_return_value): ...here.  New function.
9017
9018 2015-04-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
9019
9020         * s390-linux-tdep.c
9021         (is_float_singleton): Remove function.  Move the "singleton" part
9022         of the logic...
9023         (s390_effective_inner_type): ...here.  New function.
9024         (is_float_like): Remove function.  Inline its logic...
9025         (s390_function_arg_float): ...here.
9026         (is_pointer_like, is_integer_like, is_struct_like): Remove
9027         functions.  Inline their logic...
9028         (s390_function_arg_integer): ...here.
9029         (s390_function_arg_pass_by_reference): Remove function.
9030         (extend_simple_arg): Remove function.
9031         (alignment_of): Remove function.
9032         (struct s390_arg_state): New structure.
9033         (s390_handle_arg): New function.
9034         (s390_push_dummy_call): Move parameter placement logic to the new
9035         function s390_handle_arg.  Call it for calculating the stack area
9036         sizes first, and again for actually writing the parameters.
9037
9038 2015-04-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
9039
9040         * s390-linux-tdep.c (is_power_of_two): Add comment.  Return
9041           false if the argument is zero.
9042
9043 2015-04-27  Pierre-Marie de Rodat  <derodat@adacore.com>
9044
9045         * ada-lang.c (template_to_static_fixed_type): Return input type
9046         when it is already fixed.  Cache the input type itself when not
9047         creating a static fixed copy.  Make it explicit that we never
9048         molestate the input type.
9049         * gdbtypes.c (resolve_dynamic_struct): Reset the
9050         TYPE_TARGET_TYPE field for resolved copies.
9051
9052 2015-04-27  Joel Brobecker  <brobecker@adacore.com>
9053
9054         * ada-lang.c (ada_is_tagged_type): Add call to ada_check_typedef.
9055         (ada_lookup_struct_elt_type): Remove calls to ada_check_typedef.
9056         (template_to_static_fixed_type): Call ada_check_typedef only
9057         when necessary.
9058
9059 2015-04-24  Andrew Burgess  <andrew.burgess@embecosm.com>
9060
9061         * cli/cli-dump.c (srec_dump_command): Add internationalization
9062         mark ups.
9063         (ihex_dump_command): Likewise.
9064         (tekhex_dump_command): Likewise.
9065         (binary_dump_command): Likewise.
9066         (binary_append_command): Likewise.
9067
9068 2015-04-24  Andrew Burgess  <andrew.burgess@embecosm.com>
9069
9070         * cli/cli-dump.c (verilog_cmdlist): New variable.
9071         (dump_verilog_memory): New function.
9072         (dump_verilog_value): New function.
9073         (verilog_dump_command): New function.
9074         (_initialize_cli_dump): Add new commands to support verilog dump
9075         format.
9076         * NEWS: Add entry for "dump verilog".
9077
9078 2015-04-24  Pierre-Marie de Rodat  <derodat@adacore.com>
9079
9080         * gdbtypes.c (print_gnat_stuff): Do not recurse on the
9081         descriptive type when there is none.
9082
9083 2015-04-23  Patrick Palka  <patrick@parcs.ath.cx>
9084
9085         * tui/tui-win.c (tui_async_resize_screen): Call
9086         rl_resize_terminal().
9087
9088 2015-04-22  Jon Turney  <jon.turney@dronecode.org.uk>
9089
9090         * windows-nat.c (handle_output_debug_string): Don't change
9091         current_event.dwThreadId.
9092         (get_windows_debug_event): Use thread_id, rather than relying on
9093         current_event.dwThreadId being changed.
9094
9095 2015-04-22  Jon Turney  <jon.turney@dronecode.org.uk>
9096
9097         * windows-nat.c (windows_continue): Report an error if
9098         ContinueDebugEvent() fails.
9099
9100 2015-04-16  Jon Turney  <jon.turney@dronecode.org.uk>
9101
9102         * windows-nat.c (windows_resume): Fix misspelling in debug output.
9103
9104 2015-04-16  Jon Turney  <jon.turney@dronecode.org.uk>
9105
9106         * windows-nat.c (get_windows_debug_event): Replace retval with
9107         thread_id throughout.  Update stale comment.
9108
9109 2015-04-16  Jon Turney  <jon.turney@dronecode.org.uk>
9110
9111         * windows-nat.c (get_windows_debug_event): Don't use ternary
9112         conditional operator.
9113
9114 2015-04-21  Pierre Muller  <muller@sourceware.org>
9115
9116         PR pascal/17815
9117         p-exp.y (yylex): Reorganize code to return the matched pattern
9118         for a field of this.
9119
9120 2015-04-21  Gary Benson <gbenson@redhat.com>
9121
9122         * common/fileio.h (fileio_to_host_openflags): New declaration.
9123         * common/fileio.c (fcntl.h): New include.
9124         (fileio_to_host_openflags): New function, factored out from...
9125         * inf-child.c (inf_child_fileio_open_flags_to_host): ...here.
9126         Single use updated.
9127
9128 2015-04-21  Kevin Buettner  <kevinb@redhat.com>
9129
9130         * rl78-tdep.c (RL78_SP_ADDR): Define.
9131         (opc_reg_to_gdb_regnum): New static function.
9132         (rl78_analyze_prologue): Recognize instructions forming slightly
9133         more interesting prologues.
9134
9135 2015-04-20  Pierre-Marie de Rodat  <derodat@adacore.com>
9136
9137         Revert:
9138         2015-04-03  Pierre-Marie de Rodat  <derodat@adacore.com>
9139         * gdbtypes.c (is_dynamic_type_internal): Remove special handling of
9140         TYPE_CODE_REF types so that they are not considered as dynamic
9141         depending on the referenced type.
9142         (resolve_dynamic_type_internal): Likewise.
9143
9144 2015-04-20  Pierre-Marie de Rodat  <derodat@adacore.com>
9145
9146         Revert:
9147         2015-04-03  Pierre-Marie de Rodat  <derodat@adacore.com>
9148         * gdbtypes.c (is_dynamic_type_internal): Remove the unused
9149         "top_level" parameter.
9150         (resolve_dynamic_type_internal): Remove the unused "top_level"
9151         parameter.  Update call to is_dynamic_type_internal.
9152         (is_dynamic_type): Update call to is_dynamic_type_internal.
9153         (resolve_dynamic_range): Update call to
9154         resolve_dynamic_type_internal.
9155         (resolve_dynamic_union): Likewise.
9156         (resolve_dynamic_struct): Likewise.
9157         (resolve_dynamic_type): Likewise.
9158
9159 2015-04-19  Gabriel Krisman Bertazi  <gabriel@krisman.be>
9160
9161         * breakpoint.c (update_dprintf_command_list): Remove duplicated
9162         xmalloc.
9163
9164 2015-04-20  Thomas Schwinge  <thomas@codesourcery.com>
9165
9166         * reply_mig_hack.awk: Robustify parsing.
9167
9168         * reply_mig_hack.awk: Don't bother to declare an intermediate
9169         function pointer variable.
9170
9171 2015-04-17  Doug Evans  <dje@google.com>
9172
9173         * solib-svr4.c (svr4_exec_displacement): Rename outer "displacement"
9174         to "exec_displacement" to avoid confusion with inner use of the name.
9175
9176 2015-04-17  Pedro Alves  <palves@redhat.com>
9177
9178         * arm-linux-nat.c (arm_linux_can_use_hw_breakpoint): Return zero
9179         if HW point of TYPE isn't supported.
9180
9181 2015-04-17  Yao Qi  <yao.qi@linaro.org>
9182             Pedro Alves  <palves@redhat.com>
9183
9184         * target.h (target_can_use_hardware_watchpoint): Update comments.
9185         Remove trailing ";".
9186
9187 2015-04-17  Gary Benson <gbenson@redhat.com>
9188
9189         * remote.c (remote_add_inferior): New argument try_open_exec.
9190         If nonzero, attempt to open the inferior's executable file as
9191         the main executable if no main executable is open already.
9192         All callers updated.
9193         * NEWS: Mention that GDB now supports automatic location and
9194         retrieval of executable + files from remote targets.
9195
9196 2015-04-17  Gary Benson <gbenson@redhat.com>
9197
9198         * target.h (TARGET_OBJECT_EXEC_FILE): New enum value.
9199         * remote.c (PACKET_qXfer_exec_file): Likewise.
9200         (remote_protocol_features): Register the
9201         "qXfer:exec-file:read" feature.
9202         (remote_xfer_partial): Handle TARGET_OBJECT_EXEC_FILE.
9203         (remote_pid_to_exec_file): New function.
9204         (init_remote_ops): Initialize to_pid_to_exec_file.
9205         (_initialize_remote): Register new "set/show remote
9206         pid-to-exec-file-packet" command.
9207         * NEWS: Announce new qXfer:exec-file:read packet.
9208
9209 2015-04-17  Gary Benson <gbenson@redhat.com>
9210
9211         * nat/linux-procfs.h (linux_proc_pid_to_exec_file):
9212         New declaration.
9213         * nat/linux-procfs.c (linux_proc_pid_to_exec_file):
9214         New function, factored out from...
9215         * linux-nat.c (linux_child_pid_to_exec_file): ...here.
9216
9217 2015-04-17  Gary Benson <gbenson@redhat.com>
9218
9219         * exec.c (solist.h): New include.
9220         (exec_file_locate_attach): Prefix absolute executable
9221         paths with gdb_sysroot if set.
9222         * NEWS: Mention that executable paths may be prepended
9223         with sysroot.
9224
9225 2015-04-17  Gary Benson <gbenson@redhat.com>
9226
9227         * solist.h (exec_file_find): New declaration.
9228         * solib.c (solib_find_1): New function, factored out from...
9229         (solib_find): ...here.
9230         (exec_file_find): New function.
9231
9232 2015-04-17  Gary Benson <gbenson@redhat.com>
9233
9234         * gdbcore.h (exec_file_locate_attach): New declaration.
9235         * exec.c (exec_file_locate_attach): New function, factored
9236         out from...
9237         * infcmd.c (attach_command_post_wait): ...here.
9238
9239 2015-04-17  Mike Frysinger  <vapier@gentoo.org>
9240
9241         * MAINTAINERS: Add myself for Blackfin/write-after-approval.
9242
9243 2015-04-16  Yao Qi  <yao.qi@linaro.org>
9244
9245         * infrun.c (maybe_software_singlestep): Declare.
9246         (displaced_step_fixup): Call maybe_software_singlestep.
9247
9248 2015-04-15  Doug Evans  <dje@google.com>
9249
9250         * psymtab.c (psym_expand_symtabs_matching): Add QUIT call.
9251
9252 2015-04-15  Doug Evans  <dje@google.com>
9253
9254         * dwarf2read.c (dw2_expand_symtabs_matching): Add some QUIT calls.
9255
9256 2015-04-15  Simon Marchi  <simon.marchi@ericsson.com>
9257
9258         * python/lib/gdb/command/unwinders.py: Add parentheses.
9259
9260 2015-04-15  Yao Qi  <yao.qi@linaro.org>
9261
9262         * arm-linux-tdep.c (arm_linux_copy_svc): Update debug message.
9263
9264 2015-04-15  Yao Qi  <yao.qi@linaro.org>
9265
9266         * arm-linux-tdep.c (arm_linux_copy_svc): Fix indentation.
9267
9268 2015-04-15  Yao Qi  <yao.qi@linaro.org>
9269
9270         * arm-linux-tdep.c (arm_linux_cleanup_svc): Use
9271         dsc->insn_size instead of 4.
9272
9273 2015-04-14  Gary Benson <gbenson@redhat.com>
9274
9275         * jit.c (mem_bfd_iovec_stat): Zero supplied buffer.
9276         * minidebug.c (lzma_stat): Likewise.
9277         * solib-spu.c (spu_bfd_iovec_stat): Likewise.
9278         * spu-linux-nat.c (spu_bfd_iovec_stat): Likewise.
9279
9280 2015-04-13  Stan Shebs  <stanshebs@google.com>
9281
9282         * MAINTAINERS: Update my email address.
9283
9284 2015-04-13  John Baldwin  <jhb@FreeBSD.org>
9285
9286         * amd64-tdep.c (amd64_target_description): New function.
9287         * amd64-tdep.h: Export amd64_target_description and tdesc_amd64.
9288         * amd64bsd-nat.c [PT_GETXSTATE_INFO]: New variable amd64bsd_xsave_len.
9289         (amd64bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle
9290         x86 extended save area.
9291         (amd64bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise.
9292         * amd64bsd-nat.h: Export amd64bsd_xsave_len.
9293         * amd64fbsd-nat.c (amd64fbsd_read_description): New function.
9294         (_initialize_amd64fbsd_nat): Set "to_read_description" to
9295         "amd64fbsd_read_description".
9296         * amd64fbsd-tdep.c (amd64fbsd_core_read_description): New function.
9297         (amd64fbsd_supply_xstateregset): New function.
9298         (amd64fbsd_collect_xstateregset): New function.
9299         Add "amd64fbsd_xstateregset".
9300         (amd64fbsd_iterate_over_regset_sections): New function.
9301         (amd64fbsd_init_abi): Set "xsave_xcr0_offset" to
9302         "I386_FBSD_XSAVE_XCR0_OFFSET".
9303         Add "iterate_over_regset_sections" gdbarch method.
9304         Add "core_read_description" gdbarch method.
9305         * i386-tdep.c (i386_target_description): New function.
9306         * i386-tdep.h: Export i386_target_description and tdesc_i386.
9307         * i386bsd-nat.c [PT_GETXSTATE_INFO]: New variable i386bsd_xsave_len.
9308         (i386bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle
9309         x86 extended save area.
9310         (i386bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise.
9311         * i386bsd-nat.h: Export i386bsd_xsave_len.
9312         * i386fbsd-nat.c (i386fbsd_read_description): New function.
9313         (_initialize_i386fbsd_nat): Set "to_read_description" to
9314         "i386fbsd_read_description".
9315         * i386fbsd-tdep.c (i386fbsd_core_read_xcr0): New function.
9316         (i386fbsd_core_read_description): New function.
9317         (i386fbsd_supply_xstateregset): New function.
9318         (i386fbsd_collect_xstateregset): New function.
9319         Add "i386fbsd_xstateregset".
9320         (i386fbsd_iterate_over_regset_sections): New function.
9321         (i386fbsd4_init_abi): Set "xsave_xcr0_offset" to
9322         "I386_FBSD_XSAVE_XCR0_OFFSET".
9323         Add "iterate_over_regset_sections" gdbarch method.
9324         Add "core_read_description" gdbarch method.
9325         * i386fbsd-tdep.h: New file.
9326
9327 2015-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
9328
9329         * NEWS (Changes since GDB 7.9): Add removed -xdb.
9330         * breakpoint.c (command_line_is_silent): Remove xdb_commands
9331         conditional.
9332         (_initialize_breakpoint): Remove xdb_commands for bc, ab, sb, db, ba
9333         and lb.
9334         * cli/cli-cmds.c (_initialize_cli_cmds): Remove xdb_commands for v and
9335         va.
9336         * cli/cli-decode.c (find_command_name_length): Remove xdb_commands
9337         conditional.
9338         * defs.h (xdb_commands): Remove declaration.
9339         * f-valprint.c (_initialize_f_valprint): Remove xdb_commands for lc.
9340         * guile/scm-cmd.c (command_classes): Remove xdb from comment.
9341         * infcmd.c (run_no_args_command, go_command): Remove.
9342         (_initialize_infcmd): Remove xdb_commands for S, go, g, R and lr.
9343         * infrun.c (xdb_handle_command): Remove.
9344         (_initialize_infrun): Remove xdb_commands for lz and z.
9345         * main.c (xdb_commands): Remove variable.
9346         (captured_main): Remove "xdb" from long_options.
9347         (print_gdb_help): Remove --xdb from help.
9348         * python/py-cmd.c (gdbpy_initialize_commands): Remove xdb from comment.
9349         * source.c (_initialize_source): Remove xdb_commands for D, ld, / and ?.
9350         * stack.c (backtrace_full_command, args_plus_locals_info)
9351         (current_frame_command): Remove.
9352         (_initialize_stack): Remove xdb_commands for t, T and l.
9353         * symtab.c (_initialize_symtab): Remove xdb_commands for lf and lg.
9354         * thread.c (_initialize_thread): Remove xdb_commands condition.
9355         * tui/tui-layout.c (tui_toggle_layout_command)
9356         (tui_toggle_split_layout_command, tui_handle_xdb_layout): Remove.
9357         (_initialize_tui_layout): Remove xdb_commands for td and ts.
9358         * tui/tui-regs.c (tui_scroll_regs_forward_command)
9359         (tui_scroll_regs_backward_command): Remove.
9360         (_initialize_tui_regs): Remove xdb_commands for fr, gr, sr, +r and -r.
9361         * tui/tui-win.c (tui_xdb_set_win_height_command): Remove.
9362         (_initialize_tui_win): Remove xdb_commands for U and w.
9363         * utils.c (pagination_on_command, pagination_off_command): Remove.
9364         (initialize_utils): Remove xdb_commands for am and sm.
9365
9366 2015-04-10  Pedro Alves  <palves@redhat.com>
9367
9368         * infrun.c (displaced_step_fixup): Switch to the event ptid
9369         earlier.  If the thread stopped for a watchpoint and the
9370         target/arch has non-continuable watchpoints, cancel the displaced
9371         step.
9372         (resume): Don't start a displaced step if in-line step-over info
9373         is valid.
9374
9375 2015-04-10  Pedro Alves  <palves@redhat.com>
9376
9377         * infrun.c (displaced_step_in_progress): New function.
9378         (do_target_resume): Advise target to report all signals if
9379         displaced stepping.
9380
9381 2015-04-10  Pedro Alves  <palves@redhat.com>
9382
9383         PR gdb/18216
9384         * infrun.c (process_event_stop_test): Don't assume a step-resume
9385         is set if tp->stepped_breakpoint is true.
9386
9387 2015-04-10  Yao Qi  <yao.qi@linaro.org>
9388
9389         * arm-tdep.c (install_alu_reg): Update comment.
9390         (thumb_copy_alu_reg): Remove local variable rn.  Update
9391         debugging message.  Use r2 instead of r1 in the modified
9392         instruction.
9393
9394 2015-04-10  Pedro Alves  <palves@redhat.com>
9395
9396         PR gdb/13858
9397         * amd64-linux-tdep.c (amd64_linux_init_abi_common): Install
9398         linux_displaced_step_location as gdbarch_displaced_step_location
9399         hook.
9400         * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
9401         * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
9402         * linux-tdep.c (linux_displaced_step_location): New function,
9403         based on ppc_linux_displaced_step_location.
9404         * linux-tdep.h (linux_displaced_step_location): New declaration.
9405         * ppc-linux-tdep.c (ppc_linux_entry_point_addr): Delete.
9406         (ppc_linux_inferior_created, ppc_linux_displaced_step_location):
9407         Delete.
9408         (ppc_linux_init_abi): Install linux_displaced_step_location as
9409         gdbarch_displaced_step_location hook, even without Cell/B.E..
9410         (_initialize_ppc_linux_tdep): Don't install
9411         ppc_linux_inferior_created as inferior_created observer.
9412         * s390-linux-tdep.c (s390_gdbarch_init): Install
9413         linux_displaced_step_location as gdbarch_displaced_step_location
9414         hook.
9415
9416 2015-04-09  Gary Benson <gbenson@redhat.com>
9417
9418         * common/common-remote-fileio.h: Rename to...
9419         * common/fileio.h: ...this.  Update all references.
9420         (remote_fileio_to_fio_error): Rename to...
9421         (host_to_fileio_error): ...this.
9422         (remote_fileio_to_be): Rename to...
9423         (host_to_bigendian): ...this.  Update all callers.
9424         (remote_fileio_to_fio_uint): Rename to...
9425         (host_to_fileio_uint): ...this.  Update all callers.
9426         (remote_fileio_to_fio_time): Rename to...
9427         (host_to_fileio_time): ...this.  Update all callers.
9428         (remote_fileio_to_fio_stat): Rename to...
9429         (host_to_fileio_stat): ...this.
9430         Update all references.
9431         * common/common-remote-fileio.c: Rename to...
9432         * common/fileio.c: ...this.  Update all references.
9433         (remote_fileio_to_fio_error): Rename to...
9434         (host_to_fileio_error): ...this.  Update all callers.
9435         (remote_fileio_mode_to_target): Rename to...
9436         (fileio_mode_pack): ...this.  Update all callers.
9437         (remote_fileio_to_fio_mode): Rename to...
9438         (host_to_fileio_mode): ...this.  Update all callers.
9439         (remote_fileio_to_fio_ulong): Rename to...
9440         (host_to_fileio_ulong): ...this.  Update all callers.
9441         (remote_fileio_to_fio_stat): Rename to...
9442         (host_to_fileio_stat): ...this.  Update all callers.
9443
9444 2015-04-09  Andy Wingo  <wingo@igalia.com>
9445
9446         * guile/scm-frame.c (gdbscm_frame_read_register): New function.
9447         (frame_functions): Bind gdbscm_frame_read_register to
9448         frame-read-register.
9449         * guile/lib/gdb.scm (frame-read-register): Export.
9450
9451 2015-04-09  Gary Benson <gbenson@redhat.com>
9452
9453         * common/common-remote-fileio.h (remote_fileio_to_fio_error):
9454         New declaration.
9455         * common/common-remote-fileio.c (remote_fileio_to_fio_error):
9456         New function, factored out the named functions below.
9457         * inf-child.c (gdb/fileio.h): Remove include.
9458         (common-remote-fileio.h): New include.
9459         (inf_child_errno_to_fileio_error): Remove function.  Update
9460         all callers to use remote_fileio_to_fio_error.
9461         * remote-fileio.c (remote_fileio_errno_to_target): Likewise.
9462
9463 2015-04-09  Andy Wingo  <wingo@igalia.com>
9464
9465         * MAINTAINERS (Write After Approval): Add Andy Wingo.
9466
9467 2015-04-09  H.J. Lu  <hongjiu.lu@intel.com>
9468
9469         * acinclude.m4: (GDB_AC_CHECK_BFD): Set ZLIBDIR with $zlibdir.
9470         Replace $zlibdir with $ZLIBDIR in LDFLAGS.
9471         * configure: Regenerated.
9472
9473 2015-04-09  Pedro Alves  <palves@redhat.com>
9474
9475         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add strtok_r.
9476         * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/strtok_r.m4.
9477         * gnulib/configure, gnulib/config.in, gnulib/aclocal.m4: Regenerate.
9478         * gnulib/import/Makefile.am: Update.
9479         * gnulib/import/Makefile.in: Update.
9480         * gnulib/import/m4/gnulib-cache.m4: Update.
9481         * gnulib/import/m4/gnulib-comp.m4: Update.
9482         * gnulib/import/m4/strtok_r.m4: New file.
9483         * gnulib/import/strtok_r.c: New file.
9484
9485 2015-04-09  Pedro Alves  <palves@redhat.com>
9486
9487         * gnulib/update-gnulib.sh (aclocal version check): Filter out
9488         "called too early to check prototype".
9489
9490 2015-04-08  Sergio Durigan Junior  <sergiodj@redhat.com>
9491
9492         PR python/16699
9493         * python/py-cmd.c (cmdpy_completer_helper): Adjust function to not
9494         use a caching mechanism.  Adjust comments and code to reflect
9495         that.  Replace 'sizeof' by 'strlen' when fetching 'wordobj'.
9496         (cmdpy_completer_handle_brkchars): Adjust call to
9497         cmdpy_completer_helper.  Call Py_XDECREF for 'resultobj'.
9498         (cmdpy_completer): Likewise.
9499
9500 2015-04-08  Yao Qi  <yao.qi@linaro.org>
9501
9502         * spu-tdep.c (spu_gdbarch_init): Don't call
9503         set_gdbarch_cannot_step_breakpoint.
9504
9505 2015-04-07  Sergio Durigan Junior  <sergiodj@redhat.com>
9506
9507         * linux-tdep.c (decode_vmflags): Initialize 'saveptr'.
9508
9509 2015-04-07  Pedro Alves  <palves@redhat.com>
9510
9511         * gdbthread.h (ALL_NON_EXITED_THREADS_SAFE): Rename to ...
9512         (ALL_THREADS_SAFE): ... this, and don't skip exited threads.
9513         (delete_exited_threads): New declaration.
9514         * infrun.c (follow_exec): Use ALL_THREADS_SAFE.
9515         * linux-nat.c (linux_nat_update_thread_list): New function.
9516         (linux_nat_add_target): Install it.
9517         * remote.c (remote_update_thread_list): Use ALL_THREADS_SAFE.
9518         * thread.c (prune_threads): Use ALL_THREADS_SAFE.
9519         (delete_exited_threads): New function.
9520
9521 2015-04-07  Pedro Alves  <pedro@codesourcery.com>
9522
9523         * infrun.c (resume) <displaced stepping debug output>: Get the
9524         leader thread's regcache, not resume_ptid's.
9525
9526 2015-04-06  Doug Evans  <xdje42@gmail.com>
9527
9528         * symtab.c (hash_symbol_entry): Hash STRUCT_DOMAIN symbols as
9529         VAR_DOMAIN.
9530         (symbol_cache_lookup): Clarify use of bsc_ptr, slot_ptr parameters.
9531         Include symbol domain in debugging output.
9532
9533 2015-04-06  Pedro Alves  <palves@redhat.com>
9534             Bernd Edlinger  <bernd.edlinger@hotmail.de>
9535
9536         * configure.ac: Remove the mingw32-specific stub-termcap.o
9537         fallback, and instead fallback to the stub termcap on all hosts.
9538         * configure: Regenerate.
9539         * stub-termcap.c [!__MINGW32__] (PC, BC, UP): Define as weak
9540         symbols.
9541
9542 2015-04-03  Pierre-Marie de Rodat  <derodat@adacore.com>
9543
9544         * gdbtypes.c (is_dynamic_type_internal): Remove the unused
9545         "top_level" parameter.
9546         (resolve_dynamic_type_internal): Remove the unused "top_level"
9547         parameter.  Update call to is_dynamic_type_internal.
9548         (is_dynamic_type): Update call to is_dynamic_type_internal.
9549         (resolve_dynamic_range): Update call to
9550         resolve_dynamic_type_internal.
9551         (resolve_dynamic_union): Likewise.
9552         (resolve_dynamic_struct): Likewise.
9553         (resolve_dynamic_type): Likewise.
9554
9555 2015-04-03  Pierre-Marie de Rodat  <derodat@adacore.com>
9556
9557         * gdbtypes.c (is_dynamic_type_internal): Remove special handling of
9558         TYPE_CODE_REF types so that they are not considered as dynamic
9559         depending on the referenced type.
9560         (resolve_dynamic_type_internal): Likewise.
9561
9562 2015-04-02  H.J. Lu  <hongjiu.lu@intel.com>
9563
9564         * Makefile.in (top_srcdir): New.
9565         * configure: Regenerated.
9566
9567 2015-04-02  Gary Benson <gbenson@redhat.com>
9568
9569         * NEWS: Announce the new default sysroot of "target:".
9570
9571 2015-04-02  Gary Benson <gbenson@redhat.com>
9572
9573         * main.c (captured_main): Set gdb_sysroot to "target:"
9574         if not otherwise set.
9575
9576 2015-04-02  Gary Benson <gbenson@redhat.com>
9577
9578         * exec.c (exec_file_attach): Support "target:" filenames.
9579
9580 2015-04-02  Gary Benson <gbenson@redhat.com>
9581
9582         * solib.c (solib_find): Strip "target:" prefix from sysroot
9583         if accessing local files.
9584
9585 2015-04-02  Gary Benson <gbenson@redhat.com>
9586
9587         * symfile.c (symfile_bfd_open): Reorder to remove duplicated
9588         checks and error messages.
9589
9590 2015-04-02  Gary Benson <gbenson@redhat.com>
9591
9592         * remote.h (REMOTE_SYSROOT_PREFIX): Remove definition.
9593         (remote_filename_p): Remove declaration.
9594         (remote_bfd_open): Likewise.
9595         * remote.c (remote_bfd_iovec_open): Remove function.
9596         (remote_bfd_iovec_close): Likewise.
9597         (remote_bfd_iovec_pread): Likewise.
9598         (remote_bfd_iovec_stat): Likewise.
9599         (remote_filename_p): Likewise.
9600         (remote_bfd_open): Likewise.
9601         * symfile.h (gdb_bfd_open_maybe_remote): Remove declaration.
9602         * symfile.c (separate_debug_file_exists): Use gdb_bfd_open.
9603         (gdb_bfd_open_maybe_remote): Remove function.
9604         (symfile_bfd_open):  Replace remote filename check with
9605         target filename check.
9606         (reread_symbols): Use gdb_bfd_open.
9607         * build-id.c (gdbcore.h): New include.
9608         (build_id_to_debug_bfd): Use gdb_bfd_open.
9609         * infcmd.c (attach_command_post_wait): Remove remote filename
9610         check.
9611         * solib.c (solib_find): Replace remote-specific handling with
9612         target-specific handling.  Update comments where necessary.
9613         (solib_bfd_open): Replace remote-specific handling with
9614         target-specific handling.
9615         (gdb_sysroot_changed): New function.
9616         (_initialize_solib): Call the above when gdb_sysroot changes.
9617         * windows-tdep.c (gdbcore.h): New include.
9618         (windows_xfer_shared_library): Use gdb_bfd_open.
9619
9620 2015-04-02  Gary Benson <gbenson@redhat.com>
9621
9622         * gdb/gdb_bfd.h (TARGET_SYSROOT_PREFIX): New definition.
9623         (is_target_filename): New declaration.
9624         (gdb_bfd_has_target_filename): Likewise.
9625         (gdb_bfd_open): Update documentation comment.
9626         * gdb_bfd.c (target.h): New include.
9627         (gdb/fileio.h): Likewise.
9628         (is_target_filename): New function.
9629         (gdb_bfd_has_target_filename): Likewise.
9630         (fileio_errno_to_host): Likewise.
9631         (gdb_bfd_iovec_fileio_open): Likewise.
9632         (gdb_bfd_iovec_fileio_pread): Likewise.
9633         (gdb_bfd_iovec_fileio_close): Likewise.
9634         (gdb_bfd_iovec_fileio_fstat): Likewise.
9635         (gdb_bfd_open): Use target fileio to access paths prefixed
9636         with "target:" where necessary.
9637
9638 2015-04-02  Gary Benson <gbenson@redhat.com>
9639
9640         * target.h (struct target_ops) <to_filesystem_is_local>:
9641         New field.
9642         (target_filesystem_is_local): New macro.
9643         * target-delegates.c: Regenerate.
9644         * remote.c (remote_filesystem_is_local): New function.
9645         (init_remote_ops): Initialize to_filesystem_is_local.
9646
9647 2015-04-02  Gary Benson <gbenson@redhat.com>
9648
9649         * target.h (struct target_ops) <to_fileio_fstat>: New field.
9650         (target_fileio_fstat): New declaration.
9651         * target.c (target_fileio_fstat): New function.
9652         * inf-child.c (inf_child_fileio_fstat): Likewise.
9653         (inf_child_target): Initialize to_fileio_fstat.
9654         * remote.c (init_remote_ops): Likewise.
9655
9656 2015-04-01  Sasha Smundak  <asmundak@google.com>
9657
9658         * Makefile.in (SUBDIR_PYTHON_OBJS): Add py-unwind.o.
9659         (SUBDIR_PYTHON_SRCS): Add py-unwind.c.
9660         (py-unwind.o): New recipe.
9661         * NEWS: mention Python frame unwinding.
9662         * data-directory/Makefile.in (PYTHON_FILE_LIST): Add
9663         gdb/unwinder.py and gdb/command/unwinder.py
9664         * python/lib/gdb/__init__.py (packages): Add frame_unwinders
9665         list.
9666         (execute_unwinders): New function.
9667         * python/lib/gdb/command/unwinders.py: New file.
9668         * python/lib/gdb/unwinder.py: New file.
9669         * python/py-objfile.c (objfile_object): Add frame_unwinders field.
9670         (objfpy_dealloc): Decrement frame_unwinders reference count.
9671         (objfpy_initialize): Create frame_unwinders list.
9672         (objfpy_get_frame_unwinders): New function.
9673         (objfpy_set_frame_unwinders): Ditto.
9674         (objfile_getset): Add frame_unwinders attribute to Objfile.
9675         * python/py-progspace.c (pspace_object): Add frame_unwinders field.
9676         (pspy_dealloc): Decrement frame_unwinders reference count.
9677         (pspy_initialize): Create frame_unwinders list.
9678         (pspy_get_frame_unwinders): New function.
9679         (pspy_set_frame_unwinders): Ditto.
9680         (pspy_getset): Add frame_unwinders attribute to gdb.Progspace.
9681         * python/py-unwind.c: New file.
9682         * python/python-internal.h (pspy_get_name_unwinders): New prototype.
9683         (objpy_get_frame_unwinders): New prototype.
9684         (gdbpy_initialize_unwind): New prototype.
9685         * python/python.c (gdbpy_apply_type_printers): Call
9686         gdbpy_initialize_unwind.
9687
9688 2015-04-01  Pedro Alves  <palves@redhat.com>
9689
9690         * infrun.c (resume): Check currently_stepping after clearing
9691         stepped_breakpoint, not before.
9692
9693 2015-04-01  Pedro Alves  <palves@redhat.com>
9694
9695         * infrun.c (print_target_wait_results): Print all the ptid
9696         elements.
9697
9698 2015-04-01  Pedro Alves  <palves@redhat.com>
9699
9700         * infrun.c (keep_going): Also discard cleanups if inserting
9701         breakpoints fails.
9702
9703 2015-04-01  Pedro Alves  <palves@redhat.com>
9704
9705         * infrun.c (wait_for_inferior): Install the
9706         finish_thread_state_cleanup cleanup across the whole function, not
9707         just around handle_inferior_event.
9708
9709 2015-04-01  Pedro Alves  <palves@redhat.com>
9710
9711         * infrun.c (resume) <step past permanent breakpoint>: Use
9712         do_target_resume.
9713
9714 2015-04-01  Pedro Alves  <palves@redhat.com>
9715
9716         * linux-nat.c (linux_handle_extended_wait): Always call set_running.
9717
9718 2015-04-01  Pierre-Marie de Rodat  <derodat@adacore.com>
9719
9720         * MAINTAINERS (Write After Approval): Add "Pierre-Marie de Rodat".
9721
9722 2015-04-01  Pedro Alves  <palves@redhat.com>
9723
9724         * linux-thread-db.c (record_thread): Readd the thread to gdb's
9725         list if it was marked exited.
9726
9727 2015-04-01  H.J. Lu  <hongjiu.lu@intel.com>
9728
9729         * configure: Regenerated.
9730
9731 2015-03-31  Sergio Durigan Junior  <sergiodj@redhat.com>
9732             Jan Kratochvil  <jan.kratochvil@redhat.com>
9733             Oleg Nesterov  <oleg@redhat.com>
9734
9735         PR corefiles/16092
9736         * linux-tdep.c: Include 'gdbcmd.h' and 'gdb_regex.h'.
9737         New enum identifying the various options of the coredump_filter
9738         file.
9739         (struct smaps_vmflags): New struct.
9740         (use_coredump_filter): New variable.
9741         (decode_vmflags): New function.
9742         (mapping_is_anonymous_p): Likewise.
9743         (dump_mapping_p): Likewise.
9744         (linux_find_memory_regions_full): New variables
9745         'coredumpfilter_name', 'coredumpfilterdata', 'pid', 'filterflags'.
9746         Removed variable 'modified'.  Read /proc/<PID>/smaps file; improve
9747         parsing of its information.  Implement memory mapping filtering
9748         based on its contents.
9749         (show_use_coredump_filter): New function.
9750         (_initialize_linux_tdep): New command 'set use-coredump-filter'.
9751         * NEWS: Mention the possibility of using the
9752         '/proc/PID/coredump_filter' file when generating a corefile.
9753         Mention new command 'set use-coredump-filter'.
9754
9755 2015-03-31  Sergio Durigan Junior  <sergiodj@redhat.com>
9756
9757         * solib-svr4.c (solib_svr4_r_ldsomap): Catch possible exception by
9758         read_memory_unsigned_integer.
9759
9760 2015-03-31  H.J. Lu  <hongjiu.lu@intel.com>
9761
9762         * Makefile.in (ZLIB): New.
9763         (ZLIBINC): Likewise.
9764         (INTERNAL_CFLAGS_BASE): Add $(ZLIBINC).
9765         (CLIBS): Add $(ZLIB).
9766         * acinclude.m4: (GDB_AC_CHECK_BFD): Add $zlibdir to LDFLAGS.
9767         Add -lz to LIBS.
9768         * gdb_bfd.c: Don't check HAVE_ZLIB_H to include <zlib.h>.
9769         * top.c (print_gdb_configuration): Remove --with-zlib and
9770         --without-zlib.
9771         * config.in: Regenerated.
9772         * configure: Likewise.
9773
9774 2015-03-31  Antoine Tremblay  <antoine.tremblay@ericsson.com>
9775
9776         * NEWS: Mention info os cpus support.
9777         * gdb/nat/linux-osdata.c (linux_xfer_osdata_cpus): New function.
9778         (struct osdata_type): Add cpus entry, reorder the entries in
9779         alphabetical order.
9780
9781 2015-03-31  Matthias Klose  <doko@ubuntu.com>
9782
9783         * compile/compile.c (compile_to_object): Allow triplets with or
9784         without vendor set.
9785
9786 2015-03-30  Doug Evans  <dje@google.com>
9787
9788         PR c++/18141
9789         * cp-namespace.c (cp_search_static_and_baseclasses): Always look for
9790         klass in VAR_DOMAIN.
9791
9792 2015-03-30  Gary Benson <gbenson@redhat.com>
9793
9794         * remote.c (remote_mourn_1): Remove function.  Update all callers
9795         to use remote_mourn.
9796         (extended_remote_mourn_1): Remove function.  Update all callers
9797         to use extended_remote_mourn.
9798         (extended_remote_attach_1): Remove function.  Update all callers
9799         to use extended_remote_attach.
9800
9801 2015-03-28  James Bowman  <james.bowman@ftdichip.com>
9802
9803         * Makefile.in (ALL_TARGET_OBS): Add ft32-tdep.o.
9804         (HFILES_NO_SRCDIR): Add ft32-tdep.h.
9805         (ALLDEPFILES): Add ft32-tdep.c.
9806         * configure.tgt: Add FT32 entry.
9807         * ft32-tdep.c: New file, FT32 target-dependent code.
9808         * ft32-tdep.h: New file, FT32 target-dependent code.
9809
9810 2015-03-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
9811
9812         Revert:
9813         2015-03-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
9814         Code cleanup.
9815         * printcmd.c (print_command_1): Move expr variable scope.
9816
9817 2015-03-27  Joel Brobecker  <brobecker@adacore.com>
9818
9819         * dtrace-probe.c (dtrace_process_dof_probe): Initialize expr to NULL.
9820
9821 2015-03-27  Andrzej Kaczmarek  <andrzej.kaczmarek@tieto.com>
9822
9823         * gdb_bfd.c (gdb_bfd_section_index): Fix off-by-one for special
9824         sections.
9825
9826 2015-03-26  Joel Brobecker  <brobecker@adacore.com>
9827
9828         * dtrace-probe.c (dtrace_process_dof_probe): Contain any
9829         exception raised while parsing the probe arguments.
9830         Force parsing to be done using the C language parser.
9831         * expression.h (parse_expression_with_language): Declare.
9832         * parse.c (parse_expression_with_language): New function.
9833
9834 2015-03-26  Jon Turney  <jon.turney@dronecode.org.uk>
9835
9836         * MAINTAINERS (Write After Approval): Add "Jon Turney".
9837
9838 2015-03-26  Andy Wingo  <wingo@igalia.com>
9839
9840         PR symtab/18148
9841         * dwarf2read.c (struct partial_die_info): Add has_const_value
9842         member.
9843         (add_partial_symbol): Don't punt on symbols that have const_value
9844         attributes.
9845         (read_partial_die): Detect DW_AT_const_value.
9846
9847 2015-03-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
9848
9849         Code cleanup.
9850         * printcmd.c (print_command_1): Move expr variable scope.
9851
9852 2015-03-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
9853
9854         Code cleanup.
9855         * printcmd.c (validate_format): Make the parameter cmdname const.
9856
9857 2015-03-26  Don Breazeal  <donb@codesourcery.com>
9858
9859         * remote.c (_initialize_remote): Update comment.
9860
9861 2015-03-26  Pedro Alves  <palves@redhat.com>
9862             Jon TURNEY  <jon.turney@dronecode.org.uk>
9863
9864         * coffread.c (coff_symfile_read): When constructing the name of an
9865         import stub symbol from import symbol for amd64, only skip the
9866         char after _imp_ if the target is underscored (like i386) and the
9867         char is indeed the target's leading char.
9868
9869 2015-03-25  Pedro Alves  <palves@redhat.com>
9870
9871         * target.h <to_async>: Replace 'callback' and 'context' parameters
9872         with boolean 'enable' parameter.
9873         (target_async): Replace CALLBACK and CONTEXT parameters with
9874         boolean ENABLE parameter.
9875         * inf-loop.c (inferior_event_handler): Adjust.
9876         * linux-nat.c (linux_nat_attach, linux_nat_resume)
9877         (linux_nat_resume): Adjust.
9878         (async_client_callback, async_client_context): Delete.
9879         (handle_target_event): Call inferior_event_handler directly.
9880         (linux_nat_async): Replace 'callback' and 'context' parameters
9881         with boolean 'enable' parameter.  Adjust.  Remove references to
9882         async_client_callback and async_client_context.
9883         (linux_nat_close): Adjust.
9884         * record-btrace.c (record_btrace_async): Replace 'callback' and
9885         'context' parameters with boolean 'enable' parameter.  Adjust.
9886         (record_btrace_resume): Adjust.
9887         * record-full.c (record_full_async): Replace 'callback' and
9888         'context' parameters with boolean 'enable' parameter.  Adjust.
9889         (record_full_resume, record_full_core_resume): Adjust.
9890         * remote.c (struct remote_state) <async_client_callback,
9891         async_client_context>: Delete fields.
9892         (remote_start_remote, extended_remote_attach_1, remote_resume)
9893         (extended_remote_create_inferior): Adjust.
9894         (remote_async_serial_handler): Call inferior_event_handler
9895         directly.
9896         (remote_async): Replace 'callback' and 'context' parameters with
9897         boolean 'enable' parameter.  Adjust.
9898         * top.c (gdb_readline_wrapper_cleanup, gdb_readline_wrapper):
9899         Adjust.
9900         * target-delegates.c: Regenerate.
9901
9902 2015-03-25  Gary Benson <gbenson@redhat.com>
9903             Pedro Alves  <palves@redhat.com>
9904
9905         * target.c (fileio_ft_t): New typedef, define object vector.
9906         (fileio_fhandles): New static variable.
9907         (is_closed_fileio_fh): New macro.
9908         (lowest_closed_fd): New static variable.
9909         (acquire_fileio_fd): New function.
9910         (release_fileio_fd): Likewise.
9911         (fileio_fd_to_fh): New macro.
9912         (target_fileio_open): Wrap the file descriptor on success.
9913         (target_fileio_pwrite): Updated to use wrapped file descriptor.
9914         (target_fileio_pread): Likewise.
9915         (target_fileio_close): Likewise.
9916
9917 2015-03-24  Pedro Alves  <palves@redhat.com>
9918
9919         * thread.c (thread_apply_all_command): Take exited threads into
9920         account.
9921
9922 2015-03-24  Pedro Alves  <palves@redhat.com>
9923
9924         * infrun.c (resume, proceed): Mention
9925         switch_back_to_stepped_thread, not switch_back_to_stepping.
9926
9927 2015-03-24  Pedro Alves  <palves@redhat.com>
9928
9929         * infrun.c (user_visible_resume_ptid): Rewrite going from
9930         most-locked to unlocked instead of the opposite.  Move comment ...
9931         * infrun.h (user_visible_resume_ptid): ... here.
9932
9933 2015-03-24  Pedro Alves  <palves@redhat.com>
9934
9935         * linux-nat.c (linux_nat_resume): Output debug logs before trying
9936         to resume the event lwp.  Use the lwp's ptid instead of the passed
9937         in (maybe wildcard) ptid.
9938         (stop_wait_callback): Tweak debug log output.
9939         (check_stopped_by_breakpoint): Tweak debug log output.  Also dump
9940         TRAP_TRACE.
9941         (linux_nat_filter_event): In debug output, distinguish a
9942         resume_stop SIGSTOP from a delayed SIGSTOP.  Output debug logs
9943         before trying to resume the lwp.
9944
9945 2015-03-24  Joel Brobecker  <brobecker@adacore.com>
9946
9947         * gdbtypes.h (struct dynamic_prop_list) <prop>: Remove
9948         pointer indirection.
9949         * gdbtypes.c (get_dyn_prop): Adjust, following change above.
9950         (add_dyn_prop, copy_dynamic_prop_list): Likewise.
9951
9952 2015-03-24  Joel Brobecker  <brobecker@adacore.com>
9953
9954         * gdbtypes.h (enum dynamic_prop_node_kind) <DYN_PROP_DATA_LOCATION>:
9955         Renames DYN_ATTR_DATA_LOCATION.
9956         (TYPE_DATA_LOCATION): Use DYN_PROP_DATA_LOCATION instead of
9957         DYN_ATTR_DATA_LOCATION.
9958         * dwarf2read.c (set_die_type): Use DYN_PROP_DATA_LOCATION
9959         instead of DYN_ATTR_DATA_LOCATION.
9960
9961 2015-03-24  Pedro Alves  <palves@redhat.com>
9962
9963         * breakpoint.c (until_break_command): Adjust call to proceed.
9964         * gdbthread.h (struct thread_control_state) <stepping_command>:
9965         New field.
9966         * infcall.c (run_inferior_call): Adjust call to proceed.
9967         * infcmd.c (run_command_1, proceed_thread_callback, continue_1):
9968         Adjust calls to proceed.
9969         (set_step_frame): Set the current thread's step_start_function
9970         here.
9971         (step_once): Adjust calls to proceed.
9972         (jump_command, signal_command, until_next_command)
9973         (finish_backward, finish_forward, proceed_after_attach_callback)
9974         (attach_command_post_wait): Adjust calls to proceed.
9975         * infrun.c (proceed_after_vfork_done): Adjust call to proceed.
9976         (do_target_resume): New function, factored out from ...
9977         (resume): ... here.  Remove 'step' parameter.  Instead, check
9978         currently_stepping to determine whether the thread should be
9979         single-stepped.
9980         (proceed): Remove 'step' parameter and don't set the thread's
9981         step_start_function here.  Adjust call to 'resume'.
9982         (handle_inferior_event): Adjust calls to 'resume'.
9983         (switch_back_to_stepped_thread): Use do_target_resume instead of
9984         'resume'.
9985         (keep_going): Adjust calls to 'resume'.
9986         * infrun.h (proceed): Remove 'step' parameter.
9987         (resume): Likewise.
9988         * windows-nat.c (do_initial_windows_stuff): Adjust call to
9989         'resume'.
9990         * mi/mi-main.c (proceed_thread): Adjust call to 'proceed'.
9991
9992 2015-03-24  Pedro Alves  <palves@redhat.com>
9993
9994         * gdbthread.h (struct thread_control_state) <stepping_command>:
9995         New field.
9996         * infcmd.c (step_once): Pass step=1 to clear_proceed_status.  Set
9997         the thread's stepping_command field.
9998         * infrun.c (resume): Check the thread's stepping_command flag to
9999         determine which threads should be resumed.  Rename 'entry_step'
10000         local to user_step.
10001         (clear_proceed_status_thread): Clear 'stepping_command'.
10002         (schedlock_applies): Change parameter type to struct thread_info
10003         pointer.  Adjust.
10004         (find_thread_needs_step_over): Remove 'step' parameter.  Adjust.
10005         (switch_back_to_stepped_thread): Adjust calls to
10006         'schedlock_applies'.
10007         (_initialize_infrun): Adjust "set scheduler-locking step" help.
10008
10009 2015-03-24  Pedro Alves  <palves@redhat.com>
10010
10011         * infrun.c (step_start_function): Delete and ...
10012         * gdbthread.h (struct thread_control_state) <step_start_function>:
10013         ... now a field here.
10014         * infrun.c (clear_proceed_status_thread): Clear the thread's
10015         step_start_function.
10016         (proceed, process_event_stop_test, print_stop_event): Adjust.
10017
10018 2015-03-24  Pedro Alves  <palves@redhat.com>
10019
10020         * infrun.c (proceed): No longer handle negative step.
10021
10022 2015-03-24  Gary Benson  <gbenson@redhat.com>
10023
10024         * nat/x86-linux.h (x86_linux_new_thread): New declaration.
10025         (x86_linux_prepare_to_resume): Likewise.
10026         * x86-linux-nat.c (x86_linux_new_thread):
10027         Moved to nat/x86-linux.c.
10028         (x86_linux_prepare_to_resume): Likewise.
10029         * nat/x86-linux.c (x86_linux_new_thread): New function.
10030         (x86_linux_prepare_to_resume): Likewise.
10031
10032 2015-03-24  Gary Benson  <gbenson@redhat.com>
10033
10034         * nat/x86-linux-dregs.h: New file.
10035         * nat/x86-linux-dregs.c: Likewise.
10036         * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux-dregs.h.
10037         (x86-linux-dregs.o): New rule.
10038         * config/i386/linux.mh (NATDEPFILES): Add x86-linux-dregs.o.
10039         * config/i386/linux64.mh (NATDEPFILES): Likewise.
10040         * x86-linux-nat.c: Include nat/x86-linux-dregs.h.
10041         (u_debugreg_offset): Moved to nat/x86-linux-dregs.c.
10042         (x86_linux_dr_get): Likewise.
10043         (x86_linux_dr_set): Likewise.
10044         (x86_linux_dr_get_addr): Likewise.
10045         (x86_linux_dr_get_control): Likewise.
10046         (x86_linux_dr_get_status): Likewise.
10047         (update_debug_registers_callback): Likewise.
10048         (x86_linux_dr_set_control): Likewise.
10049         (x86_linux_dr_set_addr): Likewise.
10050         (x86_linux_update_debug_registers): Likewise.
10051
10052 2015-03-24  Gary Benson  <gbenson@redhat.com>
10053
10054         * x86-linux-nat.c (x86_linux_update_debug_registers):
10055         New function, factored out from...
10056         (x86_linux_prepare_to_resume): ...this.
10057
10058 2015-03-24  Gary Benson  <gbenson@redhat.com>
10059
10060         * x86-linux-nat.c (x86_linux_dr_get): Update comments.
10061         (x86_linux_dr_set): Likewise.
10062         (x86_linux_dr_get_addr): Likewise.
10063         (x86_linux_dr_get_control): Likewise.
10064         (x86_linux_dr_get_status): Likewise.
10065         (update_debug_registers_callback): Likewise.
10066         (x86_linux_dr_set_control): Likewise.
10067         (x86_linux_dr_set_addr): Likewise.
10068         (x86_linux_prepare_to_resume): Likewise.
10069         (x86_linux_new_thread): Likewise.
10070
10071 2015-03-24  Gary Benson  <gbenson@redhat.com>
10072
10073         * x86-linux-nat.c (x86_linux_dr_set_addr): Update assertion.
10074         (x86_linux_new_thread): Rename argument.
10075
10076 2015-03-24  Gary Benson  <gbenson@redhat.com>
10077
10078         * nat/x86-linux.h: New file.
10079         * nat/x86-linux.c: Likewise.
10080         * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux.h.
10081         (x86-linux.o): New rule.
10082         * config/i386/linux.mh (NATDEPFILES): Add x86-linux.o.
10083         * config/i386/linux64.mh (NATDEPFILES): Likewise.
10084         * nat/linux-nat.h (struct arch_lwp_info): New forward declaration.
10085         (lwp_set_arch_private_info): New declaration.
10086         (lwp_arch_private_info): Likewise.
10087         * linux-nat.c (lwp_set_arch_private_info): New function.
10088         (lwp_arch_private_info): Likewise.
10089         * x86-linux-nat.c: Include nat/x86-linux.h.
10090         (arch_lwp_info): Removed structure.
10091         (update_debug_registers_callback):
10092         Use lwp_set_debug_registers_changed.
10093         (x86_linux_prepare_to_resume): Use lwp_debug_registers_changed
10094         and lwp_set_debug_registers_changed.
10095         (x86_linux_new_thread): Use lwp_set_debug_registers_changed.
10096
10097 2015-03-24  Gary Benson  <gbenson@redhat.com>
10098
10099         * nat/linux-nat.h (ptid_of_lwp): New declaration.
10100         (lwp_is_stopped): Likewise.
10101         (lwp_stop_reason): Likewise.
10102         * linux-nat.c (ptid_of_lwp): New function.
10103         (lwp_is_stopped): Likewise.
10104         (lwp_is_stopped_by_watchpoint): Likewise.
10105         * x86-linux-nat.c (update_debug_registers_callback):
10106         Use lwp_is_stopped.
10107         (x86_linux_prepare_to_resume): Use ptid_of_lwp and
10108         lwp_stop_reason.
10109
10110 2015-03-24  Gary Benson  <gbenson@redhat.com>
10111
10112         * linux-nat.h (linux_stop_lwp): Move declaration to...
10113         * nat/linux-nat.h (linux_stop_lwp): New declaration.
10114
10115 2015-03-24  Gary Benson  <gbenson@redhat.com>
10116
10117         * linux-nat.h: Include nat/linux-nat.h.
10118         (iterate_over_lwps): Move declaration to nat/linux-nat.h.
10119         * nat/linux-nat.h (struct lwp_info): New forward declaration.
10120         (iterate_over_lwps_ftype): New typedef.
10121         (iterate_over_lwps): New declaration.
10122         * linux-nat.h (iterate_over_lwps): Update comment.  Use
10123         iterate_over_lwps_ftype.  Update callback return value check.
10124
10125 2015-03-24  Gary Benson  <gbenson@redhat.com>
10126
10127         * x86-nat.h (x86_debug_reg_state): Move declaration to...
10128         * nat/x86-dregs.h (x86_debug_reg_state): New declaration.
10129
10130 2015-03-24  Gary Benson  <gbenson@redhat.com>
10131
10132         * nat/linux-nat.h (current_lwp_ptid): New declaration.
10133         * linux-nat.c (current_lwp_ptid): New function.
10134         * x86-linux-nat.c: Include nat/linux-nat.h.
10135         (x86_linux_dr_get_addr): Use current_lwp_ptid.
10136         (x86_linux_dr_get_control): Likewise.
10137         (x86_linux_dr_get_status): Likewise.
10138         (x86_linux_dr_set_control): Likewise.
10139         (x86_linux_dr_set_addr): Likewise.
10140
10141 2015-03-24  Antoine Tremblay  <antoine.tremblay@ericsson.com>
10142
10143         PR breakpoints/16466
10144         * breakpoint.c (create_breakpoint): Set thread on breakpoint struct.
10145
10146 2015-03-23  Joel Brobecker  <brobecker@adacore.com>
10147
10148         * ser-mingw.c (ser_windows_setparity): Fix indentation.
10149         * ser-unix.c (hardwire_setparity): Likewise.
10150
10151 2015-03-23  Yurij Grechishhev  <yurij.grechishhev@gmail.com>
10152
10153         * NEWS: Mention set/show serial parity command.
10154         * monitor.c (monitor_open): Call serial_setparity.
10155         * remote.c (remote_open_1): Likewise.
10156         * ser-base.c (ser_base_serparity): New function.
10157         * ser-base.h (ser_base_setparity): Add  declaration.
10158         * ser-go32.c (dos_ops): Set "setparity" field.
10159         * ser-mingw.c (ser_windows_raw): Do not set state.fParity and
10160         state.Parity.
10161         (ser_windows_setparity): New function.
10162         (hardwire_ops): Add ser_windows_setparity.
10163         (tty_ops): Add NULL for setparity field.
10164         (pipe_ops): Add ser_base_setparity.
10165         (tcp_ops): Likewise.
10166         * ser-pipe.c (pipe_ops): Likewise.
10167         * ser-tcp.c (tcp_ops): Likewise.
10168         * ser-unix.c (hardwire_setparity): Add declaration.
10169         (hardwire_raw): Don't reset PARENB flag.
10170         (hardwire_setparity): New function.
10171         (hardwire_ops): Add hardwire_setparity.
10172         * serial.c (serial_setparity): New function.
10173         (serial_parity): New global.
10174         (parity_none, parity_odd, parity_even, parity_enums, parity):
10175         New static globals.
10176         (set_parity): New function.
10177         (_initialize_serial): Add set/show serial parity commands.
10178         * serial.h (GDBPARITY_NONE): Define.
10179         (GDBPARITY_ODD): Define.
10180         (GDBPARITY_EVEN): Define.
10181         (serial_setparity) Add declaration.
10182         (struct serial_ops): Add setparity field.
10183         * target.h (serial_parity): Add declaration.
10184
10185 2015-03-23  Keith Seitz  <keiths@redhat.com>
10186
10187         * linespec.c (linespec_lexer_lex_keyword): Update comment.
10188
10189 2015-03-23  Keith Seitz  <keiths@redhat.com>
10190
10191         * breakpoint.c (parse_breakpoint_sals): Use
10192         linespec_lexer_lex_keyword to ascertain if the user specified
10193         a NULL location.
10194         * linespec.c [IF_KEYWORD_INDEX]: Define.
10195         (linespec_lexer_lex_keyword): Export.
10196         (struct ls_parser) <keyword_ok>: Remove.
10197         A keyword is only a keyword if not followed by another keyword.
10198         (linespec_lexer_lex_one): Remove keyword_ok handling.
10199         Add comment explaining why the parsing stream is not advanced
10200         when a keyword is seen.
10201         (parse_linespec): Remove parser->keyword_ok.
10202         * linespec.h (linespec_lexer_lex_keyword): Add declaration.
10203
10204 2015-03-23  Keith Seitz  <keiths@redhat.com>
10205
10206         PR gdb/18021
10207         * dwarf2read.c (dwarf2_add_member_fn): Issue a complaint
10208         if we find a static method with DW_AT_vtable_elem_location.
10209
10210 2015-03-21  Eli Zaretskii  <eliz@gnu.org>
10211
10212         * tui/tui-io.c (tui_expand_tabs): Reinitialize the column counter
10213         before the second loop, to avoid undefined behavior.  Reported by
10214         Anton Blanchard <anton@samba.org>.
10215
10216 2015-03-20  Keven Boell  <keven.boell@intel.com>
10217
10218         * gdbtypes.c (resolve_dynamic_type_internal): Adapt
10219         data_location usage to linked list.
10220         (resolve_dynamic_type_internal): Adapt data_location to
10221         linked list.
10222         (get_dyn_prop, add_dyn_prop, copy_dynamic_prop_list): New function.
10223         (copy_type_recursive, copy_type): Add copy of linked list.
10224         * gdbtypes.h (enum dynamic_prop_node_kind): New enum.
10225         (struct dynamic_prop_list): New struct.
10226         * dwarf2read.c (set_die_type): Set data_location data.
10227
10228 2015-03-20  Pedro Alves  <palves@redhat.com>
10229
10230         * i386-sol2-tdep.c (i386_sol2_static_transform_name): Move "p" to
10231         inner block and make it const.
10232         * machoread.c (get_archive_prefix_len): Make "lparen" const.
10233
10234 2015-03-20  Pedro Alves  <palves@redhat.com>
10235
10236         * breakpoint.c (set_breakpoint_condition): Make argument "exp" const.
10237         * breakpoint.h (set_breakpoint_condition): Update declaration.
10238
10239 2015-03-20  Pedro Alves  <palves@redhat.com>
10240
10241         * tui/tui-io.c (tui_expand_tabs): Make "s1" const.
10242
10243 2015-03-20  Pedro Alves  <palves@redhat.com>
10244
10245         * xcoffread.c (scan_xcoff_symtab): Make "p" and "q" const.
10246
10247 2015-03-20  Pedro Alves  <palves@redhat.com>
10248
10249         * remote-m32r-sdi.c (m32r_open): Make "port_str" const.
10250
10251 2015-03-20  Pedro Alves  <palves@redhat.com>
10252
10253         * nto-tdep.c (nto_find_and_open_solib): Make "endian" const.
10254         (nto_init_solib_absolute_prefix): Likewise.
10255
10256 2015-03-20  Pedro Alves  <palves@redhat.com>
10257
10258         * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Make "p" const.
10259         * spu-tdep.c (spu_gdbarch_init): Make "name" const.
10260
10261 2015-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
10262
10263         * config/djgpp/README: Remove gdb.hp.
10264
10265 2015-03-20  Yao Qi  <yao.qi@linaro.org>
10266
10267         * aarch64-tdep.c (aarch64_gdbarch_init): Don't call
10268         set_gdbarch_cannot_step_breakpoint.
10269
10270 2015-03-19  Pedro Alves  <palves@redhat.com>
10271
10272         * linux-nat.c (linux_resume_one_lwp): Rename to ...
10273         (linux_resume_one_lwp_throw): ... this.  Don't handle ESRCH here,
10274         instead call perror_with_name.
10275         (check_ptrace_stopped_lwp_gone): New function.
10276         (linux_resume_one_lwp): Reimplement as wrapper around
10277         linux_resume_one_lwp_throw that swallows errors if the LWP is
10278         gone.
10279         (resume_stopped_resumed_lwps): Try register reads in TRY/CATCH and
10280         swallows errors if the LWP is gone.  Use
10281         linux_resume_one_lwp_throw instead of linux_resume_one_lwp.
10282
10283 2015-03-19  Pedro Alves  <palves@redhat.com>
10284
10285         * linux-nat.c (status_callback): Return early if the LWP has no
10286         status pending.
10287
10288 2015-03-19  Pedro Alves  <palves@redhat.com>
10289
10290         * linux-nat.c (select_event_lwp_callback): Update comment to no
10291         longer mention SIGTRAP.
10292
10293 2015-03-18  Tristan Gingold  <gingold@adacore.com>
10294
10295         * amd64-windows-tdep.c (amd64_windows_find_unwind_info): Move
10296         redirection code to ...
10297         (amd64_windows_frame_decode_insns): ... Here.  Fix in prologue
10298         checks.  Fix SAVE_NONVOL operations.  Add debug code and comments.
10299
10300 2015-03-18  Gary Benson <gbenson@redhat.com>
10301
10302         (remote_protocol_features): Remove the "vFile:fstat" feature.
10303         (remote_hostio_fstat): Probe for "vFile:fstat" support.
10304
10305 2015-03-11  Yao Qi  <yao.qi@linaro.org>
10306
10307         PR tdep/18107
10308         * aarch64-linux-tdep.c: Include xml-syscall.h
10309         (aarch64_linux_get_syscall_number): New function.
10310         (aarch64_linux_init_abi): Call
10311         set_gdbarch_get_syscall_number.
10312         * syscalls/aarch64-linux.xml: New file.
10313
10314 2015-03-17  Yurij Grechishhev  <yurij.grechishhev@gmail.com>
10315
10316         * ser-base.h (ser_base_setstopbits): Change second argument name
10317         from "rate" to "num".
10318
10319 2015-03-17  Gary Benson <gbenson@redhat.com>
10320             Luke Allardyce <lukeallardyce@gmail.com>
10321
10322         PR gdb/18131
10323         * common/common-remote-fileio.h (sys/stat.h): New include.
10324         (stuct stat): Remove forward declaration.
10325
10326 2015-03-16  John Baldwin  <jhb@FreeBSD.org>
10327
10328         * fbsd-tdep.c (fbsd_make_corefile_notes): Fetch all target registers
10329         before writing core register notes.
10330
10331 2015-03-16  Yuanhui Zhang  <asmwarrior@gmail.com>
10332             Pedro Alves  <palves@redhat.com>
10333
10334         * gdb_curses.h (tgetnum): Mark with EXTERN_C.
10335         * stub-termcap.c (tgetent, tgetnum, tgetflag, tgetstr, tputs)
10336         (tgoto): Wrap with extern "C".
10337
10338 2015-03-16  Pedro Alves  <palves@redhat.com>
10339             Yuanhui Zhang  <asmwarrior@gmail.com>
10340
10341         * stub-termcap.c (tputs): Change prototype.
10342
10343 2015-03-16  Yuanhui Zhang  <asmwarrior@gmail.com>
10344             Pedro Alves  <palves@redhat.com>
10345
10346         * windows-nat.c (struct thread_info_struct): Rename to ...
10347         (struct windows_thread_info_struct): ... this.
10348         (thread_info): Rename to ...
10349         (windows_thread_info): ... this.
10350         All users updated.
10351
10352 2015-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
10353             Pedro Alves  <palves@redhat.com>
10354
10355         * NEWS: New Removed targets and native configurations.
10356
10357 2015-03-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
10358
10359         Remove HPUX.
10360         * Makefile.in (ALL_64_TARGET_OBS): Remove ia64-hpux-tdep.o.
10361         (ALL_TARGET_OBS): Remove hppa-hpux-tdep.o, solib-som.o and solib-pa64.o.
10362         (HFILES_NO_SRCDIR): Remove solib-som.h, inf-ttrace.h, solib-pa64.h and
10363         ia64-hpux-tdep.h, solib-ia64-hpux.h.
10364         (ALLDEPFILES): Remove hppa-hpux-tdep.c, hppa-hpux-nat.c,
10365         ia64-hpux-nat.c, ia64-hpux-tdep.c, somread.c and solib-som.c.
10366         * config/djgpp/fnchange.lst: Remove hppa-hpux-nat.c and
10367         hppa-hpux-tdep.c.
10368         * config/ia64/hpux.mh: Remove file.
10369         * config/pa/hpux.mh: Remove file.
10370         * configure: Rebuilt.
10371         * configure.ac (dlgetmodinfo, somread.o): Remove.
10372         * configure.host (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete.
10373         (ia64-*-hpux*): Remove its float format exception.
10374         * configure.tgt (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete.
10375         * hppa-hpux-nat.c: Remove file.
10376         * hppa-hpux-tdep.c: Remove file.
10377         * hppa-tdep.c (struct hppa_unwind_info, struct hppa_objfile_private):
10378         Move them here from hppa-tdep.h
10379         (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Make it static.
10380         (hppa_frame_prev_register_helper): Remove HPPA_FLAGS_REGNUM exception.
10381         * hppa-tdep.h (struct hppa_unwind_info, struct hppa_objfile_private):
10382         Move them to hppa-tdep.c.
10383         (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Remove
10384         declarations.
10385         * ia64-hpux-nat.c: Remove file.
10386         * ia64-hpux-tdep.c: Remove file.
10387         * ia64-hpux-tdep.h: Remove file.
10388         * inf-ttrace.c: Remove file.
10389         * inf-ttrace.h: Remove file.
10390         * solib-ia64-hpux.c: Remove file.
10391         * solib-ia64-hpux.h: Remove file.
10392         * solib-pa64.c: Remove file.
10393         * solib-pa64.h: Remove file.
10394         * solib-som.c: Remove file.
10395         * solib-som.h: Remove file.
10396         * somread.c: Remove file.
10397
10398 2015-03-13  John Baldwin  <jhb@FreeBSD.org>
10399
10400         * configure.ac: AC_SEARCH_LIBS(kinfo_getvmmap, util).
10401         * config.in: Regenerate.
10402         * configure: Regenerate.
10403         * fbsd-nat.c [!HAVE_KINFO_GETVMMAP] (fbsd_read_mapping): Don't
10404         define.
10405         (fbsd_find_memory_regions): Use kinfo_getvmmap to
10406         enumerate memory regions if present.
10407
10408 2015-03-13  John Baldwin  <jhb@FreeBSD.org>
10409
10410         * amd64fbsd-tdep.c (amd64fbsd_sigtramp_p): Style fixes.
10411         * i386fbsd-tdep.c: Fix style in various gdb_static_assert
10412         expressions.
10413         (i386fbsd_sigtramp_p): Likewise.
10414
10415 2015-03-12  John Baldwin  <jhb@FreeBSD.org>
10416
10417         * MAINTAINERS (Write After Approval): Add John Baldwin.
10418
10419 2015-03-12  Gary Benson <gbenson@redhat.com>
10420
10421         * solib.c (_initialize_solib): Make "set/show sysroot" use
10422         add_setshow_optional_filename_cmd so it can be restored to
10423         empty after being set.
10424
10425 2015-03-11  Sergio Durigan Junior  <sergiodj@redhat.com>
10426
10427         * Makefile.in (SFILES): New source break-catch-syscall.c.
10428         (COMMON_OBS): New object break-catch-syscall.o.
10429         * break-catch-syscall.c: New file.
10430         * breakpoint.c: Remove inclusion of "xml-syscall.h".
10431         (syscall_catchpoint_p): Move declaration to break-catch-syscall.c
10432         (struct syscall_catchpoint): Likewise.
10433         (dtor_catch_syscall): Likewise.
10434         (catch_syscall_inferior_data): Likewise.
10435         (struct catch_syscall_inferior_data): Likewise.
10436         (get_catch_syscall_inferior_data): Likewise.
10437         (catch_syscall_inferior_data_cleanup): Likewise.
10438         (insert_catch_syscall): Likewise.
10439         (remove_catch_syscall): Likewise.
10440         (breakpoint_hit_catch_syscall): Likewise.
10441         (print_it_catch_syscall): Likewise.
10442         (print_one_catch_syscall): Likewise.
10443         (print_mention_catch_syscall): Likewise.
10444         (print_recreate_catch_syscall): Likewise.
10445         (catch_syscall_breakpoint_ops): Likewise.
10446         (syscall_catchpoint_p): Likewise.
10447         (create_syscall_event_catchpoint): Likewise.
10448         (catch_syscall_split_args): Likewise.
10449         (catch_syscall_command_1): Likewise.
10450         (is_syscall_catchpoint_enabled): Likewise.
10451         (catch_syscall_enabled): Likewise.
10452         (catching_syscall_number): Likewise.
10453         (catch_syscall_completer): Likewise.
10454         (clear_syscall_counts): Likewise.
10455         (initialize_breakpoint_ops): Move initialization of syscall
10456         catchpoints to break-catch-syscall.c.
10457         (_initialize_breakpoint): Move code related to syscall catchpoints
10458         to break-catch-syscall.c.
10459
10460 2015-03-11  Sergio Durigan Junior  <sergiodj@redhat.com>
10461
10462         * breakpoint.c (breakpoint_find_if): New function.
10463         * breakpoint.h (breakpoint_find_if): New prototype.
10464
10465 2015-03-11  Gary Benson <gbenson@redhat.com>
10466
10467         * remote-fileio.h (remote_fileio_to_host_stat): New declaration.
10468         * remote-fileio.c (remote_fileio_to_host_uint): New function.
10469         (remote_fileio_to_host_ulong): Likewise.
10470         (remote_fileio_to_host_mode): Likewise.
10471         (remote_fileio_to_host_time): Likewise.
10472         (remote_fileio_to_host_stat): Likewise.
10473         * remote.c (PACKET_vFile_fstat): New enum value.
10474         (remote_protocol_features): Register the "vFile:fstat" feature.
10475         (remote_hostio_fstat): New function.
10476         (remote_bfd_iovec_stat): Use the above.
10477         (_initialize_remote): Register new "set/show remote
10478         hostio-fstat-packet" command.
10479         * symfile.c (separate_debug_file_exists): Update comment.
10480         * NEWS: Announce new vFile:fstat packet.
10481
10482 2015-03-11  Gary Benson <gbenson@redhat.com>
10483
10484         * common/common-remote-fileio.h: New file.
10485         * common/common-remote-fileio.c: Likewise.
10486         * Makefile.in (SFILES): Add common/common-remote-fileio.c.
10487         (HFILES_NO_SRCDIR): Add common/common-remote-fileio.h.
10488         (COMMON_OBS): Add common-remote-fileio.o.
10489         (common-remote-fileio.o): New rule.
10490         * remote-fileio.h (common-remote-fileio.h): New include.
10491         * remote-fileio.c (gdb/fileio.h): Do not include.
10492         (remote_fileio_to_be): Moved to common-remote-fileio.h.
10493         (remote_fileio_to_fio_uint): Likewise.
10494         (remote_fileio_to_fio_time): Likewise.
10495         (remote_fileio_mode_to_target): Moved to common-remote-fileio.c.
10496         (remote_fileio_to_fio_mode): Likewise.
10497         (remote_fileio_to_fio_ulong): Likewise.
10498         (remote_fileio_to_fio_stat): Likewise.
10499
10500 2015-03-11  Andy Wingo  <wingo@igalia.com>
10501
10502         * guile/scm-value.c (gdbscm_value_dynamic_type): Fix typo in which
10503         we were checking the cached type, not the cached dynamic type.
10504
10505 2015-03-11  Andy Wingo  <wingo@igalia.com>
10506
10507         * guile/scm-cmd.c (cmdscm_destroyer): Don't xfree the name and
10508         other strings, as these are on the GC'd heap, and will be
10509         collected along with the smob.
10510
10511 2015-03-11  Andy Wingo  <wingo@igalia.com>
10512
10513         * guile/scm-objfile.c (gdbscm_objfile_progspace): New function.
10514         (objfile_functions): Bind gdbscm_objfile_progspace to
10515         objfile-progspace.
10516         * guile/lib/gdb.scm: Add objfile-progspace to exports.
10517
10518 2015-03-11  Andy Wingo  <wingo@igalia.com>
10519
10520         * guile/guile.c (_initialize_guile): Disable automatic
10521         finalization, if Guile offers us that possibility.
10522         * guile/guile.c (call_initialize_gdb_module):
10523         * guile/scm-safe-call.c (gdbscm_with_catch): Arrange to run
10524         finalizers in appropriate places.
10525         * configure.ac (AC_TRY_LIBGUILE): Add a check for
10526         scm_set_automatic_finalization_enabled.
10527         * configure: Regenerated.
10528
10529 2015-03-11  Andreas Arnez  <arnez@linux.vnet.ibm.com>
10530
10531         * s390-linux-tdep.c (s390_skip_prologue): Skip the prologue using
10532         SAL, if possible.
10533
10534 2015-03-11  Andreas Arnez  <arnez@linux.vnet.ibm.com>
10535
10536         * s390-linux-nat.c (struct arch_lwp_info): New.
10537         (s390_fix_watch_points): Rename to...
10538         (s390_prepare_to_resume): ...this.  Skip the PER info update
10539         unless the watch points have changed.
10540         (s390_refresh_per_info, s390_new_thread): New functions.
10541         (s390_insert_watchpoint): Call s390_refresh_per_info instead of
10542         s390_fix_watch_points.
10543         (s390_remove_watchpoint): Likewise.
10544         (_initialize_s390_nat): Reflect renaming of s390_fix_watch_points.
10545         Register s390_prepare_to_resume.
10546
10547 2015-03-09  Pedro Alves  <palves@redhat.com>
10548
10549         Revert:
10550         2015-03-07  Pedro Alves  <palves@redhat.com>
10551         * common/gdb_socket.h: New file.
10552         * ser-tcp.c: Include gdb_socket.h.  Don't include netinet/in.h nor
10553         sys/socket.h.
10554         (net_open): Use union gdb_sockaddr_u.
10555
10556 2015-03-07  Pedro Alves  <palves@redhat.com>
10557
10558         * configure.ac (build_warnings): Move -Wmissing-prototypes
10559         -Wdeclaration-after-statement -Wmissing-parameter-type
10560         -Wold-style-declaration -Wold-style-definition to the C-specific
10561         set.
10562         * configure: Regenerate.
10563
10564 2015-03-07  Pedro Alves  <palves@redhat.com>
10565
10566         * common/gdb_socket.h: New file.
10567         * ser-tcp.c: Include gdb_socket.h.  Don't include netinet/in.h nor
10568         sys/socket.h.
10569         (net_open): Use union gdb_sockaddr_u.
10570
10571 2015-03-07  Pedro Alves  <palves@redhat.com>
10572
10573         * common/common-exceptions.c [!__cplusplus] (enum catcher_state)
10574         (exceptions_state_mc_action_iter)
10575         (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
10576         Don't define.
10577         [__cplusplus] (try_scope_depth): New global.
10578         [__cplusplus] (exception_try_scope_entry)
10579         (exception_try_scope_exit, gdb_exception_sliced_copy)
10580         (exception_rethrow): New functions.
10581         (throw_exception): In C++ mode, throw
10582         gdb_exception_RETURN_MASK_QUIT for RETURN_QUIT and
10583         gdb_exception_RETURN_MASK_ERROR for RETURN_ERROR.
10584         (throw_it): In C++ mode, use try_scope_depth.
10585         * common/common-exceptions.h [!__cplusplus]
10586         (exceptions_state_mc_action_iter)
10587         (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
10588         Don't declare.
10589         [__cplusplus] (exception_try_scope_entry)
10590         (exception_try_scope_exit, exception_rethrow): Declare.
10591         [__cplusplus] (struct exception_try_scope): New struct.
10592         [__cplusplus] (TRY, CATCH, END_CATCH): Reimplement on top of real
10593         C++ exceptions.
10594         (struct gdb_exception_RETURN_MASK_ALL)
10595         (struct gdb_exception_RETURN_MASK_ERROR)
10596         (struct gdb_exception_RETURN_MASK_QUIT): New types.
10597
10598 2015-03-07  Pedro Alves  <palves@redhat.com>
10599
10600         * main.c (handle_command_errors): Remove volatile qualifier from
10601         parameter.
10602
10603 2015-03-07  Pedro Alves  <palves@redhat.com>
10604
10605         * breakpoint.c (save_breakpoints): Adjust to avoid code between
10606         TRY and CATCH.
10607         * gdbtypes.c (safe_parse_type): Remove empty line.
10608         (types_deeply_equal):
10609         * guile/scm-frame.c (gdbscm_frame_name):
10610         * linux-thread-db.c (find_new_threads_once):
10611         * python/py-breakpoint.c (bppy_get_commands):
10612         * record-btrace.c (record_btrace_insert_breakpoint)
10613         (record_btrace_remove_breakpoint, record_btrace_start_replaying)
10614         (record_btrace_start_replaying): Adjust to avoid code between TRY
10615         and CATCH.
10616
10617 2015-03-07  Pedro Alves  <palves@redhat.com>
10618
10619         * common/common-exceptions.c (struct catcher) <exception>: No
10620         longer a pointer to volatile exception.  Now an exception value.
10621         <mask>: Delete field.
10622         (exceptions_state_mc_init): Remove all parameters.  Adjust.
10623         (exceptions_state_mc): No longer pop the catcher here.
10624         (exceptions_state_mc_catch): New function.
10625         (throw_exception): Adjust.
10626         * common/common-exceptions.h (exceptions_state_mc_init): Remove
10627         all parameters.
10628         (exceptions_state_mc_catch): Declare.
10629         (TRY_CATCH): Rename to ...
10630         (TRY): ... this.  Remove EXCEPTION and MASK parameters.
10631         (CATCH, END_CATCH): New.
10632         All callers adjusted.
10633
10634 2015-03-07  Tom Tromey  <tromey@redhat.com>
10635
10636         * top.c (quit_force): Inline and delete DO_TRY, DO_PRINT_EX.
10637
10638 2015-03-07  Pedro Alves  <palves@redhat.com>
10639
10640         * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache)
10641         (amd64_epilogue_frame_cache): Normal exception handling code.
10642         * break-catch-throw.c (check_status_exception_catchpoint)
10643         (re_set_exception_catchpoint): Ditto.
10644         * cli/cli-interp.c (safe_execute_command):
10645         * cli/cli-script.c (script_from_file): Ditto.
10646         * compile/compile-c-symbols.c (generate_c_for_for_one_variable):
10647         Ditto.
10648         * compile/compile-object-run.c (compile_object_run): Ditto.
10649         * cp-abi.c (baseclass_offset): Ditto.
10650         * cp-valprint.c (cp_print_value): Ditto.
10651         * exceptions.c (catch_exceptions_with_msg):
10652         * frame-unwind.c (frame_unwind_try_unwinder): Ditto.
10653         * frame.c (get_frame_address_in_block_if_available): Ditto.
10654         * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache)
10655         (i386_sigtramp_frame_cache): Ditto.
10656         * infcmd.c (post_create_inferior): Ditto.
10657         * linespec.c (parse_linespec, find_linespec_symbols):
10658         * p-valprint.c (pascal_object_print_value): Ditto.
10659         * parse.c (parse_expression_for_completion): Ditto.
10660         * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
10661         * remote.c (remote_get_noisy_reply): Ditto.
10662         * s390-linux-tdep.c (s390_frame_unwind_cache): Ditto.
10663         * solib-svr4.c (solib_svr4_r_map): Ditto.
10664
10665 2015-03-06  Gary Benson  <gbenson@redhat.com>
10666
10667         * common/common-utils.h (startswith): New inline function.
10668         All places where this logic was used updated to use the above.
10669
10670 2015-03-05  Pedro Alves  <palves@redhat.com>
10671
10672         PR gdb/18002
10673         * mem-break.c (default_memory_insert_breakpoint): Set shadow_len
10674         after reading the breakpoint's shadow memory.
10675
10676 2015-03-05  Mark Kettenis  <kettenis@gnu.org>
10677
10678         * hppabsd-nat.c: Remove file.
10679         * hppaobsd-nat.c: New file.
10680         * Makefile.in (ALLDEPFILES): Remove hppabsd-nat.c.  Add
10681         hppaobsd-nat.c.
10682         * config/pa/obsd.mh (NATDEPFILES): Replace hppabsd-nat.o with
10683         hppaobsd-nat.o.
10684
10685 2015-03-04  Pedro Alves  <palves@redhat.com>
10686
10687         * target.h (struct target_ops) <to_decr_pc_after_break>: Delete.
10688         (target_decr_pc_after_break): Delete declaration.
10689         * target.c (default_target_decr_pc_after_break)
10690         (target_decr_pc_after_break): Delete.
10691         * linux-nat.c (check_stopped_by_breakpoint, linux_nat_wait_1): Use
10692         gdbarch_decr_pc_after_break instead of target_decr_pc_after_break.
10693         * linux-thread-db.c (check_event): Likewise.
10694         * infrun.c (adjust_pc_after_break): Likewise.
10695         * darwin-nat.c (cancel_breakpoint): Likewise.
10696         * aix-thread.c (aix_thread_wait): Likewise.
10697         * target-delegates.c: Regenerate.
10698
10699 2015-03-04  Pedro Alves  <palves@redhat.com>
10700
10701         * linux-nat.c (save_sigtrap): Check for breakpoints before
10702         checking watchpoints.
10703         (status_callback) [USE_SIGTRAP_SIGINFO]: Don't check whether a
10704         breakpoint is inserted if relying on SIGTRAP's siginfo.si_code.
10705         (check_stopped_by_breakpoint) [USE_SIGTRAP_SIGINFO]: Decide whether
10706         a breakpoint triggered based on the SIGTRAP's siginfo.si_code.
10707         (linux_nat_stopped_by_sw_breakpoint)
10708         (linux_nat_supports_stopped_by_sw_breakpoint)
10709         (linux_nat_stopped_by_hw_breakpoint)
10710         (linux_nat_supports_stopped_by_hw_breakpoint): New functions.
10711         (linux_nat_wait_1): Don't re-increment the PC if relying on
10712         SIGTRAP's siginfo->si_code.
10713         (linux_nat_add_target): Install new target methods.
10714         * linux-thread-db.c (check_event): Don't account for breakpoint PC
10715         offset if the target already adjusted the PC.
10716         * nat/linux-ptrace.h (USE_SIGTRAP_SIGINFO): New.
10717         (GDB_ARCH_TRAP_BRKPT): New.
10718         (TRAP_HWBKPT): Define if not already defined.
10719
10720 2015-03-04  Pedro Alves  <palves@redhat.com>
10721
10722         * NEWS: Mention the new "swbreak" and "hwbreak" stop reasons.
10723         * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p>:
10724         Delete field.
10725         <stop_reason>: New field.
10726         (PACKET_swbreak_feature, PACKET_hwbreak_feature): New enum values.
10727         (packet_set_cmd_state): New function.
10728         (remote_protocol_features): Register the "swbreak" and "hwbreak"
10729         features.
10730         (remote_query_supported): If not disabled with the corresponding
10731         "set remote foo-packet" command, report support for the swbreak
10732         and hwbreak features.
10733         (struct stop_reply) <remote_stopped_by_watchpoint_p>: Delete
10734         field.
10735         <stop_reason>: New field.
10736         (remote_parse_stop_reply): Handle "swbreak" and "hwbreak".
10737         (remote_wait_as): Adjust.
10738         (remote_stopped_by_sw_breakpoint)
10739         (remote_supports_stopped_by_sw_breakpoint)
10740         (remote_stopped_by_hw_breakpoint)
10741         (remote_supports_stopped_by_hw_breakpoint): New functions.
10742         (remote_stopped_by_watchpoint): New function.
10743         (init_remote_ops): Install them.
10744         (_initialize_remote): Register new "set/show remote
10745         swbreak-feature-packet" and "set/show remote
10746         swbreak-feature-packet" commands.
10747
10748 2015-03-04  Pedro Alves  <palves@redhat.com>
10749
10750         * btrace.h: Include target/waitstatus.h.
10751         (struct btrace_thread_info) <stop_reason>: New field.
10752         * record-btrace.c (record_btrace_step_thread): Use
10753         record_check_stopped_by_breakpoint instead of breakpoint_here_p.
10754         (record_btrace_decr_pc_after_break): Delete.
10755         (record_btrace_stopped_by_sw_breakpoint)
10756         (record_btrace_supports_stopped_by_sw_breakpoint)
10757         (record_btrace_stopped_by_hw_breakpoint)
10758         (record_btrace_supports_stopped_by_hw_breakpoint): New functions.
10759         (init_record_btrace_ops): Install them.
10760         * record-full.c (record_full_hw_watchpoint): Delete and replace
10761         with ...
10762         (record_full_stop_reason): ... this throughout.
10763         (record_full_exec_insn): Adjust.
10764         (record_full_wait_1): Adjust.  No longer re-increment the PC.
10765         (record_full_wait_1): Adjust.  Use
10766         record_check_stopped_by_breakpoint instead of breakpoint_here_p.
10767         (record_full_stopped_by_watchpoint): Adjust.
10768         (record_full_stopped_by_sw_breakpoint)
10769         (record_full_supports_stopped_by_sw_breakpoint)
10770         (record_full_supports_stopped_by_sw_breakpoint)
10771         (record_full_stopped_by_hw_breakpoint)
10772         (record_full_supports_stopped_by_hw_breakpoint): New functions.
10773         (init_record_full_ops, init_record_full_core_ops): Install them.
10774         * record.c (record_check_stopped_by_breakpoint): New function.
10775         * record.h: Include target/waitstatus.h.
10776         (record_check_stopped_by_breakpoint): New declaration.
10777
10778 2015-03-04  Pedro Alves  <palves@redhat.com>
10779
10780         enum lwp_stop_reason -> enum target_stop_reason
10781         * linux-nat.c (linux_resume_one_lwp, check_stopped_by_watchpoint)
10782         (linux_nat_stopped_by_watchpoint, status_callback)
10783         (linux_nat_wait_1): Adjust.
10784         * linux-nat.h (enum lwp_stop_reason): Delete.
10785         (struct lwp_info) <stop_reason>: Now an enum target_stop_reason.
10786         * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust.
10787         * target/waitstatus.h (enum target_stop_reason): New.
10788
10789 2015-03-04  Pedro Alves  <palves@redhat.com>
10790
10791         * breakpoint.c (need_moribund_for_location_type): New function.
10792         (bpstat_stop_status): Don't skipping checking moribund locations
10793         of breakpoint types which the target tell caused a stop.
10794         (program_breakpoint_here_p): New function, factored out from ...
10795         (bp_loc_is_permanent): ... this.
10796         (update_global_location_list): Don't create a moribund location if
10797         the target supports reporting stops of the type of the removed
10798         breakpoint.
10799         * breakpoint.h (program_breakpoint_here_p): New declaration.
10800         * infrun.c (adjust_pc_after_break): Return early if the target has
10801         already adjusted the PC.  Add comments.
10802         (handle_signal_stop): If nothing explains a signal, and the target
10803         tells us the stop was caused by a software breakpoint, check if
10804         there's a breakpoint instruction in the memory.  If so, adjust the
10805         PC before presenting the stop to the user.  Otherwise, ignore the
10806         trap.  If nothing explains a signal, and the target tells us the
10807         stop was caused by a hardware breakpoint, ignore the trap.
10808         * target.h (struct target_ops) <to_stopped_by_sw_breakpoint,
10809         to_supports_stopped_by_sw_breakpoint, to_stopped_by_hw_breakpoint,
10810         to_supports_stopped_by_hw_breakpoint>: New fields.
10811         (target_stopped_by_sw_breakpoint)
10812         (target_supports_stopped_by_sw_breakpoint)
10813         (target_stopped_by_hw_breakpoint)
10814         (target_supports_stopped_by_hw_breakpoint): Define.
10815         * target-delegates.c: Regenerate.
10816
10817 2015-03-04  Pedro Alves  <palves@redhat.com>
10818
10819         * infrun.c (follow_fork_inferior): Use the whole of the
10820         inferior_ptid and pending_follow.related_pid ptids instead of
10821         building ptids from the process components.  Adjust verbose output
10822         to use target_pid_to_str.
10823         * linux-nat.c (linux_child_follow_fork): Use the whole of the
10824         inferior_ptid and pending_follow.related_pid ptids instead of
10825         building ptids from the process components.
10826
10827 2015-03-04  Mark Kettenis  <kettenis@gnu.org>
10828
10829         * inf-ptrace.c [PT_GET_PROCESS_STATE]
10830         (inf_ptrace_insert_fork_catchpoint): New function.
10831         (inf_ptrace_remove_fork_catchpoint): New function.
10832         (inf_ptrace_target) [PT_GET_PROCESS_STATE]: Install them.
10833
10834 2015-03-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
10835
10836         * s390-linux-tdep.c (s390_register_name): Return empty string
10837         instead of NULL for registers that shouldn't be visible.
10838
10839 2015-03-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
10840
10841         * s390-linux-tdep.c (s390_gdbarch_init): Use the correct syscall
10842         XML file for 64-bit targets.
10843
10844 2015-03-03  Simon Marchi  <simon.marchi@ericsson.com>
10845
10846         * target.h (find_default_create_inferior): Remove declaration.
10847         (find_default_attach): Likewise.
10848
10849 2015-03-03  Pedro Alves  <palves@redhat.com>
10850
10851         * inf-ptrace.c (inf_ptrace_resume): Remove spurious whitespace.
10852         Use ptid_get_pid to get the overall process id when resuming all
10853         threads.
10854
10855 2015-03-03  Pedro Alves  <palves@redhat.com>
10856
10857         * i386-linux-nat.c (i386_linux_resume): Get the ptrace PID out of
10858         the lwp field of ptid.  Pass the full ptid to get_thread_regcache.
10859         * inf-ptrace.c (get_ptrace_pid): New function.
10860         (inf_ptrace_resume): Use it.
10861         * linux-nat.c (linux_resume_one_lwp): Pass the LWP's ptid ummodified
10862         to the lower layer.
10863
10864 2015-03-03  Markus Metzger  <markus.t.metzger@intel.com>
10865
10866         * nat/linux-btrace.c: Include sys/utsname.h.
10867         (linux_determine_kernel_ptr_bits): New.
10868         (linux_enable_bts): Call linux_determine_kernel_ptr_bits.
10869         * x86-linux-nat.c (x86_linux_enable_btrace): Do not overwrite non-zero
10870         ptr_bits.
10871
10872 2015-03-03  Markus Metzger  <markus.t.metzger@intel.com>
10873
10874         * btrace.c (ftrace_update_function): Treat return as tailcall for
10875         "_dl_runtime_resolve".
10876
10877 2015-03-03  Markus Metzger  <markus.t.metzger@intel.com>
10878
10879         * btrace.h (btrace_function) <lbegin, lend>: Remove.
10880         * btrace.c (ftrace_debug): Do not print the line range.
10881         (ftrace_skip_file, ftrace_update_lines): Remove.
10882         (ftrace_new_function): Remove lbegin and lend initialization.
10883         (btrace_compute_ftrace_bts): Remove call to ftrace_update_lines.
10884         * record-btrace.c (btrace_compute_src_line_range): New.
10885         (btrace_call_history_src_line): Call btrace_compute_src_line_range.
10886
10887 2015-03-02  Pedro Alves  <palves@redhat.com>
10888
10889         * infrun.c (follow_exec): Delete all threads of the process except
10890         the event thread.  Extended comments.
10891
10892 2015-03-02  Joel Brobecker  <brobecker@adacore.com>
10893
10894         * contrib/ari/gdb_ari.sh: Reinstate checks for "true" and "false".
10895
10896 2015-03-02  Joel Brobecker  <brobecker@adacore.com>
10897
10898         * utils.h: Remove <stdbool.h> #include.
10899         (producer_is_gcc): Change return type to "int".
10900         * utils.c (producer_is_gcc): Change return type to int.
10901         Return 1 instead of true, and 0 instead of false.
10902         Adjust function documentation accordingly.
10903
10904 2015-03-02  Andreas Arnez  <arnez@linux.vnet.ibm.com>
10905
10906         * s390-linux-nat.c (have_regset_vxrs): New static variable.
10907         (s390_linux_fetch_inferior_registers): Handle vector registers, if
10908         present.
10909         (s390_linux_store_inferior_registers): Likewise.
10910         (s390_get_hwcap): Remove function.  Embed its logic...
10911         (s390_read_description): ...here.  Yield a target description with
10912         vector registers if applicable.
10913         * s390-linux-tdep.c: Include "features/s390-vx-linux64.c",
10914         "features/s390-tevx-linux64.c", "features/s390x-vx-linux64.c", and
10915         "features/s390x-tevx-linux64.c".
10916         (struct gdbarch_tdep) <v0_full_regnum>: New field.
10917         (s390_dwarf_regmap): Add vector registers.  Remove bogus entries
10918         for "GNU/Linux-specific registers".
10919         (s390_dwarf_reg_r0l): New enum value.
10920         (s390_dwarf_reg_to_regnum): Support vector registers.
10921         (s390_adjust_frame_regnum): Adjust pseudo DWARF register numbers
10922         of GPR lower halves.
10923         (regnum_is_vxr_full): New function.
10924         (s390_register_name): New function.
10925         (s390_pseudo_register_name): Handle v0-v15, which are composed of
10926         f0-f15 and v0l-v15l.
10927         (s390_pseudo_register_type): Likewise.
10928         (s390_pseudo_register_read): Likewise.
10929         (s390_pseudo_register_write): Likewise.
10930         (s390_value_from_register): Account for the fact that values are
10931         placed left-justified in vector registers.
10932         (s390_pseudo_register_reggroup_p): Add pseudo registers v0-v15 to
10933         the vector reggroup and omit them from the general reggroup.
10934         (s390_regmap_vxrs_low, s390_regmap_vxrs_high): New register maps.
10935         (s390_vxrs_low_regset, s390_vxrs_high_regset): New regsets.
10936         (s390_iterate_over_regset_sections): Add iterations for the two
10937         new vector regsets.
10938         (s390_core_read_description): Yield a target description with
10939         vector registers if applicable.
10940         (s390_gdbarch_init): Handle target descriptions with vector
10941         registers.  Add "register_name" gdbarch method.
10942         (_initialize_s390_tdep): Call new tdesc initialization functions.
10943         * s390-linux-tdep.h (HWCAP_S390_VX): New macro.
10944         (S390_V0_LOWER_REGNUM, S390_V1_LOWER_REGNUM, S390_V2_LOWER_REGNUM)
10945         (S390_V3_LOWER_REGNUM, S390_V4_LOWER_REGNUM, S390_V5_LOWER_REGNUM)
10946         (S390_V6_LOWER_REGNUM, S390_V7_LOWER_REGNUM, S390_V8_LOWER_REGNUM)
10947         (S390_V9_LOWER_REGNUM, S390_V10_LOWER_REGNUM)
10948         (S390_V11_LOWER_REGNUM, S390_V12_LOWER_REGNUM)
10949         (S390_V13_LOWER_REGNUM, S390_V14_LOWER_REGNUM)
10950         (S390_V15_LOWER_REGNUM, S390_V16_REGNUM, S390_V17_REGNUM)
10951         (S390_V18_REGNUM, S390_V19_REGNUM, S390_V20_REGNUM)
10952         (S390_V21_REGNUM, S390_V22_REGNUM, S390_V23_REGNUM)
10953         (S390_V24_REGNUM, S390_V25_REGNUM, S390_V26_REGNUM)
10954         (S390_V27_REGNUM, S390_V28_REGNUM, S390_V29_REGNUM)
10955         (S390_V30_REGNUM, S390_V31_REGNUM): New macros.
10956         (S390_NUM_REGS): Adjust value.
10957         (s390_vxrs_low_regset, s390_vxrs_high_regset): Declare.
10958         (tdesc_s390_vx_linux64, tdesc_s390_tevx_linux64)
10959         (tdesc_s390x_vx_linux64, tdesc_s390x_tevx_linux64): Likewise.
10960         * NEWS: Announce S/390 vector register support.
10961
10962 2015-03-02  Andreas Arnez  <arnez@linux.vnet.ibm.com>
10963
10964         * features/s390-tevx-linux64.xml: New file.
10965         * features/s390-vx-linux64.xml: New file.
10966         * features/s390-vx.xml: New file.
10967         * features/s390x-tevx-linux64.xml: New file.
10968         * features/s390x-vx-linux64.xml: New file.
10969         * features/Makefile (WHICH): Add s390-vx-linux64,
10970         s390x-vx-linux64, s390-tevx-linux64, and s390x-tevx-linux64.
10971         (s390-vx-linux64-expedite, s390-tevx-linux64-expedite)
10972         (s390x-vx-linux64-expedite, s390x-tevx-linux64-expedite): New
10973         macros.
10974         * features/s390-tevx-linux64.c: New generated file.
10975         * features/s390-vx-linux64.c: Likewise.
10976         * features/s390x-tevx-linux64.c: Likewise.
10977         * features/s390x-vx-linux64.c: Likewise.
10978         * regformats/s390-tevx-linux64.dat: Likewise.
10979         * regformats/s390-vx-linux64.dat: Likewise.
10980         * regformats/s390x-tevx-linux64.dat: Likewise.
10981         * regformats/s390x-vx-linux64.dat: Likewise.
10982
10983 2015-02-28  Doug Evans  <xdje42@gmail.com>
10984
10985         * symtab.h (struct symtab) <next>: Fix comment.
10986
10987 2015-02-27  Simon Marchi  <simon.marchi@ericsson.com>
10988
10989         * python/python.c (python_GdbModuleDef): Rename GdbMethods to
10990         python_GdbMethods.
10991
10992 2015-02-27  Pedro Alves  <palves@redhat.com>
10993
10994         * dtrace-probe.c (dtrace_probe_ops): Make extern.
10995
10996 2015-02-27  Pedro Alves  <palves@redhat.com>
10997
10998         * common/common-exceptions.h (exception_none): Declare.
10999         * common/common-exceptions.c (exception_none): Moved from
11000         exceptions.c.
11001         (exceptions_state_mc_init): Use exception_none.
11002         * exceptions.c (exception_none): Move to
11003         common/common-exceptions.c.
11004         * exceptions.h (exception_none): Move to
11005         common/common-exceptions.h.
11006
11007 2015-02-27  Pedro Alves  <palves@redhat.com>
11008
11009         * main.c (catch_command_errors, catch_command_errors_const):
11010         Remove 'mask' argument.  Adjust.
11011         (captured_main): Adjust callers.
11012
11013 2015-02-27  Pedro Alves  <palves@redhat.com>
11014
11015         * python/python-internal.h: Include "extension-priv.h".
11016
11017 2015-02-27  Pedro Alves  <palves@redhat.com>
11018
11019         * breakpoint.h (enum print_stop_action): Move further up in the
11020         file.
11021
11022 2015-02-27  Pedro Alves  <palves@redhat.com>
11023
11024         * gdbarch.sh: Include regcache.h.
11025         * gdbarch.h: Regenerate.
11026
11027 2015-02-27  Pedro Alves  <palves@redhat.com>
11028
11029         * arm-tdep.c (decode_insn) <arm_handle_insn, thumb_handle_insn>:
11030         Remove duplicate const.
11031         * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Remove
11032         duplicate const.
11033
11034 2015-02-27  Pedro Alves  <palves@redhat.com>
11035
11036         * cp-valprint.c (vtbl_ptr_name): Use EXPORTED_CONST.
11037         * guile/guile.c (extension_language_guile): Use EXPORTED_CONST.
11038         * features/feature_to_c.sh: Tag the generated xml_builtin array
11039         with extern const in C++ mode.
11040
11041 2015-02-27  Tom Tromey  <tromey@redhat.com>
11042
11043         * minidebug.c (struct lzma_stream): Rename to ...
11044         (struct gdb_lzma_stream): ... this.
11045         (lzma_open, lzma_pread, lzma_close, lzma_stat): Adjust.
11046
11047 2015-02-27  Pedro Alves  <palves@redhat.com>
11048
11049         * mi/mi-cmd-stack.c (mi_apply_ext_lang_frame_filter): New
11050         function.
11051         (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
11052         (mi_cmd_stack_list_variables): Use it.
11053
11054 2015-02-27  Pedro Alves  <palves@redhat.com>
11055
11056         * x86-linux-nat.c (u_debugreg_offset): New function.
11057         (x86_linux_dr_get, x86_linux_dr_set): Use it.
11058
11059 2015-02-27  Pedro Alves  <palves@redhat.com>
11060
11061         * nat/x86-dregs.h (enum target_hw_bp_type): Remove forward
11062         declaration.
11063         Include break-common.h.
11064
11065 2015-02-27  Tom Tromey  <tromey@redhat.com>
11066             Pedro Alves <palves@redhat.com>
11067
11068         * arm-tdep.c (set_fp_model_sfunc, arm_set_abi): Use 'int' for
11069         local used to iterate over enums.
11070         * completer.c (signal_completer): Likewise.
11071         * i386-tdep.c (i386_stap_parse_special_token): Likewise.
11072         * rs6000-tdep.c (powerpc_set_vector_abi): Likewise.
11073         * tui/tui-data.c (tui_next_win, tui_prev_win): Likewise.
11074         * tui/tui-layout.c (next_layout, prev_layout): Likewise.
11075         * tui/tui-win.c (tui_refresh_all_win, tui_rehighlight_all)
11076         (tui_resize_all, tui_set_focus_command, tui_all_windows_info): Likewise.
11077         * tui-wingeneral.c (tui_refresh_all):  Likewise.
11078
11079 2015-02-27  Pedro Alves  <palves@redhat.com>
11080
11081         * target.h: Include "infrun.h".
11082
11083 2015-02-27  Pedro Alves  <palves@redhat.com>
11084
11085         * gdb_proc_service.h: Wrap with EXTERN_C_PUSH/EXTERN_C_POP.
11086
11087 2015-02-27  Pedro Alves  <palves@redhat.com>
11088
11089         * common/agent.h (IPA_SYM_EXPORTED_NAME): New.
11090         (IPA_SYM): Use it.
11091         * common/common-defs.h (EXTERN_C_PUSH, EXTERN_C_POP): New macros.
11092
11093 2015-02-27  Pedro Alves  <palves@redhat.com>
11094
11095         * cli-out.c (_rl_erase_entire_line): Move declaration out of
11096         cli_mld_erase_entire_line, and make it extern "C".
11097         * common/common-defs.h (EXTERN_C): New.
11098         * completer.c (_rl_completion_prefix_display_length)
11099         (_rl_print_completions_horizontally, QSFUNC): Move declarations
11100         out of gdb_display_match_list_1.
11101         (_rl_qsort_string_compare): Move declaration out of
11102         gdb_display_match_list_1, and make it extern "C".
11103         * defs.h (re_comp): Use EXTERN_C.
11104         * maint.c (_mcleanup): Move declaration out of mcleanup_wrapper,
11105         and make it extern "C".
11106         (monstartup): Move declaration out of maintenance_set_profile_cmd,
11107         and make it extern "C".
11108         (main): Move declaration out of maintenance_set_profile_cmd.
11109         * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string): Use
11110         EXTERN_C.
11111
11112 2015-02-27  Pedro Alves  <palves@redhat.com>
11113
11114         * python/python.c (GdbMethods): Rename to ...
11115         (python_GdbMethods): ... this and make extern.
11116         (GdbModuleDef): Rename to ...
11117         (python_GdbModuleDef): ... this and make extern.
11118
11119 2015-02-27  Pedro Alves  <palves@redhat.com>
11120
11121         * record-btrace.c (set_record_btrace_cmdlist)
11122         (show_record_btrace_cmdlist): Remove redefinitions.
11123
11124 2015-02-27  Tom Tromey  <tromey@redhat.com>
11125             Pedro Alves  <palves@redhat.com>
11126
11127         * dwarf2-frame.c (enum cfa_how_kind, struct
11128         dwarf2_frame_state_reg_info): Move out of struct
11129         dwarf2_frame_state.
11130         * dwarf2read.c (struct tu_stats): Move out of struct
11131         dwarf2_per_objfile.
11132         (struct file_entry): Move out of struct line_header.
11133         (struct nextfield, struct nextfnfield, struct fnfieldlist, struct
11134         typedef_field_list): Move out of struct field_info.
11135         * gdbtypes.h (enum dynamic_prop_kind, union dynamic_prop_data):
11136         Move out of struct dynamic_prop.
11137         (union type_owner, union field_location, struct field, struct
11138         range_bounds, union type_specific): Move out of struct main_type.
11139         (struct fn_fieldlist, struct fn_field, struct typedef_field)
11140         (VOFFSET_STATIC): Move out of struct cplus_struct_type.
11141         (struct call_site_target, union call_site_parameter_u, struct
11142         call_site_parameter): Move out of struct call_site.
11143         * m32c-tdep.c (enum m32c_prologue_kind): Move out of struct
11144         m32c_prologue.
11145         (enum srcdest_kind): Move out of struct srcdest.
11146         * main.c (enum cmdarg_kind): Move out of struct cmdarg.
11147         * prologue-value.h (enum prologue_value_kind): Move out of struct
11148         prologue_value.
11149         * s390-linux-tdep.c (enum s390_abi_kind): Move out of struct
11150         gdbarch_tdep.
11151         * stabsread.c (struct nextfield, struct next_fnfieldlist): Move
11152         out of struct field_info.
11153         * symfile.h (struct other_sections): Move out of struct
11154         section_addr_info.
11155         * symtab.c (struct symbol_cache_slot): Move out struct
11156         block_symbol_cache.
11157         * target-descriptions.c (enum tdesc_type_kind): Move out of
11158         typedef struct tdesc_type.
11159         * tui/tui-data.h (enum tui_line_or_address_kind): Move out of
11160         struct tui_line_or_address.
11161         * value.c (enum internalvar_kind, union internalvar_data): Move
11162         out of struct internalvar.
11163         * xtensa-tdep.h (struct ctype_cache): Move out of struct
11164         gdbarch_tdep.
11165
11166 2015-02-27  Tom Tromey  <tromey@redhat.com>
11167             Pedro Alves  <palves@redhat.com>
11168
11169         Rename symbols whose names are reserved C++ keywords throughout.
11170
11171 2015-02-27  Pedro Alves  <palves@redhat.com>
11172
11173         * Makefile.in (COMPILER): New, get it from autoconf.
11174         (COMPILE.pre, CC_LD): Use COMPILER.
11175         (CXX): Get from autoconf instead.
11176         (CXX_FOR_TARGET): Default to g++ instead of gcc.
11177         * acinclude.m4: Include build-with-cxx.m4.
11178         * build-with-cxx.m4: New file.
11179         * configure.ac: Call AC_PROG_CXX and GDB_AC_BUILD_WITH_CXX.
11180         Disable -Werror by default if building in C++ mode.
11181         (build_warnings): Add -Wno-sign-compare, -Wno-write-strings and
11182         -Wno-narrowing in C++ mode.  Only enable -Wpointer-sign in C mode.
11183         Run supported-warning-flags tests with the C++ compiler.
11184         Save/restore CXXFLAGS too.
11185         * configure: Regenerate.
11186
11187 2015-02-27  Pedro Alves  <palves@redhat.com>
11188
11189         * libiberty.m4: New file.
11190         * acinclude.m4: Include libiberty.m4.
11191         * configure.ac: Call libiberty_INIT.
11192         * config.in, configure: Regenerate.
11193
11194 2015-02-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
11195
11196         * s390-linux-tdep.c (s390_gcc_target_options): Not just handle
11197         31-bit targets, but 64-bit targets as well.
11198         (s390_gnu_triplet_regexp): New function.
11199         (s390_gdbarch_init): Set the gcc_target_options gdbarch method for
11200         64-bit targets as well.  Set the gnu_triplet_regexp gdbarch
11201         method.
11202
11203 2015-02-27  Jon TURNEY  <jon.turney@dronecode.org.uk>  (tiny patch)
11204
11205         * windows-nat.c (CONTEXT_DEBUGGER): Remove.
11206         (CONTEXT_DEBUGGER_DR): Add CONTEXT_SEGMENTS.  Incorporate flags
11207         from CONTEXT_DEBUGGER.
11208
11209 2015-02-26  Doug Evans  <dje@google.com>
11210
11211         * gdbtypes.c (internal_type_vptr_fieldno): Add missing call to
11212         CHECK_TYPEDEF.
11213         (set_type_vptr_fieldno): Ditto.
11214         (internal_type_vptr_basetype, set_type_vptr_basetype): Ditto.
11215         * gnu-v3-abi.c (gnuv3_dynamic_class): Ditto.
11216
11217 2015-02-26  Pedro Alves  <palves@redhat.com>
11218
11219         * auto-load.h (file_is_auto_load_safe): Add ATTRIBUTE_PRINTF.
11220         * complaints.c (vcomplaint): Pass argument FMT directly to
11221         printf-like functions instead of complaint->fmt.
11222         * ctf.c (ctf_save_write_metadata): Add ATTRIBUTE_PRINTF.
11223         * darwin-nat.c (inferior_debug): Add ATTRIBUTE_PRINTF.
11224         * compile/compile-loc2c.c (pushf, unary, binary): Add
11225         ATTRIBUTE_PRINTF.
11226         (do_compile_dwarf_expr_to_c): Pass string literal as format string
11227         to pushf.
11228         (BINARY): Pass string literal as format string to 'binary'.
11229         * compile/compile-object-load.c (link_callbacks_einfo): Add
11230         ATTRIBUTE_PRINTF.
11231         * guile/guile-internal.h (gdbscm_printf): Add ATTRIBUTE_PRINTF.
11232
11233 2015-02-26  Pedro Alves  <palves@redhat.com>
11234
11235         * windows-termcap.c: Rename to ...
11236         * stub-termcap.c: ... this.  Adjust header line.
11237         * Makefile.in (SFILES): Refer to stub-termcap.c instead of
11238         windows-termcap.c.
11239         * configure: Regenerate.
11240         * configure.ac: Refer to stub-termcap.o instead of
11241         windows-termcap.o.
11242         * gdb_curses.h: Mention stub-termcap.c instead of
11243         windows-termcap.c.
11244
11245 2015-02-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
11246
11247         * compile/compile-c-symbols.c (convert_one_symbol, convert_symbol_bmsym)
11248         (gcc_symbol_address): Call gnu_ifunc_resolve_addr.
11249
11250 2015-02-26  Antoine Tremblay  <antoine.tremblay@ericsson.com>
11251
11252         * gdb/infcmd.c (print_return_value): use type_to_string to print type.
11253
11254 2015-02-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
11255
11256         * elfread.c (elf_read_minimal_symbols): Use bfd_alloc for
11257         bfd_canonicalize_symtab.
11258
11259 2015-02-25  John Baldwin  <jhb@FreeBSD.org>
11260
11261         * amd64fbsd-nat.c: Include sys/user.h.
11262         (_initialize_amd64fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl
11263         instead of KERN_PS_STRINGS to locate the signal trampoline.
11264         * i386fbsd-nat.c: Include sys/user.h.
11265         (_initialize_i386fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl
11266         instead of KERN_PS_STRINGS to locate the signal trampoline.
11267         * amd64fbsd-tdep.c (amd64fbsd_sigtramp_code): New.
11268         (amd64fbsd_sigtramp_p): New.
11269         (amd64fbsd_sigtramp_start_addr, amd64fbsd_sigtramp_end_addr): No
11270         longer set default values.
11271         (amd64fbsd_init_abi): Set "sigtramp_p" to "amd64fbsd_sigtramp_p".
11272         * i386fbsd-tdep.c (i386fbsd_sigtramp_start)
11273         (i386fbsd_sigtramp_middle, i386fbsd_sigtramp_end)
11274         (i386fbsd_freebsd4_sigtramp_start)
11275         (i386fbsd_freebsd4_sigtramp_middle)
11276         (i386fbsd_freebsd4_sigtramp_end, i386fbsd_osigtramp_start)
11277         (i386fbsd_osigtramp_middle, i386fbsd_osigtramp_end): New.
11278         (i386fbsd_sigtramp_p): New.
11279         (i386fbsd_sigtramp_start_addr, i386fbsd_sigtramp_end_addr): No
11280         longer set default values.
11281         (i386fbsd_init_abi): Set "sigtramp_p" to "i386fbsd_sigtramp_p".
11282
11283 2015-02-25  John Baldwin  <jhb@freebsd.org>
11284
11285         * amd64fbsd-tdep.c (amd64fbsd_sigcontext_addr): Use
11286         get_frame_register instead of frame_unwind_register_unsigned.
11287
11288 2015-02-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
11289
11290         PR build/18033
11291         * compile/compile-c-support.c (c_compute_program): Change // comment.
11292         * compile/compile-object-load.c (setup_sections): Change // comment.
11293
11294 2015-02-26  Joel Brobecker  <brobecker@adacore.com>
11295
11296         PR build/18033:
11297         * iq2000-tdep.c (iq2000_frame_cache): Delete C++-style comment.
11298
11299 2015-02-23  Pedro Alves  <palves@redhat.com>
11300
11301         * remote.c (skip_to_semicolon): New function.
11302         (remote_parse_stop_reply) <T stop reply>: Use it.  Don't
11303         special case the stop reasons that look like hex numbers
11304         upfront.  Instead handle real register numbers after matching
11305         all the known stop reasons.
11306
11307 2015-02-21  Doug Evans  <dje@google.com>
11308
11309         PR c++/17976, symtab/17821
11310         * cp-namespace.c (cp_search_static_and_baseclasses): New parameter
11311         is_in_anonymous.  All callers updated.
11312         (find_symbol_in_baseclass): Ditto.
11313         (cp_lookup_nested_symbol_1): Ditto.  Don't search all static blocks
11314         for symbols in an anonymous namespace.
11315         * dwarf2read.c (namespace_name): Don't call dwarf2_name, fetch
11316         DW_AT_name directly.
11317         (dwarf2_name): Convert missing namespace name to
11318         CP_ANONYMOUS_NAMESPACE_STR.
11319
11320 2015-02-20  Pedro Alves  <palves@redhat.com>
11321
11322         * linux-nat.c (linux_handle_extended_wait): Call
11323         thread_db_notice_clone whenever a new clone LWP is detected.
11324         (linux_stop_and_wait_all_lwps, linux_unstop_all_lwps): New
11325         functions.
11326         * linux-nat.h (thread_db_attach_lwp): Delete declaration.
11327         (thread_db_notice_clone, linux_stop_and_wait_all_lwps)
11328         (linux_unstop_all_lwps): Declare.
11329         * linux-thread-db.c (struct thread_get_info_inout): Delete.
11330         (thread_get_info_callback): Delete.
11331         (thread_from_lwp): Use td_thr_get_info and record_thread.
11332         (thread_db_attach_lwp): Delete.
11333         (thread_db_notice_clone): New function.
11334         (try_thread_db_load_1): If /proc is mounted and shows the
11335         process'es task list, walk over all LWPs and call thread_from_lwp
11336         instead of relying on td_ta_thr_iter.
11337         (attach_thread): Don't call check_thread_signals here.  Split the
11338         tail part of the function (which adds the thread to the core GDB
11339         thread list) to ...
11340         (record_thread): ... this function.  Call check_thread_signals
11341         here.
11342         (thread_db_wait): Don't call thread_db_find_new_threads_1.  Always
11343         call thread_from_lwp.
11344         (thread_db_update_thread_list): Rename to ...
11345         (thread_db_update_thread_list_org): ... this.
11346         (thread_db_update_thread_list): New function.
11347         (thread_db_find_thread_from_tid): Delete.
11348         (thread_db_get_ada_task_ptid): Simplify.
11349         * nat/linux-procfs.c: Include <sys/stat.h>.
11350         (linux_proc_task_list_dir_exists): New function.
11351         * nat/linux-procfs.h (linux_proc_task_list_dir_exists): Declare.
11352
11353 2015-02-20  Pedro Alves  <palves@redhat.com>
11354
11355         * linux-nat.c (lin_lwp_attach_lwp): No longer special case the
11356         main LWP.  Handle the case of waitpid returning 0 if we're already
11357         attached to the LWP.  Don't set the LWP's last_resume_kind to
11358         resume_stop if we already knew about the LWP.
11359         (linux_nat_filter_event): Add debug logs.
11360
11361 2015-02-20  Pedro Alves  <palves@redhat.com>
11362
11363         * target.h (forward_target_decr_pc_after_break): Delete
11364         declaration.
11365
11366 2015-02-20  Pedro Alves  <palves@redhat.com>
11367
11368         PR threads/18006
11369         * linux-thread-db.c (thread_get_info_callback): Return early if
11370         the thread's lwp id is -1.
11371
11372 2015-02-20  Joel Brobecker  <brobecker@adacore.com>
11373
11374         GDB 7.9 released.
11375
11376 2015-02-19  Steve Ellcey  <sellcey@imgtec.com>
11377
11378         * dtrace-probe.c (dtrace_process_dof_probe): Initialize arg.expr.
11379         (dtrace_get_probes) Change type of variable 'dof'.
11380
11381 2015-02-19  Antoine Tremblay  <antoine.tremblay@ericsson.com>
11382
11383         PR breakpoints/16812
11384         * linux-nat.c (linux_nat_filter_event): Report SIGTRAP,SIGILL,SIGSEGV.
11385         * nat/linux-ptrace.c (linux_wstatus_maybe_breakpoint): Add.
11386         * nat/linux-ptrace.h: Add linux_wstatus_maybe_breakpoint.
11387
11388 2015-02-19  David Taylor  <dtaylor@emc.com>
11389
11390         * common/ax.def (setv): Fix consumed entry in setv DEFOP.
11391
11392 2015-02-18  Patrick Palka  <patrick@parcs.ath.cx>
11393
11394         * tui/tui-io.c (tui_handle_resize_during_io): Remove this
11395         function.
11396         (tui_putc): Don't call tui_handle_resize_during_io.
11397         (tui_getc): Likewise.
11398         (tui_mld_getc): Likewise.
11399         * tui/tui-win.c: Include event-loop.h and tui/tui-io.h.
11400         (tui_sigwinch_token): New static variable.
11401         (tui_initialize_win): Adjust documentation.  Set
11402         tui_sigwinch_token.
11403         (tui_async_resize_screen): New asynchronous callback.
11404         (tui_sigwinch_handler): Adjust documentation.  Asynchronously
11405         invoke tui_async_resize_screen.
11406
11407 2015-02-18  Jose E. Marchesi  <jose.marchesi@oracle.com>
11408
11409         * configure: Regenerated.
11410         * configure.ac: Use GDB_AC_TRANSFORM.
11411         * Makefile.in (aclocal_m4_deps): Added transform.m4.
11412         * acinclude.m4: sinclude transform.m4.
11413         * transform.m4: New file.
11414         (GDB_AC_TRANSFORM): New macro.
11415
11416 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
11417
11418         * NEWS: Announce the support for DTrace SDT probes.
11419
11420 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
11421
11422         * amd64-linux-tdep.c: Include "parser-defs.h" and "user-regs.h".
11423         (amd64_dtrace_parse_probe_argument): New function.
11424         (amd64_dtrace_probe_is_enabled): Likewise.
11425         (amd64_dtrace_enable_probe): Likewise.
11426         (amd64_dtrace_disable_probe): Likewise.
11427         (amd64_linux_init_abi): Register the
11428         `gdbarch_dtrace_probe_argument', `gdbarch_dtrace_enable_probe',
11429         `gdbarch_dtrace_disable_probe' and
11430         `gdbarch_dtrace_probe_is_enabled' hooks.
11431         (amd64_dtrace_disabled_probe_sequence_1): New constant.
11432         (amd64_dtrace_disabled_probe_sequence_2): Likewise.
11433         (amd64_dtrace_enable_probe_sequence): Likewise.
11434         (amd64_dtrace_disable_probe_sequence): Likewise.
11435
11436 2015-01-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
11437
11438         * breakpoint.c (BREAK_ARGS_HELP): Help string updated to mention
11439         the -probe-dtrace new vpossible value for PROBE_MODIFIER.
11440         * configure.ac (CONFIG_OBS): dtrace-probe.o added if BFD can
11441         handle ELF files.
11442         * Makefile.in (SFILES): dtrace-probe.c added.
11443         * configure: Regenerate.
11444         * dtrace-probe.c: New file.
11445         (SHT_SUNW_dof): New constant.
11446         (dtrace_probe_type): New enum.
11447         (dtrace_probe_arg): New struct.
11448         (dtrace_probe_arg_s): New typedef.
11449         (struct dtrace_probe_enabler): New struct.
11450         (dtrace_probe_enabler_s): New typedef.
11451         (dtrace_probe): New struct.
11452         (dtrace_probe_is_linespec): New function.
11453         (dtrace_dof_sect_type): New enum.
11454         (dtrace_dof_dofh_ident): Likewise.
11455         (dtrace_dof_encoding): Likewise.
11456         (DTRACE_DOF_ENCODE_LSB): Likewise.
11457         (DTRACE_DOF_ENCODE_MSB): Likewise.
11458         (dtrace_dof_hdr): New struct.
11459         (dtrace_dof_sect): Likewise.
11460         (dtrace_dof_provider): Likewise.
11461         (dtrace_dof_probe): Likewise.
11462         (DOF_UINT): New macro.
11463         (DTRACE_DOF_PTR): Likewise.
11464         (DTRACE_DOF_SECT): Likewise.
11465         (dtrace_process_dof_probe): New function.
11466         (dtrace_process_dof): Likewise.
11467         (dtrace_build_arg_exprs): Likewise.
11468         (dtrace_get_arg): Likewise.
11469         (dtrace_get_probes): Likewise.
11470         (dtrace_get_probe_argument_count): Likewise.
11471         (dtrace_can_evaluate_probe_arguments): Likewise.
11472         (dtrace_evaluate_probe_argument): Likewise.
11473         (dtrace_compile_to_ax): Likewise.
11474         (dtrace_probe_destroy): Likewise.
11475         (dtrace_gen_info_probes_table_header): Likewise.
11476         (dtrace_gen_info_probes_table_values): Likewise.
11477         (dtrace_probe_is_enabled): Likewise.
11478         (dtrace_probe_ops): New variable.
11479         (info_probes_dtrace_command): New function.
11480         (_initialize_dtrace_probe): Likewise.
11481         (dtrace_type_name): Likewise.
11482
11483 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
11484
11485         * gdbarch.sh (dtrace_parse_probe_argument): New.
11486         (dtrace_probe_is_enabled): Likewise.
11487         (dtrace_enable_probe): Likewise.
11488         (dtrace_disable_probe): Likewise.
11489         * gdbarch.c: Regenerate.
11490         * gdbarch.h: Regenerate.
11491
11492 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
11493
11494         * stap-probe.c (stap_probe_ops): Add NULLs in the static
11495         stap_probe_ops for `enable_probe' and `disable_probe'.
11496         * probe.c (enable_probes_command): New function.
11497         (disable_probes_command): Likewise.
11498         (_initialize_probe): Define the cli commands `enable probe' and
11499         `disable probe'.
11500         (parse_probe_linespec): New function.
11501         (info_probes_for_ops): Use parse_probe_linespec.
11502         * probe.h (probe_ops): New hooks `enable_probe' and
11503         `disable_probe'.
11504
11505 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
11506
11507         * probe.c (compute_probe_arg): Moved from stap-probe.c
11508         (compile_probe_arg): Likewise.
11509         (probe_funcs): Likewise.
11510         * stap-probe.c (compute_probe_arg): Moved to probe.c.
11511         (compile_probe_arg): Likewise.
11512         (probe_funcs): Likewise.
11513
11514 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
11515
11516         * probe.c (print_ui_out_not_applicables): New function.
11517         (exists_probe_with_pops): Likewise.
11518         (info_probes_for_ops): Do not include column headers for probe
11519         types for which no probe has been actually found on any object.
11520         Also invoke `print_ui_out_not_applicables' in order to match the
11521         column rows with the header when probes of several types are
11522         listed.
11523         Print the "Type" column.
11524         * probe.h (probe_ops): Added a new probe operation `type_name'.
11525         * stap-probe.c (stap_probe_ops): Add `stap_type_name'.
11526         (stap_type_name): New function.
11527
11528 2015-02-17  Patrick Palka  <patrick@parcs.ath.cx>
11529
11530         * tui/tui-io.c (tui_getc): Don't call key_is_command_char.
11531         (key_is_command_char): Delete.
11532
11533 2015-02-17  Pedro Alves  <palves@redhat.com>
11534
11535         * tui/tui.c (tui_enable): Resize windows before anything
11536         might show a window.
11537
11538 2015-02-17  Max Ostapenko  <m.ostapenko@partner.samsung.com>
11539
11540         PR gdb/17984
11541         * aarch64-linux-nat.c: Don't include features/aarch64.c anymore.
11542         (aarch64_linux_read_description): Remove initialize_tdesc_aarch64
11543         call.
11544         * aarch64-tdep.h (tdesc_aarch64): Declare.
11545
11546 2015-02-12  Mark Wielaard  <mjw@redhat.com>
11547
11548         * contrib/ari/gdb_ari.sh: Remove checks for "true" and "false".
11549
11550 2015-02-13  Doug Evans  <dje@google.com>
11551
11552         * cp-namespace.c (cp_basic_lookup_symbol): Rename parameter
11553         anonymous_namespace to is_in_anonymous for consistency with the rest
11554         of the file.
11555         (cp_lookup_bare_symbol): Fix typo in comment.
11556         (cp_search_static_and_baseclasses): Ditto.
11557         (search_symbol_list): Use vertical space in comment better.
11558         (reset_directive_searched): Ditto. Fix typo.
11559         (cp_lookup_nested_symbol_1): Clarify contents of NESTED_NAME parameter.
11560
11561 2015-02-13  Yao Qi  <yao.qi@arm.com>
11562
11563         * MAINTAINERS: Update my email address.
11564
11565 2015-02-12  Doug Evans  <dje@google.com>
11566
11567         * symtab.c (completion_list_add_name): Fix memory leak.
11568
11569 2015-02-12  Doug Evans  <dje@google.com>
11570
11571         * completer.c (complete_line): Remove incorrect comment.
11572
11573 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
11574
11575         * python/py-framefilter.c (py_print_single_arg, enumerate_locals)
11576         (py_print_frame): Use RETURN_MASK_ERROR.
11577
11578 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
11579
11580         * python/py-framefilter.c (py_print_frame): Mention RETURN_QUIT in
11581         function comment.  Wrap all function that can throw in cleanups.
11582         (gdbpy_apply_frame_filter): Wrap all function that can throw in
11583         cleanups.
11584
11585 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
11586
11587         * python/py-framefilter.c (py_print_frame): Substitute goto error.
11588         Remove the error label.
11589
11590 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
11591
11592         * python/py-framefilter.c (py_print_frame): Put conditional code paths
11593         with goto first, indent the former else codepath left.  Put variable
11594         'elided' to a new inner block.
11595
11596 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
11597
11598         * python/py-framefilter.c (py_print_frame): Whitespacing fixes.
11599
11600 2015-02-11  Pedro Alves  <palves@redhat.com>
11601
11602         * xcoffread.c (within_function): Delete.
11603
11604 2015-02-11  Tom Tromey  <tromey@redhat.com>
11605             Pedro Alves <palves@redhat.com>
11606
11607         * breakpoint.c (base_breakpoint_ops): Delete.
11608         * dwarf2loc.c (dwarf_expr_ctx_funcs): Make extern.
11609         * elfread.c (elf_sym_fns_gdb_index, elf_sym_fns_lazy_psyms): Make extern.
11610         * guile/guile.c (guile_extension_script_ops, guile_extension_ops): Make extern.
11611         * ppcnbsd-tdep.c (ppcnbsd2_sigtramp): Make extern.
11612         * python/py-arch.c (arch_object_type): Make extern.
11613         * python/py-block.c (block_syms_iterator_object_type): Make extern.
11614         * python/py-bpevent.c (breakpoint_event_object_type): Make extern.
11615         * python/py-cmd.c (cmdpy_object_type): Make extern.
11616         * python/py-continueevent.c (continue_event_object_type)
11617         * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Remove 'qual'
11618         parameter.  Update all callers.
11619         * python/py-evtregistry.c (eventregistry_object_type): Make extern.
11620         * python/py-exitedevent.c (exited_event_object_type): Make extern.
11621         * python/py-finishbreakpoint.c (finish_breakpoint_object_type): Make extern.
11622         * python/py-function.c (fnpy_object_type): Make extern.
11623         * python/py-inferior.c (inferior_object_type, membuf_object_type): Make extern.
11624         * python/py-infevents.c (call_pre_event_object_type)
11625         (inferior_call_post_event_object_type).
11626         (memory_changed_event_object_type): Make extern.
11627         * python/py-infthread.c (thread_object_type): Make extern.
11628         * python/py-lazy-string.c (lazy_string_object_type): Make extern.
11629         * python/py-linetable.c (linetable_entry_object_type)
11630         (linetable_object_type, ltpy_iterator_object_type): Make extern.
11631         * python/py-newobjfileevent.c (new_objfile_event_object_type)
11632         (clear_objfiles_event_object_type): Make extern.
11633         * python/py-objfile.c (objfile_object_type): Make extern.
11634         * python/py-param.c (parmpy_object_type): Make extern.
11635         * python/py-progspace.c (pspace_object_type): Make extern.
11636         * python/py-signalevent.c (signal_event_object_type): Make extern.
11637         * python/py-symtab.c (symtab_object_type, sal_object_type): Make extern.
11638         * python/py-type.c (type_object_type, field_object_type)
11639         (type_iterator_object_type): Make extern.
11640         * python/python.c (python_extension_script_ops)
11641         (python_extension_ops): Make extern.
11642         * stap-probe.c (stap_probe_ops): Make extern.
11643
11644 2015-02-11  Pedro Alves  <pedro@codesourcery.com>
11645
11646         * infrun.c (adjust_pc_after_break): Don't adjust the PC just
11647         because the event thread is not the current thread.
11648
11649 2015-02-11  Doug Evans  <xdje42@gmail.com>
11650
11651         * gdbtypes.c (internal_type_self_type): If TYPE_SPECIFIC_FIELD hasn't
11652         been initialized yet, return NULL.
11653
11654 2015-02-11  Doug Evans  <dje@google.com>
11655
11656         * symfile.h (new_symfile_objfile): Delete.
11657         * symfile.c (finish_new_objfile): Renamed from new_symfile_objfile.
11658         All callers updated.
11659
11660 2015-02-11  Patrick Palka  <patrick@parcs.ath.cx>
11661
11662         * tui/tui-io.c (tui_handle_resize_during_io): Call
11663         tui_update_gdb_sizes() after resizing the screen.
11664         * tui/tui.c (tui_enable): Resize the terminal before
11665         calling tui_update_gdb_sizes().
11666
11667 2015-02-11  Patrick Palka  <patrick@parcs.ath.cx>
11668
11669         * tui/tui-io.c (tui_getc): Move cursor to the end of the command
11670         line before printing a newline.
11671
11672 2015-02-11  Mark Wielaard  <mjw@redhat.com>
11673
11674         * utils.c (producer_is_gcc): Return true or false.
11675
11676 2015-02-10  Mark Wielaard  <mjw@redhat.com>
11677
11678         * utils.h (producer_is_gcc): Change return type to bool. Add major
11679         argument.
11680         * utils.c (producer_is_gcc): Likewise.
11681         (producer_is_gcc_ge_4): Adjust producer_is_gcc call.
11682         * dwarf2read.c (check_producer): Likewise.
11683
11684 2015-02-10  Pedro Alves  <palves@redhat.com>
11685
11686         * infrun.c (displaced_step_fixup): Switch to the event thread
11687         before calling gdbarch_displaced_step_fixup.
11688
11689 2015-02-10  Antoine Tremblay <antoine.tremblay@ericsson.com>
11690
11691         * MAINTAINERS (Write After Approval): Add Antoine Tremblay.
11692
11693 2015-02-10  Simon Marchi  <simon.marchi@ericsson.com>
11694
11695         * ada-varobj.c (ada_name_of_child): Constify parent.
11696         (ada_path_expr_of_child): Same.
11697         (ada_value_of_child): Same.
11698         (ada_type_of_child): Same.
11699         * c-varobj.c (c_is_path_expr_parent): Same.
11700         (c_describe_child): Same.
11701         (c_name_of_child): Same.
11702         (c_value_of_child): Same.
11703         (c_type_of_child): Same.
11704         (cplus_number_of_children): Same.
11705         (cplus_describe_child): Constify var.
11706         (cplus_name_of_child): Constify parent.
11707         (cplus_value_of_child): Same.
11708         (cplus_type_of_child): Same.
11709         * jv-varobj.c (java_name_of_child): Same.
11710         (java_value_of_child): Same.
11711         (java_type_of_child): Same.
11712         * varobj.c (value_of_child): Same.
11713         (varobj_default_is_path_expr_parent): Constify var, parent and return
11714         value.
11715         (varobj_get_path_expr): Constify var, modify path_expr through
11716         mutable_var.
11717         (install_new_value): Constify parent.
11718         (value_of_child): Constify parent.
11719         * varobj.h (struct varobj): Constify parent.
11720         (struct lang_varobj_ops): Constify name_of_child, value_of_child and
11721         type_of_child.
11722         (varobj_get_path_expr): Constify var.
11723         (varobj_get_path_expr_parent): Constify var and return value.
11724
11725 2015-02-10  Luis Machado  <lgustavo@codesourcery.com>
11726
11727         * arm-tdep.c (arm_prologue_unwind_stop_reason): New function.
11728         (arm_prologue_this_id): Move PC and SP limit checks to
11729         arm_prologue_unwind_stop_reason.
11730         (arm_prologue_unwind) <stop_reason> : Set to
11731         arm_prologue_unwind_stop_reason.
11732
11733 2015-02-09  Mark Wielaard  <mjw@redhat.com>
11734
11735         * dwarf2read.c (set_cu_language): Recognize DW_LANG_Fortran03 and
11736         DW_LANG_Fortran08 as language_fortran.
11737
11738 2015-02-09  Sergio Durigan Junior  <sergiodj@redhat.com>
11739
11740         PR remote/17946
11741         * gdb/remote.c (remote_parse_stop_reply): Fix wrong comparison
11742         of pointer against char.
11743
11744 2015-02-09  Mark Wielaard  <mjw@redhat.com>
11745
11746         * c-typeprint.c (cp_type_print_method_args): Handle '_Atomic'.
11747         (c_type_print_modifier): Likewise.
11748         * dwarf2read.c (read_tag_atomic_type): New function.
11749         (read_type_die_1): Handle DW_TAG_atomic_type.
11750         * gdbtypes.c (make_atomic_type): New function.
11751         (recursive_dump_type): Handle TYPE_ATOMIC.
11752         * gdbtypes.h (enum type_flag_values): Renumber.
11753         (enum type_instance_flag_value): Add TYPE_INSTANCE_FLAG_ATOMIC.
11754         (TYPE_ATOMIC): New macro.
11755         (make_atomic_type): Declare.
11756
11757 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
11758
11759         * btrace.c (ftrace_find_call): Skip gaps.
11760         (ftrace_new_function): Initialize level.
11761         (ftrace_new_call, ftrace_new_tailcall, ftrace_new_return)
11762         (ftrace_new_switch): Update
11763         level computation.
11764         (ftrace_new_gap): New.
11765         (ftrace_update_function): Create new function after gap.
11766         (btrace_compute_ftrace_bts): Create gap on error.
11767         (btrace_stitch_bts): Update parameters.  Clear trace if it
11768         becomes empty.
11769         (btrace_stitch_trace): Update parameters.  Update callers.
11770         (btrace_clear): Reset the number of gaps.
11771         (btrace_insn_get): Return NULL if the iterator points to a gap.
11772         (btrace_insn_number): Return zero if the iterator points to a gap.
11773         (btrace_insn_end): Allow gaps at the end.
11774         (btrace_insn_next, btrace_insn_prev, btrace_insn_cmp): Handle gaps.
11775         (btrace_find_insn_by_number): Assert that the found iterator does
11776         not point to a gap.
11777         (btrace_call_next, btrace_call_prev): Assert that the last function
11778         is not a gap.
11779         * btrace.h (btrace_bts_error): New.
11780         (btrace_function): Update comment.
11781         (btrace_function) <insn, insn_offset, number>: Update comment.
11782         (btrace_function) <errcode>: New.
11783         (btrace_thread_info) <ngaps>: New.
11784         (btrace_thread_info) <replay>: Update comment.
11785         (btrace_insn_get): Update comment.
11786         * record-btrace.c (btrace_ui_out_decode_error): New.
11787         (record_btrace_info): Print number of gaps.
11788         (btrace_insn_history, btrace_call_history): Call
11789         btrace_ui_out_decode_error for gaps.
11790         (record_btrace_step_thread, record_btrace_start_replaying): Skip gaps.
11791
11792 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
11793
11794         * common/btrace-common.h (btrace_cpu_vendor, btrace_cpu): New.
11795         * nat/linux-btrace.c: (btrace_this_cpu): New.
11796         (cpu_supports_bts): Call btrace_this_cpu.
11797         (intel_supports_bts): Add cpu parameter.
11798
11799 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
11800
11801         * btrace.h (btrace_insn_class): New.
11802         (btrace_insn) <size, iclass>: New.
11803         * btrace.c (ftrace_find_call): Update parameters.  Update users.
11804         Use instruction classification.
11805         (ftrace_new_return): Update parameters.  Update users.
11806         (ftrace_update_function): Update parameters.  Update users.  Use
11807         instruction classification.
11808         (ftrace_update_insns): Update parameters.  Update users.
11809         (ftrace_classify_insn): New.
11810         (btrace_compute_ftrace_bts): Fill in new btrace_insn fields.  Add
11811         TRY_CATCH around call to gdb_insn_length.
11812
11813 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
11814
11815         * btrace.c (btrace_compute_ftrace_bts, btrace_compute_ftrace):
11816         Update parameters.  Update users.
11817
11818 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
11819
11820         * btrace.c (parse_xml_btrace_conf_bts): Add size.
11821         (btrace_conf_bts_attributes): New.
11822         (btrace_conf_children): Add attributes.
11823         * common/btrace-common.h (btrace_config_bts): New.
11824         (btrace_config)<bts>: New.
11825         (btrace_config): Update comment.
11826         * nat/linux-btrace.c (linux_enable_btrace, linux_enable_bts):
11827         Use config.
11828         * features/btrace-conf.dtd: Increment version.  Add size
11829         attribute to bts element.
11830         * record-btrace.c (set_record_btrace_bts_cmdlist,
11831         show_record_btrace_bts_cmdlist): New.
11832         (record_btrace_adjust_size, record_btrace_print_bts_conf,
11833         record_btrace_print_conf, cmd_set_record_btrace_bts,
11834         cmd_show_record_btrace_bts): New.
11835         (record_btrace_info): Call record_btrace_print_conf.
11836         (_initialize_record_btrace): Add commands.
11837         * remote.c: Add PACKET_Qbtrace_conf_bts_size enum.
11838         (remote_protocol_features): Add Qbtrace-conf:bts:size packet.
11839         (btrace_sync_conf): Synchronize bts size.
11840         (_initialize_remote): Add Qbtrace-conf:bts:size packet.
11841         * NEWS: Announce new commands and new packets.
11842
11843 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
11844
11845         * Makefile.in (XMLFILES): Add btrace-conf.dtd.
11846         * x86-linux-nat.c (x86_linux_enable_btrace): Update parameters.
11847         (x86_linux_btrace_conf): New.
11848         (x86_linux_create_target): Initialize to_btrace_conf.
11849         * nat/linux-btrace.c (linux_enable_btrace): Update parameters.
11850         Check format.  Split into this and ...
11851         (linux_enable_bts): ... this.
11852         (linux_btrace_conf): New.
11853         (perf_event_skip_record): Renamed into ...
11854         (perf_event_skip_bts_record): ... this.  Updated users.
11855         (linux_disable_btrace): Split into this and ...
11856         (linux_disable_bts): ... this.
11857         (linux_read_btrace): Check format.
11858         * nat/linux-btrace.h (linux_enable_btrace): Update parameters.
11859         (linux_btrace_conf): New.
11860         (btrace_target_info)<ptid>: Moved.
11861         (btrace_target_info)<conf>: New.
11862         (btrace_target_info): Split into this and ...
11863         (btrace_tinfo_bts): ... this.  Updated users.
11864         * btrace.c (btrace_enable): Update parameters.
11865         (btrace_conf, parse_xml_btrace_conf_bts, parse_xml_btrace_conf)
11866         (btrace_conf_children, btrace_conf_attributes)
11867         (btrace_conf_elements): New.
11868         * btrace.h (btrace_enable): Update parameters.
11869         (btrace_conf, parse_xml_btrace_conf): New.
11870         * common/btrace-common.h (btrace_config): New.
11871         * feature/btrace-conf.dtd: New.
11872         * record-btrace.c (record_btrace_conf): New.
11873         (record_btrace_cmdlist): New.
11874         (record_btrace_enable_warn, record_btrace_open): Pass
11875         &record_btrace_conf.
11876         (record_btrace_info): Print recording format.
11877         (cmd_record_btrace_bts_start): New.
11878         (cmd_record_btrace_start): Call cmd_record_btrace_bts_start.
11879         (_initialize_record_btrace): Add "record btrace bts" subcommand.
11880         Add "record bts" alias command.
11881         * remote.c (remote_state)<btrace_config>: New.
11882         (remote_btrace_reset, PACKET_qXfer_btrace_conf): New.
11883         (remote_protocol_features): Add qXfer:btrace-conf:read.
11884         (remote_open_1): Call remote_btrace_reset.
11885         (remote_xfer_partial): Handle TARGET_OBJECT_BTRACE_CONF.
11886         (btrace_target_info)<conf>: New.
11887         (btrace_sync_conf, btrace_read_config): New.
11888         (remote_enable_btrace): Update parameters.  Call btrace_sync_conf and
11889         btrace_read_conf.
11890         (remote_btrace_conf): New.
11891         (init_remote_ops): Initialize to_btrace_conf.
11892         (_initialize_remote): Add qXfer:btrace-conf packet.
11893         * target.c (target_enable_btrace): Update parameters.
11894         (target_btrace_conf): New.
11895         * target.h (target_enable_btrace): Update parameters.
11896         (target_btrace_conf): New.
11897         (target_object)<TARGET_OBJECT_BTRACE_CONF>: New.
11898         (target_ops)<to_enable_btrace>: Update parameters and comment.
11899         (target_ops)<to_btrace_conf>: New.
11900         * target-delegates: Regenerate.
11901         * target-debug.h (target_debug_print_const_struct_btrace_config_p)
11902         (target_debug_print_const_struct_btrace_target_info_p): New.
11903         * NEWS: Announce new command and new packet.
11904
11905 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
11906
11907         * nat/linux-btrace.h (perf_event_buffer): New.
11908         (btrace_target_info) <buffer, size, data_head>: Replace with ...
11909         <bts>: ... this.
11910         * nat/linux-btrace.c (perf_event_header, perf_event_mmap_size)
11911         (perf_event_buffer_size, perf_event_buffer_begin)
11912         (perf_event_buffer_end, linux_btrace_has_changed): Removed.
11913         Updated users.
11914         (perf_event_new_data): New.
11915
11916 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
11917
11918         * btrace.c (btrace_enable): Pass BTRACE_FORMAT_BTS.
11919         * record-btrace.c (record_btrace_open): Remove call to
11920         target_supports_btrace.
11921         * remote.c (remote_supports_btrace): Update parameters.
11922         * target.c (target_supports_btrace): Update parameters.
11923         * target.h (to_supports_btrace, target_supports_btrace): Update
11924         parameters.
11925         * target-delegates.c: Regenerate.
11926         * target-debug.h (target_debug_print_enum_btrace_format): New.
11927         * nat/linux-btrace.c
11928         (kernel_supports_btrace): Rename into ...
11929         (kernel_supports_bts): ... this.  Update users.  Update warning text.
11930         (intel_supports_btrace): Rename into ...
11931         (intel_supports_bts): ... this.  Update users.
11932         (cpu_supports_btrace): Rename into ...
11933         (cpu_supports_bts): ... this.  Update users.
11934         (linux_supports_btrace): Update parameters.  Split into this and ...
11935         (linux_supports_bts): ... this.
11936         * nat/linux-btrace.h (linux_supports_btrace): Update parameters.
11937
11938 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
11939
11940         * Makefile.in (SFILES): Add common/btrace-common.c.
11941         (COMMON_OBS): Add common/btrace-common.o.
11942         (btrace-common.o): Add build rules.
11943         * btrace.c (parse_xml_btrace): Update parameters.
11944         (parse_xml_btrace_block): Set format field.
11945         (btrace_add_pc, btrace_fetch): Use struct btrace_data.
11946         (do_btrace_data_cleanup, make_cleanup_btrace_data): New.
11947         (btrace_compute_ftrace): Split into this and...
11948         (btrace_compute_ftrace_bts): ...this.
11949         (btrace_stitch_trace): Split into this and...
11950         (btrace_stitch_bts): ...this.
11951         * btrace.h (parse_xml_btrace): Update parameters.
11952         (make_cleanup_btrace_data): New.
11953         * common/btrace-common.c: New.
11954         * common/btrace-common.h: Include common-defs.h.
11955         (btrace_block_s): Update comment.
11956         (btrace_format): New.
11957         (btrace_format_string): New.
11958         (btrace_data_bts): New.
11959         (btrace_data): New.
11960         (btrace_data_init, btrace_data_fini, btrace_data_empty): New.
11961         * remote.c (remote_read_btrace): Update parameters.
11962         * target.c (target_read_btrace): Update parameters.
11963         * target.h (target_read_btrace): Update parameters.
11964         (target_ops)<to_read_btrace>: Update parameters.
11965         * x86-linux-nat.c (x86_linux_read_btrace): Update parameters.
11966         * target-delegates.c: Regenerate.
11967         * target-debug (target_debug_print_struct_btrace_data_p): New.
11968         * nat/linux-btrace.c (linux_read_btrace): Split into this and...
11969         (linux_read_bts): ...this.
11970         * nat/linux-btrace.h (linux_read_btrace): Update parameters.
11971
11972 2015-02-06  Doug Evans  <dje@google.com>
11973
11974         * remote-m32r-sdi.c: Include symfile.h.
11975
11976 2015-02-06  Doug Evans  <dje@google.com>
11977
11978         * symtab.h (clear_symtab_users, deduce_language_from_filename): Move
11979         * symfile.h (clear_symtab_users, deduce_language_from_filename): ...
11980         to here.
11981
11982 2015-02-06  Pedro Alves  <palves@redhat.com>
11983
11984         * linux-thread-db.c (find_new_threads_callback): Add debug output.
11985
11986 2015-02-06  Simon Marchi  <simon.marchi@ericsson.com>
11987
11988         PR gdb/15678
11989         * breakpoint.c (map_breakpoint_numbers): Check for empty args string.
11990         (enable_count_command): Check args for NULL value.
11991
11992 2015-02-05  Doug Evans  <xdje42@gmail.com>
11993
11994         * guile/scm-frame.c: Fix spelling errors in a comment.
11995
11996 2015-02-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
11997
11998         * python/python-internal.h (Py_hash_t): Define it for Python <3.2.
11999         * python/py-value.c (valpy_fetch_lazy): Use it.  Remove cast to the
12000         return type.
12001
12002 2015-02-04  Pedro Alves  <palves@redhat.com>
12003
12004         * linux-nat.c (handle_extended_wait): Don't resume LWPs here.
12005         (wait_lwp): Don't call wait_lwp if linux_handle_extended_wait
12006         returns true.
12007         (resume_stopped_resumed_lwps): Don't check whether the thread is
12008         marked as executing.
12009         (linux_nat_wait_1): Use resume_stopped_resumed_lwps.
12010
12011 2015-02-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
12012
12013         * regset.h (struct regset): Add flags field.
12014         (REGSET_VARIABLE_SIZE): New value for a regset's flags field.
12015         * corelow.c (get_core_register_section): Add warning if the size
12016         exceeds the requested size and the regset does not have the
12017         REGSET_VARIABLE_SIZE flag set.
12018         * alphanbsd-tdep.c (alphanbsd_gregset): Add REGSET_VARIABLE_SIZE
12019         flag.
12020         * armbsd-tdep.c (armbsd_gregset): Likewise.
12021         * hppa-hpux-tdep.c (hppa_hpux_regset): Likewise.
12022         * hppaobsd-tdep.c (hppaobsd_gregset): Likewise.
12023         * m68kbsd-tdep.c (m68kbsd_gregset): Likewise.
12024         * mipsnbsd-tdep.c (mipsnbsd_gregset): Likewise.
12025
12026 2015-02-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
12027
12028         * amd64-linux-tdep.c (amd64_linux_iterate_over_regset_sections):
12029         For ".reg-xstate", explicitly specify the requested section size
12030         via X86_XSTATE_SIZE instead of just 0 on input and
12031         X86_XSTATE_MAX_SIZE on output.
12032         * i386-linux-tdep.c (i386_linux_iterate_over_regset_sections):
12033         Likewise.
12034
12035 2015-02-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
12036
12037         PR corefiles/17808:
12038         * gdbarch.sh (iterate_over_regset_sections_cb): Document this
12039         function type, particularly its SIZE parameter.
12040         * gdbarch.h: Regenerate.
12041         * amd64-tdep.c (amd64_supply_fpregset): In gdb_assert, compare
12042         actual against required size using ">=" instead of "==".
12043         (amd64_collect_fpregset): Likewise.
12044         * i386-tdep.c (i386_supply_gregset): Likewise.
12045         (i386_collect_gregset): Likewise.
12046         (i386_supply_fpregset): Likewise.
12047         (i386_collect_fpregset): Likewise.
12048         * mips-linux-tdep.c (mips_supply_gregset_wrapper): Likewise.
12049         (mips_fill_gregset_wrapper): Likewise.
12050         (mips_supply_fpregset_wrapper): Likewise.
12051         (mips_fill_fpregset_wrapper): Likewise.
12052         (mips64_supply_gregset_wrapper): Likewise.
12053         (mips64_fill_gregset_wrapper): Likewise.
12054         (mips64_supply_fpregset_wrapper): Likewise.
12055         (mips64_fill_fpregset_wrapper): Likewise.
12056         * mn10300-linux-tdep.c (am33_supply_gregset_method): Likewise.
12057         (am33_supply_fpregset_method): Likewise.
12058         (am33_collect_gregset_method): Likewise.
12059         (am33_collect_fpregset_method): Likewise.
12060
12061 2015-02-04  Doug Evans  <dje@google.com>
12062             Pedro Alves  <palves@redhat.com>
12063             Eli Zaretskii  <eliz@gnu.org>
12064
12065         PR tui/17810
12066         * tui/tui-command.c (tui_refresh_cmd_win): New function.
12067         * tui/tui-command.c (tui_refresh_cmd_win): Declare.
12068         * tui/tui-file.c: #include tui/tui-command.h.
12069         (tui_file_fputs): Refresh command window if stream is not gdb_stdout.
12070         (tui_file_flush): Refresh command window if stream is gdb_stdout.
12071         * tui/tui-io.c (tui_puts): Remove calls to wrefresh, fflush.
12072
12073 2015-02-04  Pedro Alves  <palves@redhat.com>
12074
12075         Fix build breakage.
12076         * event-loop.c (gdb_do_one_event): Add default switch case.
12077
12078 2015-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
12079
12080         Filter out inferior gcc option -fpreprocessed.
12081         * compile/compile.c (filter_args): New function.
12082         (get_args): Use it.
12083
12084 2015-02-03  Pedro Alves  <palves@redhat.com>
12085
12086         * event-loop.c: Don't declare nor define a queue type for
12087         gdb_event_p.
12088         (event_queue): Delete.
12089         (create_event, create_file_event, gdb_event_xfree)
12090         (initialize_event_loop, process_event): Delete.
12091         (gdb_do_one_event): Return as soon as one event is handled.
12092         (handle_file_event): Change prototype.  Used the passed in
12093         file_handler pointer and ready_mask instead of looping over all
12094         file handlers.
12095         (gdb_wait_for_event): Update the poll/select timeouts before
12096         blocking.  Run event handlers directly instead of queueing events.
12097         Return as soon as one event is handled.
12098         (struct async_event_handler_data): Delete.
12099         (invoke_async_event_handler): Delete.
12100         (check_async_event_handlers): Change return type to int.  Run
12101         event handlers directly instead of queueing events.  Return as
12102         soon as one event is handled.
12103         (handle_timer_event): Delete.
12104         (update_wait_timeout): New function, factored out from
12105         poll_timers.
12106         (poll_timers): Reimplement.
12107         * event-loop.h (initialize_event_loop): Delete declaration.
12108         * top.c (gdb_init): Don't call initialize_event_loop.
12109
12110 2015-02-03  Pedro Alves  <palves@redhat.com>
12111
12112         * event-loop.c (clear_async_event_handler): New function.
12113         * event-loop.h (clear_async_event_handler): New declaration.
12114         * record-btrace.c (record_btrace_async): New function.
12115         (init_record_btrace_ops): Install record_btrace_async.
12116         * record-full.c (record_full_async): New function.
12117         (record_full_resume): Don't mark the async event source here.
12118         (init_record_full_ops): Install record_full_async.
12119         (record_full_core_resume): Don't mark the async event source here.
12120         (init_record_full_core_ops): Install record_full_async.
12121         * remote.c (remote_async): Mark and clear the async stop reply
12122         queue event-loop token as appropriate.
12123
12124 2015-02-03  Pedro Alves  <palves@redhat.com>
12125
12126         * linux-nat.c (linux_child_follow_fork, linux_nat_wait_1): Use
12127         target_is_async_p instead of target_can_async.
12128         (linux_nat_wait): Use target_is_async_p instead of
12129         target_can_async.  Don't enable async here.
12130         * remote.c (interrupt_query, remote_wait, putpkt_binary): Use
12131         target_is_async_p instead of target_can_async.
12132
12133 2015-02-02  Simon Marchi  <simon.marchi@ericsson.com>
12134
12135         * varobj.h (lang_varobj_ops): Mention which return values need
12136         to be freed.
12137
12138 2015-02-02  Joel Brobecker  <brobecker@adacore.com>
12139
12140         * dwarf2loc.c (dwarf2_evaluate_property): Add i18n marker.
12141
12142 2015-02-02  Joel Brobecker  <brobecker@adacore.com>
12143
12144         PR gdb/17856:
12145         * ada-lang.c (ada_lookup_symbol_list_worker): Do not re-cache
12146         results found in the cache.
12147
12148 2015-02-02  Joel Brobecker  <brobecker@adacore.com>
12149
12150         PR gdb/17854:
12151         * ada-lang.c (ada_get_symbol_cache): Set pspace_data->sym_cache
12152         when allocating a new one.
12153
12154 2015-02-01  Tom Tromey  <tom@tromey.com>
12155
12156         * MAINTAINERS: Remove myself.
12157
12158 2015-01-31  Doug Evans  <xdje42@gmail.com>
12159
12160         * dwarf2read.c (process_structure_scope): Update setting of
12161         TYPE_VPTR_BASETYPE, TYPE_VPTR_FIELDNO.
12162         * gdbtypes.c (internal_type_vptr_fieldno): New function.
12163         (set_type_vptr_fieldno): New function.
12164         (internal_type_vptr_basetype): New function.
12165         (set_type_vptr_basetype): New function.
12166         (get_vptr_fieldno): Update setting of TYPE_VPTR_FIELDNO,
12167         TYPE_VPTR_BASETYPE.
12168         (allocate_cplus_struct_type): Initialize vptr_fieldno.
12169         (recursive_dump_type): Printing of vptr_fieldno, vptr_basetype ...
12170         (print_cplus_stuff): ... moved here.
12171         (copy_type_recursive): Don't copy TYPE_VPTR_BASETYPE.
12172         * gdbtypes.h (struct main_type): Members vptr_fieldno, vptr_basetype
12173         moved to ...
12174         (struct cplus_struct_type): ... here.  All uses updated.
12175         (TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE): Rewrite.
12176         (internal_type_vptr_fieldno, set_type_vptr_fieldno): Declare.
12177         (internal_type_vptr_basetype, set_type_vptr_basetype): Declare.
12178         * stabsread.c (read_tilde_fields): Update setting of
12179         TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE.
12180
12181 2015-01-31  Doug Evans  <xdje42@gmail.com>
12182
12183         * cp-valprint.c (cp_find_class_member): Rename parameter domain_p
12184         to self_p.
12185         (cp_print_class_member): Rename local domain to self_type.
12186         * dwarf2read.c (quirk_gcc_member_function_pointer): Rename local
12187         domain_type to self_type.
12188         (set_die_type) <need_gnat_info>: Handle
12189         TYPE_CODE_METHODPTR, TYPE_CODE_MEMBERPTR, TYPE_CODE_METHOD.
12190         * gdb-gdb.py (StructMainTypePrettyPrinter): Handle
12191         TYPE_SPECIFIC_SELF_TYPE.
12192         * gdbtypes.c (internal_type_self_type): New function.
12193         (set_type_self_type): New function.
12194         (smash_to_memberptr_type): Rename parameter domain to self_type.
12195         Update setting of TYPE_SELF_TYPE.
12196         (smash_to_methodptr_type): Update setting of TYPE_SELF_TYPE.
12197         (smash_to_method_type): Rename parameter domain to self_type.
12198         Update setting of TYPE_SELF_TYPE.
12199         (check_stub_method): Call smash_to_method_type.
12200         (recursive_dump_type): Handle TYPE_SPECIFIC_SELF_TYPE.
12201         (copy_type_recursive): Ditto.
12202         * gdbtypes.h (enum type_specific_kind): New value
12203         TYPE_SPECIFIC_SELF_TYPE.
12204         (struct main_type) <type_specific>: New member self_type.
12205         (struct cplus_struct_type) <fn_field.type>: Update comment.
12206         (TYPE_SELF_TYPE): Rewrite.
12207         (internal_type_self_type, set_type_self_type): Declare.
12208         * gnu-v3-abi.c (gnuv3_print_method_ptr): Rename local domain to
12209         self_type.
12210         (gnuv3_method_ptr_to_value): Rename local domain_type to self_type.
12211         * m2-typeprint.c (m2_range): Replace TYPE_SELF_TYPE with
12212         TYPE_TARGET_TYPE.
12213         * stabsread.c (read_member_functions): Mark methods with
12214         TYPE_CODE_METHOD, not TYPE_CODE_FUNC.  Update setting of
12215         TYPE_SELF_TYPE.
12216
12217 2015-01-31  Doug Evans  <xdje42@gmail.com>
12218
12219         * gdbtypes.h (TYPE_SELF_TYPE): Renamed from TYPE_DOMAIN_TYPE.
12220         All uses updated.
12221
12222 2015-01-31  Doug Evans  <xdje42@gmail.com>
12223
12224         * gnu-v3-abi.c (gnuv3_dynamic_class): Assert only passed structs
12225         or unions.  Return zero if union.
12226         (gnuv3_get_vtable): Call check_typedef.  Assert only passed structs.
12227         (gnuv3_rtti_type): Pass already-check_typedef'd value to
12228         gnuv3_get_vtable.
12229         (compute_vtable_size): Assert only passed structs.
12230         (gnuv3_print_vtable): Don't call gnuv3_get_vtable for non-structs.
12231
12232 2015-01-31  Doug Evans  <xdje42@gmail.com>
12233
12234         * gdbtypes.c (copy_type_recursive): Handle all TYPE_SPECIFIC_FIELD
12235         kinds.
12236
12237 2015-01-31  Gary Benson <gbenson@redhat.com>
12238             Doug Evans  <dje@google.com>
12239
12240         PR cli/9007
12241         PR cli/11920
12242         PR cli/15548
12243         * cli/cli-cmds.c (complete_command): Notify user if max-completions
12244         reached.
12245         * common/common-exceptions.h (enum errors)
12246         <MAX_COMPLETIONS_REACHED_ERROR>: New value.
12247         * completer.h (get_max_completions_reached_message): New declaration.
12248         (max_completions): Likewise.
12249         (completion_tracker_t): New typedef.
12250         (new_completion_tracker): New declaration.
12251         (make_cleanup_free_completion_tracker): Likewise.
12252         (maybe_add_completion_enum): New enum.
12253         (maybe_add_completion): New declaration.
12254         (throw_max_completions_reached_error): Likewise.
12255         * completer.c (max_completions): New global variable.
12256         (new_completion_tracker): New function.
12257         (free_completion_tracker): Likewise.
12258         (make_cleanup_free_completion_tracker): Likewise.
12259         (maybe_add_completions): Likewise.
12260         (throw_max_completions_reached_error): Likewise.
12261         (complete_line): Remove duplicates and limit result to max_completions
12262         entries.
12263         (get_max_completions_reached_message): New function.
12264         (gdb_display_match_list): Handle max_completions.
12265         (_initialize_completer): New declaration and function.
12266         * symtab.c: Include completer.h.
12267         (completion_tracker): New static variable.
12268         (completion_list_add_name): Call maybe_add_completion.
12269         (default_make_symbol_completion_list_break_on_1): Renamed from
12270         default_make_symbol_completion_list_break_on.  Maintain
12271         completion_tracker across calls to completion_list_add_name.
12272         (default_make_symbol_completion_list_break_on): New function.
12273         * top.c (init_main): Set rl_completion_display_matches_hook.
12274         * tui/tui-io.c: Include completer.h.
12275         (tui_old_rl_display_matches_hook): New static global.
12276         (tui_rl_display_match_list): Notify user if max-completions reached.
12277         (tui_setup_io): Save/restore rl_completion_display_matches_hook.
12278         * NEWS (New Options): Mention set/show max-completions.
12279
12280 2015-01-31  Gary Benson  <gbenson@redhat.com>
12281
12282         * symtab.c (struct add_name_data) <code>: New field.
12283         Updated comments.
12284         (add_symtab_completions): New function.
12285         (symtab_expansion_callback): Likewise.
12286         (default_make_symbol_completion_list_break_on): Set datum.code.
12287         Move minimal symbol scan before calling expand_symtabs_matching.
12288         Scan known primary symtabs for externs and statics before calling
12289         expand_symtabs_matching.  Pass symtab_expansion_callback as
12290         expansion_notify argument to expand_symtabs_matching.  Do not scan
12291         primary symtabs for externs and statics after calling
12292         expand_symtabs_matching.
12293
12294 2015-01-31  Gary Benson  <gbenson@redhat.com>
12295
12296         * symfile.h (expand_symtabs_exp_notify_ftype): New typedef.
12297         (struct quick_symbol_functions) <expand_symtabs_matching>:
12298         New argument expansion_notify.  All uses updated.
12299         (expand_symtabs_matching): New argument expansion_notify.
12300         All uses updated.
12301         * symfile-debug.c (debug_qf_expand_symtabs_matching):
12302         Also print expansion notify.
12303         * symtab.c (expand_symtabs_matching_via_partial): Call
12304         expansion_notify whenever a partial symbol table is expanded.
12305         * dwarf2read.c (dw2_expand_symtabs_matching): Call
12306         expansion_notify whenever a symbol table is instantiated.
12307
12308 2015-01-31  Doug Evans  <xdje42@gmail.com>
12309
12310         * cli-out.c: #include completer.h, readline/readline.h.
12311         (cli_mld_crlf, cli_mld_putch, cli_mld_puts): New functions.
12312         (cli_mld_flush, cld_mld_erase_entire_line): Ditto.
12313         (cli_mld_beep, cli_mld_read_key, cli_display_match_list): Ditto.
12314         * cli-out.h (cli_display_match_list): Declare.
12315         * completer.c (MB_INVALIDCH, MB_NULLWCH): New macros.
12316         (ELLIPSIS_LEN): Ditto.
12317         (gdb_get_y_or_n, gdb_display_match_list_pager): New functions.
12318         (gdb_path_isdir, gdb_printable_part, gdb_fnwidth): Ditto.
12319         (gdb_fnprint, gdb_print_filename): Ditto.
12320         (gdb_complete_get_screenwidth, gdb_display_match_list_1): Ditto.
12321         (gdb_display_match_list): Ditto.
12322         * completer.h (mld_crlf_ftype, mld_putch_ftype): New typedefs.
12323         (mld_puts_ftype, mld_flush_ftype, mld_erase_entire_line_ftype): Ditto.
12324         (mld_beep_ftype, mld_read_key_ftype): Ditto.
12325         (match_list_displayer): New struct.
12326         (gdb_display_match_list): Declare.
12327         * top.c (init_main): Set rl_completion_display_matches_hook.
12328         * tui/tui-io.c: #include completer.h.
12329         (printable_part, PUTX, print_filename, get_y_or_n): Delete.
12330         (tui_mld_crlf, tui_mld_putch, tui_mld_puts): New functions.
12331         (tui_mld_flush, tui_mld_erase_entire_line, tui_mld_beep): Ditto.
12332         (tui_mld_getc, tui_mld_read_key): Ditto.
12333         (tui_rl_display_match_list): Rewrite.
12334         (tui_handle_resize_during_io): New arg for_completion.  All callers
12335         updated.
12336
12337 2015-01-31  Doug Evans  <xdje42@gmail.com>
12338
12339         Add symbol lookup cache.
12340         * NEWS: Document new options and commands.
12341         * symtab.c (symbol_cache_key): New static global.
12342         (DEFAULT_SYMBOL_CACHE_SIZE, MAX_SYMBOL_CACHE_SIZE): New macros.
12343         (SYMBOL_LOOKUP_FAILED): New macro.
12344         (symbol_cache_slot_state): New enum.
12345         (block_symbol_cache): New struct.
12346         (symbol_cache): New struct.
12347         (new_symbol_cache_size, symbol_cache_size): New static globals.
12348         (hash_symbol_entry, eq_symbol_entry): New functions.
12349         (symbol_cache_byte_size, resize_symbol_cache): New functions.
12350         (make_symbol_cache, free_symbol_cache): New functions.
12351         (get_symbol_cache, symbol_cache_cleanup): New function.
12352         (set_symbol_cache_size, set_symbol_cache_size_handler): New functions.
12353         (symbol_cache_lookup, symbol_cache_clear_slot): New function.
12354         (symbol_cache_mark_found, symbol_cache_mark_not_found): New functions.
12355         (symbol_cache_flush, symbol_cache_dump): New functions.
12356         (maintenance_print_symbol_cache): New function.
12357         (maintenance_flush_symbol_cache): New function.
12358         (symbol_cache_stats): New function.
12359         (maintenance_print_symbol_cache_statistics): New function.
12360         (symtab_new_objfile_observer): New function.
12361         (symtab_free_objfile_observer): New function.
12362         (lookup_static_symbol, lookup_global_symbol): Use symbol cache.
12363         (_initialize_symtab): Init symbol_cache_key.  New parameter
12364         maint symbol-cache-size.  New maint commands print symbol-cache,
12365         print symbol-cache-statistics, flush-symbol-cache.
12366         Install new_objfile, free_objfile observers.
12367
12368 2015-01-31  Joel Brobecker  <brobecker@adacore.com>
12369
12370         PR symtab/17855
12371         * symfile.c (clear_symtab_users): Move call to breakpoint_re_set
12372         to end.
12373
12374 2015-01-31  Doug Evans  <xdje42@gmail.com>
12375
12376         * NEWS: Mention inlined scripts in .debug_gdb_scripts section.
12377         * auto-load.c: #include ctype.h.
12378         (struct auto_load_pspace_info): Replace member loaded_scripts with
12379         new members loaded_script_files, loaded_script_texts.
12380         (auto_load_pspace_data_cleanup): Update.
12381         (init_loaded_scripts_info): Update.
12382         (get_auto_load_pspace_data_for_loading): Update.
12383         (maybe_add_script_file): Renamed from maybe_add_script.  All callers
12384         updated.
12385         (maybe_add_script_text): New function.
12386         (clear_section_scripts): Update.
12387         (source_script_file, execute_script_contents): New functions.
12388         (source_section_scripts): Add support for
12389         SECTION_SCRIPT_ID_PYTHON_TEXT, SECTION_SCRIPT_ID_GUILE_TEXT.
12390         (print_scripts): New function.
12391         (auto_load_info_scripts): Also print inlined scripts.
12392         (maybe_print_unsupported_script_warning): Renamed from
12393         unsupported_script_warning_print.  All callers updated.
12394         (maybe_print_script_not_found_warning): Renamed from
12395         script_not_found_warning_print.  All callers updated.
12396         * extension-priv.h (struct extension_language_script_ops): New member
12397         objfile_script_executor.
12398         * extension.c (ext_lang_objfile_script_executor): New function.
12399         * extension.h (objfile_script_executor_func): New typedef.
12400         (ext_lang_objfile_script_executor): Declare.
12401         * guile/guile-internal.h (gdbscm_execute_objfile_script): Declare.
12402         * guile/guile.c (guile_extension_script_ops): Update.
12403         * guile/scm-objfile.c (gdbscm_execute_objfile_script): New function.
12404         * python/python.c (python_extension_script_ops): Update.
12405         (gdbpy_execute_objfile_script): New function.
12406
12407 2015-01-31  Eli Zaretskii  <eliz@gnu.org>
12408
12409         * tui/tui-io.c (tui_expand_tabs): New function.
12410         (tui_puts, tui_redisplay_readline): Expand TABs into the
12411         appropriate number of spaces.
12412         * tui/tui-regs.c: Include tui-io.h.
12413         (tui_register_format): Call tui_expand_tabs to expand TABs into
12414         the appropriate number of spaces.
12415         * tui/tui-io.h: Add prototype for tui_expand_tabs.
12416
12417 2015-01-30  Doug Evans  <dje@google.com>
12418
12419         * NEWS: "info source" command now display producer string if present.
12420         * source.c (source_info): Print producer string if present.
12421
12422 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
12423
12424         * varobj.c (varobj_delete): Fix comment.
12425
12426 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
12427
12428         * varobj.c (create_child): Modify comment.
12429
12430 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
12431
12432         * ada-varobj.c (ada_number_of_children): Constify struct varobj *
12433         parameter.
12434         (ada_name_of_variable): Same.
12435         (ada_path_expr_of_child): Same.
12436         (ada_value_of_variable): Same.
12437         (ada_value_is_changeable_p): Same.
12438         (ada_value_has_mutated): Same.
12439         * c-varobj.c (varobj_is_anonymous_child): Same.
12440         (c_is_path_expr_parent): Same.
12441         (c_number_of_children): Same.
12442         (c_name_of_variable): Same.
12443         (c_path_expr_of_child): Same.
12444         (get_type): Same.
12445         (c_value_of_variable): Same.
12446         (cplus_number_of_children): Same.
12447         (cplus_name_of_variable): Same.
12448         (cplus_path_expr_of_child): Same.
12449         (cplus_value_of_variable): Same.
12450         * jv-varobj.c (java_number_of_children): Same.
12451         (java_name_of_variable): Same.
12452         (java_path_expr_of_child): Same.
12453         (java_value_of_variable): Same.
12454         * varobj.c (number_of_children): Same.
12455         (name_of_variable): Same.
12456         (is_root_p): Same.
12457         (varobj_ensure_python_env): Same.
12458         (varobj_get_objname): Same.
12459         (varobj_get_expression): Same.
12460         (varobj_get_display_format): Same.
12461         (varobj_get_display_hint): Same.
12462         (varobj_has_more): Same.
12463         (varobj_get_thread_id): Same.
12464         (varobj_get_frozen): Same.
12465         (dynamic_varobj_has_child_method): Same.
12466         (varobj_get_gdb_type): Same.
12467         (is_path_expr_parent): Same.
12468         (varobj_default_is_path_expr_parent): Same.
12469         (varobj_get_language): Same.
12470         (varobj_get_attributes): Same.
12471         (varobj_is_dynamic_p): Same.
12472         (varobj_get_child_range): Same.
12473         (varobj_value_has_mutated): Same.
12474         (varobj_get_value_type): Same.
12475         (number_of_children): Same.
12476         (name_of_variable): Same.
12477         (check_scope): Same.
12478         (varobj_editable_p): Same.
12479         (varobj_value_is_changeable_p): Same.
12480         (varobj_floating_p): Same.
12481         (varobj_default_value_is_changeable_p): Same.
12482
12483 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
12484
12485         * varobj.c (varobj_get_path_expr): Set var->path_expr.
12486         * c-varobj.c (c_path_expr_of_child): Set local var instead of
12487         child->path_expr.
12488         (cplus_path_expr_of_child): Same.
12489
12490 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
12491
12492         * mi-cmd-var.c (print_varobj): Free varobj_get_expression
12493         result.
12494         (mi_cmd_var_info_expression): Same.
12495         * varobj.c (varobj_get_expression): Mention in the comment that
12496         the result must by freed by the caller.
12497
12498 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
12499
12500         * mi/mi-cmd-var.c (mi_cmd_var_info_type): Free result of
12501         varobj_get_type.
12502         (varobj_update_one): Same.
12503         * varobj.c (update_type_if_necessary): Free curr_type_str and
12504         new_type_str.
12505         (varobj_get_type): Specify in comment that the result needs to be
12506         freed by the caller.
12507
12508 2015-01-29  Doug Evans  <dje@google.com>
12509
12510         PR symtab/17890
12511         * dwarf2read.c (dwarf_decode_line_header): Punt if version > 4.
12512
12513 2015-01-25  Mark Wielaard  <mjw@redhat.com>
12514
12515         * dwarf2read.c (checkproducer): Call producer_is_gcc.
12516         * utils.c (producer_is_gcc_ge_4): Likewise.
12517         (producer_is_gcc): New function.
12518         * utils.h (producer_is_gcc): New declaration.
12519
12520 2015-01-29  Joel Brobecker  <brobecker@adacore.com>
12521
12522         * gdbtypes.h (struct dynamic_prop): New PROP_ADDR_OFFSET enum
12523         kind.
12524         * gdbtypes.c (resolve_dynamic_type_internal): Replace "addr"
12525         parameter by "addr_stack" parameter.
12526         (resolve_dynamic_range): Replace "addr" parameter by
12527         "stack_addr" parameter.  Update function documentation.
12528         Update code accordingly.
12529         (resolve_dynamic_array, resolve_dynamic_union)
12530         (resolve_dynamic_struct, resolve_dynamic_type_internal): Likewise.
12531         (resolve_dynamic_type): Update code, following the changes made
12532         to resolve_dynamic_type_internal's interface.
12533         * dwarf2loc.h (struct property_addr_info): New.
12534         (dwarf2_evaluate_property): Replace "address" parameter
12535         by "addr_stack" parameter.  Adjust function documentation.
12536         (struct dwarf2_offset_baton): New.
12537         (struct dwarf2_property_baton): Update documentation of
12538         field "referenced_type" to be more general. New field
12539         "offset_info" in union data field.
12540         * dwarf2loc.c (dwarf2_evaluate_property): Replace "address"
12541         parameter by "addr_stack" parameter.  Adjust code accordingly.
12542         Add support for PROP_ADDR_OFFSET properties.
12543         * dwarf2read.c (attr_to_dynamic_prop): Add support for
12544         DW_AT_data_member_location attributes as well.  Use case
12545         statements instead of if/else condition.
12546
12547 2015-01-29  Joel Brobecker  <brobecker@adacore.com>
12548
12549         * ada-varobj.c (ada_varobj_get_array_number_of_children):
12550         Return zero if PARENT_VALUE is NULL and parent_type's
12551         range type is dynamic.
12552
12553 2015-01-29  Joel Brobecker  <brobecker@adacore.com>
12554
12555         * gdbtypes.c (is_dynamic_type_internal) <TYPE_CODE_RANGE>: Return
12556         nonzero if the type's subtype is dynamic.
12557         (resolve_dynamic_range): Also resolve the range's subtype.
12558
12559 2015-01-29  Alexander Klimov  <alserkli@inbox.ru>  (tiny patch)
12560
12561         Pushed by Joel Brobecker  <brobecker@adacore.com>.
12562         * symfile.c (unmap_overlay_command): Initialize sec to NULL.
12563
12564 2015-01-27  Doug Evans  <dje@google.com>
12565
12566         * NEWS: Mention gdb.Objfile.username.
12567         * python/py-objfile.c (objfpy_get_username): New function.
12568         (objfile_getset): Add "username".
12569
12570 2015-01-24  Mark Wielaard  <mjw@redhat.com>
12571
12572         * stack.c (return_command): Markup warning message with _.
12573
12574 2015-01-24  Doug Evans  <xdje42@gmail.com>
12575
12576         * gdbtypes.h (TYPE_TYPE_SPECIFIC): Delete.
12577
12578 2015-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
12579
12580         Fix 100x slowdown regression on DWZ files.
12581         * dwarf2read.c (struct dwarf2_per_objfile): Add line_header_hash.
12582         (struct line_header): Add offset and offset_in_dwz.
12583         (dwarf_decode_lines): Add parameter decode_mapping to the declaration.
12584         (free_line_header_voidp): New declaration.
12585         (line_header_hash, line_header_hash_voidp, line_header_eq_voidp): New
12586         functions.
12587         (dwarf2_build_include_psymtabs): Update dwarf_decode_lines caller.
12588         (handle_DW_AT_stmt_list): Use line_header_hash.
12589         (free_line_header_voidp): New function.
12590         (dwarf_decode_line_header): Initialize offset and offset_in_dwz.
12591         (dwarf_decode_lines): New parameter decode_mapping, use it.
12592         (dwarf2_free_objfile): Free line_header_hash.
12593
12594 2015-01-23  Simon Marchi  <simon.marchi@ericsson.com>
12595
12596         PR gdb/17416
12597         * valops.c (value_rtti_indirect_type): Catch exception thrown by
12598         value_ind.
12599
12600 2015-01-15  Mark Wielaard  <mjw@redhat.com>
12601
12602         * dwarf2read.c (read_subroutine_type): Set TYPE_NO_RETURN from
12603         DW_AT_noreturn.
12604         * gdbtypes.h (struct func_type): Add is_noreturn field flag. Make
12605         calling_convention an 8 bit bit field.
12606         (TYPE_NO_RETURN): New macro.
12607         * infcmd.c (finish_command): Query if function does not return
12608         normally.
12609         * stack.c (return_command): Likewise.
12610
12611 2015-01-23  Pedro Alves  <palves@redhat.com>
12612
12613         * linux-nat.c (linux_is_async_p): New macro.
12614         (linux_nat_is_async_p):
12615         (linux_nat_terminal_inferior): Check whether the target can async
12616         instead of whether it is already async.
12617         (linux_nat_terminal_ours): Don't check whether the target is
12618         async.
12619         (linux_async_pipe): Use linux_is_async_p.
12620
12621 2015-01-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
12622
12623         * NEWS (Changes since GDB 7.9): Add 'thread apply all' option
12624         '-ascending'.
12625         * thread.c (tp_array_compar_ascending, tp_array_compar): New.
12626         (thread_apply_all_command): Parse CMD for tp_array_compar_ascending.
12627         Sort tp_array using tp_array_compar.
12628         (_initialize_thread): Extend thread_apply_all_command help.
12629
12630 2015-01-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
12631
12632         * corelow.c (core_open): Call also thread_command.
12633         * gdbthread.h (thread_command): New prototype moved from ...
12634         * thread.c (thread_command): ... here.
12635         (thread_command): Make it global.
12636
12637 2015-01-22  Pedro Alves  <palves@redhat.com>
12638
12639         * configure.ac [*mingw32*]: Check $curses_found instead of
12640         $prefer_curses.
12641         * configure: Regenerate.
12642         * windows-termcap.c: Remove HAVE_CURSES_H, HAVE_NCURSES_H and
12643         HAVE_NCURSES_NCURSES_H checks.
12644
12645 2015-01-22  Eli Zaretskii  <eliz@gnu.org>
12646
12647         * tui/tui.c (tui_enable) [__MINGW32__]: If the call to 'newterm'
12648         fails with the 1st arg NULL, try again with "unknown".  Don't test
12649         the "cup" capability: it isn't supported by the Windows port of
12650         ncurses, but the Windows console driver is still capable of
12651         supporting TUI.
12652
12653 2015-01-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
12654
12655         * compile/compile.c (_initialize_compile): Use -fPIE for compile_args.
12656
12657 2015-01-22  Eli Zaretskii  <eliz@gnu.org>
12658
12659         * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
12660         (ALLDEPFILES): Remove irix5-nat.c.  These two are part of the
12661         reason that "make TAGS" is broken.
12662
12663 2015-01-22  Chen Gang  <gang.chen.5i5j@gmail.com>
12664
12665         * hppa-tdep.c (inst_saves_gr): Fix logical working flow issues
12666         and check additional store instructions.
12667
12668 2015-01-21  Wei-cheng Wang  <cole945@gmail.com>
12669
12670         * MAINTAINERS (Write After Approval): Add "Wei-cheng Wang".
12671
12672 2015-01-21  Wei-cheng Wang  <cole945@gmail.com>
12673
12674         * ppc-linux-tdep.c (ppc_skip_trampoline_code,
12675         ppc_canonicalize_syscall, ppc_linux_syscall_record,
12676         ppc_linux_record_signal, ppc_init_linux_record_tdep): Add comments.
12677         * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
12678         * rs6000-tdep.c (rs6000_epilogue_frame_cache,
12679         rs6000_epilogue_frame_this_id, rs6000_epilogue_frame_prev_register,
12680         rs6000_epilogue_frame_sniffer, ppc_record_vsr, ppc_process_record_op4,
12681         ppc_process_record_op19, ppc_process_record_op31,
12682         ppc_process_record_op59, ppc_process_record_op60,
12683         ppc_process_record_op63): Likewise.
12684
12685 2015-01-20  Joel Brobecker  <brobecker@adacore.com>
12686
12687         * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string)
12688         (linux_ptrace_test_ret_to_nx): Use safe_strerror instead of
12689         strerror.
12690
12691 2015-01-20  Wei-cheng Wang  <cole945@gmail.com>
12692
12693         * rs6000-tdep.c (ppc_process_record_op4, ppc_process_record_op19,
12694         ppc_process_record_op31, ppc_process_record_op59,
12695         ppc_process_record_op60, ppc_process_record_op63,
12696         ppc_process_record): Fix -Wformat warning.
12697         * rs6000-tdep.c (rs6000_epilogue_frame_cache, ppc_process_record_op60):
12698         Remove unused variables.
12699
12700 2015-01-20  Chen Gang  <gang.chen.5i5j@gmail.com>
12701
12702         * MAINTAINERS (Write After Approval): Add "Chen Gang".
12703
12704 2015-01-19  Eli Zaretskii  <eliz@gnu.org>
12705
12706         * configure.ac [*mingw32*]: Only add windows-termcap.o to
12707         CONFIG_OBS if not building with a curses library.
12708         * configure: Regenerate.
12709
12710         * windows-termcap.c: Include defs.h.  Make the whole body empty if
12711         either one of HAVE_CURSES_H or HAVE_NCURSES_H or
12712         HAVE_NCURSES_NCURSES_H is defined.
12713
12714 2015-01-19  Joel Brobecker  <brobecker@adacore.com>
12715
12716         * rs6000-tdep.c (rs6000_gdbarch_init): Move divide operator
12717         from end of line to start of next line.
12718
12719 2015-01-17  Wei-cheng Wang  <cole945@gmail.com>
12720
12721         * ppc-linux-tdep.c (ppc_skip_trampoline_code):
12722         Scan PLT stub backward for reverse debugging.
12723         * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
12724
12725 2015-01-17  Wei-cheng Wang  <cole945@gmail.com>
12726             Ulrich Weigand  <uweigand@de.ibm.com>
12727
12728         * configure.tgt (powerpc*-*-linux): Add linux-record.o to
12729         gdb_target_obs.
12730         (ppc_linux_record_tdep, ppc64_linux_record_tdep): New for linux syscall
12731         record.
12732         (ppc_canonicalize_syscall, ppc_linux_syscall_record,
12733         ppc_linux_record_signal, ppc_init_linux_record_tdep): New functions.
12734         (ppc_linux_init_abi): Set process_record, process_record_signal.
12735         * ppc-tdep.h (struct gdbarch_tdep): Add ppc_syscall_record and
12736         ppc_linux_record_tdep to gdbarch_tdep.
12737         (ppc_process_record): New declaration.
12738         * rs6000-tdep.c (ppc_record_vsr, ppc_process_record_op4,
12739         ppc_process_record_op19, ppc_process_record_op31,
12740         ppc_process_record_op59, ppc_process_record_op60,
12741         ppc_process_record_op63, ppc_process_record): New functions.
12742
12743 2015-01-17  Wei-cheng Wang  <cole945@gmail.com>
12744
12745         * rs6000-tdep.c (rs6000_in_function_epilogue_p): Rename to
12746         rs6000_in_function_epilogue_frame_p and add an argument
12747         for frame_info.
12748         (rs6000_epilogue_frame_cache, rs6000_epilogue_frame_this_id,
12749         rs6000_epilogue_frame_prev_register, rs6000_epilogue_frame_sniffer):
12750         New functions.
12751         (rs6000_epilogue_frame_unwind): New.
12752         (rs6000_gdbarch_init): Append epilogue unwinder.
12753
12754 2015-01-16  Sergio Durigan Junior  <sergiodj@redhat.com>
12755
12756         * nat/linux-personality.c: Replace "#ifndef
12757         HAVE_DECL_ADDR_NO_RANDOMIZE" by "#if
12758         !HAVE_DECL_ADDR_NO_RANDOMIZE", fixing a regression in RHEL-5
12759         systems.
12760
12761 2015-01-16  Eli Zaretskii  <eliz@gnu.org>
12762
12763         * tui/tui-win.c (tui_rehighlight_all, tui_set_var_cmd): New
12764         functions.
12765         (_initialize_tui_win) <border-kind, border-mode>:
12766         <active-border-mode>: Use tui_set_var_cmd as the "set" function.
12767         (tui_set_tab_width_command): Fix the commentary.
12768
12769         * tui/tui-win.h: Add prototype for tui_rehighlight_all.
12770
12771         * tui/tui-win.c (tui_scroll_left_command, tui_scroll_right_command):
12772         Doc fix.
12773         (tui_set_tab_width_command): Delete and recreate the source and
12774         the disassembly windows, to show the effect of the changed tab
12775         size immediately.
12776
12777         * tui/tui-data.h (LINE_PREFIX): Make shorter
12778         (MAX_PID_WIDTH): Enlarge from 14 to 19, to leave enough space for
12779         "Thread NNNNN.XXXX" thread ID notation on Windows.
12780
12781 2015-01-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
12782
12783         Fix gcc-5 compilation.
12784         * hppa-tdep.c (inst_saves_gr): Fix parentheses typo.
12785
12786 2015-01-15  Sergio Durigan Junior  <sergiodj@redhat.com>
12787
12788         * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-personality.h.
12789         (linux-personality.o): New rule.
12790         * common/common-defs.h: Include <stdint.h>.
12791         * config/aarch64/linux.mh (NATDEPFILES): Include
12792         linux-personality.o.
12793         * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
12794         * config/arm/linux.mh (NATDEPFILES): Likewise.
12795         * config/i386/linux64.mh (NATDEPFILES): Likewise.
12796         * config/i386/linux.mh (NATDEPFILES): Likewise.
12797         * config/ia64/linux.mh (NATDEPFILES): Likewise.
12798         * config/m32r/linux.mh (NATDEPFILES): Likewise.
12799         * config/m68k/linux.mh (NATDEPFILES): Likewise.
12800         * config/mips/linux.mh (NATDEPFILES): Likewise.
12801         * config/pa/linux.mh (NATDEPFILES): Likewise.
12802         * config/powerpc/linux.mh (NATDEPFILES): Likewise.
12803         * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
12804         * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
12805         * config/s390/linux.mh (NATDEPFILES): Likewise.
12806         * config/sparc/linux64.mh (NATDEPFILES): Likewise.
12807         * config/sparc/linux.mh (NATDEPFILES): Likewise.
12808         * config/tilegx/linux.mh (NATDEPFILES): Likewise.
12809         * config/xtensa/linux.mh (NATDEPFILES): Likewise.
12810         * defs.h: Remove #include <stdint.h> (moved to
12811         common/common-defs.h).
12812         * linux-nat.c: Include nat/linux-personality.h.  Remove #include
12813         <sys/personality.h>; do not define ADDR_NO_RANDOMIZE (moved to
12814         nat/linux-personality.c).
12815         (linux_nat_create_inferior): Remove code to disable address space
12816         randomization (moved to nat/linux-personality.c).  Create cleanup
12817         to disable address space randomization.
12818         * nat/linux-personality.c: New file.
12819         * nat/linux-personality.h: Likewise.
12820
12821 2015-01-15  Sergio Durigan Junior  <sergiodj@redhat.com>
12822
12823         * Makefile.in (ALLDEPFILES): Including common/mingw-strerror.c and
12824         common/posix-strerror.c.
12825         (posix-strerror.o): New rule.
12826         (mingw-strerror.o): Likewise.
12827         * common/common-utils.h (safe_strerror): Move prototype to here,
12828         from utils.h.
12829         * common/common.host: New file.
12830         * common/mingw-strerror.c: Likewise.
12831         * common/posix-strerror.c: Likewise.
12832         * configure: Regenerated.
12833         * configure.ac: Source common/common.host.  Add variable
12834         common_host_obs to gdb_host_obs.
12835         * contrib/ari/gdb_ari.sh: Mention gdb/common/mingw-strerror.c and
12836         gdb/common/posix-strerror.c when warning about the use of
12837         strerror.
12838         * mingw-hdep.c (safe_strerror): Remove definition; move it to
12839         common/mingw-strerror.c.
12840         * posix-hdep.c (safe_strerror): Remove definition; move it to
12841         common/posix-hdep.c.
12842         * utils.h (safe_strerror): Remove prototype; move to
12843         common/common-utils.h.
12844
12845 2015-01-15  Joel Brobecker  <brobecker@adacore.com>
12846
12847         GDB 7.8.2 released.
12848
12849 2015-01-15  Joel Brobecker  <brobecker@adacore.com>
12850
12851         * ada-lang.c (ada_array_bound_from_type): Ignore array's parallel
12852         ___XA type if the array has already been fixed.
12853
12854 2015-01-14  Yao Qi  <yao@codesourcery.com>
12855
12856         * Makefile.in (ppc-linux.o): New rule.
12857         * config/powerpc/ppc64-linux.mh (NATDEPFILES): Add ppc-linux.o.
12858         * configure.ac: AC_CHECK_FUNCS(getauxval).
12859         * config.in: Re-generated.
12860         * configure: Re-generated.
12861         * nat/ppc-linux.h [__powerpc64__] (ppc64_64bit_inferior_p):
12862         Declare.
12863         * nat/ppc-linux.c: New file.
12864         * ppc-linux-nat.c (ppc_linux_target_wordsize) [__powerpc64__]:
12865         Call ppc64_64bit_inferior_p.
12866
12867 2015-01-14  Yao Qi  <yao@codesourcery.com>
12868
12869         * ppc-linux-nat.c (PT_ORIG_R3, PT_TRAP): Move to
12870         nat/ppc-linux.h.
12871         (PPC_FEATURE_CELL, PPC_FEATURE_BOOKE): Likewise.
12872         (PPC_FEATURE_HAS_DFP): Likewise.
12873         (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Likewise.
12874         (PTRACE_GETVSXREGS, PTRACE_SETVSXREGS): Likewise.
12875         (PTRACE_GETEVRREGS, PTRACE_SETEVRREGS): Likewise.
12876         Include "nat/ppc-linux.h".
12877         * nat/ppc-linux.h: New file.
12878         * Makefile.in (HFILES_NO_SRCDIR): Add nat/ppc-linux.h.
12879
12880 2015-01-14  Pedro Alves  <palves@redhat.com>
12881
12882         PR gdb/17525
12883         * breakpoint.c: Include "interps.h".
12884         (bpstat_do_actions_1): Also check whether the interpreter is
12885         async.
12886
12887 2015-01-14  Pedro Alves  <palves@redhat.com>
12888
12889         PR cli/17828
12890         * infrun.c (reinstall_readline_callback_handler_cleanup): Don't
12891         reinstall if the interpreter is sync.
12892
12893 2015-01-13  Doug Evans  <dje@google.com>
12894
12895         * objfiles.c (objfile_filename): New function.
12896         * objfiles.h (objfile_filename): Declare it.
12897         (objfile_name): Add function comment.
12898         * python/py-objfile.c (objfpy_lookup_objfile_by_name): Try both the
12899         bfd file name (which may be realpath'd), and the original name.
12900
12901 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
12902
12903         * NEWS: Create a new section for the next release branch.
12904         Rename the section of the current branch, now that it has
12905         been cut.
12906
12907 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
12908
12909         GDB 7.9 branch created (92fc2e6978d9a7c8324c7e851dbee59e22ec7a37):
12910         * version.in: Bump version to 7.9.50.DATE-cvs.
12911
12912 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
12913
12914         * nat/linux-procfs.c (linux_proc_attach_tgid_threads):
12915         Remove trailing new-line in argument of call to warning.
12916
12917 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
12918
12919         * linux-nat.c (attach_proc_task_lwp_callback): Remove trailing
12920         new-line in argument of call to "warning".
12921
12922 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
12923
12924         * ada-lang.c (ada_lookup_symbol_nonlocal): If name not found
12925         in static block, then try searching for primitive types.
12926
12927 2015-01-12  Patrick Palka  <patrick@parcs.ath.cx>
12928
12929         * top.h (gdb_add_history): Declare.
12930         * top.c (command_count): New variable.
12931         (gdb_add_history): New function.
12932         (gdb_safe_append_history): New static function.
12933         (quit_force): Call it.
12934         (command_line_input): Use gdb_add_history instead of
12935         add_history.
12936         * event-top.c (command_line_handler): Likewise.
12937
12938 2015-01-12  James Clarke  <jrtc27@jrtc27.com>  (tiny patch)
12939
12940         PR gdb/17046
12941         * darwin-nat.c: Replace <machine/setjmp.h> #include by
12942         <setjmp.h> #include.
12943
12944 2015-01-11  Doug Evans  <xdje42@gmail.com>
12945
12946         * dwarf2read.c (compute_delayed_physnames): Use TYPE_FN_FIELD_PHYSNAME.
12947
12948 2015-01-11  Doug Evans  <xdje42@gmail.com>
12949
12950         PR gdb/15830
12951         * NEWS: The "maint demangle" command is renamed as "demangle".
12952         * demangle.c: #include cli/cli-utils.h, language.h.
12953         (demangle_command): New function.
12954         (_initialize_demangle): Add new command "demangle".
12955         * maint.c (maintenance_demangle): Stub out.
12956         (_initialize_maint_cmds): Update help text for "maint demangle",
12957         and mark as deprecated.
12958
12959 2015-01-11  Mark Kettenis  <kettenis@gnu.org>
12960
12961         * inf-ptrace.c (inf_ptrace_follow_fork): Adjust now that
12962         inferior_thread is a function.
12963
12964 2015-01-09  Patrick Palka  <patrick@parcs.ath.cx>
12965
12966         * Makefile.in (.y.c): Don't munge yacc's #line
12967         directives.
12968
12969 2015-01-09  Patrick Palka  <patrick@parcs.ath.cx>
12970
12971         * utils.c (defaulted_query): Rewrite to use gdb_readline_wrapper
12972         to prompt for input.
12973         * tui/tui-hooks.c (tui_query_hook): Remove.
12974         (tui_install_hooks): Don't set deprecated_query_hook.
12975         * tui/tui-io.c (tui_redisplay_readline): Fix off-by-one error in
12976         height calculation.  Always update the command window's cur_line.
12977
12978 2015-01-09  Pedro Alves  <palves@redhat.com>
12979
12980         * breakpoint.c (hardware_breakpoint_inserted_here_p): New
12981         function.
12982         * breakpoint.h (hardware_breakpoint_inserted_here_p): New
12983         declaration.
12984         * linux-nat.c (linux_nat_status_is_event): Move higher up in file.
12985         (linux_resume_one_lwp): Store the thread's PC.  Adjust to clear
12986         stop_reason.
12987         (check_stopped_by_watchpoint): New function.
12988         (save_sigtrap): Reimplement.
12989         (linux_nat_stopped_by_watchpoint): Adjust.
12990         (linux_nat_lp_status_is_event): Delete.
12991         (stop_wait_callback): Only call save_sigtrap after storing the
12992         pending status.
12993         (status_callback): If the thread had been stopped for a breakpoint
12994         that has since been removed, discard the event and resume the LWP.
12995         (count_events_callback, select_event_lwp_callback): Use
12996         lwp_status_pending_p instead of linux_nat_lp_status_is_event.
12997         (cancel_breakpoint): Rename to ...
12998         (check_stopped_by_breakpoint): ... this.  Record whether the LWP
12999         stopped for a software breakpoint or hardware breakpoint.
13000         (select_event_lwp): Only give preference to the stepping LWP in
13001         all-stop mode.  Adjust comments.
13002         (stop_and_resume_callback): Remove references to new_pending_p.
13003         (linux_nat_filter_event): Likewise.  Leave exit events of the
13004         leader thread pending here.  Handle signal short circuiting here.
13005         Only call save_sigtrap after storing the pending waitstatus.
13006         (linux_nat_wait_1): Remove 'retry' label.  Remove references to
13007         new_pending.  Don't handle leaving events the caller is not
13008         interested in pending here, nor handle signal short-circuiting
13009         here.  Also give equal priority to all LWPs that have had events
13010         in non-stop mode.  If reporting a software breakpoint event,
13011         unadjust the LWP's PC.
13012         * linux-nat.h (enum lwp_stop_reason): New.
13013         (struct lwp_info) <stop_pc>: New field.
13014         (struct lwp_info) <stopped_by_watchpoint>: Delete field.
13015         (struct lwp_info) <stop_reason>: New field.
13016         * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust.
13017
13018 2015-01-09  Pedro Alves  <palves@redhat.com>
13019
13020         * linux-nat.c (linux_handle_extended_wait) <PTRACE_EVENT_EXEC>:
13021         Set the LWP's 'resumed' flag.
13022
13023 2015-01-09  Pedro Alves  <palves@redhat.com>
13024
13025         * linux-nat.c (linux_resume_one_lwp): New function.
13026         (resume_lwp): Use lwp_status_pending_p and linux_resume_one_lwp.
13027         (linux_nat_resume): Use lwp_status_pending_p and
13028         linux_resume_one_lwp.
13029         (linux_handle_syscall_trap): Use linux_resume_one_lwp.
13030         (linux_handle_extended_wait): Use linux_resume_one_lwp.
13031         (status_callback, running_callback): Use lwp_status_pending_p.
13032         (lwp_status_pending_p): New function.
13033         (stop_and_resume_callback): Use lwp_status_pending_p.
13034         (linux_nat_filter_event): Use linux_resume_one_lwp.
13035         (linux_nat_wait_1): Always use status_callback to look for an LWP
13036         with a pending status.  Use linux_resume_one_lwp.
13037         (resume_stopped_resumed_lwps): Use lwp_status_pending_p and
13038         linux_resume_one_lwp.
13039
13040 2015-01-09  Pedro Alves  <palves@redhat.com>
13041
13042         * breakpoint.c (bp_location_inserted_here_p): New function,
13043         factored out from ...
13044         (breakpoint_inserted_here_p): ... here.  Use
13045         ALL_BP_LOCATIONS_AT_ADDR.
13046         (software_breakpoint_inserted_here_p): Use
13047         bp_location_inserted_here_p and ALL_BP_LOCATIONS_AT_ADDR.
13048
13049 2014-01-09  Pedro Alves  <palves@redhat.com>
13050
13051         Skip enabling event reporting if the kernel supports
13052         PTRACE_EVENT_CLONE.
13053         * linux-thread-db.c: Include "nat/linux-ptrace.h".
13054         (thread_db_use_events): New function.
13055         (try_thread_db_load_1): Check thread_db_use_events before enabling
13056         event reporting.
13057         (update_thread_state): New function.
13058         (attach_thread): Use it.  Check thread_db_use_events before
13059         enabling event reporting.
13060         (thread_db_detach): Check thread_db_use_events before disabling
13061         event reporting.
13062         (find_new_threads_callback): Check thread_db_use_events before
13063         enabling event reporting.  Update the thread's state if not using
13064         libthread_db events.
13065
13066 2015-01-09  Pedro Alves  <palves@redhat.com>
13067
13068         * linux-nat.c (lin_lwp_attach_lwp): Assert that the lwp id we're
13069         about to wait for is > 0.
13070         * linux-thread-db.c (find_new_threads_callback): Ignore thread if
13071         the kernel thread ID is -1.
13072
13073 2015-01-09  Pedro Alves  <palves@redhat.com>
13074
13075         * linux-nat.c (attach_proc_task_lwp_callback): New function.
13076         (linux_nat_attach): Use linux_proc_attach_tgid_threads.
13077         (wait_lwp, linux_nat_filter_event): If not set yet, set the lwp's
13078         ptrace option flags.
13079         * linux-nat.h (struct lwp_info) <must_set_ptrace_flags>: New
13080         field.
13081         * nat/linux-procfs.c: Include <dirent.h>.
13082         (linux_proc_get_int): New parameter "warn".  Handle it.
13083         (linux_proc_get_tgid): Adjust.
13084         (linux_proc_get_tracerpid): Rename to ...
13085         (linux_proc_get_tracerpid_nowarn): ... this.
13086         (linux_proc_pid_get_state): New function, factored out from
13087         (linux_proc_pid_has_state): ... this.  Add new parameter "warn"
13088         and handle it.
13089         (linux_proc_pid_is_gone): New function.
13090         (linux_proc_pid_is_stopped): Adjust.
13091         (linux_proc_pid_is_zombie_maybe_warn)
13092         (linux_proc_pid_is_zombie_nowarn): New functions.
13093         (linux_proc_pid_is_zombie): Use
13094         linux_proc_pid_is_zombie_maybe_warn.
13095         (linux_proc_attach_tgid_threads): New function.
13096         * nat/linux-procfs.h (linux_proc_get_tgid): Update comment.
13097         (linux_proc_get_tracerpid): Rename to ...
13098         (linux_proc_get_tracerpid_nowarn): ... this, and update comment.
13099         (linux_proc_pid_is_gone): New declaration.
13100         (linux_proc_pid_is_zombie): Update comment.
13101         (linux_proc_pid_is_zombie_nowarn): New declaration.
13102         (linux_proc_attach_lwp_func): New typedef.
13103         (linux_proc_attach_tgid_threads): New declaration.
13104         * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason): Adjust to
13105         use nowarn functions.
13106         (linux_ptrace_attach_fail_reason_string): Move here from
13107         gdbserver/linux-low.c and rename.
13108         (ptrace_supports_feature): If the current ptrace options are not
13109         known yet, check them now, instead of asserting.
13110         * nat/linux-ptrace.h (linux_ptrace_attach_fail_reason_string):
13111         Declare.
13112
13113 2015-01-09  Pedro Alves  <palves@redhat.com>
13114
13115         * linux-thread-db.c (thread_db_find_new_threads_silently)
13116         (try_thread_db_load_1, try_thread_db_load, thread_db_load_search)
13117         (find_new_threads_once): Print debug output on gdb_stdlog.
13118
13119 2015-01-09  Chen Gang  <gang.chen.5i5j@gmail.com>
13120             Pedro Alves  <palves@redhat.com>
13121
13122         * compile/compile.c: Include "gdb_wait.h".
13123         (do_rmdir): Check return value, and free 'zap'.
13124
13125 2015-01-08  Pedro Alves  <palves@redhat.com>
13126             Yao Qi  <yao@codesourcery.com>
13127
13128         * dwarf2loc.c (indirect_pieced_value): Don't call
13129         gdb_sign_extend.  Call extract_signed_integer instead.
13130         * utils.c (gdb_sign_extend): Remove.
13131         * utils.h (gdb_sign_extend): Remove declaration.
13132
13133 2015-01-07  Pierre Muller  <muller@sourceware.org>
13134
13135         PR symtab/17811
13136         * stabsread.c (define_symbol): Set language for C++ special symbols.
13137
13138 2015-01-07  Patrick Palka  <patrick@parcs.ath.cx>
13139
13140         * inflow.c (initial_gdb_ttystate): Tweak comment.
13141
13142 2015-01-07  Joel Brobecker  <brobecker@adacore.com>
13143
13144         * inflow.c (set_initial_gdb_ttystate): Add empty line after
13145         comment documenting function.
13146
13147 2015-01-07  Patrick Palka  <patrick@parcs.ath.cx>
13148
13149         * terminal.h (set_initial_gdb_ttystate): Declare.
13150         * inflow.c (initial_gdb_ttystate): New static variable.
13151         (set_initial_gdb_ttystate): New setter.
13152         (child_terminal_init_with_pgrp): Copy initial_gdb_ttystate
13153         instead of our current terminal state.
13154         * top.c (gdb_init): Call set_initial_gdb_ttystate.
13155
13156 2015-01-07  Joel Brobecker  <brobecker@adacore.com>
13157
13158         * guile/scm-type.c (tyscm_array_1): Add comment.
13159         * python/py-type.c (typy_array_1): Add comment.
13160
13161 2015-01-06  Joel Brobecker  <brobecker@adacore.com>
13162
13163         * guile/scm-type.c (tyscm_array_1): Do not raise out-of-range
13164         error if N2 is equal to N1 - 1.
13165
13166 2015-01-06  Joel Brobecker  <brobecker@adacore.com>
13167
13168         * python/py-type.c (typy_array_1): Do not raise negative-length
13169         exception if N2 is equal to N1 - 1.
13170
13171 2015-01-03  Doug Evans  <xdje42@gmail.com>
13172
13173         * c-exp.y: Whitespace cleanup.
13174         (classify_inner_name): Remove extra ;.
13175
13176 2015-01-02  Maciej W. Rozycki  <macro@codesourcery.com>
13177
13178         * mips-tdep.c (mips32_scan_prologue): Keep the extracted stack
13179         offset signed.
13180
13181 2015-01-02  Doug Evans  <dje@google.com>
13182
13183         * dwarf2read.c (setup_type_unit_groups): Remove outdated comment.
13184
13185 2015-01-02  Doug Evans  <dje@google.com>
13186
13187         * symtab.h (struct symbol): Fix typo in comment.
13188
13189 2015-01-01  Joel Brobecker  <brobecker@adacore.com>
13190
13191         Update year range in copyright notice of all files.
13192
13193 2015-01-01  Joel Brobecker  <brobecker@adacore.com>
13194
13195         * top.c (print_gdb_version): Update copyright year to 2015.
13196
13197 2015-01-01  Joel Brobecker  <brobecker@adacore.com>
13198
13199         * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2014.
13200
13201 For older changes see ChangeLog-2014.
13202 \f
13203 Local Variables:
13204 mode: change-log
13205 left-margin: 8
13206 fill-column: 74
13207 version-control: never
13208 coding: utf-8
13209 End: